HTML Unescaper is a text utility that converts regular characters into HTML special characters.
HTML unescaping example
When there is a text code like this:
<div>Hello, World!</div>
HTML unescaping this will restore the original HTML code:
<div>Hello, World!</div>
Common characters that are frequently used
<
→ <
(less than, smaller symbol)
>
→ >
(greater than)
&
→ &
(ampersand)
"
→ "
(double quote, double quotation marks)
'
→ '
(single quote, single quote)