Unicode转字符串

Posted love0612

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Unicode转字符串相关的知识,希望对你有一定的参考价值。

    private String unicodeToString(String string) {
        StringBuffer stringBuffer = new StringBuffer() ;
        String pattern = "\\u[0-9,a-f,A-F]{4}";
        Matcher matcher = Pattern.compile(pattern).matcher(string);
        while (matcher.find()) {
            char c = (char) Integer.parseInt(matcher.group().replaceAll("\\u", ""), 16);
            matcher.appendReplacement(stringBuffer, new String(new char[]{c}));
        }
        matcher.appendTail(stringBuffer);
        return stringBuffer.toString();
    }

 

以上是关于Unicode转字符串的主要内容,如果未能解决你的问题,请参考以下文章

Unicode转中文

Java 和 Kotlin 中,字符转Unicode,Unicode 转10进制

Java 和 Kotlin 中,字符转Unicode,Unicode 转10进制

web代码片段

unicode字符集与utf-8编码的区别,unicode转中文工具中文转unicode工具(汉字)

SAP中如何将一个字符串转成UNICODE格式传送?