🔧 Interactive Tools

Emoji Sequence Analyzer: Decode ZWJ, Skin Tones, and Keycaps

What Is an Emoji Sequence?

Many emojis are not single characters — they are sequences of multiple Unicode code points that combine to form one visible glyph. When you paste 👩‍💻 into a text editor, what looks like one emoji is actually three separate code points joined together. Understanding this structure is essential for developers, designers, and anyone curious about how emoji actually work.

The EmojiFYI Sequence Analyzer takes any emoji or emoji sequence and breaks it apart, showing you each component code point, its name, and the type of sequence being used.

Types of Emoji Sequences

ZWJ Sequences

ZWJ stands for Zero Width JoinerZero Width Joiner (ZWJ)
อักขระ Unicode ที่มองไม่เห็น (U+200D) ใช้เพื่อเชื่อมอิโมจิหลายตัวเข้าเป็นอิโมจิรวม เช่น การรวมคนและวัตถุเป็นอิโมจิอาชีพ
(U+200D). It is an invisible character that tells rendering engines to combine the emojis on either side of it into a single glyph.

Example: 👩‍💻 Woman Technologist is composed of: 1. 👩 Woman (U+1F469) 2. U+200D (Zero Width Joiner) 3. 💻 Laptop (U+1F4BB)

The ZWJ signals that these should be fused into a single image. On platforms that support it, you see 👩‍💻. On platforms that do not, you see the three components side by side: 👩💻.

More complex ZWJ sequences chain multiple emojis together:

👨‍👩‍👧‍👦 Family: Man, Woman, Girl, Boy is built from: - 👨 Man + ZWJ + 👩 Woman + ZWJ + 👧 Girl + ZWJ + 👦 Boy

That is seven code points producing one emoji.

Skin Tone Modifier Sequences

The Unicode Standard defines five skin tone modifiers (based on the Fitzpatrick scale):

Modifier Code Point Sample
Light U+1F3FB 👍🏻
Medium-Light U+1F3FC 👍🏼
Medium U+1F3FD 👍🏽
Medium-Dark U+1F3FE 👍🏾
Dark U+1F3FF 👍🏿

When you pick a skin tone for 👍 Thumbs Up, the result is a two-code-point sequence: the base emoji followed immediately by a modifier. The Sequence Analyzer shows both components with their code points.

Some ZWJ sequences combine skin tones on multiple people. 👫🏽 Couple holding hands with medium skin tone uses skin tone modifiers on both figures inside the ZWJ chain.

Keycap Sequences

