On Wednesday, 13 March 2013 at 21:59:54 UTC, Stephen Jones wrote:
Html has &#xxx to access fonts at xxx, does D have something
similar?
writeln("a");
to
writeln(a);
Thanks.
What Andrej said or you can use the unicode escapes (they are in hexadecimal):
writeln("\u0061");
