查找了ord和chr这类,没有搞定。想用python把"\u5b57\u7b26\u7f16\u7801"
转为汉字字符串。
伊谢尔伦2017-04-17 17:35:50
The answer is as follows:
#!/usr/bin/env python3
# -*- coding:utf-8 -*-
str = "\u53ef\u8f6c\u51fa\u91d1\u989d\u8d85\u9650"
str.encode('utf8')
print(str)
大家讲道理2017-04-17 17:35:50
This is unicode, you need u"u5b57u7b26u7f16u7801", print is Chinese, character encoding