Stop Pasting Your Code into Random websites

HTML Decoder

Using Polypad this scripts decodes plain HTML data to encoded HTML which helps to show vanilla HTML text.

What is a HTML Decoder?

HTML Decoding is an opposite of encoding process. In the decoding process, the specially encoded characters are converted back to their original form. it decodes a string that contains HTML numeric character references and returns the decoded string.

  • HTML Decode is very unique tool to encode plain html.
  • This tool saves your time and helps to encode HTML data.

How to use HTML decoder?

Using the HTML Decoder script with Polypad is very easy. Let’s say we have some text string that we would like to decode. Simply paste the HTML encoded text down below into Polypad.

<div class="developer>
  <span>Carl</span>
</div>

Press cmd/ctrl + p depending on your operating system and search for the HTML Decode script and select it. The expected output should read:

<div class="developer>
  <span>Carl</span>
</div>