unicode汉字python将unicode编码转换为汉字的⼏种⽅法
str = '\u4eac\u4e1c\u653e\u517b\u7684\u722c\u866b'
⽅法1 使⽤unicode_escape 解码
print str.decode('unicode_escape')
print unicode(str, 'unicode_escape')
⽅法2:若为json 格式,使⽤json.loads 解码
print json.loads('"%s"' %str)
⽅法3:使⽤eval
print eval('u"%s"' % str)
⽅法4:使⽤python3
总结:
1. de() 把字符串转换为其raw bytes形式;bytes.decode() 把raw bytes转换为字符串形式
2. 遇到类似的编码问题时,先检查响应内容text是什么类型,
如果type(text) is bytes,那么:
text.decode('unicode_escape')
如果type(text) is str,那么:
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论