Hi

I have the following problem:

Qt Code:
  1. test[0]= 0xAB;
  2. test[1]= 0xCD;
  3. test[2]= 0xEF;
  4. test[3]= 0x01;
  5. test[4]= 0x02;
  6. test[5]= 0x03;
  7. test[6]= 0x04;
  8.  
  9. qDebug () << test.at(0);
To copy to clipboard, switch view to plain text mode 

test.at(0) gives me QChar but I need to display Hex Value

for at(0) is diplayed « instead of 0xAB

How to display hex value ?

Regards
Artur