Java Character MIN_SURROGATE
Syntax
Character.MIN_SURROGATE has the following syntax.
public static final char MIN_SURROGATE
Example
In the following code shows how to use Character.MIN_SURROGATE field.
public class Main {
/*from w w w . j a v a 2 s .co m*/
public static void main(String[] args) {
System.out.println("Character.MIN_SURROGATE:"+
(int)Character.MIN_SURROGATE);
}
}
The code above generates the following result.