HTML Character Entities

Character Entities in HTML
Many symbols and special characters are required while developing a web page in HTML, but as we know that sometimes the use of characters directly may interfere with the actual HTML code which has certain characters reserved and also certain characters being not available on the keyboard. Thus, to avoid the conflict and at the same time to be able to use different symbols in our code w3 org provides us with 'Character Entities'. Character Entities are predefined with 'Entity Name' &entity_name, and 'Entity Number' - &entity_number; so we need to use either of the two for the required symbol to be rendered on our page.
The list of few Character Entities can be found at https://dev.w3.org/html5/html-author/charref A simple example with the use of character entity for 'magnifying glass' :
<input type="text" placeholder=" 🔍 Search"/>
Common Special Characters
Some characters may be reserved for HTML and cannot be used directly as it may obstruct the actual HTML codes. For example, trying to display the left and right angle brackets (<>) in the source code may cause unexpected results in the output. Similarly, white spaces as written in the source code may not display as expected in the
output HTML. Some, like ☎, are not available in the ASCII character set.
For this purpose, character entities are created. These are of the form &entity_name; or &entity_number;. The following are some of the available HTML entities.
Character | Description | Entity Name | Entity Number |
“ ” | non-breaking space | |   |
“<” | less than | < | < |
“>” | greater than | > | > |
“&” | ampersand | & | & |
“—” | em dash | — | — |
“–” | en dash | – | – |
“©” | copyright | © | © |
“®” | registered trademark | ® | ¯ |
“™” | trademark | ™ | ™ |
“☎” | phone | ☎ | ☎ |
Thus, to write
© 2021 Stack Exchange Inc.
the following HTML code is used:
<b>© 2021 Stack Exchange Inc.</b>
ATutorialHub Related Guide
HTML Tutorials Comments (9)
User Comments

panduranga gupta
2021-07-05 07:03:13good website for learning and help me a lot

raju
2021-09-25 14:58:47The awsome website i am looking like for a long time, good work atutorialhub team keep doing

Shivani
2021-09-01 15:03:56Learning a lot from the courses present on atutorialhub. The courses are very well explained. Great experience

Harshitha
2021-09-10 15:05:45It is very helpful to students and easy to learn the concepts

Sowmya
2021-09-14 15:06:41Great job Tutorials are easy to understand Please make use of it

Zain Khan
2021-09-18 15:07:23Great content and customized courses.

Rudrakshi Bhatt
2021-09-09 15:08:10Well structured coursed and explained really well!

Pavana Somashekar
2021-09-11 15:09:08Good platform for beginners and learn a lot on this website

Sax
2021-09-25 19:35:50Nice website
Leave a Comment