UTF8编码 / HTML编码

Encode配置

Decode配置

Python代码参考

## 编码
# Python2 & Python3
import cgi
cgi.escape('"<>')

# Python3
import html
html.escape('"<>')

## 解码
# Python2
import HTMLParser
HTMLParser.HTMLParser().unescape('&quot;&lt;&gt;')

# Python3
import html
html.unescape('&quot;&lt;&gt;')