views:

324

answers:

7

i want to use following symbols for buttons in my app:

arrows

here my code:

Button goToFirstButton = new Button("\uE318");
Button prevPageButton = new Button("\uE312");
Button nextPageButton = new Button("\uE313");
Button goToLastButton = new Button("\uE319");

and the result is

result

It seems, that \uE318 and \uE313 are wrong. What should i use instead? For goToLastButton and goToFirstButton i prefer to use this images

alt text

but i can't find, which code should i use.

+5  A: 

I would suggest to use Icons on Buttons instead of special characters, because the ability to display may be strongly affected by availability of fonts on client workstation.

Artyom
this is a web-app, the result must be same for every os/browser?
cupakob
Even if it's a web-app you have no guarantee that client has the fonts installed. Unless your plan is to generate these pictures on the server side (is it the case?)
Grzegorz Oledzki
i will not generate the pictures :)
cupakob
A: 

I also suggest using icons. Not all fonts have symbols for all unicode character points.

You may get it working by specifying a particular font. But what if that font is found on Windows 7 computers, but not on Mac OS X or Linux or Windows XP? Then the system will choose another font, based on the browser defaults, and that default might not have the symbols you want.

Steve McLeod
A: 

Java source files are UTF-8 encoded, so you can put the symbols you want directly in the source code (just copy 'n paste from a font viewer or web), as long as you use a decent editor. No need to use this confusing "\uXXXX" notation. For instance, I've found this useful for Greek letters commonly used in scientific notation (δ, ρ, ψ...) - you can even use them as variable names.

Of course, your font of choice must have the symbols you want, otherwise it won't work.

Joonas Pulakka
That isn't strictly accurate - Java source files __can be__ UTF-8 encoded. It won't surprise you to know there's a question about whether they should be :) http://stackoverflow.com/questions/2178348/should-source-code-be-saved-in-utf-8-format
McDowell
Java source files can have any encoding supported by your compiler. UTF-8 is *not* specified anywhere as the only option. The JLS only says "Programs are written using the Unicode character set." which means that the source can contain any Unicode character, but doesn't specify an encoding.
Joachim Sauer
Ah, ok. Apparently the compiler uses the system's default encoding unless otherwise specified, so this is a potential gotcha indeed.
Joonas Pulakka
+5  A: 

The unicode codepoints you want to use are part of a private use area, i.e. every font manufacturer is free to put whatever character they like at whatever position. The font you used to look up the arrow characters is simply a different font than the one used for displaying the button text. If the button text maps \uE318 and \uE313 to some Chinese (?) graphem, then that's not wrong, just different.

nd
+3  A: 

Although multiple people have made the argument you should avoid using these codepoints because you can't rely on the users' systems having a font which displays these characters, the reason you're getting the wrong characters in your example case has been entirely missed. All of the symbols you are trying to draw are in the "private use area" which means that the symbols involved will potentially be different in every single font.

The Unicode standard states:

Private Use Area (E000-F8FF) * The Private Use Area does not contain any character assignments, consequently no character code charts or namelists are provided for this area.

If you embed the particular font you want to use to insure you can use these codepoints, that's fine. But that does mean you should, indeed, use the \u#### notation in your code, because embedding the characters as Unicode directly means the source won't make sense unless somebody views it in the correct font.

All in all, it's probably better to use icons unless you already have a symbol font you think is simply far superior to any graphical work you would otherwise do.

Conspicuous Compiler
+2  A: 

◀ ▶

There are a couple of symbols close to what you want in the Geometric Shapes chart. However, as others have said, use icons and stay out of the private use area.

McDowell
A: 

I will defend using Unicode glyphs on buttons, but it's really easy to implement the Icon interface and use paintIcon() to draw anything you want. The tutorial "Creating a Custom Icon Implementation" is a good example; this code shows a more complex, animated histogram.

trashgod