vote up 1 vote down star

I am interested in writing utf-8 encoded strings to a file.

I did this with low level functions open() and write(). In the first place I set the locale to a utf-8 aware character set with setlocale("LC_ALL", "de_DE.utf8"). But the resulting file does not contain utf-8 characters, only iso8859 encoded umlauts. What am I doing wrong?

Addendum: I don't know if my strings are really utf-8 encoded in the first place. I just keep them in the source file in this form: char *msg = "Rote Grütze";

See screenshot for content of the textfile: alt text

flag

79% accept rate
Appendum2: As I wrote, I have included umlauts in my text, namely: char *msg = "Rote Grütze" – mixedpickles Feb 9 at 22:31
The word is "addendum," not "appendum." – Rob Kennedy Feb 9 at 22:39
thx for pointing out. – mixedpickles Feb 9 at 22:44
kitenet.net/~joey/code/moreutils has a program isutf8 that you can use to see if a file is encoded according to utf8, at least as far as the bit stream is concerned. This may help you in the future to see if your files are utf8 or not. – Lars Wirzenius Feb 10 at 6:40

3 Answers

vote up 2 vote down check

Changing the locale won't change the actual data written to the file using write(). You have to actually produce UTF-8 characters to write them to a file. For that purpose you can use libraries as ICU.

Edit after your edit of the question: UTF-8 characters are only different from ISO-8859 in the "special" symbols (ümlauts, áccénts, etc.). So, for all the text that doesn't have any of this symbols, both are equivalent. However, if you include in your program strings with those symbols, you have to make sure your text editor treats the data as UTF-8. Sometimes you just have to tell it to.

To sum up, the text you produce will be in UTF-8 if the strings within the source code are in UTF-8.

Another edit: Just to be sure, you can convert your source code to UTF-8 using iconv:

iconv -f latin1 -t utf8 file.c

This will convert all your latin-1 strings to utf8, and when you print them they will be definitely in UTF-8. If iconv encounters a strange character, or you see the output strings with strange characters, then your strings were in UTF-8 already.

Regards,

link|flag
how can I do this with libc without using another library? – mixedpickles Feb 9 at 22:28
Well, yes, of course. as I say, just use an editor that supports UTF-8. – Diego Sevilla Feb 9 at 22:32
diegosevilla: I have umlauts in my source code and they are definitive written iso-8859 encoded. How can I force the program to write them out utf-8 encoded without the icu library? – mixedpickles Feb 9 at 22:34
I recommend you to convert the source code instead. That will save you having to use another library, and will speed up the program (no conversions). Use iconv as I wrote in the answer. – Diego Sevilla Feb 9 at 22:38
vote up 1 vote down

Yes, you can do it with glibc. They call it multibyte instead of UTF-8, because it can handle more than one encoding type. Check out this part of the manual.

Look for functions that start with the prefix mb, and also function with wc prefix, for converting from multibyte to wide char. You'll have to set the locale first with setlocale() to UTF-8 so it chooses this implementation of multibyte support.

If you are coming from an Unicode file I believe the function you looking for is wcstombs().

link|flag
vote up 0 vote down

Can you open up the file in a hex editor and verify, with a simple input example, that the written bytes are not the values of Unicode characters that you passed to write(). Sometimes, there is no way for a text editor to determine character set and your text editor may have assumed an ISO8859-1 character set.

Once you have done this, could you edit your original post to add the pertinent information?

link|flag
yes, I did with hexdump -C – mixedpickles Feb 9 at 22:24

Your Answer

Get an OpenID
or

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