Help for this page

Select Code to Download


  1. or download this
                Güldenstädt's Redstart
    
  2. or download this
                Güldenstädtâ??s Redstart
    
  3. or download this
        $string =~ 
    s/([\xC2\xC3])([\x80-\xBF])/chr(ord($1)<<6&0xC0|ord($2)&0x3F)/eg;
    
  4. or download this
        use Unicode::Normalize 'normalize';
    
  5. or download this
        use Unicode::String qw(utf8 latin1);
    
  6. or download this
      use Unicode::UCD 'charinfo';
    
    ...
            $string =~ s/$U_char/$subs{$U_codepoint}/;    
              # and $subs{252} = ü
      }
    
  7. or download this
        foreach my $i (126 ... 255) {
            $subs{$i} = chr($i);
        }