Which function in Delphi can i use to achieve this result ?
Let's say i have this string :
var myString = 'ç';
I want to convert this string into unicode format, so it would be converted to '\u00e7'.
Is there a function in Delphi to achieve this, and vice-versa (convert '\u00e7' to 'ç') ?
Thanks