I have the following example:
%3ca href%3d%22http://google.com%22%3eGoogle%3c/a%3e
When unescaped I expect this to be:
<a href="http://google.com">Google</a>
I've tried:
strUnescaped = QString::fromUtf8(strEncoded.toLatin1().data());
But the result is the same as the original unaffected and unmodified. What do I need to do?