What is the best unicode library for C? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-26T20:14:45Z http://stackoverflow.com/feeds/question/114611 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/114611/what-is-the-best-unicode-library-for-c 11 What is the best unicode library for C? Josh Segall 2008-09-22T12:40:41Z 2009-08-04T17:30:12Z <p>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.</p> http://stackoverflow.com/questions/114611/what-is-the-best-unicode-library-for-c/114629#114629 -6 Answer by Celestial M Weasel for What is the best unicode library for C? Celestial M Weasel 2008-09-22T12:44:02Z 2008-09-22T12:44:02Z <p>Why not use the wchar_t built into your fine C++ compiler?</p> http://stackoverflow.com/questions/114611/what-is-the-best-unicode-library-for-c/114635#114635 10 Answer by Armin Ronacher for What is the best unicode library for C? Armin Ronacher 2008-09-22T12:45:05Z 2008-09-22T12:45:05Z <p>Definitively ICU: <a href="http://www.icu-project.org/" rel="nofollow">http://www.icu-project.org/</a></p> http://stackoverflow.com/questions/114611/what-is-the-best-unicode-library-for-c/114643#114643 7 Answer by Thomas for What is the best unicode library for C? Thomas 2008-09-22T12:45:59Z 2008-09-22T12:45:59Z <p>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.</p> <p><a href="http://www-01.ibm.com/software/globalization/icu/index.jsp" rel="nofollow">http://www-01.ibm.com/software/globalization/icu/index.jsp</a> and <a href="http://www.icu-project.org/" rel="nofollow">http://www.icu-project.org/</a></p> http://stackoverflow.com/questions/114611/what-is-the-best-unicode-library-for-c/1151661#1151661 -1 Answer by oscar for What is the best unicode library for C? oscar 2009-07-20T04:07:29Z 2009-07-20T04:07:29Z <p>ICU is very bloated and large. I wrote my own library for handling Codepage &lt;--> 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. </p> <p>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.</p>