vote up 7 vote down star
1

I'm still trying to decide whether my (home) project should use utf-8 strings (implemented in terms of std::string with additional utf-8-specific functions when necessary) or some 16-bit string (implemented as std::wstring). The project is a programming language and environment (like VB, it's a combination of both).

There are a few wishes/constraints:

  • It would be cool if it could run on limited hardware, such as small Micro-ATX formats, which basically means limited memory.
  • I want the code to run on Windows, Mac and (if resources allow) Linux.
  • I'll be using wxWidgets as my GUI layer, but I want the code that interacts with that toolkit confined in a corner of the codebase (I will have non-gui executables).
  • I would like to avoid working with two different kinds of strings when working with user-visible text and with the application's data.

Currently, I'm working with std::string, with the intent of using utf-8 manipulation functions only when necessary. It requires less memory, and seems to be the direction many applications are going anyway.

If you recommend a 16-bit encoding, which one: utf-16? ucs-2? Another one?

Thanks,

Carl

flag

52% accept rate

9 Answers

vote up 2 vote down check

I would recommend UTF-16 for any kind of data manipulation and UI. The Mac OS X and Win32 API uses UTF-16, same for wxWidgets, Qt, ICU, Xerces, and others. UTF-8 might be better for data interchange and storage. See http://unicode.org/notes/tn12/

But whatever you choose, I would definitely recommend against std::string with utf-8 "only when necessary"

Go all the way utf-16 or utf-8, but not mix and match, that is asking for trouble.

link|flag
My team's Mac programmer says wchar_t is 32 bits. And there is certainly a lot of code in our codebase which would break otherwise. – MSalters Sep 21 '08 at 23:12
Just to clarify: with "utf-8 only when necessary", I actually meant that I would be using some utf-8 manipulation functions only when I actually needed to deal with characters - but all strings would always be utf-8. – Carl Seleborg Sep 23 '08 at 10:25
Accepted: I want a clear separation between GUI and data domains. The latter would be all about interchange and storage, so I don't mind the GUI layer converting to utf-16 wxStrings from utf-8 encoded std::string objects. – Carl Seleborg Sep 23 '08 at 10:27
vote up 1 vote down

From what I've read, it's better to use a 16-bit encoding internally unless you're short on memory. It fits almost all living languages in one character

I'd also look at ICU. If you're not going to be using certain STL features of strings, using the ICU string types might be better for you.

link|flag
Actually, UTF-16 will fit most living language characters in two bytes; take a look at the [code point charts][unicode.org/charts/PDF/] for code points above U+10000; they're all ancient Greek or Roman symbols. – Ben Straub Sep 19 '08 at 20:43
Ben Straub: Thanks. Fixed in my post – Branan Sep 20 '08 at 1:02
vote up 0 vote down

I have never found any reasons to use anything else than UTF-8 to be honest.

link|flag
vote up 2 vote down

MicroATX is pretty much a standard PC motherboard format, most capable of 4-8GB of RAM. I'f you're talking picoATX maybe you're limited to 1-2GB ram. Even them that's plenty for a development environment. I'd still stick with UTF-8 for reasons mentioned above, but memory shouldn't be your concern.

link|flag
vote up 6 vote down

UTF-16 is still a variable length character encoding (there are more than 2^16 unicode codepoints), so you can't do O(1) string indexing operations. If you're doing lots of that sort of thing, you're not saving anything in speed over UTF-8. On the other hand, if your text includes a lot of codepoints in the 256-65535 range, UTF-16 can be a substantial improvement in size. UCS-2 is a variation on UTF-16 that is fixed length, at the cost of prohibiting any codepoints greater than 2^16.

Without knowing more about your requirements, I would personally go for UTF-8. It's the easiest to deal with for all the reasons others have already listed.

link|flag
vote up 0 vote down

Why choosing now, when you can delay this choice...

... And change your choice when needed?

One solution would be to delay your decision at compile time. This would enable you, with the right compilation options, to link the the libraries you want, on the OS you want, without having to choose beforehand.

On Windows, we use the <tchar.h> header.

This means that you can decide, at compile time, if you want your application to be on UTF-16 or on UTF-8 encoding.

Let's compare code:

// Not the real defines, but this is similar to <tchar.h>
#ifdef UNICODE
   typedef char            TCHAR;
   #define _T(x) x
#else
   typedef wchar_t         TCHAR;
   #define _T(x) L ## x
#endif

const char    * const strMyUTF8   =    "Hello World" ;
const wchar_t * const strMyUTF16  =   L"Hello World" ;
const TCHAR   * const strMyUTFT   = _T("Hello World") ;

The TCHAR is almost as easy to code (and with some habit, you'll forget about the _T macro), and will enable you to switch at compile time.

For this, you have to use the <tchar.h> header in Windows, or write your own (very far from a difficult task). You'll have to add the "T" version of the STL, for example, the std::tstring which will map to std::string or std::wstring, again, at compile time.

Again, this is not really difficult.

In the end, this will let you change the encoding for your project, when needed, with just one macro definition.

link|flag
Thanks for your advice paercebal, but delaying a decision does not help making it - and I was specifically asking for input on why to go with the one or the other choice. – Carl Seleborg Sep 19 '08 at 18:19
NO! With tchar, you switch between Unicode and a codepage. And codepage 65001 has a lot of issues. Check the blogs of Raymond Chen and M. Kaplan for details. – MSalters Sep 21 '08 at 23:14
On Windows, with Windows API, you're right, MSalters. But when you are using other APIs, like, for example, producing cross-platform code in unicode for both Linux and Windows, the TCHAR remains wchar_t on Windows, and char on Linux. You missed the point of my post, I guess. – paercebal Sep 21 '08 at 23:56
vote up 0 vote down

Have you considered using wxStrings? If I remember correctly, they can do utf-8 <-> Unicode conversions and it will make it a bit easier when you have to pass strings to and from the UI.

link|flag
vote up 1 vote down

If you decide to go with UTF-8 encoding, check out this library: http://utfcpp.sourceforge.net/

It may make your life much easier.

link|flag
vote up 3 vote down

I've actually written a widely used application (5million+ users) so every kilobyte used adds up, literally. Despite that, I just stuck to wxString. I've configured it to be derived from std::wstring, so I can pass them to functions expecting a wstring const&.

Please note that std::wstring is native Unicode on the Mac (no UTF-16 needed for characters above U+10000), and therefore it uses 4 bytes/wchar_t. The big advantage of this is that i++ gets you the next character, always. On Win32 that is true in only 99.9% of the cases. As a fellow programmer, you'll understand how little 99.9% is.

But if you're not convinced, write the function to uppercase a std::string[UTF-8] and a std::wstring. Those 2 functions will tell you which way is insanity.

Your on-disk format is another matter. For portability, that should be UTF-8. There's no endianness concern in UTF-8, nor a discussion over the width (2/4). This may be why many programs appear to use UTF-8.

On a slightly unrelated note, please read up on Unicode string comparisions and normalization. Or you'll end up with the same bug as .NET, where you can have two variables föö and föö differing only in (invisible) normalization.

link|flag
Note that using UTF32 on mac uses a lot of memory. The 0.1% case you mention means that any wstring on Mac will be twice as large as the same string in UTF16 on Windows (I won't even mention Linux's char). This is one of the reasons Linux use UTF-8 char, and why Windows uses UTF-16 wchar_t. – paercebal Sep 22 '08 at 0:07

Your Answer

Get an OpenID
or

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