xxxxxxxxxx
void main()
{
import std.stdio : writeln;
import std.utf : toUTF8;
wstring ws = "This is a UTF-16 string"w;
string s = ws.toUTF8;
writeln(s);
}