Tagged Questions

6
votes
6answers
388 views

Space-saving character encoding for japanese?

In my opinion a common problem: character encoding in combination with a bitmap-font. Most multi-language encodings have an huge space between different character types and even a lot of unused code ...
1
vote
1answer
304 views

Are there any problems converting between SHIFT_JIS and Unicode encodings?

I've heard there are (used to be?) ambiguous mappings between Unicode and SHIFT_JIS codes. This KB article somewhat proves this. So the question is: will I lose any data if I take SHIFT_JIS-encoded ...
0
votes
1answer
46 views

How to rewrite the SJIStoJIS function from php to python

I need convert SHIFT_JIS charset to JIS charset by python.I found a function on google codesearch. But the function is used php. I can't use python's unpack() correctly. Plz give me some help.Thank ...
0
votes
1answer
246 views

How to detect the character encoding of a file in Java?

Good day, Our application receives files from our users, and those files must be validated if they are of the encoding type that we support (i.e. UTF-8, Shift-JIS, EUC-JP), and once that file is ...