HTML Entity Encoder / Decoder
Encode special characters to HTML entities or decode entities back to text. Prevents XSS and fixes display issues.
Common HTML Entities
| Character | Entity | Name |
|---|---|---|
| & | & | Ampersand |
| < | < | Less than |
| > | > | Greater than |
| " | " | Double quote |
| ' | ' | Single quote |
| | Non-breaking space | |
| © | © | Copyright |
| ® | ® | Registered |
| ™ | ™ | Trademark |
| — | — | Em dash |
| – | – | En dash |
| … | … | Ellipsis |
| ° | ° | Degree |
| × | × | Multiplication |
| ÷ | ÷ | Division |
You might also like
HTML Entity Encoder & Decoder
Encode special characters like <, >, &, and quotes into their HTML entity equivalents to prevent XSS attacks and rendering issues. Decode HTML entities back to readable text. Includes a reference table of the most common HTML entities and supports both named (&) and numeric (&) entities.