Escape HTML Strings

Escaping HTML String lets you put these texts directly into HTML code without being interpreted as HTML.

You can also unescape the code. The process is safe but be cautious of putting the unescaped code into your website. Make sure you know what it does and do not put unknown script into your website.

These entities are always escaped:

  • ' is replaced with ' or '

  • " is replaced with " or "

  • & is replaced with & or &

  • < is replaced with &lt; or &#60;

  • > is replaced with &gt; or &#62;


(?)