文字コードの波ダッシュ問題
print unpack('H*', encode('shiftjis', decode('utf8', '〜'))); # => 8160 print unpack('H*', encode('cp932', decode('utf8', '〜'))); # => 3fPerlのEncodeモジュールを使うと「~」がshiftjisとcp932のときで結果が違います。 なんでかというと、shiftjis.ucmとcp932.ucmにおいて shift
print unpack('H*', encode('shiftjis', decode('utf8', '〜'))); # => 8160 print unpack('H*', encode('cp932', decode('utf8', '〜'))); # => 3fPerlのEncodeモジュールを使うと「~」がshiftjisとcp932のときで結果が違います。 なんでかというと、shiftjis.ucmとcp932.ucmにおいて shift