How do you show entities in html?


Reserved characters in HTML must be replaced with character entities.


HTML Entities

Some characters are reserved in HTML.

If you use the less than (<) or greater than (>) signs in your text, the browser might mix them with tags.

Character entities are used to display reserved characters in HTML.

A character entity looks like this:

&entity_name;

OR

&#entity_number;

To display a less than sign (<) we must write: &lt; or &#60;

Advantage of using an entity name: An entity name is easy to remember.
Disadvantage of using an entity name: Browsers may not support all entity names, but the support for entity numbers is good.


Non-breaking Space

A commonly used entity in HTML is the non-breaking space: &nbsp;

A non-breaking space is a space that will not break into a new line.

Two words separated by a non-breaking space will stick together (not break into a new line). This is handy when breaking the words might be disruptive.

Examples:

  • § 10
  • 10 km/h
  • 10 PM

Another common use of the non-breaking space is to prevent browsers from truncating spaces in HTML pages.

If you write 10 spaces in your text, the browser will remove 9 of them. To add real spaces to your text, you can use the &nbsp; character entity.

Tip: The non-breaking hyphen (&#8209;) is used to define a hyphen character (‑) that does not break into a new line.



Some Useful HTML Character Entities

ResultDescriptionEntity NameEntity NumberTry it
non-breaking space &nbsp; &#160; Try it »
< less than &lt; &#60; Try it »
> greater than &gt; &#62; Try it »
& ampersand &amp; &#38; Try it »
" double quotation mark &quot; &#34; Try it »
' single quotation mark (apostrophe) &apos; &#39; Try it »
¢ cent &cent; &#162; Try it »
£ pound &pound; &#163; Try it »
¥ yen &yen; &#165; Try it »
euro &euro; &#8364; Try it »
© copyright &copy; &#169; Try it »
® registered trademark &reg; &#174; Try it »

Note: Entity names are case sensitive.


Combining Diacritical Marks

A diacritical mark is a "glyph" added to a letter.

Some diacritical marks, like grave (  ̀) and acute (  ́) are called accents.

Diacritical marks 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 produce a character that is not present in the character set (encoding) used in the page.

Here are some examples:

MarkCharacterConstructResultTry it
 ̀ a a&#768; Try it »
 ́ a a&#769; Try it »
̂ a a&#770; Try it »
 ̃ a a&#771; Try it »
 ̀ O O&#768; Try it »
 ́ O O&#769; Try it »
̂ O O&#770; Try it »
 ̃ O O&#771; Try it »

You will see more HTML symbols in the next chapter of this tutorial.




Symbols that are not present on your keyboard can also be added by using entities.


HTML Symbol Entities

HTML entities were described in the previous chapter.

Many mathematical, technical, and currency symbols, are not present on a normal keyboard.

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, €, with an entity name, a decimal, and a hexadecimal value:

<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 Mathematical Symbols Supported by HTML

CharNumberEntityDescriptionTry it
&#8704; &forall; FOR ALL Try it »
&#8706; &part; PARTIAL DIFFERENTIAL Try it »
&#8707; &exist; THERE EXISTS Try it »
&#8709; &empty; EMPTY SETS Try it »
&#8711; &nabla; NABLA Try it »
&#8712; &isin; ELEMENT OF Try it »
&#8713; &notin; NOT AN ELEMENT OF Try it »
&#8715; &ni; CONTAINS AS MEMBER Try it »
&#8719; &prod; N-ARY PRODUCT Try it »
&#8721; &sum; N-ARY SUMMATION Try it »

Full Math Reference



Some Greek Letters Supported by HTML

CharNumberEntityDescriptionTry it
Α &#913; &Alpha; GREEK CAPITAL LETTER ALPHA Try it »
Β &#914; &Beta; GREEK CAPITAL LETTER BETA Try it »
Γ &#915; &Gamma; GREEK CAPITAL LETTER GAMMA Try it »
Δ &#916; &Delta; GREEK CAPITAL LETTER DELTA Try it »
Ε &#917; &Epsilon; GREEK CAPITAL LETTER EPSILON Try it »
Ζ &#918; &Zeta; GREEK CAPITAL LETTER ZETA Try it »

Full Greek Reference


Some Other Entities Supported by HTML

CharNumberEntityDescriptionTry it
© &#169; &copy; COPYRIGHT SIGN Try it »
® &#174; &reg; REGISTERED SIGN Try it »
&#8364; &euro; EURO SIGN Try it »
&#8482; &trade; TRADEMARK Try it »
&#8592; &larr; LEFTWARDS ARROW Try it »
&#8593; &uarr; UPWARDS ARROW Try it »
&#8594; &rarr; RIGHTWARDS ARROW Try it »
&#8595; &darr; DOWNWARDS ARROW Try it »
&#9824; &spades; BLACK SPADE SUIT Try it »
&#9827; &clubs; BLACK CLUB SUIT Try it »
&#9829; &hearts; BLACK HEART SUIT Try it »
&#9830; &diams; BLACK DIAMOND SUIT Try it »

Full Currency Reference

Full Arrows Reference

Full Symbols Reference



How do you display entities in HTML?

You have to use HTML character entities &lt; and &gt; in place of the < and > symbols so they aren't interpreted as HTML tags.

What are HTML entities provide an example?

1. HTML Character Entities.

How do I show a slash in HTML?

UNICODE. U+0002F..
HEX CODE. &#x2f;.
HTML CODE. &#47;.
HTML ENTITY. &sol;.
CSS CODE. \002F. <span>&#47;</span> content: "\002F";.

How do I put symbols in HTML?

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.