Lấy Unicode của String trong Java



Miêu tả vấn đề

Cách xác định điểm mã hóa Unicode trong String trong Java?

Giải pháp

Ví dụ sau minh họa cách sử dụng phương thức codePointBefore() trong Java để trả về ký tự (mã Unicode) ở trước index đã cho.

public class StringUniCode{
   public static void main(String[] args){
      String test_string="Welcome to TutorialsPoint";
      System.out.println("String under test is = "+test_string);
      System.out.println("Unicode code point at" 
      +" position 5 in the string is = "
      +  test_string.codePointBefore(5));
   }
}

Kết quả

Code trên sẽ cho kết quả sau:

String under test is = Welcome to TutorialsPoint
Unicode code point at position 5 in the string is =111

string_trong_java.jsp