I'm trying to decode a byte string after detecting the type of encoding it has gone through.
The string is:
\xa1\xb6\xb0\xb5\xd2\xb9\xa1\xb7\x00\x02\x00`\xeb\x03h\x10\xeb\x03\x03\x12+\x00\n\xfe\n\x03
The detected encoding is big5
, when I try to decode that using string.decode('big5') it throws the below error:
UnicodeDecodeError: 'big5' codec can't decode bytes in position 12-13: illegal multibyte sequence
Need some help as to how to solve this issue?