简体   繁体   中英

python3: How to convert a string with Unicode encoding to a string of letters

In Python3, how do I convert '\\\© PNG' to '\© PNG' (or '© PNG' )?

For Java, there is Apache Commons Lang to decode it.

I don't know how to do in Python3.

This should work for you.

string = '\\u00A9 PNG'
print (string.encode('utf8').decode('unicode-escape'))

output:

© PNG

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM