I’m getting from server data using signal and slot. Here is slot part:
QString text(this->reply->readAll());
Problem is, that in text variable will be unicode escape, for example:
\u043d\u0435 \u043f\u0430\u0440\u044c\u0441\u044f ;-)
Is there any way to convert this?
Did you try:
http://doc.qt.io/qt-5/qstring.html#fromUtf8
Assuming it’s Utf8, otherwise use
fromUtf16