Example usage for java.lang StringBuffer codePointAt

List of usage examples for java.lang StringBuffer codePointAt

Introduction

In this page you can find the example usage for java.lang StringBuffer codePointAt.

Prototype

@Override
public synchronized int codePointAt(int index) 

Source Link

Usage

From source file:Main.java

public static void main(String[] arg) {

    StringBuffer buffer = new StringBuffer("from java2s.com");

    System.out.println(buffer.codePointAt(2));
}