Keycap emojis like 1️⃣ 2️⃣ #️⃣ *️⃣ are three-code-point sequences:

  1. The base character (a digit, #, or *)
  2. U+FE0F (Variation Selector-16, which signals emoji presentation)
  3. U+20E3 (Combining Enclosing Keycap)

For example, 1️⃣ is: - U+0031 (Digit One: 1) - U+FE0F (Variation Selector-16) - U+20E3 (Combining Enclosing Keycap)

This is why keycap emojis sometimes appear as plain text digits in environments that do not support full emoji rendering — the base character is just the number.

Flag Sequences

Country flag emojis (🇺🇸, 🇯🇵, 🇰🇷) use Regional IndicatorRegional Indicator (RI)
ตัวอักษร Unicode คู่ (U+1F1E6 ถึง U+1F1FF) ที่เมื่อรวมกันตามรหัส ISO 3166-1 alpha-2 จะสร้างอิโมจิธงชาติ
Symbols
. Each flag is two code points: one for each letter of the ISO 3166-1 alpha-2 country code.

🇺🇸 (United States) is: - 🇺 Regional Indicator U (U+1F1FA) - 🇸 Regional Indicator S (U+1F1F8)

The Sequence Analyzer identifies the country code and tells you which country the flag represents.

Subdivision flags (🏴󠁧󠁢󠁥󠁮󠁧󠁿 England) use tag sequences — a different, more complex mechanism involving invisible tag characters (U+E0000 range).

How to Use the Sequence Analyzer

Step 1: Open the Tool

Navigate to /tools/sequence-analyzer/.

Step 2: Paste or Type an Emoji

Click the input field and paste an emoji. You can paste a single emoji, a ZWJ sequence, or even a string containing multiple emojis — the analyzer processes each one.

Good sources for complex emoji sequences to analyze: - Copy a family emoji (👨‍👩‍👦) from any messaging app - Copy a profession emoji (🧑‍🚀 Astronaut, 👩‍🎤 Woman Singer) - Copy a couple emoji (💑, 👫) - Type a keycap: 0️⃣ 1️⃣ #️⃣

Step 3: Read the Breakdown

The analyzer displays a table showing:

  • Position — the order of each code point in the sequence
  • Code Point — the hexadecimal Unicode value (e.g., U+1F469)
  • Character — the rendered glyph or description for invisible characters
  • Name — the official Unicode name
  • Type — whether it is a base emoji, ZWJ, modifier, variation selectorVariation Selector (VS)
    อักขระ Unicode (VS-15 U+FE0E และ VS-16 U+FE0F) ที่กำหนดว่าอักขระจะแสดงผลเป็นข้อความ (สีเดียว) หรืออิโมจิ (มีสี)
    , or other component

For ZWJ sequences, the tool also names the full sequence (e.g., "Woman Technologist") and links to the emoji detail page.

Step 4: Explore Component Emojis

Clicking any component in the breakdown opens its own emoji detail page. This is useful for understanding which base emojis combine to form a ZWJ sequence, and whether those bases are available as standalone emojis on all platforms.

Practical Uses

For Developers

  • Verify that a string contains exactly the code points you expect before storing it in a database
  • Debug rendering issues where an emoji displays as multiple separate characters
  • Understand why emoji.length in JavaScript returns unexpected values for ZWJ sequences (each code point counts separately in UTF-16UTF-16
    การเข้ารหัส Unicode แบบความกว้างผันแปร ใช้ 2 หรือ 4 ไบต์ต่ออักขระ ใช้ภายในโดย JavaScript, Java และ Windows
    )

For Content Creators

  • Confirm that a complex family emoji is a recognized Unicode sequence rather than a platform-specific hack
  • Check which component emojis make up a sequence before using it in a context where rendering support may be limited

For the Curious

  • Discover that 🏳️‍🌈 Rainbow Flag is built from 🏳️ White Flag + ZWJ + 🌈 Rainbow
  • See that 🧑‍🤝‍🧑 People Holding Hands chains together three emojis
  • Understand why 🇨🇳 and 🇹🇼 are just pairs of invisible regional indicator letters

Combining the Analyzer with Other Tools

The Sequence Analyzer works well alongside the Compare tool. After breaking down a ZWJ sequence into its parts, you can check each component in the Compare tool to see how platforms render the base emojis — giving insight into why the combined sequence might look different on Samsung versus Apple.

For a deeper look at ZWJ sequences in general, see the EmojiFYI glossary article on ZWJ Sequences.

เครื่องมือที่เกี่ยวข้อง

🔀 เปรียบเทียบแพลตฟอร์ม เปรียบเทียบแพลตฟอร์ม
เปรียบเทียบการแสดงผล emoji บน Apple, Google, Samsung, Microsoft และอื่นๆ ดูความแตกต่างด้านภาพแบบเคียงข้างกัน
🔍 ตัววิเคราะห์ลำดับ ตัววิเคราะห์ลำดับ
ถอดรหัสลำดับ ZWJ, ตัวปรับแต่งสีผิว, ลำดับ keycap และคู่ธงเป็นส่วนประกอบแต่ละชิ้น

คำในอภิธานศัพท์

Regional Indicator (RI) Regional Indicator (RI)
ตัวอักษร Unicode คู่ (U+1F1E6 ถึง U+1F1FF) ที่เมื่อรวมกันตามรหัส ISO 3166-1 alpha-2 จะสร้างอิโมจิธงชาติ
UTF-16 UTF-16
การเข้ารหัส Unicode แบบความกว้างผันแปร ใช้ 2 หรือ 4 ไบต์ต่ออักขระ ใช้ภายในโดย JavaScript, Java และ Windows
Variation Selector (VS) Variation Selector (VS)
อักขระ Unicode (VS-15 U+FE0E และ VS-16 U+FE0F) ที่กำหนดว่าอักขระจะแสดงผลเป็นข้อความ (สีเดียว) หรืออิโมจิ (มีสี)
Zero Width Joiner (ZWJ) Zero Width Joiner (ZWJ)
อักขระ Unicode ที่มองไม่เห็น (U+200D) ใช้เพื่อเชื่อมอิโมจิหลายตัวเข้าเป็นอิโมจิรวม เช่น การรวมคนและวัตถุเป็นอิโมจิอาชีพ
การแสดงผลแบบอิโมจิ การแสดงผลแบบอิโมจิ
การแสดงผลค่าเริ่มต้นของอักขระเป็นกลิฟอิโมจิสี ไม่ว่าจะโดยธรรมชาติหรือเมื่อถูกกระตุ้นด้วย Variation Selector-16
โค้ดพอยท์ โค้ดพอยท์
ค่าตัวเลขเฉพาะที่กำหนดให้กับอักขระแต่ละตัวในมาตรฐาน Unicode เขียนในรูปแบบ U+XXXX (เช่น U+1F600 สำหรับ 😀)
ตัวปรับโทนผิว ตัวปรับโทนผิว
อักขระตัวปรับแต่ง Unicode ห้าตัวที่อิงตามสเกล Fitzpatrick ใช้เปลี่ยนสีผิวของอิโมจิมนุษย์ (U+1F3FB ถึง U+1F3FF)
มาตรฐาน Unicode มาตรฐาน Unicode
ระบบเข้ารหัสอักขระฉบับสมบูรณ์ที่ดูแลโดย Unicode Consortium กำหนดอักขระ คุณสมบัติ อัลกอริทึม และรูปแบบการเข้ารหัส
ยูนิโค้ด ยูนิโค้ด
มาตรฐานการเข้ารหัสอักขระสากลที่กำหนดหมายเลขเฉพาะให้กับอักขระทุกตัวในทุกระบบการเขียนและชุดสัญลักษณ์ รวมถึงอิโมจิ
อิโมจิ อิโมจิ
คำภาษาญี่ปุ่น (絵文字) แปลว่า 'อักขระภาพ' — สัญลักษณ์กราฟิกขนาดเล็กที่ใช้ในการสื่อสารดิจิทัลเพื่อแสดงความคิด อารมณ์ และวัตถุ
อิโมจิซีเควนซ์ อิโมจิซีเควนซ์
ชุดโค้ดพอยท์ Unicode ที่เรียงลำดับตั้งแต่หนึ่งตัวขึ้นไป ซึ่งรวมกันแล้วแสดงถึงอักขระอิโมจิหนึ่งตัว

บทความที่เกี่ยวข้อง