// Very simple program to draw and print all Unicode characters, without // skipping those that are undefined or missing glyphs. g = new graphics g.font["Arial Unicode MS", 1] w = 200 for u = 0 to 65535 g.text[char[u], u mod w, u div w] g.show[] g.print[]