Character.MIN_SURROGATE has the following syntax.
public static final char MIN_SURROGATE
In the following code shows how to use Character.MIN_SURROGATE field.
public class Main { public static void main(String[] args) { System.out.println("Character.MIN_SURROGATE:"+ (int)Character.MIN_SURROGATE); } }
The code above generates the following result.