Decode HTML entities Feb 23, 2018 by Xin Zhou Tags: python html Categories: Python Python3.4+ import html print(html.unescape('£682m')) Python2.6-3.3 from html.parser import HTMLParser h = HTMLParser() print(h.unescape('£682m')) link