Help for this page

Select Code to Download


  1. or download this
        sub hexout4  {
            "@{[unpack('H*',pop)=~/../g]}"
        }
    
  2. or download this
        printf "%#x\n", 0;
        printf "%#x\n", 1;
    
    ...
        Prints:
        0
        0x1
    
  3. or download this
        int main () {
    
            printf("%#x\n", 0);
    ...
    
            return 0;
        }