Data lookups
HTML entities
Codes for copyright, arrows, quotes, maths and other symbols.
62 entries.
| Char | Named entity | Numeric | Description |
|---|---|---|---|
| & | & | & | Ampersand — must always be escaped |
| < | < | < | Less than — must always be escaped |
| > | > | > | Greater than |
| " | " | " | Double quote |
| ' | ' | ' | Apostrophe / single quote |
| |   | Non-breaking space | |
| © | © | © | Copyright |
| ® | ® | ® | Registered trademark |
| ™ | ™ | ™ | Trademark |
| £ | £ | £ | Pound sterling |
| € | € | € | Euro |
| $ | $ | $ | Dollar |
| ¢ | ¢ | ¢ | Cent |
| ¥ | ¥ | ¥ | Yen |
| ° | ° | ° | Degree |
| ± | ± | ± | Plus or minus |
| × | × | × | Multiplication |
| ÷ | ÷ | ÷ | Division |
| ≠ | ≠ | ≠ | Not equal to |
| ≤ | ≤ | ≤ | Less than or equal |
| ≥ | ≥ | ≥ | Greater than or equal |
| ≈ | ≈ | ≈ | Approximately equal |
| ½ | ½ | ½ | One half |
| ¼ | ¼ | ¼ | One quarter |
| ¾ | ¾ | ¾ | Three quarters |
| – | – | – | En dash — for ranges |
| — | — | — | Em dash — for asides |
| … | … | … | Ellipsis |
| • | • | • | Bullet |
| · | · | · | Middle dot |
| † | † | † | Dagger |
| § | § | § | Section |
| ¶ | ¶ | ¶ | Paragraph (pilcrow) |
| ‘ | ‘ | ‘ | Left single quote |
| ’ | ’ | ’ | Right single quote / apostrophe |
| “ | “ | “ | Left double quote |
| ” | ” | ” | Right double quote |
| « | « | « | Left angle quotes |
| » | » | » | Right angle quotes |
| ← | ← | ← | Left arrow |
| → | → | → | Right arrow |
| ↑ | ↑ | ↑ | Up arrow |
| ↓ | ↓ | ↓ | Down arrow |
| ↔ | ↔ | ↔ | Left-right arrow |
| ⇒ | ⇒ | ⇒ | Double right arrow |
| ★ | (none) | ★ | Filled star |
| ☆ | (none) | ☆ | Open star |
| ✓ | (none) | ✓ | Check mark |
| ✗ | (none) | ✗ | Ballot X |
| ♥ | ♥ | ♥ | Heart |
| α | α | α | Greek alpha |
| β | β | β | Greek beta |
| π | π | π | Greek pi |
| µ | µ | µ | Micro sign |
| Ω | Ω | Ω | Ohm / Greek omega |
| ∞ | ∞ | ∞ | Infinity |
| √ | √ | √ | Square root |
| ∑ | ∑ | ∑ | Summation |
| € | € | € | Euro sign |
| ⌘ | (none) | ⌘ | Mac command key |
| ⌥ | (none) | ⌥ | Mac option key |
| ⇧ | (none) | ⇧ | Shift key |
Only &, <, > and " strictly need escaping in HTML — the rest are for convenience when a character is hard to type.