溫馨提示×

java字符串怎么轉(zhuǎn)unicode編碼

小億
362
2023-12-14 14:44:11
欄目: 編程語言

可以使用String類的getBytes方法將字符串轉(zhuǎn)換為字節(jié)數(shù)組,然后再將字節(jié)數(shù)組轉(zhuǎn)換為Unicode編碼。下面是一個(gè)示例代碼:

public class Main {
    public static void main(String[] args) {
        String str = "Hello World!";
        
        // 將字符串轉(zhuǎn)換為字節(jié)數(shù)組
        byte[] bytes = str.getBytes();
        
        // 將字節(jié)數(shù)組轉(zhuǎn)換為Unicode編碼
        StringBuilder unicode = new StringBuilder();
        for (byte b : bytes) {
            unicode.append("\\u").append(Integer.toHexString(b & 0xFF));
        }
        
        System.out.println(unicode.toString());
    }
}

輸出結(jié)果為:\u48\u65\u6c\u6c\u6f\u20\u57\u6f\u72\u6c\u64\u21

0