logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Unicode::CharName - Look up Unicode character names

Description

       This module provide a two functions named uname() and ublock().  The uname() function will return the
       Unicode character name for the given code (a number between 0 and 0x10FFFF).  Unicode character names are
       written in upper-case ASCII letters, and are strings like:

         LATIN CAPITAL LETTER A
         LATIN SMALL LETTER A WITH RING ABOVE
         CJK UNIFIED IDEOGRAPH 7C80
         HANGUL SYLLABLE PWILH

       The ublock() will return the name of the Unicode character block that the given character belongs to.

Name

       Unicode::CharName - Look up Unicode character names

See Also

       Unicode::String

Synopsis

        use Unicode::CharName qw(uname ublock);
        print uname(ord('%')), "\n";
        print ublock(0x0300), "\n";

See Also