How Do You Write Code That Is Safe for UTF-8? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T07:50:12Z http://stackoverflow.com/feeds/question/134371 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/134371/how-do-you-write-code-that-is-safe-for-utf-8 7 How Do You Write Code That Is Safe for UTF-8? Kristopher Johnson 2008-09-25T16:30:20Z 2009-06-29T13:20:02Z <p>We have a set of applications that were developed for the ASCII character set. Now, we're trying to install it in Iceland, and are running into problems where the Icelandic characters are getting screwed up.</p> <p>We are working through our issues, but I was wondering: Is there a good "guide" out there for writing C++ code that is designed for 8-bit characters and which will work properly when UTF-8 data is given to it?</p> <p>I can't expect everyone to read the whole Unicode standard, but if there is something more digestible available, I'd like to share it with the team so we don't run into these issues again.</p> <p>Re-writing all the applications to use wchar_t or some other string representation is not feasible at this time. I'll also note that these applications communicate over networks with servers and devices that use 8-bit characters, so even if we did Unicode internally, we'd still have issues with translation at the boundaries. For the most part, these applications just pass data around; they don't "process" the text in any way other than copying it from place to place.</p> <p>The operating systems used are Windows and Linux. We use std::string and plain-old C strings. (And don't ask me to defend any of the design decisions. I'm just trying to help fix the mess.)</p> <p><hr /></p> <p>Here is a list of what has been suggested:</p> <ul> <li><a href="http://www.joelonsoftware.com/articles/Unicode.html" rel="nofollow">The Absolute Minimum Every Software Developer Absolutely, Positively Must Know About Unicode and Character Sets (No Excuses!)</a></li> <li><a href="http://www.cl.cam.ac.uk/~mgk25/unicode.html" rel="nofollow">UTF-8 and Unicode FAQ for Unix/Linux</a></li> <li><a href="ftp://ftp.ilog.fr/pub/Users/haible/utf8/Unicode-HOWTO.html" rel="nofollow">The Unicode HOWTO</a></li> </ul> http://stackoverflow.com/questions/134371/how-do-you-write-code-that-is-safe-for-utf-8/134411#134411 0 Answer by phjr for How Do You Write Code That Is Safe for UTF-8? phjr 2008-09-25T16:39:12Z 2008-09-25T16:39:12Z <p>You may want to use wide characters (wchar_t instead of char and std::wstring instead of std::string). This doesn't automatically solve 100% of your problems, but is good first step.</p> <p>Also use string functions which are Unicode-aware (refer to documentation). If something manipulates wide chars or string it generally is aware that they are wide.</p> http://stackoverflow.com/questions/134371/how-do-you-write-code-that-is-safe-for-utf-8/134445#134445 2 Answer by Mark Ransom for How Do You Write Code That Is Safe for UTF-8? Mark Ransom 2008-09-25T16:45:07Z 2008-09-25T16:45:07Z <p>This looks like a comprehensive quick guide:<br /> <a href="http://www.cl.cam.ac.uk/~mgk25/unicode.html" rel="nofollow">http://www.cl.cam.ac.uk/~mgk25/unicode.html</a></p> http://stackoverflow.com/questions/134371/how-do-you-write-code-that-is-safe-for-utf-8/134530#134530 0 Answer by Javier for How Do You Write Code That Is Safe for UTF-8? Javier 2008-09-25T16:59:05Z 2008-09-25T16:59:05Z <p>Be aware that full unicode doesn't fit in 16bit characters; so either use 32-bit chars, or variable-width encoding (UTF-8 is the most popular).</p> http://stackoverflow.com/questions/134371/how-do-you-write-code-that-is-safe-for-utf-8/134573#134573 0 Answer by Zudaka for How Do You Write Code That Is Safe for UTF-8? Zudaka 2008-09-25T17:05:49Z 2008-09-25T19:16:01Z <p>Icelandic uses ISO Latin 1, so eight bits should be enough. We need more details to figure out what's happening.</p> http://stackoverflow.com/questions/134371/how-do-you-write-code-that-is-safe-for-utf-8/134620#134620 1 Answer by Nemanja Trifunovic for How Do You Write Code That Is Safe for UTF-8? Nemanja Trifunovic 2008-09-25T17:13:41Z 2008-09-25T17:13:41Z <p>UTF-8 was designed exactly with your problems in mind. One thing I would be careful about is that ASCII is realy a 7-bit encoding, so if any part of your infrastructure is using the 8th bit for other purposes, that may be tricky.</p> http://stackoverflow.com/questions/134371/how-do-you-write-code-that-is-safe-for-utf-8/134844#134844 8 Answer by Mike Dimmick for How Do You Write Code That Is Safe for UTF-8? Mike Dimmick 2008-09-25T17:54:24Z 2008-09-25T17:54:24Z <p>Just be 8-bit clean, for the most part. However, you will have to be aware that any non-ASCII character splits across multiple bytes, so you must take account of this if line-breaking or truncating text for display.</p> <p>UTF-8 has the advantage that you can always tell where you are in a multi-byte character: if bit 7 is set and bit 6 reset (byte is 0x80-0xBF) this is a trailing byte, while if bits 7 and 6 are set and 5 is reset (0xC0-0xDF) it is a lead byte with one trailing byte; if 7, 6 and 5 are set and 4 is reset (0xE0-0xEF) it is a lead byte with two trailing bytes, and so on. The number of consecutive bits set at the most-significant bit is the total number of bytes making up the character. That is:</p> <p>110x xxxx = two-byte character<br /> 1110 xxxx = three-byte character<br /> 1111 0xxx = four-byte character<br /> etc</p> <p>The Icelandic alphabet is all contained in ISO 8859-1 and hence Windows-1252. If this is a console-mode application, be aware that the console uses IBM codepages, so (depending on the system locale) it might display in 437, 850, or <a href="http://en.wikipedia.org/wiki/Code_page_861" rel="nofollow">861</a>. Windows has no native display support for UTF-8; you must transform to UTF-16 and use Unicode APIs.</p> <p>Calling SetConsoleCP and SetConsoleOutputCP, specifying codepage 1252, will help with your problem, if it is a console-mode application. Unfortunately the console font selected has to be a font that supports the codepage, and I can't see a way to set the font. The standard bitmap fonts only support the system default OEM codepage.</p> http://stackoverflow.com/questions/134371/how-do-you-write-code-that-is-safe-for-utf-8/134968#134968 1 Answer by Brett Hall for How Do You Write Code That Is Safe for UTF-8? Brett Hall 2008-09-25T18:11:11Z 2008-09-25T18:11:11Z <p>You might want to check out <a href="http://www.icu-project.org/" rel="nofollow">icu</a>. They might have functions available that would make working with UTF-8 strings easier.</p> http://stackoverflow.com/questions/134371/how-do-you-write-code-that-is-safe-for-utf-8/135500#135500 1 Answer by Xavier Nodet for How Do You Write Code That Is Safe for UTF-8? Xavier Nodet 2008-09-25T19:36:11Z 2008-09-25T19:36:11Z <p><a href="http://www.joelonsoftware.com/articles/Unicode.html" rel="nofollow">Another introductory article from Joel Spolsky</a></p> http://stackoverflow.com/questions/134371/how-do-you-write-code-that-is-safe-for-utf-8/1058251#1058251 0 Answer by John Machin for How Do You Write Code That Is Safe for UTF-8? John Machin 2009-06-29T13:20:02Z 2009-06-29T13:20:02Z <p>Icelandic, like French, German, and most other languages of Western Europe, can be supported using an 8-bit character set (CP1252 on Windows, ISO 8859-1 aka Latin1 on *x). This was the standard approach before Unicode was invented, and is still quite common. As you say you have a constraint that you can't rewrite your app to use wchar, and you don't need to. </p> <p>You shouldn't be surprised that UTF-8 is causing problems; UTF-8 encodes the non-ASCII characters (e.g. the accented Latin characters, thorn, eth, etc) as TWO BYTES each.</p> <p>The only general advice that can be given is quite simple (in theory): (1) decide what character set you are going to support (Unicode, Latin1, CP1252, ...) in your system (2) if you are being supplied data encoded in some other fashion (e.g. UTF-8) then transcode it to your standard (e.g. CP1252) at the system border (3) if you need to supply data encoded in some other fashion, ...</p>