有时候需要将一段ASCII转换为数值进行传输(比如串口)
QString str=codeEdit->toPlainText(); QVector<uint>v=str.toUcs4(); foreach(int a,v) { qDebug()<<a; }