In docs, you will see that Qstring provides a static function to convert from ascii and Unicode strings:
- QString fromAscii (const char * ascii, int len = -1)
- QString fromLatin1 (const char * chars, int len = -1)
- QString fromUtf8 (const char * utf8, int len = -1)
- QString fromLocal8Bit (const char * local8Bit, int len = -1)
- QString fromUcs2 (const unsigned short * str)
Check if you are using ascii or unicode and choose your poison.
source share