I want to write a function
String getName(int codePoint) {
// ????
}
which will return the standard name given to the character that the given code point represents. For example
getName(0);
would return the String "NULL" and
getName(33);
would return the String "EXCLAMATION POINT".
Is there anything in the JDK for this?