Created attachment 1092 [details] workflow Windows, console. source "d_echo.d": ------------------ module main; import std.stdio; int main(string[] argv) { writeln(argv[1]); return 0; } ----------------- Command work with only asci characters. see attachment
If you want to see UTF-8 text, you need to set output console code page ("chcp 65001" or SetConsoleOutputCP(65001)).
See issue 1448