Help for this page

Select Code to Download


  1. or download this
     
      DB<96> x @input = map {ord} split //,'202005'  # input ASCII values
    0  50
    ...
    Input: 0x32 0x30 0x32 0x30 0x30 0x35
      DB<102> printf "Output: 0x%x", $result2
    Output: 0x0
    
  2. or download this
     DB<105> x @input = (0x32, 0x30, 0x32, 0x30, 0x30, 0x35)
    0  50
    ...
    3  48
    4  48
    5  53