web信息中常会遇到“\u4f60\u597d”类型的字符。首先’\u‘开头就基本表明是跟unicode编码相关的,“\u”后的16进制字符串是相应汉字的utf-16编码。python里decode()和encode()为我们提供了解码和编码的方法。其中decode(‘unicode_escape’)能将此种字符串解码为unicode字符串。
比如:
str1 = '\u4f60\u597d'
print(str1.decode('unicode_escape'))
你好
Code language: PHP (php)
Refer:https://www.jianshu.com/p/8423f0653d11
了解 Starx's Home 的更多信息
Subscribe to get the latest posts sent to your email.
0 条评论