如何知道该字符对应的Unicode?

时间:2019-01-08 19:08:59

标签: java user-interface unicode character-encoding

我找不到与此字符对应的unicode
我需要它,以便在我的Java应用程序中使用
enter image description here
我还在某些unicode表中进行了更多搜索,例如以下链接
http://bulenkov.com/2012/10/14/arrow-symbols-in-java/
另外,在stackoverflow社区中搜索了
但没有运气
因此,通常我如何知道所需字符的相应unicode

2 个答案:

答案 0 :(得分:0)

有一种非常简单的方法,即编写代码以打印所有unicode字符然后进行搜索。

public class MyClass
{
    public static void main(String\[\] args)
    {
        for(int x=0;x<=65536;x++)
        {
            System.out.println(x+"\t"+(char)x);
        }
    }
}

现在是9207。

答案 1 :(得分:0)

与UI / UX团队确认后
它已经是可绘制的图像,而不是unicode字符

感谢@markspace @ xerx593评论