Java.lang Package Classes

Java String - codePointAt() Method



The java.lang.String.codePointAt() method returns the character (Unicode code point) at specified index in the given string. An index argument must be in the ranges from 0 to length() - 1.

Syntax

public int codePointAt(int index)

Parameters

index specify the index to the char values.

Return Value

Returns the code point value of the character at the index.

Exception

Throws IndexOutOfBoundsException, if the index argument is negative or not less than the length of the string.

Example:

In the example below, codePointAt() method returns the character (Unicode code point) at specified index in the string called MyString.

import java.lang.*;

public class MyClass {
  public static void main(String[] args) {
    String MyString = "Hello World!";
    System.out.println(MyString.codePointAt(1));   
  }
}

The output of the above code will be:

101

❮ Java.lang - String