NAME
App::unichar - get info about a character
SYNOPSIS
Call it as a program with a name, character, or hex code number:
% perl lib/App/unichar.pm 'CHECK MARK'
Processing CHECK MARK
match type name
code point U+2713
decimal 10003
name CHECK MARK
character ✓
% perl lib/App/unichar.pm ✓
Processing CHECK MARK
match type grapheme
code point U+2713
decimal 10003
name CHECK MARK
character ✓
% perl lib/App/unichar.pm 0x2713
Processing 0x2713
match type code point
code point U+2713
decimal 10003
name CHECK MARK
character ✓
DESCRIPTION
I use this as a little command-line program to quickly convert between values of characters.
AUTHOR
brian d foy, bdfoy@cpan.org
.
SOURCE AVAILABILITY
This module is in Github:
https://github.com/briandfoy/unichar
COPYRIGHT & LICENSE
Copyright 2011-2021 brian d foy
This module is licensed under the Artistic License 2.0.