Help for this page

Select Code to Download


  1. or download this
    map { printf "Char(%s) = Ascii %d\n", $_, ord $_ } split //, $newName;
    
  2. or download this
    map {printf"%3d %2x %2s|",$_,$_,$_<32?'^'.chr$_+64:$_<127?chr$_:'^?'} 
    +(0..127);