View Single Post
Posts: 70 | Thanked: 39 times | Joined on Mar 2010
#5
Depending on the encoding of your input, you could do something like this:

Code:
encoding = "utf-8"
decoded = encoded.decode(encoding)
qStr = QString("Decoded: %s", decoded)
 

The Following User Says Thank You to cheungs For This Useful Post: