Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Recommended font(s) for displaying unicode characters?

For anyone that has developed a customer-facing Java Swing application that supports multiple languages, which font(s) did you find best displayed the characters for all languages?

like image 306
mre Avatar asked Dec 09 '11 14:12

mre


People also ask

How do I display Unicode?

Inserting Unicode characters To insert a Unicode character, type the character code, press ALT, and then press X. For example, to type a dollar symbol ($), type 0024, press ALT, and then press X.

What is Unicode font for example?

Unicode defines which characters exist; any given character will have a default glyph in the font—and perhaps more. For example, a capital A, swash capital A, and small cap A would be three different glyphs, but all options for the same character of “capital A”.


2 Answers

See wikipedia on unicode. It has a nice list and a comparison chart of unicode fonts. It seems GNU Unifont support most of the languages.

like image 176
Jomoos Avatar answered Sep 21 '22 17:09

Jomoos


You should also read Loading Font Configuration Files on font configuration with Java 6. This file allows you to specify which font can be used to represent glyphs from a specific locale. I had to use and configure it once, and it really helped me.

like image 41
Laf Avatar answered Sep 20 '22 17:09

Laf