What is the best unicode library for C? Where "best" is defined by cross-platform support, compiler independence, and reasonable performance across a the most common languages in use.
|
1
|
|
|
|
|
|
I would suggest IBM's ICU library. It has a very large C, C++ and Java library set. Our company uses this in our commercial product - It is free and open source. http://www-01.ibm.com/software/globalization/icu/index.jsp and http://www.icu-project.org/ |
||
|
|
|
|
ICU is very bloated and large. I wrote my own library for handling Codepage <--> Unicode convertions, and UTF-x -> UTF-X convertions. I pass all unicode data around in standard char*'s as UTF-8 encoded strings. It is easily 10x faster than ICU and is 1/100 the size. But that doesn't answer your question, does it? Feel free to use ICU if you don't really care about bloat. Otherwise, I'd keep looking. |
||
|
|
|
Definitively ICU: http://www.icu-project.org/ |
||
|
|
|
|
Why not use the wchar_t built into your fine C++ compiler? |
||||||||||
|
