Does anyone know how to convert a string from ISO-8859-1 to UTF-8 in C++?
I'm parsing an email to get email subject, which is encoded using RFC-2047. I'm decoding a string to bytes using base64 decoding & Q decoding. But when I use byte stream as it is then garbage characters gets displayed in email.
Thank you.