py2 怎么将汉字转换为 XML 里表示的&#xxxx 形式?
資深大佬 : oldbird 6
&#xxxx 是什么编码格式? py2 怎么将汉字转换为这种形式? XML 里用的
大佬有話說 (6)
&#xxxx 是什么编码格式? py2 怎么将汉字转换为这种形式? XML 里用的
from html import escape
print(escape(u’中文’).encode(‘ascii’, ‘xmlcharrefreplace’).decode(‘u8’))
python – Convert HTML entities to Unicode and vice versa – Stack Overflow – https://stackoverflow.com/questions/701704/convert-html-entities-to-unicode-and-vice-versa
[Running] python2 -u “demo.py”
中文