HTML Escape / Unescape is a free online developer tool to escape special characters in HTML strings to their HTML entities or unescape HTML entities to their original characters.
This tool is split into two modes: HTML Escape
and HTML Unescape
.
HTML Escape - Escapes HTML special characters; i.e. &
, <
, >
, "
, and '
in the input HTML code by converting them to their corresponding HTML entities as in the following.
&
is converted to &
<
is converted to <
>
is converted to >
"
is converted to "
'
is converted to '
Other than the aforementioned characters, nothing is escaped.
HTML Unescape - Opposite to HTML Escape
. This mode unescapes the HTML entities &
, <
, >
, "
, and '
in the input HTML code by converting them to their corresponding characters as listed below.
&
is converted to &
<
is converted to <
>
is converted to >
"
is converted to "
'
is converted to '
Other than the HTML entities above, nothing is unescaped.
When you're done escaping or unescaping, you can copy the result to your clipboard using the copy button.