I am using python3 to call a function written in another language. The function returns a string which should be a Chinese character. But I only get a string which is b'\xbb\xf9\xb2\xee', not the Chinese character I am expecting. How do I convert it back to the character I wanted? Thanks.
Update: the code is
temp=ts.RemoteCallFunc("StockIndexFutures_basis",["IF00","SH000300",ts.EncodeDate(2012,3,7),ts.EncodeDate(2012,5,1),"日线"],{});
and the result is a list :
[{b'\xbb\xf9\xb2\xee': 7.313000000000102, b'SH000300': 2631.487, b'date': b'2012-04-26', b'IF00': 2638.8}, {b'\xbb\xf9\xb2\xee': 12.442999999999756, b'SH000300': 2626.157, b'date': b'2012-04-27', b'IF00': 2638.6}]