StringBuffer codePointBefore() method in Java with Examples Last Updated : 04 Dec, 2018 Comments Improve Suggest changes Like Article Like Report The codePointBefore() method of StringBuffer class is a method used to take an index as a parameter and returns the “Unicode number” of the character present before that index. The value of index must lie between 0 to length-1. If the char value at (index – 1) is in the low-surrogate range, char at (index – 2) is not negative with value is in the high-surrogate range, then the supplementary code point value of the surrogate pair is returned by method. If the char value at index – 1 is an unpaired low-surrogate or a high-surrogate, the surrogate value is returned. Syntax: public int codePointBefore(int index) Parameters: This method take one parameter index which is the index of the character following the character whose unicode value to be returned. Return Value: This method returns unicode number of the character before the given index. Exception: This method throws IndexOutOfBoundsException when index is negative or greater than or equal to length(). Below programs illustrate the codePointBefore() method: Example 1: Java // Java program to demonstrate // the codePointBefore() Method. class GFG { public static void main(String[] args) { // create a StringBuffer object // with a String pass as parameter StringBuffer str = new StringBuffer("GeeksForGeeks Contribute"); // get unicode of char at index 13 // using codePointBefore() method int unicode = str.codePointBefore(14); // print char and Unicode System.out.println("Unicode of character" + " at position 13 = " + unicode); } } Output: Unicode of character at position 13 = 32 Example 2:To demonstrate IndexOutOfBoundsException Java // Java program to demonstrate // exception thrown by codePointBefore() Method. class GFG { public static void main(String[] args) { // create a StringBuffer object // with a String pass as parameter StringBuffer str = new StringBuffer("GEEKSFORGEEKS"); try { // get unicode of char at position 22 int unicode = str.codePointBefore(22); } catch (Exception e) { System.out.println("Exception: " + e); } } } Output: Exception: java.lang.StringIndexOutOfBoundsException: String index out of range: 22 References: https://docs.oracle.com/javase/10/docs/api/java/lang/StringBuffer.html#codePointBefore(int) Comment More infoAdvertise with us A AmanSingh2210 Follow Improve Article Tags : Java java-basics Java-lang package Java-Functions java-StringBuffer +1 More Practice Tags : Java Explore BasicsIntroduction to Java4 min readJava Programming Basics9 min readJava Methods7 min readAccess Modifiers in Java6 min readArrays in Java9 min readJava Strings8 min readRegular Expressions in Java7 min readOOPs & InterfacesClasses and Objects in Java10 min readJava Constructors10 min readJava OOP(Object Oriented Programming) Concepts10 min readJava Packages7 min readJava Interface11 min readCollectionsCollections in Java12 min readCollections Class in Java13 min readCollection Interface in Java6 min readIterator in Java5 min readJava Comparator Interface6 min readException HandlingJava Exception Handling8 min readJava Try Catch Block4 min readJava final, finally and finalize4 min readChained Exceptions in Java3 min readNull Pointer Exception in Java5 min readException Handling with Method Overriding in Java4 min readJava AdvancedJava Multithreading Tutorial3 min readSynchronization in Java10 min readFile Handling in Java5 min readJava Method References9 min readJava 8 Stream Tutorial15+ min readJava Networking15+ min readJDBC Tutorial12 min readJava Memory Management4 min readGarbage Collection in Java6 min readMemory Leaks in Java3 min readPractice JavaJava Interview Questions and Answers15+ min readJava Programs - Java Programming Examples8 min readJava Exercises - Basic to Advanced Java Practice Programs with Solutions7 min readJava Quiz | Level Up Your Java Skills1 min readTop 50 Java Project Ideas For Beginners and Advanced [Update 2025]15+ min read Like