Syd Allan: HTML Tag and Color Test Page

www.jagular.com/colors.shtml

My CGI Environment Variables page is at http://www.jagular.com/environment.shtml

There is a very good set of HTML test pages at http://www.w3.org/Style/CSS/Test/CSS1/current/index.html

Contents

  1. Other Sites With Colors and Color Information
  2. Description of this Page
  3. Various HTML Tags
  4. HTML List Tags
  5. Special Character Entities
  6. 256 ASCII Characters
  7. Unicode Links
  8. 27 Color Codes
  9. 216 Colors From The Standard Color Map
  10. Color Names
  11. 729 Color Codes
  12. 4913 Color Codes

1. Other Sites With Colors and Color Information

   Related Wikipedia pages

2. Description of this Page

I am using this page to test out various HTML elements. There is nothing very elegant about the color tables at the bottom of the page but I find them useful. I am only familiar with basic-level HTML statements and I am not trying to create an exhaustive list of every HTML element which can appear on a page. I do not currently work with Java Script or Java or XML. I do not use an HTML editor software program because I prefer to type all of my tags (including table tags) longhand so that I can have control over them (I think that most professional programmers prefer not to be "helped" by software which changes their code whether they like it or not). I use a full-featured 32-bit text editor called TextPad to create all of my HTML documents (and all of my SAS code). It is now especially useful for HTML editing because TextPad version 4.0 will now color my HTML tags and quoted text in whatever color scheme I choose.

The colors on this page are specified in RGB color using statements such as:

<td align="center" bgcolor="#7F00FF"><font size="-1" color="#FF807F">7F00FF</font>

To generate the repetetive statements for the color table I used a SAS program which is available at ftp://ftp.jagular.com/samples/ctables.sas.txt. Eventually I would like to try using Java Script or some other method to generate the color tables dynamically rather than having lines and lines of HTML transmitted to the viewer (the HTML for the last set of 17 color tables is over 500K in size and I suspect that the Java Script to create the same 17 tables would be less than 10K). In addition, I would like to try to allow the user to click on a cell in the table in order to view a series of tables with that particular background color in every cell but with thousands of possible text colors displayed. I would also like to allow the person viewing the page to easily switch from viewing tables with green and blue colors adjacent and slowly changing shades of red to having blue and red adjacent with slowly changing shades of green or red and green adjacent with slowly changing shades of blue. The HTML for the color tables was actually created as separate files which are merged with this main colors.shtml file at the moment the user loads the page into their browser. The statements I use in the HTML in colors.shtml to merge in the color table statements are like:

<!-- #include file="color-tables.shtml" -->

This method of storing some of your HTML in separate files (as I do with my page signatures and my <body> tags (so that I can have standardized page colors (because I have not tried to use <style> tags))) requires that your ISP server supports "server-side includes".

There is information on server side includes at http://hoohoo.ncsa.uiuc.edu/docs/tutorials/includes.html and at http://cgi.resourceindex.com/Documentation/Server_Side_Includes/ .

This is also a good page to view when you are trying out different default screen colors, text fonts and font sizes in your web browser: you will see on this page most of the various text-faces and sizes which will result from your choices.

My list of HTML guides and resources is at http://www.jagular.com/url-list.shtml#WWWH.

There is useful color information and a very nice looking color table which has been created by Gernot Metze and posted to http://mrlxp2.mrl.uiuc.edu/~www/rgbtbl.html#RGBtbl.

3. Various HTML Tags

The variable-width font, font size, font color and background color of the section you are reading now are in the default format specified in your web browser settings (in Netscape Navigator it is under "Edit-Preferences-Appearance-Fonts" and in Internet Explorer it is under "View (or Tools)-Internet Options-General tab-Fonts button").

This font is in the default font face and size specified in your web browser settings for fixed-width fonts.

This is an H1 Header created by surrounding this line in <h1> tags

This is an H2 Header created by surrounding this line in <h2> tags

This is an H3 Header created by surrounding this line in <h3> tags

This is an H4 Header created by surrounding this line in <h4> tags

This is an H5 Header created by surrounding this line in <h5> tags
This is an H6 Header created by surrounding this line in <h6> tags

The text on this line is the size you get when you set font size=+5
The text on this line is the size you get when you set font size=+4
The text on this line is the size you get when you set font size=+3
The text on this line is the size you get when you set font size=+2
The text on this line is the size you get when you set font size=+1
The text on this line is the size you get when you set font size=-1
The text on this line is the size you get when you set font size=-2
The text on this line is the size you get when you set font size=-3
The text on this line is the size you get when you set font size=-4
The text on this line is the size you get when you set font size=-5
The text on this line is the size you get when you set font size=1
The text on this line is the size you get when you set font size=2
The text on this line is the size you get when you set font size=3
The text on this line is the size you get when you set font size=4
The text on this line is the size you get when you set font size=5
The text on this line is the size you get when you set font size=6
The text on this line is the size you get when you set font size=7
The text on this line is the size you get when you set font size=8
The text on this line is the size you get when you set font size=9

---The following are "fontstyle" entity tags from the W3C 4.01 DTD---
This text has been surrounded by <b> (bold) tags
This text has been surrounded by <big> tags
This text has been surrounded by <i> (italics) tags
This text has been surrounded by <s> (strikeout) tags (<s> tags)
This text has been surrounded by <small> tags
This text has been surrounded by <strike> (strikeout) tags (<strikeout> tags)
This text has been surrounded by <tt> (typewriter text) tags
This text has been surrounded by <u> (underline) tags

---The following are "phrase" entity tags from the W3C 4.01 DTD---
This text has been surrounded by <abbr> (abbreviation) tags
This text has been surrounded by <acronym> tags
This text has been surrounded by <cite> (citation) tags
This text has been surrounded by <code> tags
This text has been surrounded by <dfn> tags
This text has been surrounded by <em> (emphasize) tags
This text has been surrounded by <kbd> (keyboard) tags
This text has been surrounded by <samp> tags
This text has been surrounded by <strong> tags
This text has been surrounded by <var> (variable) tags

