Java Data Type Tutorial - Java StringBuffer .appendCodePoint ( int codePoint)








Syntax

StringBuffer.appendCodePoint(int codePoint) has the following syntax.

public StringBuffer appendCodePoint(int codePoint)

Example

In the following code shows how to use StringBuffer.appendCodePoint(int codePoint) method.

public class Main {
/*from w  w w.  j ava2s .  c  om*/
  public static void main(String[] arg) {

    StringBuffer buffer = new StringBuffer("from java2s.com");
    
    buffer.appendCodePoint(66);
    
    System.out.println(buffer);
  }

}

The code above generates the following result.