-
Hajipur, Bihar, 844101
HTML Symbols refer to special characters or icons that are commonly used in web pages to represent things like arrows, mathematical symbols, currency signs, and other icons that aren't part of the standard keyboard characters.
You use HTML entities or Unicode to display these symbols in HTML.
You can add symbols using:
Named entities: e.g., ♥
for ♥
Numeric entities: e.g., ♥
for ♥
Hexadecimal entities: e.g., ♥
for ♥
Symbol | Name | Named Entity | Decimal Code | Hex Code |
---|---|---|---|---|
♥ | Heart | ♥ |
♥ |
♥ |
→ | Right Arrow | → |
→ |
→ |
← | Left Arrow | ← |
← |
← |
↑ | Up Arrow | ↑ |
↑ |
↑ |
↓ | Down Arrow | ↓ |
↓ |
↓ |
™ | Trademark | ™ |
™ |
™ |
£ | Pound Sterling | £ |
£ |
£ |
¥ | Yen | ¥ |
¥ |
¥ |
§ | Section | § |
§ |
§ |
¶ | Paragraph | ¶ |
¶ |
¶ |
<p>I ♥ coding!</p>
<p>Go to the next page →</p>
<p>Trademark symbol: ™</p>
<p>Currency symbols: £, ¥</p>
<p>Use arrows: ← ↑ ↓</p>
Q1. Write HTML to display a heart symbol.
Q2. Use the right arrow symbol to indicate navigation.
Q3. Display the trademark symbol after a brand name.
Q4. Show currency symbols like Pound and Yen in a price list.
Q5. Use up, down, left, and right arrows in a navigation menu.
Q6. Write HTML to display paragraph (§) and section (§) symbols.
Q7. Display the copyright symbol along with trademark symbols.
Q8. Use numeric codes to display the yen and pound symbols.
Q9. Create a list with multiple HTML symbols used as bullet points.
Q10. Combine arrows and symbols to design a simple navigation hint.
Q1: Which entity represents the heart symbol?
Q2: How do you write the right arrow symbol in HTML?
Q3: Which is the named entity for the trademark symbol?
Q4: What symbol does £ represent?
Q5: Which symbol does § represent?
Q6: Which arrow does ↓ display?
Q7: Which of the following is NOT a valid named entity?
Q8: What does ™ represent?
Q9: How do you represent the yen symbol using a numeric entity?
Q10: Which is the hexadecimal code for the paragraph symbol (¶)?