Unicode Table
Search and browse Unicode characters by name, code point, or category. Copy characters, HTML entities, and escape sequences instantly.
150 characters
U+0021!\u0021U+0022"\u0022U+0026&\u0026U+0027'\u0027U+002A*\u002AU+002B+\u002BU+003C<\u003CU+003D=\u003DU+003E>\u003EU+0040@\u0040U+005C\\u005CU+007C|\u007CU+007E~\u007EU+00A9©\u00A9U+00AE®\u00AEU+00B0°\u00B0U+00B1±\u00B1U+00B2²\u00B2U+00B3³\u00B3U+00B5µ\u00B5U+00B7·\u00B7U+00D7×\u00D7U+00F7÷\u00F7U+2013–\u2013U+2014—\u2014U+2018‘\u2018U+2019’\u2019U+201C“\u201CU+201D”\u201DU+2026…\u2026U+2022•\u2022U+2023‣\u2023U+2030‰\u2030U+2032′\u2032U+2033″\u2033U+2200∀\u2200U+2202∂\u2202U+2203∃\u2203U+2205∅\u2205U+2207∇\u2207U+2208∈\u2208U+2209∉\u2209U+220F∏\u220FU+2211∑\u2211U+221A√\u221AU+221E∞\u221EU+2227∧\u2227U+2228∨\u2228U+2229∩\u2229U+222A∪\u222AU+222B∫\u222BU+2248≈\u2248U+2260≠\u2260U+2261≡\u2261U+2264≤\u2264U+2265≥\u2265U+2282⊂\u2282U+2283⊃\u2283U+22C5⋅\u22C5U+2190←\u2190U+2191↑\u2191U+2192→\u2192U+2193↓\u2193U+2194↔\u2194U+21D0⇐\u21D0U+21D2⇒\u21D2U+21D4⇔\u21D4U+21E6⇦\u21E6U+21E7⇧\u21E7U+21E8⇨\u21E8U+21E9⇩\u21E9U+0024$\u0024U+00A2¢\u00A2U+00A3£\u00A3U+00A5¥\u00A5U+20AC€\u20ACU+20BF₿\u20BFU+20B9₹\u20B9U+20A9₩\u20A9U+00A4¤\u00A4U+2500─\u2500U+2502│\u2502U+250C┌\u250CU+2510┐\u2510U+2514└\u2514U+2518┘\u2518U+251C├\u251CU+2524┤\u2524U+252C┬\u252CU+2534┴\u2534U+253C┼\u253CU+2550═\u2550U+2551║\u2551U+2554╔\u2554U+2557╗\u2557U+255A╚\u255AU+255D╝\u255DU+25A0■\u25A0U+25A1□\u25A1U+25B2▲\u25B2U+25B6▶\u25B6U+25BC▼\u25BCU+25C0◀\u25C0U+25C6◆\u25C6U+25CB○\u25CBU+25CF●\u25CFU+2605★\u2605U+2606☆\u2606U+2660♠\u2660U+2663♣\u2663U+2665♥\u2665U+2666♦\u2666U+2713✓\u2713U+2714✔\u2714U+2715✕\u2715U+2716✖\u2716U+2717✗\u2717U+2718✘\u2718U+2764❤\u2764U+2665♥\u2665U+260E☎\u260EU+2709✉\u2709U+270F✏\u270FU+2728✨\u2728U+274C❌\u274CU+2705✅\u2705U+26A0⚠\u26A0U+2139ℹ\u2139U+03B1α\u03B1U+03B2β\u03B2U+03B3γ\u03B3U+03B4δ\u03B4U+03B5ε\u03B5U+03B6ζ\u03B6U+03B7η\u03B7U+03B8θ\u03B8U+03BBλ\u03BBU+03BCμ\u03BCU+03C0π\u03C0U+03C3σ\u03C3U+03C4τ\u03C4U+03C6φ\u03C6U+03C9ω\u03C9U+0393Γ\u0393U+0394Δ\u0394U+0398Θ\u0398U+039BΛ\u039BU+03A3Σ\u03A3U+03A6Φ\u03A6U+03A9Ω\u03A9What Is Unicode Table?
A searchable reference of commonly used Unicode characters. Find any character by name or code point, then copy the character itself, its HTML entity, or its JavaScript escape sequence with one click.
How to Use
- Search by character name (e.g., "arrow", "copyright") or code point (e.g., "U+2192")
- Filter by category: math, arrows, symbols, currency, Greek, etc.
- Click a copy button to copy the character, HTML entity, or JS escape
Features
- 150+ characters across 8 categories
- Copy character, HTML entity (
©), or JS escape (\u00A9) - Search by name or U+ code point
- Category filter for quick browsing
FAQ
What is a Unicode code point?
A code point is the unique number assigned to each character in the Unicode standard, written as U+XXXX (e.g., U+00A9 for ©). Every character in every language has a unique code point.
When should I use HTML entities vs. the character directly?
Use the character directly in UTF-8 encoded HTML — it's cleaner and more readable. Use HTML entities (©) when your file encoding is uncertain or when the character might be misinterpreted by the parser (like < and >).
How do I use Unicode escapes in JavaScript?
Use '\u00A9' in string literals, or String.fromCodePoint(0x00A9) for code points above U+FFFF.