How to cast a QChar to int
Took some time but I found the answer: QChar
has a member named QChar::unicode
which returns a ushort
with its code point. Just for the record.
Took some time but I found the answer: QChar
has a member named QChar::unicode
which returns a ushort
with its code point. Just for the record.