有時候抓出來的中文unicode字串像這樣 \u55ae\u8eca
結果找一堆資料, 試了unicode, encode, decode都試不出來
結果昨晚就到Stack Overflow去問問看, 果然有一堆好心人幫忙回答
沒想到只要unicode-escape就解決了
str = '\u55ae\u8eca' # It mean '單車'
print str.decode('unicode-escape')
See Also
How to convert utf-8 string to big5 with python? - Stack Overflow