Convert HTML entities back to the characters they represent.
Ctrl + Enter to run
Decoding turns entities such as `&`, `<` and `'` back into the characters they represent. It is the fastest way to read content pulled out of an RSS feed, a scraped page or a CMS field that stored markup-safe text and handed it back unchanged.
Double-encoded content is the usual surprise: text showing `&lt;` was escaped twice, and one decode leaves it as `<`. Seeing that is diagnostic in itself, because it means something in the pipeline is escaping content that was already safe.