Help for this page

Select Code to Download


  1. or download this
      DB<106> sprintf '%03o%03o', ord("\r"),ord("\n")
     => "015012"
    
  2. or download this
      DB<104> map { sprintf '%03o', ord($_) } split //, "a \r\n" 
     => (141, "040", "015", "012")
    
  3. or download this
      DB<109> sprintf '0%o', ord("a")
     => "0141"