HTML Entity Reference

Browse 250+ named HTML entities. Search by name, symbol, or code. Click any row to copy.

SymbolNameHTML Code
&amp&
<lt&lt;
>gt&gt;
"quot&quot;
'apos&apos;
nbsp&nbsp;
tab&#9;
newline&#10;
cr&#13;
/sol&#47;
\bsol&#92;
¢cent&cent;
£pound&pound;
¥yen&yen;
euro&euro;
$dollar&#36;
¤curren&curren;
franc&#8355;
bitcoin&#8383;
ƒfnof&fnof;
lira&#8356;
peseta&#8359;
rupee&#8360;
won&#8361;
dong&#8363;
tenge&#8376;
©copy&copy;
®reg&reg;
trade&trade;
°deg&deg;
§sect&sect;
para&para;
dagger&dagger;
Dagger&Dagger;
bull&bull;
hellip&hellip;
permil&permil;
prime&prime;
Prime&Prime;
lsaquo&lsaquo;
rsaquo&rsaquo;
oline&oline;
frasl&frasl;
spades&spades;
clubs&clubs;
hearts&hearts;
diams&diams;
star&#9733;
check&#10003;
cross&#10007;
larr&larr;
uarr&uarr;
rarr&rarr;
darr&darr;
harr&harr;
crarr&crarr;
lArr&lArr;
uArr&uArr;
rArr&rArr;
dArr&dArr;
hArr&hArr;
nearr&#8599;
nwarr&#8598;
searr&#8600;
swarr&#8601;
+plus&#43;
minus&minus;
×times&times;
÷divide&divide;
ne&ne;
le&le;
ge&ge;
equiv&equiv;
sim&sim;
asymp&asymp;
infin&infin;
radic&radic;
sum&sum;
prod&prod;
int&int;
part&part;
nabla&nabla;
forall&forall;
exist&exist;
empty&empty;
isin&isin;
notin&notin;
ni&ni;
and&and;
or&or;
cap&cap;
cup&cup;
lsquo&lsquo;
rsquo&rsquo;
ldquo&ldquo;
rdquo&rdquo;
sbquo&sbquo;
bdquo&bdquo;
ndash&ndash;
mdash&mdash;
«laquo&laquo;
»raquo&raquo;
·middot&middot;
shy&shy;
zwj&#8205;
zwnj&#8204;
lrm&lrm;
rlm&rlm;
ΑAlpha&Alpha;
ΒBeta&Beta;
ΓGamma&Gamma;
ΔDelta&Delta;
ΕEpsilon&Epsilon;
ΖZeta&Zeta;
ΗEta&Eta;
ΘTheta&Theta;
ΙIota&Iota;
ΚKappa&Kappa;
ΛLambda&Lambda;
ΜMu&Mu;
ΝNu&Nu;
ΞXi&Xi;
ΟOmicron&Omicron;
ΠPi&Pi;
ΡRho&Rho;
ΣSigma&Sigma;
ΤTau&Tau;
ΥUpsilon&Upsilon;
ΦPhi&Phi;
ΧChi&Chi;
ΨPsi&Psi;
ΩOmega&Omega;
αalpha&alpha;
βbeta&beta;
γgamma&gamma;
δdelta&delta;
εepsilon&epsilon;
ζzeta&zeta;
ηeta&eta;
θtheta&theta;
ιiota&iota;
κkappa&kappa;
λlambda&lambda;
μmu&mu;
νnu&nu;
ξxi&xi;
πpi&pi;
ρrho&rho;
σsigma&sigma;
τtau&tau;
υupsilon&upsilon;
φphi&phi;
χchi&chi;
ψpsi&psi;
ωomega&omega;

Showing 155 of 155 entities

About HTML Entity Reference

