html.unescape python
import html
html.unescape('Suzy & John')
# 'Suzy & John'
html.unescape('"')
# '"'
Cautious Caiman
import html
html.unescape('Suzy & John')
# 'Suzy & John'
html.unescape('"')
# '"'