Named
Before
& < >
After
& < >
Convert HTML entities like & and ' back into readable characters for editing, debugging, and content reuse.
HTML Entity Decode
Decoding runs instantly as you type.
Your text stays in your browser — nothing is uploaded.
HTML entities
Tom & Jerry <strong>
Plain text
Tom & Jerry <strong>
Before
& < >
After
& < >
Before
©
After
©
Before
"hi"
After
"hi"
Before
it's
After
it's
HTML Entity Decode reverses named and numeric HTML entities into their Unicode characters. Use it when inspecting CMS exports, scraped content, or escaped snippets before editing.
Reading escaped CMS field values
Decoding scraped HTML text for analysis
Recovering quotes and symbols from encoded snippets
Debugging template output with double-encoded entities
Paste HTML entity encoded text into the input p…
Review decoded plain text in the output panel.
Check for invalid or partial entities — errors …
Copy or download the readable result.
Reading escaped CMS field values
Decoding scraped HTML text for analysis
Recovering quotes and symbols from encoded snip…
Debugging template output with double-encoded e…
Decoding does not strip HTML tags — it only converts entity sequences to characters.
Common named entities and numeric forms like ' and ' are decoded.
Malformed entities may show an error message instead of partial output.
No. Tags like <strong> remain; use Remove HTML Tags to strip markup.
No. Decoding runs locally in your browser.
Run decode twice if entities were encoded more than once.
Yes. Use Download .txt to save decoded text.
HTML entities are for markup display. URL encoding is for URLs and query parameters.
Yes. Non-breaking space entities decode to the Unicode nbsp character.