Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    while (<>) {
    ...
        $c{$_}++ for (split //);
    }
    printf("%02x : %s : %d\n",ord($_),$_,$c{$_}) for(sort keys %c);
    
  2. or download this
      perl  that_script < your_file.txt > char_list.txt
    
  3. or download this
       perl unichist -x < your_file.txt > char_list.txt