2015-04-15 16進の文字列を文字にして吐くプログラム perl #!/usr/bin/perl $hex = $ARGV[0]; $bin = pack('H*',$hex); print $bin; Perlの組み込み関数 pack の翻訳 - perldoc.jp