const bytes = [0xC4, 0xE5, 0xE6, 0xF3, 0xF0, 0xED, 0xFB, 0xE9];
const decoder = new TextDecoder('windows-1251');
const string = decoder.decode(new Uint8Array(bytes));
console.log(string);
h = 'C4 E5 E6 F3 F0 ED FB E9'
byte_string = bytes.fromhex(h)
decoded_string = byte_string.decode('windows-1251')
print(decoded_string)
for i in h.split():
print(f'{i} {int(i,16)}')
Дежурный
C4 196
E5 229
E6 230
F3 243
F0 240
ED 237
FB 251
E9 233