Menu
×
     ❯   
HTML CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++ C# BOOTSTRAP REACT MYSQL JQUERY EXCEL XML DJANGO NUMPY PANDAS NODEJS DSA TYPESCRIPT ANGULAR GIT POSTGRESQL MONGODB ASP AI R GO KOTLIN SASS VUE GEN AI SCIPY CYBERSECURITY DATA SCIENCE

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, 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 Math 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


×

Contact Sales

If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
sales@w3schools.com

Report Error

If you want to report an error, or if you want to make a suggestion, send us an e-mail:
help@w3schools.com

W3Schools is optimized for learning and training. Examples might be simplified to improve reading and learning. Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness of all content. While using W3Schools, you agree to have read and accepted our terms of use, cookie and privacy policy.

Copyright 1999-2025 by Refsnes Data. All Rights Reserved. W3Schools is Powered by W3.CSS.