Welcome to SO.
Please read [How to ask a good question](http://stackoverflow.com/help/how-to-ask)
And [the perfect question](http://codeblog.jonskeet.uk/2010/08/29/writing-the-perfect-question/)
– RiggsFollyJan 12 '16 at 13:23
1
1). You really need to mention which Python version you're using (preferably by using a tag), since Python 2 & Python 3 handle Unicode differently. 2). You _can_ do the conversion specified in your title using `u"\xb8\xa3\xbd\xa8\xd2\xbb\xc7\xf8".encode('latin1')`, but I suspect we need more info to answer your question properly. Eg, would you like your string to be converted to `u'\u798f\u5efa\u4e00\u533a'`?
– PM 2RingJan 12 '16 at 13:38
1
My Python version is python2.7, and I use `u"\xb8\xa3\xbd\xa8\xd2\xbb\xc7\xf8".encode('latin1').decode('gbk')`, it works,thank you!
– fmnismeJan 13 '16 at 02:43