Decode HTML String Online

Convert html encoded text to plain text easily.
Give Rating

Decode String to HTML Code

How to Convert Encoded String to HTML Code

  1. Enter encoded HTML in input text area.
  2. Click on Show Output button to generate decoded HTML

Uses

  • parsing escaped HTML
  • verifying escaped string

Examples

If you input data

<div class="className">
    <h3>Hello World</h3>
    <p class="paragarph">Hello</p>
</div>

the output would be:

<div class="className">
    <h3>Hello World</h3>
    <p class="paragarph">Hello</p>
</div>