up vote 23 down vote favorite
8
share [g+] share [fb]

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.

link|improve this question
feedback

closed as not constructive by bmargulies, Jeff Atwood Sep 11 '11 at 23:58

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ.

3 Answers

up vote 16 down vote accepted

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/

link|improve this answer
feedback

Definitively ICU: http://www.icu-project.org/

link|improve this answer
feedback

Why not use the wchar_t built into your fine C++ compiler?

link|improve this answer
4  
unicode is a lot more complex than just storing the charpoints :) – Armin Ronacher Sep 22 '08 at 12:45
2  
Also, from the wiki article on wchar: The width of wchar_t is compiler-specific. programs that need portability across C++ compilers shouldn't use wchar_t for storing Unicode. The wchar_t type is intended for storing compiler-defined wide characters, which may be Unicode characters in some compilers – workmad3 Sep 22 '08 at 12:49
Does C support wchar_t? Or is that just C++? – Ferruccio Sep 22 '08 at 14:46
1  
C does support wchar_t, it's standard since ages Regards Friedrich – Friedrich Sep 24 '08 at 10:40
2  
From a practical point of view, on Windows wchar_t can always be used as an UTF-16 code unit. This is one of the data type requirements that the Windows API header files implicitly define (other include CHAR_BITS = 8 or sizeof(int) = 4). All compilers must follow these implicit rules, otherwise every Windows program would fail to compile or crash. – Philipp Jun 30 '10 at 12:09
show 2 more comments
feedback

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