HTML Entity Decoder
Quick Tips
- • This tool runs entirely in your browser - your data stays private.
- • Press Ctrl+V (Cmd+V on Mac) to quickly paste text.
- • Use the Copy button to save your result to clipboard.
- • Bookmark this page for quick access!
Decode HTML entities like & and < to regular characters.
Examples
&
&
<div>
<div>
&quot;Hello&quot;
"Hello"
caf&eacute;
cafe
&#169; 2024
(c) 2024
Frequently Asked Questions
HTML entities are special codes that represent characters in HTML. They start with & and end with ;. For example, &amp; represents &, &lt; represents <, and &nbsp; represents a non-breaking space. They're used for characters that have special meaning in HTML or can't be easily typed.
This usually happens when text has been HTML-encoded for safe display in web pages. When you copy text from a webpage source or receive it from an API, entities may need decoding. Use this tool to convert them back to readable characters.
Double encoding occurs when already-encoded text gets encoded again. The & in &amp; becomes &amp;amp;. This creates garbled text that needs multiple decoding passes. Our tool can handle multiple encoding layers to reach the original text.
No, they're different systems. HTML entities use &name; or &#number; format for HTML display. URL encoding uses %XX format (like %20 for space) for URLs. Each has its own purpose and decoder. Our HTML decode tool specifically handles HTML entities.
Yes, the tool decodes both named entities (like &amp;) and numeric entities in decimal (') or hexadecimal (') format. All represent characters using different notation systems, and all are converted to their actual character values.
Related Tools
String Utilities
<p>String Utilities is your comprehensive toolkit for perfor...
NATO Phonetic Alphabet
<p>Our NATO Phonetic Alphabet Converter transforms regular t...
Pig Latin Converter
<p>Our Pig Latin Converter transforms English text into Pig...
Backwards Words
<p>Our Backwards Words tool reverses text in multiple ways:...
Phonetic Spelling Generator
<p>Our Phonetic Spelling tool converts words into their pron...
URL Encode Text
<p>The URL Encoder converts text into a format safe for use...
Related Articles
HTML Encoding: Preventing XSS and Display Issues
Learn how HTML encoding works and why it is essential for web security and proper display.
Read moreHTML Entity Encoder: How to Escape Special Characters
Encode special characters as HTML entities to prevent rendering issues and XSS attacks. Learn when and how to escape HTML properly.
Read moreHTML Entity Decoder: Convert Encoded Characters Back to Text
Learn to decode HTML entities and convert encoded characters back to readable text. Essential knowledge for web developers, content managers, and data handlers.
Read more