HTML5. Canvas. Fill text by special symbols ( html named entities )

Any character entity references in HTML have unicode character. For fill canvas by html named entities you can use a unicode escape sequences.

GREEK SMALL LETTER SIGMA:

σ -> σ -> U+03C3

context.fillText( "\u03C3", x, y );