🔣
HTML Entities Reference
Find HTML entities for reserved characters like &, <, and >, as well as copyright symbols, arrows, and mathematical operators — each shown with both its named and numeric code. Search by character or description to locate the entity you need, then click to copy the code to your clipboard for immediate use in HTML or CSS.
| Char | Name | Code | Description |
|---|---|---|---|
| & | Ampersand | ||
| < | Less than | ||
| > | Greater than | ||
| " | Double quote | ||
| ' | Single quote | ||
| Non-breaking space | |||
| © | Copyright | ||
| ® | Registered trademark | ||
| ™ | Trademark | ||
| € | Euro sign | ||
| £ | Pound sign | ||
| ¥ | Yen / Yuan sign | ||
| ₩ | Korean Won sign (no named entity) | ||
| ← | Left arrow | ||
| → | Right arrow | ||
| ↑ | Up arrow | ||
| ↓ | Down arrow | ||
| — | Em dash | ||
| – | En dash | ||
| • | Bullet | ||
| … | Ellipsis | ||
| ± | Plus-minus | ||
| × | Multiply / Multiplication sign | ||
| ÷ | Division sign | ||
| ≠ | Not equal | ||
| ‘ | Left single quote | ||
| ’ | Right single quote | ||
| “ | Left double quote | ||
| ” | Right double quote | ||
| « | Left angle quote | ||
| » | Right angle quote | ||
| En space | |||
| Em space | |||
| | Soft hyphen (line break hint) | ||
| | Zero-width space | ||
| ≈ | Approximately equal | ||
| ≤ | Less than or equal | ||
| ≥ | Greater than or equal | ||
| ∞ | Infinity | ||
| √ | Square root | ||
| ∑ | Summation | ||
| ° | Degree | ||
| ½ | One half | ||
| ¼ | One quarter | ||
| ¾ | Three quarters | ||
| π | Pi | ||
| α | Alpha | ||
| β | Beta | ||
| γ | Gamma | ||
| δ | Delta | ||
| λ | Lambda | ||
| Ω | Omega | ||
| ♥ | Heart suit | ||
| ♠ | Spade suit | ||
| ♦ | Diamond suit | ||
| ♣ | Club suit | ||
| † | Dagger | ||
| ‡ | Double dagger | ||
| § | Section sign | ||
| ¶ | Paragraph sign | ||
| ¬ | Not sign | ||
| ∴ | Therefore | ||
| ↔ | Left right arrow | ||
| ⇐ | Double left arrow | ||
| ⇒ | Double right arrow | ||
| ⇔ | Double left right arrow | ||
| ∂ | Partial differential | ||
| ∏ | Product | ||
| ∫ | Integral | ||
| ∝ | Proportional to | ||
| ∠ | Angle | ||
| ∧ | Logical AND | ||
| ∨ | Logical OR | ||
| ∩ | Intersection | ||
| ∪ | Union | ||
| ∈ | Element of | ||
| ∉ | Not element of | ||
| ⊂ | Subset of | ||
| ⊃ | Superset of | ||
| ∅ | Empty set | ||
| ∇ | Nabla | ||
| Α | Capital Alpha | ||
| Β | Capital Beta | ||
| Γ | Capital Gamma | ||
| Θ | Capital Theta | ||
| Λ | Capital Lambda | ||
| Π | Capital Pi | ||
| Σ | Capital Sigma | ||
| Φ | Capital Phi | ||
| Ψ | Capital Psi | ||
| ε | Epsilon | ||
| ζ | Zeta | ||
| η | Eta | ||
| θ | Theta | ||
| κ | Kappa | ||
| μ | Mu | ||
| ξ | Xi | ||
| ρ | Rho | ||
| σ | Sigma | ||
| τ | Tau | ||
| φ | Phi | ||
| ψ | Psi | ||
| ω | Omega | ||
| À | A with grave | ||
| Á | A with acute | ||
| Â | A with circumflex | ||
| Ä | A with umlaut | ||
| Å | A with ring | ||
| Æ | AE ligature | ||
| Ç | C with cedilla | ||
| È | E with grave | ||
| É | E with acute | ||
| Ñ | N with tilde | ||
| Ö | O with umlaut | ||
| Ü | U with umlaut | ||
| ß | Sharp s (German) | ||
| à | a with grave | ||
| á | a with acute | ||
| â | a with circumflex | ||
| ä | a with umlaut | ||
| æ | ae ligature | ||
| ç | c with cedilla | ||
| è | e with grave | ||
| é | e with acute | ||
| ñ | n with tilde | ||
| ö | o with umlaut | ||
| ü | u with umlaut | ||
| ¢ | Cent sign | ||
| ¤ | Currency sign | ||
| ¹ | Superscript 1 | ||
| ² | Superscript 2 | ||
| ³ | Superscript 3 | ||
| ¿ | Inverted question | ||
| ¡ | Inverted exclamation | ||
| ′ | Prime (minutes) | ||
| ″ | Double prime (seconds) | ||
| ‾ | Overline | ||
| ‰ | Per mille |
Related Tools
FAQ
Why do I need to convert special characters to HTML entities?▼
Characters like <, >, & can be interpreted as HTML tags, breaking pages or creating XSS vulnerabilities. Entities display them safely.
Should I use name codes or number codes?▼
Name codes (&) are more readable but not available for all characters. Number codes (&) can represent any Unicode character.