HTML Escape Unescape

HTML Escape Unescape

html-escape-unescape

HTML Escape/Unescape Tool

Escape special characters to HTML entities or unescape HTML entities back to regular characters.

Original Length: 0 chars
Processed Length: 0 chars
Entities Changed: 0

ℹ️ HTML Escaping Guide

Escaping Options Explained:

  • Escape Special Chars: Converts only <, >, &, ", ' to entities
  • Escape All Non-ASCII: Converts all non-alphanumeric characters to entities
  • Unescape: Converts HTML entities back to regular characters

Entity Types:

  • Named: &lt; &gt; &amp; (human-readable)
  • Decimal: &#60; &#62; &#38; (numeric)
  • Hexadecimal: &#x3C; &#x3E; &#x26; (hex codes)
Input Settings Output
<div>Hello</div> Escape, Named &lt;div&gt;Hello&lt;/div&gt;
© 2023 Escape All, Decimal &#169; 2023
&#x263A; Smile Unescape ☺ Smile

Note: Escaping all characters will significantly increase text size. Use only when necessary.