How to convert int to QString? September 19, 2022 by Tarik Use QString::number(): int i = 42; QString s = QString::number(i);