xxxxxxxxxx
void main()
{
import std.stdio : writeln;
import std.utf : toUTF8;
string s1 = toUTF8("This was a UTF-16 string."w);
string s2 = toUTF8("This was a UTF-32 string."d);
writeln(s1);
writeln(s2);
}