Online HTML Escape Unescape

Input data
bfotool loadding
Output data
bfotool loadding

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

How to Escape/ Unescape HTML?

  • To Escape/ Unescape your HTML data add/ copy and paste the HTML data into the input.
  • You can also load the HTML data from the url by clicking the  button or load the HTML 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.

SQL To YAML Example

Input Data

<nav class="navbar navbar-expand-sm bg-light">
    <ul class="navbar-nav">
        <li class="nav-item">
            <a class="nav-link" href="#">Link 1</a>
        </li>
        <li class="nav-item">
            <a class="nav-link" href="#">Link 2</a>
        </li>
        <li class="nav-item">
            <a class="nav-link" href="#">Link 3</a>
        </li>
    </ul>
</nav>

After Escape

&lt;nav class=&quot;navbar navbar-expand-sm bg-light&quot;&gt;
    &lt;ul class=&quot;navbar-nav&quot;&gt;
        &lt;li class=&quot;nav-item&quot;&gt;
            &lt;a class=&quot;nav-link&quot; href=&quot;#&quot;&gt;Link 1&lt;/a&gt;
        &lt;/li&gt;
        &lt;li class=&quot;nav-item&quot;&gt;
            &lt;a class=&quot;nav-link&quot; href=&quot;#&quot;&gt;Link 2&lt;/a&gt;
        &lt;/li&gt;
        &lt;li class=&quot;nav-item&quot;&gt;
            &lt;a class=&quot;nav-link&quot; href=&quot;#&quot;&gt;Link 3&lt;/a&gt;
        &lt;/li&gt;
    &lt;/ul&gt;
&lt;/nav&gt;