0% found this document useful (0 votes)
21 views

HTML Entities: Result Description Entity Name Entity Number

Description of html entities

Uploaded by

sruthi
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
21 views

HTML Entities: Result Description Entity Name Entity Number

Description of html entities

Uploaded by

sruthi
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 1

HTML Entities

HTML Entities are used

Reserved characters in HTML must be replaced with character entities. (Eg: <, >, & etc)

Characters that are not present on your keyboard can also be replaced by entities. (pound , copyright ).

haracter entities are used to display reserved characters in HTML.

A character entity looks like this:

&entity_name;

OR

&#entity_number;

Result Description Entity Name Entity Number

non-breaking space &nbsp; &#160;


< less than &lt; &#60;
> greater than &gt; &#62;
& ampersand &amp; &#38;
" double quotation mark &quot; &#34;

' single quotation mark (apostrophe) &apos; &#39;


¢ cent &cent; &#162;
£ pound &pound; &#163;
¥ yen &yen; &#165;
€ euro &euro; &#8364;
© copyright &copy; &#169;
® registered trademark &reg; &#174;

You might also like