Appends the encoded Unicode code point. The code point is converted to a char[] as defined by Character#toChars(int). @param codePoint the Unicode code point to encode and append. @return this builder. @see Character#toChars(int)
(int codePoint)
| 320 | * @see Character#toChars(int) |
| 321 | */ |
| 322 | public StringBuilder appendCodePoint(int codePoint) { |
| 323 | append0(Character.toChars(codePoint)); |
| 324 | return this; |
| 325 | } |
| 326 | |
| 327 | /** |
| 328 | * Deletes a sequence of characters specified by {@code start} and {@code |