HTML Entities

HTML entities offer methods to display reserved characters, ensuring correct rendering. Reserved characters, like ‘<‘, can create ambiguity if not displayed properly. HTML provides entity names and numbers for symbols not on basic keyboards (e.g., £, ¥, €, ©), resolving ambiguity and enabling accurate display.

Syntax

&entity_name; or & #entity_number;

Note: Entity names are case-sensitive.

Table of Content

  • Entity Name and Entity Number
  • Reserved Characters
  • Other Characters
  • Advantages and Disadvantages of HTML Entity
  • Non-breaking Space
  • Combining Diacritical Marks

Entity Name and Entity Number

Some useful Symbols with their Entity name and Entity numbers are listed below:

Notation

Symbols

Entity name

Entity Number

 non-breaking space&nbsp; 
<less than&lt;<
®registered trademark&reg;®
©copyright&copy;©
euro&euro;
¥yen&yen;¥
£pound&pound;£
¢cent&cent;¢
double quotation mark&quot;
&ampersand&amp;&
>greater than&gt;>
PARTIAL DIFFERENTIAL&part;
THERE EXISTS&exist;
EMPTY SETS&empty;
NABLA&nabla;
ELEMENT OF&isin;
NOT AN ELEMENT OF&notin;
+PLUS SIGN&plus;+
N-ARY PRODUCT&prod;
N-ARY SUMMATION&sum;
ΑAlpha&Alpha;Α
ΒBeta&Beta;Β
ΓGamma&Gamma;Γ
Δdelta&Delta;Δ
ΕEpsilon&Epsilon;Ε
ΖZeta&Zeta;Ζ
BLACK HEART SUIT = valentine&hearts;
BLACK CLUB SUIT = shamrock&clubs;
BLACK SPADE SUIT&spades;
DOWNWARDS ARROW&darr;
RIGHTWARDS ARROW&rarr;
UPWARDS ARROW&uarr;
LEFTWARDS ARROW&larr;
TRADEMARK&trade;
BLACK DIAMOND SUIT
°degree&deg;°
infinity&infin;
per-mille&permil;
dot operator&sdot;
±plus-minus&plusmn;±
hermitian&hercon;
minus sign&minus;
¬&not;¬
%percent sign&percent;%
fFunction&fnof;ƒ
parallel&parallel;

Examples of HTML Entities

Example: In this example we displays various currency symbols using entity representations.

HTML
<!DOCTYPE html>
<html>

<body>
    <div class="container">
        <h3>
            Different entity symbol
            representation
        </h3>
        <ul style="list-style-type: none">
            <li>
                <h4>Indian currency: ₹</h4>
            </li>
            <li>
                <h4>Euro: €</h4>
            </li>
            <li>
                <h4>Pound: £</h4>
            </li>
            <li>
                <h4>Yen: ¥</h4>
            </li>
            <li>
                <h4>Dollar: $</h4>
            </li>
        </ul>
    </div>
</body>

</html>

Output:

HTML Entities Example output

Reserved Characters

These characters are either reserved for HTML or those which are not present in the basic keyboard & can’t use them directly. Some of the reserved characters representations are given below:

Reserved Character

Entity Name

&&amp;
<&lt;
>&gt;
&quot;

Other Characters

Some characters that aren’t available directly on our keyboard, therefore such an entity can be used to represent it by using their entity number. These keywords are directly not available to type, we need to specify their entity number. Here #x before the numbers represents the hexadecimal representation.

Character

Entities

&GreaterEqual;

©

&copy; 

&euro;  

&exist;

Example: Illustration of the use of special characters that are directly not available to type from the keyboard.

HTML
<!DOCTYPE html>
<html>

<head>
    <title>HTML Entities</title>
</head>

<body>
    <p>Showing euro &euro;</p>
    <p>Showing cent &cent;</p>
    <p>Showing Copyright &copy;</p>
    <p>Showing BLACK DIAMOND SUIT &diams;</p>
    <p>Showing TRADEMARK &trade;</p>
</body>

</html>

Output:

Special Character

Advantages and Disadvantages of HTML Entity

Advantages

  • Entity names can be easy to remember.

Disadvantages

  • Browsers might not support all the entity names, instead, they can support the use of entity numbers.

Non-breaking Space

It is used to provide space that will not break into a new line. This HTML entity is represented by &nbsp; that will separate the 2 words & will stick together without breaking it into a new line. We can also use the non-breaking space for preventing the browsers from truncating spaces in HTML pages. The non-breaking hyphen (‑) is used to define a hyphen character (‑) that does not break into a new line.

Example

  • 12:00 PM
  • 256 km/h

If we use to write 10 spaces in our text, then the browser will remove 9 of them. In order to add real spaces in our text, we can use the character entity.

Combining Diacritical Marks

A diacritical mark is a “glyph” added to a letter. Diacritical marks like grave ( ` ̀) and acute ( ́ ) are called accents. It can appear both above and below a letter, inside a letter, and between two letters. Diacritical marks can be used in combination with alphanumeric characters to generate a character that is not present in the character set (encoding) used on the page. Here is the list of some diacritical marks.

Symbols

Character

Construct

Final Result

 ̀

a

 ́

a

̂

a

 ̃

a

 ̀

O

 ́

O

̂

O

 ̃

O

Supported Browser

Contact Us