10
votes
Why is ¿ displayed different in Windows vs Linux even when using UTF-8?
System.out.println() outputs the text in the system default encoding, but the console interprets that output according to its own encoding (or "codepage") setting. On your Windows machine the two …
2
votes
Why does the string “¿” get translated to “¿” when calling .getBytes()
See my reply to your other thread. But this:
new St …
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
Problem with Java properties utf8 encoding in Eclipse
There are too many points in the process you describe where errors can occur, so I won't try to guess what you're doing wrong, but I think I know what's happening under the hood.
EF B …
1
vote
How can I check whether a byte array contains a unicode string in Java
Here's a way to use the UTF-8 "binary" regex from the W3C site
static boolean looksLik …
0
votes
Check if a char* buffer contains UTF8 characters?
For quick and dirty, you can't do much better than the regex on this page. If you just want to know whether it …
1
vote
Allowed characters in submit forms (including UTF-8)
When you say "the ASCII table" you're talking about this page, aren't you? That page is garbage. Only the first 128 characters (ie, 0..127) are …
9
votes
What is “ANSI as UTF-8” and how can I make fputcsv() generate UTF-8 w/BOM?
There's nothing wrong with the file. "ANSI as UTF-8" means there's no BOM but Notepad++ has definitely identified the encoding as UTF-8 by analyzing byte patterns. I tested this by creating a fil …
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:
…
