App-uniprint

 view release on metacpan or  search on metacpan

script/uniprint  view on Meta::CPAN


my %Opts = (
);

sub parse_cmdline {
    my $res = GetOptions(
        'help|h'           => sub {
            print <<USAGE;
Usage:
  uniprint [OPTION]... STRING ...
  uniprint [OPTION]... < INPUT
  uniprint --help, -h
  uniprint --version, -v
Options:
  (None at the moment)

For more details, see the manpage/documentation.
USAGE
            exit 0;
        },
        'version|v' => sub {

script/uniprint  view on Meta::CPAN


uniprint - Print each Unicode character of input, along with its codepoint and name

=head1 VERSION

This document describes version 0.002 of uniprint (from Perl distribution App-uniprint), released on 2025-11-28.

=head1 SYNOPSIS

 % uniprint [OPTION]... STRING ...
 % uniprint [OPTION]... < INPUT

Examples:

 % uniprint "I💙U, 🫰"
 I	    73	00049	LATIN CAPITAL LETTER I
 💙	128153	1f499	BLUE HEART
 U	    85	00055	LATIN CAPITAL LETTER U
 ,	    44	0002c	COMMA
  	    32	00020	SPACE
 🫰	129776	1faf0	HAND WITH INDEX FINGER AND THUMB CROSSED



( run in 0.770 second using v1.01-cache-2.11-cpan-e1769b4cff6 )