/proc/html_decode(HtmlText)
Arguments:
HtmlText: A string to unescape.
Returns:
text: The provided string, unescaped.

The inverse of html_encode(), text that has already been escaped - such as & becoming & - can be decoded into a normal string.

world.log << html_decode("My &amp; strin&#39;g full &gt; of reserved &#39; &lt; characters &quot;.")
// My & strin'g full > of reserved ' < characters \".