string str = "Pokémon No"; writeln(str);
this outputs: Pok├®mon Nowhat I want to do is change the funky character such that the string reads:
Pok\u00e9mon No as \u00e9 == é how can i do this in D?
string str = "Pokémon No"; writeln(str);
this outputs: Pok├®mon Nowhat I want to do is change the funky character such that the string reads:
Pok\u00e9mon No as \u00e9 == é how can i do this in D?