App-Uni
view release on metacpan or search on metacpan
#!/usr/bin/perl
use strict;
use warnings;
# PODNAME: uni
# ABSTRACT: command-line utility to find or display Unicode characters
use App::Uni;
use Encode qw(decode);
binmode STDOUT, ':encoding(utf-8)';
@ARGV = map {; decode('UTF-8', $_) } @ARGV;
App::Uni->run(@ARGV);
#pod =head1 DESCRIPTION
#pod
#pod $ uni âº
#pod 263A ⺠WHITE SMILING FACE
#pod
( run in 0.392 second using v1.01-cache-2.11-cpan-3cd7ad12f66 )