Help for this page

Select Code to Download


  1. or download this
      DB<18> x $str
    0  'http://en.wikipedia.org/w/api.php?prop=revisions&format=xml&titles
    +=User:OverlordQ/R&#299;ga-Herson-Astrahan&action=query&rvlimit=20'
    
  2. or download this
      DB<24> x $str
    0  'http://en.wikipedia.org/w/api.php?prop=revisions&format=xml&titles
    +=User:OverlordQ/R%C3%84%C2%ABga-Herson-Astrahan&action=query&rvlimit=
    +20'
    
  3. or download this
    #!/usr/bin/perl
    use strict;
    use warnings;
    ...
            my $string = shift;
            return utf8::is_utf8($string);
    }
    
  4. or download this
    #!/usr/bin/perl
    use strict;
    ...
            my $string = shift;
            return utf8::is_utf8($string);
    }
    
  5. or download this
    binmode STDOUT, ':utf8';
    
  6. or download this
    $title = decode('utf8',$title);
    
  7. or download this
    #!/usr/bin/perl
    use strict;
    use warnings;
    ...
            my $string = shift;
            return utf8::is_utf8($string);
    }