Skip to content

Reference

HTML Entities

HTML entities let you display reserved characters and special symbols in web pages. Use the named form (&name;) for readability or the numeric form (&#code;) for broader support. Encode and decode text with the Base64 Encoder.

Essential Characters

CharNamedNumericDescription
&&&Ampersand
<&lt;&#60;Less-than
>&gt;&#62;Greater-than
"&quot;&#34;Double quote
'&apos;&#39;Single quote / apostrophe
 &nbsp;&#160;Non-breaking space

Punctuation & Typography

CharNamedNumericDescription
&mdash;&#8212;Em dash
&ndash;&#8211;En dash
&hellip;&#8230;Horizontal ellipsis
&lsquo;&#8216;Left single quote
&rsquo;&#8217;Right single quote
&ldquo;&#8220;Left double quote
&rdquo;&#8221;Right double quote
«&laquo;&#171;Left guillemet
»&raquo;&#187;Right guillemet
&bull;&#8226;Bullet
·&middot;&#183;Middle dot
&dagger;&#8224;Dagger
&Dagger;&#8225;Double dagger
§&sect;&#167;Section sign
&para;&#182;Pilcrow / paragraph sign

Currency Symbols

CharNamedNumericDescription
$&dollar;&#36;Dollar
&euro;&#8364;Euro
£&pound;&#163;Pound sterling
¥&yen;&#165;Yen / Yuan
&#8355;French franc
&#8377;Indian rupee
&#8383;Bitcoin
¢&cent;&#162;Cent sign
¤&curren;&#164;Generic currency

Math & Logic

CharNamedNumericDescription
×&times;&#215;Multiplication
÷&divide;&#247;Division
±&plusmn;&#177;Plus-minus
&ne;&#8800;Not equal
&le;&#8804;Less than or equal
&ge;&#8805;Greater than or equal
&infin;&#8734;Infinity
&sum;&#8721;Summation (sigma)
&prod;&#8719;Product (pi)
&radic;&#8730;Square root
&int;&#8747;Integral
&asymp;&#8776;Almost equal
&equiv;&#8801;Identical / congruent
&and;&#8743;Logical AND
&or;&#8744;Logical OR
¬&not;&#172;Logical NOT
&forall;&#8704;For all
&exist;&#8707;There exists
&isin;&#8712;Element of
&notin;&#8713;Not an element of
&sub;&#8834;Subset
&sup;&#8835;Superset

Arrows

CharNamedNumericDescription
&larr;&#8592;Left arrow
&uarr;&#8593;Up arrow
&rarr;&#8594;Right arrow
&darr;&#8595;Down arrow
&harr;&#8596;Left-right arrow
&lArr;&#8656;Left double arrow
&rArr;&#8658;Right double arrow
&hArr;&#8660;Left-right double arrow

Greek Letters

CharNamedNumericDescription
Α&Alpha;&#913;Alpha (upper)
α&alpha;&#945;Alpha (lower)
Β&Beta;&#914;Beta (upper)
β&beta;&#946;Beta (lower)
Γ&Gamma;&#915;Gamma (upper)
γ&gamma;&#947;Gamma (lower)
Δ&Delta;&#916;Delta (upper)
δ&delta;&#948;Delta (lower)
ε&epsilon;&#949;Epsilon (lower)
θ&theta;&#952;Theta (lower)
λ&lambda;&#955;Lambda (lower)
μ&mu;&#956;Mu (lower)
π&pi;&#960;Pi (lower)
σ&sigma;&#963;Sigma (lower)
φ&phi;&#966;Phi (lower)
ω&omega;&#969;Omega (lower)

Miscellaneous Symbols

CharNamedNumericDescription
©&copy;&#169;Copyright
®&reg;&#174;Registered trademark
&trade;&#8482;Trademark
°&deg;&#176;Degree
µ&micro;&#181;Micro (mu)
&spades;&#9824;Spade suit
&clubs;&#9827;Club suit
&hearts;&#9829;Heart suit
&diams;&#9830;Diamond suit
&#10003;Check mark
&#10007;Ballot X
&#9733;Filled star
&#9734;Empty star

Encode and decode text

Transform text to Base64, URL encoding, or HTML entities directly in your browser.

Open Base64 Encoder