Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I have a string that prints out like this

print a
u4f53u91cdu8a08

I am using eclipse and the console can print unicode characters, I have tested it like this.

print u'u4f53u91cdu8a08'
体重計

It prints out correctly, how can I make the string in the variable a to be printed like above.

Thanks very much for advance.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
1.8k views
Welcome To Ask or Share your Answers For Others

1 Answer

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:

print a.decode('unicode-escape')

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...