Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    use strict;
    use warnings;
    ...
    use charnames qw(cyrilic greek);
    print "\N{Sigma} and \N{Sigma} are Greek sigmas.\n";
    print "\N{BE} and \N{be} are Cyrilic bes.\n";
    
  2. or download this
    #!/usr/bin/perl
    use strict;
    use warnings;
    ...
    use charnames qw(cyrilic greek);
    print "\N{Sigma} and \N{Sigma} are Greek sigmas.\n";
    print "\N{BE} and \N{be} are Cyrilic bes.\n";
    
  3. or download this
    #!/usr/bin/perl
    use strict;
    use warnings;
    ...
    $code = charnames::vianame($name);
    printf "%s is character U+%04X (%s)\n",
        $name, $code, chr($code);
    
  4. or download this
    #!/usr/bin/perl
    use strict;
    use warnings;
    ...
    
    
    #pagina 17
    
  5. or download this
    #!/usr/bin/perl
    use strict;
    ...
    #pagina 18
    print "unique chars are: ", sort(keys %seen), "\n";