HTML Entity Decoder

Turn HTML entities back into plain characters.

Get this result as JSON (developer API)
curl "https://encode.wrapper-agency.com/api/v1/encode?op=html-decode&value=%26lt%3Ba%20href%3D%26quot%3Bx%26quot%3B%26gt%3BTom%20%26amp%3B%20Jerry%26lt%3B%2Fa%26gt%3B"

Free encode/decode/hash API — no key during beta. Everything is computed locally; nothing you enter is stored.

About HTML Decode

HTML entity decoding converts entities such as &, <, and ' back into their literal characters.

It supports named entities, decimal numeric entities (©), and hexadecimal numeric entities (©).

Use it to read HTML-escaped content from databases, exports, or scraped pages in plain form.

Example

Input<a href="x">Tom & Jerry</a>
Output<a href="x">Tom & Jerry</a>

Use it from code

curl "https://encode.wrapper-agency.com/api/v1/encode?op=html-decode&value=YOUR_TEXT"

Free during beta — no key. See the full API reference.

Related tools