python 对Unicode解码
2020-12-13 04:40
标签:esc class escape style print div utf8 nbsp cap 打印: 得到Unicode编码: 将上面的编码赋值给str后解码: 输出: python 对Unicode解码 标签:esc class escape style print div utf8 nbsp cap 原文地址:https://www.cnblogs.com/feiquan/p/11117703.htmlprint(‘我喜欢你‘.encode(‘utf8‘))
b‘\\u6211\\u559c\\u6b22\\u4f60
#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‘
下一篇:java垃圾回收机制的理解