I can not find the corresponding unicode
of this character
I need it, to use in my Java
application
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?
Asked
Active
Viewed 247 times
0

Ahmed Nabil
- 17,392
- 11
- 61
- 88
-
3It might not be unicode, the app can just draw on a component if it wants to. – markspace Jan 08 '19 at 19:10
-
2also 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
-
1Could be U+2304 down arrowhead perhaps? – Dawood ibn Kareem Jan 08 '19 at 19:21
-
1U+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 Answers
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.

Sankalp Srivastava
- 21
- 3
-
-
1Unicode has over a hundred thousand characters, much more than 64K. – Basil Bourque Jan 10 '19 at 02:09
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