in reply to Show all unicode characters
to show the names and filter out the unused code points. (Probably will slow it down a lot, though. Going directly to Unicode::UCD would be faster.)map { use 5.008; use charnames (); my $name = charnames::viacode($_); +$name ? ("$name ($_): ".chr($_)."\n") : () } 32..0x2ffff;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Show all unicode characters
by eserte (Deacon) on Aug 20, 2004 at 16:19 UTC |