StringBuilder.codePointAt(int index) has the following syntax.
public int codePointAt(int index)
In the following code shows how to use StringBuilder.codePointAt(int index) method.
public class Main { /* w w w.jav a2s . c o m*/ public static void main(String[] arg) { StringBuilder buffer = new StringBuilder("from java2s.com"); System.out.println(buffer.codePointAt(2)); } }
The code above generates the following result.