---The following are some of the "special" entity tags from the W3C 4.01 DTD---
This text has been surrounded by <q> (inline quote) tags
The following word test was surrounded by <sup> tags
The following word test was surrounded by <sub> tags
The following 2 words test1test2 were specified using: <sup>test1<sup>test2</sup></sup> to see if the nesting of <sup> tags will cause the superscripting to move up higher for the second word.

---The following are "block" entity tags from the W3C 4.01 DTD---

This text has been surrounded by <address> tags

This text has been surrounded by <blockquote> tags and should probably appear indented on both sides when it is displayed in your browser (which keeps you from having to define a narrow table to get that effect)

This text has been surrounded by <center> tags

---The following are other miscellaneous tags---
This text has been surrounded by <del> (delete) tags (resulting in a "strike-out" effect in IE, but apparently not in Netscape)
This text has been surrounded by <ins> (insert) tags (resulting in an underline effect in IE, but apparently not in Netscape)
This line of text has been surrounded by <nobr> (no-break) tags and that is supposed to result in no breaks appearing in the line when it is displayed in your browser window (which means that this text should run right off the right-hand edge of your screen -- this seems to be an alternative to using a table, and putting the nowrap="nowrap" option in the <td> tag)

These 5 lines have been surrounded by <pre> (pre-formatted text) tags and are supposed to be positioned on the page exactly as I have typed them in (included multiple consecutive blanks and line breaks without the need for <br> tags)

The following line is 300 characters long and is surrounded by <pre> tags to see if the display will wrap the line in the browser even though the line is one continuous line in the HTML:

----+----1----+----2----+----3----+----4----+----5----+----6----+----7----+----8----+----9----+----0----+----1----+----2----+----3----+----4----+----5----+----6----+----7----+----8----+----9----+----0----+----1----+----2----+----3----+----4----+----5----+----6----+----7----+----8----+----9----+----0

This "marquee" text (only supported by Microsoft Internet Explorer) was created using the statement: <marquee align="center" behaviour="slide" direction="left" height="32" loop="-1" scrollamount="2" scrolldelay="2" width="90%">--Message text goes here--</marquee>

Below is a line created using the statement <hr>


Below is a line created using the statement <hr /> (as used in XHTML)
Below is a line created using the statement <hr width="75%" align="right" size="10">
Below is a line created using the statement <hr width="25%" align="center" size="10" noshade="noshade">. The size="10" specification refers to 10 pixels.
Below is a line created using the statement <hr width="25%" align="center" size="30" color="#00FFFF"> (your browser might not support the "color" option but I have tested it successfully in MS Internet Explorer)
Below is a line created using the statement <hr width="100" align="center" size="100">

The following line is 200 characters long and in a fixed-width font of normal size and will help you to know how many characters will fit across the width of your screen given your fixed-width font face and size specified in your browser settings.

----+----1----+----2----+----3----+----4----+----5----+----6----+----7----+----8----+----9----+----0----+----1----+----2----+----3----+----4----+----5----+----6----+----7----+----8----+----9----+----0

The following line is 150 characters long and in a fixed-width font of size=+1 and will help you to know how many characters will fit across the width of your screen given your fixed-width font face and size specified in your browser settings.

----+----1----+----2----+----3----+----4----+----5----+----6----+----7----+----8----+----9----+----0----+----6----+----7----+----8----+----9----+----0

The following line is 150 characters long and in a fixed-width font of size=+2 and will help you to know how many characters will fit across the width of your screen given your fixed-width font face and size specified in your browser settings.

----+----1----+----2----+----3----+----4----+----5----+----6----+----7----+----8----+----9----+----0----+----6----+----7----+----8----+----9----+----0

The following line is 150 characters long and in a fixed-width font of size=+3 and will help you to know how many characters will fit across the width of your screen given your fixed-width font face and size specified in your browser settings (and see if the size=+3 font is any larger than the size=+2 font).

----+----1----+----2----+----3----+----4----+----5----+----6----+----7----+----8----+----9----+----0----+----6----+----7----+----8----+----9----+----0

The following line is 150 characters long and in a fixed-width font of size=+4 and will help you to know how many characters will fit across the width of your screen given your fixed-width font face and size specified in your browser settings (and see if the size=+4 font is any larger than the size=+3 font).

----+----1----+----2----+----3----+----4----+----5----+----6----+----7----+----8----+----9----+----0----+----6----+----7----+----8----+----9----+----0

The following line is 150 characters long and in a fixed-width font of size=+5 and will help you to know how many characters will fit across the width of your screen given your fixed-width font face and size specified in your browser settings (and see if the size=+5 font is any larger than the size=+4 font).

----+----1----+----2----+----3----+----4----+----5----+----6----+----7----+----8----+----9----+----0----+----6----+----7----+----8----+----9----+----0

The following line is 400 characters long and in a fixed-width font of size=-1 and will help you to know how many characters will fit across the width of your screen given your fixed-width font face and size specified in your browser settings.

----+----1----+----2----+----3----+----4----+----5----+----6----+----7----+----8----+----9----+----0----+----1----+----2----+----3----+----4----+----5----+----6----+----7----+----8----+----9----+----0----+----1----+----2----+----3----+----4----+----5----+----6----+----7----+----8----+----9----+----0----+----1----+----2----+----3----+----4----+----5----+----6----+----7----+----8----+----9----+----0

The following line is 400 characters long and in a fixed-width font of size=-2 and will help you to know how many characters will fit across the width of your screen given your fixed-width font face and size specified in your browser settings.

----+----1----+----2----+----3----+----4----+----5----+----6----+----7----+----8----+----9----+----0----+----1----+----2----+----3----+----4----+----5----+----6----+----7----+----8----+----9----+----0----+----1----+----2----+----3----+----4----+----5----+----6----+----7----+----8----+----9----+----0----+----1----+----2----+----3----+----4----+----5----+----6----+----7----+----8----+----9----+----0

