I am trying to display a number using QDebug in the Hex format. Below is the code which I have written. It is working but the output has string contents enclosed in double quot
Use noquote() to avoid the quotation marks. As in:
noquote()
qDebug().noquote() << QString::number(value, 16);