SYSTEM TIME --:--:-- IST · 152 TOOLS LIVE · RUNS IN YOUR BROWSER — NOTHING UPLOADED
← Back to DEVELOPER
DEVELOPER

HTML Entity Encoder/Decoder

Convert special characters to HTML entities, or decode entities back to text.

About this tool

HTML entities are the escaped representations of characters that have special meaning in HTML — < and > for angle brackets, & for ampersand, " for quotes — needed whenever you want to display those literal characters in HTML rather than have them interpreted as markup.

This encodes plain text into HTML-safe entities (turning a literal "<" into "&lt;" so it displays as a less-than sign instead of starting a tag), or decodes entities back into their literal characters. This is different from URL encoding, which handles a different set of characters for a different context (URLs, not HTML markup) — use the URL Encoder for query strings and URLs instead.

This is particularly useful when displaying user-submitted content or code snippets on a webpage, where failing to encode special characters can break the page layout or, in more serious cases, open a cross-site scripting vulnerability.

Frequently asked questions

How is this different from URL encoding?

HTML entities escape characters that have special meaning in HTML markup (like < and &). URL encoding escapes characters that have special meaning in a URL. They serve different purposes and use different escape formats — use whichever matches where the text is actually going.

Why does failing to encode matter for security?

Displaying unescaped user input directly in HTML can allow injected script tags to execute (cross-site scripting) rather than display as plain text — encoding is a basic defense, though a full security review needs more than just this.

What characters get encoded?

The core HTML-significant characters: < > & " ’ — the ones that would otherwise be interpreted as markup or attribute syntax rather than literal text.

Related tools