Submitted by heartin on Wed, 08/22/2012 - 09:04
Escape characters (also called escape sequences or escape codes) in general are used to signal an alternative interpretation of a series of characters. In Java, a character preceded by a backslash (\) is an escape sequence and has special meaning to the java compiler.
Submitted by heartin on Tue, 08/21/2012 - 08:06
The Character class is a wrapper class for the char primitive data type.