HTML Symbols

Entities can also be used to add symbols that you don’t have on your keyboard. There are a lot of math, science, and money symbols that you can’t find on a normal keyboard. To add these symbols to an HTML page, we have to use HTML entity names.

If there is no entity name, you can use a decimal, hexadecimal, or entity number instead.

Example

<!DOCTYPE html>
<html>
<body>
<h3> Symbols Example</h3>
<p>Indian Rupee symbol <b>₹<b></p>
<p>Dollar symbol <b>#36;</b></p>
</body>
</html>

 

HTML Entities for Symbols

In the last chapter, we talked about HTML entities.

A normal keyboard doesn’t have a lot of symbols for math, science, and money.

You can use the entity name or the entity number (a decimal or hexadecimal reference) for the symbol to add it to an HTML page.

 

Some Mathematical Symbols Supported by HTML

Char Number Entity Description
&#8704; &forall; FOR ALL
&#8706; &part; PARTIAL DIFFERENTIAL
&#8707; &exist; THERE EXISTS
&#8709; &empty; EMPTY SETS
&#8711; &nabla; NABLA
&#8712; &isin; ELEMENT OF
&#8713; &notin; NOT AN ELEMENT OF
&#8715; &ni; CONTAINS AS MEMBER
&#8719; &prod; N-ARY PRODUCT
&#8721; &sum; N-ARY SUMMATION

Some Greek Symbols Supported by HTML

Char Number Entity Description
Α &#913; &Alpha; GREEK CAPITAL LETTER ALPHA
Β &#914; &Beta; GREEK CAPITAL LETTER BETA
Γ &#915; &Gamma; GREEK CAPITAL LETTER GAMMA
Δ &#916; &Delta; GREEK CAPITAL LETTER DELTA
Ε &#917; &Epsilon; GREEK CAPITAL LETTER EPSILON
Ζ &#918; &Zeta; GREEK CAPITAL LETTER ZETA

Some Symbols Supported by HTML

Char Number Entity Description
© &#169; &copy; COPYRIGHT SIGN
® &#174; &reg; REGISTERED SIGN
&#8364; &euro; EURO SIGN
&#8482; &trade; TRADEMARK
&#8592; &larr; LEFTWARDS ARROW
&#8593; &uarr; UPWARDS ARROW
&#8594; &rarr; RIGHTWARDS ARROW
&#8595; &darr; DOWNWARDS ARROW
&#9824; &spades; BLACK SPADE SUIT
&#9827; &clubs; BLACK CLUB SUIT
&#9829; &hearts; BLACK HEART SUIT
&#9830; &diams; BLACK DIAMOND SUIT

 

People also search
Scroll to Top