Help for this page

Select Code to Download


  1. or download this
    0x007102 = 100.000000
    0x00350C = 500.000000
    
  2. or download this
    0x300515 / 1600 =? 860.99  Yes!
    
  3. or download this
    my $raw = 0x300515;
    my $val = unpack('N', "\x00".pack('V', $raw))/1600
    
  4. or download this
    my $raw  = "\x30\x05\x15";
    my $val = unpack('V', "$raw\x00")/1600;