Hello,
How to convert decimal to hexadecimal with Qt programming? Such as 69 switch to 45, 56 switch to 38 and so on... I try like this:
Qt Code:
  1. QString str = QString::number(s.at(i).unicode());
  2. bool ok;
  3. qDebug() << str.toUtf8();
To copy to clipboard, switch view to plain text mode 
but failed. I need to convert this string "E8A5" ASCII switch to hexadecimal number or string.