Search Results

1
vote

Convert XML/HTML Entities into Unicode String in Python

Use the builtin unichr -- BeautifulSoup isn't necessary: >>> entity = '&#x01ce' >>> unichr(int(entity[3:],16)) u'\u01ce' …