Package java.lang
Class Character

Public Method toString

String toString()

Overrides:

_INSERT_METHOD_SIGNATURE_HERE_

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.