xxxxxxxxxx
void main ()
{
import std.stdio;
import std.string;
import std.conv;
import std.utf;
import std.algorithm;
string [] src = [ " \xc3\x9c" ]; // blank + latin-1 encoded u umlaut
auto result = src
.map!(a => a.byCodeUnit)
.map!(a => a.stripLeft);
result.writeln;
}