I am stuck a bit in decoding. I got a base64-encoded .rtf
file.
A little part of this looks like this: Bek\u252\''fcld\u337\''3f
Which represents: Beküldő
But my output data after decoding is: Bekuld?
If I manually replace the characters it works.
StringReplace(Result, 'U337\''3F', '''F5', [rfReplaceAll, rfIgnoreCase]);
Does anyone know a general solution for this? Some conversation or something?
\ansi
, i.e. WinAnsi / codepage 1252 by default. – Arnaud Bouchez