HTML Entity Encoder / Decoder
Encode and decode HTML entities like & < > ". Safe for embedding in HTML.
Output:
What are HTML Entities?
HTML entities are special characters represented by codes that start with & and end with ;. They prevent HTML from interpreting characters as code (e.g. < for <, & for &).
What is it used for?
- Display in HTML: Show
<,>,&and quotes in text - XSS prevention: Escape user input before rendering in HTML
- Copy-paste from HTML: Decode entities when extracting content
- Email templates: Safely embed special characters
Common entities
& (&), < (<), > (>), " ("), ' ('). Numeric entities like © for ยฉ are also supported.
Related Tools
Base64 to Text
Decode Base64 to plain text effortlessly. Free online tool for instant Base64 decoding, supporting various character sets. Paste your Base64 string and get readable text.
URL Encoder/Decoder
Encode and decode URL strings. Percent-encoding for special characters. Free online URL encoder decoder.
String Escape/Unescape
Escape and unescape strings for JSON, SQL, HTML, and regex. Free online string escape tool.