请输入您要查询的百科知识:

 

词条 List of XML and HTML character entity references
释义

  1. Character reference overview

  2. Standard public entity sets for characters

  3. Predefined entities in XML

  4. Character entity references in HTML

  5. Entities representing special characters in XHTML

  6. See also

  7. References

  8. External links

{{SpecialChars}}{{HTML}}

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 by using the syntax in a Document Type Definition (DTD).

Character reference overview

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

&#nnnn;

or

&#xhhhh;

where nnnn is the code point in decimal form, and hhhh is the code point in hexadecimal form. The x must be lowercase in XML documents. The nnnn or hhhh may be any number of digits and may include leading zeros. The hhhh may mix uppercase and lowercase, though uppercase is the usual style.

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

&name;

where name is the case-sensitive name of the entity. The semicolon is required.

Standard public entity sets for characters

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.

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.

HTML 5: 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 HTML 5 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.

Predefined entities in XML

The XML specification does not use the term "character entity" or "character entity reference". The XML specification defines five "predefined entities" representing special characters, and requires that all XML processors honor them. The entities can be explicitly declared in a DTD, as well, but if this is done, the replacement text must be the same as the built-in definitions. XML also allows other named entities of any size to be defined on a per-document basis.

The table below lists the five XML predefined entities. The "Name" column mentions the entity's name. The "Character" column shows the character. To render the character, the format &name; is used; for example, & renders as &. The "Unicode code point" column cites the character via standard UCS/Unicode "U+" notation, which shows the character's code point in hexadecimal. The decimal equivalent of the code point is then shown in parentheses. The "Standard" column indicates the first version of XML that includes the entity. The "Description" column cites the character via its canonical UCS/Unicode name, in English.

Name Character Unicode code point (decimal) Standard Description
quot " U+0022 (34) XML 1.0 double quotation mark
amp & U+0026 (38) XML 1.0 ampersand
apos ' U+0027 (39) XML 1.0 apostrophe (apostrophe-quote)
lt < U+003C (60) XML 1.0 less-than sign
gt > U+003E (62) XML 1.0 greater-than sign

Character entity references in HTML

The HTML 5 DTDs define many named entities, references to which act as mnemonic aliases for certain Unicode characters. The HTML 5 specification requires the use of the standard DTDs and does not allow users to define additional entities.[1]

In the table below, the "Standard" column indicates the first version of the HTML DTD that defines the character entity reference.

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, e.g., enter &copy; for the copyright symbol (©)

Alternatively,

enter an ampersand, followed by a number sign, a number and a semicolon. For example, to display the copyright symbol © enter &#169;   (When using this method, use the decimal numbers in the third column.)

Equivalently, you can enter an ampersand, followed by a number sign, the letter x, a hexadecimal number and a semicolon. For example, to display the copyright symbol © enter &#00A9; or &#A9;   (When using this method, use the hexadecimal numbers in the third column, without the prefix U+.)

