Unicode Symbols Reference — Copy Common Characters (Arrows, Math, Emoji, Currency)
Copy-paste common Unicode characters — arrows, math symbols, currency, em/en dashes, smart quotes, box drawing, and emoji. With code point, HTML entity, and JS escape for each.
Practical Unicode character reference — the symbols you actually need to paste into copy, code, or docs. Click the symbol to select-and-copy in modern browsers. Every row includes the code point (for JS String.fromCodePoint()), the HTML entity, and the JS escape.
Punctuation — the ones you type wrong
| Char | Name | Code | HTML | JS |
|---|---|---|---|---|
| – | en dash (ranges) | U+2013 | – | \u2013 |
| — | em dash (parenthetical) | U+2014 | — | \u2014 |
| … | ellipsis | U+2026 | … | \u2026 |
| ' | left single quote | U+2018 | ‘ | \u2018 |
| ' | right single quote / apostrophe | U+2019 | ’ | \u2019 |
| " | left double quote | U+201C | “ | \u201C |
| " | right double quote | U+201D | ” | \u201D |
| · | middle dot | U+00B7 | · | \u00B7 |
| • | bullet | U+2022 | • | \u2022 |
| § | section | U+00A7 | § | \u00A7 |
Arrows
| Char | Name | Code | HTML |
|---|---|---|---|
| ← | left arrow | U+2190 | ← |
| → | right arrow | U+2192 | → |
| ↑ | up arrow | U+2191 | ↑ |
| ↓ | down arrow | U+2193 | ↓ |
| ↔ | left-right | U+2194 | ↔ |
| ⇐ | double left | U+21D0 | ⇐ |
| ⇒ | double right | U+21D2 | ⇒ |
| ⇔ | double left-right | U+21D4 | ⇔ |
| ↗ | up-right | U+2197 | ↗ |
| ↩ | hooked left | U+21A9 | ↩ |
Math
| Char | Name | Code | HTML |
|---|---|---|---|
| ± | plus-minus | U+00B1 | ± |
| × | multiplication | U+00D7 | × |
| ÷ | division | U+00F7 | ÷ |
| ≠ | not equal | U+2260 | ≠ |
| ≤ | less than or equal | U+2264 | ≤ |
| ≥ | greater than or equal | U+2265 | ≥ |
| ≈ | approximately | U+2248 | ≈ |
| ∞ | infinity | U+221E | ∞ |
| √ | square root | U+221A | √ |
| ∑ | sum | U+2211 | ∑ |
| π | pi | U+03C0 | π |
| ° | degree | U+00B0 | ° |
| ′ | prime (minutes) | U+2032 | ′ |
| ″ | double prime (seconds) | U+2033 | ″ |
Currency
| Char | Name | Code |
|---|---|---|
| € | euro | U+20AC |
| £ | pound sterling | U+00A3 |
| ¥ | yen / yuan | U+00A5 |
| ₹ | Indian rupee | U+20B9 |
| ₽ | Russian ruble | U+20BD |
| ฿ | Thai baht | U+0E3F |
| ₩ | Korean won | U+20A9 |
| ₺ | Turkish lira | U+20BA |
| ₦ | Nigerian naira | U+20A6 |
| ¢ | cent | U+00A2 |
Common emoji code points (for programmatic emoji)
| Emoji | Name | Code Point |
|---|---|---|
| ✓ | check mark | U+2713 |
| ✗ | ballot X | U+2717 |
| ★ | star (black) | U+2605 |
| ☆ | star (outline) | U+2606 |
| ♥ | heart (text) | U+2665 |
| ❤️ | red heart (emoji) | U+2764 U+FE0F |
| ⚠️ | warning | U+26A0 U+FE0F |
| ℹ️ | info | U+2139 U+FE0F |
| © | copyright | U+00A9 |
| ® | registered | U+00AE |
| ™ | trademark | U+2122 |
Box drawing (for terminal UIs)
┌─────┬─────┐
│ A │ B │
├─────┼─────┤
│ C │ D │
└─────┴─────┘
| Char | Code |
|---|---|
| ─ | U+2500 (light horizontal) |
| │ | U+2502 (light vertical) |
| ┌ ┐ └ ┘ | U+250C, U+2510, U+2514, U+2518 (corners) |
| ├ ┤ ┬ ┴ ┼ | U+251C, U+2524, U+252C, U+2534, U+253C (junctions) |
| ═ ║ ╔ ╗ ╚ ╝ | U+2550-U+255D (double-line variants) |
Programmatic access
- JavaScript:
"\u{1F600}"(ES6+) orString.fromCodePoint(0x1F600). Old\uXXXXonly handles the BMP (up to U+FFFF). - Python:
"\N{HORIZONTAL ELLIPSIS}"orchr(0x2026). - HTML: numeric
…or hex…works for any code point without needing a named entity. - CSS
content::content: "\2026"— hex, nou+, terminated by whitespace or 6 chars. - URL: use URL encoder — chars above ASCII must be percent-encoded.
Related
Featured Tools
Try these free tools directly in your browser — no sign-up required.
Character Counter
Count characters with and without spaces in any text instantly. Perfect for Twitter, SMS, meta descriptions, and platforms with strict character limits.
URL Encoder / Decoder
Encode or decode URLs and query strings instantly. Convert special characters to percent-encoding and back for safe URL transmission and debugging.
HTML Encoder / Decoder
Encode special characters to HTML entities or decode HTML entities back to plain text. Prevent XSS and display HTML code safely in web pages.