How can I specify a unicode character by code (such as "4FF0") using QString? I tried QString s("u4FF0");
but it only outputs a question mark. Any idea how to do this?
Edit:
It works that way, but is there a more direct way?
std::wstring str = L"u4FF07";
QString s = QString::fromStdWString(str));
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…