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 ww w. j av a2 s . co m*/
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.