HTML Tutorial

The language for building web pages.

HTML Entities

HTML Entities

Some characters are reserved in HTML. You cannot use < or > directly in your HTML text, because the browser will mix them with tags. To display reserved characters, use HTML entities.

Common HTML Entities:

DisplayEntity NameEntity Number
&&amp;&#38;
<&lt;&#60;
>&gt;&#62;
©&copy;&#169;
®&reg;&#174;
 &nbsp;&#160; (non-breaking space)

Try It Yourself

Edit the code below and click Run to see the result live.

Source Code
Result
Topics