via server API’s i’m getting contact information using member of structure:
char displayName[USERNAME_MAX_SIZE];
One of those names is a European name with special characters: “Per Spånt”
the structure of the displayName is as follows:

When I import ‘displayName’ into a QString via the “fromUtf8” function, I am getting the following QString:

How can I get the correct string into my QString without converting the special character into two weird characters?
FWIW, this is what works and doesn’t work for me using Qt 4.7.4.