python 对Unicode解码

Posted feiquan

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 对Unicode解码相关的知识,希望对你有一定的参考价值。

打印:

print(我喜欢你.encode(utf8))

得到Unicode编码:

b\\u6211\\u559c\\u6b22\\u4f60

 

将上面的编码赋值给str后解码:

#Unicode
s1=\\u6211\\u559c\\u6b22\\u4f60

#转为utf-8(明文)
print(s1.encode(utf8).decode(unicode_escape))
#转为utf-8编码
print(s1.encode(utf8).decode(unicode_escape).encode(utf8))

输出:

我喜欢你
b\xe6\x88\x91\xe5\x96\x9c\xe6\xac\xa2\xe4\xbd\xa0

 

以上是关于python 对Unicode解码的主要内容,如果未能解决你的问题,请参考以下文章

unicode,bytes,中文(utf-8/gbk) 编解码 | python

不支持 Python 解码 Unicode

Python—编码与解码(encode()和decode())

即使一切都是 unicode(python 2.7),ascii 解码错误

编码 解码 python

Python 技术篇 - 使用unicode_escape对js的escape()方法编码后的字符串进行解码实例演示