我正在解析包含许多特殊字符(Unicode 和 HTML 实体形式)的 HTML 文件。尽管使用 Python 阅读了大量关于 Unicode 的文档,但我仍然无法正确转换 HTML 实体。
这是我运行的测试:
>>> import HTMLParser
>>> p = HTMLParser.HTMLParser()
>>> s = p.unescape("‹")
>>> repr(s)
"u'\\x8b'"
>>> print s
‹ # !!!
>>> s
u'\x8b'
>>> print s.encode("latin1")
‹ # OK, it prints fine in latin1, but I need UTF-8 ...
>>> print s.encode("utf8")
‹ # !!!
>>> import codecs
>>> out = codecs.open("out8.txt", encoding="utf8", mode="w")
>>> out.write(s)
# Viewing the file as ANSI gives me ‹ # !!!
# Viewing the file as UTF8 gives NOTHING, as if the file were empty # !!!
将未转义的字符串 s 写入 UTF8 文件的正确方法是什么?