Online XML Escape Unescape

Input data
bfotool loadding
Output data
bfotool loadding

XML Escape Unescape tool helps you to escape and Unescape XML string when you want to output the XML directly not interpreted by browser.

How to Escape/ Unescape XML?

  • To Escape/ Unescape your XML data add/ copy and paste the XML data into the input.
  • You can also load the XML data from the url by clicking the  button or load the XML data from the computer by clicking the  button.
  • Click the 'Escape' or 'Unescape' button to process the data.
  • Once conversion is done you can download the file by clicking the  button.

Input Data

<?xml version="1.0" encoding="UTF-8" ?>
<root>
    <array>1</array>
    <array>2</array>
    <array>3</array>
    <boolean>true</boolean>
    <color>#82b92c</color>
    <null/>
    <number>123</number>
    <object>
        <a>b</a>
        <c>d</c>
        <e>f</e>
    </object>
    <string>Hello World</string>
</root>

After Escape

&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot; ?&gt;
&lt;root&gt;
    &lt;array&gt;1&lt;/array&gt;
    &lt;array&gt;2&lt;/array&gt;
    &lt;array&gt;3&lt;/array&gt;
    &lt;boolean&gt;true&lt;/boolean&gt;
    &lt;color&gt;#82b92c&lt;/color&gt;
    &lt;null/&gt;
    &lt;number&gt;123&lt;/number&gt;
    &lt;object&gt;
        &lt;a&gt;b&lt;/a&gt;
        &lt;c&gt;d&lt;/c&gt;
        &lt;e&gt;f&lt;/e&gt;
    &lt;/object&gt;
    &lt;string&gt;Hello World&lt;/string&gt;
&lt;/root&gt;