The following line is 400 characters long and in a fixed-width font of size=-3 and will help you to know how many characters will fit across the width of your screen given your fixed-width font face and size specified in your browser settings (and see if the size=-3 font is any smaller than the size=-2 font).

----+----1----+----2----+----3----+----4----+----5----+----6----+----7----+----8----+----9----+----0----+----1----+----2----+----3----+----4----+----5----+----6----+----7----+----8----+----9----+----0----+----1----+----2----+----3----+----4----+----5----+----6----+----7----+----8----+----9----+----0----+----1----+----2----+----3----+----4----+----5----+----6----+----7----+----8----+----9----+----0

The following line is 400 characters long and in a fixed-width font of size=-4 and will help you to know how many characters will fit across the width of your screen given your fixed-width font face and size specified in your browser settings (and see if the size=-4 font is any smaller than the size=-3 font).

----+----1----+----2----+----3----+----4----+----5----+----6----+----7----+----8----+----9----+----0----+----1----+----2----+----3----+----4----+----5----+----6----+----7----+----8----+----9----+----0----+----1----+----2----+----3----+----4----+----5----+----6----+----7----+----8----+----9----+----0----+----1----+----2----+----3----+----4----+----5----+----6----+----7----+----8----+----9----+----0


This block of text was surrounded by the tags: <hr><multicol cols="3" gutter="50">this block of text goes here</multicol><hr> and is being used to demonstrate that in some browsers you can use the <multicol> tags to specify text which will appear in a specified numbers of columns, "phone-book" style. If this text is not in columns in your browser then your browser does not support this tag.

