Package java.lang
Class Character
Description:
Returns a String object representing this character's value. Converts this Character object to a string. The result is a string whose length is 1. The string's sole component is the primitive char value represented by this object.
Example
Character ch = new Character('A');
Logger.log(ch.toString());
Returns the String object representation this character object.