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.
shift_str = chr(shift_int // 256) + chr(shift_int % 256)thenshift_uni = unicode(shift_str, 'shift-jis')– agf Aug 18 '11 at 19:59inttype values? Or a string that contains human-formatted, base 10 numbers (i.e. only the symbols0through9and 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