从我的理解\xe1\x984a\x82@Z\xb4\x85\xd0
看起来像字节流。
所以你可以用这样的可读格式进行转换。
>>> b'\xe1\x984a\x82@Z\xb4\x85\xd0'.decode('utf-8','ignore')
'4a@Z'
你的字节流字符串也以这样的整数格式给出输出。
>>> int.from_bytes(b'\xe1\x984a\x82@Z\xb4\x85\xd0', byteorder='big', signed=True)
-143585681428579525294640
您可以访问here和here。