Thursday, March 25, 2021

Emoji Under the Hood

Emoji under the hood

For the past few weeks, I’ve been implementing emoji support for Skija. I thought it might be fun sharing a few nitty-gritty details of how this “biggest innovation in human communication since the invention of the letter ๐Ÿ…ฐ️” works under the hood.

Warning: some emoji might not display as expected on your device. In that case, use this text version: ¯\_(ใƒ„)_/¯

Intro to Unicode

As you might know, all text inside computers is encoded with numbers. One letter—one number. The most popular encoding we use is called Unicode, with the two most popular variations called UTF-8 and UTF-16.

Unicode allocates 2²¹ (~2 mil) characters called codepoints. Sorry, programmers, but it’s not a multiply of 8 ๐Ÿคท. Out of those 2 million, actually defined are ~150k characters.

150k defined characters cover all the scripts used on ๐ŸŒ, many dead languages, a lot of weird stuff like ๐”ฃ๐”ฒ๐”ซ๐”ซ๐”ถ ๐•๐•–๐•ฅ๐•ฅ๐•–๐•ฃ๐•ค, sษนวส‡ส‡วl uสop-วpแด‰sdn, GHz as one glyph: ㎓, “rightwards two-headed arrow with tail with double vertical stroke”: ⤘, seven-eyed monster: ๊™ฎ, and a duck:

As a side note, definitely check out the Egyptian Hieroglyphs block (U+13000–U+1342F). They have some really weird stuff.

Basic emoji

So, emoji. At their simplest, they are just that: another symbol in a Unicode table. Most of them are grouped in U+1F300–1F6FF and U+1F900–1FAFF.

That’s why emoji behave like any other letter: they can be typed in a text field, copied, pasted, rendered in a plain text document, embedded in a tweet, etc. When you type “A”, the computer sees U+0041. When you type “๐ŸŒต”, the computer sees U+1F335. Not much difference.

Emoji fonts

Why are emoji rendered as images then? Well, bitmap fonts. Apparently, you can create a font that has pngs for glyphs instead of boring black-and-white vector shapes.

Every OS comes with a single pre-installed font for emoji. On macOS/iOS, that’s Apple Color Emoji. Windows has Segoe UI Emoji, Android has Noto Color Emoji.

As far as I can tell, Apple is a bitmap font with 160×160 raster glyphs, Noto uses 128×128 bitmaps, and Segoe is a vector color font ๐Ÿ†’.

That’s why emoji look different on different devices—just like fonts look different! On top of that, many apps bundle their own emoji fonts, too: WhatsApp, Twitter, Facebook.

Font fallbacks

Now about the rendering. You don’t write your text in Apple Color Emoji or Segoe UI Emoji fonts (unless you are really young and pure at heart ❤️). So how can a text set in e.g. Helvetica include emoji?

Well, with the same machinery that makes Cyrillic text look ugly in Clubhouse or on Medium: font fallbacks.

When you type, say, U+1F419, it is first looked up in your current font. Let’s say it’s San Francisco. San Francisco doesn’t have a glyph for U+1F419, so OS starts to look for any other installed font that might have it.

U+1F419 can only be found in Apple Color Emoji, thus OS uses it to render U+1F419 (rest of the text stays in your current font). In the end, you see ๐Ÿ™. That’s why, no matter which font you use, Emoji always look the same:

Variation selector-16

Not all Emoji started their life straight in Emoji code block. In fact, pictograms existed in fonts and Unicode at least since 1993. Look in Miscellaneous Symbols U+2600-26FF and Dingbats U+2700-27FF:

These glyphs are as normal as any other letters we use: they are single-codepoint, black-and-white, and many fonts have them included. For example, here are all the differnt fonts on my machine that have their own version of ✂︎ (U+2702 BLACK SCISSORS):

Guess what? When Apple Color Emoji was created, it had its own version of the same U+2702 codepoint that looked like this:

Now for the tricky part. How does OS knows when to render ✂︎ and when ✂️, if both of them have the same codepoint and not only Apple Color Emoji has it, but also many other higher-priority traditional fonts?

Meet U+FE0F, also known as VARIATION SELECTOR-16. It’s a hint to the text renderer to switch to an emoji font.

U+2702 — ✂︎
U+2702 U+FE0F — ✂️

U+2697 – ⚗︎
U+2697 U+FE0F – ⚗️

U+26A0 – ⚛︎
U+26A0 U+FE0F – ⚛️

U+2618 – ☘︎
U+2618 U+FE0F – ☘️

Simple, elegant, and no need to allocate new codepoints while the old ones are already there. After all, things like ☠︎ and ☠️ have the same meaning, only the presentation is different.

