Tagged Questions

2
votes
2answers
490 views

shift jis decoding/encoding in perl

When I try decode a shift-jis encoded string and encode it back, some of the characters get garbled: I have following code: use Encode qw(decode encode); $val=; print "\nbefore decoding: $val"; my ...
1
vote
1answer
162 views

decoding shift-jis: “illeagal multibyte sequence”

I'm trying to decode a shift-jis string, like this: string.decode('shift-jis').encode('utf-8') to be able to view it in my program. When I come across 2 shift-jis characters, in hex "0x87 0x54" and ...
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
76 views

How can I convert Shift_JIS character codes to unicode characters in python?

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 ...
0
votes
0answers
29 views

How to RSS feed with encode Shift_JIS

How to encode a RSS feed with Shift_JIS Encoding in php. When I mention it, it breaks up and returns empty result. Any sample code or reference will be helpful. Thanks Nizam
0
votes
1answer
180 views

Retrieving a specified glyph from freetype (SHIFT JIS encoded)?

Until now I used a texture (bitmapfont) for font rendering, but I'm trying to get freetype2 working. All my strings are SHIFT_JIS encoded and my only Problem is now to get from freetype the right ...