HTML Character Codes
Search and copy HTML special characters, symbols, and entity codes.
| Symbol | Named Entity | Decimal | Hex | Description |
|---|---|---|---|---|
| < | < | < | < | Less-than sign |
| > | > | > | > | Greater-than sign |
| & | & | & | & | Ampersand |
| " | " | " | " | Quotation mark |
| ' | ' | ' | ' | Apostrophe |
|   |   | Non-breaking space | |
| © | © | © | © | Copyright sign |
| ® | ® | ® | ® | Registered sign |
| ™ | ™ | ™ | ™ | Trade mark sign |
| € | € | € | € | Euro sign |
| £ | £ | £ | £ | Pound sign |
| ¥ | ¥ | ¥ | ¥ | Yen sign |
| ¢ | ¢ | ¢ | ¢ | Cent sign |
| ¤ | ¤ | ¤ | ¤ | Currency sign |
| ± | ± | ± | ± | Plus-minus sign |
| × | × | × | × | Multiplication sign |
| ÷ | ÷ | ÷ | ÷ | Division sign |
| ≈ | ≈ | ≈ | ≈ | Almost equal to |
| ≠ | ≠ | ≠ | ≠ | Not equal to |
| ≤ | ≤ | ≤ | ≤ | Less-than or equal to |
| ≥ | ≥ | ≥ | ≥ | Greater-than or equal to |
| ∞ | ∞ | ∞ | ∞ | Infinity |
| √ | √ | √ | √ | Square root |
| ∑ | ∑ | ∑ | ∑ | N-ary summation |
| ∏ | ∏ | ∏ | ∏ | N-ary product |
| ° | ° | ° | ° | Degree sign |
| µ | µ | µ | µ | Micro sign |
| ¼ | ¼ | ¼ | ¼ | One quarter |
| ½ | ½ | ½ | ½ | One half |
| ¾ | ¾ | ¾ | ¾ | Three quarters |
| – | – | – | – | En dash |
| — | — | — | — | Em dash |
| … | … | … | … | Horizontal ellipsis |
| " | “ | “ | “ | Left double quotation |
| " | ” | ” | ” | Right double quotation |
| ‘ | ‘ | ‘ | ‘ | Left single quotation |
| ’ | ’ | ’ | ’ | Right single quotation |
| « | « | « | « | Left angle quotation |
| » | » | » | » | Right angle quotation |
| ¿ | ¿ | ¿ | ¿ | Inverted question mark |
| ¡ | ¡ | ¡ | ¡ | Inverted exclamation |
| ← | ← | ← | ← | Left arrow |
| → | → | → | → | Right arrow |
| ↑ | ↑ | ↑ | ↑ | Up arrow |
| ↓ | ↓ | ↓ | ↓ | Down arrow |
| ↔ | ↔ | ↔ | ↔ | Left-right arrow |
| ⇐ | ⇐ | ⇐ | ⇐ | Double left arrow |
| ⇒ | ⇒ | ⇒ | ⇒ | Double right arrow |
| ⇔ | ⇔ | ⇔ | ⇔ | Double left-right arrow |
| • | • | • | • | Bullet |
| · | · | · | · | Middle dot |
| ♠ | ♠ | ♠ | ♠ | Spade suit |
| ♣ | ♣ | ♣ | ♣ | Club suit |
| ♥ | ♥ | ♥ | ♥ | Heart suit |
| ♦ | ♦ | ♦ | ♦ | Diamond suit |
| ★ | — | ★ | ★ | Black star |
| ☆ | — | ☆ | ☆ | White star |
| ☐ | — | ☐ | ☐ | Ballot box |
| ☑ | — | ☑ | ☑ | Ballot box with check |
| ☞ | — | ☞ | ☞ | Pointing hand right |
About This Tool
The HTML Character Codes tool helps you quickly find special symbols and entity codes used in HTML. It includes hundreds of characters like ampersand (&), angle brackets (<>), copyright (©), and more.
Each character is provided in named entity (e.g., &), decimal (e.g., &), and hexadecimal (e.g., &) formats. Named entities are recommended for better readability.
How to Use
- Type a symbol name, character, or code in the search box.
- Browse the filtered list to find what you need.
- Click any row to copy the named entity code.
- Paste the code into your HTML file.
- Verify it renders correctly in your browser.
Use Cases
Useful for writing HTML documents, email templates, displaying math symbols, adding copyright or trademark signs, and entering special punctuation.
FAQ
- Should I use named entities or numeric codes? — Named entities (&, <, etc.) are more readable and widely supported. Numeric codes are useful for symbols without a named entity.
- Are all entities supported in HTML5? — Most named entities work in HTML5, but some were added in HTML5 only. Use numeric codes when in doubt.
- Can I use entity codes in JavaScript? — HTML entities only work in HTML context. In JavaScript, use the Unicode character directly or set it via textContent.