Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
    for my $code (sort { $a <=> $b } keys %character_count_by) {
        printf "U+%04x\t%d\n", $code, $character_count_by{$code};
    }