List of XML and HTML character entity references

In SGML, HTML and XML documents, the logical constructs known as character data and attribute values consist of sequences of characters, in which each character can manifest directly (representing itself), or can be represented by a series of characters called a character reference, of which there are two types: a numeric character reference and a character entity reference. This article lists the character entity references that are valid in HTML and XML documents.

A character entity reference refers to the content of a named entity. An entity declaration is created in XML, SGML and HTML documents (before HTML5) by using the <!ENTITY name "value"> syntax in a Document type definition (DTD).

Character reference overview

In HTML and XML, a numeric character reference refers to a character by its Universal Character Set/Unicode code point, and uses the format:

&#xhhhh;

or

&#nnnn;

where the x must be lowercase in XML documents, hhhh is the code point in hexadecimal form, and nnnn is the code point in decimal form. The hhhh (or nnnn) may be any number of hexadecimal (or decimal) digits and may include leading zeros. The hhhh for hexadecimal digits may mix uppercase and lowercase letters, though uppercase is the usual style. However the XML and HTML standards restrict the usable code points to a set of valid values, which is a subset of UCS/Unicode code point values, that excludes all code points assigned to non-characters or to surrogates, and most code points assigned to C0 and C1 controls (with the exception of line separators and tabulations treated as white spaces).

In contrast, a character entity reference refers to a sequence of one or more characters by the name of an entity which has the desired characters as its replacement text. The entity must either be predefined (built into the markup language), or otherwise explicitly declared in a Document Type Definition (DTD) (see [a]). The format is the same as for any entity reference:

&name;

where name is the case-sensitive name of the entity. The semicolon is usually required in the character entity reference, unless marked otherwise in the table below (see [b]).

Standard public entity sets for characters

XML
XML specifies five predefined entities needed to support every printable ASCII character: &amp;, &lt;, &gt;, &apos;, and &quot;. The trailing semicolon is mandatory in XML (and XHTML) for these five entities (even if HTML or SGML allows omitting it for some of them, according to their DTD).
ISO Entity Sets
SGML supplied a comprehensive set of entity declarations for characters widely used in Western technical and reference publishing, for Latin, Greek and Cyrillic scripts. The American Mathematical Society also contributed entities for mathematical characters (see [c]).
HTML Entity Sets
Early versions of HTML built in small subsets of these, relating to characters found in three Western 8-bit fonts.
MathML Entity Sets
The W3C developed a set of entity declarations for MathML characters.
XML Entity Sets
The W3C MathML Working Group took over maintenance of the ISO public entity sets, combined with the MathML and documents them in XML Entity Definitions for Characters. This set can support the requirements of XHTML, MathML and as an input to future versions of HTML.
HTML5
HTML5 adopts the XML entities as named character references, however it restates them without reference to their sources and does not group them into sets. The HTML5 specification additionally provides mappings from the names to Unicode character sequences using JSON.

Numerous other entity sets have been developed for special requirements, and for major and minority scripts. However, the advent of Unicode has largely superseded them.

List of character entity references in HTML

HTML5 defines many named entities, references to which act as mnemonic aliases for certain Unicode characters.[1]  The HTML5 specification does not allow users to define additional entities, as it no longer accepts any DTD to be referenced or extended inside HTML documents (this is still needed in XHTML, which is based on stricter XML parsing rules but allows referencing or defining a DTD in the document header, because XML does not predefine most HTML entities).

In the below table, the "Standard" column indicates the first version of the HTML DTD that defines the character entity reference, and indicates characters that are predefined in XML without needing any DTD.  To use one of these character entity references in an HTML or XML document, enter an ampersand (&) followed by the entity name, and a semicolon (mandatory in XML, and strongly recommended in HTML for all entities, even if HTML allows omitting the semicolon only from some entities indicated below by [b]), e.g., enter &copy; for the copyright symbol ©.

There are no predefined character entities in HTML for characters or sequences of most scripts encoded in the UCS (except a common subset of whitespace, punctuation, mathematical or technical symbols, currency symbols, a few Hebrew symbols used in mathematical notations, and the most common letters in Latin, Greek or Cyrillic).  Note also that not all bidirectional controls defined in UCS/Unicode are represented as standard character entities in HTML (not even in HTML5, which defines more general directional elements and attributes for that purpose).  Notably, there are no predefined HTML character entities for controls that were added in the UCS/Unicode and formally defined in version 2 of the Unicode Bidi Algorithm.

Most entities are predefined in XML and HTML to reference just one character in the UCS, but there are no predefined entities for isolated combining characters, variation selectors, or characters for private use assignments; however the list includes some predefined entities for character sequences of two characters containing some of them.  Since HTML 5.0 (and MathML 3.0 which shares the same set en entities), all entities are encoded in Unicode normalization forms C and KC (this was not the case with older versions of HTML and MathML, so older entities that were initially defined with characters for private use assignments, CJK compatiblity forms, or in non-NFC forms were modified[2]).

However, all valid characters and sequences in the UCS, including all bidirectional controls or private-use assignments (but with the exception of non-whitespace C0 and C1 controls, non-characters, and surrogates) are also usable and valid in HTML, XML, XHTML and MathML, either in plain-text values of attributes or in text elements (by encoding them directly as plain text, or using numeric character references when needed).

EntitiesChar.CodepointsStandardDTD[a]Old ISO subset[c]Description[d]
&Tab;TABU+0009HTML 5.0character tabulation (TAB)
&NewLine;LFU+000AHTML 5.0line feed (LF)
&DownBreve; ̑U+0020 U+0311[e]
U+0311
  • MathML 2.0
  • HTML 5.0
combining inverted breve (combining down breve)
&tdot;
&TripleDot;
 ⃛U+0020 U+20DB[e]
U+20DB
  • MathML 2.0
  • HTML 5.0
combining three dots above
&DotDot; ⃜U+0020 U+20DC[e]
U+20DC
  • MathML 2.0
  • HTML 5.0
combining four dots above
&excl;!U+0021HTML 5.0ISOnumexclamation mark
&quot;[b]
&QUOT;[b]
"U+0022
  • XML 1.0
  • HTML 5.0
html.dtd[f]
HTMLspecial
ISOnumquotation mark
&num;#U+0023HTML 5.0number sign
&dollar;$U+0024HTML 5.0dollar sign
&percnt;%U+0025HTML 5.0ISOnumpercent sign
&amp;[b]
&AMP;[b]
&U+0026
  • XML 1.0
  • HTML 5.0
html.dtd
HTMLspecial
ISOnumampersand
&apos;'U+0027XML 1.0HTMLspecialISOnumapostrophe (apostrophe-quote); see below
&lpar;(U+0028HTML 5.0left parenthesis
&rpar;)U+0029HTML 5.0right parenthesis
&ast;
&midast;
*U+002AHTML 5.0asterisk (middle asterisk)
&plus;+U+002BHTML 5.0plus sign
&comma;,U+002CHTML 5.0comma
&period;.U+002EHTML 5.0full stop (period)
&sol;/U+002FHTML 5.0solidus
&colon;:U+003AHTML 5.0colon
&semi;;U+003BHTML 5.0semicolon
&lt;[b]
&LT;[b]
<U+003C
  • XML 1.0
  • HTML 5.0
html.dtd
HTMLspecial
ISOnumless-than sign
&nvlt;<⃒U+003C U+20D2HTML 5.0less-than sign, combining long vertical line overlay
&equals;=U+003DHTML 5.0ISOnumequals sign
&bne;=⃥U+003D U+20E5HTML 5.0equals sign, combining reverse solidus overlay
&gt;[b]
&GT;[b]
>U+003E
  • XML 1.0
  • HTML 5.0
