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') );
   }//from  w  w w .  j av  a2s .c  o m
}

The code above generates the following result.





















Home »
  Java Tutorial »
    java.lang »




Boolean
Byte
Character
Class
Double
Enum
Float
Integer
Long
Math
Number
Object
Package
Process
ProcessBuilder
Runnable
Runtime
SecurityManager
Short
StackTraceElement
StrictMath
String
StringBuffer
StringBuilder
System
Thread
ThreadGroup
ThreadLocal
Throwable