Help for this page

Select Code to Download


  1. or download this
    $packed = pack 'd', '7ff0000000000001';
    $d = unpack 'h16', $packed;
    
  2. or download this
    use warnings;
    use strict;
    ...
    print doubleToHex(get_snan());
    
    sub doubleToHex { scalar reverse unpack 'h16', pack 'd', $_[0] }