Help for this page

Select Code to Download


  1. or download this
    # Perl assumes it's a Latin-1 string
    > perl -MEncode -wle print+length(qq(\x{c3}\x{a4}))
    2
    
  2. or download this
    # Perl gets told to decode the string from UTF-8
    > perl -MEncode -wle print+length(decode('UTF-8',qq(\x{c3}\x{a4})))
    1
    
  3. or download this
    # My terminal is Latin-1, which happens to match Perls default assumpt
    +ion
    > perl -MEncode -wle print(length(decode('Latin-1',qq(ä))))
    1