Java Data Type Tutorial - Java Character .isSurrogatePair (char high, char low)








Syntax

Character.isSurrogatePair(char high, char low) has the following syntax.

public static boolean isSurrogatePair(char high,   char low)

Example

In the following code shows how to use Character.isSurrogatePair(char high, char low) method.

public class Main {
   public static void main(String[] args) {
      System.out.println( "A valid Unicode surrogate pair: " + 
      Character.isSurrogatePair('\ud800', '\udc00') );
   }
}

The code above generates the following result.