Help for this page

Select Code to Download


  1. or download this
    print length chr 199;
    
  2. or download this
    use Encode; 
    print length Encode::encode_utf8(chr 199);
    
  3. or download this
    say join ",", map ord, split //, chr 199;
    
  4. or download this
    use Encode; 
    say join ",", map ord, split //, Encode::encode_utf8(chr 199);