Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

public class Main {
    public static void main(String[] args) {
        char[] c = new char[] { 'a', 'b', 'c', 'd', 'e' };
        int index = 1, limit = 3;
        int res = Character.codePointAt(c, index, limit);

        System.out.println("Unicode code point is " + res);
    }
}