[Issue 1024] invalid UTF-8 sequence for \u00B6 (¶) in comment

d-bugmail at puremagic.com d-bugmail at puremagic.com
Sun Mar 4 14:41:28 PST 2007


http://d.puremagic.com/issues/show_bug.cgi?id=1024





------- Comment #4 from benoit at tionex.de  2007-03-04 16:41 -------
hm, i did forget to reactivate the code that produces the utf chars....

Now i can say, it also works without BOM, and my problem was a coding error in
writing the file.

char[] line;
...
line ~= '\u00b6'; // This made the corrupt file content
line ~= "\u00b6"; // So the file is written correctly
// write the line into the file


-- 



More information about the Digitalmars-d-bugs mailing list