- 仅仅在python2.X做过实验
- 可以把”\u0063\u0072”字符串转化为汉字字符串
- 可以把汉字字符串转化为把”\u0063\u0072”字符串
- 注意不是改变编码格式,是把编码格式的内容改变为字符串保存下来
#!/usr/bin/python
# -*- coding: utf-8 -*-
#python2.X
slashUStr = "\\u0063\\u0072\\u0069\\u0066\\u0061\\u006E\\u0020\\u5728\\u8DEF\\u4E0A"
#slashUStr = "\u0063\u0072\u0069\u0066\u0061\u006E\u0020\u5728\u8DEF\u4E0A";#crifan 在路上
decodedUniChars = slashUStr.decode("unicode-escape")
print slashUStr
print decodedUniChars #decodedUniChars= crifan 在路上
stra = u"在路上"
print stra
b=str([stra]).strip('[').strip(']')[1:]
print b
c=b.decode("unicode-escape")
print c