Grapheme clusters

Here we encounter another problem — our emoji are now not a single codepoint, but two. This means we need a way to define character boundaries.

Meet Grapheme Clusters. Grapheme cluster is a sequence of codepoints that is considered a single human-perceived glyph.

Grapheme Clusters were not invented just for emoji, they apply to normal alphabets too. “Ü” is a single grapheme cluster, even though it’s composed of two codepoints: U+0055 UPPER-CASE U followed by U+0308 COMBINING DIAERESIS.

Grapheme clusters create many complications for programmers. You can’t just do substring(0, 10) to take the first 10 characters—you might split an emoji in half (or an acute, so don’t do it anyway)!

Reversing a string is tricky, too—while U+263A U+FE0F makes sense, U+FE0F U+263A does not.

Finally, you can’t just call .length on a string. Well, you can, but the result will surprise you. If you a developer, try this "๐Ÿคฆ๐Ÿผ‍♂️".length in your browser’s console.

A tip for programmers: if you are working with text, get a library that is grapheme clusters-aware. For C, C++m and JVM that would be ICU, Swift does the right thing out-of-the-box, for others, see for yourself.

Grapheme clusters awareness month, anyone? Graphemes don’t want to be split! Oh, who am I kidding? for (int i = 0; i < str.length; ++i) str[i] go brrr!

Oh, by the way, did I mentioned that this: ลฒ̷̡̡̨̫͍̟̯̣͎͓̘̱̖̱̣͈͍̫͖̮̫̹̟̣͉̦̬̬͈͈͔͙͕̩̬̐̏̌̉́̾͑̒͌͊͗́̾̈̈́̆̅̉͌̋̇͆̚̚̚͠ͅ is a single grapheme cluster, too? Its length is 65, and it shouldn’t ever be split in half. Sleep tight ๐Ÿ›Œ :)

Skin tone modifier

Most human Emoji depict an abstract yellow person. When skin tone was added in 2015, instead of adding a new codepoint for each emoji and skin tone combination, only five new codepoints were added: ๐Ÿป๐Ÿผ๐Ÿฝ๐Ÿพ๐Ÿฟ U+1F3FB..U+1F3FF.

These are not supposed to be used on their own but to be appended to the existing emoji. Together they form a ligature: ๐Ÿ‘‹ (U+1F44B WAVING HAND SIGN) directly followed by ๐Ÿฝ (U+1F3FD MEDIUM SKIN TONE MODIFIER) becomes ๐Ÿ‘‹๐Ÿฝ.

๐Ÿ‘‹๐Ÿฝ does not have its own codepoint (it’s a sequence of two: U+1F44B U+1F3FD), but it has its own unique look. With just five modifiers, ~280 human emojis got turned into 1680 variations. Here’re some dancers:

๐Ÿ•บ๐Ÿ•บ๐Ÿป๐Ÿ•บ๐Ÿผ๐Ÿ•บ๐Ÿฝ๐Ÿ•บ๐Ÿพ๐Ÿ•บ๐Ÿฟ

Zero-width Joiner

Let’s say your friend just sent you a picture of an apple she is growing in her garden. You need to reply—how? You might send a ๐Ÿ‘ฉ WOMAN EMOJI (U+1F469), followed by a ๐ŸŒพ SHEAF OF RICE (U+1F33E). If you put the two together: ๐Ÿ‘ฉ๐ŸŒพ, nothing happens. It’s just two separate emoji.

But! If you add U+200D in between, magic happens: they turn into the one ๐Ÿ‘ฉ‍๐ŸŒพ woman farmer.

U+200D is called ZERO-WIDTH JOINER, or ZWJ for short. It works similarly to what we saw with skin tone, but this time you can join two self-sufficient emoji into one. Not all combinations work, but many do, sometimes in surprising ways!

Some examples:

๐Ÿ‘ฉ + ✈️ → ๐Ÿ‘ฉ‍✈️
๐Ÿ‘จ + ๐Ÿ’ป → ๐Ÿ‘จ‍๐Ÿ’ป
๐Ÿ‘ฐ + ♂️ → ๐Ÿ‘ฐ‍♂️
๐Ÿป + ❄️ → ๐Ÿป‍❄️
๐Ÿด + ☠️ → ๐Ÿด‍☠️
๐Ÿณ️ + ๐ŸŒˆ → ๐Ÿณ️‍๐ŸŒˆ

One weird inconsistency I’ve noticed is that hair color is done via ZWJ, while skin tone is just modifier emoji with no joiner. Why? Seriously, I am asking you: why? I have no clue.

