首页 > 如何用python把这段ASCII码转换为可读的字符串

如何用python把这段ASCII码转换为可读的字符串

查找了ord和chr这类,没有搞定。想用python把"\u5b57\u7b26\u7f16\u7801"转为汉字字符串。


这是unicode,需要u"\u5b57\u7b26\u7f16\u7801",print 就是中文,字符编码


答案如下:

#!/usr/bin/env python3
# -*- coding:utf-8 -*-
str = "\u53ef\u8f6c\u51fa\u91d1\u989d\u8d85\u9650"
str.encode('utf8')
print(str)

print string.encode('utf8')

这是Unicode

【热门文章】
【热门文章】