html.dtd
HTMLspecial
ISOnumgreater-than sign
&nvgt;>⃒U+003E U+20D2HTML 5.0greater-than sign, combining long vertical line overlay
&quest;?U+003FHTML 5.0question mark
&commat;@U+0040HTML 5.0commercial at
&lsqb;
&lbrack;
[U+005BHTML 5.0left square bracket (left bracket)
&bsol;\U+005CHTML 5.0reverse solidus (backward solidus)
&rsqb;
&rbrack;
]U+005DHTML 5.0right square bracket (right bracket)
&Hat;^U+005EHTML 5.0circumflex accent (hat)
&lowbar;
&UnderBar;
_U+005FHTML 5.0low line (low bar; &underbar)
&grave;
&DiacriticalGrave;
`U+0060HTML 5.0grave accent (diacritical grave)
&fjlig;fjU+0066 U+006AHTML 5.0latin small letter f, latin small letter j
&lcub;
&lbrace;
{U+007BHTML 5.0left curly bracket (left brace)
&verbar;
&vert;
&VerticalLine;
|U+007CHTML 5.0vertical line (vertical bar), (pipe character)
&rcub;
&rbrace;
}U+007DHTML 5.0right curly bracket (right brace)
&nbsp;[b]
&NonBreakingSpace;
 U+00A0
  • HTML 3.2
  • HTML 5.0
HTMLlat1ISOnumno-break space (non-breaking space)[g]
&iexcl;[b]¡U+00A1HTML 3.2HTMLlat1ISOnuminverted exclamation mark
&cent;[b]¢U+00A2HTML 3.2HTMLlat1ISOnumcent sign
&pound;[b]£U+00A3HTML 3.2HTMLlat1ISOnumpound sign
&curren;[b]¤U+00A4HTML 3.2HTMLlat1ISOnumcurrency sign
&yen;[b]¥U+00A5HTML 3.2HTMLlat1ISOnumyen sign (yuan sign)
&brvbar;[b]¦U+00A6HTML 3.2HTMLlat1ISOnumbroken bar (broken vertical bar)
&sect;[b]§U+00A7HTML 3.2HTMLlat1ISOnumsection sign
&Dot;
&die;
&DoubleDot;
&uml;
[b]
¨U+00A8
  • HTML 3.2
  • HTML 5.0
  • HTML 5.0
  • HTML 5.0
HTMLlat1ISOdiadiaeresis (spacing dieresis, double dot); see also Germanic umlaut
&copy;[b]
&COPY;[b]
©U+00A9
  • HTML 3.2
  • HTML 5.0
HTMLlat1ISOnumcopyright sign[h]
&ordf;[b]ªU+00AAHTML 3.2HTMLlat1ISOnumfeminine ordinal indicator
&laquo;[b]«U+00ABHTML 3.2HTMLlat1ISOnumleft-pointing double angle quotation mark (left pointing guillemet)
&not;[b]¬U+00ACHTML 3.2HTMLlat1ISOnumnot sign
&shy;[b]SHYU+00ADHTML 3.2HTMLlat1ISOnumsoft hyphen (discretionary hyphen)
&reg;[b]
&circledR;
&REG;
[b]
®U+00AE
  • HTML 3.2
  • HTML 5.0
  • HTML 5.0
HTMLlat1ISOnumregistered sign (registered trademark symbol)[i]
&macr;[b]
&strns;
¯U+00AF
  • HTML 3.2
  • HTML 5.0
HTMLlat1ISOdiamacron (spacing macron, overline, APL overbar)
&deg;[b]°U+00B0HTML 3.2HTMLlat1ISOnumdegree sign
&plusmn;[b]
&pm;
&PlusMinus;
±U+00B1
  • HTML 3.2
  • HTML 5.0
  • HTML 5.0
HTMLlat1ISOnumplus–minus sign (plus-or-minus sign)
&sup2;[b]²U+00B2HTML 3.2HTMLlat1ISOnumsuperscript two (superscript digit two, squared)
&sup3;[b]³U+00B3HTML 3.2HTMLlat1ISOnumsuperscript three (superscript digit three, cubed)
&acute;[b]
&DiacriticalAcute;
´U+00B4
  • HTML 3.2
  • HTML 5.0
HTMLlat1ISOdiaacute accent (diacritical acute, spacing acute)
&micro;[b]µU+00B5HTML 3.2HTMLlat1ISOnummicro sign
&para;[b]U+00B6HTML 3.2HTMLlat1ISOnumpilcrow sign (paragraph sign)
&middot;[b]
&centerdot;
&CenterDot;
·U+00B7
  • HTML 3.2
  • HTML 5.0
  • HTML 5.0
HTMLlat1ISOnummiddle dot (center dot, Georgian comma, Greek middle dot)
&cedil;[b]
&Cedilla;
¸U+00B8
  • HTML 3.2
  • HTML 5.0
HTMLlat1ISOdiacedilla (spacing cedilla)
&sup1;[b]¹U+00B9HTML 3.2HTMLlat1ISOnumsuperscript one (superscript digit one)
&ordm;[b]ºU+00BAHTML 3.2HTMLlat1ISOnummasculine ordinal indicator
&raquo;[b]» U+00BBHTML 3.2HTMLlat1ISOnumright-pointing double angle quotation mark (right pointing guillemet)
&frac14;[b]¼U+00BCHTML 3.2HTMLlat1ISOnumvulgar fraction one quarter (fraction one quarter)
&frac12;[b]
&half;
½U+00BD
  • HTML 3.2
  • HTML 5.0
HTMLlat1ISOnumvulgar fraction one half (fraction one half)
&frac34;[b]¾U+00BEHTML 3.2HTMLlat1ISOnumvulgar fraction three quarters (fraction three quarters)
&iquest;[b]¿U+00BFHTML 3.2HTMLlat1ISOnuminverted question mark (turned question mark)
&Agrave;[b]ÀU+00C0HTML 2.0HTMLlat1ISOlat1Latin capital letter A with grave (Latin capital letter A grave)
&Aacute;[b]ÁU+00C1HTML 2.0HTMLlat1ISOlat1Latin capital letter A with acute
&Acirc;[b]ÂU+00C2HTML 2.0HTMLlat1ISOlat1Latin capital letter A with circumflex
&Atilde;[b]ÃU+00C3HTML 2.0HTMLlat1ISOlat1Latin capital letter A with tilde
&Auml;[b]ÄU+00C4HTML 2.0HTMLlat1ISOlat1Latin capital letter A with diaeresis
&Aring;[b]
&angst;
ÅU+00C5
  • HTML 2.0
  • HTML 5.0
HTMLlat1ISOlat1Latin capital letter A with ring above (Latin capital letter A ring Angstrom sign[j])
&AElig;[b]ÆU+00C6HTML 2.0HTMLlat1ISOlat1Latin capital letter AE (Latin capital ligature AE)
&Ccedil;[b]ÇU+00C7HTML 2.0HTMLlat1ISOlat1Latin capital letter C with cedilla
&Egrave;[b]ÈU+00C8HTML 2.0HTMLlat1ISOlat1Latin capital letter E with grave
&Eacute;[b]ÉU+00C9HTML 2.0HTMLlat1ISOlat1Latin capital letter E with acute
&Ecirc;[b]ÊU+00CAHTML 2.0HTMLlat1ISOlat1Latin capital letter E with circumflex
&Euml;[b]ËU+00CBHTML 2.0HTMLlat1ISOlat1Latin capital letter E with diaeresis
&Igrave;[b]ÌU+00CCHTML 2.0HTMLlat1ISOlat1Latin capital letter I with grave
&Iacute;[b]ÍU+00CDHTML 2.0HTMLlat1ISOlat1Latin capital letter I with acute
&Icirc;[b]ÎU+00CEHTML 2.0HTMLlat1ISOlat1Latin capital letter I with circumflex
&Iuml;[b]ÏU+00CFHTML 2.0HTMLlat1ISOlat1Latin capital letter I with diaeresis
&ETH;[b]ÐU+00D0HTML 2.0HTMLlat1ISOlat1Latin capital letter Eth
&Ntilde;[b]ÑU+00D1HTML 2.0HTMLlat1ISOlat1Latin capital letter N with tilde
&Ograve;[b]ÒU+00D2HTML 2.0HTMLlat1ISOlat1Latin capital letter O with grave
&Oacute;[b]ÓU+00D3HTML 2.0HTMLlat1ISOlat1Latin capital letter O with acute
&Ocirc;[b]ÔU+00D4HTML 2.0HTMLlat1ISOlat1Latin capital letter O with circumflex
&Otilde;[b]ÕU+00D5HTML 2.0HTMLlat1ISOlat1Latin capital letter O with tilde
&Ouml;[b]ÖU+00D6HTML 2.0HTMLlat1ISOlat1Latin capital letter O with diaeresis
&times;[b]×U+00D7HTML 3.2HTMLlat1ISOnummultiplication sign (times sign)
&Oslash;[b]ØU+00D8HTML 2.0HTMLlat1ISOlat1Latin capital letter O with stroke (Latin capital letter O slash)
&Ugrave;[b]ÙU+00D9HTML 2.0HTMLlat1ISOlat1Latin capital letter U with grave
&Uacute;[b]ÚU+00DAHTML 2.0HTMLlat1ISOlat1Latin capital letter U with acute
&Ucirc;[b]ÛU+00DBHTML 2.0HTMLlat1ISOlat1Latin capital letter U with circumflex
&Uuml;[b]ÜU+00DCHTML 2.0HTMLlat1ISOlat1Latin capital letter U with diaeresis
&Yacute;[b]ÝU+00DDHTML 2.0HTMLlat1ISOlat1Latin capital letter Y with acute
&THORN;[b]ÞU+00DEHTML 2.0HTMLlat1ISOlat1Latin capital letter Thorn
&szlig;[b]ßU+00DFHTML 2.0HTMLlat1ISOlat1Latin small letter sharp s (ess-zed); see also German eszett
&agrave;[b]àU+00E0HTML 2.0HTMLlat1ISOlat1Latin small letter a with grave
&aacute;[b]áU+00E1HTML 2.0HTMLlat1ISOlat1Latin small letter a with acute
&acirc;[b]âU+00E2HTML 2.0HTMLlat1ISOlat1Latin small letter a with circumflex
&atilde;[b]ãU+00E3HTML 2.0HTMLlat1ISOlat1Latin small letter a with tilde
&auml;[b]äU+00E4HTML 2.0HTMLlat1ISOlat1Latin small letter a with diaeresis
&aring;[b]åU+00E5HTML 2.0HTMLlat1ISOlat1Latin small letter a with ring above
&aelig;[b]æU+00E6HTML 2.0HTMLlat1ISOlat1Latin small letter ae (Latin small ligature ae)
&ccedil;[b]çU+00E7HTML 2.0HTMLlat1ISOlat1Latin small letter c with cedilla
&egrave;[b]èU+00E8HTML 2.0HTMLlat1ISOlat1Latin small letter e with grave
&eacute;[b]éU+00E9HTML 2.0HTMLlat1ISOlat1Latin small letter e with acute
&ecirc;[b]êU+00EAHTML 2.0HTMLlat1ISOlat1Latin small letter e with circumflex
&euml;[b]ëU+00EBHTML 2.0HTMLlat1ISOlat1Latin small letter e with diaeresis
&igrave;[b]ìU+00ECHTML 2.0HTMLlat1ISOlat1Latin small letter i with grave
&iacute;[b]íU+00EDHTML 2.0HTMLlat1ISOlat1Latin small letter i with acute
&icirc;[b]îU+00EEHTML 2.0HTMLlat1ISOlat1Latin small letter i with circumflex
&iuml;[b]ïU+00EFHTML 2.0HTMLlat1ISOlat1Latin small letter i with diaeresis
&eth;[b]ðU+00F0HTML 2.0HTMLlat1ISOlat1Latin small letter eth
&ntilde;[b]ñU+00F1HTML 2.0HTMLlat1ISOlat1Latin small letter n with tilde
&ograve;[b]òU+00F2HTML 2.0HTMLlat1ISOlat1Latin small letter o with grave
&oacute;[b]óU+00F3HTML 2.0HTMLlat1ISOlat1Latin small letter o with acute
&ocirc;[b]ôU+00F4HTML 2.0HTMLlat1ISOlat1Latin small letter o with circumflex
&otilde;[b]õU+00F5HTML 2.0HTMLlat1ISOlat1Latin small letter o with tilde
&ouml;[b]öU+00F6HTML 2.0HTMLlat1ISOlat1Latin small letter o with diaeresis
&divide;[b]
&div;
÷U+00F7
  • HTML 3.2
  • HTML 5.0
HTMLlat1ISOnumdivision sign
&oslash;[b]øU+00F8HTML 2.0HTMLlat1ISOlat1Latin small letter o with stroke (Latin small letter o slash)
&ugrave;[b]ùU+00F9HTML 2.0HTMLlat1ISOlat1Latin small letter u with grave
&uacute;[b]úU+00FAHTML 2.0HTMLlat1ISOlat1Latin small letter u with acute
&ucirc;[b]ûU+00FBHTML 2.0HTMLlat1ISOlat1Latin small letter u with circumflex
&uuml;[b]üU+00FCHTML 2.0HTMLlat1ISOlat1Latin small letter u with diaeresis
&yacute;[b]ýU+00FDHTML 2.0HTMLlat1ISOlat1Latin small letter y with acute
&thorn;[b]þU+00FEHTML 2.0HTMLlat1ISOlat1Latin small letter thorn
&yuml;[b]ÿU+00FFHTML 2.0HTMLlat1ISOlat1Latin small letter y with diaeresis
&Amacr;ĀU+0100HTML 5.0Latin capital letter A with macron
&amacr;āU+0101HTML 5.0Latin small letter a with macron
&Abreve;ĂU+0102HTML 5.0Latin capital letter A with breve
&abreve;ăU+0103HTML 5.0Latin small letter a with breve
&Aogon;ĄU+0104HTML 5.0Latin capital letter A with ogonek
&aogon;ąU+0105HTML 5.0Latin small letter a with ogonek
&Cacute;ĆU+0106HTML 5.0Latin capital letter C with acute
&cacute;ćU+0107HTML 5.0Latin small letter c with acute
&Ccirc;ĈU+0108HTML 5.0Latin capital letter C with circumflex
&ccirc;ĉU+0109HTML 5.0Latin small letter c with circumflex
&Cdot;ĊU+010AHTML 5.0Latin capital letter C with dot above
&cdot;ċU+010BHTML 5.0Latin small letter c with dot above
&Ccaron;ČU+010CHTML 5.0Latin capital letter C with caron
&ccaron;čU+010DHTML 5.0Latin small letter c with caron
&Dcaron;ĎU+010EHTML 5.0Latin capital letter D with caron
&dcaron;ďU+010FHTML 5.0Latin small letter d with caron
&Dstrok;ĐU+0110HTML 5.0Latin capital letter D with stroke
&dstrok;đU+0111HTML 5.0Latin small letter d with stroke
&Emacr;ĒU+0112HTML 5.0Latin capital letter E with macron
&emacr;ēU+0113HTML 5.0Latin small letter e with macron
&Edot;ĖU+0116HTML 5.0Latin capital letter E with dot above
&edot;ėU+0117HTML 5.0Latin small letter e with dot above
&Eogon;ĘU+0118HTML 5.0Latin capital letter E with ogonek
&eogon;ęU+0119HTML 5.0Latin small letter e with ogonek
&Ecaron;ĚU+011AHTML 5.0Latin capital letter E with caron
&ecaron;ěU+011BHTML 5.0Latin small letter e with caron
&Gcirc;ĜU+011CHTML 5.0Latin capital letter G with circumflex
&gcirc;ĝU+011DHTML 5.0Latin small letter g with circumflex
&Gbreve;ĞU+011EHTML 5.0Latin capital letter G with breve
&gbreve;ğU+011FHTML 5.0Latin small letter g with breve
&Gdot;ĠU+0120HTML 5.0Latin capital letter G with dot above
&gdot;ġU+0121HTML 5.0Latin small letter g with dot above
&Gcedil;ĢU+0122HTML 5.0Latin capital letter G with cedilla
&Hcirc;ĤU+0124HTML 5.0Latin capital letter H with circumflex
&hcirc;ĥU+0125HTML 5.0Latin small letter h with circumflex
&Hstrok;ĦU+0126HTML 5.0Latin capital letter H with stroke
&hstrok;ħU+0127HTML 5.0Latin small letter h with stroke
&Itilde;ĨU+0128HTML 5.0Latin capital letter I with tilde
&itilde;ĩU+0129HTML 5.0Latin small letter i with tilde
&Imacr;ĪU+012AHTML 5.0Latin capital letter I with macron
&imacr;īU+012BHTML 5.0Latin small letter i with macron
&Iogon;ĮU+012EHTML 5.0Latin capital letter I with ogonek
&iogon;įU+012FHTML 5.0Latin small letter i with ogonek
&Idot;İU+0130HTML 5.0Latin capital letter I with dot above
&imath;
&inodot;
ıU+0131HTML 5.0Latin small letter dotless i (i mathematical)
&IJlig;IJU+0132HTML 5.0Latin capital ligature IJ[k]
&ijlig;ijU+0133HTML 5.0Latin small ligature ij[k]
&Jcirc;ĴU+0134HTML 5.0Latin capital letter J with circumflex
&jcirc;ĵU+0135HTML 5.0Latin small letter j with circumflex
&Kcedil;ĶU+0136HTML 5.0Latin capital letter K with cedilla
&kcedil;ķU+0137HTML 5.0Latin small letter k with cedilla
&kgreen;ĸU+0138HTML 5.0Latin small letter kra (k greenlandic)
&Lacute;ĹU+0139HTML 5.0Latin capital letter L with acute
&lacute;ĺU+013AHTML 5.0Latin small letter l with acute
&Lcedil;ĻU+013BHTML 5.0Latin capital letter L with cedilla
&lcedil;ļU+013CHTML 5.0Latin small letter l with cedilla
&Lcaron;ĽU+013DHTML 5.0Latin capital letter L with caron
&lcaron;ľU+013EHTML 5.0Latin small letter l with caron
&Lmidot;ĿU+013FHTML 5.0Latin capital letter L with middle dot[l]
&lmidot;ŀU+0140HTML 5.0Latin small letter l with middle dot[l]
&Lstrok;ŁU+0141HTML 5.0Latin capital letter L with stroke
&lstrok;łU+0142HTML 5.0Latin small letter l with stroke
&Nacute;ŃU+0143HTML 5.0Latin capital letter N with acute
&nacute;ńU+0144HTML 5.0Latin small letter n with acute
&Ncedil;ŅU+0145HTML 5.0Latin capital letter N with cedilla
&ncedil;ņU+0146HTML 5.0Latin small letter n with cedilla
&Ncaron;ŇU+0147HTML 5.0Latin capital letter N with caron
&ncaron;ňU+0148HTML 5.0Latin small letter n with caron
&napos;ʼnU+0149HTML 5.0Latin small letter n preceded by apostrophe[m]
&ENG;ŊU+014AHTML 5.0Latin capital letter Eng
&eng;ŋU+014BHTML 5.0Latin small letter eng
&Omacr;ŌU+014CHTML 5.0Latin capital letter O with macron
&omacr;ōU+014DHTML 5.0Latin small letter o with macron
&Odblac;ŐU+0150HTML 5.0Latin capital letter O with double acute
&odblac;őU+0151HTML 5.0Latin small letter o with double acute
&OElig;ŒU+0152HTML 4.0HTMLspecialISOlat2Latin capital ligature OE[n]
&oelig;œU+0153HTML 4.0HTMLspecialISOlat2Latin small ligature oe[n]
&Racute;ŔU+0154HTML 5.0Latin capital letter R with acute
&racute;ŕU+0155HTML 5.0Latin small letter r with acute
&Rcedil;ŖU+0156HTML 5.0Latin capital letter R with cedilla
&rcedil;ŗU+0157HTML 5.0Latin small letter r with cedilla
&Rcaron;ŘU+0158HTML 5.0Latin capital letter R with caron
&rcaron;řU+0159HTML 5.0Latin small letter r with caron
&Sacute;ŚU+015AHTML 5.0Latin capital letter S with acute
&sacute;śU+015BHTML 5.0Latin small letter s with acute
&Scirc;ŜU+015CHTML 5.0Latin capital letter S with circumflex
&scirc;ŝU+015DHTML 5.0Latin small letter s with circumflex
&Scedil;ŞU+015EHTML 5.0Latin capital letter S with cedilla
&scedil;şU+015FHTML 5.0Latin small letter s with cedilla
&Scaron;ŠU+0160HTML 4.0HTMLspecialISOlat2Latin capital letter S with caron
&scaron;šU+0161HTML 4.0HTMLspecialISOlat2Latin small letter s with caron
&Tcedil;ŢU+0162HTML 5.0Latin capital letter T with cedilla
&tcedil;ţU+0163HTML 5.0Latin small letter t with cedilla
&Tcaron;ŤU+0164HTML 5.0Latin capital letter T with caron
&tcaron;ťU+0165HTML 5.0Latin small letter t with caron
&Tstrok;ŦU+0166HTML 5.0Latin capital letter T with stroke
&tstrok;ŧU+0167HTML 5.0Latin small letter t with stroke
&Utilde;ŨU+0168HTML 5.0Latin capital letter U with tilde
&utilde;ũU+0169HTML 5.0Latin small letter u with tilde
&Umacr;ŪU+016AHTML 5.0Latin capital letter U with macron
&umacr;ūU+016BHTML 5.0Latin small letter u with macron
&Ubreve;ŬU+016CHTML 5.0Latin capital letter U with breve
&ubreve;ŭU+016DHTML 5.0Latin small letter u with breve
&Uring;ŮU+016EHTML 5.0Latin capital letter U with ring above
&uring;ůU+016FHTML 5.0Latin small letter u with ring above
&Udblac;ŰU+0170HTML 5.0Latin capital letter U with double acute
&udblac;űU+0171HTML 5.0Latin small letter u with double acute
&Uogon;ŲU+0172HTML 5.0Latin capital letter U with ogonek
&uogon;ųU+0173HTML 5.0Latin small letter u with ogonek
&Wcirc;ŴU+0174HTML 5.0Latin capital letter W with circumflex
&wcirc;ŵU+0175HTML 5.0Latin small letter w with circumflex
&Ycirc;ŶU+0176HTML 5.0Latin capital letter Y with circumflex
&ycirc;ŷU+0177HTML 5.0Latin small letter y with circumflex
&Yuml;ŸU+0178HTML 4.0HTMLspecialISOlat2Latin capital letter Y with diaeresis
&Zacute;ŹU+0179HTML 5.0Latin capital letter Z with acute
&zacute;źU+017AHTML 5.0Latin small letter z with acute
&Zdot;ŻU+017BHTML 5.0Latin capital letter Z with dot above
&zdot;żU+017CHTML 5.0Latin small letter z with dot above
&Zcaron;ŽU+017DHTML 5.0Latin capital letter Z with caron
&zcaron;žU+017EHTML 5.0Latin small letter z with caron
&fnof;ƒU+0192HTML 4.0HTMLsymbolISOtechLatin small letter f with hook (function, florin)
&imped;ƵU+01B5HTML 5.0Latin capital letter Z with stroke
&gacute;ǵU+01F5HTML 5.0Latin small letter g with acute
&jmath;ȷU+0237HTML 5.0Latin small letter dotless j (j mathematical)
&circ;ˆU+02C6HTML 4.0HTMLspecialISOpubmodifier letter circumflex accent
&caron;
&Hacek;
ˇU+02C7HTML 5.0caron (hacek)
&breve;
&Breve;
˘U+02D8HTML 5.0breve
&dot;
&DiacriticalDot;
˙U+02D9HTML 5.0dot above (diacritical dot)
&ring;˚U+02DAHTML 5.0ring above
&ogon;˛U+02DBHTML 5.0ogonek
&tilde;
&DiacriticalTilde;
˜U+02DC
  • HTML 4.0
  • HTML 5.0
HTMLspecialISOdiasmall tilde (diacritical tilde)
&dblac;
&DiacriticalDoubleAcute;
˝U+02DDHTML 5.0double acute accent (diacritical double acute)
&Alpha;ΑU+0391HTML 4.0HTMLsymbolGreek capital letter Alpha
&Beta;ΒU+0392HTML 4.0HTMLsymbolGreek capital letter Beta
&Gamma;ΓU+0393HTML 4.0HTMLsymbolISOgrk3Greek capital letter Gamma
&Delta;ΔU+0394HTML 4.0HTMLsymbolISOgrk3Greek capital letter Delta
&Epsilon;ΕU+0395HTML 4.0HTMLsymbolGreek capital letter Epsilon
&Zeta;ΖU+0396HTML 4.0HTMLsymbolGreek capital letter Zeta
&Eta;ΗU+0397HTML 4.0HTMLsymbolGreek capital letter Eta
&Theta;ΘU+0398HTML 4.0HTMLsymbolISOgrk3Greek capital letter Theta
&Iota;ΙU+0399HTML 4.0HTMLsymbolGreek capital letter Iota
&Kappa;ΚU+039AHTML 4.0HTMLsymbolGreek capital letter Kappa
&Lambda;ΛU+039BHTML 4.0HTMLsymbolISOgrk3Greek capital letter Lambda
&Mu;ΜU+039CHTML 4.0HTMLsymbolGreek capital letter Mu
&Nu;ΝU+039DHTML 4.0HTMLsymbolGreek capital letter Nu
&Xi;ΞU+039EHTML 4.0HTMLsymbolISOgrk3Greek capital letter Xi
&Omicron;ΟU+039FHTML 4.0HTMLsymbolGreek capital letter Omicron
&Pi;ΠU+03A0HTML 4.0HTMLsymbolGreek capital letter Pi
&Rho;ΡU+03A1HTML 4.0HTMLsymbolGreek capital letter Rho
&Sigma;ΣU+03A3HTML 4.0HTMLsymbolISOgrk3Greek capital letter Sigma
&Tau;ΤU+03A4HTML 4.0HTMLsymbolGreek capital letter Tau
&Upsilon;ΥU+03A5HTML 4.0HTMLsymbolISOgrk3Greek capital letter Upsilon
&Phi;ΦU+03A6HTML 4.0HTMLsymbolISOgrk3Greek capital letter Phi
&Chi;ΧU+03A7HTML 4.0HTMLsymbolGreek capital letter Chi
&Psi;ΨU+03A8HTML 4.0HTMLsymbolISOgrk3Greek capital letter Psi
&Omega;
&ohm;
ΩU+03A9
  • HTML 4.0
  • HTML 5.0
HTMLsymbolISOgrk3Greek capital letter Omega (Ohm sign[o])
&alpha;αU+03B1HTML 4.0HTMLsymbolISOgrk3Greek small letter alpha
&beta;βU+03B2HTML 4.0HTMLsymbolISOgrk3Greek small letter beta
&gamma;γU+03B3HTML 4.0HTMLsymbolISOgrk3Greek small letter gamma
&delta;δU+03B4HTML 4.0HTMLsymbolISOgrk3Greek small letter delta
&epsi;
&epsilon;
εU+03B5
  • HTML 4.0
  • HTML 5.0
HTMLsymbolISOgrk3Greek small letter epsilon
&zeta;ζU+03B6HTML 4.0HTMLsymbolISOgrk3Greek small letter zeta
&eta;ηU+03B7HTML 4.0HTMLsymbolISOgrk3Greek small letter eta
&theta;θU+03B8HTML 4.0HTMLsymbolISOgrk3Greek small letter theta
&iota;ιU+03B9HTML 4.0HTMLsymbolISOgrk3Greek small letter iota
&kappa;κU+03BAHTML 4.0HTMLsymbolISOgrk3Greek small letter kappa
&lambda;λU+03BBHTML 4.0HTMLsymbolISOgrk3Greek small letter lambda
&mu;μU+03BCHTML 4.0HTMLsymbolISOgrk3Greek small letter mu
&nu;νU+03BDHTML 4.0HTMLsymbolISOgrk3Greek small letter nu
&xi;ξU+03BEHTML 4.0HTMLsymbolISOgrk3Greek small letter xi
&omicron;οU+03BFHTML 4.0HTMLsymbolNewGreek small letter omicron
&pi;πU+03C0HTML 4.0HTMLsymbolISOgrk3Greek small letter pi
&rho;ρU+03C1HTML 4.0HTMLsymbolISOgrk3Greek small letter rho
&sigmav;
&varsigma;
&sigmaf;
ςU+03C2
  • HTML 4.0
  • HTML 5.0
  • HTML 5.0
HTMLsymbolISOgrk3Greek small letter final sigma (variant sigma)
&sigma;σU+03C3HTML 4.0HTMLsymbolISOgrk3Greek small letter sigma
&tau;τU+03C4HTML 4.0HTMLsymbolISOgrk3Greek small letter tau
&upsi;
&upsilon;
υU+03C5
  • HTML 4.0
  • HTML 5.0
HTMLsymbolISOgrk3Greek small letter upsilon
&phi;φU+03C6HTML 4.0HTMLsymbolISOgrk3Greek small letter phi
&chi;χU+03C7HTML 4.0HTMLsymbolISOgrk3Greek small letter chi
&psi;ψU+03C8HTML 4.0HTMLsymbolISOgrk3Greek small letter psi
&omega;ωU+03C9HTML 4.0HTMLsymbolISOgrk3Greek small letter omega
&thetav;
&vartheta;
&thetasym;
ϑU+03D1
  • HTML 4.0
  • HTML 5.0
  • HTML 5.0
HTMLsymbolNewGreek theta symbol (variant theta)
&Upsi;
&upsih;
ϒU+03D2
  • HTML 4.0
  • HTML 5.0
HTMLsymbolNewGreek Upsilon with hook symbol
&straightphi;
&phiv;
&varphi;
ϕU+03D5HTML 5.0Greek phi symbol (straight phi, variant phi)
&piv;
&varpi;
ϖU+03D6
  • HTML 4.0
  • HTML 5.0
HTMLsymbolISOgrk3Greek pi symbol (variant pi)
&Gammad;ϜU+03DCHTML 5.0Greek letter digamma
&gammad;
&digamma;
ϝU+03DDHTML 5.0Greek small letter digamma
&kappav;
&varkappa;
ϰU+03F0HTML 5.0Greek kappa symbol (variant kappa)
&rhov;
&varrho;
ϱU+03F1HTML 5.0Greek rho symbol (variant rho)
&epsiv;
&varepsilon;
&straightepsilon;
ϵU+03F5HTML 5.0Greek lunate epsilon symbol (epsilon, variant epsilon, straight epsilon)
&bepsi;
&backepsilon;
϶U+03F6HTML 5.0Greek reversed lunate epsilon symbol (back epsilon)
&IOcy;ЁU+0401HTML 5.0Cyrillic capital letter Io
&DJcy;ЂU+0402HTML 5.0Cyrillic capital letter Dje
&GJcy;ЃU+0403HTML 5.0Cyrillic capital letter Gje
&Jukcy;ЄU+0404HTML 5.0Cyrillic capital letter Ukrainian Ie
&DScy;ЅU+0405HTML 5.0Cyrillic capital letter Dze
&Iukcy;ІU+0406HTML 5.0Cyrillic capital letter Byelorussian-Ukrainian I (Ukrainian I)
&YIcy;ЇU+0407HTML 5.0Cyrillic capital letter yi
&Jsercy;ЈU+0408HTML 5.0Cyrillic capital letter Je (Serbian J)
&LJcy;ЉU+0409HTML 5.0Cyrillic capital letter Lje
&NJcy;ЊU+040AHTML 5.0Cyrillic capital letter Nje
&TSHcy;ЋU+040BHTML 5.0Cyrillic capital letter Tshe
&KJcy;ЌU+040CHTML 5.0Cyrillic capital letter Kje
&Ubrcy;ЎU+040EHTML 5.0Cyrillic capital letter short U (U breve)
&DZcy;ЏU+040FHTML 5.0Cyrillic capital letter Dzhe
&Acy;АU+0410HTML 5.0Cyrillic capital letter A
&Bcy;БU+0411HTML 5.0Cyrillic capital letter Be
&Vcy;ВU+0412HTML 5.0Cyrillic capital letter Ve
&Gcy;ГU+0413HTML 5.0Cyrillic capital letter Ghe
&Dcy;ДU+0414HTML 5.0Cyrillic capital letter De
&IEcy;ЕU+0415HTML 5.0Cyrillic capital letter Ie
&ZHcy;ЖU+0416HTML 5.0Cyrillic capital letter Zhe
&Zcy;ЗU+0417HTML 5.0Cyrillic capital letter Ze
&Icy;ИU+0418HTML 5.0Cyrillic capital letter I
&Jcy;ЙU+0419HTML 5.0Cyrillic capital letter short I (J)
&Kcy;КU+041AHTML 5.0Cyrillic capital letter Ka
&Lcy;ЛU+041BHTML 5.0Cyrillic capital letter El
&Mcy;МU+041CHTML 5.0Cyrillic capital letter Em
&Ncy;НU+041DHTML 5.0Cyrillic capital letter En
&Ocy;ОU+041EHTML 5.0Cyrillic capital letter O
&Pcy;ПU+041FHTML 5.0Cyrillic capital letter Pe
&Rcy;РU+0420HTML 5.0Cyrillic capital letter Er
&Scy;СU+0421HTML 5.0Cyrillic capital letter Es
&Tcy;ТU+0422HTML 5.0Cyrillic capital letter Te
&Ucy;УU+0423HTML 5.0Cyrillic capital letter U
&Fcy;ФU+0424HTML 5.0Cyrillic capital letter Ef
&KHcy;ХU+0425HTML 5.0Cyrillic capital letter Ha (Kha)
&TScy;ЦU+0426HTML 5.0Cyrillic capital letter Tse
&CHcy;ЧU+0427HTML 5.0Cyrillic capital letter Che
&SHcy;ШU+0428HTML 5.0Cyrillic capital letter Sha
&SHCHcy;ЩU+0429HTML 5.0Cyrillic capital letter Shcha
&HARDcy;ЪU+042AHTML 5.0Cyrillic capital letter Hard Sign
&Ycy;ЫU+042BHTML 5.0Cyrillic capital letter Yeru (Y)
&SOFTcy;ЬU+042CHTML 5.0Cyrillic capital letter Soft Sign
&Ecy;ЭU+042DHTML 5.0Cyrillic capital letter E
&YUcy;ЮU+042EHTML 5.0Cyrillic capital letter Yu
&YAcy;ЯU+042FHTML 5.0Cyrillic capital letter Ya
&acy;аU+0430HTML 5.0Cyrillic small letter a
&bcy;бU+0431HTML 5.0Cyrillic small letter be
&vcy;вU+0432HTML 5.0Cyrillic small letter ve
&gcy;гU+0433HTML 5.0Cyrillic small letter ghe
&dcy;дU+0434HTML 5.0Cyrillic small letter de
&iecy;еU+0435HTML 5.0Cyrillic small letter ie
&zhcy;жU+0436HTML 5.0Cyrillic small letter zhe
&zcy;зU+0437HTML 5.0Cyrillic small letter ze
&icy;иU+0438HTML 5.0Cyrillic small letter i
&jcy;йU+0439HTML 5.0Cyrillic small letter short i (j)
&kcy;кU+043AHTML 5.0Cyrillic small letter ka
&lcy;лU+043BHTML 5.0Cyrillic small letter el
&mcy;мU+043CHTML 5.0Cyrillic small letter em
&ncy;нU+043DHTML 5.0Cyrillic small letter en
&ocy;оU+043EHTML 5.0Cyrillic small letter o
&pcy;пU+043FHTML 5.0Cyrillic small letter pe
&rcy;рU+0440HTML 5.0Cyrillic small letter er
&scy;сU+0441HTML 5.0Cyrillic small letter es
&tcy;тU+0442HTML 5.0Cyrillic small letter te
&ucy;уU+0443HTML 5.0Cyrillic small letter u
&fcy;фU+0444HTML 5.0Cyrillic small letter ef
&khcy;хU+0445HTML 5.0Cyrillic small letter ha (kha)
&tscy;цU+0446HTML 5.0Cyrillic small letter tse
&chcy;чU+0447HTML 5.0Cyrillic small letter che
&shcy;шU+0448HTML 5.0Cyrillic small letter sha
&shchcy;щU+0449HTML 5.0Cyrillic small letter shcha
&hardcy;ъU+044AHTML 5.0Cyrillic small letter hard sign
&ycy;ыU+044BHTML 5.0Cyrillic small letter yeru (y)
&softcy;ьU+044CHTML 5.0Cyrillic small letter soft sign
&ecy;эU+044DHTML 5.0Cyrillic small letter e
&yucy;юU+044EHTML 5.0Cyrillic small letter yu
&yacy;яU+044FHTML 5.0Cyrillic small letter ya
&iocy;ёU+0451HTML 5.0Cyrillic small letter io
&djcy;ђU+0452HTML 5.0Cyrillic small letter dje
&gjcy;ѓU+0453HTML 5.0Cyrillic small letter gje
&jukcy;єU+0454HTML 5.0Cyrillic small letter ukrainian ie
&dscy;ѕU+0455HTML 5.0Cyrillic small letter dze
&iukcy;іU+0456HTML 5.0Cyrillic small letter Byelorussian-Ukrainian i (Ukrainian i)
&yicy;їU+0457HTML 5.0Cyrillic small letter yi
&jsercy;јU+0458HTML 5.0Cyrillic small letter je (Serbian j)
&ljcy;љU+0459HTML 5.0Cyrillic small letter lje
&njcy;њU+045AHTML 5.0Cyrillic small letter nje
&tshcy;ћU+045BHTML 5.0Cyrillic small letter tshe
&kjcy;ќU+045CHTML 5.0Cyrillic small letter kje
&ubrcy;ўU+045EHTML 5.0Cyrillic small letter short u (u breve)
&dzcy;џU+045FHTML 5.0Cyrillic small letter dzhe
&ensp;U+2002HTML 4.0HTMLspecialISOpuben space[g]
&emsp;U+2003HTML 4.0HTMLspecialISOpubem space[g]
&emsp13;U+2004HTML 5.0three-per-em space (1/3 em space)
&emsp14;U+2005HTML 5.0four-per-em space (1/4 em space)
&numsp;U+2007HTML 5.0figure space (number space)
&puncsp;U+2008HTML 5.0punctuation space
&thinsp;
&ThinSpace;
U+2009
  • HTML 4.0
  • HTML 5.0
HTMLspecialISOpubthin space[g]
&hairsp;
&VeryThinSpace;
U+200AHTML 5.0hair space (very thin space)
&ZeroWidthSpace;
&NegativeVeryThinSpace;
&NegativeThinSpace;
&NegativeMediumSpace;
&NegativeThickSpace;
ZWSPU+200BHTML 5.0zero width space (negative space)
&zwnj;ZWNJU+200CHTML 4.0HTMLspecialNEW RFC 2070zero width non-joiner
&zwj;ZWJU+200DHTML 4.0HTMLspecialNEW RFC 2070zero width joiner
&lrm;LRMU+200EHTML 4.0HTMLspecialNEW RFC 2070left-to-right mark
&rlm;RLMU+200FHTML 4.0HTMLspecialNEW RFC 2070right-to-left mark
&hyphen;
&dash;
U+2010HTML 5.0hyphen (Unicode hyphen)
&ndash;U+2013HTML 4.0HTMLspecialISOpuben dash
&mdash;U+2014HTML 4.0HTMLspecialISOpubem dash
&horbar;U+2015HTML 5.0horizontal bar
&Verbar;
&Vert;
U+2016HTML 5.0double vertical line
&lsquo;
&OpenCurlyQuote;
U+2018
  • HTML 4.0
  • HTML 5.0
HTMLspecialISOnumleft single quotation mark (open curly quote)
&rsquo;
&rsquor;
&CloseCurlyQuote;
U+2019
  • HTML 4.0
  • HTML 5.0
  • HTML 5.0
HTMLspecialISOnumright single quotation mark (close curly quote)
&sbquo;
&lsquor;
U+201A
  • HTML 4.0
  • HTML 5.0
HTMLspecialNewsingle low-9 quotation mark
&ldquo;
&OpenCurlyDoubleQuote;
U+201C
  • HTML 4.0
  • HTML 5.0
HTMLspecialISOnumleft double quotation mark (open curly double quote)
&rdquo;
&rdquor;
&CloseCurlyDoubleQuote;
U+201D
  • HTML 4.0
  • HTML 5.0
  • HTML 5.0
HTMLspecialISOnumright double quotation mark (close curly double quote)
&bdquo;
&ldquor;
U+201E
  • HTML 4.0
  • HTML 5.0
HTMLspecialNewdouble low-9 quotation mark
&dagger;U+2020HTML 4.0HTMLspecialISOpubdagger (obelisk)
&Dagger;
&ddagger;
U+2021
  • HTML 4.0
  • HTML 5.0
HTMLspecialISOpubdouble dagger (double obelisk)
&bull;
&bullet;
U+2022
  • HTML 4.0
  • HTML 5.0
HTMLspecialISOpubbullet (black small circle)[p]
&nldr;U+2025HTML 5.0two dot leader (n leader)
&hellip;
&mldr;
U+2026
  • HTML 4.0
  • HTML 5.0
HTMLsymbolISOpubhorizontal ellipsis (three dot leader, m leader)
&permil;U+2030HTML 4.0HTMLspecialISOtechper mille sign
&pertenk;U+2031HTML 5.0per ten thousand sign (basis point)
&prime;U+2032HTML 4.0HTMLsymbolISOtechprime (arcminutes feet)
&Prime;U+2033HTML 4.0HTMLsymbolISOtechdouble prime (arcseconds inches)
&tprime;U+2034HTML 5.0triple prime (thirds, lignes)
&bprime;
&backprime;
U+2035HTML 5.0reversed prime (back prime)
&lsaquo;U+2039HTML 4.0HTMLspecialISO proposedsingle left-pointing angle quotation mark[q]
&rsaquo;U+203AHTML 4.0HTMLspecialISO proposedsingle right-pointing angle quotation mark[q]
&oline;
&OverBar;
U+203E
  • HTML 4.0
  • HTML 5.0
HTMLsymbolNewoverline (spacing overscore)
&caret;U+2041HTML 5.0caret insertion point
&hybull;U+2043HTML 5.0hyphen bullet
&frasl;U+2044HTML 4.0HTMLsymbolNewfraction slash (solidus)
&bsemi;U+204FHTML 5.0reversed semicolon (backward semicolon)
&qprime;U+2057HTML 5.0quadruple prime (fourths)
&MediumSpace;U+205FHTML 5.0medium mathematical space (medium space)
&ThickSpace;  U+205F U+200AHTML 5.0medium mathematical space, hair space
&NoBreak;WJU+2060HTML 5.0word joiner (no break)
&ApplyFunction;
&af;
()U+2061HTML 5.0function application (apply function)
&InvisibleTimes;
&it;
×U+2062HTML 5.0invisible times
&InvisibleComma;
&ic;
,U+2063HTML 5.0invisible separator (invisible comma)
&euro;U+20ACHTML 4.0HTMLspecialNeweuro sign
&Copf;
&complexes;
U+2102HTML 5.0double-struck capital C (Complex number)
&incare;U+2105HTML 5.0care of
&gscr;U+210AHTML 5.0script small g
&hamilt;
&HilbertSpace;
&Hscr;
U+210BHTML 5.0script capital H (Hilbert space Hamiltonian mechanics)
&Hfr;
&Poincareplane;
U+210CHTML 5.0black-letter capital H (Fraktur capital H Poincare plane)
&quaternions;
&Hopf;
U+210DHTML 5.0double-struck capital H (Quaternion)
&planckh;U+210EHTML 5.0Planck constant
&planck;
&hbar;
&plankv;
&hslash;
U+210FHTML 5.0Planck constant over two pi (h bar, h slash, Planck variant)
&Iscr;
&imagline;
U+2110HTML 5.0script capital I (image line)
&image;
&Im;
&imagpart;
&Ifr;
U+2111
  • HTML 4.0
  • HTML 5.0
  • HTML 5.0
  • HTML 5.0
HTMLsymbolISOamsoblack-letter capital I (Fraktur capital I, imaginary part)
&Lscr;
&lagran;
&Laplacetrf;
U+2112HTML 5.0script capital L (Lagrangian mechanics, Laplace transform)
&ell;U+2113HTML 5.0script small l (ell, a mathematical symbol)
&Nopf;
&naturals;
U+2115HTML 5.0double-struck capital N (Natural number)
&numero;U+2116HTML 5.0numero sign
&copysr;U+2117HTML 5.0sound recording copyright; or phonogram copyright symbol[r]
&weierp;
&wp;
U+2118
  • HTML 4.0
  • HTML 5.0
HTMLsymbolISOamsoscript capital P (power set Weierstrass p)
&Popf;
&primes;
U+2119HTML 5.0double-struck capital P (prime number)
&rationals;
&Qopf;
U+211AHTML 5.0double-struck capital Q (rational number)
&Rscr;
&realine;
U+211BHTML 5.0script capital R (Riemann integral)
&real;
&Re;
&realpart;
&Rfr;
U+211C
  • HTML 4.0
  • HTML 5.0
  • HTML 5.0
  • HTML 5.0
HTMLsymbolISOamsoblack-letter capital R (Fraktur capital R, real part symbol)
&reals;
&Ropf;
U+211DHTML 5.0double-struck capital R (real number)
&rx;U+211EHTML 5.0prescription take (Rx)
&trade;
&TRADE;
U+2122
  • HTML 4.0
  • HTML 5.0
HTMLsymbolISOnumtrademark symbol; see superscript Latin capital letters TM
&integers;
&Zopf;
U+2124HTML 5.0double-struck capital Z (integer)
&mho;U+2127HTML 5.0inverted ohm sign (mho)
&Zfr;
&zeetrf;
U+2128HTML 5.0black-letter capital Z (Fraktur capital Z, dram)
&iiota;U+2129HTML 5.0turned Greek small letter iota (inverted iota)
&bernou;
&Bernoullis;
&Bscr;
U+212CHTML 5.0script capital B (Bernoulli polynomials)
&Cfr;
&Cayleys;
U+212DHTML 5.0black-letter capital C (Fraktur capital C)
&escr;U+212FHTML 5.0script small e
&Escr;
&expectation;
U+2130HTML 5.0script capital E (electromotive force)
&Fscr;
&Fouriertrf;
U+2131HTML 5.0script capital F (Fourier transform)
&phmmat;
&Mellintrf;
&Mscr;
U+2133HTML 5.0script capital M (Mellin transform, M-matrix (physics))
&order;
&orderof;
&oscr;
U+2134HTML 5.0script small o (order, of inferior order to)
&alefsym;
&aleph;
U+2135
  • HTML 4.0
  • HTML 5.0
HTMLsymbolNewalef symbol (first transfinite cardinal)[s]
&beth;U+2136HTML 5.0bet symbol (beth symbol)[t]
&gimel;U+2137HTML 5.0gimel symbol[u]
&daleth;U+2138HTML 5.0dalet symbol (daleth symbol)[v]
&CapitalDifferentialD;
&DD;
U+2145HTML 5.0double-struck italic capital D
&DifferentialD;
&dd;
U+2146HTML 5.0double-struck italic small d
&ExponentialE;
&exponentiale;
&ee;
U+2147HTML 5.0double-struck italic small e
&ImaginaryI;
&ii;
U+2148HTML 5.0double-struck italic small i
&frac13;U+2153HTML 5.0vulgar fraction one third (fraction one third)
&frac23;U+2154HTML 5.0vulgar fraction two thirds (fraction two thirds)
&frac15;U+2155HTML 5.0vulgar fraction one fifth (fraction one fifth)
&frac25;U+2156HTML 5.0vulgar fraction two fifths (fraction two fifths)
&frac35;U+2157HTML 5.0vulgar fraction three fifths (fraction three fifths)
&frac45;U+2158HTML 5.0vulgar fraction four fifths (fraction four fifths)
&frac16;U+2159HTML 5.0vulgar fraction one sixth (fraction one sixth)
&frac56;U+215AHTML 5.0vulgar fraction five sixths (fraction five sixths)
&frac18;U+215BHTML 5.0vulgar fraction one eighth (fraction one eighth)
&frac38;U+215CHTML 5.0vulgar fraction three eighths (fraction three eighths)
&frac58;U+215DHTML 5.0vulgar fraction five eighths (fraction five eighths)
&frac78;U+215EHTML 5.0vulgar fraction seven eighths (fraction seven eighths)
&larr;
&leftarrow;
&LeftArrow;
&slarr;
&ShortLeftArrow;
U+2190
  • HTML 4.0
  • HTML 5.0
  • HTML 5.0
  • HTML 5.0
  • HTML 5.0
HTMLsymbolISOnumleftwards arrow
&uarr;
&uparrow;
&UpArrow;
&ShortUpArrow;
U+2191
  • HTML 4.0
  • HTML 5.0
  • HTML 5.0
  • HTML 5.0
HTMLsymbolISOnumupwards arrow
&rarr;
&rightarrow;
&RightArrow;
&srarr;
&ShortRightArrow;
U+2192
  • HTML 4.0
  • HTML 5.0
  • HTML 5.0
  • HTML 5.0
  • HTML 5.0
HTMLsymbolISOnumrightwards arrow
&darr;
&downarrow;
&DownArrow;
&ShortDownArrow;
U+2193
  • HTML 4.0
  • HTML 5.0
  • HTML 5.0
  • HTML 5.0
HTMLsymbolISOnumdownwards arrow
&harr;
&leftrightarrow;
&LeftRightArrow;
U+2194
  • HTML 4.0
  • HTML 5.0
  • HTML 5.0
HTMLsymbolISOamsaleft right arrow (horizontal arrow)
&varr;
&updownarrow;
&UpDownArrow;
U+2195HTML 5.0up down arrow (vertical arrow)
&nwarr;
&UpperLeftArrow;
&nwarrow;
U+2196HTML 5.0north west arrow (upper left arrow)
&nearr;
&UpperRightArrow;
&nearrow;
U+2197HTML 5.0north east arrow (upper right arrow)
&searr;
&searrow;
&LowerRightArrow;
U+2198HTML 5.0south east arrow (lower right arrow)
&swarr;
&swarrow;
&LowerLeftArrow;
U+2199HTML 5.0south west arrow (lower left arrow)
&nlarr;
&nleftarrow;
U+219AHTML 5.0leftwards arrow with stroke (not left arrow)
&nrarr;
&nrightarrow;
U+219BHTML 5.0rightwards arrow with stroke (not right arrow)
&rarrw;
&rightsquigarrow;
U+219DHTML 5.0rightwards wave arrow (rightwards squiggle arrow)
&nrarrw;↝̸U+219D U+0338HTML 5.0rightwards wave arrow, combining long solidus overlay
&Larr;
&twoheadleftarrow;
U+219EHTML 5.0leftwards two headed arrow
&Uarr;U+219FHTML 5.0upwards two headed arrow
&Rarr;
&twoheadrightarrow;
U+21A0HTML 5.0rightwards two headed arrow
&Darr;U+21A1HTML 5.0downwards two headed arrow
&larrtl;
&leftarrowtail;
U+21A2HTML 5.0leftwards arrow with tail
&rarrtl;
&rightarrowtail;
U+21A3HTML 5.0rightwards arrow with tail
&LeftTeeArrow;
&mapstoleft;
U+21A4HTML 5.0leftwards arrow from bar (maps to leftward, left tee arrow)
&UpTeeArrow;
&mapstoup;
U+21A5HTML 5.0upwards arrow from bar (maps to upward, up tee arrow)
&map;
&RightTeeArrow;
&mapsto;
U+21A6HTML 5.0rightwards arrow from bar (maps to, right tee arrow)
&DownTeeArrow;
&mapstodown;
U+21A7HTML 5.0downwards arrow from bar (maps to downward, down tee arrow)
&larrhk;
&hookleftarrow;
U+21A9HTML 5.0leftwards arrow with hook
&rarrhk;
&hookrightarrow;
U+21AAHTML 5.0rightwards arrow with hook
&larrlp;
&looparrowleft;
U+21ABHTML 5.0leftwards arrow with loop
&rarrlp;
&looparrowright;
U+21ACHTML 5.0rightwards arrow with loop
&harrw;
&leftrightsquigarrow;
U+21ADHTML 5.0left right wave arrow (horizontal wave arrow, left right squiggle arrow)
&nharr;
&nleftrightarrow;
U+21AEHTML 5.0left right arrow with stroke (not horizontal arrow, not left right arrow)
&lsh;
&Lsh;
U+21B0HTML 5.0upwards arrow with tip leftwards (left shift)
&rsh;
&Rsh;
U+21B1HTML 5.0upwards arrow with tip rightwards (right shift)
&ldsh;U+21B2HTML 5.0downwards arrow with tip leftwards (left down shift)
&rdsh;U+21B3HTML 5.0downwards arrow with tip rightwards (right down shift)
&crarr;U+21B5HTML 4.0HTMLsymbolNewdownwards arrow with corner leftwards (carriage return)
&cularr;
&curvearrowleft;
U+21B6HTML 5.0anticlockwise top semicircle arrow (curve arrow left)
&curarr;
&curvearrowright;
U+21B7HTML 5.0clockwise top semicircle arrow (curve arrow right)
&olarr;
&circlearrowleft;
U+21BAHTML 5.0anticlockwise open circle arrow (circle arrow left, open left arrow)
&orarr;
&circlearrowright;
U+21BBHTML 5.0clockwise open circle arrow (circle arrow right, open right arrow)
&lharu;
&LeftVector;
&leftharpoonup;
U+21BCHTML 5.0leftwards harpoon with barb upwards (left vector)
&lhard;
&leftharpoondown;
&DownLeftVector;
U+21BDHTML 5.0leftwards harpoon with barb downwards (down left vector)
&uharr;
&upharpoonright;
&RightUpVector;
U+21BEHTML 5.0upwards harpoon with barb rightwards (right up vector)
&uharl;
&upharpoonleft;
&LeftUpVector;
U+21BFHTML 5.0upwards harpoon with barb leftwards (left up vector)
&rharu;
&RightVector;
&rightharpoonup;
U+21C0HTML 5.0rightwards harpoon with barb upwards (right vector)
&rhard;
&rightharpoondown;
&DownRightVector;
U+21C1HTML 5.0rightwards harpoon with barb downwards (down right vector)
&dharr;
&RightDownVector;
&downharpoonright;
U+21C2HTML 5.0downwards harpoon with barb rightwards (right down vector)
&dharl;
&LeftDownVector;
&downharpoonleft;
U+21C3HTML 5.0downwards harpoon with barb leftwards (left down vector)
&rlarr;
&rightleftarrows;
&RightArrowLeftArrow;
U+21C4HTML 5.0rightwards arrow over leftwards arrow
&udarr;
&UpArrowDownArrow;
U+21C5HTML 5.0upwards arrow leftwards of downwards arrow
&lrarr;
&leftrightarrows;
&LeftArrowRightArrow;
U+21C6HTML 5.0leftwards arrow over rightwards arrow
&llarr;
&leftleftarrows;
U+21C7HTML 5.0leftwards paired arrows
&uuarr;
&upuparrows;
U+21C8HTML 5.0upwards paired arrows
&rrarr;
&rightrightarrows;
U+21C9HTML 5.0rightwards paired arrows
&ddarr;
&downdownarrows;
U+21CAHTML 5.0downwards paired arrows
&lrhar;
&ReverseEquilibrium;
&leftrightharpoons;
U+21CBHTML 5.0leftwards harpoon over rightwards harpoon (Reverse Equilibrium)
&rlhar;
&rightleftharpoons;
&Equilibrium;
U+21CCHTML 5.0rightwards harpoon over leftwards harpoon (Equilibrium)
&nlArr;
&nLeftarrow;
U+21CDHTML 5.0leftwards double arrow with stroke (not leftwards double arrow)
&nhArr;
&nLeftrightarrow;
U+21CEHTML 5.0left right double arrow with stroke (not horizontal double arrow, not left right double arrow)
&nrArr;
&nRightarrow;
U+21CFHTML 5.0rightwards double arrow with stroke (not rightwards double arrow)
&lArr;
&Leftarrow;
&DoubleLeftArrow;
U+21D0
  • HTML 4.0
  • HTML 5.0
  • HTML 5.0
HTMLsymbolISOtechleftwards double arrow[w]
&uArr;
&Uparrow;
&DoubleUpArrow;
U+21D1
  • HTML 4.0
  • HTML 5.0
  • HTML 5.0
HTMLsymbolISOamsaupwards double arrow
&rArr;
&Rightarrow;
&Implies;
&DoubleRightArrow;
U+21D2
  • HTML 4.0
  • HTML 5.0
  • HTML 5.0
  • HTML 5.0
HTMLsymbolISOnumrightwards double arrow (implies)[x]
&dArr;
&Downarrow;
&DoubleDownArrow;
U+21D3
  • HTML 4.0
  • HTML 5.0
  • HTML 5.0
HTMLsymbolISOamsadownwards double arrow
&hArr;
&Leftrightarrow;
&DoubleLeftRightArrow;
&iff;
U+21D4
  • HTML 4.0
  • HTML 5.0
  • HTML 5.0
  • HTML 5.0
HTMLsymbolISOamsaleft right double arrow (iff)
&vArr;
&Updownarrow;
&DoubleUpDownArrow;
U+21D5HTML 5.0up down double arrow
&nwArr;U+21D6HTML 5.0north west double arrow
&neArr;U+21D7HTML 5.0north east double arrow
&seArr;U+21D8HTML 5.0south east double arrow
&swArr;U+21D9HTML 5.0south west double arrow
&lAarr;
&Lleftarrow;
U+21DAHTML 5.0leftwards triple arrow
&rAarr;
&Rrightarrow;
U+21DBHTML 5.0rightwards triple arrow
&zigrarr;U+21DDHTML 5.0rightwards squiggle arrow (rightwards zigzag arrow)
&larrb;
&LeftArrowBar;
U+21E4HTML 5.0leftwards arrow to bar
&rarrb;
&RightArrowBar;
U+21E5HTML 5.0rightwards arrow to bar
&duarr;
&DownArrowUpArrow;
U+21F5HTML 5.0downwards arrow leftwards of upwards arrow
&loarr;U+21FDHTML 5.0leftwards open-headed arrow
&roarr;U+21FEHTML 5.0rightwards open-headed arrow
&hoarr;U+21FFHTML 5.0left right open-headed arrow (horizontal open-headed arrow)
&forall;
&ForAll;
U+2200
  • HTML 4.0
  • HTML 5.0
HTMLsymbolISOtechfor all
&comp;
&complement;
U+2201HTML 5.0complement
&part;
&PartialD;
U+2202
  • HTML 4.0
  • HTML 5.0
HTMLsymbolISOtechpartial differential
&npart;∂̸U+2202 U+0338HTML 5.0partial differential, combining long solidus overlay
&exist;
&Exists;
U+2203
  • HTML 4.0
  • HTML 5.0
HTMLsymbolISOtechthere exists
&nexist;
&NotExists;
&nexists;
U+2204HTML 5.0there does not exist
&empty;
&emptyset;
&emptyv;
&varnothing;
U+2205
  • HTML 4.0
  • HTML 5.0
  • HTML 5.0
  • HTML 5.0
HTMLsymbolISOamsoempty set (null set, empty variable, variable nothing); see also U+8960, ⌀
&nabla;
&Del;
U+2207
  • HTML 4.0
  • HTML 5.0
HTMLsymbolISOtechnabla (del, vector differential operator)
&isin;
&isinv;
&Element;
&in;
U+2208
  • HTML 4.0
  • HTML 5.0
  • HTML 5.0
  • HTML 5.0
HTMLsymbolISOtechelement of (in set)
&notin;
&NotElement;
&notinva;
U+2209
  • HTML 4.0
  • HTML 5.0
  • HTML 5.0
HTMLsymbolISOtechnot an element of (not in set)
&niv;
&ReverseElement;
&ni;
&SuchThat;
U+220B
  • HTML 4.0
  • HTML 5.0
  • HTML 5.0
  • HTML 5.0
HTMLsymbolISOtechcontains as member (Reversed element, Reversed in set, such that)
&notni;
&notniva;
&NotReverseElement;
U+220CHTML 5.0does not contain as member (Not reversed element, nor reversed in set)
&prod;
&Product;
U+220F
  • HTML 4.0
  • HTML 5.0
HTMLsymbolISOamsbn-ary product (product sign)[y]
&coprod;
&Coproduct;
U+2210HTML 5.0n-ary coproduct (coproduct sign)
&sum;
&Sum;
U+2211
  • HTML 4.0
  • HTML 5.0
HTMLsymbolISOamsbn-ary summation[z]
&minus;U+2212HTML 4.0HTMLsymbolISOtechminus sign
&mnplus;
&mp;
&MinusPlus;
U+2213HTML 5.0minus-or-plus sign (minus–plus sign)
&plusdo;
&dotplus;
U+2214HTML 5.0dot plus (dot plus sign, plus dot sign)
&setmn;
&setminus;
&Backslash;
&ssetmn;
&smallsetminus;
U+2216HTML 5.0set minus
&lowast;U+2217HTML 4.0HTMLsymbolISOtechasterisk operator
&compfn;
&SmallCircle;
U+2218HTML 5.0ring operator (composition function, small circle)
&radic;
&Sqrt;
U+221A
  • HTML 4.0
  • HTML 5.0
HTMLsymbolISOtechsquare root (radical sign)
&prop;
&propto;
&Proportional;
&vprop;
&varpropto;
U+221D
  • HTML 4.0
  • HTML 5.0
  • HTML 5.0
  • HTML 5.0
  • HTML 5.0
HTMLsymbolISOtechproportional to
&infin;U+221EHTML 4.0HTMLsymbolISOtechinfinity
&angrt;U+221FHTML 5.0right angle
&ang;
&angle;
U+2220
  • HTML 4.0
  • HTML 5.0
HTMLsymbolISOamsoangle
&nang;∠⃒U+2220 U+20D2HTML 5.0angle, combining long vertical line overlay
&angmsd;
&measuredangle;
U+2221HTML 5.0measured angle
&angsph;U+2222HTML 5.0spherical angle
&mid;
&VerticalBar;
&smid;
&shortmid;
U+2223HTML 5.0divides (vertical bar, mid, short mid)
&nmid;
&NotVerticalBar;
&nsmid;
&nshortmid;
U+2224HTML 5.0does not divide (not vertical bar, not mid, not short mid)
&par;
&parallel;
&DoubleVerticalBar;
&spar;
&shortparallel;
U+2225HTML 5.0parallel to (double vertical bar)
&npar;
&nparallel;
&NotDoubleVerticalBar;
&nspar;
&nshortparallel;
U+2226HTML 5.0not parallel to (not double vertical bar)
&and;
&wedge;
U+2227
  • HTML 4.0
  • HTML 5.0
HTMLsymbolISOtechlogical and (wedge)
&or;
&vee;
U+2228
  • HTML 4.0
  • HTML 5.0
HTMLsymbolISOtechlogical or (vee)
&cap;U+2229HTML 4.0HTMLsymbolISOtechintersection (cap)
&caps;∩︀U+2229 U+FE00HTML 5.0intersection, variation selector-1
&cup;U+222AHTML 4.0HTMLsymbolISOtechunion (cup)
&cups;∪︀U+222A U+FE00HTML 5.0union, variation selector-1
&int;
&Integral;
U+222B
  • HTML 4.0
  • HTML 5.0
HTMLsymbolISOtechintegral
&Int;U+222CHTML 5.0double integral
&tint;
&iiint;
U+222DHTML 5.0triple integral
&conint;
&oint;
&ContourIntegral;
U+222EHTML 5.0contour integral (circle integral)
&Conint;
&DoubleContourIntegral;
U+222FHTML 5.0surface integral (double contour integral)
&Cconint;U+2230HTML 5.0volume integral
&cwint;U+2231HTML 5.0clockwise integral
&cwconint;
&ClockwiseContourIntegral;
U+2232HTML 5.0clockwise contour integral
&awconint;
&CounterClockwiseContourIntegral;
U+2233HTML 5.0anticlockwise contour integral
&there4;
&therefore;
&Therefore;
U+2234
  • HTML 4.0
  • HTML 5.0
  • HTML 5.0
HTMLsymbolISOtechtherefore
&becaus;
&because;
&Because;
U+2235HTML 5.0because
&ratio;U+2236HTML 5.0ratio
&Colon;
&Proportion;
U+2237HTML 5.0proportion
&minusd;
&dotminus;
U+2238HTML 5.0dot minus
&mDDot;U+223AHTML 5.0geometric proportion
&homtht;U+223BHTML 5.0homothetic
&sim;
&Tilde;
&thksim;
&thicksim;
U+223C
  • HTML 4.0
  • HTML 5.0
  • HTML 5.0
  • HTML 5.0
HTMLsymbolISOtechtilde operator (varies with, similar to, thick tilde)[aa]
&nvsim;∼⃒U+223C U+20D2HTML 5.0tilde operator, combining long vertical line overlay
&bsim;
&backsim;
U+223DHTML 5.0reversed tilde (back similar to)
&race;∽̱U+223D U+0331HTML 5.0reversed tilde, combining macron below
&ac;
&mstpos;
U+223EHTML 5.0inverted lazy s
&acE;∾̳U+223E U+0333HTML 5.0inverted lazy s, combining double low line
&acd;U+223FHTML 5.0sine wave
&wreath;
&VerticalTilde;
&wr;
U+2240HTML 5.0wreath product (vertical tilde)
&nsim;
&NotTilde;
U+2241HTML 5.0not tilde (is not similar to)
&esim;
&EqualTilde;
&eqsim;
U+2242HTML 5.0minus tilde (equal tilde)
&nesim;
&NotEqualTilde;
≂̸U+2242 U+0338HTML 5.0minus tilde, combining long solidus overlay
&sime;
&TildeEqual;
&simeq;
U+2243HTML 5.0asymptotically equal to (tilde equal)
&nsime;
&nsimeq;
&NotTildeEqual;
U+2244HTML 5.0not asymptotically equal to (not tilde equal)
&cong;
&TildeFullEqual;
U+2245
  • HTML 4.0
  • HTML 5.0
HTMLsymbolISOtechapproximately equal to (congruent to)
&simne;U+2246HTML 5.0approximately but not actually equal to (similar but not equal to)
&ncong;
&NotTildeFullEqual;
U+2247HTML 5.0neither approximately nor actually equal to (not congruent to)
&asymp;
&ap;
&TildeTilde;
&approx;
&thkap;
&thickapprox;
U+2248
  • HTML 4.0
  • HTML 5.0
  • HTML 5.0
  • HTML 5.0
  • HTML 5.0
  • HTML 5.0
HTMLsymbolISOamsralmost equal to (asymptotic to, approximately, tilde over tilde)
&nap;
&NotTildeTilde;
&napprox;
U+2249HTML 5.0not almost equal to (not approximately, not tilde over tilde)
&ape;
&approxeq;
U+224AHTML 5.0almost equal or equal to (approximately equal to)
&apid;U+224BHTML 5.0triple tilde
&napid;≋̸U+224B U+0338HTML 5.0triple tilde, combining long solidus overlay
&bcong;
&backcong;
U+224CHTML 5.0all equal to (backwards congruent to)
&asympeq;
&CupCap;
U+224DHTML 5.0equivalent to (asymptotically equivalent to, Cup and Cap)
&nvap;≍⃒U+224D U+20D2HTML 5.0equivalent to, combining long vertical line overlay
&bump;
&HumpDownHump;
&Bumpeq;
U+224EHTML 5.0geometrically equivalent to (bump equals, hump and down hump equals)
&nbump;
&NotHumpDownHump;
≎̸U+224E U+0338HTML 5.0geometrically equivalent to, combining long solidus overlay
&bumpe;
&HumpEqual;
&bumpeq;
U+224FHTML 5.0difference between (hump equals)
&nbumpe;
&NotHumpEqual;
≏̸U+224F U+0338HTML 5.0difference between, combining long solidus overlay
&esdot;
&DotEqual;
&doteq;
U+2250HTML 5.0approaches the limit (dot equal)
&nedot;≐̸U+2250 U+0338HTML 5.0approaches the limit, combining long solidus overlay
&eDot;
&doteqdot;
U+2251HTML 5.0geometrically equal to (dot equal dot)
&efDot;
&fallingdotseq;
U+2252HTML 5.0approximately equal to or the image of (falling dot sequence)
&erDot;
&risingdotseq;
U+2253HTML 5.0image of or approximately equal to (rising dot sequence)
&colone;
&coloneq;
&Assign;
U+2254HTML 5.0colon equals (Assignment (computer science))
&ecolon;
&eqcolon;
U+2255HTML 5.0equals colon
&ecir;
&eqcirc;
U+2256HTML 5.0ring in equal to (equals circle)
&cire;
&circeq;
U+2257HTML 5.0ring equal to (circle equals)
&wedgeq;U+2259HTML 5.0estimates (wedge equals)
&veeeq;U+225AHTML 5.0equiangular to (vee equals)
&trie;
&triangleq;
U+225CHTML 5.0delta equal to (triangle equals)
&equest;
&questeq;
U+225FHTML 5.0questioned equal to
&ne;
&NotEqual;
U+2260
  • HTML 4.0
  • HTML 5.0
HTMLsymbolISOtechnot equal to
&equiv;
&Congruent;
U+2261
  • HTML 4.0
  • HTML 5.0
HTMLsymbolISOtechidentical to; sometimes used for 'equivalent to' or 'congruent'
&bnequiv;≡⃥U+2261 U+20E5HTML 5.0identical to, combining reverse solidus overlay
&nequiv;
&NotCongruent;
U+2262HTML 5.0not identical to; sometimes used for 'not congruent'
&le;
&leq;
U+2264
  • HTML 4.0
  • HTML 5.0
HTMLsymbolISOtechless-than or equal to
&nvle;≤⃒U+2264 U+20D2HTML 5.0less-than or equal to, combining long vertical line overlay
&ge;
&GreaterEqual;
&geq;
U+2265
  • HTML 4.0
  • HTML 5.0
  • HTML 5.0
HTMLsymbolISOtechgreater-than or equal to
&nvge;≥⃒U+2265 U+20D2HTML 5.0greater-than or equal to, combining long vertical line overlay
&lE;
&LessFullEqual;
&leqq;
U+2266HTML 5.0less-than over equal to
&nlE;
&nleqq;
≦̸U+2266 U+0338HTML 5.0less-than over equal to, combining long solidus overlay
&gE;
&GreaterFullEqual;
&geqq;
U+2267HTML 5.0greater-than over equal to
&ngE;
&ngeqq;
&NotGreaterFullEqual;
≧̸U+2267 U+0338HTML 5.0greater-than over equal to, combining long solidus overlay
&lnE;
&lneqq;
U+2268HTML 5.0less-than but not equal to
&lvertneqq;
&lvnE;
≨︀U+2268 U+FE00HTML 5.0less-than but not equal to, variation selector-1
&gnE;
&gneqq;
U+2269HTML 5.0greater-than but not equal to
&gvertneqq;
&gvnE;
≩︀U+2269 U+FE00HTML 5.0greater-than but not equal to, variation selector-1
&Lt;
&NestedLessLess;
&ll;
U+226AHTML 5.0much less-than
&nLtv;
&NotLessLess;
≪̸U+226A U+0338HTML 5.0much less-than, combining long solidus overlay
&nLt;≪⃒U+226A U+20D2HTML 5.0much less-than, combining long vertical line overlay
&Gt;
&NestedGreaterGreater;
&gg;
U+226BHTML 5.0much greater-than
&nGtv;
&NotGreaterGreater;
≫̸U+226B U+0338HTML 5.0much greater-than, combining long solidus overlay
&nGt;≫⃒U+226B U+20D2HTML 5.0much greater-than, combining long vertical line overlay
&twixt;
&between;
U+226CHTML 5.0between
&NotCupCap;U+226DHTML 5.0not equivalent to (not cup cap)
&nlt;
&NotLess;
&nless;
U+226EHTML 5.0not less-than
&ngt;
&NotGreater;
&ngtr;
U+226FHTML 5.0not greater-than
&nle;
&NotLessEqual;
&nleq;
U+2270HTML 5.0neither less-than nor equal to
&nge;
&NotGreaterEqual;
&ngeq;
U+2271HTML 5.0neither greater-than nor equal to
&lsim;
&LessTilde;
&lesssim;
U+2272HTML 5.0less-than or equivalent to (less-than tilde, less-than or similar to)
&gsim;
&gtrsim;
&GreaterTilde;
U+2273HTML 5.0greater-than or equivalent to (greater-than tilde, greater-than or similar to)
&nlsim;
&NotLessTilde;
U+2274HTML 5.0neither less-than nor equivalent to (not less-than tilde, neither less-than nor similar to)
&ngsim;
&NotGreaterTilde;
U+2275HTML 5.0neither greater-than nor equivalent to (not greater-than tilde, neither greater-than nor similar to)
&lg;
&lessgtr;
&LessGreater;
U+2276HTML 5.0less-than or greater-than
&gl;
&gtrless;
&GreaterLess;
U+2277HTML 5.0greater-than or less-than
&ntlg;
&NotLessGreater;
U+2278HTML 5.0neither less-than nor greater-than
&ntgl;
&NotGreaterLess;
U+2279HTML 5.0neither greater-than nor less-than
&pr;
&Precedes;
&prec;
U+227AHTML 5.0precedes
&sc;
&Succeeds;
&succ;
U+227BHTML 5.0succeeds
&prcue;
&PrecedesSlantEqual;
&preccurlyeq;
U+227CHTML 5.0precedes or equal to (precedes curly equals, precedes slant equals)
&sccue;
&SucceedsSlantEqual;
&succcurlyeq;
U+227DHTML 5.0succeeds or equal to (succeeds curly equals, succeeds slant equals)
&prsim;
&precsim;
&PrecedesTilde;
U+227EHTML 5.0precedes or equivalent to (precedes or similar to, precedes tilde)
&scsim;
&succsim;
&SucceedsTilde;
U+227FHTML 5.0succeeds or equivalent to (succeeds or similar to, succeeds tilde)
&NotSucceedsTilde;≿̸U+227F U+0338HTML 5.0succeeds or equivalent to, combining long solidus overlay
&npr;
&nprec;
&NotPrecedes;
U+2280HTML 5.0does not precede
&nsc;
&nsucc;
&NotSucceeds;
U+2281HTML 5.0does not succeed
&sub;
&subset;
U+2282
  • HTML 4.0
  • HTML 5.0
HTMLsymbolISOtechsubset of
&NotSubset;
&nsubset;
&vnsub;
⊂⃒U+2282 U+20D2HTML 5.0subset of, combining long vertical line overlay
&sup;
&supset;
&Superset;
U+2283
  • HTML 4.0
  • HTML 5.0
  • HTML 5.0
HTMLsymbolISOtechsuperset of
&NotSuperset;
&nsupset;
&vnsup;
⊃⃒U+2283 U+20D2HTML 5.0superset of, combining long vertical line overlay
&nsub;U+2284HTML 4.0HTMLsymbolISOamsnnot a subset of
&nsup;U+2285HTML 4.0HTMLsymbolISOamsnnot a superset of[ab]
&sube;
&SubsetEqual;
&subseteq;
U+2286
  • HTML 4.0
  • HTML 5.0
  • HTML 5.0
HTMLsymbolISOtechsubset of or equal to
&supe;
&supseteq;
&SupersetEqual;
U+2287
  • HTML 4.0
  • HTML 5.0
  • HTML 5.0
HTMLsymbolISOtechsuperset of or equal to
&nsube;
&nsubseteq;
&NotSubsetEqual;
U+2288HTML 5.0neither a subset of nor equal to
&nsupe;
&nsupseteq;
&NotSupersetEqual;
U+2289HTML 5.0neither a superset of nor equal to
&subne;
&subsetneq;
U+228AHTML 5.0subset of with not equal to
&varsubsetneq;
&vsubne;
⊊︀U+228A U+FE00HTML 5.0subset of with not equal to, variation selector-1
&supne;
&supsetneq;
U+228BHTML 5.0superset of with not equal to
&varsupsetneq;
&vsupne;
⊋︀U+228B U+FE00HTML 5.0superset of with not equal to, variation selector-1
&cupdot;U+228DHTML 5.0multiset multiplication (cup dot)
&uplus;
&UnionPlus;
U+228EHTML 5.0multiset union (union plus)
&sqsub;
&SquareSubset;
&sqsubset;
U+228FHTML 5.0square image of (square subset)
&NotSquareSubset;⊏̸U+228F U+0338HTML 5.0square image of, combining long solidus overlay
&sqsup;
&SquareSuperset;
&sqsupset;
U+2290HTML 5.0square original of (square superset)
&NotSquareSuperset;⊐̸U+2290 U+0338HTML 5.0square original of, combining long solidus overlay
&sqsube;
&SquareSubsetEqual;
&sqsubseteq;
U+2291HTML 5.0square image of or equal to (square subset equal)
&sqsupe;
&SquareSupersetEqual;
&sqsupseteq;
U+2292HTML 5.0square original of or equal to (square superset equal)
&sqcap;
&SquareIntersection;
U+2293HTML 5.0square cap (square intersection)
&sqcaps;⊓︀U+2293 U+FE00HTML 5.0square cap, variation selector-1
&sqcup;
&SquareUnion;
U+2294HTML 5.0square cup (square union)
&sqcups;⊔︀U+2294 U+FE00HTML 5.0square cup, variation selector-1
&oplus;
&CirclePlus;
U+2295
  • HTML 4.0
  • HTML 5.0
HTMLsymbolISOamsbcircled plus (direct sum)
&ominus;
&CircleMinus;
U+2296HTML 5.0circled minus
&otimes;
&CircleTimes;
U+2297
  • HTML 4.0
  • HTML 5.0
HTMLsymbolISOamsbcircled times (vector product)
&osol;U+2298HTML 5.0circled division slash (circled solidus)
&odot;
&CircleDot;
U+2299HTML 5.0circled dot operator (circled dot)
&ocir;
&circledcirc;
U+229AHTML 5.0circled ring operator (circled circle)
&oast;
&circledast;
U+229BHTML 5.0circled asterisk operator
&odash;
&circleddash;
U+229DHTML 5.0circled dash
&plusb;
&boxplus;
U+229EHTML 5.0squared plus (boxed plus)
&minusb;
&boxminus;
U+229FHTML 5.0squared minus (boxed minus)
&timesb;
&boxtimes;
U+22A0HTML 5.0squared times (boxed times)
&sdotb;
&dotsquare;
U+22A1HTML 5.0squared dot operator (boxed small dot)
&vdash;
&RightTee;
U+22A2HTML 5.0right tack (proves, right tee)
&dashv;
&LeftTee;
U+22A3HTML 5.0left tack (left tee)
&top;
&DownTee;
U+22A4HTML 5.0down tack (top tack, down tee)
&bottom;
&bot;
&perp;
&UpTee;
U+22A5
  • HTML 4.0
  • HTML 5.0
  • HTML 5.0
  • HTML 5.0
HTMLsymbolISOtechup tack (orthogonal to perpendicular, bottom tack, up tee)[ac]
&models;U+22A7HTML 5.0models
&vDash;
&DoubleRightTee;
U+22A8HTML 5.0true (double right tee)
&Vdash;U+22A9HTML 5.0forces
&Vvdash;U+22AAHTML 5.0triple vertical bar right turnstile
&VDash;U+22ABHTML 5.0double vertical bar double right turnstile
&nvdash;U+22ACHTML 5.0does not prove
&nvDash;U+22ADHTML 5.0not true
&nVdash;U+22AEHTML 5.0does not force
&nVDash;U+22AFHTML 5.0negated double vertical bar double right turnstile
&prurel;U+22B0HTML 5.0precedes under relation
&vltri;
&vartriangleleft;
&LeftTriangle;
U+22B2HTML 5.0normal subgroup of (left triangle)
&vrtri;
&vartriangleright;
&RightTriangle;
U+22B3HTML 5.0contains as normal subgroup (right triangle)
&ltrie;
&trianglelefteq;
&LeftTriangleEqual;
U+22B4HTML 5.0normal subgroup of or equal to (left triangle equal)
&nvltrie;⊴⃒U+22B4 U+20D2HTML 5.0normal subgroup of or equal to, combining long vertical line overlay
&rtrie;
&trianglerighteq;
&RightTriangleEqual;
U+22B5HTML 5.0contains as normal subgroup or equal to (right triangle equal)
&nvrtrie;⊵⃒U+22B5 U+20D2HTML 5.0contains as normal subgroup or equal to, combining long vertical line overlay
&origof;U+22B6HTML 5.0original of
&imof;U+22B7HTML 5.0image of
&mumap;
&multimap;
U+22B8HTML 5.0multimap
&hercon;U+22B9HTML 5.0Hermitian conjugate matrix
&intcal;
&intercal;
U+22BAHTML 5.0intercalate
&veebar;U+22BBHTML 5.0xor
&barvee;U+22BDHTML 5.0nor
&angrtvb;U+22BEHTML 5.0right angle with arc
&lrtri;U+22BFHTML 5.0right triangle (lower right triangle)
&xwedge;
&Wedge;
&bigwedge;
U+22C0HTML 5.0n-ary logical and (x wedge, big wedge)
&xvee;
&Vee;
&bigvee;
U+22C1HTML 5.0n-ary logical or (x vee, big vee)
&xcap;
&Intersection;
&bigcap;
U+22C2HTML 5.0n-ary intersection (x cap, big cap)
&xcup;
&Union;
&bigcup;
U+22C3HTML 5.0n-ary union (x cup, big cup)
&diam;
&diamond;
&Diamond;
U+22C4HTML 5.0diamond operator
&sdot;U+22C5HTML 4.0HTMLsymbolISOamsbdot operator (small dot)[ad]
&sstarf;
&Star;
U+22C6HTML 5.0star operator
&divonx;
&divideontimes;
U+22C7HTML 5.0division times
&bowtie;U+22C8HTML 5.0bowtie
&ltimes;U+22C9HTML 5.0left normal factor semidirect product (left times)
&rtimes;U+22CAHTML 5.0right normal factor semidirect product (right times)
&lthree;
&leftthreetimes;
U+22CBHTML 5.0left semidirect product (left three times)
&rthree;
&rightthreetimes;
U+22CCHTML 5.0right semidirect product (right three times)
&bsime;
&backsimeq;
U+22CDHTML 5.0reversed tilde equals (back similar or equal to)
&cuvee;
&curlyvee;
U+22CEHTML 5.0curly logical or (curly vee)
&cuwed;
&curlywedge;
U+22CFHTML 5.0curly logical and (curly wedge)
&Sub;
&Subset;
U+22D0HTML 5.0double subset
&Sup;
&Supset;
U+22D1HTML 5.0double superset
&Cap;U+22D2HTML 5.0double intersection (double cap)
&Cup;U+22D3HTML 5.0double union (double cup)
&fork;
&pitchfork;
U+22D4HTML 5.0pitchfork (Transversality theorem)
&epar;U+22D5HTML 5.0equal and parallel to
&ltdot;
&lessdot;
U+22D6HTML 5.0less-than with dot
&gtdot;
&gtrdot;
U+22D7HTML 5.0greater-than with dot
&Ll;U+22D8HTML 5.0very much less-than[ae]
&nLl;⋘̸U+22D8 U+0338HTML 5.0very much less-than, combining long solidus overlay
&Gg;
&ggg;
U+22D9HTML 5.0very much greater-than
&nGg;⋙̸U+22D9 U+0338HTML 5.0very much greater-than, combining long solidus overlay
&leg;
&LessEqualGreater;
&lesseqgtr;
U+22DAHTML 5.0less-than equal to or greater-than
&lesg;⋚︀U+22DA U+FE00HTML 5.0less-than equal to or greater-than, variation selector-1
&gel;
&gtreqless;
&GreaterEqualLess;
U+22DBHTML 5.0greater-than equal to or less-than
&gesl;⋛︀U+22DB U+FE00HTML 5.0greater-than equal to or less-than, variation selector-1
&cuepr;
&curlyeqprec;
U+22DEHTML 5.0equal to or precedes (curly equal to or precedes)
&cuesc;
&curlyeqsucc;
U+22DFHTML 5.0equal to or succeeds (curly equal to or succeeds)
&nprcue;
&NotPrecedesSlantEqual;
U+22E0HTML 5.0does not precede or equal (not precedes curly equal, not precedes slant equal)
&nsccue;
&NotSucceedsSlantEqual;
U+22E1HTML 5.0does not succeed or equal (not succeeds curly equal, not succeeds slant equal)
&nsqsube;
&NotSquareSubsetEqual;
U+22E2HTML 5.0not square image of or equal to (not square subset equal)
&nsqsupe;
&NotSquareSupersetEqual;
U+22E3HTML 5.0not square original of or equal to (not square superset equal)
&lnsim;U+22E6HTML 5.0less-than but not equivalent to (less-than but not similar to)
&gnsim;U+22E7HTML 5.0greater-than but not equivalent to (greater-than but not similar to)
&prnsim;
&precnsim;
U+22E8HTML 5.0precedes but not equivalent to (precedes but not similar to)
&scnsim;
&succnsim;
U+22E9HTML 5.0succeeds but not equivalent to (succeeds but not similar to)
&nltri;
&ntriangleleft;
&NotLeftTriangle;
U+22EAHTML 5.0not normal subgroup of (not left triangle)
&nrtri;
&ntriangleright;
&NotRightTriangle;
U+22EBHTML 5.0does not contain as normal subgroup (not right triangle)
&nltrie;
&ntrianglelefteq;
&NotLeftTriangleEqual;
U+22ECHTML 5.0not normal subgroup of or equal to (not left triangle equal)
&nrtrie;
&ntrianglerighteq;
&NotRightTriangleEqual;
U+22EDHTML 5.0does not contain as normal subgroup or equal (not right triangle equal)
&vellip;U+22EEHTML 5.0vertical ellipsis
&ctdot;U+22EFHTML 5.0midline horizontal ellipsis (centered triple dot)
&utdot;U+22F0HTML 5.0up right diagonal ellipsis (upward triple dot)
&dtdot;U+22F1HTML 5.0down right diagonal ellipsis (downward triple dot)
&disin;U+22F2HTML 5.0element of with long horizontal stroke
&isinsv;U+22F3HTML 5.0element of with vertical bar at end of horizontal stroke
&isins;U+22F4HTML 5.0small element of with vertical bar at end of horizontal stroke
&isindot;U+22F5HTML 5.0element of with dot above
&notindot;⋵̸U+22F5 U+0338HTML 5.0element of with dot above, combining long solidus overlay
&notinvc;U+22F6HTML 5.0element of with overbar
&notinvb;U+22F7HTML 5.0small element of with overbar
&isinE;U+22F9HTML 5.0element of with two horizontal strokes
&notinE;⋹̸U+22F9 U+0338HTML 5.0element of with two horizontal strokes, combining long solidus overlay
&nisd;U+22FAHTML 5.0contains with long horizontal stroke
&xnis;U+22FBHTML 5.0contains with vertical bar at end of horizontal stroke
&nis;U+22FCHTML 5.0small contains with vertical bar at end of horizontal stroke
&notnivc;U+22FDHTML 5.0contains with overbar
&notnivb;U+22FEHTML 5.0small contains with overbar
&barwed;
&barwedge;
U+2305HTML 5.0projective
&Barwed;
&doublebarwedge;
U+2306HTML 5.0perspective
&lceil;
&LeftCeiling;
U+2308
  • HTML 4.0
  • HTML 5.0
HTMLsymbolISOamscleft ceiling (APL upstile)
&rceil;
&RightCeiling;
U+2309
  • HTML 4.0
  • HTML 5.0
HTMLsymbolISOamscright ceiling
&lfloor;
&LeftFloor;
U+230A
  • HTML 4.0
  • HTML 5.0
HTMLsymbolISOamscleft floor (APL downstile)
&rfloor;
&RightFloor;
U+230B
  • HTML 4.0
  • HTML 5.0
HTMLsymbolISOamscright floor
&drcrop;U+230CHTML 5.0bottom right crop (down right crop)
&dlcrop;U+230DHTML 5.0bottom left crop (down left crop)
&urcrop;U+230EHTML 5.0top right crop (up right crop)
&ulcrop;U+230FHTML 5.0top left crop (up left crop)
&bnot;U+2310HTML 5.0reversed not sign (backwards not sign)
&profline;U+2312HTML 5.0arc
&profsurf;U+2313HTML 5.0segment
&telrec;U+2315HTML 5.0telephone recorder
&target;U+2316HTML 5.0position indicator (target)
&ulcorn;
&ulcorner;
U+231CHTML 5.0top left corner (up left corner)
&urcorn;
&urcorner;
U+231DHTML 5.0top right corner (up right corner)
&dlcorn;
&llcorner;
U+231EHTML 5.0bottom left corner (down left corner)
&drcorn;
&lrcorner;
U+231FHTML 5.0bottom right corner (down right corner)
&frown;
&sfrown;
U+2322HTML 5.0frown
&smile;
&ssmile;
U+2323HTML 5.0smile
&cylcty;U+232DHTML 5.0cylindricity
&profalar;U+232EHTML 5.0all around-profile
&topbot;U+2336HTML 5.0APL functional symbol I-beam (top bottom)
&ovbar;U+233DHTML 5.0APL functional symbol circle stile (circle vertical bar)
&solbar;U+233FHTML 5.0APL functional symbol slash bar (solidus bar)
&angzarr;U+237CHTML 5.0right angle with downwards zigzag arrow
&lmoust;
&lmoustache;
U+23B0HTML 5.0upper left or lower right curly bracket section (left moustache)
&rmoust;
&rmoustache;
U+23B1HTML 5.0upper right or lower left curly bracket section (right moustache)
&tbrk;
&OverBracket;
U+23B4HTML 5.0top square bracket (over bracket)
&bbrk;
&UnderBracket;
U+23B5HTML 5.0bottom square bracket (under bracket)
&bbrktbrk;U+23B6HTML 5.0bottom square bracket over top square bracket
&OverParenthesis;U+23DCHTML 5.0top parenthesis (over parenthesis)
&UnderParenthesis;U+23DDHTML 5.0bottom parenthesis (under parenthesis)
&OverBrace;U+23DEHTML 5.0top curly bracket (over brace)
&UnderBrace;U+23DFHTML 5.0bottom curly bracket (under brace)
&trpezium;U+23E2HTML 5.0white trapezium
&elinters;U+23E7HTML 5.0electrical intersection
&blank;U+2423HTML 5.0open box (blank)
&oS;
&circledS;
U+24C8HTML 5.0circled Latin capital letter S
&boxh;
&HorizontalLine;
U+2500HTML 5.0box drawings light horizontal (horizontal line)
&boxv;U+2502HTML 5.0box drawings light vertical
&boxdr;U+250CHTML 5.0box drawings light down and right
&boxdl;U+2510HTML 5.0box drawings light down and left
&boxur;U+2514HTML 5.0box drawings light up and right
&boxul;U+2518HTML 5.0box drawings light up and left
&boxvr;U+251CHTML 5.0box drawings light vertical and right
&boxvl;U+2524HTML 5.0box drawings light vertical and left
&boxhd;U+252CHTML 5.0box drawings light down and horizontal (horizontal and down)
&boxhu;U+2534HTML 5.0box drawings light up and horizontal (horizontal and up)
&boxvh;U+253CHTML 5.0box drawings light vertical and horizontal
&boxH;U+2550HTML 5.0box drawings double horizontal
&boxV;U+2551HTML 5.0box drawings double vertical
&boxdR;U+2552HTML 5.0box drawings down single and right double
&boxDr;U+2553HTML 5.0box drawings down double and right single
&boxDR;U+2554HTML 5.0box drawings double down and right
&boxdL;U+2555HTML 5.0box drawings down single and left double
&boxDl;U+2556HTML 5.0box drawings down double and left single
&boxDL;U+2557HTML 5.0box drawings double down and left
&boxuR;U+2558HTML 5.0box drawings up single and right double
&boxUr;U+2559HTML 5.0box drawings up double and right single
&boxUR;U+255AHTML 5.0box drawings double up and right
&boxuL;U+255BHTML 5.0box drawings up single and left double
&boxUl;U+255CHTML 5.0box drawings up double and left single
&boxUL;U+255DHTML 5.0box drawings double up and left
&boxvR;U+255EHTML 5.0box drawings vertical single and right double
&boxVr;U+255FHTML 5.0box drawings vertical double and right single
&boxVR;U+2560HTML 5.0box drawings double vertical and right
&boxvL;U+2561HTML 5.0box drawings vertical single and left double
&boxVl;U+2562HTML 5.0box drawings vertical double and left single
&boxVL;U+2563HTML 5.0box drawings double vertical and left
&boxHd;U+2564HTML 5.0box drawings down single and horizontal double (horizontal double and down single)
&boxhD;U+2565HTML 5.0box drawings down double and horizontal single (horizontal single and down double)
&boxHD;U+2566HTML 5.0box drawings double down and horizontal (horizontal and down)
&boxHu;U+2567HTML 5.0box drawings up single and horizontal double (horizontal double and up single)
&boxhU;U+2568HTML 5.0box drawings up double and horizontal single (horizontal single and up double)
&boxHU;U+2569HTML 5.0box drawings double up and horizontal (horizontal and up)
&boxvH;U+256AHTML 5.0box drawings vertical single and horizontal double
&boxVh;U+256BHTML 5.0box drawings vertical double and horizontal single
&boxVH;U+256CHTML 5.0box drawings double vertical and horizontal
&uhblk;U+2580HTML 5.0upper half block
&lhblk;U+2584HTML 5.0lower half block
&block;U+2588HTML 5.0full block
&blk14;U+2591HTML 5.0light shade (1/4 block)
&blk12;U+2592HTML 5.0medium shade (1/2 block)
&blk34;U+2593HTML 5.0dark shade (3/4 block)
&squ;
&square;
&Square;
U+25A1HTML 5.0white square
&squf;
&squarf;
&blacksquare;
&FilledVerySmallSquare;
U+25AAHTML 5.0black small square (filled very small square)
&EmptyVerySmallSquare;U+25ABHTML 5.0white small square (empty very small square)
&rect;U+25ADHTML 5.0white rectangle
&marker;U+25AEHTML 5.0black vertical rectangle (marker)
&fltns;U+25B1HTML 5.0white parallelogram
&xutri;
&bigtriangleup;
U+25B3HTML 5.0white up-pointing triangle (big up-pointing triangle)
&utrif;
&blacktriangle;
U+25B4HTML 5.0black up-pointing small triangle (black triangle, up-pointing triangle filled)
&utri;
&triangle;
U+25B5HTML 5.0white up-pointing small triangle (up-pointing triangle)
&rtrif;
&blacktriangleright;
U+25B8HTML 5.0black right-pointing small triangle (black right-pointing triangle, right-pointing triangle filled)
&rtri;
&triangleright;
U+25B9HTML 5.0white right-pointing small triangle (right-pointing triangle)
&xdtri;
&bigtriangledown;
U+25BDHTML 5.0white down-pointing triangle (big down-pointing triangle)
&dtrif;
&blacktriangledown;
U+25BEHTML 5.0black down-pointing small triangle (black down-pointing triangle, down-pointing triangle filled)
&dtri;
&triangledown;
U+25BFHTML 5.0white down-pointing small triangle (down-pointing triangle)
&ltrif;
&blacktriangleleft;
U+25C2HTML 5.0black left-pointing small triangle (black left-pointing triangle, left-pointing triangle filled)
&ltri;
&triangleleft;
U+25C3HTML 5.0white left-pointing small triangle (left-pointing triangle)
&loz;
&lozenge;
U+25CA
  • HTML 4.0
  • HTML 5.0
HTMLsymbolISOpublozenge
&cir;U+25CBHTML 5.0white circle (circle)
&tridot;U+25ECHTML 5.0white up-pointing triangle with dot (triangle dot)
&xcirc;
&bigcirc;
U+25EFHTML 5.0large circle (big circle)
&ultri;U+25F8HTML 5.0upper left triangle
&urtri;U+25F9HTML 5.0upper right triangle
&lltri;U+25FAHTML 5.0lower left triangle
&EmptySmallSquare;U+25FBHTML 5.0white medium square (empty small square)
&FilledSmallSquare;U+25FCHTML 5.0black medium square (filled small square)
&starf;
&bigstar;
U+2605HTML 5.0black star (filled star, big star)
&star;U+2606HTML 5.0white star (star)
&phone;U+260EHTML 5.0black telephone (phone)
&female;U+2640HTML 5.0female sign
&male;U+2642HTML 5.0male sign
&spades;
&spadesuit;
U+2660
  • HTML 4.0
  • HTML 5.0
HTMLsymbolISOpubblack spade suit[p]
&clubs;
&clubsuit;
U+2663
  • HTML 4.0
  • HTML 5.0
HTMLsymbolISOpubblack club suit (shamrock)[p]
&hearts;
&heartsuit;
U+2665
  • HTML 4.0
  • HTML 5.0
HTMLsymbolISOpubblack heart suit (valentine)[p]
&diams;
&diamondsuit;
U+2666
  • HTML 4.0
  • HTML 5.0
HTMLsymbolISOpubblack diamond suit[p]
&sung;U+266AHTML 5.0eighth note (sung)
&flat;U+266DHTML 5.0music flat sign
&natur;
&natural;
U+266EHTML 5.0music natural sign
&sharp;U+266FHTML 5.0music sharp sign
&check;
&checkmark;
U+2713HTML 5.0check mark
&cross;U+2717HTML 5.0ballot x (cross)
&malt;
&maltese;
U+2720HTML 5.0Maltese cross
&sext;U+2736HTML 5.0six pointed black star (sextile)
&VerticalSeparator;U+2758HTML 5.0light vertical bar (vertical separator)
&lbbrk;U+2772HTML 5.0light left tortoise shell bracket ornament
&rbbrk;U+2773HTML 5.0light right tortoise shell bracket ornament
&bsolhsub;U+27C8HTML 5.0reverse solidus preceding subset
&suphsol;U+27C9HTML 5.0superset preceding solidus
&lobrk;
&LeftDoubleBracket;
U+27E6HTML 5.0mathematical left white square bracket
&robrk;
&RightDoubleBracket;
U+27E7HTML 5.0mathematical right white square bracket
&lang;
&LeftAngleBracket;
&langle;
  • U+27E8;
  • previously U+2329
  • HTML 4.0
  • HTML 5.0
  • HTML 5.0
HTMLsymbolISOtechmathematical left angle bracket (bra)[af]
&rang;
&RightAngleBracket;
&rangle;
  • U+27E9;
  • previously U+232A
  • HTML 4.0
  • HTML 5.0
  • HTML 5.0
HTMLsymbolISOtechmathematical right angle bracket (ket)[ag]
&Lang;U+27EAHTML 5.0mathematical left double angle bracket
&Rang;U+27EBHTML 5.0mathematical right double angle bracket
&loang;U+27ECHTML 5.0mathematical left white tortoise shell bracket
&roang;U+27EDHTML 5.0mathematical right white tortoise shell bracket
&xlarr;
&longleftarrow;
&LongLeftArrow;
U+27F5HTML 5.0long leftwards arrow
&xrarr;
&longrightarrow;
&LongRightArrow;
U+27F6HTML 5.0long rightwards arrow
&xharr;
&longleftrightarrow;
&LongLeftRightArrow;
U+27F7HTML 5.0long left right arrow (long horizontal arrow)
&xlArr;
&Longleftarrow;
&DoubleLongLeftArrow;
U+27F8HTML 5.0long leftwards double arrow
&xrArr;
&Longrightarrow;
&DoubleLongRightArrow;
U+27F9HTML 5.0long rightwards double arrow
&xhArr;
&Longleftrightarrow;
&DoubleLongLeftRightArrow;
U+27FAHTML 5.0long left right double arrow (long horizontal double arrow)
&xmap;
&longmapsto;
U+27FCHTML 5.0long rightwards arrow from bar (long maps to)
&dzigrarr;U+27FFHTML 5.0long rightwards squiggle arrow (long rightwards zigzag arrow)
&nvlArr;U+2902HTML 5.0leftwards double arrow with vertical stroke
&nvrArr;U+2903HTML 5.0rightwards double arrow with vertical stroke
&nvHarr;U+2904HTML 5.0left right double arrow with vertical stroke
&Map;U+2905HTML 5.0rightwards two-headed arrow from bar (double maps to)
&lbarr;U+290CHTML 5.0leftwards double dash arrow
&rbarr;
&bkarow;
U+290DHTML 5.0rightwards double dash arrow
&lBarr;U+290EHTML 5.0leftwards triple dash arrow
&rBarr;
&dbkarow;
U+290FHTML 5.0rightwards triple dash arrow
&RBarr;
&drbkarow;
U+2910HTML 5.0rightwards two-headed triple dash arrow
&DDotrahd;U+2911HTML 5.0rightwards arrow with dotted stem
&UpArrowBar;U+2912HTML 5.0upwards arrow to bar
&DownArrowBar;U+2913HTML 5.0downwards arrow to bar
&Rarrtl;U+2916HTML 5.0rightwards two-headed arrow with tail
&latail;U+2919HTML 5.0leftwards arrow-tail
&ratail;U+291AHTML 5.0rightwards arrow-tail
&lAtail;U+291BHTML 5.0leftwards double arrow-tail
&rAtail;U+291CHTML 5.0rightwards double arrow-tail
&larrfs;U+291DHTML 5.0leftwards arrow to black diamond
&rarrfs;U+291EHTML 5.0rightwards arrow to black diamond
&larrbfs;U+291FHTML 5.0leftwards arrow from bar to black diamond
&rarrbfs;U+2920HTML 5.0rightwards arrow from bar to black diamond
&nwarhk;U+2923HTML 5.0north west arrow with hook
&nearhk;U+2924HTML 5.0north east arrow with hook
&searhk;
&hksearow;
U+2925HTML 5.0south east arrow with hook
&swarhk;
&hkswarow;
U+2926HTML 5.0south west arrow with hook
&nwnear;U+2927HTML 5.0north west arrow and north east arrow
&nesear;
&toea;
U+2928HTML 5.0north east arrow and south east arrow (to east arrow)
&seswar;
&tosa;
U+2929HTML 5.0south east arrow and south west arrow (to south arrow)
&swnwar;U+292AHTML 5.0south west arrow and north west arrow
&rarrc;U+2933HTML 5.0wave arrow pointing directly right (right arrow curved)
&nrarrc;⤳̸U+2933 U+0338HTML 5.0wave arrow pointing directly right, combining long solidus overlay
&cudarrr;U+2935HTML 5.0arrow pointing rightwards then curving downwards (curved down arrow right)
&ldca;U+2936HTML 5.0arrow pointing downwards then curving leftwards (left down curved arrow)
&rdca;U+2937HTML 5.0arrow pointing downwards then curving rightwards (right down curved arrow)
&cudarrl;U+2938HTML 5.0right-side arc clockwise arrow (curved down arrow left)
&larrpl;U+2939HTML 5.0left-side arc anticlockwise arrow
&curarrm;U+293CHTML 5.0top arc clockwise arrow with minus (curved right arrow with minus)
&cularrp;U+293DHTML 5.0top arc anticlockwise arrow with plus (curved left arrow with plus)
&rarrpl;U+2945HTML 5.0rightwards arrow with plus below
&harrcir;U+2948HTML 5.0left right arrow through small circle
&Uarrocir;U+2949HTML 5.0upwards two-headed arrow from small circle
&lurdshar;U+294AHTML 5.0left barb up right barb down harpoon (left up right down short arrow)
&ldrushar;U+294BHTML 5.0left barb down right barb up harpoon (left down right up short arrow)
&LeftRightVector;U+294EHTML 5.0left barb up right barb up harpoon (left right vector)
&RightUpDownVector;U+294FHTML 5.0up barb right down barb right harpoon (right up down vector)
&DownLeftRightVector;U+2950HTML 5.0left barb down right barb down harpoon (down left right vector)
&LeftUpDownVector;U+2951HTML 5.0up barb left down barb left harpoon (left up down vector)
&LeftVectorBar;U+2952HTML 5.0leftwards harpoon with barb up to bar (left vector bar)
&RightVectorBar;U+2953HTML 5.0rightwards harpoon with barb up to bar (right vector bar)
&RightUpVectorBar;U+2954HTML 5.0upwards harpoon with barb right to bar (right up vector bar)
&RightDownVectorBar;U+2955HTML 5.0downwards harpoon with barb right to bar (right down vector bar)
&DownLeftVectorBar;U+2956HTML 5.0leftwards harpoon with barb down to bar (down left vector bar)
&DownRightVectorBar;U+2957HTML 5.0rightwards harpoon with barb down to bar (down right vector bar)
&LeftUpVectorBar;U+2958HTML 5.0upwards harpoon with barb left to bar (left up vector bar)
&LeftDownVectorBar;U+2959HTML 5.0downwards harpoon with barb left to bar (left down vector bar)
&LeftTeeVector;U+295AHTML 5.0leftwards harpoon with barb up from bar (left tee vector)
&RightTeeVector;U+295BHTML 5.0rightwards harpoon with barb up from bar (right tee vector)
&RightUpTeeVector;U+295CHTML 5.0upwards harpoon with barb right from bar (right up tee vector)
&RightDownTeeVector;U+295DHTML 5.0downwards harpoon with barb right from bar (right down tee vector)
&DownLeftTeeVector;U+295EHTML 5.0leftwards harpoon with barb down from bar (down left tee vector)
&DownRightTeeVector;U+295FHTML 5.0rightwards harpoon with barb down from bar (down right tee vector)
&LeftUpTeeVector;U+2960HTML 5.0upwards harpoon with barb left from bar (left up tee vector)
&LeftDownTeeVector;U+2961HTML 5.0downwards harpoon with barb left from bar (left down tee vector)
&lHar;U+2962HTML 5.0leftwards harpoon with barb up above leftwards harpoon with barb down
&uHar;U+2963HTML 5.0upwards harpoon with barb left beside upwards harpoon with barb right
&rHar;U+2964HTML 5.0rightwards harpoon with barb up above rightwards harpoon with barb down
&dHar;U+2965HTML 5.0downwards harpoon with barb left beside downwards harpoon with barb right
&luruhar;U+2966HTML 5.0leftwards harpoon with barb up above rightwards harpoon with barb up
&ldrdhar;U+2967HTML 5.0leftwards harpoon with barb down above rightwards harpoon with barb down
&ruluhar;U+2968HTML 5.0rightwards harpoon with barb up above leftwards harpoon with barb up
&rdldhar;U+2969HTML 5.0rightwards harpoon with barb down above leftwards harpoon with barb down
&lharul;U+296AHTML 5.0leftwards harpoon with barb up above long dash
&llhard;U+296BHTML 5.0leftwards harpoon with barb down below long dash
&rharul;U+296CHTML 5.0rightwards harpoon with barb up above long dash
&lrhard;U+296DHTML 5.0rightwards harpoon with barb down below long dash
&udhar;
&UpEquilibrium;
U+296EHTML 5.0upwards harpoon with barb left beside downwards harpoon with barb right (up equilibrium)
&duhar;
&ReverseUpEquilibrium;
U+296FHTML 5.0downwards harpoon with barb left beside upwards harpoon with barb right (reverse up equilibrium)
&RoundImplies;U+2970HTML 5.0right double arrow with rounded head (round implies)
&erarr;U+2971HTML 5.0equals sign above rightwards arrow
&simrarr;U+2972HTML 5.0tilde operator above rightwards arrow (similar to above rightwards arrow)
&larrsim;U+2973HTML 5.0leftwards arrow above tilde operator (leftwards arrow above similar to)
&rarrsim;U+2974HTML 5.0rightwards arrow above tilde operator (rightwards arrow above similar to)
&rarrap;U+2975HTML 5.0rightwards arrow above almost equal to (rightwards arrow above approximately equal to)
&ltlarr;U+2976HTML 5.0less-than above leftwards arrow
&gtrarr;U+2978HTML 5.0greater-than above rightwards arrow
&subrarr;U+2979HTML 5.0subset above rightwards arrow
&suplarr;U+297BHTML 5.0superset above leftwards arrow
&lfisht;U+297CHTML 5.0left fish tail
&rfisht;U+297DHTML 5.0right fish tail
&ufisht;U+297EHTML 5.0up fish tail
&dfisht;⥿U+297FHTML 5.0down fish tail
&lopar;U+2985HTML 5.0left white parenthesis
&ropar;U+2986HTML 5.0right white parenthesis
&lbrke;U+298BHTML 5.0left square bracket with underbar
&rbrke;U+298CHTML 5.0right square bracket with underbar
&lbrkslu;U+298DHTML 5.0left square bracket with tick in top corner
&rbrksld;U+298EHTML 5.0right square bracket with tick in bottom corner
&lbrksld;U+298FHTML 5.0left square bracket with tick in bottom corner
&rbrkslu;U+2990HTML 5.0right square bracket with tick in top corner
&langd;U+2991HTML 5.0left angle bracket with dot
&rangd;U+2992HTML 5.0right angle bracket with dot
&lparlt;U+2993HTML 5.0left arc less-than bracket (left parenthesis less-than)
&rpargt;U+2994HTML 5.0right arc greater-than bracket (right parenthesis greater-than)
&gtlPar;U+2995HTML 5.0double left arc greater-than bracket (double left parenthesis greater-than)
&ltrPar;U+2996HTML 5.0double right arc less-than bracket (double right parenthesis less-than)
&vzigzag;U+299AHTML 5.0vertical zigzag line
&vangrt;U+299CHTML 5.0right angle variant with square
&angrtvbd;U+299DHTML 5.0measured right angle with dot
&ange;U+29A4HTML 5.0angle with underbar
&range;U+29A5HTML 5.0reversed angle with underbar
&dwangle;U+29A6HTML 5.0oblique angle opening up
&uwangle;U+29A7HTML 5.0oblique angle opening down
&angmsdaa;U+29A8HTML 5.0measured angle with open arm ending in arrow pointing up and right
&angmsdab;U+29A9HTML 5.0measured angle with open arm ending in arrow pointing up and left
&angmsdac;U+29AAHTML 5.0measured angle with open arm ending in arrow pointing down and right
&angmsdad;U+29ABHTML 5.0measured angle with open arm ending in arrow pointing down and left
&angmsdae;U+29ACHTML 5.0measured angle with open arm ending in arrow pointing right and up
&angmsdaf;U+29ADHTML 5.0measured angle with open arm ending in arrow pointing left and up
&angmsdag;U+29AEHTML 5.0measured angle with open arm ending in arrow pointing right and down
&angmsdah;U+29AFHTML 5.0measured angle with open arm ending in arrow pointing left and down
&bemptyv;U+29B0HTML 5.0reversed empty set (backwards empty set)
&demptyv;U+29B1HTML 5.0empty set with overbar (dash over empty set)
&cemptyv;U+29B2HTML 5.0empty set with small circle above
&raemptyv;U+29B3HTML 5.0empty set with right arrow above
&laemptyv;U+29B4HTML 5.0empty set with left arrow above
&ohbar;U+29B5HTML 5.0circle with horizontal bar
&omid;U+29B6HTML 5.0circled vertical bar (circled middle line)
&opar;U+29B7HTML 5.0circled parallel
&operp;U+29B9HTML 5.0circled perpendicular
&olcross;U+29BBHTML 5.0circle with superimposed x (circled large cross)
&odsold;U+29BCHTML 5.0circled anticlockwise-rotated division sign
&olcir;U+29BEHTML 5.0circled white bullet (circled light circle)
&ofcir;⦿U+29BFHTML 5.0circled bullet (circled full circle)
&olt;U+29C0HTML 5.0circled less-than
&ogt;U+29C1HTML 5.0circled greater-than
&cirscir;U+29C2HTML 5.0circle with small circle to the right
&cirE;U+29C3HTML 5.0circle with two horizontal strokes to the right
&solb;U+29C4HTML 5.0squared rising diagonal slash (boxed solidus)
&bsolb;U+29C5HTML 5.0squared falling diagonal slash (backward boxed solidus)
&boxbox;U+29C9HTML 5.0two joined squares (two joined boxes)
&trisb;U+29CDHTML 5.0triangle with serifs at bottom
&rtriltri;U+29CEHTML 5.0right triangle above left triangle
&LeftTriangleBar;U+29CFHTML 5.0left triangle beside vertical bar
&NotLeftTriangleBar;⧏̸U+29CF U+0338HTML 5.0left triangle beside vertical bar, combining long solidus overlay
&RightTriangleBar;U+29D0HTML 5.0vertical bar beside right triangle
&NotRightTriangleBar;⧐̸U+29D0 U+0338HTML 5.0vertical bar beside right triangle, combining long solidus overlay
&iinfin;U+29DCHTML 5.0incomplete infinity
&infintie;U+29DDHTML 5.0tie over infinity
&nvinfin;U+29DEHTML 5.0infinity negated with vertical bar
&eparsl;U+29E3HTML 5.0equals sign and slanted parallel
&smeparsl;U+29E4HTML 5.0equals sign and slanted parallel with tilde above (similar to over equals sign and slanted parallel)
&eqvparsl;U+29E5HTML 5.0identical to and slanted parallel ('equivalent to' and slanted parallel)
&lozf;
&blacklozenge;
U+29EBHTML 5.0black lozenge (lozenge filled)
&RuleDelayed;U+29F4HTML 5.0rule-delayed
&dsol;U+29F6HTML 5.0solidus with overbar (dash over solidus)
&xodot;
&bigodot;
U+2A00HTML 5.0n-ary circled dot operator
&xoplus;
&bigoplus;
U+2A01HTML 5.0n-ary circled plus operator
&xotime;
&bigotimes;
U+2A02HTML 5.0n-ary circled times operator
&xuplus;
&biguplus;
U+2A04HTML 5.0n-ary union operator with plus (big u plus)
&xsqcup;
&bigsqcup;
U+2A06HTML 5.0n-ary square union operator (big square cup)
&qint;
&iiiint;
U+2A0CHTML 5.0quadruple integral operator
&fpartint;U+2A0DHTML 5.0finite part integral
&cirfnint;U+2A10HTML 5.0circulation function
&awint;U+2A11HTML 5.0anticlockwise integration
&rppolint;U+2A12HTML 5.0line integration with rectangular path around pole
&scpolint;U+2A13HTML 5.0line integration with semicircular path around pole
&npolint;U+2A14HTML 5.0line integration not including the pole
&pointint;U+2A15HTML 5.0integral around a point operator
&quatint;U+2A16HTML 5.0quaternion integral operator
&intlarhk;U+2A17HTML 5.0integral with leftwards arrow with hook
&pluscir;U+2A22HTML 5.0plus sign with small circle above
&plusacir;U+2A23HTML 5.0plus sign with circumflex accent above
&simplus;U+2A24HTML 5.0plus sign with tilde above (plus sign with similar to above)
&plusdu;U+2A25HTML 5.0plus sign with dot below (plus dot under)
&plussim;U+2A26HTML 5.0plus sign with tilde below (plus sign with similar to below)
&plustwo;U+2A27HTML 5.0plus sign with subscript two
&mcomma;U+2A29HTML 5.0minus sign with comma above
&minusdu;U+2A2AHTML 5.0minus sign with dot below (minus dot under)
&loplus;U+2A2DHTML 5.0plus sign in left half circle
&roplus;U+2A2EHTML 5.0plus sign in right half circle
&Cross;U+2A2FHTML 5.0vector or cross product
&timesd;U+2A30HTML 5.0multiplication sign with dot above (times dot)
&timesbar;U+2A31HTML 5.0multiplication sign with underbar
&smashp;U+2A33HTML 5.0smash product
&lotimes;U+2A34HTML 5.0multiplication sign in left half circle
&rotimes;U+2A35HTML 5.0multiplication sign in right half circle
&otimesas;U+2A36HTML 5.0circled multiplication sign with circumflex accent
&Otimes;U+2A37HTML 5.0multiplication sign in double circle
&odiv;U+2A38HTML 5.0circled division sign
&triplus;U+2A39HTML 5.0plus sign in triangle
&triminus;U+2A3AHTML 5.0minus sign in triangle
&tritime;U+2A3BHTML 5.0multiplication sign in triangle
&iprod;
&intprod;
U+2A3CHTML 5.0interior product
&amalg;⨿U+2A3FHTML 5.0amalgamation or coproduct
&capdot;U+2A40HTML 5.0intersection with dot (cap dot)
&ncup;U+2A42HTML 5.0union with overbar
&ncap;U+2A43HTML 5.0intersection with overbar
&capand;U+2A44HTML 5.0intersection with logical and (cap and)
&cupor;U+2A45HTML 5.0union with logical or (cup or)
&cupcap;U+2A46HTML 5.0union above intersection (cup cap)
&capcup;U+2A47HTML 5.0intersection above union (cap cup)
&cupbrcap;U+2A48HTML 5.0union above bar above intersection (cup bar cap)
&capbrcup;U+2A49HTML 5.0intersection above bar above union (cap bar cup)
&cupcup;U+2A4AHTML 5.0union beside and joined with union (cup cup)
&capcap;U+2A4BHTML 5.0intersection beside and joined with intersection (cap cap)
&ccups;U+2A4CHTML 5.0closed union with serifs
&ccaps;U+2A4DHTML 5.0closed intersection with serifs
&ccupssm;U+2A50HTML 5.0closed union with serifs and smash product
&And;U+2A53HTML 5.0double logical and
&Or;U+2A54HTML 5.0double logical or
&andand;U+2A55HTML 5.0two intersecting logical and
&oror;U+2A56HTML 5.0two intersecting logical or
&orslope;U+2A57HTML 5.0sloping large or
&andslope;U+2A58HTML 5.0sloping large and
&andv;U+2A5AHTML 5.0logical and with middle stem
&orv;U+2A5BHTML 5.0logical or with middle stem
&andd;U+2A5CHTML 5.0logical and with horizontal dash
&ord;U+2A5DHTML 5.0logical or with horizontal dash
&wedbar;U+2A5FHTML 5.0logical and with underbar
&sdote;U+2A66HTML 5.0equals sign with dot below
&simdot;U+2A6AHTML 5.0tilde operator with dot above (similar with dot)
&congdot;U+2A6DHTML 5.0congruent with dot above
&ncongdot;⩭̸U+2A6D U+0338HTML 5.0congruent with dot above, combining long solidus overlay
&easter;U+2A6EHTML 5.0equals with asterisk
&apacir;U+2A6FHTML 5.0almost equal to with circumflex accent
&apE;U+2A70HTML 5.0approximately equal or equal to
&napE;⩰̸U+2A70 U+0338HTML 5.0approximately equal or equal to, combining long solidus overlay
&eplus;U+2A71HTML 5.0equals sign above plus sign
&pluse;U+2A72HTML 5.0plus sign above equals sign
&Esim;U+2A73HTML 5.0equals sign above tilde operator
&Colone;U+2A74HTML 5.0double colon equal
&Equal;U+2A75HTML 5.0two consecutive equals signs
&eDDot;
&ddotseq;
U+2A77HTML 5.0equals sign with two dots above and two dots below
&equivDD;U+2A78HTML 5.0equivalent with four dots above
&ltcir;U+2A79HTML 5.0less-than with circle inside
&gtcir;U+2A7AHTML 5.0greater-than with circle inside
&ltquest;U+2A7BHTML 5.0less-than with question mark above
&gtquest;U+2A7CHTML 5.0greater-than with question mark above
&les;
&LessSlantEqual;
&leqslant;
U+2A7DHTML 5.0less-than or slanted equal to
&nleqslant;
&nles;
&NotLessSlantEqual;
⩽̸U+2A7D U+0338HTML 5.0less-than or slanted equal to, combining long solidus overlay
&ges;
&GreaterSlantEqual;
&geqslant;
U+2A7EHTML 5.0greater-than or slanted equal to
&ngeqslant;
&nges;
&NotGreaterSlantEqual;
⩾̸U+2A7E U+0338HTML 5.0greater-than or slanted equal to, combining long solidus overlay
&lesdot;⩿U+2A7FHTML 5.0less-than or slanted equal to with dot inside
&gesdot;U+2A80HTML 5.0greater-than or slanted equal to with dot inside
&lesdoto;U+2A81HTML 5.0less-than or slanted equal to with dot above
&gesdoto;U+2A82HTML 5.0greater-than or slanted equal to with dot above
&lesdotor;U+2A83HTML 5.0less-than or slanted equal to with dot above right
&gesdotol;U+2A84HTML 5.0greater-than or slanted equal to with dot above left
&lap;
&lessapprox;
U+2A85HTML 5.0less-than or approximate
&gap;
&gtrapprox;
U+2A86HTML 5.0greater-than or approximate
&lne;
&lneq;
U+2A87HTML 5.0less-than and single-line not equal to
&gne;
&gneq;
U+2A88HTML 5.0greater-than and single-line not equal to
&lnap;
&lnapprox;
U+2A89HTML 5.0less-than and not approximate
&gnap;
&gnapprox;
U+2A8AHTML 5.0greater-than and not approximate
&lEg;
&lesseqqgtr;
U+2A8BHTML 5.0less-than above double-line equal above greater-than
&gEl;
&gtreqqless;
U+2A8CHTML 5.0greater-than above double-line equal above less-than
&lsime;U+2A8DHTML 5.0less-than above similar or equal
&gsime;U+2A8EHTML 5.0greater-than above similar or equal
&lsimg;U+2A8FHTML 5.0less-than above similar above greater-than
&gsiml;U+2A90HTML 5.0greater-than above similar above less-than
&lgE;U+2A91HTML 5.0less-than above greater-than above double-line equal
&glE;U+2A92HTML 5.0greater-than above less-than above double-line equal
&lesges;U+2A93HTML 5.0less-than above slanted equal above greater-than above slanted equal
&gesles;U+2A94HTML 5.0greater-than above slanted equal above less-than above slanted equal
&els;
&eqslantless;
U+2A95HTML 5.0slanted equal to or less-than
&egs;
&eqslantgtr;
U+2A96HTML 5.0slanted equal to or greater-than
&elsdot;U+2A97HTML 5.0slanted equal to or less-than with dot inside
&egsdot;U+2A98HTML 5.0slanted equal to or greater-than with dot inside
&el;U+2A99HTML 5.0double-line equal to or less-than
&eg;U+2A9AHTML 5.0double-line equal to or greater-than
&siml;U+2A9DHTML 5.0similar or less-than
&simg;U+2A9EHTML 5.0similar or greater-than
&simlE;U+2A9FHTML 5.0similar above less-than above equals sign
&simgE;U+2AA0HTML 5.0similar above greater-than above equals sign
&LessLess;U+2AA1HTML 5.0double nested less-than
&NotNestedLessLess;⪡̸U+2AA1 U+0338HTML 5.0double nested less-than, combining long solidus overlay
&GreaterGreater;U+2AA2HTML 5.0double nested greater-than
&NotNestedGreaterGreater;⪢̸U+2AA2 U+0338HTML 5.0double nested greater-than, combining long solidus overlay
&glj;U+2AA4HTML 5.0greater-than overlapping less-than
&gla;U+2AA5HTML 5.0greater-than beside less-than
&ltcc;U+2AA6HTML 5.0less-than closed by curve
&gtcc;U+2AA7HTML 5.0greater-than closed by curve
&lescc;U+2AA8HTML 5.0less-than closed by curve above slanted equal
&gescc;U+2AA9HTML 5.0greater-than closed by curve above slanted equal
&smt;U+2AAAHTML 5.0smaller than
&lat;U+2AABHTML 5.0larger than
&smte;U+2AACHTML 5.0smaller than or equal to
&smtes;⪬︀U+2AAC U+FE00HTML 5.0smaller than or equal to, variation selector-1
&late;U+2AADHTML 5.0larger than or equal to
&lates;⪭︀U+2AAD U+FE00HTML 5.0larger than or equal to, variation selector-1
&bumpE;U+2AAEHTML 5.0equals sign with bumpy above
&pre;
&preceq;
&PrecedesEqual;
U+2AAFHTML 5.0precedes above single-line equals sign
&NotPrecedesEqual;
&npre;
&npreceq;
⪯̸U+2AAF U+0338HTML 5.0precedes above single-line equals sign, combining long solidus overlay
&sce;
&succeq;
&SucceedsEqual;
U+2AB0HTML 5.0succeeds above single-line equals sign
&NotSucceedsEqual;
&nsce;
&nsucceq;
⪰̸U+2AB0 U+0338HTML 5.0succeeds above single-line equals sign, combining long solidus overlay
&prE;U+2AB3HTML 5.0precedes above equals sign
&scE;U+2AB4HTML 5.0succeeds above equals sign
&prnE;
&precneqq;
U+2AB5HTML 5.0precedes above not equal to
&scnE;
&succneqq;
U+2AB6HTML 5.0succeeds above not equal to
&prap;
&precapprox;
U+2AB7HTML 5.0precedes above almost equal to
&scap;
&succapprox;
U+2AB8HTML 5.0succeeds above almost equal to
&prnap;
&precnapprox;
U+2AB9HTML 5.0precedes above not almost equal to
&scnap;
&succnapprox;
U+2ABAHTML 5.0succeeds above not almost equal to
&Pr;U+2ABBHTML 5.0double precedes
&Sc;U+2ABCHTML 5.0double succeeds
&subdot;U+2ABDHTML 5.0subset with dot
&supdot;U+2ABEHTML 5.0superset with dot
&subplus;⪿U+2ABFHTML 5.0subset with plus sign below
&supplus;U+2AC0HTML 5.0superset with plus sign below
&submult;U+2AC1HTML 5.0subset with multiplication sign below
&supmult;U+2AC2HTML 5.0superset with multiplication sign below
&subedot;U+2AC3HTML 5.0subset of or equal to with dot above
&supedot;U+2AC4HTML 5.0superset of or equal to with dot above
&subE;
&subseteqq;
U+2AC5HTML 5.0subset of above equals sign
&nsubE;
&nsubseteqq;
⫅̸U+2AC5 U+0338HTML 5.0subset of above equals sign, combining long solidus overlay
&supE;
&supseteqq;
U+2AC6HTML 5.0superset of above equals sign
&nsupE;
&nsupseteqq;
⫆̸U+2AC6 U+0338HTML 5.0superset of above equals sign, combining long solidus overlay
&subsim;U+2AC7HTML 5.0subset of above tilde operator
&supsim;U+2AC8HTML 5.0superset of above tilde operator
&subnE;
&subsetneqq;
U+2ACBHTML 5.0subset of above not equal to
&varsubsetneqq;
&vsubnE;
⫋︀U+2ACB U+FE00HTML 5.0subset of above not equal to, variation selector-1
&supnE;
&supsetneqq;
U+2ACCHTML 5.0superset of above not equal to
&varsupsetneqq;
&vsupnE;
⫌︀U+2ACC U+FE00HTML 5.0superset of above not equal to, variation selector-1
&csub;U+2ACFHTML 5.0closed subset
&csup;U+2AD0HTML 5.0closed superset
&csube;U+2AD1HTML 5.0closed subset or equal to
&csupe;U+2AD2HTML 5.0closed superset or equal to
&subsup;U+2AD3HTML 5.0subset above superset
&supsub;U+2AD4HTML 5.0superset above subset
&subsub;U+2AD5HTML 5.0subset above subset
&supsup;U+2AD6HTML 5.0superset above superset
&suphsub;U+2AD7HTML 5.0superset beside subset
&supdsub;U+2AD8HTML 5.0superset beside and joined by dash with subset
&forkv;U+2AD9HTML 5.0element of opening downwards
&topfork;U+2ADAHTML 5.0pitchfork with tee top
&mlcp;U+2ADBHTML 5.0transversal intersection
&Dashv;
&DoubleLeftTee;
U+2AE4HTML 5.0vertical bar double left turnstile
&Vdashl;U+2AE6HTML 5.0long dash from left member of double vertical
&Barv;U+2AE7HTML 5.0short down tack with overbar
&vBar;U+2AE8HTML 5.0short up tack with underbar
&vBarv;U+2AE9HTML 5.0short up tack above short down tack
&Vbar;U+2AEBHTML 5.0double up tack
&Not;U+2AECHTML 5.0double stroke not sign
&bNot;U+2AEDHTML 5.0reversed double stroke not sign
&rnmid;U+2AEEHTML 5.0does not divide with reversed negation slash
&cirmid;U+2AEFHTML 5.0vertical line with circle above
&midcir;U+2AF0HTML 5.0vertical line with circle below
&topcir;U+2AF1HTML 5.0down tack with circle below
&nhpar;U+2AF2HTML 5.0parallel with horizontal stroke
&parsim;U+2AF3HTML 5.0parallel with tilde operator
&parsl;U+2AFDHTML 5.0double solidus operator
&nparsl;⫽⃥U+2AFD U+20E5HTML 5.0double solidus operator, combining reverse solidus overlay
&fflig;U+FB00HTML 5.0Latin small ligature ff
&filig;U+FB01HTML 5.0Latin small ligature fi
&fllig;U+FB02HTML 5.0Latin small ligature fl
&ffilig;U+FB03HTML 5.0Latin small ligature ffi
&ffllig;U+FB04HTML 5.0Latin small ligature ffl
&Ascr;𝒜U+1D49CHTML 5.0mathematical script capital A
&Cscr;𝒞U+1D49EHTML 5.0mathematical script capital C
&Dscr;𝒟U+1D49FHTML 5.0mathematical script capital D
&Gscr;𝒢U+1D4A2HTML 5.0mathematical script capital G
&Jscr;𝒥U+1D4A5HTML 5.0mathematical script capital J
&Kscr;𝒦U+1D4A6HTML 5.0mathematical script capital K
&Nscr;𝒩U+1D4A9HTML 5.0mathematical script capital N
&Oscr;𝒪U+1D4AAHTML 5.0mathematical script capital O
&Pscr;𝒫U+1D4ABHTML 5.0mathematical script capital P
&Qscr;𝒬U+1D4ACHTML 5.0mathematical script capital Q
&Sscr;𝒮U+1D4AEHTML 5.0mathematical script capital S
&Tscr;𝒯U+1D4AFHTML 5.0mathematical script capital T
&Uscr;𝒰U+1D4B0HTML 5.0mathematical script capital U
&Vscr;𝒱U+1D4B1HTML 5.0mathematical script capital V
&Wscr;𝒲U+1D4B2HTML 5.0mathematical script capital W
&Xscr;𝒳U+1D4B3HTML 5.0mathematical script capital X
&Yscr;𝒴U+1D4B4HTML 5.0mathematical script capital Y
&Zscr;𝒵U+1D4B5HTML 5.0mathematical script capital Z
&ascr;𝒶U+1D4B6HTML 5.0mathematical script small a
&bscr;𝒷U+1D4B7HTML 5.0mathematical script small b
&cscr;𝒸U+1D4B8HTML 5.0mathematical script small c
&dscr;𝒹U+1D4B9HTML 5.0mathematical script small d
&fscr;𝒻U+1D4BBHTML 5.0mathematical script small f
&hscr;𝒽U+1D4BDHTML 5.0mathematical script small h
&iscr;𝒾U+1D4BEHTML 5.0mathematical script small i
&jscr;𝒿U+1D4BFHTML 5.0mathematical script small j
&kscr;𝓀U+1D4C0HTML 5.0mathematical script small k
&lscr;𝓁U+1D4C1HTML 5.0mathematical script small l
&mscr;𝓂U+1D4C2HTML 5.0mathematical script small m
&nscr;𝓃U+1D4C3HTML 5.0mathematical script small n
&pscr;𝓅U+1D4C5HTML 5.0mathematical script small p
&qscr;𝓆U+1D4C6HTML 5.0mathematical script small q
&rscr;𝓇U+1D4C7HTML 5.0mathematical script small r
&sscr;𝓈U+1D4C8HTML 5.0mathematical script small s
&tscr;𝓉U+1D4C9HTML 5.0mathematical script small t
&uscr;𝓊U+1D4CAHTML 5.0mathematical script small u
&vscr;𝓋U+1D4CBHTML 5.0mathematical script small v
&wscr;𝓌U+1D4CCHTML 5.0mathematical script small w
&xscr;𝓍U+1D4CDHTML 5.0mathematical script small x
&yscr;𝓎U+1D4CEHTML 5.0mathematical script small y
&zscr;𝓏U+1D4CFHTML 5.0mathematical script small z
&Afr;𝔄U+1D504HTML 5.0mathematical Fraktur capital A
&Bfr;𝔅U+1D505HTML 5.0mathematical Fraktur capital B
&Dfr;𝔇U+1D507HTML 5.0mathematical Fraktur capital D
&Efr;𝔈U+1D508HTML 5.0mathematical Fraktur capital E
&Ffr;𝔉U+1D509HTML 5.0mathematical Fraktur capital F
&Gfr;𝔊U+1D50AHTML 5.0mathematical Fraktur capital G
&Jfr;𝔍U+1D50DHTML 5.0mathematical Fraktur capital J
&Kfr;𝔎U+1D50EHTML 5.0mathematical Fraktur capital K
&Lfr;𝔏U+1D50FHTML 5.0mathematical Fraktur capital L
&Mfr;𝔐U+1D510HTML 5.0mathematical Fraktur capital M
&Nfr;𝔑U+1D511HTML 5.0mathematical Fraktur capital N
&Ofr;𝔒U+1D512HTML 5.0mathematical Fraktur capital O
&Pfr;𝔓U+1D513HTML 5.0mathematical Fraktur capital P
&Qfr;𝔔U+1D514HTML 5.0mathematical Fraktur capital Q
&Sfr;𝔖U+1D516HTML 5.0mathematical Fraktur capital S
&Tfr;𝔗U+1D517HTML 5.0mathematical Fraktur capital T
&Ufr;𝔘U+1D518HTML 5.0mathematical Fraktur capital U
&Vfr;𝔙U+1D519HTML 5.0mathematical Fraktur capital V
&Wfr;𝔚U+1D51AHTML 5.0mathematical Fraktur capital W
&Xfr;𝔛U+1D51BHTML 5.0mathematical Fraktur capital X
&Yfr;𝔜U+1D51CHTML 5.0mathematical Fraktur capital Y
&afr;𝔞U+1D51EHTML 5.0mathematical Fraktur small a
&bfr;𝔟U+1D51FHTML 5.0mathematical Fraktur small b
&cfr;𝔠U+1D520HTML 5.0mathematical Fraktur small c
&dfr;𝔡U+1D521HTML 5.0mathematical Fraktur small d
&efr;𝔢U+1D522HTML 5.0mathematical Fraktur small e
&ffr;𝔣U+1D523HTML 5.0mathematical Fraktur small f
&gfr;𝔤U+1D524HTML 5.0mathematical Fraktur small g
&hfr;𝔥U+1D525HTML 5.0mathematical Fraktur small h
&ifr;𝔦U+1D526HTML 5.0mathematical Fraktur small i
&jfr;𝔧U+1D527HTML 5.0mathematical Fraktur small j
&kfr;𝔨U+1D528HTML 5.0mathematical Fraktur small k
&lfr;𝔩U+1D529HTML 5.0mathematical Fraktur small l
&mfr;𝔪U+1D52AHTML 5.0mathematical Fraktur small m
&nfr;𝔫U+1D52BHTML 5.0mathematical Fraktur small n
&ofr;𝔬U+1D52CHTML 5.0mathematical Fraktur small o
&pfr;𝔭U+1D52DHTML 5.0mathematical Fraktur small p
&qfr;𝔮U+1D52EHTML 5.0mathematical Fraktur small q
&rfr;𝔯U+1D52FHTML 5.0mathematical Fraktur small r
&sfr;𝔰U+1D530HTML 5.0mathematical Fraktur small s
&tfr;𝔱U+1D531HTML 5.0mathematical Fraktur small t
&ufr;𝔲U+1D532HTML 5.0mathematical Fraktur small u
&vfr;𝔳U+1D533HTML 5.0mathematical Fraktur small v
&wfr;𝔴U+1D534HTML 5.0mathematical Fraktur small w
&xfr;𝔵U+1D535HTML 5.0mathematical Fraktur small x
&yfr;𝔶U+1D536HTML 5.0mathematical Fraktur small y
&zfr;𝔷U+1D537HTML 5.0mathematical Fraktur small z
&Aopf;𝔸U+1D538HTML 5.0mathematical double-struck capital A
&Bopf;𝔹U+1D539HTML 5.0mathematical double-struck capital B
&Dopf;𝔻U+1D53BHTML 5.0mathematical double-struck capital D
&Eopf;𝔼U+1D53CHTML 5.0mathematical double-struck capital E
&Fopf;𝔽U+1D53DHTML 5.0mathematical double-struck capital F
&Gopf;𝔾U+1D53EHTML 5.0mathematical double-struck capital G
&Iopf;𝕀U+1D540HTML 5.0mathematical double-struck capital I
&Jopf;𝕁U+1D541HTML 5.0mathematical double-struck capital J
&Kopf;𝕂U+1D542HTML 5.0mathematical double-struck capital K
&Lopf;𝕃U+1D543HTML 5.0mathematical double-struck capital L
&Mopf;𝕄U+1D544HTML 5.0mathematical double-struck capital M
&Oopf;𝕆U+1D546HTML 5.0mathematical double-struck capital O
&Sopf;𝕊U+1D54AHTML 5.0mathematical double-struck capital S
&Topf;𝕋U+1D54BHTML 5.0mathematical double-struck capital T
&Uopf;𝕌U+1D54CHTML 5.0mathematical double-struck capital U
&Vopf;𝕍U+1D54DHTML 5.0mathematical double-struck capital V
&Wopf;𝕎U+1D54EHTML 5.0mathematical double-struck capital W
&Xopf;𝕏U+1D54FHTML 5.0mathematical double-struck capital X
&Yopf;𝕐U+1D550HTML 5.0mathematical double-struck capital Y
&aopf;𝕒U+1D552HTML 5.0mathematical double-struck small a
&bopf;𝕓U+1D553HTML 5.0mathematical double-struck small b
&copf;𝕔U+1D554HTML 5.0mathematical double-struck small c
&dopf;𝕕U+1D555HTML 5.0mathematical double-struck small d
&eopf;𝕖U+1D556HTML 5.0mathematical double-struck small e
&fopf;𝕗U+1D557HTML 5.0mathematical double-struck small f
&gopf;𝕘U+1D558HTML 5.0mathematical double-struck small g
&hopf;𝕙U+1D559HTML 5.0mathematical double-struck small h
&iopf;𝕚U+1D55AHTML 5.0mathematical double-struck small i
&jopf;𝕛U+1D55BHTML 5.0mathematical double-struck small j
&kopf;𝕜U+1D55CHTML 5.0mathematical double-struck small k
&lopf;𝕝U+1D55DHTML 5.0mathematical double-struck small l
&mopf;𝕞U+1D55EHTML 5.0mathematical double-struck small m
&nopf;𝕟U+1D55FHTML 5.0mathematical double-struck small n
&oopf;𝕠U+1D560HTML 5.0mathematical double-struck small o
&popf;𝕡U+1D561HTML 5.0mathematical double-struck small p
&qopf;𝕢U+1D562HTML 5.0mathematical double-struck small q
&ropf;𝕣U+1D563HTML 5.0mathematical double-struck small r
&sopf;𝕤U+1D564HTML 5.0mathematical double-struck small s
&topf;𝕥U+1D565HTML 5.0mathematical double-struck small t
&uopf;𝕦U+1D566HTML 5.0mathematical double-struck small u
&vopf;𝕧U+1D567HTML 5.0mathematical double-struck small v
&wopf;𝕨U+1D568HTML 5.0mathematical double-struck small w
&xopf;𝕩U+1D569HTML 5.0mathematical double-struck small x
&yopf;𝕪U+1D56AHTML 5.0mathematical double-struck small y
&zopf;𝕫U+1D56BHTML 5.0mathematical double-struck small z
Notes

Entities representing special characters in XHTML

The XHTML DTDs explicitly declare 253 entities (including the 5 predefined entities of XML 1.0) whose expansion is a single character, which can therefore be informally referred to as "character entities". These (with the exception of the &apos; entity) have the same names and represent the same characters as the 252 character entities in HTML 4.0. Also, by virtue of being XML, XHTML documents may reference the predefined &apos; entity, which is not one of the 252 character entities in HTML 4.0. Additional entities of any size may be defined on a per-document basis. However, the usability of entity references in XHTML is affected by how the document is being processed:[citation needed]

  • Legacy abbreviated character entities (without the final colon) inherited from HTML 2.0 (and still supported in HTML 5.0) are not supported in XML 1.0 and XHTML; the trailing semicolon must be present in all entity references used in XML and XHTML documents.
  • If the XHTML document is read by a conforming HTML 4.0 processor, then only the 252 HTML 4.0 character entities may safely be used. The use of &apos; or custom entity references may not be supported and may produce unpredictable results (it is recommended to use the numerical character reference &#39; instead).
  • If the document is read by an XML parser that does not or cannot read external entities, then only the five built-in XML character entities can safely be used, although other entities may be used if they are declared in the internal DTD subset. However, modern XML parsers recognize and implement a builtin cache for SGML references to DTDs used by all standard versions of HTML, XHTML, SVG and MathML, without needing to parse and process the external DTD via their URL and without needing to process entities defined in an internal DTD subset of the document.
  • If the document is read by an XML parser that does read external entities and does not implement a builtin cache for well-known DTDs, then the five built-in XML character entities (and numeric character references) can safely be used. The other 248 HTML character entities can be used as long as the XHTML DTD is accessible to the parser at the time the document is read. Other entities may also be used if they are declared in the internal DTD subset and the XML processor can parse internal DTD subsets.[citation needed]
  • HTML 5.0 parsers cannot process XHTML documents, and it's impossible to define a fully validating DTD for HTML5 documents encoded with the XHTML syntax (notably it's impossible to validate all attributes names, notably "data-*" attributes); as well it's still impossible to fully validate (with W3C standard schemas for XML, such as XSD or relax NG) HTML5 documents represented in the XHTML syntax, and for now a custom validator specific to HTML 5.0 is required.

Because of the special &apos; case mentioned above, only &quot;, &amp;, &lt;, and &gt; will work in all XHTML processing situations.

See also

References

Further reading

External links