I have a response coming back from a website that I am receiving as follows:

Qt Code:
  1. QList<QString> list;
  2. QByteArray result = reply->readAll();
  3. QString data;
  4.  
  5. for (int i=0; i<result.size(); i++) {
  6. data = result[i];
  7. list.append(data);
  8. }
To copy to clipboard, switch view to plain text mode 

The list is populated ok, as one long QString. The data looks ok. The problem is that the fields are delimited with extended ascii characters, such as ascii(184), ascii(185), etc.
and these show up in the data QString as the ascii characters, not 184, 185, etc.
So how can I set the coding of QString so the extended ascii characters show up as 184, 185, etc?