I have a string that prints out like this
print a \\u4f53\\u91cd\\u8a08
I am using eclipse and the console can print unicode characters, I have
Perhaps...
print unicode(a)
would do the trick?
If the string itself actually has escaped escapes in it (i.e. if you were to write it, it'd be something more like u'\\u4f53\\u91cd\\u8a08'), then use:
u'\\u4f53\\u91cd\\u8a08'
print a.decode('unicode-escape')