Description
Applications | HTML5 Symbols

- Mathematical operators
- Arrows
- Technical symbols
- Shapes
- Special Symbols
- and so on
Functionalities | HTML5 Symbols
Methods | HTML5 Symbols

- You can use the HTML Entity Name.
- Directly in English.
- Most Simple and common.
Procedure 2
- If no entity name exists then you can use the Entity Number.
- Fixed for every symbol.
- Pre-defined on the basis of HTML5 guidelines.
Procedure 3
- If the character does not have an entity name then you can use a decimal (or Hexadecimal) reference.
- Accepts a direct value as a hexadecimal code.
- More complex procedure.
Reference Example
// Using Procedure: 1 [HTML entity name]
<p>in love with €<p>
// Using Procedure: 2 [HTML entity number]
<p>in love with€<p>
// Using Procedure: 3 [Hexadecimal reference]
<p>in love with €<p>
Output | Example
in love with €
in love with €
in love with €
Display:


Join the conversation! Your thoughts help the community grow.