An HTML entity is a piece of text ("string") that begins with an ampersand ( & ) and ends with a semicolon ( ; ) . Entities are frequently used to display reserved characters (which would otherwise be interpreted as HTML code), and invisible characters (like non-breaking spaces).
HTML entities give different varieties of characters which helps to assign icons, mathematical operators and even geometric complex shapes.
EXAMPLES
Currency Symbol:
<ul>
<li>₦</li>
<li>€</li>
<li>£</li>
<li>¥</li>
<li>Ω</li>
</ul>
Results:
-β¦
-β¬
-Β£
-Β₯
-β¦
Some Cool emojis:
<ul>
<li>😍</li>
<li>🚥</li>
<li>🧡</li>
<li>😜</li>
<li>🤶</li>
</ul>
Results:
-π
-π₯
-π§‘
-π
-π€Ά
Top comments (0)