← Back to HTML Code Reference

Complete Guide to HTML Entity Codes

HTML entity codes are special sequences that allow you to display reserved characters, special symbols, and international letters in your web pages. This guide covers everything from basic symbols like © to mathematical operators and Greek letters.

What Are HTML Entities?

HTML entities are strings that begin with an ampersand (&) and end with a semicolon (;). They are used to display characters that would otherwise be interpreted as HTML code or that are not available on standard keyboards.

For example, if you want to display a less-than sign (<) in your HTML, you can't just type "<" because the browser would interpret it as the start of an HTML tag. Instead, you use the &lt; entity.

Most Common HTML Entities

CharacterNamed EntityNumeric EntityDescription
&&amp;&#38;Ampersand
<&lt;&#60;Less than
>&gt;&#62;Greater than
©&copy;&#169;Copyright
&hearts;&#9829;Heart

Named vs Numeric Entities

Named entities are easy to remember (like &copy; for copyright). Numeric entities use Unicode code points (like &#169;). Both produce the same character. Not all characters have named entities, so numeric references are more universal.

Categories of HTML Entities

Browse all 834 HTML codes →

FAQ

What is an HTML entity?

A special character code like © for ©.

How to use?

Copy the entity code into your HTML.

Common entities?

& < > " ©

✅ htmlcode.world · Updated: 2026-06-20