Hi,
i need to convert an int to hex and after to string but i need to do it with a fixed number of bytes per example:

int a=12;
qDebug()<<QString::number(tam, 16);
=="C" (it is ok)

but i need that the string always have for chars like= "000C"

There is an easy solution for it?