HTML Symbols

HTML Tutorial

HTML Forms

HTML Graphics

HTML Media

HTML API

HTML Symbols

Symbols that are not available on your keyboard for direct use, but can be added by using entities.

HTML Symbol Entities

The keyboard does not consist of mathematical, technical, and currency symbols.

To use such symbols on an HTML page, you can use the entity name or the entity number (decimal or a hexadecimal reference) for the symbol.

Example

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

				
			

Output:

I will display €

I will display €

I will display €