vote up 1 vote down star
1

Hi,

This is something that I don't see much discussed. I'm developing a software that will support multilingualism, thus, I would need to use Unicode compatible fonts, right? Where could I possibly find such fonts and how would I know for sure they support Chinese, Korean, Japanese, whatever there exist?

It's a shame you can't use beautiful fonts found in the Internet, because most of them support ASCII only.

flag

which OS/platform ? – devio Oct 31 at 9:18
All. It's a web application. – Kaitsuli Oct 31 at 9:28
1  
Then you can't use any fonts 'found in the Internet' because the clients are unlikely to have them installed anyway. – David Dorward Oct 31 at 9:34
"support multilingualism, thus, I would need to use Unicode compatible fonts, right?" - the short answer to this is no, especially in a browser application. The only thing you need to do is conform to standards, use a text encoding which supports all languages you do, and require a modern browser/OS combination in your application. Fonts themselves are not relevant here at all. Windows, for example, has for almost 10 years had a technique to automatically render text in different fonts (including built-in fonts with eg. Chinese glyphs) depending on the language. – bzlm Nov 22 at 12:20

3 Answers

vote up 1 vote down check

Just to make sure: do not expect to find a font that supports Chinese Traditional, Chinese Simplified, and Japanese.

There are glyph differences for the same Unicode code points, so a native user will immediately spot that you are not using the proper font for their language.

For a web application it is probably best to give a list of fonts, and in the list you need a typical Windows font, a typical Mac font, and a generic one (like "serif").

Tagging the html page (or the paragraph) with the proper lang tag will help some (smarter) browsers to select the right font if the specific ones are not installed.

link|flag
vote up 2 vote down

http://www.alanwood.net/unicode/fonts.html

Alan Wood's site has alot of Unicode fonts. By each font there is a list explaining which languages is supported by it.

Another great site is the fontguide at Unifont. To find it just google for it, don't have the reputation to link it yet. When there, just click the continent-tabs at top of the site to view fonts including languages from those countries.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.