Package java.lang
Class StringBuffer

Public Method charAt

char charAt(int index)

_INSERT_METHOD_SIGNATURE_HERE_

Description:

Returns the character at the specified index, beginning with index 0.

Note that characters in the Java Virtual Machine are only represented with one byte. Only the lowest byte of a Unicode symbol will be stored in a charater variable.

Example

char c = 'μ'; // c will have the value 0xBC although the Unicode symbol is 0x3BC.