HTML Entity Encoder
Encode special characters to HTML entities or decode HTML entities back to plain text. Essential for safe HTML content.
(non-ASCII to numeric entities)
Common HTML Entities Reference
| Character | Entity | Description |
|---|---|---|
| & | & | Ampersand |
| < | < | Less than |
| > | > | Greater than |
| " | " | Double quote |
| ' | ' | Single quote / apostrophe |
| | Non-breaking space |
Tip: Enable Encode All mode to convert every non-ASCII character (accented letters, symbols, emoji) into numeric HTML entities (&#xxxx;). This is useful when you need pure ASCII output for maximum compatibility.