I have an emulator what generate byte code. But I cant convert this byte to readable format like string or int. The emulator language is Korean and the bytes are:
b'P\xaf\x01P\xe5\x01$\x008\x00\r\x00H\x00)\x00P\x00!'
My first question is what is b'P meaning? An the second is how to convert it to string or int?
print(b'\x50'.decode('ascii')).