In Python3, we have a function like this
Python 3.8.5 (v3.8.5:580fbb018f, Jul 20 2020, 12:11:27)
>>> from html import unescape
>>> unescaped = unescape("here is ' apostrophe")
>>> print(unescaped)
here is ' apostrophe
>>>
I'm having trouble finding an equivalent in Clojure. Does a base library function exist.