I believe we're running into the same sort of issue we had with GINGER ROOT

Agreed.

I suspect you're seeing just three glyphs: ⚖️ & 🦪, followed by one that looks similar to 👨‍💻 (please confirm).

Confirmed.

Had I wrapped them in several "big" tags, I no doubt would have noticed the difference

Agreed. MAN and ADULT look very similar on my PC! I need to magnify the window to notice any difference. :)

For cheap thrills, just like last time, I've taken Perl and the Browser out of the equation by running the following commands in both a PowerShell window on Windows 11 and a bash window on Ubuntu 22.04.1.

PowerShell on Windows 11:

PS C:\> $joiner = [char]::ConvertFromUtf32(0x200D) PS C:\> $pc = [char]::ConvertFromUtf32(0x1F4BB) PS C:\> $man = [char]::ConvertFromUtf32(0x1F468) PS C:\> $person = [char]::ConvertFromUtf32(0x1F9D1)

PS C:\> "$man"
👨
PS C:\> "$person"
🧑
PS C:\> "$person$joiner$pc"
🧑‍💻
PS C:\> "$man$joiner$pc"
👨‍💻
PS C:\>

bash on Ubuntu:

$ echo -e '\U1F468'
👨
$ echo -e '\U1F9D1'
🧑
$ echo -e '\U1F468\U200D\U1F4BB'
👨‍💻
$ echo -e '\U1F9D1\U200D\U1F4BB'
🧑‍💻

See Also

Updated: added See Also section.

👁️🍾👍🦟

In reply to Re^5: Perl Secret Operator Emojis (using bash, PowerShell and other tools) by eyepopslikeamosquito
in thread Perl Secret Operator Emojis by eyepopslikeamosquito

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.