HTML CSS Bootstrap JavaScript jQuery MySQL PHP Data Mining

HTML Symbols

HTML lets you display hundreds of special symbols that are not on your keyboard — from mathematical operators and currency signs to arrows and geometric shapes.


How to Display Symbols

Symbols are displayed using HTML entity names or numeric codes:

<p>Copyright: &copy;</p>          <!-- Named entity -->
<p>Copyright: &#169;</p>          <!-- Decimal code -->
<p>Copyright: &#xA9;</p>          <!-- Hex code -->

Copyright: ©


Mathematical Symbols

Symbol Description Entity Name Entity Number
For all&forall;&#8704;
Partial differential&part;&#8706;
There exists&exist;&#8707;
Empty set&empty;&#8709;
Summation&sum;&#8721;
Product&prod;&#8719;
Square root&radic;&#8730;
Infinity&infin;&#8734;
Integral&int;&#8747;
Not equal to&ne;&#8800;
Less than or equal to&le;&#8804;
Greater than or equal to&ge;&#8805;
±Plus or minus&plusmn;&#177;
×Multiplication&times;&#215;
÷Division&divide;&#247;
½Fraction one half&frac12;&#189;
¼Fraction one quarter&frac14;&#188;
°Degree&deg;&#176;

Currency Symbols

Symbol Description Entity Name Entity Number
$Dollar sign&dollar;&#36;
Euro sign&euro;&#8364;
£Pound sterling&pound;&#163;
¥Yen / Yuan sign&yen;&#165;
¢Cent sign&cent;&#162;
Tenge sign&#8376;
Indian Rupee sign&#8377;
Turkish Lira sign&#8378;
Russian Ruble sign&#8381;
&#bitcoin;Bitcoin sign&#8383;

Arrow Symbols

Symbol Description Entity Name Entity Number
Left arrow&larr;&#8592;
Up arrow&uarr;&#8593;
Right arrow&rarr;&#8594;
Down arrow&darr;&#8595;
Left-right arrow&harr;&#8596;
Double left arrow&lArr;&#8656;
Double right arrow&rArr;&#8658;
Double left-right arrow&hArr;&#8660;

Miscellaneous Symbols

Symbol Description Entity Number
©Copyright&#169;
®Registered trademark&#174;
Trademark&#8482;
Heart&#9829;
Black star&#9733;
White star&#9734;
Spades&#9824;
Clubs&#9827;
Diamonds&#9830;
Sun&#9728;
Snowman&#9731;
Hot beverage (coffee)&#9749;
Tip: If a named entity like &euro; doesn't render correctly in older browsers, use the numeric code &#8364; instead — numeric codes work universally.