HTML/CSS/JavaScript for Web Pages that Include Math Equations Resources, Tips, Tricks

Putting all the pitfalls, tips and resources I need to know in one page.

Tips and Observations
Character References

The following are some commonly used math symbols and their character references. Bear in mind the glyphs' exact appearance depends on what font is being used by the browser. This page uses the typeface Open Sans, verdana, sans serif—in that order of priority depending on your browser's capability

Reference Glyph Name
Decimal Character
&#60 <
<
< less than
&#62 &gt;
&GT;
> greater than
&#8810; &Lt;
&NestedLessLess;
&ll;
much less than
&#8811; &Gt;
&NestedGreaterGreater;
&gg;
much greater than
&#8804; &le;
&leq;
less than or equal
&#8805; &ge;
&GreaterEqual;
&geq;
greater than or equal
&#8801; &equiv;
&Congruent;
identical to
&#8776; &asymp;
&ap;
&TildeTilde;
&approx;
&thkap;
&thickapprox;
almost equal to, approximately
&#8800; &ne;
&NotEqual;
not equal
&#178; &sup2; ² superscript 2 (squared)
&#179; &sup3; ³ superscript 3 (to the third power)
&#8730; &radic;
&Sqrt;
square root
&#176; &deg; ° degree
&#960; &pi; π pi
&#8734; &infin; infinity
&#8745; &cap; intersection
&#8746; &cup; union
&#8756; &therefore;
&Therefore;
&there4;
therefore
&#177; &plusmn;
&pm;
&PlusMinus;
± plus minus
&#247; &divide;
&div;
÷ division
&#215; &times; × multiplication
The following dot glyphs are or can be used as multiplication sign. (I've listed them in order of personal preference—beginning with my first choice. When magnified the dot operator (&sdot;) doesn't look round but squarish. This may be dependent on the typeface used.)
&#183 &middot;
&centerdot;
&CenterDot;
· middle dot / interpunct
&#8226; &bull;
&bullet;
bullet
&#8901; &sdot; dot operator
HTML & CSS Validation
Miscellaneous