HTML

Chapter 40: 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 have certain characters
reserved and also certain characters being not available on keyboard. Thus, to avoid the conflict and at 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=" &#128269; Search"/>

which renders as

Common Special Characters

Some character 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.

CharacterDescriptionEntity NameEntity Number
“ ”non-breaking space&nbsp;&#160;
“<”less than&lt;&#60;
“>”greater than&gt;&#62;
“&”ampersand&amp;&#38;
“—”em dash&mdash;&#8212;
“–”en dash&ndash;&#8211;
“©”copyright&copy;&#169;
“®”registered trademark&reg;&#174;
“™”trademark&trade;&#8482;
“☎”phone&phone;&#9742;

Thus, to write

© 2016 Stack Exchange Inc.

the following HTML code is used:

<b>&copy; 2016 Stack Exchange Inc.</b>

Recent Posts

Unlocking the Secrets of JSON.stringify(): More Than Meets the Eye

JSON (JavaScript Object Notation) is a lightweight data-interchange format widely used in web development. At…

2 months ago

How to Handle AJAX GET/POST Requests in WordPress

AJAX (Asynchronous JavaScript and XML) is a powerful technique used in modern web development that…

3 months ago

Page Speed Optimization: Post-Optimization Dos and Don’ts

Introduction After successfully optimizing your website for speed, it's essential to maintain and build upon…

3 months ago

Ultimate Guide to Securing WordPress Folders: Protect Your Site from Unauthorized Access

Securing your WordPress folders is crucial to safeguarding your website from unauthorized access and potential…

4 months ago

HTML CSS PHP File Upload With Circle Progress Bar

Creating a file upload feature with a circular progress bar involves multiple steps. You'll need…

5 months ago

Using WP Rocket with AWS CloudFront CDN

Integrating WP Rocket with AWS CloudFront CDN helps to optimize and deliver your website content…

5 months ago