标签: python unicode
可能重复: Conversion of strings like \\uXXXX in python
嗨,假设我有字符串
test '\\u0259'
请注意转义的反斜杠。
如何将其转换为相应的unicode字符串?
答案 0 :(得分:30)
>>> print 'test \\u0259'.decode('unicode-escape') test ə