2011年1月6日 星期四

[Python] convert Unicode to Big5

有時候抓出來的中文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
Related Posts Plugin for WordPress, Blogger...