I have a list of Shift_JIS character codes (in integers) that I want to convert into unicode characters. I think I need a version of the chr()/unichr() function that works in other encodings. I've tried decode() in combination with hex(), but it only decodes the string itself, not the hexadecimal value.

Example input and output:

input = [91, 92, 48, 528]

output = ["[", "¥", "0", "0"]

Can anyone help me? Thanks in advance.

link|improve this question
Does this work: shift_str = chr(shift_int // 256) + chr(shift_int % 256) then shift_uni = unicode(shift_str, 'shift-jis') – agf Aug 18 '11 at 19:59
Can you show samples of the input and output you'll need? – Ned Batchelder Aug 18 '11 at 20:00
What do you mean by "in integers"? Do you have a list of int type values? Or a string that contains human-formatted, base 10 numbers (i.e. only the symbols 0 through 9 and space, something like that)? Or just what? Where is it coming from - a text file, user input, etc.? Describe the whole process. – Karl Knechtel Aug 18 '11 at 20:05
feedback

1 Answer

If you start with something like this:

bytearray = [65, 66, 67, 200, 156, 130]

Then this would do it:

>>> ustring = reduce(operator.add, map(chr, bytearray)).decode('shift_jis')
>>> ustring
u'ABC\uff88\u6029'
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.