in reply to Re^5: Larger profile pic than 80KB?
in thread Larger profile pic than 80KB?
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.
{ Age => "V15_0", Alphabetic => "No", ASCII_Hex_Digit => "No", Bidi_Class => "Other_Neutral", Bidi_Control => "No", Bidi_Mirrored => "No", Bidi_Mirroring_Glyph => "", Bidi_Paired_Bracket => "", Bidi_Paired_Bracket_Type => "None", Block => "Symbols_And_Pictographs_Extended_A" +, Canonical_Combining_Class => "Not_Reordered", Case_Folding => "\x{1FADA}", Case_Ignorable => "No", Cased => "No", Changes_When_Casefolded => "No", Changes_When_Casemapped => "No", Changes_When_Lowercased => "No", Changes_When_NFKC_Casefolded => "No", Changes_When_Titlecased => "No", Changes_When_Uppercased => "No", Composition_Exclusion => "No", Dash => "No", Decomposition_Mapping => "\x{1FADA}", Decomposition_Type => "None", Default_Ignorable_Code_Point => "No", Deprecated => "No", Diacritic => "No", East_Asian_Width => "Wide", Emoji => "Yes", Emoji_Component => "No", Emoji_Modifier => "No", Emoji_Modifier_Base => "No", Emoji_Presentation => "Yes", Equivalent_Unified_Ideograph => "", Extended_Pictographic => "Yes", Extender => "No", Full_Composition_Exclusion => "No", General_Category => "Other_Symbol", Grapheme_Base => "Yes", Grapheme_Cluster_Break => "ExtPict_XX", Grapheme_Extend => "No", Hangul_Syllable_Type => "Not_Applicable", Hex_Digit => "No", Hyphen => "No", ID_Continue => "No", ID_Start => "No", Identifier_Status => "Restricted", Identifier_Type => "Not_XID", Ideographic => "No", IDS_Binary_Operator => "No", IDS_Trinary_Operator => "No", Indic_Positional_Category => "NA", Indic_Syllabic_Category => "Other", ISO_Comment => "", Join_Control => "No", Joining_Group => "No_Joining_Group", Joining_Type => "Non_Joining", Line_Break => "Ideographic", Logical_Order_Exception => "No", Lowercase => "No", Lowercase_Mapping => "\x{1FADA}", Math => "No", Name => "GINGER ROOT", Name_Alias => "", NFC_Quick_Check => "Yes", NFD_Quick_Check => "Yes", NFKC_Casefold => "\x{1FADA}", NFKC_Quick_Check => "Yes", NFKD_Quick_Check => "Yes", Noncharacter_Code_Point => "No", Numeric_Type => "None", Numeric_Value => "NaN", Pattern_Syntax => "No", Pattern_White_Space => "No", Prepended_Concatenation_Mark => "No", Present_In => "15.0", Quotation_Mark => "No", Radical => "No", Regional_Indicator => "No", Script => "Common", Script_Extensions => "Common", Sentence_Break => "Other", Sentence_Terminal => "No", Simple_Case_Folding => "\x{1FADA}", Simple_Lowercase_Mapping => "\x{1FADA}", Simple_Titlecase_Mapping => "\x{1FADA}", Simple_Uppercase_Mapping => "\x{1FADA}", Soft_Dotted => "No", Terminal_Punctuation => "No", Titlecase_Mapping => "\x{1FADA}", Unicode_1_Name => "", Unified_Ideograph => "No", Uppercase => "No", Uppercase_Mapping => "\x{1FADA}", Variation_Selector => "No", Vertical_Orientation => "Upright", White_Space => "No", Word_Break => "ExtPict_XX", XID_Continue => "No", XID_Start => "No", }
— Ken
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^7: Larger profile pic than 80KB?
by LanX (Saint) on Oct 27, 2023 at 00:17 UTC | |
by kcott (Archbishop) on Oct 27, 2023 at 07:16 UTC | |
by eyepopslikeamosquito (Archbishop) on Oct 27, 2023 at 10:45 UTC | |
by kcott (Archbishop) on Oct 27, 2023 at 11:54 UTC | |
by eyepopslikeamosquito (Archbishop) on Oct 28, 2023 at 01:40 UTC | |
| |
by LanX (Saint) on Oct 27, 2023 at 21:30 UTC | |
by eyepopslikeamosquito (Archbishop) on Oct 28, 2023 at 06:36 UTC | |
by LanX (Saint) on Oct 28, 2023 at 13:48 UTC |