Open In App

Java Character charCount() with Examples

The java.lang.Character.charCount() is an inbuilt function in java which is used to determine number of characters needed to represent the specified character. If the character is equal to or greater than 0x10000, the method returns 2 otherwise 1. Syntax:

public static int charCount(int code)

Parameters: The function accepts a single parameter code. It represents the tested character. Return Value: It returns 2 if the character is valid otherwise 1. Errors and Exceptions:



Examples:

Input : 0x12456
Output : 2
Explanation: the code is greater than 0x10000

Input : 0x9456
Output : 1
Explanation: The code is smaller than 0x10000

Below Programs illustrates the java.lang.Character.charCount() function: Program 1: 






// Java program that demonstrates the use of
// Character.charCount() function
 
// include lang package
import java.lang.*;
 
class GFG {
    public static void main(String[] args)
    {
        int code = 0x9000;
 
        int ans = Character.charCount(code);
 
        // prints 2 if character is greater than 0x10000
        // otherwise 1
        System.out.println(ans);
    }
}

Output:
1

Program 2: 




// Java program that demonstrates the use of
// Character.charCount() function
 
// include lang package
import java.lang.*;
 
class GFG {
    public static void main(String[] args)
    {
        int code = 0x12456;
 
        int ans = Character.charCount(code);
 
        // prints 2 if character is greater than 0x10000
        // otherwise 1
        System.out.println(ans);
    }
}

Output:
2

Article Tags :