I could swear that I used the function chr()40 minutes ago, but I cannot find the file. I know that it can go up to 256, so I use this:
std::string chars = "";
chars += (char) 42;
So good, but I really want to access Unicode characters. Can I do (w_char) 512? Or maybe something like a function unichr()in python, I just can't find a way to access any of these characters.
alex source
share