4. HTML List Tags

  1. Each of these items is part of an "ordered" list containing <li> tags surrounded by <ol> tags
  2. This is a second first level item in which <ol type="1"> was specified
  3. This is a third first level item in which <ol type="1"> was specified
  4. This is a fourth first level item in which <ol type="1"> was specified and it is a longer line which should be long enough to see what the browser will do when a list item is too long to fit on one line and the browser must decide how to position the beginning of the next line relative to the bullet at the beginning of the line above
    1. This is a second level item in which <ol type="i"> was specified
    2. This is a second second level item in which <ol type="i"> was specified
      1. This is a third level item in which <ol type="I"> was specified
      2. This is a second third level item in which <ol type="I"> was specified
        1. This is a fourth level item in which <ol type="A"> was specified
        2. This is a second fourth level item in which <ol type="A"> was specified
          1. This is a fifth level item in which <ol type="a"> was specified
          2. This is a second fifth level item in which <ol type="a"> was specified
      3. This is a third second level item in which <ol type="I"> was specified
  5. This is a fifth first level item in which <ol type="1"> was specified

  • Each of these items is part of an "menu" list containing <li> tags surrounded by <menu> tags
  • This is the second first level item in a <menu> list
  • This is the first second level item in a <menu> list
  • This is the second second level item in a <menu> list
  • This is a third first level item in a <menu> list
  • Each of these items is part of an "dir" list containing <li> tags surrounded by <dir> tags
  • This is the second first level item in a <dir> list
  • This is the first second level item in a <dir> list
  • This is the second second level item in a <dir> list
  • This is a third first level item in a <dir> list
  • This is the first item surrounded by <dt> tags within a list surrounded by <dl> tags
    This is the line surrounded by <dd> tags below the above item
    This is the second item surrounded by <dt> tags within a list surrounded by <dl> tags
    This is the line surrounded by <dd> tags below the above item
    This is the first item surrounded by a second set of <dt> tags within <dl> tags below the <dd> tags of the item immediately above
    This is the line surrounded by <dd> tags below the above item

    5. Special Character Entities

    It is possible to specify special display characters to appear on a web page using their ASCII character number or a special designated character name. This is controlled by the "<!DOCTYPE" (document type declaration) in the "DTD" (document type definition) of the HTML file for the web page itself. The DTD will contain lines such as:
    <!ENTITY oacute CDATA "&#243;" -- small o, acute accent -->
    which, in this case, says that in this web page the characters &oacute; should be replaced by the characters &#243;. The special codes (or entities) which can be used in a particular web document are defined in the document type declaration for that document. One of the DTD's available for use on the Internet is called "HTML 4.0 Transitional". Its public name is -//W3C//DTD HTML 4.0 Transitional//EN and the document type declaration for it is in the document type definition at http://www.w3.org/TR/REC-html40/loose.dtd. That DTD file references other files which themselves contain <!ENTITY statements. The entities in the lists below are from 2 files: -//W3C//ENTITIES Latin 1//EN//HTML (the Latin 1 character entity set) which is at http://www.w3.org/TR/REC-html40/HTMLlat1.ent and -//W3C//ENTITIES Special//EN//HTML (the Special character entity set) which is at http://www.w3.org/TR/REC-html40/HTMLspecial.ent. The characters in the list below can be specified in an HTML document using either the representation in the first or the second column in the following table. The table is repeated three times in three different sort orders. The information in the table is available in text form at http://www.jagular.com/char-codes-w3c-dtd.txt. The character entity reference chapter for the HTML 4.0 online documentation at W3C is at http://www.w3.org/TR/REC-html40/sgml/entities.html.

    In the future the use of XML will require the availability of an additional entity, &apos; (ASCII=039) for the single quote, or apostrophe. This will be necessary because XML uses single quote marks in a way that requires that they sometimes be quoted in the same way that ampersands, double-quotes and less-than signs must sometimes be quoted in HTML.

    Sorted by Numeric Entity (ASCII Number)

    Numeric Entity Named Entity Symbol (By Number) Symbol (By Name) Description
    &#0034; &quot; " " quotation mark= APL quote, U+0022 ISOnum
    &#0038; &amp; & & ampersand, U+0026 ISOnum
    &#0060; &lt; < < less-than sign, U+003C ISOnum
    &#0062; &gt; > > greater-than sign, U+003E ISOnum
    &#0160; &nbsp;     no-break space= non-breaking space, U+00A0 ISOnum
    &#0161; &iexcl; ¡ ¡ inverted exclamation mark, U+00A1 ISOnum
    &#0162; &cent; ¢ ¢ cent sign, U+00A2 ISOnum
    &#0163; &pound; £ £ pound sign, U+00A3 ISOnum
    &#0164; &curren; ¤ ¤ currency sign, U+00A4 ISOnum
    &#0165; &yen; ¥ ¥ yen sign= yuan sign, U+00A5 ISOnum
    &#0166; &brvbar; ¦ ¦ broken bar= broken vertical bar, U+00A6 ISOnum
    &#0167; &sect; § § section sign, U+00A7 ISOnum
    &#0168; &uml; ¨ ¨ diaeresis= spacing diaeresis, U+00A8 ISOdia
    &#0169; &copy; © © copyright sign, U+00A9 ISOnum
    &#0170; &ordf; ª ª feminine ordinal indicator, U+00AA ISOnum
    &#0171; &laquo; « « left-pointing double angle quotation mark= left pointing guillemet, U+00AB ISOnum
    &#0172; &not; ¬ ¬ not sign, U+00AC ISOnum
    &#0173; &shy; ­ ­ soft hyphen= discretionary hyphen, U+00AD ISOnum
    &#0174; &reg; ® ® registered sign= registered trade mark sign, U+00AE ISOnum
    &#0175; &macr; ¯ ¯ macron= spacing macron= overline= APL overbar, U+00AF ISOdia
    &#0176; &deg; ° ° degree sign, U+00B0 ISOnum
    &#0177; &plusmn; ± ± plus-minus sign= plus-or-minus sign, U+00B1 ISOnum
    &#0178; &sup2; ² ² superscript two= superscript digit two= squared, U+00B2 ISOnum
    &#0179; &sup3; ³ ³ superscript three= superscript digit three = cubed, U+00B3 ISOnum
    &#0180; &acute; ´ ´ acute accent= spacing acute, U+00B4 ISOdia
    &#0181; &micro; µ µ micro sign, U+00B5 ISOnum
    &#0182; &para; pilcrow sign= paragraph sign, U+00B6 ISOnum
    &#0183; &middot; · · middle dot= Georgian comma = Greek middle dot, U+00B7 ISOnum
    &#0184; &cedil; ¸ ¸ cedilla= spacing cedilla, U+00B8 ISOdia
    &#0185; &sup1; ¹ ¹ superscript one= superscript digit one, U+00B9 ISOnum
    &#0186; &ordm; º º masculine ordinal indicator, U+00BA ISOnum
    &#0187; &raquo; » » right-pointing double angle quotation mark = right pointing guillemet, U+00BB ISOnum
    &#0188; &frac14; ¼ ¼ vulgar fraction one quarter = fraction one quarter, U+00BC ISOnum
    &#0189; &frac12; ½ ½ vulgar fraction one half = fraction one half, U+00BD ISOnum
    &#0190; &frac34; ¾ ¾ vulgar fraction three quarters = fraction three quarters, U+00BE ISOnum
    &#0191; &iquest; ¿ ¿ inverted question mark = turned question mark, U+00BF ISOnum
    &#0192; &Agrave; À À latin capital letter A with grave = latin capital letter A grave, U+00C0 ISOlat1
    &#0193; &Aacute; Á Á latin capital letter A with acute, U+00C1 ISOlat1
    &#0194; &Acirc; Â Â latin capital letter A with circumflex, U+00C2 ISOlat1
    &#0195; &Atilde; Ã Ã latin capital letter A with tilde, U+00C3 ISOlat1
    &#0196; &Auml; Ä Ä latin capital letter A with diaeresis, U+00C4 ISOlat1
    &#0197; &Aring; Å Å latin capital letter A with ring above = latin capital letter A ring, U+00C5 ISOlat1
    &#0198; &AElig; Æ Æ latin capital letter AE = latin capital ligature AE, U+00C6 ISOlat1
    &#0199; &Ccedil; Ç Ç latin capital letter C with cedilla, U+00C7 ISOlat1
    &#0200; &Egrave; È È latin capital letter E with grave, U+00C8 ISOlat1
    &#0201; &Eacute; É É latin capital letter E with acute, U+00C9 ISOlat1
    &#0202; &Ecirc; Ê Ê latin capital letter E with circumflex, U+00CA ISOlat1
    &#0203; &Euml; Ë Ë latin capital letter E with diaeresis, U+00CB ISOlat1
    &#0204; &Igrave; Ì Ì latin capital letter I with grave, U+00CC ISOlat1
    &#0205; &Iacute; Í Í latin capital letter I with acute, U+00CD ISOlat1
    &#0206; &Icirc; Î Î latin capital letter I with circumflex, U+00CE ISOlat1
    &#0207; &Iuml; Ï Ï latin capital letter I with diaeresis, U+00CF ISOlat1
    &#0208; &ETH; Ð Ð latin capital letter ETH, U+00D0 ISOlat1
    &#0209; &Ntilde; Ñ Ñ latin capital letter N with tilde, U+00D1 ISOlat1
    &#0210; &Ograve; Ò Ò latin capital letter O with grave, U+00D2 ISOlat1
    &#0211; &Oacute; Ó Ó latin capital letter O with acute, U+00D3 ISOlat1
    &#0212; &Ocirc; Ô Ô latin capital letter O with circumflex, U+00D4 ISOlat1
    &#0213; &Otilde; Õ Õ latin capital letter O with tilde, U+00D5 ISOlat1
    &#0214; &Ouml; Ö Ö latin capital letter O with diaeresis, U+00D6 ISOlat1
    &#0215; &times; × × multiplication sign, U+00D7 ISOnum
    &#0216; &Oslash; Ø Ø latin capital letter O with stroke = latin capital letter O slash, U+00D8 ISOlat1
    &#0217; &Ugrave; Ù Ù latin capital letter U with grave, U+00D9 ISOlat1
    &#0218; &Uacute; Ú Ú latin capital letter U with acute, U+00DA ISOlat1
    &#0219; &Ucirc; Û Û latin capital letter U with circumflex, U+00DB ISOlat1
    &#0220; &Uuml; Ü Ü latin capital letter U with diaeresis, U+00DC ISOlat1
    &#0221; &Yacute; Ý Ý latin capital letter Y with acute, U+00DD ISOlat1
    &#0222; &THORN; Þ Þ latin capital letter THORN, U+00DE ISOlat1
    &#0223; &szlig; ß ß latin small letter sharp s= ess-zed, U+00DF ISOlat1
    &#0224; &agrave; à à latin small letter a with grave = latin small letter a grave, U+00E0 ISOlat1
    &#0225; &aacute; á á latin small letter a with acute, U+00E1 ISOlat1
    &#0226; &acirc; â â latin small letter a with circumflex, U+00E2 ISOlat1
    &#0227; &atilde; ã ã latin small letter a with tilde, U+00E3 ISOlat1
    &#0228; &auml; ä ä latin small letter a with diaeresis, U+00E4 ISOlat1
    &#0229; &aring; å å latin small letter a with ring above = latin small letter a ring, U+00E5 ISOlat1
    &#0230; &aelig; æ æ latin small letter ae = latin small ligature ae, U+00E6 ISOlat1
    &#0231; &ccedil; ç ç latin small letter c with cedilla, U+00E7 ISOlat1
    &#0232; &egrave; è è latin small letter e with grave, U+00E8 ISOlat1
    &#0233; &eacute; é é latin small letter e with acute, U+00E9 ISOlat1
    &#0234; &ecirc; ê ê latin small letter e with circumflex, U+00EA ISOlat1
    &#0235; &euml; ë ë latin small letter e with diaeresis, U+00EB ISOlat1
    &#0236; &igrave; ì ì latin small letter i with grave, U+00EC ISOlat1
    &#0237; &iacute; í í latin small letter i with acute, U+00ED ISOlat1
    &#0238; &icirc; î î latin small letter i with circumflex, U+00EE ISOlat1
    &#0239; &iuml; ï ï latin small letter i with diaeresis, U+00EF ISOlat1
    &#0240; &eth; ð ð latin small letter eth, U+00F0 ISOlat1
    &#0241; &ntilde; ñ ñ latin small letter n with tilde, U+00F1 ISOlat1
    &#0242; &ograve; ò ò latin small letter o with grave, U+00F2 ISOlat1
    &#0243; &oacute; ó ó latin small letter o with acute, U+00F3 ISOlat1
    &#0244; &ocirc; ô ô latin small letter o with circumflex, U+00F4 ISOlat1
    &#0245; &otilde; õ õ latin small letter o with tilde, U+00F5 ISOlat1
    &#0246; &ouml; ö ö latin small letter o with diaeresis, U+00F6 ISOlat1
    &#0247; &divide; ÷ ÷ division sign, U+00F7 ISOnum
    &#0248; &oslash; ø ø latin small letter o with stroke, = latin small letter o slash, U+00F8 ISOlat1
    &#0249; &ugrave; ù ù latin small letter u with grave, U+00F9 ISOlat1
    &#0250; &uacute; ú ú latin small letter u with acute, U+00FA ISOlat1
    &#0251; &ucirc; û û latin small letter u with circumflex, U+00FB ISOlat1
    &#0252; &uuml; ü ü latin small letter u with diaeresis, U+00FC ISOlat1
    &#0253; &yacute; ý ý latin small letter y with acute, U+00FD ISOlat1
    &#0254; &thorn; þ þ latin small letter thorn, U+00FE ISOlat1
    &#0255; &yuml; ÿ ÿ latin small letter y with diaeresis, U+00FF ISOlat1
    &#0338; &OElig; Œ Œ latin capital ligature OE, U+0152 ISOlat2
    &#0339; &oelig; œ œ latin small ligature oe, U+0153 ISOlat2
    &#0352; &Scaron; Š Š latin capital letter S with caron, U+0160 ISOlat2
    &#0353; &scaron; š š latin small letter s with caron, U+0161 ISOlat2
    &#0376; &Yuml; Ÿ Ÿ latin capital letter Y with diaeresis, U+0178 ISOlat2
    &#0710; &circ; ˆ ˆ modifier letter circumflex accent, U+02C6 ISOpub
    &#0732; &tilde; ˜ ˜ small tilde, U+02DC ISOdia
    &#0913; &Alpha; Α Α greek capital letter alpha, U+0391
    &#0914; &Beta; Β Β greek capital letter beta, U+0392
    &#0915; &Gamma; Γ Γ greek capital letter gamma, U+0393 ISOgrk3
    &#0916; &Delta; Δ Δ greek capital letter delta, U+0394 ISOgrk3
    &#0917; &Epsilon; Ε Ε greek capital letter epsilon, U+0395
    &#0918; &Zeta; Ζ Ζ greek capital letter zeta, U+0396
    &#0919; &Eta; Η Η greek capital letter eta, U+0397
    &#0920; &Theta; Θ Θ greek capital letter theta, U+0398 ISOgrk3
    &#0921; &Iota; Ι Ι greek capital letter iota, U+0399
    &#0922; &Kappa; Κ Κ greek capital letter kappa, U+039A
    &#0923; &Lambda; Λ Λ greek capital letter lambda, U+039B ISOgrk3
    &#0924; &Mu; Μ Μ greek capital letter mu, U+039C
    &#0925; &Nu; Ν Ν greek capital letter nu, U+039D
    &#0926; &Xi; Ξ Ξ greek capital letter xi, U+039E ISOgrk3
    &#0927; &Omicron; Ο Ο greek capital letter omicron, U+039F
    &#0928; &Pi; Π Π greek capital letter pi, U+03A0 ISOgrk3
    &#0929; &Rho; Ρ Ρ greek capital letter rho, U+03A1
    &#0931; &Sigma; Σ Σ greek capital letter sigma, U+03A3 ISOgrk3
    &#0932; &Tau; Τ Τ greek capital letter tau, U+03A4
    &#0933; &Upsilon; Υ Υ greek capital letter upsilon, U+03A5 ISOgrk3
    &#0934; &Phi; Φ Φ greek capital letter phi, U+03A6 ISOgrk3
    &#0935; &Chi; Χ Χ greek capital letter chi, U+03A7
    &#0936; &Psi; Ψ Ψ greek capital letter psi, U+03A8 ISOgrk3
    &#0937; &Omega; Ω Ω greek capital letter omega, U+03A9 ISOgrk3
    &#0945; &alpha; α α greek small letter alpha, U+03B1 ISOgrk3
    &#0946; &beta; β β greek small letter beta, U+03B2 ISOgrk3
    &#0947; &gamma; γ γ greek small letter gamma, U+03B3 ISOgrk3
    &#0948; &delta; δ δ greek small letter delta, U+03B4 ISOgrk3
    &#0949; &epsilon; ε ε greek small letter epsilon, U+03B5 ISOgrk3
    &#0950; &zeta; ζ ζ greek small letter zeta, U+03B6 ISOgrk3
    &#0951; &eta; η η greek small letter eta, U+03B7 ISOgrk3
    &#0952; &theta; θ θ greek small letter theta, U+03B8 ISOgrk3
    &#0953; &iota; ι ι greek small letter iota, U+03B9 ISOgrk3
    &#0954; &kappa; κ κ greek small letter kappa, U+03BA ISOgrk3
    &#0955; &lambda; λ λ greek small letter lambda, U+03BB ISOgrk3
    &#0956; &mu; μ μ greek small letter mu, U+03BC ISOgrk3
    &#0957; &nu; ν ν greek small letter nu, U+03BD ISOgrk3
    &#0958; &xi; ξ ξ greek small letter xi, U+03BE ISOgrk3
    &#0959; &omicron; ο ο greek small letter omicron, U+03BF NEW
    &#0960; &pi; π π greek small letter pi, U+03C0 ISOgrk3
    &#0961; &rho; ρ ρ greek small letter rho, U+03C1 ISOgrk3
    &#0962; &sigmaf; ς ς greek small letter final sigma, U+03C2 ISOgrk3
    &#0963; &sigma; σ σ greek small letter sigma, U+03C3 ISOgrk3
    &#0964; &tau; τ τ greek small letter tau, U+03C4 ISOgrk3
    &#0965; &upsilon; υ υ greek small letter upsilon, U+03C5 ISOgrk3
    &#0966; &phi; φ φ greek small letter phi, U+03C6 ISOgrk3
    &#0967; &chi; χ χ greek small letter chi, U+03C7 ISOgrk3
    &#0968; &psi; ψ ψ greek small letter psi, U+03C8 ISOgrk3
    &#0969; &omega; ω ω greek small letter omega, U+03C9 ISOgrk3
    &#0977; &thetasym; ϑ ϑ greek small letter theta symbol, U+03D1 NEW
    &#0978; &upsih; ϒ ϒ greek upsilon with hook symbol, U+03D2 NEW
    &#0982; &piv; ϖ ϖ greek pi symbol, U+03D6 ISOgrk3
    &#8194; &ensp; en space, U+2002 ISOpub
    &#8195; &emsp; em space, U+2003 ISOpub
    &#8201; &thinsp; thin space, U+2009 ISOpub
    &#8204; &zwnj; zero width non-joiner, U+200C NEW RFC 2070
    &#8205; &zwj; zero width joiner, U+200D NEW RFC 2070
    &#8206; &lrm; left-to-right mark, U+200E NEW RFC 2070
    &#8207; &rlm; right-to-left mark, U+200F NEW RFC 2070
    &#8211; &ndash; en dash, U+2013 ISOpub
    &#8212; &mdash; em dash, U+2014 ISOpub
    &#8216; &lsquo; left single quotation mark, U+2018 ISOnum
    &#8217; &rsquo; right single quotation mark, U+2019 ISOnum
    &#8218; &sbquo; single low-9 quotation mark, U+201A NEW
    &#8220; &ldquo; left double quotation mark, U+201C ISOnum
    &#8221; &rdquo; right double quotation mark, U+201D ISOnum
    &#8222; &bdquo; double low-9 quotation mark, U+201E NEW
    &#8224; &dagger; dagger, U+2020 ISOpub
    &#8225; &Dagger; double dagger, U+2021 ISOpub
    &#8226; &bull; bullet= black small circle, U+2022 ISOpub
    &#8230; &hellip; horizontal ellipsis= three dot leader, U+2026 ISOpub
    &#8240; &permil; per mille sign, U+2030 ISOtech
    &#8242; &prime; prime= minutes= feet, U+2032 ISOtech
    &#8243; &Prime; double prime= seconds= inches, U+2033 ISOtech
    &#8249; &lsaquo; single left-pointing angle quotation mark, U+2039 ISO proposed
    &#8250; &rsaquo; single right-pointing angle quotation mark, U+203A ISO proposed
    &#8254; &oline; overline= spacing overscore, U+203E NEW
    &#8260; &frasl; fraction slash, U+2044 NEW
    &#8364; &euro; euro sign, U+20AC NEW
    &#8465; &image; blackletter capital I= imaginary part, U+2111 ISOamso
    &#8472; &weierp; script capital P= power set = Weierstrass p, U+2118 ISOamso
    &#8476; &real; blackletter capital R= real part symbol, U+211C ISOamso
    &#8482; &trade; trade mark sign, U+2122 ISOnum
    &#8501; &alefsym; alef symbol= first transfinite cardinal, U+2135 NEW
    &#8592; &larr; leftwards arrow, U+2190 ISOnum
    &#8593; &uarr; upwards arrow, U+2191 ISOnum
    &#8594; &rarr; rightwards arrow, U+2192 ISOnum
    &#8595; &darr; downwards arrow, U+2193 ISOnum
    &#8596; &harr; left right arrow, U+2194 ISOamsa
    &#8629; &crarr; downwards arrow with corner leftwards = carriage return, U+21B5 NEW
    &#8656; &lArr; leftwards double arrow, U+21D0 ISOtech
    &#8657; &uArr; upwards double arrow, U+21D1 ISOamsa
    &#8658; &rArr; rightwards double arrow, U+21D2 ISOtech
    &#8659; &dArr; downwards double arrow, U+21D3 ISOamsa
    &#8660; &hArr; left right double arrow, U+21D4 ISOamsa
    &#8704; &forall; for all, U+2200 ISOtech
    &#8706; &part; partial differential, U+2202 ISOtech
    &#8707; &exist; there exists, U+2203 ISOtech
    &#8709; &empty; empty set= null set= diameter, U+2205 ISOamso
    &#8711; &nabla; nabla= backward difference, U+2207 ISOtech
    &#8712; &isin; element of, U+2208 ISOtech
    &#8713; &notin; not an element of, U+2209 ISOtech
    &#8715; &ni; contains as member, U+220B ISOtech
    &#8719; &prod; n-ary product= product sign, U+220F ISOamsb
    &#8721; &sum; n-ary sumation, U+2211 ISOamsb
    &#8722; &minus; minus sign, U+2212 ISOtech
    &#8727; &lowast; asterisk operator, U+2217 ISOtech
    &#8730; &radic; square root= radical sign, U+221A ISOtech
    &#8733; &prop; proportional to, U+221D ISOtech
    &#8734; &infin; infinity, U+221E ISOtech
    &#8736; &ang; angle, U+2220 ISOamso
    &#8743; &and; logical and= wedge, U+2227 ISOtech
    &#8744; &or; logical or= vee, U+2228 ISOtech
    &#8745; &cap; intersection= cap, U+2229 ISOtech
    &#8746; &cup; union= cup, U+222A ISOtech
    &#8747; &int; integral, U+222B ISOtech
    &#8756; &there4; therefore, U+2234 ISOtech
    &#8764; &sim; tilde operator= varies with= similar to, U+223C ISOtech
    &#8773; &cong; approximately equal to, U+2245 ISOtech
    &#8776; &asymp; almost equal to= asymptotic to, U+2248 ISOamsr
    &#8800; &ne; not equal to, U+2260 ISOtech
    &#8801; &equiv; identical to, U+2261 ISOtech
    &#8804; &le; less-than or equal to, U+2264 ISOtech
    &#8805; &ge; greater-than or equal to, U+2265 ISOtech
    &#8834; &sub; subset of, U+2282 ISOtech
    &#8835; &sup; superset of, U+2283 ISOtech
    &#8836; &nsub; not a subset of, U+2284 ISOamsn
    &#8838; &sube; subset of or equal to, U+2286 ISOtech
    &#8839; &supe; superset of or equal to, U+2287 ISOtech
    &#8853; &oplus; circled plus= direct sum, U+2295 ISOamsb
    &#8855; &otimes; circled times= vector product, U+2297 ISOamsb
    &#8869; &perp; up tack= orthogonal to= perpendicular, U+22A5 ISOtech
    &#8901; &sdot; dot operator, U+22C5 ISOamsb
    &#8968; &lceil; left ceiling= apl upstile, U+2308 ISOamsc
    &#8969; &rceil; right ceiling, U+2309 ISOamsc
    &#8970; &lfloor; left floor= apl downstile, U+230A ISOamsc
    &#8971; &rfloor; right floor, U+230B ISOamsc
    &#9001; &lang; left-pointing angle bracket= bra, U+2329 ISOtech
    &#9002; &rang; right-pointing angle bracket= ket, U+232A ISOtech
    &#9674; &loz; lozenge, U+25CA ISOpub
    &#9824; &spades; black spade suit, U+2660 ISOpub
    &#9827; &clubs; black club suit= shamrock, U+2663 ISOpub
    &#9829; &hearts; black heart suit= valentine, U+2665 ISOpub
    &#9830; &diams; black diamond suit, U+2666 ISOpub

    Sorted by Named Entity (Character Name)

    Numeric Entity Named Entity Symbol (By Number) Symbol (By Name) Description
    &#0193; &Aacute; Á Á latin capital letter A with acute, U+00C1 ISOlat1
    &#0225; &aacute; á á latin small letter a with acute, U+00E1 ISOlat1
    &#0194; &Acirc; Â Â latin capital letter A with circumflex, U+00C2 ISOlat1
    &#0226; &acirc; â â latin small letter a with circumflex, U+00E2 ISOlat1
    &#0180; &acute; ´ ´ acute accent= spacing acute, U+00B4 ISOdia
    &#0198; &AElig; Æ Æ latin capital letter AE = latin capital ligature AE, U+00C6 ISOlat1
    &#0230; &aelig; æ æ latin small letter ae = latin small ligature ae, U+00E6 ISOlat1
    &#0192; &Agrave; À À latin capital letter A with grave = latin capital letter A grave, U+00C0 ISOlat1
    &#0224; &agrave; à à latin small letter a with grave = latin small letter a grave, U+00E0 ISOlat1
    &#8501; &alefsym; alef symbol= first transfinite cardinal, U+2135 NEW
    &#0913; &Alpha; Α Α greek capital letter alpha, U+0391
    &#0945; &alpha; α α greek small letter alpha, U+03B1 ISOgrk3
    &#0038; &amp; & & ampersand, U+0026 ISOnum
    &#8743; &and; logical and= wedge, U+2227 ISOtech
    &#8736; &ang; angle, U+2220 ISOamso
    &#0197; &Aring; Å Å latin capital letter A with ring above = latin capital letter A ring, U+00C5 ISOlat1
    &#0229; &aring; å å latin small letter a with ring above = latin small letter a ring, U+00E5 ISOlat1
    &#8776; &asymp; almost equal to= asymptotic to, U+2248 ISOamsr
    &#0195; &Atilde; Ã Ã latin capital letter A with tilde, U+00C3 ISOlat1
    &#0227; &atilde; ã ã latin small letter a with tilde, U+00E3 ISOlat1
    &#0196; &Auml; Ä Ä latin capital letter A with diaeresis, U+00C4 ISOlat1
    &#0228; &auml; ä ä latin small letter a with diaeresis, U+00E4 ISOlat1
    &#8222; &bdquo; double low-9 quotation mark, U+201E NEW
    &#0914; &Beta; Β Β greek capital letter beta, U+0392
    &#0946; &beta; β β greek small letter beta, U+03B2 ISOgrk3
    &#0166; &brvbar; ¦ ¦ broken bar= broken vertical bar, U+00A6 ISOnum
    &#8226; &bull; bullet= black small circle, U+2022 ISOpub
    &#8745; &cap; intersection= cap, U+2229 ISOtech
    &#0199; &Ccedil; Ç Ç latin capital letter C with cedilla, U+00C7 ISOlat1
    &#0231; &ccedil; ç ç latin small letter c with cedilla, U+00E7 ISOlat1
    &#0184; &cedil; ¸ ¸ cedilla= spacing cedilla, U+00B8 ISOdia
    &#0162; &cent; ¢ ¢ cent sign, U+00A2 ISOnum
    &#0935; &Chi; Χ Χ greek capital letter chi, U+03A7
    &#0967; &chi; χ χ greek small letter chi, U+03C7 ISOgrk3
    &#0710; &circ; ˆ ˆ modifier letter circumflex accent, U+02C6 ISOpub
    &#9827; &clubs; black club suit= shamrock, U+2663 ISOpub
    &#8773; &cong; approximately equal to, U+2245 ISOtech
    &#0169; &copy; © © copyright sign, U+00A9 ISOnum
    &#8629; &crarr; downwards arrow with corner leftwards = carriage return, U+21B5 NEW
    &#8746; &cup; union= cup, U+222A ISOtech
    &#0164; &curren; ¤ ¤ currency sign, U+00A4 ISOnum
    &#8225; &Dagger; double dagger, U+2021 ISOpub
    &#8224; &dagger; dagger, U+2020 ISOpub
    &#8659; &dArr; downwards double arrow, U+21D3 ISOamsa
    &#8595; &darr; downwards arrow, U+2193 ISOnum
    &#0176; &deg; ° ° degree sign, U+00B0 ISOnum
    &#0916; &Delta; Δ Δ greek capital letter delta, U+0394 ISOgrk3
    &#0948; &delta; δ δ greek small letter delta, U+03B4 ISOgrk3
    &#9830; &diams; black diamond suit, U+2666 ISOpub
    &#0247; &divide; ÷ ÷ division sign, U+00F7 ISOnum
    &#0201; &Eacute; É É latin capital letter E with acute, U+00C9 ISOlat1
    &#0233; &eacute; é é latin small letter e with acute, U+00E9 ISOlat1
    &#0202; &Ecirc; Ê Ê latin capital letter E with circumflex, U+00CA ISOlat1
    &#0234; &ecirc; ê ê latin small letter e with circumflex, U+00EA ISOlat1
    &#0200; &Egrave; È È latin capital letter E with grave, U+00C8 ISOlat1
    &#0232; &egrave; è è latin small letter e with grave, U+00E8 ISOlat1
    &#8709; &empty; empty set= null set= diameter, U+2205 ISOamso
    &#8195; &emsp; em space, U+2003 ISOpub
    &#8194; &ensp; en space, U+2002 ISOpub
    &#0917; &Epsilon; Ε Ε greek capital letter epsilon, U+0395
    &#0949; &epsilon; ε ε greek small letter epsilon, U+03B5 ISOgrk3
    &#8801; &equiv; identical to, U+2261 ISOtech
    &#0919; &Eta; Η Η greek capital letter eta, U+0397
    &#0951; &eta; η η greek small letter eta, U+03B7 ISOgrk3
    &#0208; &ETH; Ð Ð latin capital letter ETH, U+00D0 ISOlat1
    &#0240; &eth; ð ð latin small letter eth, U+00F0 ISOlat1
    &#0203; &Euml; Ë Ë latin capital letter E with diaeresis, U+00CB ISOlat1
    &#0235; &euml; ë ë latin small letter e with diaeresis, U+00EB ISOlat1
    &#8364; &euro; euro sign, U+20AC NEW
    &#8707; &exist; there exists, U+2203 ISOtech
    &#8704; &forall; for all, U+2200 ISOtech
    &#0189; &frac12; ½ ½ vulgar fraction one half = fraction one half, U+00BD ISOnum
    &#0188; &frac14; ¼ ¼ vulgar fraction one quarter = fraction one quarter, U+00BC ISOnum
    &#0190; &frac34; ¾ ¾ vulgar fraction three quarters = fraction three quarters, U+00BE ISOnum
    &#8260; &frasl; fraction slash, U+2044 NEW
    &#0915; &Gamma; Γ Γ greek capital letter gamma, U+0393 ISOgrk3
    &#0947; &gamma; γ γ greek small letter gamma, U+03B3 ISOgrk3
    &#8805; &ge; greater-than or equal to, U+2265 ISOtech
    &#0062; &gt; > > greater-than sign, U+003E ISOnum
    &#8660; &hArr; left right double arrow, U+21D4 ISOamsa
    &#8596; &harr; left right arrow, U+2194 ISOamsa
    &#9829; &hearts; black heart suit= valentine, U+2665 ISOpub
    &#8230; &hellip; horizontal ellipsis= three dot leader, U+2026 ISOpub
    &#0205; &Iacute; Í Í latin capital letter I with acute, U+00CD ISOlat1
    &#0237; &iacute; í í latin small letter i with acute, U+00ED ISOlat1
    &#0206; &Icirc; Î Î latin capital letter I with circumflex, U+00CE ISOlat1
    &#0238; &icirc; î î latin small letter i with circumflex, U+00EE ISOlat1
    &#0161; &iexcl; ¡ ¡ inverted exclamation mark, U+00A1 ISOnum
    &#0204; &Igrave; Ì Ì latin capital letter I with grave, U+00CC ISOlat1