0

I can not find the corresponding unicode of this character
I need it, to use in my Java application
enter image description here
I also searched more in some unicode tables, like following link
http://bulenkov.com/2012/10/14/arrow-symbols-in-java/
Also, searched in stackoverflow community
But no luck
So, generally How I can know the corresponding unicode of required character?

ahmednabil88
  • 15,196
  • 11
  • 51
  • 83

2 Answers2

0

There is a really simple method of doing that, that is, write a code to print all unicode characters and then search for it.

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

It is 9207.

0

After check with UI/UX Team
Its already a drawable image not a unicode character

Thanks to @markspace @xerx593 comments

ahmednabil88
  • 15,196
  • 11
  • 51
  • 83