bugl
bugl
HomeLearnPatternsSearch
HomeLearnPatternsSearch

Loading lesson path

Learn/HTML/HTML Foundations
HTML•HTML Foundations

HTML Symbols

Concept visual

HTML Symbols

Pointer walk
two pointers
leftright102132436485116
left=0
right=6
1
3

Start at both ends

HTML Symbol Entities

Symbols or letters that are not present on your keyboard can be added to HTML using entities. To add such symbols to an HTML page, you can use the entity name or the entity number (a decimal or a hexadecimal reference) for the symbol:

Example

Display the euro sign:

<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 €

Some HTML Symbol Entities

Char

Number

Entity

Description

©

&#169;
&copy;

Copyright

Try it » ®

&#174;
&reg;

Registered Trademark

Try it » €

&#8364;
&euro;

Euro Sign

Try it » ™

&#8482;
&trade;

Trademark

Try it » ←

&#8592;
&larr;

Left Arrow

Try it » ↑

&#8593;
&uarr;

Up Arrow

Try it » →

&#8594;
&rarr;

Right Arrow

Try it » ↓

&#8595;
&darr;

Down Arrow

Try it » ♠

&#9824;
&spades;

Spade

Try it » ♣

&#9827;
&clubs;

Club

Try it » ♥

&#9829;
&hearts;

Heart

Try it » ♦

&#9830;
&diams;

Diamond

Try it »

Learn More:

Full Currency Reference

Full Arrows Reference

Previous

HTML Entities

Next

Using Emojis in HTML