java.lang.Character.isDigit(int codePoint)


java.lang.Character.isDigit(int codePoint)

package com.codingdict;



import java.lang.*;



public class CharacterDemo {



   public static void main(String[] args) {



      // create 2 int primitives cp1, cp2

      int cp1, cp2;



      // assign values to cp1, cp2

      cp1 = 0x06f8;

      cp2 = 0x0c12;



      // create 2 boolean primitives b1, b2

      boolean b1, b2;



      // assign isDigit results of ch1, ch2 to i1, i2

      b1 = Character.isDigit(cp1);

      b2 = Character.isDigit(cp2);



      String str1 = "cp1 represents a digit is " + b1;

      String str2 = "cp2 represents a digit is " + b2;



      // print b1, b2 values

      System.out.println( str1 );

      System.out.println( str2 );

   }

}