HTML Entity Decoder
FreeConvert HTML entities back to their original characters instantly.
Common HTML Entities
Numeric Entity Formats
Decimal Format
Uses decimal character codes
Hexadecimal Format
Uses hex character codes
About HTML Entity Decoding
HTML entity decoding converts HTML entities back to their original characters. This tool supports all named entities (like ©), decimal numeric entities (like ©), and hexadecimal entities (like ©). Useful for reading encoded HTML source code or processing scraped web content.
How to Use the HTML Entity Decoder
- Paste your HTML-encoded text in the input area
- The decoded output updates automatically as you type
- All entity types are supported: named, decimal, and hexadecimal
- Copy the decoded result to use in your projects
Features
- Named entities (© €)
- Decimal entities (©)
- Hexadecimal entities (©)
- Real-time decoding
- Entity reference table
- 100% client-side processing
Common Use Cases
- Web scraping: Decode scraped HTML content to readable text
- Email processing: Decode HTML-encoded email content
- API responses: Decode HTML entities in API data
- Source code review: Read encoded HTML source code
- Data migration: Clean up encoded content when moving data
Entity Types Explained
Named Entities: Human-readable names like © for ©, € for €, and for non-breaking space. These are the most common and easiest to recognize.
Decimal Entities: Use the decimal Unicode code point, formatted as &#NNN; where NNN is the decimal number. For example, © represents © (code point 169).
Hexadecimal Entities: Use the hex Unicode code point, formatted as &#xHH; where HH is the hex number. For example, © represents © (hex A9 = decimal 169).