That third emoji is very new. I just see (rough ASCII-art rendition):

+---+
|01F|
|ADA|
+---+

It's U+01FADA GINGER ROOT and part of the Unicode v15.0 release (the latest is v15.1). I have the latest Firefox running on the latest Win10 (I just updated everything) so I'm guessing I simply don't have an appropriate font. I imagine others are in the same boat.

There are minimal details in the Unicode PDF Code Chart "Symbols and Pictographs Extended-A - Range: 1FA70-1FAFF".

Perl can provide information on all properties with:

$ perl -E ' use Unicode::UCD "charprops_all"; use Data::Dump; dd charprops_all("U+01FADA"); '

Perl v5.38.0 added support for Unicode v15.0 (see "perl5380delta: Unicode 15.0 is supported"). Those who haven't upgraded to v5.38.0 yet, won't be able to use the code above. Here's a few selected lines of the output:

{ Age => "V15_0", ... Block => "Symbols_And_Pictographs_Extended_A" +, ... Emoji_Presentation => "Yes", ... Name => "GINGER ROOT", ... }

The full output takes up a couple of screenfuls on my 27" monitor. I've put it in the spoiler for anyone interested.

— Ken


In reply to Re^6: Larger profile pic than 80KB? by kcott
in thread Larger profile pic than 80KB? by stevieb

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.