The penguin is part of my prompt

Download uchar

tux 🐧 uchar --help
usage: uchar -v [-m base:count [ -m base:count ] ...
       uchar -v -f char ...
  perl 5.38.0 with Unicode 15.0.0

        -m      show maps
        -v      verbosity
        -l      list GBA characters
        -f      find
        -F      find (only chars supported in current font)
         -s     splash all characters found into a single string
        -k      show matching key combo(s)
        -d      apply random diacricals
        -e      show character encodings (uchar -e -f u_BREVE)
         -o     also show octal version of encoding
        -E      show character decodings (uchar -E fc)
        -b      strip to base
        -D      show codepoints in decimal
        -c      copy found string(s) to clipboard
        -h      also show html entity if available
tux 🐧 uchar -v X🩼X
X U00058 \N{LATIN CAPITAL LETTER X}
🩼 U1fa7c \N{CRUTCH}
X U00058 \N{LATIN CAPITAL LETTER X}
tux 🐧 uchar -v U+1f427
🐧 U1f427 \N{PENGUIN}
tux 🐧 uchar -e U+1f427
🐧 U1f427 \N{PENGUIN}

  cp1026                         6f
  cp1047                         6f
  cp37                           6f
  cp424                          6f
  cp500                          6f
  cp875                          6f
  gb12345-raw                    22
  gb2312-raw                     22
  hz                             22
  iso-2022-kr                    1b2429435c787b31663432377d
  iso-ir-165                     22
  jis0208-raw                    20
  jis0212-raw                    22
  ksc5601-raw                    22
  posix-bc                       6f
  UCS-2BE                        fffd
  UCS-2LE                        fdff
  UTF-16                         feffd83ddc27
  UTF-16BE                       d83ddc27
  UTF-16LE                       3dd827dc
  UTF-32                         0000feff0001f427
  UTF-32BE                       0001f427
  UTF-32LE                       27f40100
  UTF-7                          2b324433634a772d
  utf-8-strict                   f09f90a7
  utf8                           f09f90a7
tux 🐧 uchar -E f09f90a7 | grep utf
  utf-8-strict                   🐧
  utf8                           🐧     (U+1F427)
tux 🐧 uchar -Fk "L WITH STROKE"
Searching for (?^u:\bL WITH STROKE\b)
000141 Ł LSTROKE_IDX     LATIN CAPITAL LETTER L WITH STROKE
         #<Multi_key> <L> <minus>
         #<Multi_key> <minus> <L>
         <Multi_key> <L> <slash>
         <Multi_key> <L> <underscore>
         <Multi_key> <slash> <L>
         <Multi_key> <underscore> <L>
000142 ł lSTROKE_IDX     LATIN SMALL LETTER L WITH STROKE
         #<Multi_key> <l> <minus>
         #<Multi_key> <minus> <l>
         <Multi_key> <l> <slash>
         <Multi_key> <l> <underscore>
         <Multi_key> <slash> <l>
         <Multi_key> <underscore> <l>
tux $ perl -CEO -wE'say "\x{1F468}\x{1F3FD}\x{200D}\x{2708}\x{FE0F}"'
👨🏽✈️
tux $ raku -e'"\x[1F468]\x[1F3FD]\x[200D]\x[2708]\x[FE0F]".say'
👨🏽✈️
tux $ raku -e'"\x[1F468]\x[1F3FD]\x[200D]\x[2708]\x[FE0F]".say' | xarg +s uchar -v
👨 U1f468 \N{MAN}
🏽 U1f3fd \N{EMOJI MODIFIER FITZPATRICK TYPE-4}
 U0200d \N{ZERO WIDTH JOINER}
✈ U02708 \N{AIRPLANE}
️ U0fe0f \N{VARIATION SELECTOR-16}

Enjoy, Have FUN! H.Merijn

In reply to Re: uparse - Parse Unicode strings by Tux
in thread uparse - Parse Unicode strings by kcott

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.