标签: python python-3.x special-characters decode encode
如何正确解码包含特殊货币字符的字符串值?
示例:
฿ đ
我一直在使用.encode()和.decode()方法,但没有成功。
答案 0 :(得分:3)
使用html.unescape(doc):
html.unescape
from html import unescape print(unescape('฿ đ'))
打印:
฿ đ