HTML entities are special codes used to represent characters that have reserved meaning in HTML or that cannot be typed directly in source code. This reference provides a complete, searchable table of 250+ named HTML entities — from essential characters like &amp; and &lt; to currency symbols, math operators, Greek letters, and typographic marks.

  • 250+ named entities covering basic, currency, symbols, arrows, math, punctuation, and Greek categories
  • Both named codes (e.g. &copy;) and numeric hex codes (e.g. &#x00A9;) for every entity
  • Instant search by entity name, symbol character, HTML code, or description
  • One-click copy — click any row to copy the HTML entity code to your clipboard
  • Category filter tabs to quickly browse subsets like math, arrows, or Greek letters

How to Use the HTML Entity Reference

  1. 1

    Search or browse by category

    Type a character, name, or code into the search box, or click a category tab (Basic, Currency, Symbols, Math, etc.) to filter the table.

  2. 2

    Find the entity you need

    Each row shows the rendered symbol, its named code, HTML numeric code, hex code, and a plain-language description.

  3. 3

    Click to copy the HTML code

    Click any table row to instantly copy the entity's HTML code (e.g. &euro;) to your clipboard. The row briefly highlights green to confirm.

  4. 4

    Paste into your HTML

    Paste the copied code directly into your HTML file. The browser will render the correct character automatically.

Tip: Both named entities (&copy;) and numeric codes (&#x00A9;) are shown — use named codes for readability and hex codes for maximum compatibility with older parsers.

Common Use Cases for HTML Entities

Escaping Reserved Characters

  • • Use &lt; and &gt; to display angle brackets
  • • Use &amp; wherever a literal & appears in content
  • • Use &quot; inside attribute values to avoid breaking HTML syntax

Legal & Copyright Notices

  • &copy; for the © copyright symbol
  • &reg; for the ® registered trademark symbol
  • &trade; for the ™ trademark symbol

Currency & Finance Pages

  • &euro;, &pound;, &yen; for currency symbols
  • • Hex codes for less-common currencies (Bitcoin, Won, Dong)
  • • Ensures symbols render correctly regardless of page encoding

Math & Science Content

  • &times;, &divide;, &plusmn; for arithmetic operators
  • &infin;, &radic;, &sum; for math notation
  • • Greek letters for formulas without requiring MathML

Typography & Punctuation

  • • En dash (&ndash;) and em dash (&mdash;) for professional copy
  • • Curly quotes (&ldquo;, &rdquo;) instead of straight quotes
  • • Non-breaking space (&nbsp;) to prevent unwanted line breaks

Arrows & UI Indicators

  • • Directional arrows (&larr;, &rarr;) for navigation cues
  • • Double arrows for keyboard shortcut documentation
  • • Bullet (&bull;) and ellipsis (&hellip;) for polished lists

Frequently Asked Questions

What is an HTML entity?

An HTML entity is a string of text that begins with an ampersand (&) and ends with a semicolon (;). Browsers replace these codes with the corresponding character when rendering a page. They are used to display reserved characters like < and > safely inside HTML, or to insert symbols that are difficult to type directly.

What is the difference between a named entity and a numeric entity?

Named entities use a human-readable keyword, such as &copy; for ©. Numeric entities reference the character's Unicode code point, either in decimal (&#169;) or hexadecimal (&#x00A9;). Numeric codes work for every Unicode character; named codes are only available for characters defined in the HTML specification.

Do I still need HTML entities if my page uses UTF-8?

For most special characters, no — UTF-8 can encode them directly and modern browsers handle them correctly. However, you still must escape the four reserved HTML characters: < (&lt;), > (&gt;), & (&amp;), and " (&quot;) to prevent rendering or security issues.

Why does my ampersand (&) break the HTML?

In HTML, the ampersand character signals the start of an entity. An unescaped & in your content may cause the browser to try parsing it as an entity reference. Always write a literal ampersand as &amp; in HTML source, especially inside href attributes and query strings.

What is a non-breaking space and when should I use it?

A non-breaking space (&nbsp;) looks like a regular space but prevents the browser from wrapping the line at that point. It is useful for keeping values like "10 km" or "Dr. Smith" on a single line, or for adding extra spacing in situations where CSS cannot be applied.

Can I use HTML entities in CSS or JavaScript?

HTML entities only work inside HTML markup — they are not interpreted in CSS or JavaScript source code. In CSS, use Unicode escapes like \00A9 in the content property. In JavaScript strings, use Unicode escapes like \u00A9 or simply paste the character directly.

Is this tool safe to use? Does it send my data anywhere?

Yes, completely safe. The entire reference table is built into the page — there are no network requests, no data uploads, and no tracking of which entities you look up or copy. Everything runs entirely in your browser.