python 把\u开头的unicode转中文
2018-11-10 本文已影响0人
theo_NI
python3 把\u开头的unicode转中文
- python3 中
i.encode('utf-8').decode('unicode_escape') #i='\u751F\u5316\u5371\u673A'
- python2 中
i.decode('unicode-escape')
- 总结 unicode_escape可看作Unicode的反向编码,属于unicode存储到文本的过程中另一种存储方式