Names Character Unicode code point (decimal) Standard DTD Old ISO subset Description
excl ! U+0021 (33) HTML 5.0 ISOnum exclamation mark
quot, QUOT " U+0022 (34) HTML 2.0 (QUOT added in HTML 5.0) HTMLspecial ISOnum quotation mark (APL quote)
num # U+0023 (35) HTML 5.0 number sign
dollar $ U+0024 (36) HTML 5.0 dollar sign
percnt % U+0025 (37) HTML 5.0 ISOnum percent sign
amp, AMP & U+0026 (38) Original html specification(html 1.0) and HTML 2.0 (AMP added in HTML 5.0) HTMLspecial and http://info.cern.ch/MarkUp/html-spec/html.dtd (originally) ISOnum ampersand
apos ' U+0027 (39) HTML 5.0 and XHTML 1.0 HTMLspecial ISOnum apostrophe (apostrophe-quote); see below
lpar ( U+0028 (40) HTML 5.0 left parenthesis
rpar ) U+0029 (41) HTML 5.0 right parenthesis
ast, midast * U+002A (42) HTML 5.0 asterisk (middle asterisk)
add + U+002B (43) HTML 5.0 ISOnum plus sign
comma , U+002C (44) HTML 5.0 comma
period . U+002E (46) HTML 5.0 period
sol / U+002F (47) HTML 5.0 solidus
colon : U+003A (58) HTML 5.0 colon
semi ; U+003B (59) HTML 5.0 semicolon
lt, LT < U+003C (60) Original html specification(html 1.0) and HTML 2.0 (LT added in HTML 5.0) HTMLspecial and http://info.cern.ch/MarkUp/html-spec/html.dtd (originally) ISOnum less-than sign
equal = U+003D (61) HTML 5.0 ISOnum equals sign
gt, GT > U+003E (62) Original html specification(html 1.0) and HTML 2.0 (GT added in HTML 5.0) HTMLspecial and http://info.cern.ch/MarkUp/html-spec/html.dtd (originally) ISOnum greater-than sign
quest ? U+003F (63) HTML 5.0 question mark
commat @ U+0040 (64) HTML 5.0 commercial at
lsqb, lbrack [ U+005B (91) HTML 5.0 left square bracket (left bracket)
bsol \\ U+005C (92) HTML 5.0 reverse solidus (backward solidus)
rsqb, rbrack ] U+005D (93) HTML 5.0 right square bracket (right bracket)
Hat ^ U+005E (94) HTML 5.0 circumflex accent (hat)
lowbar _ U+005F (95) HTML 5.0 low line (low bar)
grave, DiacriticalGrave ` U+0060 (96) HTML 5.0 grave, diacritical grave
lcub, lbrace { U+007B (123) HTML 5.0 left curly bracket (left brace)
verbar, vert, VerticalLine | U+007C (124) HTML 5.0 vertical bar
rcub, rbrace U+007D (125) HTML 5.0 right curly bracket (right brace)
nbsp, NonBreakingSpaceblue| }} U+00A0 (160) HTML 3.2 (NonBreakingSpace added in HTML 5.0) HTMLlat1 ISOnum no-break space (non-breaking space)
iexcl ¡ U+00A1 (161) HTML 3.2 HTMLlat1 ISOnum inverted exclamation mark
cent ¢ U+00A2 (162) HTML 3.2 HTMLlat1 ISOnum cent sign
pound £ U+00A3 (163) HTML 3.2 HTMLlat1 ISOnum pound sign
curren ¤ U+00A4 (164) HTML 3.2 HTMLlat1 ISOnum currency sign
yen ¥ U+00A5 (165) HTML 3.2 HTMLlat1 ISOnum yen sign (yuan sign)
brvbar ¦ U+00A6 (166) HTML 3.2 HTMLlat1 ISOnum broken bar (broken vertical bar)
sect § U+00A7 (167) HTML 3.2 HTMLlat1 ISOnum section sign
Dot, die, DoubleDot, uml ¨ U+00A8 (168) HTML 3.2 (Dot, die, and DoubleDot added in HTML 5.0) HTMLlat1 ISOdia dieresis (spacing dieresis, double dot); see Germanic umlaut
copy, COPY © U+00A9 (169) HTML 3.2 (COPY added in HTML 5.0) HTMLlat1 ISOnum copyright symbol
ordf ª U+00AA (170) HTML 3.2 HTMLlat1 ISOnum feminine ordinal indicator
laquo « U+00AB (171) HTML 3.2 HTMLlat1 ISOnum left-pointing double angle quotation mark (left pointing guillemet)
not ¬ U+00AC (172) HTML 3.2 HTMLlat1 ISOnum not sign
shy  U+00AD (173) HTML 3.2 HTMLlat1 ISOnum soft hyphen (discretionary hyphen)
reg, circledR, REG ® U+00AE (174) HTML 3.2 (circledR and REG added in HTML 5.0) HTMLlat1 ISOnum registered sign (registered trademark symbol)
macr, OverBar, strns ¯ U+00AF (175) HTML 3.2 (OverBar and strns added in HTML 5.0) HTMLlat1 ISOdia macron (spacing macron, overline, APL overbar)
deg ° U+00B0 (176) HTML 3.2 HTMLlat1 ISOnum degree symbol
plusmn, pm, PlusMinus ± U+00B1 (177) HTML 3.2 (pm and PlusMinus added in HTML 5.0) HTMLlat1 ISOnum plus-minus sign (plus-or-minus sign)
sup2 ² U+00B2 (178) HTML 3.2 HTMLlat1 ISOnum superscript two (superscript digit two, squared)
sup3 ³ U+00B3 (179) HTML 3.2 HTMLlat1 ISOnum superscript three (superscript digit three, cubed)
acute, DiacriticalAcute ´ U+00B4 (180) HTML 3.2 (DiacriticalAcute added in HTML 5.0) HTMLlat1 ISOdia acute accent, diacritical acute (spacing acute)
micro µ U+00B5 (181) HTML 3.2 HTMLlat1 ISOnum micro sign
para U+00B6 (182) HTML 3.2 HTMLlat1 ISOnum pilcrow sign (paragraph sign)
middot, centerdot, CenterDot · U+00B7 (183) HTML 3.2 (centerdot and CenterDot added in HTML 5.0) HTMLlat1 ISOnum middle dot (center dot, Georgian comma, Greek middle dot)
cedil, Cedilla ¸ U+00B8 (184) HTML 3.2 (Cedilla added in HTML 5.0) HTMLlat1 ISOdia cedilla (spacing cedilla)
sup1 ¹ U+00B9 (185) HTML 3.2 HTMLlat1 ISOnum superscript one (superscript digit one)
ordm º U+00BA (186) HTML 3.2 HTMLlat1 ISOnum masculine ordinal indicator
raquo » U+00BB (187) HTML 3.2 HTMLlat1 ISOnum right-pointing double angle quotation mark (right pointing guillemet)
frac14 ¼ U+00BC (188) HTML 3.2 HTMLlat1 ISOnum vulgar fraction one quarter (fraction one quarter)
frac12, half ½ U+00BD (189) HTML 3.2 (half added in HTML 5.0) HTMLlat1 ISOnum vulgar fraction one half (fraction one half)
frac34 ¾ U+00BE (190) HTML 3.2 HTMLlat1 ISOnum vulgar fraction three quarters (fraction three quarters)
iquest ¿ U+00BF (191) HTML 3.2 HTMLlat1 ISOnum inverted question mark (turned question mark)
Agrave À U+00C0 (192) HTML 2.0 HTMLlat1 ISOlat1 Latin capital letter A with grave accent (Latin capital letter A grave)
Aacute Á U+00C1 (193) HTML 2.0 HTMLlat1 ISOlat1 Latin capital letter A with acute accent
Acirc  U+00C2 (194) HTML 2.0 HTMLlat1 ISOlat1 Latin capital letter A with circumflex
Atilde à U+00C3 (195) HTML 2.0 HTMLlat1 ISOlat1 Latin capital letter A with tilde
Auml Ä U+00C4 (196) HTML 2.0 HTMLlat1 ISOlat1 Latin capital letter A with diaeresis
Aring Å U+00C5 (197) HTML 2.0 HTMLlat1 ISOlat1 Latin capital letter A with ring above (Latin capital letter A ring)
AElig Æ U+00C6 (198) HTML 2.0 HTMLlat1 ISOlat1 Latin capital letter AE (Latin capital ligature AE)
Ccedil Ç U+00C7 (199) HTML 2.0 HTMLlat1 ISOlat1 Latin capital letter C with cedilla
Egrave È U+00C8 (200) HTML 2.0 HTMLlat1 ISOlat1 Latin capital letter E with grave accent
Eacute É U+00C9 (201) HTML 2.0 HTMLlat1 ISOlat1 Latin capital letter E with acute accent
Ecirc Ê U+00CA (202) HTML 2.0 HTMLlat1 ISOlat1 Latin capital letter E with circumflex
Euml Ë U+00CB (203) HTML 2.0 HTMLlat1 ISOlat1 Latin capital letter E with diaeresis
Igrave Ì U+00CC (204) HTML 2.0 HTMLlat1 ISOlat1 Latin capital letter I with grave accent
Iacute Í U+00CD (205) HTML 2.0 HTMLlat1 ISOlat1 Latin capital letter I with acute accent
Icirc Î U+00CE (206) HTML 2.0 HTMLlat1 ISOlat1 Latin capital letter I with circumflex
Iuml Ï U+00CF (207) HTML 2.0 HTMLlat1 ISOlat1 Latin capital letter I with diaeresis
ETH Ð U+00D0 (208) HTML 2.0 HTMLlat1 ISOlat1 Latin capital letter Eth
Ntilde Ñ U+00D1 (209) HTML 2.0 HTMLlat1 ISOlat1 Latin capital letter N with tilde
Ograve Ò U+00D2 (210) HTML 2.0 HTMLlat1 ISOlat1 Latin capital letter O with grave accent
Oacute Ó U+00D3 (211) HTML 2.0 HTMLlat1 ISOlat1 Latin capital letter O with acute accent
Ocirc Ô U+00D4 (212) HTML 2.0 HTMLlat1 ISOlat1 Latin capital letter O with circumflex
Otilde Õ U+00D5 (213) HTML 2.0 HTMLlat1 ISOlat1 Latin capital letter O with tilde
Ouml Ö U+00D6 (214) HTML 2.0 HTMLlat1 ISOlat1 Latin capital letter O with diaeresis
times × U+00D7 (215) HTML 3.2 HTMLlat1 ISOnum multiplication sign (times sign)
Oslash Ø U+00D8 (216) HTML 2.0 HTMLlat1 ISOlat1 Latin capital letter O with stroke (Latin capital letter O slash)
Ugrave Ù U+00D9 (217) HTML 2.0 HTMLlat1 ISOlat1 Latin capital letter U with grave accent
Uacute Ú U+00DA (218) HTML 2.0 HTMLlat1 ISOlat1 Latin capital letter U with acute accent
Ucirc Û U+00DB (219) HTML 2.0 HTMLlat1 ISOlat1 Latin capital letter U with circumflex
Uuml Ü U+00DC (220) HTML 2.0 HTMLlat1 ISOlat1 Latin capital letter U with diaeresis
Yacute Ý U+00DD (221) HTML 2.0 HTMLlat1 ISOlat1 Latin capital letter Y with acute accent
THORN Þ U+00DE (222) HTML 2.0 HTMLlat1 ISOlat1 Latin capital letter THORN
szlig ß U+00DF (223) HTML 2.0 HTMLlat1 ISOlat1 Latin small letter sharp s (ess-zed); see German Eszett
agrave à U+00E0 (224) HTML 2.0 HTMLlat1 ISOlat1 Latin small letter a with grave accent
aacute á U+00E1 (225) HTML 2.0 HTMLlat1 ISOlat1 Latin small letter a with acute accent
acirc â U+00E2 (226) HTML 2.0 HTMLlat1 ISOlat1 Latin small letter a with circumflex
atilde ã U+00E3 (227) HTML 2.0 HTMLlat1 ISOlat1 Latin small letter a with tilde
auml ä U+00E4 (228) HTML 2.0 HTMLlat1 ISOlat1 Latin small letter a with diaeresis
aring å U+00E5 (229) HTML 2.0 HTMLlat1 ISOlat1 Latin small letter a with ring above
aelig æ U+00E6 (230) HTML 2.0 HTMLlat1 ISOlat1 Latin small letter ae (Latin small ligature ae)
ccedil ç U+00E7 (231) HTML 2.0 HTMLlat1 ISOlat1 Latin small letter c with cedilla
egrave è U+00E8 (232) HTML 2.0 HTMLlat1 ISOlat1 Latin small letter e with grave accent
eacute é U+00E9 (233) HTML 2.0 HTMLlat1 ISOlat1 Latin small letter e with acute accent
ecirc ê U+00EA (234) HTML 2.0 HTMLlat1 ISOlat1 Latin small letter e with circumflex
euml ë U+00EB (235) HTML 2.0 HTMLlat1 ISOlat1 Latin small letter e with diaeresis
igrave ì U+00EC (236) HTML 2.0 HTMLlat1 ISOlat1 Latin small letter i with grave accent
iacute í U+00ED (237) HTML 2.0 HTMLlat1 ISOlat1 Latin small letter i with acute accent
icirc î U+00EE (238) HTML 2.0 HTMLlat1 ISOlat1 Latin small letter i with circumflex
iuml ï U+00EF (239) HTML 2.0 HTMLlat1 ISOlat1 Latin small letter i with diaeresis
eth ð U+00F0 (240) HTML 2.0 HTMLlat1 ISOlat1 Latin small letter eth
ntilde ñ U+00F1 (241) HTML 2.0 HTMLlat1 ISOlat1 Latin small letter n with tilde
ograve ò U+00F2 (242) HTML 2.0 HTMLlat1 ISOlat1 Latin small letter o with grave accent
oacute ó U+00F3 (243) HTML 2.0 HTMLlat1 ISOlat1 Latin small letter o with acute accent
ocirc ô U+00F4 (244) HTML 2.0 HTMLlat1 ISOlat1 Latin small letter o with circumflex
otilde õ U+00F5 (245) HTML 2.0 HTMLlat1 ISOlat1 Latin small letter o with tilde
ouml ö U+00F6 (246) HTML 2.0 HTMLlat1 ISOlat1 Latin small letter o with diaeresis
divide ÷ U+00F7 (247) HTML 3.2 HTMLlat1 ISOnum division sign (obelus, divide sign)
oslash ø U+00F8 (248) HTML 2.0 HTMLlat1 ISOlat1 Latin small letter o with stroke (Latin small letter o slash)
ugrave ù U+00F9 (249) HTML 2.0 HTMLlat1 ISOlat1 Latin small letter u with grave accent
uacute ú U+00FA (250) HTML 2.0 HTMLlat1 ISOlat1 Latin small letter u with acute accent
ucirc û U+00FB (251) HTML 2.0 HTMLlat1 ISOlat1 Latin small letter u with circumflex
uuml ü U+00FC (252) HTML 2.0 HTMLlat1 ISOlat1 Latin small letter u with diaeresis
yacute ý U+00FD (253) HTML 2.0 HTMLlat1 ISOlat1 Latin small letter y with acute accent
thorn þ U+00FE (254) HTML 2.0 HTMLlat1 ISOlat1 Latin small letter thorn
yuml ÿ U+00FF (255) HTML 2.0 HTMLlat1 ISOlat1 Latin small letter y with diaeresis
Amacr Ā U+0100 (256) HTML 5.0 Latin capital letter A with macron
amacr ā U+0101 (257) HTML 5.0 Latin small letter a with macron
Abreve Ă U+0102 (258) HTML 5.0 Latin capital letter A with breve
abreve ă U+0103 (259) HTML 5.0 Latin small letter a with breve
Aogon Ą U+0104 (260) HTML 5.0 Latin capital letter A with ogonek
aogon ą U+0105 (261) HTML 5.0 Latin small letter a with ogonek
Cacute Ć U+0106 (262) HTML 5.0 Latin capital letter C with acute accent
cacute ć U+0107 (263) HTML 5.0 Latin small letter c with acute accent
Ccirc Ĉ U+0108 (264) HTML 5.0 Latin capital letter C with circumflex
ccirc ĉ U+0109 (265) HTML 5.0 Latin small letter c with circumflex
Cdot Ċ U+010A (266) HTML 5.0 Latin capital letter C with dot
cdot ċ U+010B (267) HTML 5.0 Latin small letter c with dot
Ccaron Č U+010C (268) HTML 5.0 Latin capital letter C with caron
ccaron č U+010D (269) HTML 5.0 Latin small letter c with caron
Dcaron Ď U+010E (270) HTML 5.0 Latin capital letter D with caron
dcaron ď U+010F (271) HTML 5.0 Latin small letter d with caron
Dstrok Đ U+0110 (272) HTML 5.0 Latin capital letter D with stroke
dstrok đ U+0111 (273) HTML 5.0 Latin small letter d with stroke
Emacr Ē U+0112 (274) HTML 5.0 Latin capital letter E with macron
emacr ē U+0113 (275) HTML 5.0 Latin small letter e with macron
Edot Ė U+0116 (278) HTML 5.0 Latin capital letter E with dot
edot ė U+0117 (279) HTML 5.0 Latin small letter e with dot
Eogon Ę U+0118 (280) HTML 5.0 Latin capital letter E with ogonek
eogon ę U+0119 (281) HTML 5.0 Latin small letter e with ogonek
Ecaron Ě U+011A (282) HTML 5.0 Latin capital letter E with caron
ecaron ě U+011B (283) HTML 5.0 Latin small letter e with caron
Gcirc Ĝ U+011C (284) HTML 5.0 Latin capital letter G with circumflex
gcirc ĝ U+011D (285) HTML 5.0 Latin small letter g with circumflex
Gbreve Ğ U+011E (286) HTML 5.0 Latin capital letter G with breve
gbreve ğ U+011F (287) HTML 5.0 Latin small letter g with breve
Gdot Ġ U+0120 (288) HTML 5.0 Latin capital letter G with dot
gdot ġ U+0121 (289) HTML 5.0 Latin small letter g with dot
Gcedil Ģ U+0122 (290) HTML 5.0 Latin capital letter G with cedilla
Hcirc Ĥ U+0124 (292) HTML 5.0 Latin capital letter H with circumflex
hcirc ĥ U+0125 (293) HTML 5.0 Latin small letter h with circumflex
Hstrok Ħ U+0126 (294) HTML 5.0 Latin capital letter H with stroke
hstrok ħ U+0127 (295) HTML 5.0 Latin small letter h with stroke
Itilde Ĩ U+0128 (296) HTML 5.0 Latin capital letter I with tilde
itilde ĩ U+0129 (297) HTML 5.0 Latin small letter i with tilde
Imacr Ī U+012A (298) HTML 5.0 Latin capital letter I with macron
imacr ī U+012B (299) HTML 5.0 Latin small letter i with macron
Iogon Į U+012E (302) HTML 5.0 Latin capital letter I with ogonek
iogon į U+012F (303) HTML 5.0 Latin small letter i with ogonek
Idot İ U+0130 (304) HTML 5.0 Latin capital letter I with dot
imath, inodot ı U+0131 (305) HTML 5.0 Latin small letter dotless i (i mathematical)
IJlig IJ U+0132 (306) HTML 5.0 Latin capital letter IJ
ijlig ij U+0133 (307) HTML 5.0 Latin small letter ij
Jcirc Ĵ U+0134 (308) HTML 5.0 Latin capital letter J with circumflex
jcirc ĵ U+0135 (309) HTML 5.0 Latin small letter j with circumflex
Kcedil Ķ U+0136 (310) HTML 5.0 Latin capital letter K with cedilla
kcedil ķ U+0137 (311) HTML 5.0 Latin small letter k with cedilla
kgreen ĸ U+0138 (312) HTML 5.0 Latin small letter kra (k greenlandic)
Lacute Ĺ U+0139 (313) HTML 5.0 Latin capital letter L with acute accent
lacute ĺ U+013A (314) HTML 5.0 Latin small letter l with acute accent
Lcedil Ļ U+013B (315) HTML 5.0 Latin capital letter L with cedilla
lcedil ļ U+013C (316) HTML 5.0 Latin small letter l with cedilla
Lcaron Ľ U+013D (317) HTML 5.0 Latin capital letter L with caron
lcaron ľ U+013E (318) HTML 5.0 Latin small letter l with caron
Lmidot Ŀ U+013F (319) HTML 5.0 Latin capital letter L with middle dot
lmidot ŀ U+0140 (320) HTML 5.0 Latin small letter l with middle dot
Lstrok Ł U+0141 (321) HTML 5.0 Latin capital letter L with stroke
lstrok ł U+0142 (322) HTML 5.0 Latin small letter l with stroke
Nacute Ń U+0143 (323) HTML 5.0 Latin capital letter N with acute accent
nacute ń U+0144 (324) HTML 5.0 Latin small letter n with acute accent
Ncedil Ņ U+0145 (325) HTML 5.0 Latin capital letter N with cedilla
ncedil ņ U+0146 (326) HTML 5.0 Latin small letter n with cedilla
Ncaron Ň U+0147 (327) HTML 5.0 Latin capital letter N with caron
ncaron ň U+0148 (328) HTML 5.0 Latin small letter n with caron
napos ʼn U+0149 (329) HTML 5.0 Latin small letter n preceded by apostrophe
ENG Ŋ U+014A (330) HTML 5.0 Latin capital letter Eng
eng ŋ U+014B (331) HTML 5.0 Latin small letter eng
Omacr Ō U+014C (332) HTML 5.0 Latin capital letter O with macron
omacr ō U+014D (333) HTML 5.0 Latin small letter o with macron
Odblac Ő U+0150 (336) HTML 5.0 Latin capital letter O with double acute
odblac ő U+0151 (337) HTML 5.0 Latin small letter o with double acute
OElig Œ U+0152 (338) HTML 4.0 HTMLspecial ISOlat2 Latin capital ligature OE
oelig œ U+0153 (339) HTML 4.0 HTMLspecial ISOlat2 Latin small ligature oe
Racute Ŕ U+0154 (340) HTML 5.0 Latin capital letter R with acute accent
racute ŕ U+0155 (341) HTML 5.0 Latin small letter r with acute accent
Rcedil Ŗ U+0156 (342) HTML 5.0 Latin capital letter R with cedilla
rcedil ŗ U+0157 (343) HTML 5.0 Latin small letter r with cedilla
Rcaron Ř U+0158 (344) HTML 5.0 Latin capital letter R with caron
rcaron ř U+0159 (345) HTML 5.0 Latin small letter r with caron
Sacute Ś U+015A (346) HTML 5.0 Latin capital letter S with acute accent
sacute ś U+015B (347) HTML 5.0 Latin small letter s with acute accent
Scirc Ŝ U+015C (348) HTML 5.0 Latin capital letter S with circumflex
scirc ŝ U+015D (349) HTML 5.0 Latin small letter s with circumflex
Scedil Ş U+015E (350) HTML 5.0 Latin capital letter S with cedilla
scedil ş U+015F (351) HTML 5.0 Latin small letter s with cedilla
Scaron Š U+0160 (352) HTML 4.0 HTMLspecial ISOlat2 Latin capital letter S with caron
scaron š U+0161 (353) HTML 4.0 HTMLspecial ISOlat2 Latin small letter s with caron
Tcedil Ţ U+0162 (354) HTML 5.0 Latin capital letter T with cedilla
tcedil ţ U+0163 (355) HTML 5.0 Latin small letter t with cedilla
Tcaron Ť U+0164 (356) HTML 5.0 Latin capital letter T with caron
tcaron ť U+0165 (357) HTML 5.0 Latin small letter t with caron
Tstrok Ŧ U+0166 (358) HTML 5.0 Latin capital letter T with stroke
tstrok ŧ U+0167 (359) HTML 5.0 Latin small letter t with stroke
Utilde Ũ U+0168 (360) HTML 5.0 Latin capital letter U with tilde
utilde ũ U+0169 (361) HTML 5.0 Latin small letter u with tilde
Umacr Ū U+016A (362) HTML 5.0 Latin capital letter U with macron
umacr ū U+016B (363) HTML 5.0 Latin small letter u with macron
Ubreve Ŭ U+016C (364) HTML 5.0 Latin capital letter U with breve
ubreve ŭ U+016D (365) HTML 5.0 Latin small letter u with breve
Uring Ů U+016E (366) HTML 5.0 Latin capital letter U with ring above
uring ů U+016F (367) HTML 5.0 Latin small letter u with ring above
Udblac Ű U+0170 (368) HTML 5.0 Latin capital letter U with double acute
udblac ű U+0171 (369) HTML 5.0 Latin small letter u with double acute
Uogon Ų U+0172 (370) HTML 5.0 Latin capital letter U with ogonek
uogon ų U+0173 (371) HTML 5.0 Latin small letter u with ogonek
Wcirc Ŵ U+0174 (372) HTML 5.0 Latin capital letter W with circumflex
wcirc ŵ U+0175 (373) HTML 5.0 Latin small letter w with circumflex
Ycirc Ŷ U+0176 (374) HTML 5.0 Latin capital letter Y with circumflex
ycirc ŷ U+0177 (375) HTML 5.0 Latin small letter y with circumflex
Yuml Ÿ U+0178 (376) HTML 4.0 HTMLspecial ISOlat2 Latin capital letter Y with diaeresis
Zacute Ź U+0179 (377) HTML 5.0 Latin capital letter Z with acute accent
zacute ź U+017A (378) HTML 5.0 Latin small letter z with acute accent
Zdot Ż U+017B (379) HTML 5.0 Latin capital letter Z with dot
zdot ż U+017C (380) HTML 5.0 Latin small letter z with dot
Zcaron Ž U+017D (381) HTML 5.0 Latin capital letter Z with caron
zcaron ž U+017E (382) HTML 5.0 Latin small letter z with caron
fnof ƒ U+0192 (402) HTML 4.0 HTMLsymbol ISOtech Latin small letter f with hook (function, florin)
imped Ƶ U+01B5 (437) HTML 5.0 Latin capital letter Z with stroke
gacute ǵ U+01F5 (501) HTML 5.0 Latin small letter g with acute accent
jmath ȷ U+0237 (567) HTML 5.0 Latin small letter dotless j (j mathematical)
circ ˆ U+02C6 (710) HTML 4.0 HTMLspecial ISOpub modifier letter circumflex accent
caron, Hacek ˇ U+02C7 (711) HTML 5.0 caron (hacek)
breve, Breve ˘ U+02D8 (728) HTML 5.0 breve
dot, DiacriticalDot ˙ U+02D9 (729) HTML 5.0 dot (diacritical dot)
ring ˚ U+02DA (730) HTML 5.0 ring
ogon ˛ U+02DB (731) HTML 5.0 ogonek
tilde, DiacriticalTilde ˜ U+02DC (732) HTML 4.0 (DiacriticalTilde added in HTML 5.0) HTMLspecial ISOdia small tilde (diacritical tilde)
dblac, DiacriticalDoubleAcute ˝ U+02DD (733) HTML 5.0 double acute (diacritical double acute)
DownBreve ̑ U+0311 (785) HTML 5.0 combining inverted breve (combining down breve)
UnderBar̲ U+0332 (818) HTML 5.0 combining low line (combining underbar)
Alpha Α U+0391 (913) HTML 4.0 HTMLsymbol Greek capital letter Alpha
Beta Β U+0392 (914) HTML 4.0 HTMLsymbol Greek capital letter Beta
Gamma Γ U+0393 (915) HTML 4.0 HTMLsymbol ISOgrk3 Greek capital letter Gamma
Delta Δ U+0394 (916) HTML 4.0 HTMLsymbol ISOgrk3 Greek capital letter Delta
Epsilon Ε U+0395 (917) HTML 4.0 HTMLsymbol Greek capital letter Epsilon
Zeta Ζ U+0396 (918) HTML 4.0 HTMLsymbol Greek capital letter Zeta
Eta Η U+0397 (919) HTML 4.0 HTMLsymbol Greek capital letter Eta
Theta Θ U+0398 (920) HTML 4.0 HTMLsymbol ISOgrk3 Greek capital letter Theta
Iota Ι U+0399 (921) HTML 4.0 HTMLsymbol Greek capital letter Iota
Kappa Κ U+039A (922) HTML 4.0 HTMLsymbol Greek capital letter Kappa
Lambda Λ U+039B (923) HTML 4.0 HTMLsymbol ISOgrk3 Greek capital letter Lambda
Mu Μ U+039C (924) HTML 4.0 HTMLsymbol Greek capital letter Mu
Nu Ν U+039D (925) HTML 4.0 HTMLsymbol Greek capital letter Nu
Xi Ξ U+039E (926) HTML 4.0 HTMLsymbol ISOgrk3 Greek capital letter Xi
Omicron Ο U+039F (927) HTML 4.0 HTMLsymbol Greek capital letter Omicron
Pi Π U+03A0 (928) HTML 4.0 HTMLsymbol Greek capital letter Pi
Rho Ρ U+03A1 (929) HTML 4.0 HTMLsymbol Greek capital letter Rho
Sigma Σ U+03A3 (931) HTML 4.0 HTMLsymbol ISOgrk3 Greek capital letter Sigma
Tau Τ U+03A4 (932) HTML 4.0 HTMLsymbol Greek capital letter Tau
Upsilon Υ U+03A5 (933) HTML 4.0 HTMLsymbol ISOgrk3 Greek capital letter Upsilon
Phi Φ U+03A6 (934) HTML 4.0 HTMLsymbol ISOgrk3 Greek capital letter Phi
Chi Χ U+03A7 (935) HTML 4.0 HTMLsymbol Greek capital letter Chi
Psi Ψ U+03A8 (936) HTML 4.0 HTMLsymbol ISOgrk3 Greek capital letter Psi
Omega Ω U+03A9 (937) HTML 4.0 HTMLsymbol ISOgrk3 Greek capital letter Omega
alpha α U+03B1 (945) HTML 4.0 HTMLsymbol ISOgrk3 Greek small letter alpha
beta β U+03B2 (946) HTML 4.0 HTMLsymbol ISOgrk3 Greek small letter beta
gamma γ U+03B3 (947) HTML 4.0 HTMLsymbol ISOgrk3 Greek small letter gamma
delta δ U+03B4 (948) HTML 4.0 HTMLsymbol ISOgrk3 Greek small letter delta
epsilon, epsiv, varepsilon ε U+03B5 (949) HTML 4.0 (epsiv and varepsilon added in HTML 5.0) HTMLsymbol ISOgrk3 Greek small letter epsilon (variant epsilon)
zeta ζ U+03B6 (950) HTML 4.0 HTMLsymbol ISOgrk3 Greek small letter zeta
eta η U+03B7 (951) HTML 4.0 HTMLsymbol ISOgrk3 Greek small letter eta
theta θ U+03B8 (952) HTML 4.0 HTMLsymbol ISOgrk3 Greek small letter theta
iota ι U+03B9 (953) HTML 4.0 HTMLsymbol ISOgrk3 Greek small letter iota
kappa κ U+03BA (954) HTML 4.0 HTMLsymbol ISOgrk3 Greek small letter kappa
lambda λ U+03BB (955) HTML 4.0 HTMLsymbol ISOgrk3 Greek small letter lambda
mu μ U+03BC (956) HTML 4.0 HTMLsymbol ISOgrk3 Greek small letter mu
nu ν U+03BD (957) HTML 4.0 HTMLsymbol ISOgrk3 Greek small letter nu
xi ξ U+03BE (958) HTML 4.0 HTMLsymbol ISOgrk3 Greek small letter xi
omicron ο U+03BF (959) HTML 4.0 HTMLsymbol NEW Greek small letter omicron
pi π U+03C0 (960) HTML 4.0 HTMLsymbol ISOgrk3 Greek small letter pi
rho ρ U+03C1 (961) HTML 4.0 HTMLsymbol ISOgrk3 Greek small letter rho
sigmaf, sigmav, varsigma ς U+03C2 (962) HTML 4.0 (sigmav and varsigma added in HTML 5.0) HTMLsymbol ISOgrk3 Greek small letter final sigma (variant sigma)
sigma σ U+03C3 (963) HTML 4.0 HTMLsymbol ISOgrk3 Greek small letter sigma
tau τ U+03C4 (964) HTML 4.0 HTMLsymbol ISOgrk3 Greek small letter tau
upsilon, upsi υ U+03C5 (965) HTML 4.0 (upsi added in HTML 5.0) HTMLsymbol ISOgrk3 Greek small letter upsilon
phi φ U+03C6 (966) HTML 4.0 HTMLsymbol ISOgrk3 Greek small letter phi
chi χ U+03C7 (967) HTML 4.0 HTMLsymbol ISOgrk3 Greek small letter chi
psi ψ U+03C8 (968) HTML 4.0 HTMLsymbol ISOgrk3 Greek small letter psi
omega ω U+03C9 (969) HTML 4.0 HTMLsymbol ISOgrk3 Greek small letter omega
thetasym, thetav, vartheta ϑ U+03D1 (977) HTML 4.0 (thetav and vartheta added in HTML 5.0) HTMLsymbol NEW Greek theta symbol (variant theta)
upsih, Upsi ϒ U+03D2 (978) HTML 4.0 (Upsi added in HTML 5.0) HTMLsymbol NEW Greek Upsilon with hook symbol
straightphi ϕ U+03D5 (981) HTML 5.0 Greek phi symbol (straight phi)
piv, varpi ϖ U+03D6 (982) HTML 4.0 (varpi added in HTML 5.0) HTMLsymbol ISOgrk3 Greek pi symbol (variant pi)
Gammad Ϝ U+03DC (988) HTML 5.0 Greek capital letter digamma
gammad, digamma ϝ U+03DD (989) HTML 5.0 Greek small letter digamma
kappav, varkappa ϰ U+03F0 (1008) HTML 5.0 Greek kappa symbol (variant kappa)
rhov, varrho ϱ U+03F1 (1009) HTML 5.0 Greek rho symbol (variant rho)
epsi, straightepsilon ϵ U+03F5 (1013) HTML 5.0 Greek lunate epsilon symbol (epsilon, straight epsilon)
bepsi, backepsilon ϶ U+03F6 (1014) HTML 5.0 Greek reversed lunate epsilon symbol (back epsilon)
IOcy Ё U+0401 (1025) HTML 5.0 Cyrillic capital letter Io
DJcy Ђ U+0402 (1026) HTML 5.0 Cyrillic capital letter Dje
GJcy Ѓ U+0403 (1027) HTML 5.0 Cyrillic capital letter Gje
Jukcy Є U+0404 (1028) HTML 5.0 Cyrillic capital letter Ukrainian Ie
DScy Ѕ U+0405 (1029) HTML 5.0 Cyrillic capital letter Dze
Iukcy І U+0406 (1030) HTML 5.0 Cyrillic capital letter Byelorussian-Ukrainian I (Ukrainian I)
YIcy Ї U+0407 (1031) HTML 5.0 Cyrillic capital letter yi
Jsercy Ј U+0408 (1032) HTML 5.0 Cyrillic capital letter Je (Serbian J)
LJcy Љ U+0409 (1033) HTML 5.0 Cyrillic capital letter Lje
NJcy Њ U+040A (1034) HTML 5.0 Cyrillic capital letter Nje
TSHcy Ћ U+040B (1035) HTML 5.0 Cyrillic capital letter Tshe
KJcy Ќ U+040C (1036) HTML 5.0 Cyrillic capital letter Kje
Ubrcy Ў U+040E (1038) HTML 5.0 Cyrillic capital letter short U (U breve)
DZcy Џ U+040F (1039) HTML 5.0 Cyrillic capital letter Dzhe
Acy А U+0410 (1040) HTML 5.0 Cyrillic capital letter A
Bcy Б U+0411 (1041) HTML 5.0 Cyrillic capital letter Be
Vcy В U+0412 (1042) HTML 5.0 Cyrillic capital letter Ve
Gcy Г U+0413 (1043) HTML 5.0 Cyrillic capital letter Ge
Dcy Д U+0414 (1044) HTML 5.0 Cyrillic capital letter De
IEcy Е U+0415 (1045) HTML 5.0 Cyrillic capital letter Ie
ZHcy Ж U+0416 (1046) HTML 5.0 Cyrillic capital letter Zhe
Zcy З U+0417 (1047) HTML 5.0 Cyrillic capital letter Ze
Icy И U+0418 (1048) HTML 5.0 Cyrillic capital letter I
Jcy Й U+0419 (1049) HTML 5.0 Cyrillic capital letter short I (J)
Kcy К U+041A (1050) HTML 5.0 Cyrillic capital letter Ka
Lcy Л U+041B (1051) HTML 5.0 Cyrillic capital letter El
Mcy М U+041C (1052) HTML 5.0 Cyrillic capital letter Em
Ncy Н U+041D (1053) HTML 5.0 Cyrillic capital letter En
Ocy О U+041E (1054) HTML 5.0 Cyrillic capital letter O
Pcy П U+041F (1055) HTML 5.0 Cyrillic capital letter Pe
Rcy Р U+0420 (1056) HTML 5.0 Cyrillic capital letter Er
Scy С U+0421 (1057) HTML 5.0 Cyrillic capital letter Es
Tcy Т U+0422 (1058) HTML 5.0 Cyrillic capital letter Te
Ucy У U+0423 (1059) HTML 5.0 Cyrillic capital letter U
Fcy Ф U+0424 (1060) HTML 5.0 Cyrillic capital letter Ef
KHcy Х U+0425 (1061) HTML 5.0 Cyrillic capital letter Ha (Kha)
TScy Ц U+0426 (1062) HTML 5.0 Cyrillic capital letter Tse
CHcy Ч U+0427 (1063) HTML 5.0 Cyrillic capital letter Che
SHcy Ш U+0428 (1064) HTML 5.0 Cyrillic capital letter Sha
SHCHcy Щ U+0429 (1065) HTML 5.0 Cyrillic capital letter Shcha
HARDcy Ъ U+042A (1066) HTML 5.0 Cyrillic capital letter Hard Sign
Ycy Ы U+042B (1067) HTML 5.0 Cyrillic capital letter Yeru (Y)
SOFTcy Ь U+042C (1068) HTML 5.0 Cyrillic capital letter Soft Sign
Ecy Э U+042D (1069) HTML 5.0 Cyrillic capital letter E
YUcy Ю U+042E (1070) HTML 5.0 Cyrillic capital letter Yu
YAcy Я U+042F (1071) HTML 5.0 Cyrillic capital letter Ya
acy а U+0430 (1072) HTML 5.0 Cyrillic small letter a
bcy б U+0431 (1073) HTML 5.0 Cyrillic small letter be
vcy в U+0432 (1074) HTML 5.0 Cyrillic small letter ve
gcy г U+0433 (1075) HTML 5.0 Cyrillic small letter ge
dcy д U+0434 (1076) HTML 5.0 Cyrillic small letter de
iecy е U+0435 (1077) HTML 5.0 Cyrillic small letter ie
zhcy ж U+0436 (1078) HTML 5.0 Cyrillic small letter zhe
zcy з U+0437 (1079) HTML 5.0 Cyrillic small letter ze
icy и U+0438 (1080) HTML 5.0 Cyrillic small letter i
jcy й U+0439 (1081) HTML 5.0 Cyrillic small letter short i (j)
kcy к U+043A (1082) HTML 5.0 Cyrillic small letter ka
lcy л U+043B (1083) HTML 5.0 Cyrillic small letter el
mcy м U+043C (1084) HTML 5.0 Cyrillic small letter em
ncy н U+043D (1085) HTML 5.0 Cyrillic small letter en
ocy о U+043E (1086) HTML 5.0 Cyrillic small letter o
pcy п U+043F (1087) HTML 5.0 Cyrillic small letter pe
rcy р U+0440 (1088) HTML 5.0 Cyrillic small letter er
scy с U+0441 (1089) HTML 5.0 Cyrillic small letter es
tcy т U+0442 (1090) HTML 5.0 Cyrillic small letter te
ucy у U+0443 (1091) HTML 5.0 Cyrillic small letter u
fcy ф U+0444 (1092) HTML 5.0 Cyrillic small letter ef
khcy х U+0445 (1093) HTML 5.0 Cyrillic small letter ha (kha)
tscy ц U+0446 (1094) HTML 5.0 Cyrillic small letter tse
chcy ч U+0447 (1095) HTML 5.0 Cyrillic small letter che
shcy ш U+0448 (1096) HTML 5.0 Cyrillic small letter sha
shchcy щ U+0449 (1097) HTML 5.0 Cyrillic small letter shcha
hardcy ъ U+044A (1098) HTML 5.0 Cyrillic small letter hard sign
ycy ы U+044B (1099) HTML 5.0 Cyrillic small letter yeru (y)
softcy ь U+044C (1100) HTML 5.0 Cyrillic small letter soft sign
ecy э U+044D (1101) HTML 5.0 Cyrillic small letter e
yucy ю U+044E (1102) HTML 5.0 Cyrillic small letter yu
yacy я U+044F (1103) HTML 5.0 Cyrillic small letter ya
iocy ё U+0451 (1105) HTML 5.0 Cyrillic small letter io
djcy ђ U+0452 (1106) HTML 5.0 Cyrillic small letter dje
gjcy ѓ U+0453 (1107) HTML 5.0 Cyrillic small letter gje
jukcy є U+0454 (1108) HTML 5.0 Cyrillic small letter ukrainian ie
dscy ѕ U+0455 (1109) HTML 5.0 Cyrillic small letter dze
iukcy і U+0456 (1110) HTML 5.0 Cyrillic small letter Byelorussian-Ukrainian i (Ukrainian i)
yicy ї U+0457 (1111) HTML 5.0 Cyrillic small letter yi
jsercy ј U+0458 (1112) HTML 5.0 Cyrillic small letter je (Serbian j)
ljcy љ U+0459 (1113) HTML 5.0 Cyrillic small letter lje
njcy њ U+045A (1114) HTML 5.0 Cyrillic small letter nje
tshcy ћ U+045B (1115) HTML 5.0 Cyrillic small letter tshe
kjcy ќ U+045C (1116) HTML 5.0 Cyrillic small letter kje
ubrcy ў U+045E (1118) HTML 5.0 Cyrillic small letter short u (u breve)
dzcy џ U+045F (1119) HTML 5.0 Cyrillic small letter dzhe
enspblue| }} U+2002 (8194) HTML 4.0 HTMLspecial ISOpub en space
emspblue| }} U+2003 (8195) HTML 4.0 HTMLspecial ISOpub em space
emsp13blue| }} U+2004 (8196) HTML 5.0 three-per-em space (1/3 em space)
emsp14blue| }} U+2005 (8197) HTML 5.0 four-per-em space (1/4 em space)
numspblue| }} U+2007 (8199) HTML 5.0 figure space (number space)
puncspblue| }} U+2008 (8200) HTML 5.0 punctuation space
thinsp, ThinSpaceblue| }} U+2009 (8201) HTML 4.0 (ThinSpace added in HTML 5.0) HTMLspecial ISOpub thin space
hairsp, VeryThinSpaceblue| }} U+200A (8202) HTML 5.0 hair space (very thin space)
ZeroWidthSpace, NegativeVeryThinSpace, NegativeThinSpace, NegativeMediumSpace, NegativeThickSpace  U+200B (8203) HTML 5.0 zero-width space (negative space)
zwnj  U+200C (8204) HTML 4.0 HTMLspecial NEW RFC 2070 zero-width non-joiner
zwj  U+200D (8205) HTML 4.0 HTMLspecial NEW RFC 2070 zero-width joiner
lrm  U+200E (8206) HTML 4.0 HTMLspecial NEW RFC 2070 left-to-right mark
rlm  U+200F (8207) HTML 4.0 HTMLspecial NEW RFC 2070 right-to-left mark
hyphen, dash U+2010 (8218) HTML 5.0 hyphen, dash
ndash U+2013 (8211) HTML 4.0 HTMLspecial ISOpub en dash
mdash U+2014 (8212) HTML 4.0 HTMLspecial ISOpub em dash
horbar U+2015 (8213) HTML 5.0 Horizontal bar
Verbar, Vert U+2016 (8214) HTML 5.0 Vertical bar
lsquo, OpenCurlyQuote U+2018 (8216) HTML 4.0 (OpenCurlyQuote added in HTML 5.0) HTMLspecial ISOnum left single quotation mark (open curly quote)
rsquo, rsquor, CloseCurlyQuote U+2019 (8217) HTML 4.0 (rsquor and CloseCurlyQuote added in HTML 5.0) HTMLspecial ISOnum right single quotation mark (close curly quote)
sbquo, lsquor U+201A (8218) HTML 4.0 (lsquor added in HTML 5.0) HTMLspecial NEW single low-9 quotation mark
ldquo, OpenCurlyDoubleQuote U+201C (8220) HTML 4.0 (OpenCurlyDoubleQuote added in HTML 5.0) HTMLspecial ISOnum left double quotation mark (open curly double quote)
rdquo, rdquor, CloseCurlyDoubleQuote U+201D (8221) HTML 4.0 HTMLspecial (rdquor and CloseCurlyDoubleQuote added in HTML 5.0) ISOnum right double quotation mark (close curly double quote)
bdquo, ldquor U+201E (8222) HTML 4.0 (ldquor added in HTML 5.0) HTMLspecial NEW double low-9 quotation mark
dagger U+2020 (8224) HTML 4.0 HTMLspecial ISOpub dagger, obelisk
Dagger, ddagger U+2021 (8225) HTML 4.0 (ddagger added in HTML 5.0) HTMLspecial ISOpub double dagger, double obelisk
bull, bullet U+2022 (8226) HTML 4.0 (bullet added in HTML 5.0) HTMLspecial ISOpub bullet (black small circle)
nldr U+2025 (8229) HTML 5.0 two dot leader (n leader)
hellip, mldr U+2026 (8230) HTML 4.0 (mldr added in HTML 5.0) HTMLsymbol ISOpub horizontal ellipsis (three dot leader, m leader)
permil U+2030 (8240) HTML 4.0 HTMLspecial ISOtech per mille sign
pertenk U+2031 (8241) HTML 5.0 per ten thousand sign (basis point)
prime U+2032 (8242) HTML 4.0 HTMLsymbol ISOtech prime (arcminutes, feet)
Prime U+2033 (8243) HTML 4.0 HTMLsymbol ISOtech double prime (arcseconds, inches)
tprime U+2034 (8244) HTML 5.0 triple prime (thirds, lignes)
bprime, backprime U+2035 (8245) HTML 5.0 reversed prime (back prime)
lsaquo U+2039 (8249) HTML 4.0 HTMLspecial ISO proposed single left-pointing angle quotation mark
rsaquo U+203A (8250) HTML 4.0 HTMLspecial ISO proposed single right-pointing angle quotation mark
oline U+203E (8254) HTML 4.0 HTMLsymbol NEW overline (spacing overscore)
caret U+2041 (8257) HTML 5.0 caret insertion point
hybull U+2043 (8259) HTML 5.0 hyphen bullet
frasl U+2044 (8260) HTML 4.0 HTMLsymbol NEW fraction slash (solidus)
bsemi U+204F (8271) HTML 5.0 reversed semicolon (backward semicolon)
qprime U+2057 (8279) HTML 5.0 quadruple prime (fourths)
MediumSpaceblue| }} U+205F (8287) HTML 5.0 medium mathematical space (medium space)
NoBreak  U+2060 (8288) HTML 5.0 word joiner (no break)
ApplyFunction, af  U+2061 (8289) HTML 5.0 function application (apply function)
InvisibleTimes, it  U+2062 (8290) HTML 5.0 invisible times
InvisibleComma, ic  U+2063 (8291) HTML 5.0 invisible comma
euro U+20AC (8364) HTML 4.0 HTMLspecial NEW euro sign
tdot, TripleDot U+20DB (8411) HTML 5.0 combining three dots above
DotDot U+20DC (8412) HTML 5.0 combining four dots above
Copf, complexes U+2102 (8450) HTML 5.0 double-struck capital C (Complex number)
incare U+2105 (8453) HTML 5.0 Care of
gscr U+210A (8458) HTML 5.0 script small g
hamilt, HilbertSpace, Hscr U+210B (8459) HTML 5.0 script capital H (Hilbert space, Hamiltonian mechanics)
Hfr, PoincarePlane U+210C (8460) HTML 5.0 black-letter capital H (Fraktur capital H, Poincare plane)
quaternions, Hopf U+210D (8461) HTML 5.0 double-struck capital H (Quaternion)
planckh U+210E (8462) HTML 5.0 Planck constant
planck, hbar, plankv, hslash U+210F (8463) HTML 5.0 Planck constant over two pi (h bar, h slash, Planck variant)
Iscr, imagline U+2110 (8464) HTML 5.0 script capital I (image line)
image, Im, imagpart, Ifr U+2111 (8465) HTML 4.0 (Im, imagpart, and Ifr added in HTML 5.0) HTMLsymbol ISOamso black-letter capital I (Fraktur capital I, imaginary part)
Lscr, lagram, Laplacetrf U+2112 (8466) HTML 5.0 script capital L (Lagrangian mechanics, Laplace transform)
ell U+2113 (8467) HTML 5.0 script small l (ell, a mathematical symbol)
Nopf, naturals U+2115 (8469) HTML 5.0 double-struck capital N (Natural number)
numero U+2116 (8470) HTML 5.0 Numero sign
copysr U+2117 (8471) HTML 5.0 Sound recording copyright symbol
weierp, wp U+2118 (8472) HTML 4.0 (wp added in HTML 5.0) HTMLsymbol ISOamso script capital P (power set, Weierstrass p)
Popf, primes U+2119 (8473) HTML 5.0 double-struck capital P (Prime number)
rationals, Qopf U+211A (8474) HTML 5.0 double-struck capital Q (Rational number)
Rscr, realine U+211B (8475) HTML 5.0 script capital R (Riemann integral)
real, Re, realpart, Rfr U+211C (8476) HTML 4.0 (Re, realpart, and Rfr added in HTML 5.0) HTMLsymbol ISOamso black-letter capital R (Fraktur capital R, real part symbol)
reals, Ropf U+211D (8477) HTML 5.0 double-struck capital R (Real number)
rx U+211E (8478) HTML 5.0 Perscription Take (Rx)
trade U+2122 (8482) HTML 4.0 HTMLsymbol ISOnum trademark symbol
integers, Zopf U+2124 (8484) HTML 5.0 double-struck capital Z (Integer)
ohm Ω U+2126 (8486) HTML 5.0 (Ohm)
mho U+2127 (8487) HTML 5.0 (Mho)
Zfr, zeetrf U+2128 (8488) HTML 5.0 black-letter capital Z (Fraktur capital Z, dram)
iiota U+2129 (8489) HTML 5.0 turned Greek small letter iota (inverted iota)
angst Å U+212B (8491) HTML 5.0 Angstrom
bernou, Bernoullis, Bscr U+212C (8492) HTML 5.0 script capital B (Bernoulli polynomials)
Cfr, Cayleys U+212D (8493) HTML 5.0 black-letter capital C (Fraktur capital C)
escr U+212F (8495) HTML 5.0 script small e
Escr, expectation U+2130 (8496) HTML 5.0 script capital E (electromotive force)
Fscr, Fouriertrf U+2131 (8497) HTML 5.0 script capital F (Fourier transform)
phmmat, Mscr, Mellintrf U+2133 (8499) HTML 5.0 script capital M (Mellin transform, M-matrix (physics))
order, orderof, oscr U+2134 (8500) HTML 5.0 script small o (order, of inferior order to)
alefsym, aleph U+2135 (8501) HTML 4.0 (aleph added in HTML 5.0) HTMLsymbol NEW alef symbol (first transfinite cardinal)
beth U+2136 (8502) HTML 5.0 Bet symbol (Beth symbol)
gimel U+2137 (8503) HTML 5.0 Gimel symbol
daleth U+2138 (8504) HTML 5.0 Dalet symbol (Daleth symbol)
CapitalDifferentialD, DD U+2145 (8517) HTML 5.0 double-struck italic capital D
DifferentialD, dd U+2146 (8518) HTML 5.0 double-struck italic small d
ExponentialE, exponentiale, ee U+2147 (8519) HTML 5.0 double-struck italic small e
ImaginaryI, ii U+2148 (8520) HTML 5.0 double-struck italic small i
frac13 U+2153 (8531) HTML 5.0 vulgar fraction one third (fraction one third)
frac23 U+2154 (8532) HTML 5.0 vulgar fraction two thirds (fraction two thirds)
frac15 U+2155 (8533) HTML 5.0 vulgar fraction one fifth (fraction one fifth)
frac25 U+2156 (8534) HTML 5.0 vulgar fraction two fifths (fraction two fifths)
frac35 U+2157 (8535) HTML 5.0 vulgar fraction three fifths (fraction three fifths)
frac45 U+2158 (8536) HTML 5.0 vulgar fraction four fifths (fraction four fifths)
frac16 U+2159 (8537) HTML 5.0 vulgar fraction one sixth (fraction one sixth)
frac56 U+215A (8538) HTML 5.0 vulgar fraction five sixths (fraction five sixths)
frac18 U+215B (8539) HTML 5.0 vulgar fraction one eighth (fraction one eighth)
frac38 U+215C (8540) HTML 5.0 vulgar fraction three eighths (fraction three eighths)
frac58 U+215D (8541) HTML 5.0 vulgar fraction five eighths (fraction five eighths)
frac78 U+215E (8542) HTML 5.0 vulgar fraction seven eighths (fraction seven eighths)
larr, leftarrow, LeftArrow, slarr, ShortLeftArrow U+2190 (8592) HTML 4.0 (leftarrow, LeftArrow, slarr, and ShortLeftArrow added in HTML 5.0) HTMLsymbol ISOnum leftwards arrow
uarr, uparrow, UpArrow, ShortUpArrow U+2191 (8593) HTML 4.0 HTMLsymbol (uparrow, UpArrow, and ShortUpArrow added in HTML 5.0) ISOnum upwards arrow
rarr, rightarrow, RightArrow, srarr, ShortRightArrow U+2192 (8594) HTML 4.0 (rightarrow, RightArrow, srarr, and ShortRightArrow HTMLsymbol ISOnum rightwards arrow
darr, downarrow, DownArrow, ShortDownArrow U+2193 (8595) HTML 4.0 HTMLsymbol (downarrow, DownArrow, and ShortDownArrow added in HTML 5.0) ISOnum downwards arrow
harr, leftrightarrow, LeftRightArrow U+2194 (8596) HTML 4.0 (leftrightarrow and LeftRightArrow added in HTML 5.0) HTMLsymbol ISOamsa left right arrow (horizontal arrow)
varr, updownarrow, UpDownArrow U+2195 (8597) HTML 5.0 up down arrow (vertical arrow)
nwarr, UpperLeftArrow, nwarrow U+2196 (8598) HTML 5.0 north west arrow (upper left arrow)
nearr, UpperRightArrow, nearrow U+2197 (8599) HTML 5.0 north east arrow (upper right arrow)
searr, searrow, LowerRightArrow U+2198 (8600) HTML 5.0 south east arrow (lower right arrow)
swarr, swarrow, LowerLeftArrow U+2199 (8601) HTML 5.0 south west arrow (lower left arrow)
nlarr, nleftarrow U+219A (8602) HTML 5.0 leftwards arrow with stroke (not left arrow)
nrarr, nrightarrow U+219B (8603) HTML 5.0 rightwards arrow with stroke (not right arrow)
rarrw, rightsquigarrow U+219D (8605) HTML 5.0 rightwards wave arrow (rightwards squiggle arrow)
Larr, twoheadleftarrow U+219E (8606) HTML 5.0 leftwards two headed arrow
Uarr U+219F (8607) HTML 5.0 upwards two headed arrow
Rarr, twoheadrightarrow U+21A0 (8608) HTML 5.0 rightwards two headed arrow
Darr U+21A1 (8609) HTML 5.0 downwards two headed arrow
larrtl, leftarrowtail U+21A2 (8610) HTML 5.0 leftwards arrow with tail
rarrtl, rightarrowtail U+21A3 (8611) HTML 5.0 rightwards arrow with tail
LeftTeeArrow, mapstoleft U+21A4 (8612) HTML 5.0 leftwards arrow from bar (maps to leftward, left tee arrow)
UpTeeArrow, mapstoup U+21A5 (8613) HTML 5.0 upwards arrow from bar (maps to upward, up tee arrow)
map, RightTeeArrow, mapsto U+21A6 (8614) HTML 5.0 rightwards arrow from bar (maps to, right tee arrow)
DownTeeArrow, mapstodown U+21A7 (8615) HTML 5.0 downwards arrow from bar (maps to downward, down tee arrow)
larrhk, hookleftarrow U+21A9 (8617) HTML 5.0 leftwards arrow with hook
rarrhk, hookrightarrow U+21AA (8618) HTML 5.0 rightwards arrow with hook
larrlp, looparrowleft U+21AB (8619) HTML 5.0 leftwards arrow with loop
rarrlp, looparrowright U+21AC (8620) HTML 5.0 rightwards arrow with loop
harrw, leftrightsquigarrow U+21AD (8621) HTML 5.0 left right wave arrow (horizontal wave arrow, left right squiggle arrow)
nharrow, nleftrightarrow U+21AE (8622) HTML 5.0 left right arrow with stroke (not horizontal arrow, not left right arrow)
lsh, Lsh U+21B0 (8624) HTML 5.0 upwards arrow with tip leftwards (left shift)
rsh, Rsh U+21B1 (8625) HTML 5.0 upwards arrow with tip rightwards (right shift)
ldsh U+21B2 (8626) HTML 5.0 downwards arrow with tip leftwards (left down shift)
rdsh U+21B3 (8627) HTML 5.0 downwards arrow with tip rightwards (right down shift)
crarr U+21B5 (8629) HTML 4.0 HTMLsymbol NEW downwards arrow with corner leftwards (carriage return)
cularr, curvearrowleft U+21B6 (8630) HTML 5.0 anticlockwise top semicircle arrow (curve arrow left)
curarr, curvearrowright U+21B7 (8631) HTML 5.0 clockwise top semicircle arrow (curve arrow right)
olarr, circlearrowleft U+21BA (8634) HTML 5.0 anticlockwise open circle arrow (circle arrow left, open left arrow)
orarr, circlearrowright U+21BB (8635) HTML 5.0 clockwise open circle arrow (circle arrow right, open right arrow)
lharu, LeftVector, leftharpoonup U+21BC (8636) HTML 5.0 leftwards harpoon with barb upwards (left vector)
lhard, leftharpoondown, DownLeftVector U+21BD (8637) HTML 5.0 leftwards harpoon with barb downwards (down left vector)
uharr, upharpoonright, RightUpVector U+21BE (8638) HTML 5.0 upwards harpoon with barb rightwards (right up vector)
uharl, upharpoonleft, LeftUpVector U+21BF (8639) HTML 5.0 upwards harpoon with barb leftwards (left up vector)
rharu, RightVector, rightharpoonup U+21C0 (8640) HTML 5.0 rightwards harpoon with barb upwards (right vector)
rhard, rightharpoondown, DownRightVector U+21C1 (8641) HTML 5.0 rightwards harpoon with barb downwards (down right vector)
dharr, RightDownVector, downharpoonright U+21C2 (8642) HTML 5.0 downwards harpoon with barb rightwards (right down vector)
dharl, LeftDownVector, downharpoonleft U+21C3 (8643) HTML 5.0 downwards harpoon with barb leftwards (left down vector)
rlarr, rightleftarrows, RightArrowLeftArrow U+21C4 (8644) HTML 5.0 rightwards arrow over leftwards arrow
udarr, UpArrowDownArrow U+21C5 (8645) HTML 5.0 upwards arrow leftwards of downwards arrow
lrarr, leftrightarrows, LeftArrowRightArrow U+21C6 (8646) HTML 5.0 leftwards arrow over rightwards arrow
llarr, leftleftarrows U+21C7 (8647) HTML 5.0 leftwards paired arrows
uuarr, upuparrows U+21C8 (8648) HTML 5.0 upwards paired arrows
rrarr, rightrightarrows U+21C9 (8649) HTML 5.0 rightwards paired arrows
ddarr, downdownarrows U+21CA (8650) HTML 5.0 downwards paired arrows
lrhar, ReverseEquilibrium, leftrightharpoons U+21CB (8651) HTML 5.0 leftwards harpoon over rightwards harpoon (Reverse Equilibrium)
rlhar, Equilibrium, rightleftharpoons U+21CC (8652) HTML 5.0 rightwards harpoon over leftwards harpoon (Equilibrium)
nlArr, nLeftArrow U+21CD (8653) HTML 5.0 leftwards double arrow with stroke (not leftwards double arrow)
nhArr, nLeftrightarrow U+21CE (8654) HTML 5.0 left right double arrow with stroke (not horizontal double arrow, not left right double arrow)
nrArr, nRightArrow U+21CF (8655) HTML 5.0 rightwards double arrow with stroke (not rightwards double arrow)
lArr, Leftarrow, DoubleLeftArrow U+21D0 (8656) HTML 4.0 (Leftarrow and DoubleLeftArrow added in HTML 5.0) HTMLsymbol ISOtech leftwards double arrow
uArr, Uparrow, DoubleUpArrow U+21D1 (8657) HTML 4.0 (Uparrow and DoubleUpArrow added in HTML 5.0) HTMLsymbol ISOamsa upwards double arrow
rArr, Rightarrow, Implies, DoubleRightArrow U+21D2 (8658) HTML 4.0 (Rightarrow, Implies, and DoubleRightArrow added in HTML 5.0) HTMLsymbol ISOnum rightwards double arrow (Implies)
dArr, Downarrow, DoubleDownArrow U+21D3 (8659) HTML 4.0 (Downarrow and DoubleDownArrow added in HTML 5.0) HTMLsymbol ISOamsa downwards double arrow
hArr, Leftrightarrow, DoubleLeftRightArrow, iff U+21D4 (8660) HTML 4.0 (Leftrightarrow, DoubleLeftRightArrow, and iff added in HTML 5.0) HTMLsymbol ISOamsa left right double arrow (Iff)
vArr, Updownarrow, DoubleUpDownArrow U+21D5 (8661) HTML 5.0 up down double arrow
nwArr U+21D6 (8662) HTML 5.0 north west double arrow
neArr U+21D7 (8663) HTML 5.0 north east double arrow
seArr U+21D8 (8664) HTML 5.0 south east double arrow
swArr U+21D9 (8665) HTML 5.0 south west double arrow
lAarr, Lleftarrow U+21DA (8666) HTML 5.0 leftwards triple arrow
rAarr, Rrightarrow U+21DB (8667) HTML 5.0 rightwards triple arrow
zigrarr U+21DD (8669) HTML 5.0 rightwards squiggle arrow (rightwards zigzag arrow)
larrb, LeftArrowBar U+21E4 (8676) HTML 5.0 leftwards arrow to bar
rarrb, RightArrowBar U+21E5 (8677) HTML 5.0 rightwards arrow to bar
duarr, DownArrowUpArrow U+21F5 (8693) HTML 5.0 downwards arrow leftwards of upwards arrow
loarr U+21FD (8701) HTML 5.0 leftwards open-headed arrow
roarr U+21FE (8702) HTML 5.0 rightwards open-headed arrow
hoarr U+21FF (8703) HTML 5.0 left right open-headed arrow (horizontal open-headed arrow)
forall, ForAll U+2200 (8704) HTML 4.0 (ForAll added in HTML 5.0) HTMLsymbol ISOtech for all
comp, complement U+2201 (8705) HTML 5.0 complement
part, PartialD U+2202 (8706) HTML 4.0 (PartialD added in HTML 5.0) HTMLsymbol ISOtech partial differential
exist, Exists U+2203 (8707) HTML 4.0 (Exists added in HTML 5.0) HTMLsymbol ISOtech there exists
nexist, NotExists, nexists U+2204 (8708) HTML 5.0 does not exist
empty, emptyset, emptyv, varnothing U+2205 (8709) HTML 4.0 (emptyset, emptyv, and varnothing added in HTML 5.0) HTMLsymbol ISOamso empty set (null set); see also U+8960, ⌀
nabla, Del U+2207 (8711) HTML 4.0 (Del added in HTML 5.0) HTMLsymbol ISOtech del or nabla (vector differential operator)
isin, isinv, Element, in U+2208 (8712) HTML 4.0 (isinv, Element, and in added in HTML 5.0) HTMLsymbol ISOtech element of (in set)
notin, NotElement, notinva U+2209 (8713) HTML 4.0 (NotElement and notinva added in HTML 5.0) HTMLsymbol ISOtech not an element of (not in set)
ni, niv, ReverseElement, SuchThat U+220B (8715) HTML 4.0 (niv, ReverseElement, and SuchThat added in HTML 5.0) HTMLsymbol ISOtech contains as member (Reversed element, Reversed in set, such that)
notni, notniva, NotReverseElement U+220C (8716) HTML 5.0 does not contain as member (Not reversed element, nor reversed in set)
prod, Product U+220F (8719) HTML 4.0 (Product added in HTML 5.0) HTMLsymbol ISOamsb n-ary product (product sign)
coprod, Coproduct U+2210 (8720) HTML 5.0 n-ary coproduct (coproduct sign)
sum, Sum U+2211 (8721) HTML 4.0 (Sum added in HTML 5.0) HTMLsymbol ISOamsb n-ary summation
minus U+2212 (8722) HTML 4.0 HTMLsymbol ISOtech minus sign
mnplus, mp, MinusPlus U+2213 (8723) HTML 5.0 minus-plus sign (minus-or-plus sign)
plusdo, dotplus U+2214 (8724) HTML 5.0 dot plus sign (plus dot sign)
setmn, setminus, Backslash, ssetmn, smallsetminus U+2216 (8726) HTML 5.0 set minus sign
lowast U+2217 (8727) HTML 4.0 HTMLsymbol ISOtech asterisk operator
compfn, SmallCircle U+2218 (8728) HTML 5.0 ring operator (composition function, small circle)
radic, Sqrt U+221A (8730) HTML 4.0 (Sqrt added in HTML 5.0) HTMLsymbol ISOtech square root (radical sign)
prop, propto, Proportional, vprop, varpropto U+221D (8733) HTML 4.0 (propto, Proportional, vprop, and varpropto added in HTML 5.0) HTMLsymbol ISOtech proportional to
infin U+221E (8734) HTML 4.0 HTMLsymbol ISOtech infinity
angrt U+221F (8735) HTML 5.0 Right angle
ang, angle U+2220 (8736) HTML 4.0 (angle added in HTML 5.0) HTMLsymbol ISOamso angle
angmsd, measuredangle U+2221 (8737) HTML 5.0 measured angle
angsph U+2222 (8738) HTML 5.0 Spherical angle
mid, VerticalBar, smid, shortmid U+2223 (8739) HTML 5.0 divides (vertical bar, mid, short mid)
nmid, NotVerticalBar, nsmid, nshortmid U+2224 (8740) HTML 5.0 does not divide (not vertical bar, not mid, not short mid)
par, parallel, DoubleVerticalBar, spar, shortparallel U+2225 (8741) HTML 5.0 is parallel to (double vertical bar)
npar, nparallel, NotDoubleVerticalBar, nspar, nshortparallel U+2226 (8742) HTML 5.0 is not parallel to (not double vertical bar)
and, wedge U+2227 (8743) HTML 4.0 (wedge added in HTML 5.0) HTMLsymbol ISOtech logical and (wedge)
or, vee U+2228 (8744) HTML 4.0 (vee added in HTML 5.0) HTMLsymbol ISOtech logical or (vee)
cap U+2229 (8745) HTML 4.0 HTMLsymbol ISOtech intersection (cap)
cup U+222A (8746) HTML 4.0 HTMLsymbol ISOtech union (cup)
int, Integral U+222B (8747) HTML 4.0 (Integral added in HTML 5.0) HTMLsymbol ISOtech integral
int, Integral U+222C (8748) HTML 5.0 double integral
tint, iiint U+222D (8749) HTML 5.0 triple integral
conint, oint, ContourIntegral U+222E (8750) HTML 5.0 contour integral (circle integral)
Conint, DoubleContourIntegral U+222F (8751) HTML 5.0 double contour integral
Cconint U+2230 (8752) HTML 5.0 Volume integral
cwint U+2231 (8753) HTML 5.0 clockwise integral
cwconint, ClockwiseContourIntegral U+2232 (8754) HTML 5.0 clockwise contour integral
awconint, CounterClockwiseContourIntegral U+2233 (8755) HTML 5.0 anticlockwise contour integral
there4, therefore, Therefore U+2234 (8756) HTML 4.0 (therefore and Therefore added in HTML 5.0) HTMLsymbol ISOtech therefore sign
becaus, because, Because U+2235 (8757) HTML 5.0 because sign
ratio U+2236 (8758) HTML 5.0 Ratio
Colon, Proportion U+2237 (8759) HTML 5.0 Proportion
minusd, dotminus U+2238 (8760) HTML 5.0 dot minus
mDDot U+223A (8762) HTML 5.0 Geometric proportion
homtht U+223B (8763) HTML 5.0 Homothetic
sim, Tilde, thksim, thicksim U+223C (8764) HTML 4.0 (Tilde, thksim, and thicksim added in HTML 5.0) HTMLsymbol ISOtech tilde operator (varies with, similar to, thick tilde)
bsim, backsim U+223D (8765) HTML 5.0 reversed tilde (back similar to)
ac, mstpos U+223E (8766) HTML 5.0 inverted lazy s
acd U+223F (8767) HTML 5.0 Sine wave
wreath, VerticalTilde, wr U+2240 (8768) HTML 5.0 Wreath product (vertical tilde)
nsim, NotTilde U+2241 (8769) HTML 5.0 Not Tilde (is not similar to)
esim, EqualTilde, eqsim U+2242 (8770) HTML 5.0 equal tilde
sime, TildeEqual, simeq U+2243 (8771) HTML 5.0 asymptotically equal to (tilde equal)
nsime, nsimeq, NotTildeEqual U+2244 (8772) HTML 5.0 not asymptotically equal to (not tilde equal)
cong, TildeFullEqual U+2245 (8773) HTML 4.0 (TildeFullEqual added in HTML 5.0) HTMLsymbol ISOtech congruent to
simne U+2246 (8774) HTML 5.0 approximately but not actually equal to (similar but not equal to)
ncong, NotTildeFullEqual U+2247 (8775) HTML 5.0 not approximately or actually equal to (not congruent to)
asymp, ap, TildeTilde, approx, thkap, thickapprox U+2248 (8776) HTML 4.0 (ap, TildeTilde, approx, thkap, and thickapprox added in HTML 5.0) HTMLsymbol ISOamsr almost equal to (asymptotic to, approximately, tilde over tilde)
nap, NotTildeTilde, napprox U+2249 (8777) HTML 5.0 not almost equal to (not approximately, not tilde over tilde)
ape, approxeq U+224A (8778) HTML 5.0 almost equal or equal to (approximately equal to)
apid U+224B (8779) HTML 5.0 triple tilde
bcong, backcong U+224C (8780) HTML 5.0 all equal to (backwards congruent to)
asympeq, CupCap U+224D (8781) HTML 5.0 equivalent to (asymptotically equivalent to, Cup and Cap)
bump, HumpDownHump, Bumpeq U+224E (8782) HTML 5.0 geometrically equivalent to (bump equals, hump and down hump equals)
bumpe, HumpEqual, Humpeq U+224F (8783) HTML 5.0 difference between (hump equals)
esdot, DotEqual, doteq U+2250 (8784) HTML 5.0 Approaches the limit (dot equal)
edot, doteqdot U+2251 (8785) HTML 5.0 geometrically equal to (dot equal dot)
efdot, fallingdotseq U+2252 (8786) HTML 5.0 approximately equal to or the image of (falling dot sequence)
erdot, risingdotseq U+2253 (8787) HTML 5.0 image of or approximately equal to (rising dot sequence)
colone, coloneq, Assign U+2254 (8788) HTML 5.0 colon equals (Assignment (computer science))
ecolon, eqcolon U+2255 (8789) HTML 5.0 equals colon
ecir, eqcirc U+2256 (8790) HTML 5.0 ring in equal to (equals circle)
cire, circeq U+2257 (8791) HTML 5.0 ring equal to (circle equals)
wedgeq U+2259 (8793) HTML 5.0 estimates (wedge equals)
veeeq U+225A (8794) HTML 5.0 equiangular to (vee equals)
trie, triangleq U+225C (8796) HTML 5.0 delta equal to (triangle equals)
equest, questeq U+225F (8799) HTML 5.0 questioned equal to
ne, NotEqual U+2260 (8800) HTML 4.0 (NotEqual added in HTML 5.0) HTMLsymbol ISOtech not equal to
equiv, Congruent U+2261 (8801) HTML 4.0 (Congruent added in HTML 5.0) HTMLsymbol ISOtech identical to; sometimes used for 'equivalent to' or 'congruent'
nequiv, NotCongruent U+2262 (8802) HTML 5.0 not identical to; sometimes used for 'not congruent'
le, LessEqual, leq U+2264 (8804) HTML 4.0 (LessEqual and leq added in HTML 5.0) HTMLsymbol ISOtech less-than or equal to
ge, GreaterEqual, geq U+2265 (8805) HTML 4.0 (GreaterEqual and geq added in HTML 5.0) HTMLsymbol ISOtech greater-than or equal to
lE, LessFullEqual, leqq U+2266 (8806) HTML 5.0 less-than over equal to
gE, GreaterFullEqual, geqq U+2267 (8807) HTML 5.0 greater-than over equal to
lnE, lneqq U+2268 (8808) HTML 5.0 less-than but not equal to
gnE, gneqq U+2269 (8809) HTML 5.0 greater-than but not equal to
Lt, NestedLessLess, ll U+226A (8810) HTML 5.0 much less-than
Gt, NestedGreaterGreater, gg U+226B (8811) HTML 5.0 much greater-than
twixt, between U+226C (8812) HTML 5.0 between
NotCupCap U+226D (8813) HTML 5.0 not equivalent to (not cup cap)
nlt, NotLess, nless U+226E (8814) HTML 5.0 not less than
ngt, NotGreater, ngtr U+226F (8815) HTML 5.0 not greater than
nle, NotLessEqual, nleq U+2270 (8816) HTML 5.0 not less than or equal to
nge, NotGreaterEqual, ngeq U+2271 (8817) HTML 5.0 not greater than or equal to
lsim, LessTilde, lesssim U+2272 (8818) HTML 5.0 less-than or equivalent to (less-than tilde, less-than or similar to)
gsim, GreaterTilde, gtrsimsim U+2273 (8819) HTML 5.0 greater-than or equivalent to (greater-than tilde, greater-than or similar to)
nlsim, NotLessTilde U+2274 (8820) HTML 5.0 neither less-than nor equivalent to (not less-than tilde, neither less-than nor similar to)
ngsim, NotGreaterTilde U+2275 (8821) HTML 5.0 neither greater-than nor equivalent to (not greater-than tilde, neither greater-than nor similar to)
lg, lessgtr, LessGreater U+2276 (8822) HTML 5.0 less-than or greater-than
gl, gtrless, GreaterLess U+2277 (8823) HTML 5.0 greater-than or less-than
ntlg, NotLessGreater U+2278 (8824) HTML 5.0 neither less-than nor greater-than
ntgl, GreaterLess U+2279 (8825) HTML 5.0 neither greater-than nor less-than
pr, Precedes, prec U+227A (8826) HTML 5.0 precedes
sc, Succeeds, succ U+227B (8827) HTML 5.0 succeeds
prcue, PrecedesSlantEqual, preccurlyeq U+227C (8828) HTML 5.0 precedes or equal to (precedes curly equals, precedes slant equals)
sccue, SucceedsSlantEqual, succcurlyeq U+227D (8829) HTML 5.0 succeeds or equal to (succeeds curly equals, succeeds slant equals)
prsim, precsim, PrecedesTilde U+227E (8830) HTML 5.0 precedes or equivalent to (precedes or similar to, precedes tilde)
sccue, SucceedsSlantEqual, succcurlyeq U+227F (8831) HTML 5.0 succeeds or equivalent to (succeeds or similar to, succeeds tilde)
npr, nprec, NotPrecedes U+2280 (8832) HTML 5.0 does not precede
nsc, nsucc, NotSucceeds U+2281 (8833) HTML 5.0 does not succeed
sub, subset U+2282 (8834) HTML 4.0 HTMLsymbol (subset added in HTML 5.0) ISOtech subset of
sup, supset, Superset U+2283 (8835) HTML 4.0 (supset and Superset added in HTML 5.0) HTMLsymbol ISOtech superset of
nsub U+2284 (8836) HTML 4.0 HTMLsymbol ISOamsn not a subset of
nsup U+2285 (8837) HTML 4.0 HTMLsymbol ISOamsn not a superset of
sube, SubsetEqual, subseteq U+2286 (8838) HTML 4.0 (SubsetEqual and subseteq added in HTML 5.0) HTMLsymbol ISOtech subset of or equal to
supe, supseteq, SupersetEqual U+2287 (8839) HTML 4.0 (supseteq and SupersetEqual added in HTML 5.0) HTMLsymbol ISOtech superset of or equal to
nsube, nsubseteq, NotSubsetEqual U+2288 (8840) HTML 5.0 neither a subset of nor equal to
nsupe, nsupseteq, NotSupersetEqual U+2289 (8841) HTML 5.0 neither a superset of nor equal to
subne, subsetneq U+228A (8842) HTML 5.0 subset of with not equal to
supne, supsetneq U+228B (8843) HTML 5.0 superset of with not equal to
cupdot U+228D (8845) HTML 5.0 multiset mutiplication (cup dot)
uplus, UnionPlus U+228E (8846) HTML 5.0 multiset union (union plus)
sqsub, SquareSubset, sqsubset U+228F (8847) HTML 5.0 square image of (square subset)
sqsup, SquareSuperset, sqsupset U+2290 (8848) HTML 5.0 square original of (square superset)
sqsube, SquareSubsetEqual, sqsubseteq U+2291 (8849) HTML 5.0 square image of or equal to (square subset equal)
sqsupe, SquareSupersetEqual, sqsupseteq U+2292 (8850) HTML 5.0 square original of or equal to (square superset equal)
sqcap, SquareIntersection U+2293 (8851) HTML 5.0 square cap (square intersection)
sqcup, SquareUnion U+2294 (8852) HTML 5.0 square cup (square union)
oplus, CirclePlus U+2295 (8853) HTML 4.0 (CirclePlus added in HTML 5.0) HTMLsymbol ISOamsb circled plus (direct sum)
ominus, CircleMinus U+2296 (8854) HTML 5.0 circled minus
otimes, CircleTimes U+2297 (8855) HTML 4.0 (CircleTimes added in HTML 5.0) HTMLsymbol ISOamsb circled times (vector product)
osol U+2298 (8856) HTML 5.0 circled division slash (circled solidus)
odot, CircleDot U+2299 (8857) HTML 5.0 circled dot operator (circled dot)
ocr, circledcirc U+229A (8858) HTML 5.0 circled ring operator (circled circle)
oast, circledast U+229B (8859) HTML 5.0 circled asterisk operator
odash, circleddash U+229D (8861) HTML 5.0 circled dash
plusb, boxplus U+229E (8862) HTML 5.0 squared plus (boxed plus)
minusb, boxminus U+229F (8863) HTML 5.0 squared minus (boxed minus)
timesb, boxtimes U+22A0 (8864) HTML 5.0 squared times (boxed times)
sdotb, dotsquare U+22A1 (8865) HTML 5.0 squared dot operator (boxed small dot)
vdash, RightTee U+22A2 (8866) HTML 5.0 right tack (proves, right tee)
dashv, LeftTee U+22A3 (8867) HTML 5.0 left tack (left tee)
top, DownTee U+22A4 (8868) HTML 5.0 down tack (top tack, down tee)
perp, bottom, bot, UpTee U+22A5 (8869) HTML 4.0 (bottom, bot, and UpTee added in HTML 5.0) HTMLsymbol ISOtech up tack (orthogonal to, perpendicular, bottom tack, up tee)
models U+22A7 (8871) HTML 5.0 models
vDash, DoubleRightTee U+22A8 (8872) HTML 5.0 true (double right tee)
Vdash U+22A9 (8873) HTML 5.0 forces
Vvdash U+22AA (8874) HTML 5.0 triple vertical bar right turnstile
VDash U+22AB (8875) HTML 5.0 double vertical bar double right turnstile
nvdash U+22AC (8876) HTML 5.0 does not prove
nvDash U+22AD (8877) HTML 5.0 not true
nVdash U+22AE (8878) HTML 5.0 does not force
nVDash U+22AF (8879) HTML 5.0 negated double vertical bar double right turnstile
prurel U+22B0 (8880) HTML 5.0 precedes under relation
vltri, vartriangleleft, LeftTriangle U+22B2 (8882) HTML 5.0 Normal subgroup of (left triangle)
vrtri, vartriangleright, RightTriangle; U+22B3 (8883) HTML 5.0 contains as Normal subgroup (right triangle)
ltrie, trianglelefteq, LeftTriangleEqual U+22B4 (8884) HTML 5.0 Normal subgroup of or equal to (left triangle equal)
rtrie, trianglerighteq, RightTriangleEqual U+22B5 (8885) HTML 5.0 contains as Normal subgroup or equal to (right triangle equal)
origof U+22B6 (8886) HTML 5.0 original of
imof U+22B7 (8887) HTML 5.0
mmap, multimap U+22B8 (8888) HTML 5.0 multimap
hercon U+22B9 (8889) HTML 5.0 Hermitian conjugate matrix
intcal, intercal U+22BA (8890) HTML 5.0 intercalate
veebar U+22BB (8891) HTML 5.0 xor
barvee U+22BD (8893) HTML 5.0 nor
angrtvb U+22BE (8894) HTML 5.0 right angle with arc
lrtri U+22BF (8895) HTML 5.0 Right triangle (lower right triangle)
xwedge, Wedge, bigwedge U+22C0 (8896) HTML 5.0 n-ary logical and (x wedge, big wedge)
xvee, Vee, bigvee U+22C1 (8897) HTML 5.0 n-ary logical or (x vee, big vee)
xcap, Intersection, bigcap U+22C2 (8898) HTML 5.0 n-ary intersection (x cap, big cap)
xcup, Union, bigcup U+22C3 (8899) HTML 5.0 n-ary Union (x cup, big cup)
diam, diamond, Diamond U+22C4 (8900) HTML 5.0 Diamond operator
sdot U+22C5 (8901) HTML 4.0 HTMLsymbol ISOamsb dot operator (small dot)
sstarf, Star U+22C6 (8902) HTML 5.0 star operator
divonx, divideontimes U+22C7 (8903) HTML 5.0 division times
bowtie U+22C8 (8904) HTML 5.0 bowtie
ltimes U+22C9 (8905) HTML 5.0 left normal factor semidirect product (left times)
rtimes U+22CA (8906) HTML 5.0 right normal factor semidirect product (right times)
lthree, leftthreetimes U+22CB (8907) HTML 5.0 left semidirect product (left three times)
rthree, rightthreetimes U+22CC (8908) HTML 5.0 right semidirect product (right three times)
bsime, backsimeq U+22CD (8909) HTML 5.0 reversed tilde equals (back similar or equal to)
cuvee, curlyvee U+22CE (8910) HTML 5.0 curly logical or (curly vee)
cuwed, curlywedge U+22CF (8911) HTML 5.0 curly logical and (curly wedge)
Sub, Subset U+22D0 (8912) HTML 5.0 double subset
Sup, Supset U+22D1 (8913) HTML 5.0 double superset
Cap U+22D2 (8914) HTML 5.0 double intersection (double cap)
Cup U+22D3 (8915) HTML 5.0 double union (double cup)
fork, pitchfork U+22D4 (8916) HTML 5.0 pitchfork (Transversality theorem)
epar U+22D5 (8917) HTML 5.0 equal and parallel to
ltdot, lessdot U+22D6 (8918) HTML 5.0 less-than with dot
gtdot, gtrdot U+22D7 (8919) HTML 5.0 greater-than with dot
Ll, lll U+22D8 (8920) HTML 5.0 very much less-than
Gg, ggg U+22D9 (8921) HTML 5.0 very much greater-than
leg, LessEqualGreater, lesseqgtr U+22DA (8922) HTML 5.0 less-than equal to or greater-than
gel, gtreqless, GreaterEqualLess U+22DB (8923) HTML 5.0 greater-than equal to or less-than
cuepr, curlyeqprec U+22DE (8926) HTML 5.0 equal to or precedes (curly equal to or precedes)
cuesc, curlyeqsucc U+22DF (8927) HTML 5.0 equal to or succeeds (curly equal to or succeeds)
nprcue, NotPrecedesSlantEqual U+22E0 (8928) HTML 5.0 does not precede or equal (not precedes curly equal, not precedes slant equal)
nsccue, NotSucceedsSlantEqual U+22E1 (8929) HTML 5.0 does not succeed or equal (not succeeds curly equal, not succeeds slant equal)
nsqsube, NotSquareSubsetEqual U+22E2 (8930) HTML 5.0 not square image of or equal to (not square subset equal)
nsqsupe, NotSquareSupersetEqual U+22E3 (8931) HTML 5.0 not square original of or equal to (not square superset equal)
lnsim U+22E6 (8934) HTML 5.0 less-than but not equivalent to (less-than but not similar to)
gnsim U+22E7 (8935) HTML 5.0 greater-than but not equivalent to (greater-than but not similar to)
prnsim, precnsim U+22E8 (8936) HTML 5.0 precedes but not equivalent to (precedes but not similar to)
scnsim, succnsim U+22E9 (8937) HTML 5.0 succeeds but not equivalent to (succeeds but not similar to)
nltri, ntriangleleft, NotLeftTriangle U+22EA (8938) HTML 5.0 not normal subgroup of (not left triangle)
nrtri, ntriangleright, NotRightTriangle U+22EB (8939) HTML 5.0 does not contain as normal subgroup (not right triangle)
nltrie, ntrianglelefteq, NotLeftTriangleEqual U+22EC (8940) HTML 5.0 not normal subgroup of or equal to (not left triangle equal)
nrtrie, ntrianglerighteq, NotRightTriangleEqual U+22ED (8941) HTML 5.0 does not contain as normal subgroup or equal (not right triangle equal)
vellip U+22EE (8942) HTML 5.0 vertical ellipsis
ctdot U+22EF (8943) HTML 5.0 midline horizontal ellipsis (centered triple dot)
utdot U+22F0 (8944) HTML 5.0 up right diagonal ellipsis (upward triple dot)
dtdot U+22F1 (8945) HTML 5.0 down right diagonal ellipsis (downward triple dot)
disin U+22F2 (8946) HTML 5.0 element of with long horizontal stroke
isinsv U+22F3 (8947) HTML 5.0 element of with vertical bar at end of horizontal stroke
isins U+22F4 (8948) HTML 5.0 small element of with vertical bar at end of horizontal stroke
isindot U+22F5 (8949) HTML 5.0 element of with dot above
notinvc U+22F6 (8950) HTML 5.0 element of with overbar
notinvb U+22F7 (8951) HTML 5.0 small element of with overbar
isinE U+22F9 (8953) HTML 5.0 element of with two horizontal strokes
nisd U+22FA (8954) HTML 5.0 contains with long horizontal stroke
xnis U+22FB (8955) HTML 5.0 contains with vertical bar at end of horizontal stroke
nis U+22FC (8956) HTML 5.0 small contains with vertical bar at end of horizontal stroke
notnivc U+22FD (8957) HTML 5.0 contains with overbar
notnivb U+22FE (8958) HTML 5.0 small contains with overbar
barwed, barwedge U+2305 (8965) HTML 5.0 projective
Barwed, doublebarwedge U+2306 (8966) HTML 5.0 perspective
lceil, LeftCeiling U+2308 (8968) HTML 4.0 (LeftCeiling added in HTML 5.0) HTMLsymbol ISOamsc left ceiling (APL upstile)
rceil, RightCeiling U+2309 (8969) HTML 4.0 (RightCeiling added in HTML 5.0) HTMLsymbol ISOamsc right ceiling
lfloor, LeftFloor U+230A (8970) HTML 4.0 (LeftFloor added in HTML 5.0) HTMLsymbol ISOamsc left floor (APL downstile)
rfloor, RightFloor U+230B (8971) HTML 4.0 (RightFloor added in HTML 5.0) HTMLsymbol ISOamsc right floor
drcrop U+230C (8972) HTML 5.0 bottom right crop (down right crop)
dlcrop U+230D (8973) HTML 5.0 bottom left crop (down left crop)
urcrop U+230E (8974) HTML 5.0 top right crop (up right crop)
ulcrop U+230F (8975) HTML 5.0 top left crop (up left crop)
bnot U+2310 (8976) HTML 5.0 reversed not sign (backwards not sign)
profline U+2312 (8978) HTML 5.0 arc
profsurf U+2313 (8979) HTML 5.0 segment
telrec U+2315 (8981) HTML 5.0 telephone recorder
target U+2316 (8982) HTML 5.0 position indicator (target)
ulcorn, ulcorner U+231C (8982) HTML 5.0 top left corner (up left corner)
urcorn, urcorner U+231D (8983) HTML 5.0 top right corner (up right corner)
dlcorn, dlcorner U+231E (8984) HTML 5.0 bottom left corner (down left corner)
drcorn, drcorner U+231F (8985) HTML 5.0 bottom right corner (down right corner)
frown, sfrown U+2322 (8994) HTML 5.0 frown
smile, ssmile U+2323 (8995) HTML 5.0 smile
cylcty U+232D (9005) HTML 5.0 cylindricity
profalar U+232E (9006) HTML 5.0 all-around profile
topbot U+2336 (9014) HTML 5.0 APL functional symbol I-beam (top bottom)
ovbar U+233D (9021) HTML 5.0 APL functional symbol circle stile (circle vertical bar)
solbar U+233F (9023) HTML 5.0 APL functional symbol slash bar (solidus bar)
angzarr U+237C (9023) HTML 5.0 right angle with downwards zigzag arrow
lmoust, lmoustache U+23B0 (9136) HTML 5.0 upper left or lower right curly bracket section (left moustache)
rmoust, rmoustache U+23B1 (9137) HTML 5.0 upper right or lower left curly bracket section (right moustache)
tbrk, OverBracket U+23B4 (9140) HTML 5.0 top square bracket (over bracket)
bbrk, UnderBracket U+23B5 (9141) HTML 5.0 bottom square bracket (under bracket)
bbrktbrk U+23B6 (9142) HTML 5.0 bottom square bracket over top square bracket
OverParenthesis U+23DC (9180) HTML 5.0 top parenthesis (over parenthesis)
UnderParenthesis U+23DD (9181) HTML 5.0 bottom parenthesis (under parenthesis)
OverBrace U+23DE (9182) HTML 5.0 top curly bracket (over brace)
UnderBrace U+23DF (9183) HTML 5.0 bottom curly bracket (under brace)
trpezium U+23E2 (9186) HTML 5.0 white trapezium
elinters U+23E7 (9191) HTML 5.0 electrical intersection
blank U+2423 (9251) HTML 5.0 open box (blank)
oS, circledS U+24C8 (9416) HTML 5.0 circled Latin capital letter S
boxh, HorizontalLine U+2500 (9472) HTML 5.0 box drawings light horizontal (horizontal line)
boxv U+2502 (9474) HTML 5.0 box drawings light vertical
boxdr U+250C (9484) HTML 5.0 box drawings light down and right
boxdl U+2510 (9488) HTML 5.0 box drawings light down and left
boxur U+2514 (9492) HTML 5.0 box drawings light up and right
boxul U+2518 (9496) HTML 5.0 box drawings light up and left
boxvr U+251C (9500) HTML 5.0 box drawings light vertical and right
boxvl U+2524 (9508) HTML 5.0 box drawings light vertical and left
boxhd U+252C (9516) HTML 5.0 box drawings light down and horizontal (horizontal and down)
boxhu U+2534 (9524) HTML 5.0 box drawings light up and horizontal (horizontal and up)
boxvh U+253C (9532) HTML 5.0 box drawings light vertical and horizontal
boxH U+2550 (9552) HTML 5.0 box drawings double horizontal
boxV U+2551 (9553) HTML 5.0 box drawings double vertical
boxdR U+2552 (9554) HTML 5.0 box drawings down single and right double
boxDr U+2553 (9555) HTML 5.0 box drawings down double and right single
boxDR U+2554 (9556) HTML 5.0 box drawings double down and right
boxdL U+2555 (9557) HTML 5.0 box drawings down single and left double
boxDl U+2556 (9558) HTML 5.0 box drawings down double and left single
boxDL U+2557 (9559) HTML 5.0 box drawings double down and left
boxuR U+2558 (9560) HTML 5.0 box drawings up single and right double
boxUr U+2559 (9561) HTML 5.0 box drawings up double and right single
boxUR U+255A (9562) HTML 5.0 box drawings double up and right
boxuL U+255B (9563) HTML 5.0 box drawings up single and left double
boxUl U+255C (9564) HTML 5.0 box drawings up double and left single
boxUL U+255D (9565) HTML 5.0 box drawings double up and left
boxvR U+255E (9566) HTML 5.0 box drawings vertical single and right double
boxVr U+255F (9567) HTML 5.0 box drawings vertical double and right single
boxVR U+2560 (9568) HTML 5.0 box drawings double vertical and right
boxvL U+2561 (9569) HTML 5.0 box drawings vertical single and left double
boxVl U+2562 (9570) HTML 5.0 box drawings vertical double and left single
boxVL U+2563 (9571) HTML 5.0 box drawings double vertical and left
boxHd U+2564 (9572) HTML 5.0 box drawings down single and horizontal double (horizontal double and down single)
boxhD U+2565 (9573) HTML 5.0 box drawings down double and horizontal single (horizontal single and down double)
boxHD U+2566 (9574) HTML 5.0 box drawings double down and horizontal (horizontal and down)
boxHu U+2567 (9575) HTML 5.0 box drawings up single and horizontal double (horizontal double and up single)
boxhU U+2568 (9576) HTML 5.0 box drawings up double and horizontal single (horizontal single and up double)
boxHU U+2569 (9577) HTML 5.0 box drawings double up and horizontal (horizontal and up)
boxvH U+256A (9578) HTML 5.0 box drawings vertical single and horizontal double
boxVh U+256B (9579) HTML 5.0 box drawings vertical double and horizontal single
boxVH U+256C (9580) HTML 5.0 box drawings double vertical and horizontal
uhblk U+2580 (9600) HTML 5.0 upper half block
lhblk U+2584 (9604) HTML 5.0 lower half block
block U+2588 (9608) HTML 5.0 full block
blk14 U+2591 (9617) HTML 5.0 light shade (1/4 block)
blk12 U+2592 (9618) HTML 5.0 medium shade (1/2 block)
blk34 U+2593 (9619) HTML 5.0 dark shade (3/4 block)
squ, square, Square U+25A1 (9633) HTML 5.0 white square
squf, squaref, blacksquare, FilledVerySmallSquare U+25AA (9642) HTML 5.0 black small square (filled very small square)
EmptyVerySmallSquare U+25AB (9643) HTML 5.0 white small square (empty very small square)
rect U+25AD (9645) HTML 5.0 white rectangle
marker U+25AE (9646) HTML 5.0 black vertical rectangle (marker)
fltns U+25B1 (9649) HTML 5.0 white parallelogram
xutri, bigtriangleup U+25B3 (9651) HTML 5.0 white up-pointing triangle (big up-pointing triangle)
utrif, blacktriangle U+25B4 (9652) HTML 5.0 black up-pointing small triangle (black triangle, up-pointing triangle filled)
utri, triangle U+25B5 (9653) HTML 5.0 white up-pointing small triangle (up-pointing triangle)
rtrif, blacktriangleright U+25B8 (9656) HTML 5.0 black right-pointing small triangle (black right-pointing triangle, right-pointing triangle filled)
rtri, triangleright U+25B9 (9657) HTML 5.0 white right-pointing small triangle (right-pointing triangle)
xdtri, bigtriangledown U+25BD (9661) HTML 5.0 white down-pointing triangle (big down-pointing triangle)
dtrif, blacktriangledown U+25BE (9662) HTML 5.0 black down-pointing small triangle (black down-pointing triangle, down-pointing triangle filled)
dtri, triangledown U+25BF (9663) HTML 5.0 white down-pointing small triangle (down-pointing triangle)
ltrif, blacktriangleleft U+25C2 (9666) HTML 5.0 black left-pointing small triangle (black left-pointing triangle, left-pointing triangle filled)
ltri, triangleleft U+25C3 (9667) HTML 5.0 white left-pointing small triangle (left-pointing triangle)
loz, lozenge U+25CA (9674) HTML 4.0 (lozenge added in HTML 5.0) HTMLsymbol ISOpub lozenge
cir U+25CB (9675) HTML 5.0 white circle (circle)
tridot U+25EC (9708) HTML 5.0 white up-pointing triangle with dot (triangle dot)
xcirc, bigcirc U+25EF (9711) HTML 5.0 large circle (big circle)
ultri U+25F8 (9720) HTML 5.0 upper left triangle
urtri U+25F9 (9721) HTML 5.0 upper right triangle
lltri U+25FA (9722) HTML 5.0 lower left triangle
EmptySmallSquare U+25FB (9723) HTML 5.0 white medium square (empty small square)
FilledSmallSquare U+25FC (9724) HTML 5.0 black medium square (filled small square)
starf, bigstar U+2605 (9733) HTML 5.0 black star (filled star, big star)
star U+2606 (9734) HTML 5.0 white star (star)
phone U+260E (9742) HTML 5.0 black telephone (phone)
female U+2640 (9792) HTML 5.0 female sign
male U+2642 (9794) HTML 5.0 male sign
spades, spadesuit U+2660 (9824) HTML 4.0 (spadesuit added in HTML 5.0) HTMLsymbol ISOpub black spade suit
clubs, clubsuit U+2663 (9827) HTML 4.0 (clubsuit added in HTML 5.0) HTMLsymbol ISOpub black club suit (shamrock)
hearts, heartsuit U+2665 (9829) HTML 4.0 (heartsuit added in HTML 5.0) HTMLsymbol ISOpub black heart suit (valentine)
diams, diamondsuit U+2666 (9830) HTML 4.0 (diamondsuit added in HTML 5.0) HTMLsymbol ISOpub black diamond suit
sung U+266A (9834) HTML 5.0 eighth note (sung)
flat U+266D (9837) HTML 5.0 flat sign
natur, natural U+266E (9838) HTML 5.0 natural sign
sharp U+266F (9839) HTML 5.0 sharp sign
check, checkmark U+2713 (10003) HTML 5.0 check mark
cross U+2717 (10007) HTML 5.0 ballot x (cross)
malt, maltese U+2720 (10016) HTML 5.0 maltese cross
sext U+2736 (10038) HTML 5.0 six pointed black star (sextile)
VerticalSeparator U+2758 (10072) HTML 5.0 light vertical bar (vertical separator)
lbbrk U+2772 (10098) HTML 5.0 light left tortoise shell bracket ornament
rbbrk U+2773 (10099) HTML 5.0 light right tortoise shell bracket ornament
lobrk, LeftDoubleBracket U+27E6 (10214) HTML 5.0 mathematical left white square bracket
robrk, RightDoubleBracket U+27E7 (10215) HTML 5.0 mathematical right white square bracket
lang, LeftAngleBracket, langle U+27E8 (10216) HTML 4.0 (moved to current code point in HTML 5.0; previously was mapped to U+2329 (9000); LeftAngleBracket and langle added in HTML 5.0) HTMLsymbol ISOtech mathematical left angle bracket (bra)
rang, RightAngleBracket, rangle U+27E9 (10217) HTML 4.0 (moved to current code point in HTML 5.0; previously was mapped to U+232A (9001); RightAngleBracket and rangle added in HTML 5.0) HTMLsymbol ISOtech mathematical right angle bracket (ket)
Lang U+27EA (10218) HTML 5.0 mathematical left double angle bracket
Rang U+27EB (10219) HTML 5.0 mathematical right double angle bracket
loang U+27EC (10220) HTML 5.0 mathematical left white tortoise shell bracket
roang U+27ED (10221) HTML 5.0 mathematical right white tortoise shell bracket
xlarr, longleftarrow, LongLeftArrow U+27F5 (10229) HTML 5.0 long leftwards arrow
xrarr, longrightarrow, LongRightArrow U+27F6 (10230) HTML 5.0 long rightwards arrow
xharr, longleftrightarrow, LongLeftRightArrow U+27F7 (10231) HTML 5.0 long left right arrow (long horizontal arrow)
xlArr, Longleftarrow, DoubleLongLeftArrow U+27F8 (10232) HTML 5.0 long leftwards double arrow
xrArr, Longrightarrow, DoubleLongRightArrow U+27F9 (10233) HTML 5.0 long rightwards double arrow
xhArr, Longleftrightarrow, DoubleLongLeftRightArrow U+27FA (10234) HTML 5.0 long left right double arrow (long horizontal double arrow)
xmap, longmapsto U+27FC (10236) HTML 5.0 long rightwards arrow with bar (long maps to)
dzigrarr U+27FF (10239) HTML 5.0 long rightwards squiggle arrow (long rightwards zigzag arrow)
nvlArr U+2902 (10498) HTML 5.0 leftwards double arrow with vertical stroke
nvrArr U+2903 (10499) HTML 5.0 rightwards double arrow with vertical stroke
nvHArr U+2904 (10500) HTML 5.0 left right double arrow with vertical stroke
Map U+2905 (10501) HTML 5.0 rightwards two-headed arrow from bar (double maps to)
lbarr U+290C (10508) HTML 5.0 leftwards double dash arrow
rbarr, bkarow U+290D (10509) HTML 5.0 rightwards double dash arrow
lBarr U+290E (10510) HTML 5.0 leftwards triple dash arrow
rBarr, dbkarow U+290F (10511) HTML 5.0 rightwards triple dash arrow
RBarr, drbkarow U+2910 (10512) HTML 5.0 rightwards two-headed triple dash arrow
DDotrahd U+2911 (10513) HTML 5.0 rightwards arrow with dotted stem
UpArrowBar U+2912 (10514) HTML 5.0 upwards arrow to bar
DownArrowBar U+2913 (10515) HTML 5.0 downwards arrow to bar
Rarrtl U+2916 (10518) HTML 5.0 rightwards two-headed arrow with tail
latail U+2919 (10521) HTML 5.0 leftwards arrow-tail
ratail U+291A (10522) HTML 5.0 rightwards arrow-tail
lAtail U+291B (10523) HTML 5.0 leftwards double arrow-tail
rAtail U+291C (10524) HTML 5.0 rightwards double arrow-tail
larrfs U+291D (10525) HTML 5.0 leftwards arrow to black diamond
rarrfs U+291E (10526) HTML 5.0 rightwards arrow to black diamond
larrbfs U+291F (10527) HTML 5.0 leftwards arrow from bar to black diamond
rarrbfs U+2920 (10528) HTML 5.0 rightwards arrow from bar to black diamond
nwarhk U+2923 (10531) HTML 5.0 north west arrow with hook
nearhk U+2924 (10532) HTML 5.0 north east arrow with hook
searhk, hksearow U+2925 (10533) HTML 5.0 south east arrow with hook
swarhk, hkswarow U+2926 (10534) HTML 5.0 south west arrow with hook
nwnear U+2927 (10535) HTML 5.0 north west arrow and north east arrow
nesear, toea U+2928 (10536) HTML 5.0 north east arrow and south east arrow (to east arrow)
seswar, tosa U+2929 (10537) HTML 5.0 south east and south west arrow (to south arrow)
swnwar U+292A (10538) HTML 5.0 south west and north west arrow
fflig U+FB00 (64256) HTML 5.0 Latin small ligature ff
filig U+FB01 (64257) HTML 5.0 Latin small ligature fi
fllig U+FB02 (64258) HTML 5.0 Latin small ligature fl
ffilig U+FB03 (64259) HTML 5.0 Latin small ligature ffi
ffllig U+FB04 (64260) HTML 5.0 Latin small ligature ffl
Ascr 𝒜 U+1D49C (119964) HTML 5.0 script capital A
Cscr 𝒞 U+1D49E (119966) HTML 5.0 script capital C
Dscr 𝒟 U+1D49F (119967) HTML 5.0 script capital D
Gscr 𝒢 U+1D4A2 (119970) HTML 5.0 script capital G
Jscr 𝒥 U+1D4A5 (119973) HTML 5.0 script capital J
Kscr 𝒦 U+1D4A6 (119974) HTML 5.0 script capital K
Nscr 𝒩 U+1D4A9 (119977) HTML 5.0 script capital N
Oscr 𝒪 U+1D4AA (119978) HTML 5.0 script capital O
Pscr 𝒫 U+1D4AB (119979) HTML 5.0 script capital P
Qscr 𝒬 U+1D4AC (119980) HTML 5.0 script capital Q
Sscr 𝒮 U+1D4AE (119982) HTML 5.0 script capital S
Tscr 𝒯 U+1D4AF (119983) HTML 5.0 script capital T
Uscr 𝒰 U+1D4B0 (119984) HTML 5.0 script capital U
Vscr 𝒱 U+1D4B1 (119985) HTML 5.0 script capital V
Wscr 𝒲 U+1D4B2 (119986) HTML 5.0 script capital W
Xscr 𝒳 U+1D4B3 (119987) HTML 5.0 script capital X
Yscr 𝒴 U+1D4B4 (119988) HTML 5.0 script capital Y
Zscr 𝒵 U+1D4B5 (119989) HTML 5.0 script capital Z
ascr 𝒶 U+1D4B6 (119990) HTML 5.0 script small a
bscr 𝒷 U+1D4B7 (119991) HTML 5.0 script small b
cscr 𝒸 U+1D4B8 (119992) HTML 5.0 script small c
dscr 𝒹 U+1D4B9 (119993) HTML 5.0 script small d
fscr 𝒻 U+1D4BB (119995) HTML 5.0 script small f
hscr 𝒽 U+1D4BD (119997) HTML 5.0 script small h
iscr 𝒾 U+1D4BE (119998) HTML 5.0 script small i
jscr 𝒿 U+1D4BF (119999) HTML 5.0 script small j
kscr 𝓀 U+1D4C0 (120000) HTML 5.0 script small k
lscr 𝓁 U+1D4C1 (120001) HTML 5.0 script small l
mscr 𝓂 U+1D4C2 (120002) HTML 5.0 script small m
nscr 𝓃 U+1D4C3 (120003) HTML 5.0 script small n
pscr 𝓅 U+1D4C5 (120005) HTML 5.0 script small p
qscr 𝓆 U+1D4C6 (120006) HTML 5.0 script small q
rscr 𝓇 U+1D4C7 (120007) HTML 5.0 script small r
sscr 𝓈 U+1D4C8 (120008) HTML 5.0 script small s
tscr 𝓉 U+1D4C9 (120009) HTML 5.0 script small t
uscr 𝓊 U+1D4CA (120010) HTML 5.0 script small u
vscr 𝓋 U+1D4CB (120011) HTML 5.0 script small v
wscr 𝓌 U+1D4CC (120012) HTML 5.0 script small w
xscr 𝓍 U+1D4CD (120013) HTML 5.0 script small x
yscr 𝓎 U+1D4CE (120014) HTML 5.0 script small y
zscr 𝓏 U+1D4CF (120015) HTML 5.0 script small z
Afr 𝔄 U+1D504 (120068) HTML 5.0 Fraktur capital A
Bfr 𝔅 U+1D505 (120069) HTML 5.0 Fraktur capital B
Dfr 𝔇 U+1D507 (120071) HTML 5.0 Fraktur capital D
Efr 𝔈 U+1D508 (120072) HTML 5.0 Fraktur capital E
Ffr 𝔉 U+1D509 (120073) HTML 5.0 Fraktur capital F
Gfr 𝔊 U+1D50A (120074) HTML 5.0 Fraktur capital G
Jfr 𝔍 U+1D50D (120077) HTML 5.0 Fraktur capital J
Kfr 𝔎 U+1D50E (120078) HTML 5.0 Fraktur capital K
Lfr 𝔏 U+1D50F (120079) HTML 5.0 Fraktur capital L
Mfr 𝔐 U+1D510 (120080) HTML 5.0 Fraktur capital M
Nfr 𝔑 U+1D511 (120081) HTML 5.0 Fraktur capital N
Ofr 𝔒 U+1D512 (120082) HTML 5.0 Fraktur capital O
Pfr 𝔓 U+1D513 (120083) HTML 5.0 Fraktur capital P
Qfr 𝔔 U+1D514 (120084) HTML 5.0 Fraktur capital Q
Sfr 𝔖 U+1D516 (120086) HTML 5.0 Fraktur capital S
Tfr 𝔗 U+1D517 (120087) HTML 5.0 Fraktur capital T
Ufr 𝔘 U+1D518 (120088) HTML 5.0 Fraktur capital U
Vfr 𝔙 U+1D519 (120089) HTML 5.0 Fraktur capital V
Wfr 𝔚 U+1D51A (120090) HTML 5.0 Fraktur capital W
Xfr 𝔛 U+1D51B (120091) HTML 5.0 Fraktur capital X
Yfr 𝔜 U+1D51C (120092) HTML 5.0 Fraktur capital Y
afr 𝔞 U+1D51E (120094) HTML 5.0 Fraktur small a
bfr 𝔟 U+1D51F (120095) HTML 5.0 Fraktur small b
cfr 𝔠 U+1D520 (120096) HTML 5.0 Fraktur small c
dfr 𝔡 U+1D521 (120097) HTML 5.0 Fraktur small d
efr 𝔢 U+1D522 (120098) HTML 5.0 Fraktur small e
ffr 𝔣 U+1D523 (120099) HTML 5.0 Fraktur small f
gfr 𝔤 U+1D524 (120100) HTML 5.0 Fraktur small g
hfr 𝔥 U+1D525 (120101) HTML 5.0 Fraktur small h
ifr 𝔦 U+1D526 (120102) HTML 5.0 Fraktur small i
jfr 𝔧 U+1D527 (120103) HTML 5.0 Fraktur small j
kfr 𝔨 U+1D528 (120104) HTML 5.0 Fraktur small k
lfr 𝔩 U+1D529 (120105) HTML 5.0 Fraktur small l
mfr 𝔪 U+1D52A (120106) HTML 5.0 Fraktur small m
nfr 𝔫 U+1D52B (120107) HTML 5.0 Fraktur small n
ofr 𝔬 U+1D52C (120108) HTML 5.0 Fraktur small o
pfr 𝔭 U+1D52D (120109) HTML 5.0 Fraktur small p
qfr 𝔮 U+1D52E (120110) HTML 5.0 Fraktur small q
rfr 𝔯 U+1D52F (120111) HTML 5.0 Fraktur small r
sfr 𝔰 U+1D530 (120112) HTML 5.0 Fraktur small s
tfr 𝔱 U+1D531 (120113) HTML 5.0 Fraktur small t
ufr 𝔲 U+1D532 (120114) HTML 5.0 Fraktur small u
vfr 𝔳 U+1D533 (120115) HTML 5.0 Fraktur small v
wfr 𝔴 U+1D534 (120116) HTML 5.0 Fraktur small w
xfr 𝔵 U+1D535 (120117) HTML 5.0 Fraktur small x
yfr 𝔶 U+1D536 (120118) HTML 5.0 Fraktur small y
zfr 𝔷 U+1D537 (120119) HTML 5.0 Fraktur small z
Aopf 𝔸 U+1D538 (120120) HTML 5.0 double-struck capital A
Bopf 𝔹 U+1D539 (120121) HTML 5.0 double-struck capital B
Dopf 𝔻 U+1D53B (120123) HTML 5.0 double-struck capital D
Eopf 𝔼 U+1D53C (120124) HTML 5.0 double-struck capital E
Fopf 𝔽 U+1D53D (120125) HTML 5.0 double-struck capital F
Gopf 𝔾 U+1D53E (120126) HTML 5.0 double-struck capital G
Iopf 𝕀 U+1D540 (120128) HTML 5.0 double-struck capital I
Jopf 𝕁 U+1D541 (120129) HTML 5.0 double-struck capital J
Kopf 𝕂 U+1D542 (120130) HTML 5.0 double-struck capital K
Lopf 𝕃 U+1D543 (120131) HTML 5.0 double-struck capital L
Mopf 𝕄 U+1D544 (120132) HTML 5.0 double-struck capital M
Oopf 𝕆 U+1D546 (120134) HTML 5.0 double-struck capital O
Sopf 𝕊 U+1D54A (120138) HTML 5.0 double-struck capital S
Topf 𝕋 U+1D54B (120139) HTML 5.0 double-struck capital T
Uopf 𝕌 U+1D54C (120140) HTML 5.0 double-struck capital U
Vopf 𝕍 U+1D54D (120141) HTML 5.0 double-struck capital V
Wopf 𝕎 U+1D54E (120142) HTML 5.0 double-struck capital W
Xopf 𝕏 U+1D54F (120143) HTML 5.0 double-struck capital X
Yopf 𝕐 U+1D550 (120144) HTML 5.0 double-struck capital Y
aopf 𝕒 U+1D552 (120146) HTML 5.0 double-struck small a
bopf 𝕓 U+1D553 (120147) HTML 5.0 double-struck small b
copf 𝕔 U+1D554 (120148) HTML 5.0 double-struck small c
dopf 𝕕 U+1D555 (120149) HTML 5.0 double-struck small d
eopf 𝕖 U+1D556 (120150) HTML 5.0 double-struck small e
fopf 𝕗 U+1D557 (120151) HTML 5.0 double-struck small f
gopf 𝕘 U+1D558 (120152) HTML 5.0 double-struck small g
hopf 𝕙 U+1D559 (120153) HTML 5.0 double-struck small h
iopf 𝕚 U+1D55A (120154) HTML 5.0 double-struck small i
jopf 𝕛 U+1D55B (120155) HTML 5.0 double-struck small j
kopf 𝕜 U+1D55C (120156) HTML 5.0 double-struck small k
lopf 𝕝 U+1D55D (120157) HTML 5.0 double-struck small l
mopf 𝕞 U+1D55E (120158) HTML 5.0 double-struck small m
nopf 𝕟 U+1D55F (120159) HTML 5.0 double-struck small n
oopf 𝕠 U+1D560 (120160) HTML 5.0 double-struck small o
popf 𝕡 U+1D561 (120161) HTML 5.0 double-struck small p
qopf 𝕢 U+1D562 (120162) HTML 5.0 double-struck small q
ropf 𝕣 U+1D563 (120163) HTML 5.0 double-struck small r
sopf 𝕤 U+1D564 (120164) HTML 5.0 double-struck small s
topf 𝕥 U+1D565 (120165) HTML 5.0 double-struck small t
uopf 𝕦 U+1D566 (120166) HTML 5.0 double-struck small u
vopf 𝕧 U+1D567 (120167) HTML 5.0 double-struck small v
wopf 𝕨 U+1D568 (120168) HTML 5.0 double-struck small w
xopf 𝕩 U+1D569 (120169) HTML 5.0 double-struck small x
yopf 𝕪 U+1D56A (120170) HTML 5.0 double-struck small y
zopf 𝕫 U+1D56B (120171) HTML 5.0 double-struck small z

Notes:

1. ^{{cite web |url=https://dev.w3.org/html5/html-author/charref}}

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. 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. 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:

  • If the document is read by a conforming HTML processor, then only the 252 HTML character entities can safely be used. The use of &apos; or custom entity references may not be supported and may produce unpredictable results.
  • 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 (see above) can safely be used, although other entities may be used if they are declared in the internal DTD subset.
  • If the document is read by an XML parser that does read external entities, then the five built-in XML character entities 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.

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

See also

  • Character encodings in HTML
  • HTML decimal character rendering
  • SGML entity
  • Digraph and Trigraph (a similar concept to enter unavailable characters)

؟/--

References

  • [https://www.unicode.org/ Unicode Consortium]. See also: Unicode Consortium
    • [https://www.unicode.org/Public/UNIDATA/UnicodeData.txt UnicodeData.txt from the Unicode Consortium]
  • World Wide Web Consortium. See also: World Wide Web Consortium
    • XML 1.0 spec
    • HTML 2.0 spec
    • HTML 3.2 spec
    • HTML 4.0 spec
    • HTML 4.01 spec
    • HTML 5 spec
    • XHTML 1.0 spec
    • XML Entity Definitions for Characters
  • The normative reference to RFC 2070 (still found in DTDs defining the character entities for HTML or XHTML) is historic; this RFC (along with other RFC's related to different part of the HTML specification) has been deprecated in favor of the newer informational RFC 2854 which defines the "text/html" MIME type and references directly the W3C specifications for the actual HTML content.
  • Numerical Reference of Unicode code points at Wikibooks

External links

  • Character entity references in HTML 4 at the W3C
  • Webpage for encoding and decoding special characters

4 : Lists of computer languages|HTML|XML|Unicode

随便看

 

开放百科全书收录14589846条英语、德语、日语等多语种百科知识,基本涵盖了大多数领域的百科知识,是一部内容自由、开放的电子版国际百科全书。

 

Copyright © 2023 OENC.NET All Rights Reserved
京ICP备2021023879号 更新时间:2024/11/13 1:39:12