Jak renderować glify z FontAwesome na elemencie Canvas

FontAwesome określa glify w swoim pliku CSS w następujący sposób:

/*  Font Awesome uses the Unicode Private Use Area (PUA) to ensure 
    screen readers do not read off random characters that represent icons */
.icon-glass:before                { content: "\f000"; }
.icon-music:before                { content: "\f001"; }

Próbuję wyrenderować ikony z tej czcionki do elementu canvas, ale nie widzę, jak uzyskać dostęp do tych glifów.

ctx.font = "40px FontAwesome";
ctx.fillText("\f000",20,20); // no cigar

Jak określić te glify w łańcuchach JavaScript?

questionAnswers(1)

yourAnswerToTheQuestion