I use QSettings to store some parameters in an INI file. However, my program is not in English, so some of the parameters contain Unicode strings. It seems that Qt writes INI files not in utf8 or utf16, but in some other encoding the line "Hello world!" (rus. "Hello world!") looks like this:
WindowTitle=\x41f\x440\x438\x432\x435\x442 \x43c\x438\x440!
I want to edit the settings file manually, but I canβt work with it. Is there a way to force Qt to persist in Unicode?
source share