</>
ValidateHTML

HTML Entities Reference

Complete reference of HTML entities and special characters. Find the entity name, number, and rendered symbol for every common character.

What Are HTML Entities?

HTML entities are special codes used to display reserved characters and symbols in HTML. Characters like <, >, and & have special meaning in HTML, so you must use their entity equivalents to display them as text.

Each entity can be written two ways: as a named entity (e.g. &amp;) or as a numeric entity (e.g. &#38;). Named entities are easier to read; numeric entities have broader browser support.

How to Use HTML Entities

HTML
<!-- Using named entities -->
<p>5 &lt; 10 &amp; 10 &gt; 5</p>

<!-- Using numeric entities -->
<p>Price: &#36;9.99 &mdash; &#169; 2025</p>

<!-- Result rendered in browser -->
<!-- 5 < 10 & 10 > 5 -->
<!-- Price: $9.99 — © 2025 -->

Common Symbols

SymbolEntity NameEntity NumberDescription
&&amp;&#38;Ampersand
<&lt;&#60;Less than
>&gt;&#62;Greater than
"&quot;&#34;Double quotation mark
'&apos;&#39;Apostrophe (single quote)
 &nbsp;&#160;Non-breaking space

Currency Symbols

SymbolEntity NameEntity NumberDescription
$&dollar;&#36;Dollar sign
&euro;&#8364;Euro sign
£&pound;&#163;Pound sign
¥&yen;&#165;Yen / Yuan sign
¢&cent;&#162;Cent sign
&#8355;&#8355;French Franc sign
&#8377;&#8377;Indian Rupee sign
&#8383;&#8383;Bitcoin sign

Mathematical Symbols

SymbolEntity NameEntity NumberDescription
+&plus;&#43;Plus sign
&minus;&#8722;Minus sign
×&times;&#215;Multiplication sign
÷&divide;&#247;Division sign
=&equals;&#61;Equals sign
&ne;&#8800;Not equal to
&le;&#8804;Less than or equal to
&ge;&#8805;Greater than or equal to
±&plusmn;&#177;Plus-minus sign
&infin;&#8734;Infinity
&asymp;&#8776;Almost equal to
&radic;&#8730;Square root

Arrows

SymbolEntity NameEntity NumberDescription
&larr;&#8592;Left arrow
&rarr;&#8594;Right arrow
&uarr;&#8593;Up arrow
&darr;&#8595;Down arrow
&harr;&#8596;Left-right arrow
&crarr;&#8629;Carriage return arrow
&lArr;&#8656;Left double arrow
&rArr;&#8658;Right double arrow

Typography & Punctuation

SymbolEntity NameEntity NumberDescription
&mdash;&#8212;Em dash
&ndash;&#8211;En dash
«&laquo;&#171;Left double angle quotes
»&raquo;&#187;Right double angle quotes
&hellip;&#8230;Horizontal ellipsis
©&copy;&#169;Copyright symbol
®&reg;&#174;Registered trademark
&trade;&#8482;Trademark symbol
&lsquo;&#8216;Left single quotation mark
&rsquo;&#8217;Right single quotation mark
&ldquo;&#8220;Left double quotation mark
&rdquo;&#8221;Right double quotation mark
·&middot;&#183;Middle dot
°&deg;&#176;Degree sign
&para;&#182;Paragraph sign (pilcrow)
§&sect;&#167;Section sign

Quick Tips

  • 1.Always escape &, <, and > in HTML content to avoid parsing errors.
  • 2.Use &nbsp; for non-breaking spaces to prevent unwanted line breaks between words.
  • 3.For UTF-8 encoded pages, you can type most symbols directly. Entities are mainly needed for reserved HTML characters and edge cases.
  • 4.Unescaped entities are a common source of HTML validation errors. Run your code through a validator to catch them.

Validate Your HTML

Unescaped entities break your markup. Catch them instantly with our free validator.

Recommended

Hostinger Fast & Affordable Web Hosting

Deploy your clean, validated HTML on fast, reliable hosting.

Get 80% Off Hosting →