Hi I was trying to output unicode string to a console with iostreams and failed.
I found this: Using unicode font in c++ console app and this snippet work
Recenly I wanted to stream unicode from Python to windows console and here is the minimum I needed to make:
chcp 65001
in the Console or use the corresponding method in the C++ codeLook through an interesing article about java unicode on windows console
Besides, in Python you can not write to default sys.stdout in this case, you will need to substitute it with something using os.write(1, binarystring) or direct call to a wrapper around WriteConsoleW. Seems like in C++ you will need to do the same.