0
votes
3answers
51 views
UTF8 Beginning of File characters are breaking serializer & readers
Okay, I'm trying to work with UTF8 text files. I'm constantly fighting the BOF chars that the writer drops in for UTF8, which blows up pretty much anything I need to use to read th …
0
votes
1answer
34 views
django.utils.encoding.DjangoUnicodeDecodeError
I got the following error when tried to add an entry to a Django model via generic relations.
django.utils.encoding.DjangoUnicodeDecodeError: 'utf8' codec can't decode byte 0xb8 i …
1
vote
4answers
79 views
System.Text.Encoding isn’t
I've tracked a problem I'm having down to the following inexplicable behaviour within the .NET System.Text.Encoding class:
byte[] original = new byte[] { 128 };
string encoded = S …
1
vote
4answers
53 views
PHP - UTF8 problem with German characters.
Hello,
I'm at my wits end with this one, then I remember stack overflow.
I have a site, http://bridgeserver3.co.uk/disklavier/de/ , the language is stored in a simple PHP file wh …
0
votes
2answers
45 views
Weird utf8 conversion problem in php
So I'm working on a project that is taking data from a file, in the file some lines require utf8 symbols but are encoded oddly, they are \xC6 for example rather than being \Æ
…
0
votes
3answers
66 views
Do HTTP request headers have to be UTF-8 encoded?
I could not find anything in the spec which says it should be. I have seen a couple of browsers setting their user-agents to non UTF8 encoded strings. There is however a Content-Ty …
0
votes
3answers
45 views
Change encoding to UTF-8 recursively on Windows?
Does anybody know a tool, preferably for the Explorer context menu, to recursively change the encoding of files in a project from / to UTF-8 and other encodings? Freeware or not to …
2
votes
1answer
111 views
PostgreSQL + PHP + UTF8 = invalid byte sequence for encoding
I'm migrating a db from mysql to postgresql. The mysql db's default collation is UTF8, postgres is also using UTF8, and I'm encoding the data with pg_escape_string(). For whatever …
1
vote
2answers
49 views
how to set UTF8 lang on Tomcat/java running on Mac OS 10.5.8?
I'm running Tomcat6 locally on Mac OS 10.5.8. Our staging and production servers have setup an environment variable of:
LANG=en_US.UTF-8
Stage and production run on CentOS and r …
0
votes
2answers
141 views
Delphi 7 Personal, MySQL using libmysql.dll + UTF8
Hi,
I'm using Delphi 7 Personal. To access MySQL database I'm using libmysql.dll + very simple wrapper, which is good enough for me. Except one thing ... it doesn't seem to handle …
1
vote
2answers
68 views
Convert two string to the same byte length
I have 2 strings in my PHP code, 1 is a parameter to my method and 1 is a string from an ini file.
The problem is that they are not equal, although they have the same content, prob …
1
vote
1answer
30 views
What’s the appropriate Unicode character to flag users on the website?
I run a quiz-like website at slagalica.tv (content is not in English). We often have users that try to cheat the system, so we flag those accounts and they get special treatment. N …
0
votes
1answer
92 views
Getting UTF8 data from mysql to the Linux C++ application
Hi,
I have a big troubles with display of UTF8 data retrieved from the mysql to the Linux-based C++ application. UTF text is showed as question marks.
The application uses mysql …
0
votes
1answer
40 views
Fixing Unicode Oops
It seems that we have managed to insert into our database 2 unicode characters for each of the unicode characters we want,
For example, for the unicde char 0x3CBC, we've inserted …
2
votes
3answers
633 views
Encoding UTF8 string to ISO-8859-1 String (VB.NET)
Hi
I need to convert UTF8 string to ISO-8859-1 string using VB.NET.
Any example?
Thanks in advance.
