Java StringBuilder .appendCodePoint (int codePoint)
Syntax
StringBuilder.appendCodePoint(int codePoint) has the following syntax.
public StringBuilder appendCodePoint(int codePoint)
Example
In the following code shows how to use StringBuilder.appendCodePoint(int codePoint) method.
public class Main {
// w w w . j a v a 2s .c om
public static void main(String[] arg) {
StringBuilder buffer = new StringBuilder("from java2s.com");
buffer.appendCodePoint(66);
System.out.println(buffer);
}
}
The code above generates the following result.