HTML Entity Converter
Encode and decode HTML entities with support for named, numeric, and hexadecimal formats
Named EntitiesNumeric FormatHex Format
HTML Entity Converter
Encode and decode HTML entities with support for named, numeric, and hexadecimal formats
HTML Entity Reference
Char | Named | Numeric | Hex | Description |
---|---|---|---|---|
& | & | & | & | Ampersand |
< | < | < | < | Less than |
> | > | > | > | Greater than |
" | " | " | " | Double quote |
' | ' | ' | ' | Apostrophe |
|   |   | Non-breaking space | |
¢ | ¢ | ¢ | ¢ | Cent |
£ | £ | £ | £ | Pound |
¥ | ¥ | ¥ | ¥ | Yen |
€ | € | € | € | Euro |
± | ± | ± | ± | Plus/minus |
× | × | × | × | Multiplication |
÷ | ÷ | ÷ | ÷ | Division |
≠ | ≠ | ≠ | ≠ | Not equal |
≤ | ≤ | ≤ | ≤ | Less than or equal |
≥ | ≥ | ≥ | ≥ | Greater than or equal |
© | © | © | © | Copyright |
® | ® | ® | ® | Registered |
™ | ™ | ™ | ™ | Trademark |
° | ° | ° | ° | Degree |
§ | § | § | § | Section |
¶ | ¶ | ¶ | ¶ | Paragraph |
← | ← | ← | ← | Left arrow |
→ | → | → | → | Right arrow |
↑ | ↑ | ↑ | ↑ | Up arrow |
↓ | ↓ | ↓ | ↓ | Down arrow |
À | À | À | À | A grave |
É | É | É | É | E acute |
Ñ | Ñ | Ñ | Ñ | N tilde |
Ü | Ü | Ü | Ü | U umlaut |
α | α | α | α | Alpha |
β | β | β | β | Beta |
γ | γ | γ | γ | Gamma |
Ω | Ω | Ω | Ω | Omega |
Options
About HTML Entities
HTML entities are special codes used to display reserved characters and symbols in HTML. They are essential for:
- • Displaying special characters like <, >, and &
- • Preventing XSS attacks by escaping user input
- • Showing Unicode characters consistently
- • Displaying mathematical and currency symbols
- • Ensuring proper HTML validation
Three formats are available: Named (&), Numeric (&), and Hexadecimal (&). Named entities are more readable, while numeric formats have broader support.