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(&#097);

Thanks.

What Andrej said or you can use the unicode escapes (they are in hexadecimal):

writeln("\u0061");

Reply via email to