To convert a code-point (Unicode surrogate pair) into a string, rely on the following code:
String str = "hello world"; int cp = str.codePointAt(some_position_in_str); String ch = String.valueOf(Character.toChars(cp));