canvas.text_font(helv);
/*` One of the languages representable by this encoding is Czech. We can
pass a Unicode string ['úplnÄ›k] (full moon). [lib] converts the string
to ISO-8859-2 and it is shown correctly. */
String full_moon_cze = "\u00fapln\u011bk";
canvas.text(50, 800, full_moon_cze); // ok
/*` If we pass Swedish ['fullmåne], letter ['å] will not be shown
because ISO-8859-2 does not represent such character. We should have
used ISO-8859-1 encoded font instead. */
String full_moon_swe = "fullm\u00e5ne";
canvas.text(50, 760, full_moon_swe); // wrong