java.lang.Character.isHighSurrogate(char ch)


java.lang.Character.isHighSurrogate(char ch)

package com.codingdict;



import java.lang.*;



public class CharacterDemo {



   public static void main(String[] args) {



      // create 2 char primitives ch1, ch2

      char ch1, ch2;



      // assign values to ch1, ch2

      ch1 = '\u0c7f';

      ch2 = '\ud8b5';



      // create 2 boolean primitives b1, b2

      boolean b1, b2;



      // assign isHighSurrogate results of ch1, ch2 to b1, b2

      b1 = Character.isHighSurrogate(ch1);

      b2 = Character.isHighSurrogate(ch2);



      String str1 = "ch1 is a Unicode high-surrogate code unit is " + b1;

      String str2 = "ch2 is a Unicode high-surrogate code unit is " + b2;



      // print b1, b2 values

      System.out.println( str1 );

      System.out.println( str2 );

   }

}