๐Ÿ‘จ + ๐Ÿฟ U+1F3FF → ๐Ÿ‘จ๐Ÿฟ
๐Ÿ‘จ + ZWJ + ๐Ÿฆฐ → ๐Ÿ‘จ‍๐Ÿฆฐ

Unfortunately, some emoji are NOT implemented as combinations with ZWJ. I consider those missing opportunities:

๐Ÿ‘จ + ๐Ÿฆท ≠ ๐Ÿง›
๐Ÿ‘จ + ๐Ÿ’€ ≠ ๐ŸงŸ
๐Ÿ‘ฉ + ๐Ÿ” ≠ ๐Ÿ•ต️‍♀️
๐Ÿ‘ + ๐Ÿ‘ ≠ ๐Ÿ‘€
๐Ÿ’„ + ๐Ÿ‘„ ≠ ๐Ÿ’‹
๐ŸŒ‚ + ๐ŸŒง ≠ ☔️
๐Ÿด + ๐ŸŒˆ ≠ ๐Ÿฆ„
๐Ÿš + ๐ŸŸ ≠ ๐Ÿฃ
๐Ÿˆ + ๐Ÿฆ“ ≠ ๐Ÿ…
๐Ÿฆต + ๐Ÿฆต + ๐Ÿ’ช + ๐Ÿ’ช + ๐Ÿ‘‚ + ๐Ÿ‘‚ + ๐Ÿ‘ƒ + ๐Ÿ‘… + ๐Ÿ‘€ + ๐Ÿง  ≠ ๐Ÿง

How do you type ZWJ? You don’t. But you can copy it from here: “”. Note: this is a special character, so expect it to behave weird. It’s invisible, too. But it’s there.

Another big area where ZWJ shines is families and relationships configuration. A short story to illustrate:

๐Ÿ‘จ๐Ÿป + ๐Ÿค + ๐Ÿ‘จ๐Ÿผ →  ๐Ÿ‘จ๐Ÿป‍๐Ÿค‍๐Ÿ‘จ๐Ÿผ
๐Ÿ‘จ + ❤️ + ๐Ÿ‘จ → ๐Ÿ‘จ‍❤️‍๐Ÿ‘จ
๐Ÿ‘จ + ❤️ + ๐Ÿ’‹ + ๐Ÿ‘จ → ๐Ÿ‘จ‍❤️‍๐Ÿ’‹‍๐Ÿ‘จ
๐Ÿ‘จ + ๐Ÿ‘จ + ๐Ÿ‘ง → ๐Ÿ‘จ‍๐Ÿ‘จ‍๐Ÿ‘ง
๐Ÿ‘จ + ๐Ÿ‘จ + ๐Ÿ‘ง + ๐Ÿ‘ง → ๐Ÿ‘จ‍๐Ÿ‘จ‍๐Ÿ‘ง‍๐Ÿ‘ง

Flags

Country flags are part of the Unicode standard, but for some reason are not implemented on Windows. If you are reading this in a browser from Windows—I am sorry!

Flags don’t have dedicated codepoints. Instead, they are two-letter ligatures.

๐Ÿ‡บ + ๐Ÿ‡ณ = ๐Ÿ‡บ๐Ÿ‡ณ
๐Ÿ‡ท + ๐Ÿ‡บ = ๐Ÿ‡ท๐Ÿ‡บ
๐Ÿ‡ฎ + ๐Ÿ‡ธ = ๐Ÿ‡ฎ๐Ÿ‡ธ
๐Ÿ‡ฟ + ๐Ÿ‡ฆ = ๐Ÿ‡ฟ๐Ÿ‡ฆ
๐Ÿ‡ฏ + ๐Ÿ‡ต = ๐Ÿ‡ฏ๐Ÿ‡ต

They don’t use real letters, though. Instead, the “regional indicator symbol letter” alphabet is used (U+1F1E6..1F1FF). These letters are not used for anything but composing flags.

What happens if you put together two random letters? Not much: ๐Ÿ‡ฝ๐Ÿ‡พ (except that text editing starts to behave strange).

If you want to experiment, feel free to copy and combine from this alphabet: ๐Ÿ‡ฆ ๐Ÿ‡ง ๐Ÿ‡จ ๐Ÿ‡ฉ ๐Ÿ‡ช ๐Ÿ‡ซ ๐Ÿ‡ฌ ๐Ÿ‡ญ ๐Ÿ‡ฎ ๐Ÿ‡ฏ ๐Ÿ‡ฐ ๐Ÿ‡ฑ ๐Ÿ‡ฒ ๐Ÿ‡ณ ๐Ÿ‡ด ๐Ÿ‡ต ๐Ÿ‡ถ ๐Ÿ‡ท ๐Ÿ‡ธ ๐Ÿ‡น ๐Ÿ‡บ ๐Ÿ‡ป ๐Ÿ‡ผ ๐Ÿ‡ฝ ๐Ÿ‡พ ๐Ÿ‡ฟ. There are 258 valid two-letter combinations. Can you find them all?

