Morning all,

I'm adding a £ onto a QString for eventual printing and emailing, however I'm struggling to get Qt to do anything other than display it like so "£". I've tried toLatin1() and toUtf8() but still no joy, even when dumping with qDebug() it adds it on.

Anyone know which text encoding method would be best for that one symbol? I'm adding it like this QString string = "Some info £" + someVariable + "some more info £" + someOtherVariable;.

Thanks!