Decodificador de entidades HTML
Convierte entidades HTML como & y ' de nuevo en sus caracteres originales.
What is a Decodificador de entidades HTML?
Reverses HTML entity encoding — turns & back into &, ' back into ', and so on — for reading encoded text copied from a page's source or an API response that returns entity-escaped HTML.
How to use the Decodificador de entidades HTML
- Paste HTML-entity-encoded text
- Named and numeric entities are decoded instantly, on your device
- Copy the plain-text result
Example
<p>Tom & Jerry's Show</p> decodes to <p>Tom & Jerry's Show</p> — the original characters restored, no longer entity-escaped.
Frequently asked questions
What HTML entities does this decoder support?
The common named entities (&, <, >, ", ', , ©, curly quotes, dashes, and similar) plus any numeric entity (' or ') — which covers the vast majority of entities you'll actually run into.
Is my text uploaded anywhere?
No — Decodificador de entidades HTML runs entirely in your browser using JavaScript/WebAssembly. Your text is never sent to a server.
Does this decode numeric entities like ' as well as named ones like &?
Yes — both named entities and numeric entities, decimal or hexadecimal, are decoded correctly.