How can I display the graphical "enter symbol" within java applet ?
I want to show exactly "↵", which is U+21B5 DOWNWARDS ARROW WITH CORNER LEFTWARDS. –
I want to draw this to applet's screen so that it works in WIN, LINUX, MACOSX, etc.
Is there a font available that makes this possible or should I draw it somehow, how ?
g2d.setFont("SymbolFont??which one");
g2d.drawString(myenterSymbolHere,x,Y);