XML Escape / Unescape is a free online developer tool to escape special characters in XML to ensure it's safe to render or unescape XML entities to their original characters.
This tool is split into two modes: XML Escape
and XML Unescape
.
XML Escape - Escapes XML special characters; i.e. &
, <
, >
, "
, and '
in the input XML data by converting them to their corresponding XML entities.
&
is converted to &
<
is converted to <
>
is converted to >
"
is converted to "
'
is converted to '
XML Unescape - Opposite to XML Escape
, this mode unescapes XML entities &
, <
, >
, "
, and '
in the input XML data by converting them to their corresponding characters.
&
is converted to &
<
is converted to <
>
is converted to >
"
is converted to "
'
is converted to '
Other than these XML special characters, everything else stays intact.
Once done, you can copy the result to your clipboard using the copy button.