Hi,
I am facing a problem replacing a unicode character in a string into another string.
it means i have the following string :
and i want the result to be per example:Code:QString s = "hello Mr. \uE00B";
i have used the below code in order to replace the characterCode:s = "hello Mr. lipos";
but it doesn't work.Code:s.replace(QChar('\uE00B'),"lipos");
any idea about this issue.
note that '\uE00B' is a unicode character.
Best regards,




