I'm trying to append a string ("æææ" for example) to a QTextEdit object with .append().
If I do this:

print mystring
mywidget.append("mystring")

The output in console is "æææ", but the chars that I get in the UI ar A¡A¡A¡. What's the problem?

The default encoding in my app is utf-8.