I found this: https://github.com/meatatt/exCode/blob/master/source/excode/package.dThere is mention of unicode/GBK conversion, maybe it could be helpful
Thanks for quick answers. Now I found I can read both UTF8 and UTF-16LE
chinese file:
string txt = std.file.read(chineseFile).to!string;
and write to UTF8 file:
std.file.write(utf8ChineseFile, txt);
But still need figure out how to read/write GBK directly.
