HTML Entities - HTML CSS HTML

HTML CSS examples for HTML:Document

Introduction

There are some characters that have special meaning in HTML document.

To use these characters in content without wanting them to be interpreted as HTML, use HTML entities.

An entity is a code the browser substitutes for the special character.

Commonly Used HTML Entities

Entity Entity Name Entity Number
< &lt; &#60;
> &gt; &#62;
& &amp; &#30;
&euro; &#8364;
£ &pound; &#163;
§ &sect; &#167;
© &copy; &#169;
® &reg; &#174;
&trade; &#8482;

Related Tutorials