Please note that this question is not a duplicate.
I have a String like this:
// My String
String myString = "U+1F600";
// A method to convert the String to a real character
String unicodeCharacter = convertStringToUnicode(myString);
// Then this should print:
System.out.println(unicodeCharacter);
How can I convert this String to the unicode character ? I then want to show this in a
TextView
.