Is there a standard method to convert a string like “\uFFFF” into character meaning that the string of six character contains a presentation of one unicode character?
Is there a standard method to convert a string like \uFFFF into character meaning
Share
The value is directly interpreted as the desired string, and the whole sequence is realized as a single character.
Another way, if you are going to hard-code the value:
Note that
\uFFFFdoesn’t seem to be a proper unicode character, but try with\u041ffor example.Read about unicode escapes here