w3resource

Java: Get the character (Unicode code point) at the given index within the String

Java String: Exercise-2 with Solution

Write a Java program to get the character (Unicode code point) at the given index within the string.

Sample Solution:

Java Code:

// Define a public class named Exercise2.
public class Exercise2 {
    // Define the main method.
    public static void main(String[] args) {
  
        // Declare and initialize a string variable "str" with the value "w3resource.com".
        String str = "w3resource.com";
        // Print the original string.
        System.out.println("Original String : " + str);
        
        // Retrieve the Unicode code point at index 1 in the string.
        int val1 = str.codePointAt(1);
    
        // Retrieve the Unicode code point at index 9 in the string.
        int val2 = str.codePointAt(9);
        
        // Print the Unicode code point representing the character at index 1 in the string.
        System.out.println("Character(unicode point) = " + val1);
        // Print the Unicode code point representing the character at index 9 in the string.
        System.out.println("Character(unicode point) = " + val2);
    }
}

Sample Output:

Original String : w3resource.com                                                                              
Character(unicode point) = 51                                                                                 
Character(unicode point) = 101 

Flowchart:

Flowchart: Java String  Exercises - Get the character (Unicode code point) at the given index within the String

Java Code Editor:

Improve this sample solution and post your code through Disqus

Previous: Write a Java program to get the character at the given index within the String.
Next:Write a Java program to get the character (Unicode code point) before the specified index within the String.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Follow us on Facebook and Twitter for latest update.