I have that piece of code

Qt Code:
  1. from PyQt4 import *
  2. from PyQt4.QtCore import *
  3. a = QString("攢ð")
  4. print unicode(a)
To copy to clipboard, switch view to plain text mode 

this won't print the same chars (攢ð)...
If I do "print unicode(a).encode("utf-8") I won't get 攢ð, instead of that I'll get exactly the same thing as the another print.

What should I do?