← Back to Home 🌐 中文 ?

📖 HTML Entity Encoder/Decoder Guide

What is HTML Entity Encoding?

Characters with special meaning in HTML (like < > & etc.) need to be encoded as entities:

<

&lt; Less than

>

&gt; Greater than

&

&amp; Ampersand

"

&quot; Double quote

'

&apos; Single quote

Space

&nbsp; Non-breaking space

Use Cases
Code Display

Show HTML code on page without execution

Data Storage

Safe storage of HTML content

URL Parameters

Handle URLs with special characters

HTML Entity Encoder/Decoder

Encode and decode HTML special characters, auto-process on paste