Last Updated : 14 Dec, 2022
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
// 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);
}
}
Program 2:
Java
// 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);
}
}
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4