A funny side-effect of being two-letter ligature: ''.join(reversed('๐Ÿ‡บ๐Ÿ‡ฆ')) => '๐Ÿ‡ฆ๐Ÿ‡บ'

Tag Sequences

Two-letter ligatures are cool, but don’t you want to be cooler? How about 32-letter ligatures? Meet tag sequences.

Tag sequence is a sequence of normal emoji, followed by another flavor of Latin letters (U+E0020..E007E), terminated with U+E007F CANCEL TAG.

Currently they are used for these three flags only: England, Scotland and Wales:

๐Ÿด + gbeng + E007F = ๐Ÿด๓ ง๓ ข๓ ฅ๓ ฎ๓ ง๓ ฟ
๐Ÿด + gbsct + E007F = ๐Ÿด๓ ง๓ ข๓ ณ๓ ฃ๓ ด๓ ฟ
๐Ÿด + gbwls + E007F = ๐Ÿด๓ ง๓ ข๓ ท๓ ฌ๓ ณ๓ ฟ

Keycaps

Not super-exciting, but needed for completeness: keycap sequences use yet another convention.

It goes like this: take a digit, * or #, turn it into emoji with U+FE0F, wrap into a square with U+20E3 COMBINING ENCLOSING KEYCAP:

* + FE0F + 20E3 = *️⃣

In total there are only twelve of them:

#️⃣ *️⃣ 0️⃣ 1️⃣ 2️⃣ 3️⃣ 4️⃣ 5️⃣ 6️⃣ 7️⃣ 8️⃣ 9️⃣

Unicode updates

Unicode is updated every year, and emoji are a major part of each release. E.g. in Unicode 13 (March 2020), 55 new Emoji were added.

At the moment of writing neither the latest macOS (11.2.3) nor iOS (14.4.1) support emoji from Unicode 13 like

๐Ÿ˜ฎ‍๐Ÿ’จ, ❤️‍๐Ÿ”ฅ, ๐Ÿง”‍♀ or ๐Ÿ‘จ๐Ÿป‍❤️‍๐Ÿ’‹‍๐Ÿ‘จ๐Ÿผ

For future generations, this is what I see in March 2021:

But, thanks to the magic of ZWJ, I can still figure out what’s going on, just not in the most optimal way.

Conclusion

To sum up, these are seven ways emoji can be encoded:

  1. A single codepoint ๐Ÿง› U+1F9DB
  2. Single codepoint + variation selector-16 ☹︎ U+2639 + U+FE0F = ☹️
  3. Skin tone modifier ๐Ÿคต U+1F935 + U+1F3FD = ๐Ÿคต๐Ÿฝ
  4. Zero-width joiner sequence ๐Ÿ‘จ + ZWJ + ๐Ÿญ = ๐Ÿ‘จ‍๐Ÿญ
  5. Flags ๐Ÿ‡ฆ + ๐Ÿ‡ฑ = ๐Ÿ‡ฆ๐Ÿ‡ฑ
  6. Tag sequences ๐Ÿด + gbsct + U+E007F = ๐Ÿด๓ ง๓ ข๓ ณ๓ ฃ๓ ด๓ ฟ
  7. Keycap sequences * + U+FE0F + U+20E3 = *️⃣

Techniques from 1-4 can be combined to construct a pretty complex message:

  U+1F6B5 ๐Ÿšต Person Mountain Biking
+ U+1F3FB Light Skin Tone
+  U+200D ZWJ
+  U+2640 ♀️Female Sign
+  U+FE0F Variation selector-16
= ๐Ÿšต๐Ÿป‍♀️ Woman Mountain Biking: Light Skin Tone

If you are a programmer, remember to always use the ICU library to:

  • extract a substring,
  • measure string length,
  • reverse a string.

The keyword to google is “Grapheme Cluster”. It applies to emoji, to diacritics in Western languages, to Indic and Korean scripts, so please be aware.

That’s all I have. I hope the deeper understanding of how emoji work under the hood will help you in your work… Nah, just kidding. Hope you enjoyed it, though ✌️

Hi!

I’m Nikita. Here I write about programming and UI design Subscribe

I also create open-source stuff: Fira Code, AnyBar, DataScript and Rum. If you like what I do and want to get early access to my articles (along with other benefits), you should support me on Patreon.



from Hacker News https://ift.tt/2QrGAba

No comments:

Post a Comment

Note: Only a member of this blog may post a comment.