0
votes
newline character(s)
As far as I know, it's only Notepad that has a problem with line separators. Virtually ever other piece of software in the world accepts any of those three types of separator, and possibility othe …
0
votes
How do I properly store and retrieve internationalized Strings in properties files?
As of JDK 1.6, Properties has a load() method that accepts a Reader. That means yo …
2
votes
Handling UTF-8 encoding
once we write it to the destination queue, the £ symbol is lost and is replaced with £ instead
That tells me the character is being written as UTF-8, …
1
vote
XML encoding issue
I don't know what's causing your problem, but it isn't a limitation of UTF-8 or an error in the encoding process. UTF-8 can encode every character known to Unicode, and the problematic byte sequen …
1
vote
XMLReader encoding error
I would listen to what XMLReader is telling you. Remember that many encodings are supersets of ASCII, so (for example) UTF-8 and ISO-8859-1 are identical to ASCII for the first 128 code points. I …
0
votes
Getting U+fffd/65533 instead of special character from Query String
If the app is expecting the URL-encoded request to be based on UTF-8, the character "ø" should be "%C3%B8", not "%F8". Whatever function you're using to esca …
0
votes
Best way for Parsing ANSI and UTF-16LE files using Python 2/3?
What's in the files? If it's plain text in a Latin-based alphabet, almost every other byte the UTF-16LE files will be zero. In the windows-1252 files, on the other hand, I wouldn't expect to see …
2
votes
how to add encoding information to the response stream ?
What you call "encoding-information" is actually a BOM. I suspect each of those "characters" is getting encoded separately. To write the BOM manually, you have to write it as three bytes …
1
vote
mysql encoding issue with special character
Those will be "smart quotes" and em- or en-dashes ( “ ” ‘ ’ — – ). Microsoft apps tend to use those in place of their perfectly good ASCII equivalents, the quot …
0
votes
Some UTF-8 characters do not show up on browser
The character you're talking about is an en-dash, not a hyphen. Its Unicode code point is U+2013, and its UTF-8 encoding is E2 80 93, not C2 96. That table you linked to …
2
votes
Guessing the encoding of text represented as byte[] in Java
Here's my favorite: http://glaforge.free.fr/wiki/index.php?wiki=GuessEncoding
It works like this:
…
