Ad Space
Free Character Map
Browse Unicode characters by category, search by name or code point, and copy to clipboard.
Ad Space
How to Use
- Click a category tab to view characters in that group.
- Click any character to view its details and copy options.
- Use the search box to find characters by name (e.g., "heart") or hex code (e.g., "2665").
- Click Copy Character to copy the selected character to your clipboard.
Frequently Asked Questions
What is a Unicode code point?
A Unicode code point is a unique number assigned to every character in the Unicode standard. It is written in hexadecimal format, often prefixed with U+ (e.g., U+2665 for ♥).
What is an HTML entity?
An HTML entity is a special code that represents a character in HTML. For example, ♥ represents ♥. Entities are useful when you cannot directly type a character.
What is CSS code?
CSS code uses the \\ notation to insert a character using its Unicode code point in stylesheets. For example, .heart::before { content: "\2665"; } inserts ♥.