in tools/SymbolsRange.java [207:215]
private static void printCodepoint(int codepoint) {
String view = new String(Character.toChars(codepoint));
String hex = code(codepoint);
int type = Character.getType(codepoint);
Character.UnicodeBlock block = Character.UnicodeBlock.of(codepoint);
System.out.println(String.format("%s %x %s type: %d %s",
view, codepoint, hex, type, block));
}