Is there a proper way to convert a string with multibyte characters into a dstring?
void main() {
import std.conv : to;
import std.stdio : writeln;
string a = "abc😃123";
auto b = to!dstring(a);
assert(b.length == 7);
writeln(b);
}
