I would like to debug emoji icon issue for Android development. My application reads text message from remote server.
String test = String.format("%s",unicodeStr);
Log.i("xxx",test);
I expect it prints something like “\u23434", however it prints "".
So my question is, how could I print out the unicode string as it is?
Thanks a lot.