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