What is the best unicode library for C? - Stack Overflow most recent 30 from stackoverflow.com2009-11-26T20:14:45Zhttp://stackoverflow.com/feeds/question/114611http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/114611/what-is-the-best-unicode-library-for-c11What is the best unicode library for C?Josh Segall2008-09-22T12:40:41Z2009-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-6Answer by Celestial M Weasel for What is the best unicode library for C?Celestial M Weasel2008-09-22T12:44:02Z2008-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#11463510Answer by Armin Ronacher for What is the best unicode library for C?Armin Ronacher2008-09-22T12:45:05Z2008-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#1146437Answer by Thomas for What is the best unicode library for C?Thomas2008-09-22T12:45:59Z2008-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-1Answer by oscar for What is the best unicode library for C?oscar2009-07-20T04:07:29Z2009-07-20T04:07:29Z<p>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. </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>