Help for this page

Select Code to Download


  1. or download this
    print "%d\n", $string;
    
  2. or download this
    printf "%d\n", hex( $string );
    
  3. or download this
    sub myHex {
        no warnings 'digit';
    ...
    }
    
    printf "%d\n", myHex( $string );