We've updated — New tools, dark mode, and an improved experience. 🎉

What is HTML Entities?

HTML entities are escape sequences for reserved or special characters in HTML. For example, &lt; represents <, &gt; represents >, &amp; represents &. Entities prevent interpretation issues (e.g., < in text being parsed as a tag) and allow displaying characters not on the keyboard. Named entities (e.g., &nbsp;, &copy;) and numeric entities (&#160;, &#xa0;) exist. Encoding converts characters to entities; decoding reverses it. Used when displaying user input safely or including special symbols.

Related Tools

← Back to Glossary