I have to read a string from a file and display the corresponding unicode representation in a Text field on my application.
For example I read the string "e13a" from the file and i'd like to display the corresponding "\ue13a" character in the Text field.
Is there a way to obtain the desired behaviour?
I already tried escaping the string directly in the file but I always obtain the raw string instead of the unicode representation
I posted the question after a lot of trying and searching. Shortly after posting I found a more trivial solution than I expected:
The converted string is:
where "unicodeString" is the string I read from the file.