🔣 HTML Entity Reference

Ad Space - Top (728×90)

Browse common HTML entities — click any row to copy the entity code.

Showing 120 entities
SymbolNameNumberDescription
Ad Space - Middle (728×90)

FAQ

What are HTML entities?

HTML entities are special codes used to display reserved characters in HTML. Characters like <, >, and & have special meanings in HTML and must be written as entities like <, >, and & to display correctly.

Entity name vs number?

Entity names (like ©) are easier to remember but not every character has a named entity. Entity numbers (like ©) work for all Unicode characters. Use &#xHEX; for hex format.

How to use entities in HTML?

Simply type the entity code directly in your HTML. For example: <div> displays as

. Entities work inside most HTML elements.

Entity not displaying correctly?

Common causes: 1) Missing semicolon at the end; 2) Wrong entity name; 3) Page encoding not UTF-8; 4) Entity number references a non-existent character. Verify your code with this reference.