i read in Qt docs about QString and found that QString supports unicode encoding but still when i write some stances in text file i see some "?" between words.
the language that i use is part of unicode here this is my code.

Qt Code:
  1. QFile dataF("fa.txt");
  2. dataF.open(QIODevice::WriteOnly | QIODevice::Append);
  3. QTextStream streamF(&dataF);
  4. streamF<<fa<<"\r\n";
  5. dataF.close();
To copy to clipboard, switch view to plain text mode 

im i miss something?
best regards