Tutorials References Exercises Videos Menu
Log in
Free Website Get Certified Pro

HTML Symbols


HTML Symbol Entities

HTML symbols like mathematical operators, arrows, technical symbols and shapes, are not present on a normal keyboard.

To add these symbols to an HTML page, you can use the HTML entity name.

If no entity name exists, you can use the entity number.

If the character does not have an entity name, you can use a decimal (or hexadecimal) reference.

If you use an HTML entity name or a hexadecimal number, the character will always display correctly.
This is independent of what character set (encoding) your page uses!

Example

<p>I will display &euro;</p>
<p>I will display &#8364;</p>
<p>I will display &#x20AC;</p>

Will display as:

I will display €

I will display €

I will display €
Try it Yourself »

Some Mathematical Symbols Supported by HTML

Char Number Entity Description
&#8704; &forall; for allTry it
&#8706; &part; partTry it
&#8707; &exist; existsTry it
&#8709; &empty; emptyTry it
&#8711; &nabla; nablaTry it
&#8712; &isin; isinTry it
&#8713; &notin; notinTry it
&#8715; &ni; niTry it
&#8719; &prod; prodTry it
&#8721; &sum; sumTry it

Full Math Refrence



Some Greek Letters Supported by HTML

Char Number Entity Description
Α &#913; &Alpha; AlphaTry it
Β &#914; &Beta; BetaTry it
Γ &#915; &Gamma; GammaTry it
Δ &#916; &Delta; DeltaTry it
Ε &#917; &Epsilon; EpsilonTry it
Ζ &#918; &Zeta; ZetaTry it

Full Greek Reference


Some Other Entities Supported by HTML

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

Full Currency Reference

Full Arrows Reference

Full Symbols Reference