I am using readline command and getting hex values. However when I print the data received it converts few of the hex values to characters. Example:
b'\x06\x02ABL\x00\x00\x00\x02'
# ^^^
I would like it to be displayed as
b'\x06\x02\x41\x42\x4C\x00\x00\x00\x02'
How I can achieve this?