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?

Ahmed Nabil
  • 17,392
  • 11
  • 61
  • 88
  • 3
    It might not be unicode, the app can just draw on a component if it wants to. – markspace Jan 08 '19 at 19:10
  • 2
    also doesn't look like unicode to me, but rather as a (graphical) dropdown icon. the best (pure) unicode match i see is `U+25BC` (triangle south) ...and maybe a [possible dupilcate](https://stackoverflow.com/q/2701192/592355) – xerx593 Jan 08 '19 at 19:19
  • 1
    Could be U+2304 down arrowhead perhaps? – Dawood ibn Kareem Jan 08 '19 at 19:21
  • 1
    U+2228, U+23F7, U+2BC6, U+2B9F. This seems to be a simple matter of just taking the time to look these things up. https://www.rapidtables.com/code/text/unicode-characters.html – SedJ601 Jan 08 '19 at 19:58
  • Can you select the character on the screen with the mouse? If so, you can copy it, save it into a text file and inspect the text file with a hex editor. – Mr Lister Jan 08 '19 at 20:35
  • Thanks all, you are right, its seems not be unicode character! – Ahmed Nabil Jan 09 '19 at 17:53
  • @MrLister It is an image. – Ahmed Nabil Jan 09 '19 at 17:54

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

Ahmed Nabil
  • 17,392
  • 11
  • 61
  • 88