html.unescape Python

import html
html.unescape('Suzy & John')
# 'Suzy & John'

html.unescape('"')
# '"'
Cautious Caiman