Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    
    for ($i=1; $i<64; $i++) {
      print(sprintf("%02X: ",$i),("0x".sprintf("%X",$i))+0,"\n");
    }
    
  2. or download this
    01: 1
    02: 1
    03: 1.5
    ...
    3D: 1.90625
    3E: 1.9375
    3F: 1.96875