emoji-data 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 821b2d27cfa1d6ea300d972af8f591b31ee55746
4
+ data.tar.gz: 9a1d2d89acbd06293424cfe444fa4363bd2903f5
5
+ SHA512:
6
+ metadata.gz: c6deda09eae81ae85c2bbb2ef49384611c37696a4e9c6ebb4ce6e94d37f077f4ea0260517c99977ecb125a7ccba86732f0e01a5f6fae600f5ae657e99f431618
7
+ data.tar.gz: 1f01f5758c74274d88e9fea766bbc70f8a56f2366dbe5c855a1d17e289a5ff2dc3cd2388567ab3c55a3f1756e537a371660c90b9ec22d3c4d670120ae7aa401a
@@ -0,0 +1,9 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
data/.rspec ADDED
@@ -0,0 +1,3 @@
1
+ --require spec_helper
2
+ --format documentation
3
+ --color
@@ -0,0 +1,3 @@
1
+ language: ruby
2
+ rvm:
3
+ - 2.3.0
data/Gemfile ADDED
@@ -0,0 +1,11 @@
1
+ source "https://rubygems.org"
2
+
3
+ # Specify your gem's dependencies in emoji-data.gemspec
4
+ gemspec
5
+
6
+ group :development do
7
+ gem "bundler", "~> 1.11", "< 2"
8
+ gem "rake", "~> 10.0"
9
+ gem "rspec", "~> 3.4"
10
+ gem "pry"
11
+ end
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2016 JuanitoFatas
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
@@ -0,0 +1,27 @@
1
+ # Emoji::Data
2
+
3
+ This repository provides Emoji data as JSON format. Generated by running:
4
+
5
+ ```
6
+ $ rake export_all_jsons
7
+ ```
8
+
9
+ ## [emoji-data.json](output/emoji-data.json)
10
+
11
+ From [www.unicode.org/Public/emoji/2.0/emoji-data.txt](http://www.unicode.org/Public/emoji/2.0/emoji-data.txt).
12
+
13
+ ## [emoji-data.json](output/emoji-sequences.json)
14
+
15
+ From [www.unicode.org/Public/emoji/2.0/emoji-sequences.txt](http://www.unicode.org/Public/emoji/2.0/emoji-sequences.txt).
16
+
17
+ ## [emoji-zwj-sequences.json](output/emoji-zwj-sequences.json)
18
+
19
+ From [www.unicode.org/Public/emoji/2.0/emoji-zwj-sequences.txt](http://www.unicode.org/Public/emoji/2.0/emoji-zwj-sequences.txt).
20
+
21
+ ## [emoji-utr-51.json](output/emoji-utr-51.json)
22
+
23
+ All of above merged into one json.
24
+
25
+ ## License
26
+
27
+ The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
@@ -0,0 +1,16 @@
1
+ require "bundler/gem_tasks"
2
+ require "rspec/core/rake_task"
3
+
4
+ RSpec::Core::RakeTask.new(:spec)
5
+
6
+ task default: :spec
7
+
8
+ desc "Export all json files."
9
+ task :export_all_jsons do
10
+ FileUtils.mkdir_p("output") if !File.exist?("output")
11
+ require "emoji/data"
12
+ IO.write "output/emoji-data.json", Emoji::Data.emoji_data_json
13
+ IO.write "output/emoji-sequences.json", Emoji::Data.emoji_sequences_json
14
+ IO.write "output/emoji-zwj-sequences.json", Emoji::Data.emoji_zwj_sequences_json
15
+ IO.write "output/emoji-utr-51.json", Emoji::Data.emoji_utr_51_json
16
+ end
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "emoji/data"
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ # (If you use this, don't forget to add pry to your Gemfile!)
10
+ # require "pry"
11
+ # Pry.start
12
+
13
+ require "irb"
14
+ IRB.start
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+ set -vx
5
+
6
+ bundle install
7
+
8
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,21 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path("../lib", __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require "emoji/data/version"
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "emoji-data"
8
+ spec.version = Emoji::Data::VERSION
9
+ spec.authors = ["JuanitoFatas"]
10
+ spec.email = ["katehuang0320@gmail.com"]
11
+
12
+ spec.summary = %q{Emoji JSON Data for UTR #51}
13
+ spec.description = spec.summary
14
+ spec.homepage = "https://github.com/jollygoodcode/emoji-data"
15
+ spec.license = "MIT"
16
+
17
+ spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
18
+ spec.bindir = "exe"
19
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
20
+ spec.require_paths = ["lib"]
21
+ end
@@ -0,0 +1,277 @@
1
+ # Emoji Data for UTR #51
2
+ #
3
+ # File: emoji-data.txt
4
+ # Version: 2.0
5
+ # Date: 2015-11-11
6
+ #
7
+ # Copyright (c) 2015 Unicode, Inc.
8
+ # For terms of use, see http://www.unicode.org/terms_of_use.html
9
+ # For documentation and usage, see http://www.unicode.org/reports/tr51/
10
+ #
11
+
12
+ # Warning: the format has changed from Version 1.0
13
+ # Format:
14
+ # codepoint(s) ; property=Yes # [count] (character(s)) name
15
+
16
+ # ================================================
17
+
18
+ # All omitted code points have Emoji=No
19
+ # @missing: 0000..10FFFF ; Emoji ; No
20
+
21
+ 0023 ; Emoji # [1] (#️) NUMBER SIGN
22
+ 002A ; Emoji # [1] (*) ASTERISK
23
+ 0030..0039 ; Emoji # [10] (0️..9️) DIGIT ZERO..DIGIT NINE
24
+ 00A9 ; Emoji # [1] (©️) COPYRIGHT SIGN
25
+ 00AE ; Emoji # [1] (®️) REGISTERED SIGN
26
+ 203C ; Emoji # [1] (‼️) DOUBLE EXCLAMATION MARK
27
+ 2049 ; Emoji # [1] (⁉️) EXCLAMATION QUESTION MARK
28
+ 2122 ; Emoji # [1] (™️) TRADE MARK SIGN
29
+ 2139 ; Emoji # [1] (ℹ️) INFORMATION SOURCE
30
+ 2194..2199 ; Emoji # [6] (↔️..↙️) LEFT RIGHT ARROW..SOUTH WEST ARROW
31
+ 21A9..21AA ; Emoji # [2] (↩️..↪️) LEFTWARDS ARROW WITH HOOK..RIGHTWARDS ARROW WITH HOOK
32
+ 231A..231B ; Emoji # [2] (⌚️..⌛️) WATCH..HOURGLASS
33
+ 2328 ; Emoji # [1] (⌨) KEYBOARD
34
+ 23CF ; Emoji # [1] (⏏) EJECT SYMBOL
35
+ 23E9..23F3 ; Emoji # [11] (⏩..⏳) BLACK RIGHT-POINTING DOUBLE TRIANGLE..HOURGLASS WITH FLOWING SAND
36
+ 23F8..23FA ; Emoji # [3] (⏸..⏺) DOUBLE VERTICAL BAR..BLACK CIRCLE FOR RECORD
37
+ 24C2 ; Emoji # [1] (Ⓜ️) CIRCLED LATIN CAPITAL LETTER M
38
+ 25AA..25AB ; Emoji # [2] (▪️..▫️) BLACK SMALL SQUARE..WHITE SMALL SQUARE
39
+ 25B6 ; Emoji # [1] (▶️) BLACK RIGHT-POINTING TRIANGLE
40
+ 25C0 ; Emoji # [1] (◀️) BLACK LEFT-POINTING TRIANGLE
41
+ 25FB..25FE ; Emoji # [4] (◻️..◾️) WHITE MEDIUM SQUARE..BLACK MEDIUM SMALL SQUARE
42
+ 2600..2604 ; Emoji # [5] (☀️..☄) BLACK SUN WITH RAYS..COMET
43
+ 260E ; Emoji # [1] (☎️) BLACK TELEPHONE
44
+ 2611 ; Emoji # [1] (☑️) BALLOT BOX WITH CHECK
45
+ 2614..2615 ; Emoji # [2] (☔️..☕️) UMBRELLA WITH RAIN DROPS..HOT BEVERAGE
46
+ 2618 ; Emoji # [1] (☘) SHAMROCK
47
+ 261D ; Emoji # [1] (☝️) WHITE UP POINTING INDEX
48
+ 2620 ; Emoji # [1] (☠) SKULL AND CROSSBONES
49
+ 2622..2623 ; Emoji # [2] (☢..☣) RADIOACTIVE SIGN..BIOHAZARD SIGN
50
+ 2626 ; Emoji # [1] (☦) ORTHODOX CROSS
51
+ 262A ; Emoji # [1] (☪) STAR AND CRESCENT
52
+ 262E..262F ; Emoji # [2] (☮..☯) PEACE SYMBOL..YIN YANG
53
+ 2638..263A ; Emoji # [3] (☸..☺️) WHEEL OF DHARMA..WHITE SMILING FACE
54
+ 2648..2653 ; Emoji # [12] (♈️..♓️) ARIES..PISCES
55
+ 2660 ; Emoji # [1] (♠️) BLACK SPADE SUIT
56
+ 2663 ; Emoji # [1] (♣️) BLACK CLUB SUIT
57
+ 2665..2666 ; Emoji # [2] (♥️..♦️) BLACK HEART SUIT..BLACK DIAMOND SUIT
58
+ 2668 ; Emoji # [1] (♨️) HOT SPRINGS
59
+ 267B ; Emoji # [1] (♻️) BLACK UNIVERSAL RECYCLING SYMBOL
60
+ 267F ; Emoji # [1] (♿️) WHEELCHAIR SYMBOL
61
+ 2692..2694 ; Emoji # [3] (⚒..⚔) HAMMER AND PICK..CROSSED SWORDS
62
+ 2696..2697 ; Emoji # [2] (⚖..⚗) SCALES..ALEMBIC
63
+ 2699 ; Emoji # [1] (⚙) GEAR
64
+ 269B..269C ; Emoji # [2] (⚛..⚜) ATOM SYMBOL..FLEUR-DE-LIS
65
+ 26A0..26A1 ; Emoji # [2] (⚠️..⚡️) WARNING SIGN..HIGH VOLTAGE SIGN
66
+ 26AA..26AB ; Emoji # [2] (⚪️..⚫️) MEDIUM WHITE CIRCLE..MEDIUM BLACK CIRCLE
67
+ 26B0..26B1 ; Emoji # [2] (⚰..⚱) COFFIN..FUNERAL URN
68
+ 26BD..26BE ; Emoji # [2] (⚽️..⚾️) SOCCER BALL..BASEBALL
69
+ 26C4..26C5 ; Emoji # [2] (⛄️..⛅️) SNOWMAN WITHOUT SNOW..SUN BEHIND CLOUD
70
+ 26C8 ; Emoji # [1] (⛈) THUNDER CLOUD AND RAIN
71
+ 26CE..26CF ; Emoji # [2] (⛎..⛏) OPHIUCHUS..PICK
72
+ 26D1 ; Emoji # [1] (⛑) HELMET WITH WHITE CROSS
73
+ 26D3..26D4 ; Emoji # [2] (⛓..⛔️) CHAINS..NO ENTRY
74
+ 26E9..26EA ; Emoji # [2] (⛩..⛪️) SHINTO SHRINE..CHURCH
75
+ 26F0..26F5 ; Emoji # [6] (⛰..⛵️) MOUNTAIN..SAILBOAT
76
+ 26F7..26FA ; Emoji # [4] (⛷..⛺️) SKIER..TENT
77
+ 26FD ; Emoji # [1] (⛽️) FUEL PUMP
78
+ 2702 ; Emoji # [1] (✂️) BLACK SCISSORS
79
+ 2705 ; Emoji # [1] (✅) WHITE HEAVY CHECK MARK
80
+ 2708..270D ; Emoji # [6] (✈️..✍) AIRPLANE..WRITING HAND
81
+ 270F ; Emoji # [1] (✏️) PENCIL
82
+ 2712 ; Emoji # [1] (✒️) BLACK NIB
83
+ 2714 ; Emoji # [1] (✔️) HEAVY CHECK MARK
84
+ 2716 ; Emoji # [1] (✖️) HEAVY MULTIPLICATION X
85
+ 271D ; Emoji # [1] (✝) LATIN CROSS
86
+ 2721 ; Emoji # [1] (✡) STAR OF DAVID
87
+ 2728 ; Emoji # [1] (✨) SPARKLES
88
+ 2733..2734 ; Emoji # [2] (✳️..✴️) EIGHT SPOKED ASTERISK..EIGHT POINTED BLACK STAR
89
+ 2744 ; Emoji # [1] (❄️) SNOWFLAKE
90
+ 2747 ; Emoji # [1] (❇️) SPARKLE
91
+ 274C ; Emoji # [1] (❌) CROSS MARK
92
+ 274E ; Emoji # [1] (❎) NEGATIVE SQUARED CROSS MARK
93
+ 2753..2755 ; Emoji # [3] (❓..❕) BLACK QUESTION MARK ORNAMENT..WHITE EXCLAMATION MARK ORNAMENT
94
+ 2757 ; Emoji # [1] (❗️) HEAVY EXCLAMATION MARK SYMBOL
95
+ 2763..2764 ; Emoji # [2] (❣..❤️) HEAVY HEART EXCLAMATION MARK ORNAMENT..HEAVY BLACK HEART
96
+ 2795..2797 ; Emoji # [3] (➕..➗) HEAVY PLUS SIGN..HEAVY DIVISION SIGN
97
+ 27A1 ; Emoji # [1] (➡️) BLACK RIGHTWARDS ARROW
98
+ 27B0 ; Emoji # [1] (➰) CURLY LOOP
99
+ 27BF ; Emoji # [1] (➿) DOUBLE CURLY LOOP
100
+ 2934..2935 ; Emoji # [2] (⤴️..⤵️) ARROW POINTING RIGHTWARDS THEN CURVING UPWARDS..ARROW POINTING RIGHTWARDS THEN CURVING DOWNWARDS
101
+ 2B05..2B07 ; Emoji # [3] (⬅️..⬇️) LEFTWARDS BLACK ARROW..DOWNWARDS BLACK ARROW
102
+ 2B1B..2B1C ; Emoji # [2] (⬛️..⬜️) BLACK LARGE SQUARE..WHITE LARGE SQUARE
103
+ 2B50 ; Emoji # [1] (⭐️) WHITE MEDIUM STAR
104
+ 2B55 ; Emoji # [1] (⭕️) HEAVY LARGE CIRCLE
105
+ 3030 ; Emoji # [1] (〰️) WAVY DASH
106
+ 303D ; Emoji # [1] (〽️) PART ALTERNATION MARK
107
+ 3297 ; Emoji # [1] (㊗️) CIRCLED IDEOGRAPH CONGRATULATION
108
+ 3299 ; Emoji # [1] (㊙️) CIRCLED IDEOGRAPH SECRET
109
+ 1F004 ; Emoji # [1] (🀄️) MAHJONG TILE RED DRAGON
110
+ 1F0CF ; Emoji # [1] (🃏) PLAYING CARD BLACK JOKER
111
+ 1F170..1F171 ; Emoji # [2] (🅰️..🅱️) NEGATIVE SQUARED LATIN CAPITAL LETTER A..NEGATIVE SQUARED LATIN CAPITAL LETTER B
112
+ 1F17E..1F17F ; Emoji # [2] (🅾️..🅿️) NEGATIVE SQUARED LATIN CAPITAL LETTER O..NEGATIVE SQUARED LATIN CAPITAL LETTER P
113
+ 1F18E ; Emoji # [1] (🆎) NEGATIVE SQUARED AB
114
+ 1F191..1F19A ; Emoji # [10] (🆑..🆚) SQUARED CL..SQUARED VS
115
+ 1F1E6..1F1FF ; Emoji # [26] (🇦..🇿) REGIONAL INDICATOR SYMBOL LETTER A..REGIONAL INDICATOR SYMBOL LETTER Z
116
+ 1F201..1F202 ; Emoji # [2] (🈁..🈂️) SQUARED KATAKANA KOKO..SQUARED KATAKANA SA
117
+ 1F21A ; Emoji # [1] (🈚️) SQUARED CJK UNIFIED IDEOGRAPH-7121
118
+ 1F22F ; Emoji # [1] (🈯️) SQUARED CJK UNIFIED IDEOGRAPH-6307
119
+ 1F232..1F23A ; Emoji # [9] (🈲..🈺) SQUARED CJK UNIFIED IDEOGRAPH-7981..SQUARED CJK UNIFIED IDEOGRAPH-55B6
120
+ 1F250..1F251 ; Emoji # [2] (🉐..🉑) CIRCLED IDEOGRAPH ADVANTAGE..CIRCLED IDEOGRAPH ACCEPT
121
+ 1F300..1F321 ; Emoji # [34] (🌀..🌡) CYCLONE..THERMOMETER
122
+ 1F324..1F393 ; Emoji # [112] (🌤..🎓) WHITE SUN WITH SMALL CLOUD..GRADUATION CAP
123
+ 1F396..1F397 ; Emoji # [2] (🎖..🎗) MILITARY MEDAL..REMINDER RIBBON
124
+ 1F399..1F39B ; Emoji # [3] (🎙..🎛) STUDIO MICROPHONE..CONTROL KNOBS
125
+ 1F39E..1F3F0 ; Emoji # [83] (🎞..🏰) FILM FRAMES..EUROPEAN CASTLE
126
+ 1F3F3..1F3F5 ; Emoji # [3] (🏳..🏵) WAVING WHITE FLAG..ROSETTE
127
+ 1F3F7..1F4FD ; Emoji # [263] (🏷..📽) LABEL..FILM PROJECTOR
128
+ 1F4FF..1F53D ; Emoji # [63] (📿..🔽) PRAYER BEADS..DOWN-POINTING SMALL RED TRIANGLE
129
+ 1F549..1F54E ; Emoji # [6] (🕉..🕎) OM SYMBOL..MENORAH WITH NINE BRANCHES
130
+ 1F550..1F567 ; Emoji # [24] (🕐..🕧) CLOCK FACE ONE OCLOCK..CLOCK FACE TWELVE-THIRTY
131
+ 1F56F..1F570 ; Emoji # [2] (🕯..🕰) CANDLE..MANTELPIECE CLOCK
132
+ 1F573..1F579 ; Emoji # [7] (🕳..🕹) HOLE..JOYSTICK
133
+ 1F587 ; Emoji # [1] (🖇) LINKED PAPERCLIPS
134
+ 1F58A..1F58D ; Emoji # [4] (🖊..🖍) LOWER LEFT BALLPOINT PEN..LOWER LEFT CRAYON
135
+ 1F590 ; Emoji # [1] (🖐) RAISED HAND WITH FINGERS SPLAYED
136
+ 1F595..1F596 ; Emoji # [2] (🖕..🖖) REVERSED HAND WITH MIDDLE FINGER EXTENDED..RAISED HAND WITH PART BETWEEN MIDDLE AND RING FINGERS
137
+ 1F5A5 ; Emoji # [1] (🖥) DESKTOP COMPUTER
138
+ 1F5A8 ; Emoji # [1] (🖨) PRINTER
139
+ 1F5B1..1F5B2 ; Emoji # [2] (🖱..🖲) THREE BUTTON MOUSE..TRACKBALL
140
+ 1F5BC ; Emoji # [1] (🖼) FRAME WITH PICTURE
141
+ 1F5C2..1F5C4 ; Emoji # [3] (🗂..🗄) CARD INDEX DIVIDERS..FILE CABINET
142
+ 1F5D1..1F5D3 ; Emoji # [3] (🗑..🗓) WASTEBASKET..SPIRAL CALENDAR PAD
143
+ 1F5DC..1F5DE ; Emoji # [3] (🗜..🗞) COMPRESSION..ROLLED-UP NEWSPAPER
144
+ 1F5E1 ; Emoji # [1] (🗡) DAGGER KNIFE
145
+ 1F5E3 ; Emoji # [1] (🗣) SPEAKING HEAD IN SILHOUETTE
146
+ 1F5E8 ; Emoji # [1] (🗨) LEFT SPEECH BUBBLE
147
+ 1F5EF ; Emoji # [1] (🗯) RIGHT ANGER BUBBLE
148
+ 1F5F3 ; Emoji # [1] (🗳) BALLOT BOX WITH BALLOT
149
+ 1F5FA..1F64F ; Emoji # [86] (🗺..🙏) WORLD MAP..PERSON WITH FOLDED HANDS
150
+ 1F680..1F6C5 ; Emoji # [70] (🚀..🛅) ROCKET..LEFT LUGGAGE
151
+ 1F6CB..1F6D0 ; Emoji # [6] (🛋..🛐) COUCH AND LAMP..PLACE OF WORSHIP
152
+ 1F6E0..1F6E5 ; Emoji # [6] (🛠..🛥) HAMMER AND WRENCH..MOTOR BOAT
153
+ 1F6E9 ; Emoji # [1] (🛩) SMALL AIRPLANE
154
+ 1F6EB..1F6EC ; Emoji # [2] (🛫..🛬) AIRPLANE DEPARTURE..AIRPLANE ARRIVING
155
+ 1F6F0 ; Emoji # [1] (🛰) SATELLITE
156
+ 1F6F3 ; Emoji # [1] (🛳) PASSENGER SHIP
157
+ 1F910..1F918 ; Emoji # [9] (🤐..🤘) ZIPPER-MOUTH FACE..SIGN OF THE HORNS
158
+ 1F980..1F984 ; Emoji # [5] (🦀..🦄) CRAB..UNICORN FACE
159
+ 1F9C0 ; Emoji # [1] (🧀) CHEESE WEDGE
160
+
161
+ # Total code points: 1051
162
+
163
+ # ================================================
164
+
165
+ # All omitted code points have Emoji_Presentation=No
166
+ # @missing: 0000..10FFFF ; Emoji_Presentation ; No
167
+
168
+ 231A..231B ; Emoji_Presentation # [2] (⌚️..⌛️) WATCH..HOURGLASS
169
+ 23E9..23EC ; Emoji_Presentation # [4] (⏩..⏬) BLACK RIGHT-POINTING DOUBLE TRIANGLE..BLACK DOWN-POINTING DOUBLE TRIANGLE
170
+ 23F0 ; Emoji_Presentation # [1] (⏰) ALARM CLOCK
171
+ 23F3 ; Emoji_Presentation # [1] (⏳) HOURGLASS WITH FLOWING SAND
172
+ 25FD..25FE ; Emoji_Presentation # [2] (◽️..◾️) WHITE MEDIUM SMALL SQUARE..BLACK MEDIUM SMALL SQUARE
173
+ 2614..2615 ; Emoji_Presentation # [2] (☔️..☕️) UMBRELLA WITH RAIN DROPS..HOT BEVERAGE
174
+ 2648..2653 ; Emoji_Presentation # [12] (♈️..♓️) ARIES..PISCES
175
+ 267F ; Emoji_Presentation # [1] (♿️) WHEELCHAIR SYMBOL
176
+ 2693 ; Emoji_Presentation # [1] (⚓️) ANCHOR
177
+ 26A1 ; Emoji_Presentation # [1] (⚡️) HIGH VOLTAGE SIGN
178
+ 26AA..26AB ; Emoji_Presentation # [2] (⚪️..⚫️) MEDIUM WHITE CIRCLE..MEDIUM BLACK CIRCLE
179
+ 26BD..26BE ; Emoji_Presentation # [2] (⚽️..⚾️) SOCCER BALL..BASEBALL
180
+ 26C4..26C5 ; Emoji_Presentation # [2] (⛄️..⛅️) SNOWMAN WITHOUT SNOW..SUN BEHIND CLOUD
181
+ 26CE ; Emoji_Presentation # [1] (⛎) OPHIUCHUS
182
+ 26D4 ; Emoji_Presentation # [1] (⛔️) NO ENTRY
183
+ 26EA ; Emoji_Presentation # [1] (⛪️) CHURCH
184
+ 26F2..26F3 ; Emoji_Presentation # [2] (⛲️..⛳️) FOUNTAIN..FLAG IN HOLE
185
+ 26F5 ; Emoji_Presentation # [1] (⛵️) SAILBOAT
186
+ 26FA ; Emoji_Presentation # [1] (⛺️) TENT
187
+ 26FD ; Emoji_Presentation # [1] (⛽️) FUEL PUMP
188
+ 2705 ; Emoji_Presentation # [1] (✅) WHITE HEAVY CHECK MARK
189
+ 270A..270B ; Emoji_Presentation # [2] (✊..✋) RAISED FIST..RAISED HAND
190
+ 2728 ; Emoji_Presentation # [1] (✨) SPARKLES
191
+ 274C ; Emoji_Presentation # [1] (❌) CROSS MARK
192
+ 274E ; Emoji_Presentation # [1] (❎) NEGATIVE SQUARED CROSS MARK
193
+ 2753..2755 ; Emoji_Presentation # [3] (❓..❕) BLACK QUESTION MARK ORNAMENT..WHITE EXCLAMATION MARK ORNAMENT
194
+ 2757 ; Emoji_Presentation # [1] (❗️) HEAVY EXCLAMATION MARK SYMBOL
195
+ 2795..2797 ; Emoji_Presentation # [3] (➕..➗) HEAVY PLUS SIGN..HEAVY DIVISION SIGN
196
+ 27B0 ; Emoji_Presentation # [1] (➰) CURLY LOOP
197
+ 27BF ; Emoji_Presentation # [1] (➿) DOUBLE CURLY LOOP
198
+ 2B1B..2B1C ; Emoji_Presentation # [2] (⬛️..⬜️) BLACK LARGE SQUARE..WHITE LARGE SQUARE
199
+ 2B50 ; Emoji_Presentation # [1] (⭐️) WHITE MEDIUM STAR
200
+ 2B55 ; Emoji_Presentation # [1] (⭕️) HEAVY LARGE CIRCLE
201
+ 1F004 ; Emoji_Presentation # [1] (🀄️) MAHJONG TILE RED DRAGON
202
+ 1F0CF ; Emoji_Presentation # [1] (🃏) PLAYING CARD BLACK JOKER
203
+ 1F18E ; Emoji_Presentation # [1] (🆎) NEGATIVE SQUARED AB
204
+ 1F191..1F19A ; Emoji_Presentation # [10] (🆑..🆚) SQUARED CL..SQUARED VS
205
+ 1F1E6..1F1FF ; Emoji_Presentation # [26] (🇦..🇿) REGIONAL INDICATOR SYMBOL LETTER A..REGIONAL INDICATOR SYMBOL LETTER Z
206
+ 1F201 ; Emoji_Presentation # [1] (🈁) SQUARED KATAKANA KOKO
207
+ 1F21A ; Emoji_Presentation # [1] (🈚️) SQUARED CJK UNIFIED IDEOGRAPH-7121
208
+ 1F22F ; Emoji_Presentation # [1] (🈯️) SQUARED CJK UNIFIED IDEOGRAPH-6307
209
+ 1F232..1F236 ; Emoji_Presentation # [5] (🈲..🈶) SQUARED CJK UNIFIED IDEOGRAPH-7981..SQUARED CJK UNIFIED IDEOGRAPH-6709
210
+ 1F238..1F23A ; Emoji_Presentation # [3] (🈸..🈺) SQUARED CJK UNIFIED IDEOGRAPH-7533..SQUARED CJK UNIFIED IDEOGRAPH-55B6
211
+ 1F250..1F251 ; Emoji_Presentation # [2] (🉐..🉑) CIRCLED IDEOGRAPH ADVANTAGE..CIRCLED IDEOGRAPH ACCEPT
212
+ 1F300..1F320 ; Emoji_Presentation # [33] (🌀..🌠) CYCLONE..SHOOTING STAR
213
+ 1F32D..1F335 ; Emoji_Presentation # [9] (🌭..🌵) HOT DOG..CACTUS
214
+ 1F337..1F37C ; Emoji_Presentation # [70] (🌷..🍼) TULIP..BABY BOTTLE
215
+ 1F37E..1F393 ; Emoji_Presentation # [22] (🍾..🎓) BOTTLE WITH POPPING CORK..GRADUATION CAP
216
+ 1F3A0..1F3CA ; Emoji_Presentation # [43] (🎠..🏊) CAROUSEL HORSE..SWIMMER
217
+ 1F3CF..1F3D3 ; Emoji_Presentation # [5] (🏏..🏓) CRICKET BAT AND BALL..TABLE TENNIS PADDLE AND BALL
218
+ 1F3E0..1F3F0 ; Emoji_Presentation # [17] (🏠..🏰) HOUSE BUILDING..EUROPEAN CASTLE
219
+ 1F3F4 ; Emoji_Presentation # [1] (🏴) WAVING BLACK FLAG
220
+ 1F3F8..1F43E ; Emoji_Presentation # [71] (🏸..🐾) BADMINTON RACQUET AND SHUTTLECOCK..PAW PRINTS
221
+ 1F440 ; Emoji_Presentation # [1] (👀) EYES
222
+ 1F442..1F4FC ; Emoji_Presentation # [187] (👂..📼) EAR..VIDEOCASSETTE
223
+ 1F4FF..1F53D ; Emoji_Presentation # [63] (📿..🔽) PRAYER BEADS..DOWN-POINTING SMALL RED TRIANGLE
224
+ 1F54B..1F54E ; Emoji_Presentation # [4] (🕋..🕎) KAABA..MENORAH WITH NINE BRANCHES
225
+ 1F550..1F567 ; Emoji_Presentation # [24] (🕐..🕧) CLOCK FACE ONE OCLOCK..CLOCK FACE TWELVE-THIRTY
226
+ 1F595..1F596 ; Emoji_Presentation # [2] (🖕..🖖) REVERSED HAND WITH MIDDLE FINGER EXTENDED..RAISED HAND WITH PART BETWEEN MIDDLE AND RING FINGERS
227
+ 1F5FB..1F64F ; Emoji_Presentation # [85] (🗻..🙏) MOUNT FUJI..PERSON WITH FOLDED HANDS
228
+ 1F680..1F6C5 ; Emoji_Presentation # [70] (🚀..🛅) ROCKET..LEFT LUGGAGE
229
+ 1F6CC ; Emoji_Presentation # [1] (🛌) SLEEPING ACCOMMODATION
230
+ 1F6D0 ; Emoji_Presentation # [1] (🛐) PLACE OF WORSHIP
231
+ 1F6EB..1F6EC ; Emoji_Presentation # [2] (🛫..🛬) AIRPLANE DEPARTURE..AIRPLANE ARRIVING
232
+ 1F910..1F918 ; Emoji_Presentation # [9] (🤐..🤘) ZIPPER-MOUTH FACE..SIGN OF THE HORNS
233
+ 1F980..1F984 ; Emoji_Presentation # [5] (🦀..🦄) CRAB..UNICORN FACE
234
+ 1F9C0 ; Emoji_Presentation # [1] (🧀) CHEESE WEDGE
235
+
236
+ # Total code points: 838
237
+
238
+ # ================================================
239
+
240
+ # All omitted code points have Emoji_Modifier=No
241
+ # @missing: 0000..10FFFF ; Emoji_Modifier ; No
242
+
243
+ 1F3FB..1F3FF ; Emoji_Modifier # [5] (🏻..🏿) EMOJI MODIFIER FITZPATRICK TYPE-1-2..EMOJI MODIFIER FITZPATRICK TYPE-6
244
+
245
+ # Total code points: 5
246
+
247
+ # ================================================
248
+
249
+ # All omitted code points have Emoji_Modifier_Base=No
250
+ # @missing: 0000..10FFFF ; Emoji_Modifier_Base ; No
251
+
252
+ 261D ; Emoji_Modifier_Base # [1] (☝️) WHITE UP POINTING INDEX
253
+ 26F9 ; Emoji_Modifier_Base # [1] (⛹) PERSON WITH BALL
254
+ 270A..270D ; Emoji_Modifier_Base # [4] (✊..✍) RAISED FIST..WRITING HAND
255
+ 1F385 ; Emoji_Modifier_Base # [1] (🎅) FATHER CHRISTMAS
256
+ 1F3C3..1F3C4 ; Emoji_Modifier_Base # [2] (🏃..🏄) RUNNER..SURFER
257
+ 1F3CA..1F3CB ; Emoji_Modifier_Base # [2] (🏊..🏋) SWIMMER..WEIGHT LIFTER
258
+ 1F442..1F443 ; Emoji_Modifier_Base # [2] (👂..👃) EAR..NOSE
259
+ 1F446..1F450 ; Emoji_Modifier_Base # [11] (👆..👐) WHITE UP POINTING BACKHAND INDEX..OPEN HANDS SIGN
260
+ 1F466..1F469 ; Emoji_Modifier_Base # [4] (👦..👩) BOY..WOMAN
261
+ 1F46E ; Emoji_Modifier_Base # [1] (👮) POLICE OFFICER
262
+ 1F470..1F478 ; Emoji_Modifier_Base # [9] (👰..👸) BRIDE WITH VEIL..PRINCESS
263
+ 1F47C ; Emoji_Modifier_Base # [1] (👼) BABY ANGEL
264
+ 1F481..1F483 ; Emoji_Modifier_Base # [3] (💁..💃) INFORMATION DESK PERSON..DANCER
265
+ 1F485..1F487 ; Emoji_Modifier_Base # [3] (💅..💇) NAIL POLISH..HAIRCUT
266
+ 1F4AA ; Emoji_Modifier_Base # [1] (💪) FLEXED BICEPS
267
+ 1F575 ; Emoji_Modifier_Base # [1] (🕵) SLEUTH OR SPY
268
+ 1F590 ; Emoji_Modifier_Base # [1] (🖐) RAISED HAND WITH FINGERS SPLAYED
269
+ 1F595..1F596 ; Emoji_Modifier_Base # [2] (🖕..🖖) REVERSED HAND WITH MIDDLE FINGER EXTENDED..RAISED HAND WITH PART BETWEEN MIDDLE AND RING FINGERS
270
+ 1F645..1F647 ; Emoji_Modifier_Base # [3] (🙅..🙇) FACE WITH NO GOOD GESTURE..PERSON BOWING DEEPLY
271
+ 1F64B..1F64F ; Emoji_Modifier_Base # [5] (🙋..🙏) HAPPY PERSON RAISING ONE HAND..PERSON WITH FOLDED HANDS
272
+ 1F6A3 ; Emoji_Modifier_Base # [1] (🚣) ROWBOAT
273
+ 1F6B4..1F6B6 ; Emoji_Modifier_Base # [3] (🚴..🚶) BICYCLIST..PEDESTRIAN
274
+ 1F6C0 ; Emoji_Modifier_Base # [1] (🛀) BATH
275
+ 1F918 ; Emoji_Modifier_Base # [1] (🤘) SIGN OF THE HORNS
276
+
277
+ # Total code points: 64
@@ -0,0 +1,625 @@
1
+ # Emoji Sequence Data for UTR #51
2
+ #
3
+ # File: emoji-sequences.txt
4
+ # Version: 2.0
5
+ # Date: 2015-11-11
6
+ #
7
+ # Copyright (c) 2015 Unicode, Inc.
8
+ # For terms of use, see http://www.unicode.org/terms_of_use.html
9
+ # For documentation and usage, see http://www.unicode.org/reports/tr51/
10
+ #
11
+
12
+ # Format:
13
+ # codepoints ; # (sequence) description
14
+
15
+ # ================================================
16
+
17
+ # Combining sequences
18
+
19
+ 0023 20E3 # (#️⃣) keycap number sign
20
+ 002A 20E3 # (*⃣) keycap asterisk
21
+ 0030 20E3 # (0️⃣) keycap digit zero
22
+ 0031 20E3 # (1️⃣) keycap digit one
23
+ 0032 20E3 # (2️⃣) keycap digit two
24
+ 0033 20E3 # (3️⃣) keycap digit three
25
+ 0034 20E3 # (4️⃣) keycap digit four
26
+ 0035 20E3 # (5️⃣) keycap digit five
27
+ 0036 20E3 # (6️⃣) keycap digit six
28
+ 0037 20E3 # (7️⃣) keycap digit seven
29
+ 0038 20E3 # (8️⃣) keycap digit eight
30
+ 0039 20E3 # (9️⃣) keycap digit nine
31
+
32
+ # Total sequences: 12
33
+
34
+ # ================================================
35
+
36
+ # Flag sequences
37
+
38
+ 1F1E6 1F1E8 # (🇦🇨) flag for Ascension Island
39
+ 1F1E6 1F1E9 # (🇦🇩) flag for Andorra
40
+ 1F1E6 1F1EA # (🇦🇪) flag for United Arab Emirates
41
+ 1F1E6 1F1EB # (🇦🇫) flag for Afghanistan
42
+ 1F1E6 1F1EC # (🇦🇬) flag for Antigua & Barbuda
43
+ 1F1E6 1F1EE # (🇦🇮) flag for Anguilla
44
+ 1F1E6 1F1F1 # (🇦🇱) flag for Albania
45
+ 1F1E6 1F1F2 # (🇦🇲) flag for Armenia
46
+ 1F1E6 1F1F4 # (🇦🇴) flag for Angola
47
+ 1F1E6 1F1F6 # (🇦🇶) flag for Antarctica
48
+ 1F1E6 1F1F7 # (🇦🇷) flag for Argentina
49
+ 1F1E6 1F1F8 # (🇦🇸) flag for American Samoa
50
+ 1F1E6 1F1F9 # (🇦🇹) flag for Austria
51
+ 1F1E6 1F1FA # (🇦🇺) flag for Australia
52
+ 1F1E6 1F1FC # (🇦🇼) flag for Aruba
53
+ 1F1E6 1F1FD # (🇦🇽) flag for Åland Islands
54
+ 1F1E6 1F1FF # (🇦🇿) flag for Azerbaijan
55
+ 1F1E7 1F1E6 # (🇧🇦) flag for Bosnia & Herzegovina
56
+ 1F1E7 1F1E7 # (🇧🇧) flag for Barbados
57
+ 1F1E7 1F1E9 # (🇧🇩) flag for Bangladesh
58
+ 1F1E7 1F1EA # (🇧🇪) flag for Belgium
59
+ 1F1E7 1F1EB # (🇧🇫) flag for Burkina Faso
60
+ 1F1E7 1F1EC # (🇧🇬) flag for Bulgaria
61
+ 1F1E7 1F1ED # (🇧🇭) flag for Bahrain
62
+ 1F1E7 1F1EE # (🇧🇮) flag for Burundi
63
+ 1F1E7 1F1EF # (🇧🇯) flag for Benin
64
+ 1F1E7 1F1F1 # (🇧🇱) flag for St. Barthélemy
65
+ 1F1E7 1F1F2 # (🇧🇲) flag for Bermuda
66
+ 1F1E7 1F1F3 # (🇧🇳) flag for Brunei
67
+ 1F1E7 1F1F4 # (🇧🇴) flag for Bolivia
68
+ 1F1E7 1F1F6 # (🇧🇶) flag for Caribbean Netherlands
69
+ 1F1E7 1F1F7 # (🇧🇷) flag for Brazil
70
+ 1F1E7 1F1F8 # (🇧🇸) flag for Bahamas
71
+ 1F1E7 1F1F9 # (🇧🇹) flag for Bhutan
72
+ 1F1E7 1F1FB # (🇧🇻) flag for Bouvet Island
73
+ 1F1E7 1F1FC # (🇧🇼) flag for Botswana
74
+ 1F1E7 1F1FE # (🇧🇾) flag for Belarus
75
+ 1F1E7 1F1FF # (🇧🇿) flag for Belize
76
+ 1F1E8 1F1E6 # (🇨🇦) flag for Canada
77
+ 1F1E8 1F1E8 # (🇨🇨) flag for Cocos Islands
78
+ 1F1E8 1F1E9 # (🇨🇩) flag for Congo - Kinshasa
79
+ 1F1E8 1F1EB # (🇨🇫) flag for Central African Republic
80
+ 1F1E8 1F1EC # (🇨🇬) flag for Congo - Brazzaville
81
+ 1F1E8 1F1ED # (🇨🇭) flag for Switzerland
82
+ 1F1E8 1F1EE # (🇨🇮) flag for Côte d’Ivoire
83
+ 1F1E8 1F1F0 # (🇨🇰) flag for Cook Islands
84
+ 1F1E8 1F1F1 # (🇨🇱) flag for Chile
85
+ 1F1E8 1F1F2 # (🇨🇲) flag for Cameroon
86
+ 1F1E8 1F1F3 # (🇨🇳) flag for China
87
+ 1F1E8 1F1F4 # (🇨🇴) flag for Colombia
88
+ 1F1E8 1F1F5 # (🇨🇵) flag for Clipperton Island
89
+ 1F1E8 1F1F7 # (🇨🇷) flag for Costa Rica
90
+ 1F1E8 1F1FA # (🇨🇺) flag for Cuba
91
+ 1F1E8 1F1FB # (🇨🇻) flag for Cape Verde
92
+ 1F1E8 1F1FC # (🇨🇼) flag for Curaçao
93
+ 1F1E8 1F1FD # (🇨🇽) flag for Christmas Island
94
+ 1F1E8 1F1FE # (🇨🇾) flag for Cyprus
95
+ 1F1E8 1F1FF # (🇨🇿) flag for Czech Republic
96
+ 1F1E9 1F1EA # (🇩🇪) flag for Germany
97
+ 1F1E9 1F1EC # (🇩🇬) flag for Diego Garcia
98
+ 1F1E9 1F1EF # (🇩🇯) flag for Djibouti
99
+ 1F1E9 1F1F0 # (🇩🇰) flag for Denmark
100
+ 1F1E9 1F1F2 # (🇩🇲) flag for Dominica
101
+ 1F1E9 1F1F4 # (🇩🇴) flag for Dominican Republic
102
+ 1F1E9 1F1FF # (🇩🇿) flag for Algeria
103
+ 1F1EA 1F1E6 # (🇪🇦) flag for Ceuta & Melilla
104
+ 1F1EA 1F1E8 # (🇪🇨) flag for Ecuador
105
+ 1F1EA 1F1EA # (🇪🇪) flag for Estonia
106
+ 1F1EA 1F1EC # (🇪🇬) flag for Egypt
107
+ 1F1EA 1F1ED # (🇪🇭) flag for Western Sahara
108
+ 1F1EA 1F1F7 # (🇪🇷) flag for Eritrea
109
+ 1F1EA 1F1F8 # (🇪🇸) flag for Spain
110
+ 1F1EA 1F1F9 # (🇪🇹) flag for Ethiopia
111
+ 1F1EA 1F1FA # (🇪🇺) flag for European Union
112
+ 1F1EB 1F1EE # (🇫🇮) flag for Finland
113
+ 1F1EB 1F1EF # (🇫🇯) flag for Fiji
114
+ 1F1EB 1F1F0 # (🇫🇰) flag for Falkland Islands
115
+ 1F1EB 1F1F2 # (🇫🇲) flag for Micronesia
116
+ 1F1EB 1F1F4 # (🇫🇴) flag for Faroe Islands
117
+ 1F1EB 1F1F7 # (🇫🇷) flag for France
118
+ 1F1EC 1F1E6 # (🇬🇦) flag for Gabon
119
+ 1F1EC 1F1E7 # (🇬🇧) flag for United Kingdom
120
+ 1F1EC 1F1E9 # (🇬🇩) flag for Grenada
121
+ 1F1EC 1F1EA # (🇬🇪) flag for Georgia
122
+ 1F1EC 1F1EB # (🇬🇫) flag for French Guiana
123
+ 1F1EC 1F1EC # (🇬🇬) flag for Guernsey
124
+ 1F1EC 1F1ED # (🇬🇭) flag for Ghana
125
+ 1F1EC 1F1EE # (🇬🇮) flag for Gibraltar
126
+ 1F1EC 1F1F1 # (🇬🇱) flag for Greenland
127
+ 1F1EC 1F1F2 # (🇬🇲) flag for Gambia
128
+ 1F1EC 1F1F3 # (🇬🇳) flag for Guinea
129
+ 1F1EC 1F1F5 # (🇬🇵) flag for Guadeloupe
130
+ 1F1EC 1F1F6 # (🇬🇶) flag for Equatorial Guinea
131
+ 1F1EC 1F1F7 # (🇬🇷) flag for Greece
132
+ 1F1EC 1F1F8 # (🇬🇸) flag for South Georgia & South Sandwich Islands
133
+ 1F1EC 1F1F9 # (🇬🇹) flag for Guatemala
134
+ 1F1EC 1F1FA # (🇬🇺) flag for Guam
135
+ 1F1EC 1F1FC # (🇬🇼) flag for Guinea-Bissau
136
+ 1F1EC 1F1FE # (🇬🇾) flag for Guyana
137
+ 1F1ED 1F1F0 # (🇭🇰) flag for Hong Kong
138
+ 1F1ED 1F1F2 # (🇭🇲) flag for Heard & McDonald Islands
139
+ 1F1ED 1F1F3 # (🇭🇳) flag for Honduras
140
+ 1F1ED 1F1F7 # (🇭🇷) flag for Croatia
141
+ 1F1ED 1F1F9 # (🇭🇹) flag for Haiti
142
+ 1F1ED 1F1FA # (🇭🇺) flag for Hungary
143
+ 1F1EE 1F1E8 # (🇮🇨) flag for Canary Islands
144
+ 1F1EE 1F1E9 # (🇮🇩) flag for Indonesia
145
+ 1F1EE 1F1EA # (🇮🇪) flag for Ireland
146
+ 1F1EE 1F1F1 # (🇮🇱) flag for Israel
147
+ 1F1EE 1F1F2 # (🇮🇲) flag for Isle of Man
148
+ 1F1EE 1F1F3 # (🇮🇳) flag for India
149
+ 1F1EE 1F1F4 # (🇮🇴) flag for British Indian Ocean Territory
150
+ 1F1EE 1F1F6 # (🇮🇶) flag for Iraq
151
+ 1F1EE 1F1F7 # (🇮🇷) flag for Iran
152
+ 1F1EE 1F1F8 # (🇮🇸) flag for Iceland
153
+ 1F1EE 1F1F9 # (🇮🇹) flag for Italy
154
+ 1F1EF 1F1EA # (🇯🇪) flag for Jersey
155
+ 1F1EF 1F1F2 # (🇯🇲) flag for Jamaica
156
+ 1F1EF 1F1F4 # (🇯🇴) flag for Jordan
157
+ 1F1EF 1F1F5 # (🇯🇵) flag for Japan
158
+ 1F1F0 1F1EA # (🇰🇪) flag for Kenya
159
+ 1F1F0 1F1EC # (🇰🇬) flag for Kyrgyzstan
160
+ 1F1F0 1F1ED # (🇰🇭) flag for Cambodia
161
+ 1F1F0 1F1EE # (🇰🇮) flag for Kiribati
162
+ 1F1F0 1F1F2 # (🇰🇲) flag for Comoros
163
+ 1F1F0 1F1F3 # (🇰🇳) flag for St. Kitts & Nevis
164
+ 1F1F0 1F1F5 # (🇰🇵) flag for North Korea
165
+ 1F1F0 1F1F7 # (🇰🇷) flag for South Korea
166
+ 1F1F0 1F1FC # (🇰🇼) flag for Kuwait
167
+ 1F1F0 1F1FE # (🇰🇾) flag for Cayman Islands
168
+ 1F1F0 1F1FF # (🇰🇿) flag for Kazakhstan
169
+ 1F1F1 1F1E6 # (🇱🇦) flag for Laos
170
+ 1F1F1 1F1E7 # (🇱🇧) flag for Lebanon
171
+ 1F1F1 1F1E8 # (🇱🇨) flag for St. Lucia
172
+ 1F1F1 1F1EE # (🇱🇮) flag for Liechtenstein
173
+ 1F1F1 1F1F0 # (🇱🇰) flag for Sri Lanka
174
+ 1F1F1 1F1F7 # (🇱🇷) flag for Liberia
175
+ 1F1F1 1F1F8 # (🇱🇸) flag for Lesotho
176
+ 1F1F1 1F1F9 # (🇱🇹) flag for Lithuania
177
+ 1F1F1 1F1FA # (🇱🇺) flag for Luxembourg
178
+ 1F1F1 1F1FB # (🇱🇻) flag for Latvia
179
+ 1F1F1 1F1FE # (🇱🇾) flag for Libya
180
+ 1F1F2 1F1E6 # (🇲🇦) flag for Morocco
181
+ 1F1F2 1F1E8 # (🇲🇨) flag for Monaco
182
+ 1F1F2 1F1E9 # (🇲🇩) flag for Moldova
183
+ 1F1F2 1F1EA # (🇲🇪) flag for Montenegro
184
+ 1F1F2 1F1EB # (🇲🇫) flag for St. Martin
185
+ 1F1F2 1F1EC # (🇲🇬) flag for Madagascar
186
+ 1F1F2 1F1ED # (🇲🇭) flag for Marshall Islands
187
+ 1F1F2 1F1F0 # (🇲🇰) flag for Macedonia
188
+ 1F1F2 1F1F1 # (🇲🇱) flag for Mali
189
+ 1F1F2 1F1F2 # (🇲🇲) flag for Myanmar
190
+ 1F1F2 1F1F3 # (🇲🇳) flag for Mongolia
191
+ 1F1F2 1F1F4 # (🇲🇴) flag for Macau
192
+ 1F1F2 1F1F5 # (🇲🇵) flag for Northern Mariana Islands
193
+ 1F1F2 1F1F6 # (🇲🇶) flag for Martinique
194
+ 1F1F2 1F1F7 # (🇲🇷) flag for Mauritania
195
+ 1F1F2 1F1F8 # (🇲🇸) flag for Montserrat
196
+ 1F1F2 1F1F9 # (🇲🇹) flag for Malta
197
+ 1F1F2 1F1FA # (🇲🇺) flag for Mauritius
198
+ 1F1F2 1F1FB # (🇲🇻) flag for Maldives
199
+ 1F1F2 1F1FC # (🇲🇼) flag for Malawi
200
+ 1F1F2 1F1FD # (🇲🇽) flag for Mexico
201
+ 1F1F2 1F1FE # (🇲🇾) flag for Malaysia
202
+ 1F1F2 1F1FF # (🇲🇿) flag for Mozambique
203
+ 1F1F3 1F1E6 # (🇳🇦) flag for Namibia
204
+ 1F1F3 1F1E8 # (🇳🇨) flag for New Caledonia
205
+ 1F1F3 1F1EA # (🇳🇪) flag for Niger
206
+ 1F1F3 1F1EB # (🇳🇫) flag for Norfolk Island
207
+ 1F1F3 1F1EC # (🇳🇬) flag for Nigeria
208
+ 1F1F3 1F1EE # (🇳🇮) flag for Nicaragua
209
+ 1F1F3 1F1F1 # (🇳🇱) flag for Netherlands
210
+ 1F1F3 1F1F4 # (🇳🇴) flag for Norway
211
+ 1F1F3 1F1F5 # (🇳🇵) flag for Nepal
212
+ 1F1F3 1F1F7 # (🇳🇷) flag for Nauru
213
+ 1F1F3 1F1FA # (🇳🇺) flag for Niue
214
+ 1F1F3 1F1FF # (🇳🇿) flag for New Zealand
215
+ 1F1F4 1F1F2 # (🇴🇲) flag for Oman
216
+ 1F1F5 1F1E6 # (🇵🇦) flag for Panama
217
+ 1F1F5 1F1EA # (🇵🇪) flag for Peru
218
+ 1F1F5 1F1EB # (🇵🇫) flag for French Polynesia
219
+ 1F1F5 1F1EC # (🇵🇬) flag for Papua New Guinea
220
+ 1F1F5 1F1ED # (🇵🇭) flag for Philippines
221
+ 1F1F5 1F1F0 # (🇵🇰) flag for Pakistan
222
+ 1F1F5 1F1F1 # (🇵🇱) flag for Poland
223
+ 1F1F5 1F1F2 # (🇵🇲) flag for St. Pierre & Miquelon
224
+ 1F1F5 1F1F3 # (🇵🇳) flag for Pitcairn Islands
225
+ 1F1F5 1F1F7 # (🇵🇷) flag for Puerto Rico
226
+ 1F1F5 1F1F8 # (🇵🇸) flag for Palestinian Territories
227
+ 1F1F5 1F1F9 # (🇵🇹) flag for Portugal
228
+ 1F1F5 1F1FC # (🇵🇼) flag for Palau
229
+ 1F1F5 1F1FE # (🇵🇾) flag for Paraguay
230
+ 1F1F6 1F1E6 # (🇶🇦) flag for Qatar
231
+ 1F1F7 1F1EA # (🇷🇪) flag for Réunion
232
+ 1F1F7 1F1F4 # (🇷🇴) flag for Romania
233
+ 1F1F7 1F1F8 # (🇷🇸) flag for Serbia
234
+ 1F1F7 1F1FA # (🇷🇺) flag for Russia
235
+ 1F1F7 1F1FC # (🇷🇼) flag for Rwanda
236
+ 1F1F8 1F1E6 # (🇸🇦) flag for Saudi Arabia
237
+ 1F1F8 1F1E7 # (🇸🇧) flag for Solomon Islands
238
+ 1F1F8 1F1E8 # (🇸🇨) flag for Seychelles
239
+ 1F1F8 1F1E9 # (🇸🇩) flag for Sudan
240
+ 1F1F8 1F1EA # (🇸🇪) flag for Sweden
241
+ 1F1F8 1F1EC # (🇸🇬) flag for Singapore
242
+ 1F1F8 1F1ED # (🇸🇭) flag for St. Helena
243
+ 1F1F8 1F1EE # (🇸🇮) flag for Slovenia
244
+ 1F1F8 1F1EF # (🇸🇯) flag for Svalbard & Jan Mayen
245
+ 1F1F8 1F1F0 # (🇸🇰) flag for Slovakia
246
+ 1F1F8 1F1F1 # (🇸🇱) flag for Sierra Leone
247
+ 1F1F8 1F1F2 # (🇸🇲) flag for San Marino
248
+ 1F1F8 1F1F3 # (🇸🇳) flag for Senegal
249
+ 1F1F8 1F1F4 # (🇸🇴) flag for Somalia
250
+ 1F1F8 1F1F7 # (🇸🇷) flag for Suriname
251
+ 1F1F8 1F1F8 # (🇸🇸) flag for South Sudan
252
+ 1F1F8 1F1F9 # (🇸🇹) flag for São Tomé & Príncipe
253
+ 1F1F8 1F1FB # (🇸🇻) flag for El Salvador
254
+ 1F1F8 1F1FD # (🇸🇽) flag for Sint Maarten
255
+ 1F1F8 1F1FE # (🇸🇾) flag for Syria
256
+ 1F1F8 1F1FF # (🇸🇿) flag for Swaziland
257
+ 1F1F9 1F1E6 # (🇹🇦) flag for Tristan da Cunha
258
+ 1F1F9 1F1E8 # (🇹🇨) flag for Turks & Caicos Islands
259
+ 1F1F9 1F1E9 # (🇹🇩) flag for Chad
260
+ 1F1F9 1F1EB # (🇹🇫) flag for French Southern Territories
261
+ 1F1F9 1F1EC # (🇹🇬) flag for Togo
262
+ 1F1F9 1F1ED # (🇹🇭) flag for Thailand
263
+ 1F1F9 1F1EF # (🇹🇯) flag for Tajikistan
264
+ 1F1F9 1F1F0 # (🇹🇰) flag for Tokelau
265
+ 1F1F9 1F1F1 # (🇹🇱) flag for Timor-Leste
266
+ 1F1F9 1F1F2 # (🇹🇲) flag for Turkmenistan
267
+ 1F1F9 1F1F3 # (🇹🇳) flag for Tunisia
268
+ 1F1F9 1F1F4 # (🇹🇴) flag for Tonga
269
+ 1F1F9 1F1F7 # (🇹🇷) flag for Turkey
270
+ 1F1F9 1F1F9 # (🇹🇹) flag for Trinidad & Tobago
271
+ 1F1F9 1F1FB # (🇹🇻) flag for Tuvalu
272
+ 1F1F9 1F1FC # (🇹🇼) flag for Taiwan
273
+ 1F1F9 1F1FF # (🇹🇿) flag for Tanzania
274
+ 1F1FA 1F1E6 # (🇺🇦) flag for Ukraine
275
+ 1F1FA 1F1EC # (🇺🇬) flag for Uganda
276
+ 1F1FA 1F1F2 # (🇺🇲) flag for U.S. Outlying Islands
277
+ 1F1FA 1F1F8 # (🇺🇸) flag for United States
278
+ 1F1FA 1F1FE # (🇺🇾) flag for Uruguay
279
+ 1F1FA 1F1FF # (🇺🇿) flag for Uzbekistan
280
+ 1F1FB 1F1E6 # (🇻🇦) flag for Vatican City
281
+ 1F1FB 1F1E8 # (🇻🇨) flag for St. Vincent & Grenadines
282
+ 1F1FB 1F1EA # (🇻🇪) flag for Venezuela
283
+ 1F1FB 1F1EC # (🇻🇬) flag for British Virgin Islands
284
+ 1F1FB 1F1EE # (🇻🇮) flag for U.S. Virgin Islands
285
+ 1F1FB 1F1F3 # (🇻🇳) flag for Vietnam
286
+ 1F1FB 1F1FA # (🇻🇺) flag for Vanuatu
287
+ 1F1FC 1F1EB # (🇼🇫) flag for Wallis & Futuna
288
+ 1F1FC 1F1F8 # (🇼🇸) flag for Samoa
289
+ 1F1FD 1F1F0 # (🇽🇰) flag for Kosovo
290
+ 1F1FE 1F1EA # (🇾🇪) flag for Yemen
291
+ 1F1FE 1F1F9 # (🇾🇹) flag for Mayotte
292
+ 1F1FF 1F1E6 # (🇿🇦) flag for South Africa
293
+ 1F1FF 1F1F2 # (🇿🇲) flag for Zambia
294
+ 1F1FF 1F1FC # (🇿🇼) flag for Zimbabwe
295
+
296
+ # Total sequences: 257
297
+
298
+ # ================================================
299
+
300
+ # Modifier sequences
301
+
302
+ 261D 1F3FB # (☝️🏻) white up pointing index type-1-2
303
+ 261D 1F3FC # (☝️🏼) white up pointing index type-3
304
+ 261D 1F3FD # (☝️🏽) white up pointing index type-4
305
+ 261D 1F3FE # (☝️🏾) white up pointing index type-5
306
+ 261D 1F3FF # (☝️🏿) white up pointing index type-6
307
+ 26F9 1F3FB # (⛹🏻) person with ball type-1-2
308
+ 26F9 1F3FC # (⛹🏼) person with ball type-3
309
+ 26F9 1F3FD # (⛹🏽) person with ball type-4
310
+ 26F9 1F3FE # (⛹🏾) person with ball type-5
311
+ 26F9 1F3FF # (⛹🏿) person with ball type-6
312
+ 270A 1F3FB # (✊🏻) raised fist type-1-2
313
+ 270A 1F3FC # (✊🏼) raised fist type-3
314
+ 270A 1F3FD # (✊🏽) raised fist type-4
315
+ 270A 1F3FE # (✊🏾) raised fist type-5
316
+ 270A 1F3FF # (✊🏿) raised fist type-6
317
+ 270B 1F3FB # (✋🏻) raised hand type-1-2
318
+ 270B 1F3FC # (✋🏼) raised hand type-3
319
+ 270B 1F3FD # (✋🏽) raised hand type-4
320
+ 270B 1F3FE # (✋🏾) raised hand type-5
321
+ 270B 1F3FF # (✋🏿) raised hand type-6
322
+ 270C 1F3FB # (✌️🏻) victory hand type-1-2
323
+ 270C 1F3FC # (✌️🏼) victory hand type-3
324
+ 270C 1F3FD # (✌️🏽) victory hand type-4
325
+ 270C 1F3FE # (✌️🏾) victory hand type-5
326
+ 270C 1F3FF # (✌️🏿) victory hand type-6
327
+ 270D 1F3FB # (✍🏻) writing hand type-1-2
328
+ 270D 1F3FC # (✍🏼) writing hand type-3
329
+ 270D 1F3FD # (✍🏽) writing hand type-4
330
+ 270D 1F3FE # (✍🏾) writing hand type-5
331
+ 270D 1F3FF # (✍🏿) writing hand type-6
332
+ 1F385 1F3FB # (🎅🏻) father christmas type-1-2
333
+ 1F385 1F3FC # (🎅🏼) father christmas type-3
334
+ 1F385 1F3FD # (🎅🏽) father christmas type-4
335
+ 1F385 1F3FE # (🎅🏾) father christmas type-5
336
+ 1F385 1F3FF # (🎅🏿) father christmas type-6
337
+ 1F3C3 1F3FB # (🏃🏻) runner type-1-2
338
+ 1F3C3 1F3FC # (🏃🏼) runner type-3
339
+ 1F3C3 1F3FD # (🏃🏽) runner type-4
340
+ 1F3C3 1F3FE # (🏃🏾) runner type-5
341
+ 1F3C3 1F3FF # (🏃🏿) runner type-6
342
+ 1F3C4 1F3FB # (🏄🏻) surfer type-1-2
343
+ 1F3C4 1F3FC # (🏄🏼) surfer type-3
344
+ 1F3C4 1F3FD # (🏄🏽) surfer type-4
345
+ 1F3C4 1F3FE # (🏄🏾) surfer type-5
346
+ 1F3C4 1F3FF # (🏄🏿) surfer type-6
347
+ 1F3CA 1F3FB # (🏊🏻) swimmer type-1-2
348
+ 1F3CA 1F3FC # (🏊🏼) swimmer type-3
349
+ 1F3CA 1F3FD # (🏊🏽) swimmer type-4
350
+ 1F3CA 1F3FE # (🏊🏾) swimmer type-5
351
+ 1F3CA 1F3FF # (🏊🏿) swimmer type-6
352
+ 1F3CB 1F3FB # (🏋🏻) weight lifter type-1-2
353
+ 1F3CB 1F3FC # (🏋🏼) weight lifter type-3
354
+ 1F3CB 1F3FD # (🏋🏽) weight lifter type-4
355
+ 1F3CB 1F3FE # (🏋🏾) weight lifter type-5
356
+ 1F3CB 1F3FF # (🏋🏿) weight lifter type-6
357
+ 1F442 1F3FB # (👂🏻) ear type-1-2
358
+ 1F442 1F3FC # (👂🏼) ear type-3
359
+ 1F442 1F3FD # (👂🏽) ear type-4
360
+ 1F442 1F3FE # (👂🏾) ear type-5
361
+ 1F442 1F3FF # (👂🏿) ear type-6
362
+ 1F443 1F3FB # (👃🏻) nose type-1-2
363
+ 1F443 1F3FC # (👃🏼) nose type-3
364
+ 1F443 1F3FD # (👃🏽) nose type-4
365
+ 1F443 1F3FE # (👃🏾) nose type-5
366
+ 1F443 1F3FF # (👃🏿) nose type-6
367
+ 1F446 1F3FB # (👆🏻) white up pointing backhand index type-1-2
368
+ 1F446 1F3FC # (👆🏼) white up pointing backhand index type-3
369
+ 1F446 1F3FD # (👆🏽) white up pointing backhand index type-4
370
+ 1F446 1F3FE # (👆🏾) white up pointing backhand index type-5
371
+ 1F446 1F3FF # (👆🏿) white up pointing backhand index type-6
372
+ 1F447 1F3FB # (👇🏻) white down pointing backhand index type-1-2
373
+ 1F447 1F3FC # (👇🏼) white down pointing backhand index type-3
374
+ 1F447 1F3FD # (👇🏽) white down pointing backhand index type-4
375
+ 1F447 1F3FE # (👇🏾) white down pointing backhand index type-5
376
+ 1F447 1F3FF # (👇🏿) white down pointing backhand index type-6
377
+ 1F448 1F3FB # (👈🏻) white left pointing backhand index type-1-2
378
+ 1F448 1F3FC # (👈🏼) white left pointing backhand index type-3
379
+ 1F448 1F3FD # (👈🏽) white left pointing backhand index type-4
380
+ 1F448 1F3FE # (👈🏾) white left pointing backhand index type-5
381
+ 1F448 1F3FF # (👈🏿) white left pointing backhand index type-6
382
+ 1F449 1F3FB # (👉🏻) white right pointing backhand index type-1-2
383
+ 1F449 1F3FC # (👉🏼) white right pointing backhand index type-3
384
+ 1F449 1F3FD # (👉🏽) white right pointing backhand index type-4
385
+ 1F449 1F3FE # (👉🏾) white right pointing backhand index type-5
386
+ 1F449 1F3FF # (👉🏿) white right pointing backhand index type-6
387
+ 1F44A 1F3FB # (👊🏻) fisted hand sign type-1-2
388
+ 1F44A 1F3FC # (👊🏼) fisted hand sign type-3
389
+ 1F44A 1F3FD # (👊🏽) fisted hand sign type-4
390
+ 1F44A 1F3FE # (👊🏾) fisted hand sign type-5
391
+ 1F44A 1F3FF # (👊🏿) fisted hand sign type-6
392
+ 1F44B 1F3FB # (👋🏻) waving hand sign type-1-2
393
+ 1F44B 1F3FC # (👋🏼) waving hand sign type-3
394
+ 1F44B 1F3FD # (👋🏽) waving hand sign type-4
395
+ 1F44B 1F3FE # (👋🏾) waving hand sign type-5
396
+ 1F44B 1F3FF # (👋🏿) waving hand sign type-6
397
+ 1F44C 1F3FB # (👌🏻) ok hand sign type-1-2
398
+ 1F44C 1F3FC # (👌🏼) ok hand sign type-3
399
+ 1F44C 1F3FD # (👌🏽) ok hand sign type-4
400
+ 1F44C 1F3FE # (👌🏾) ok hand sign type-5
401
+ 1F44C 1F3FF # (👌🏿) ok hand sign type-6
402
+ 1F44D 1F3FB # (👍🏻) thumbs up sign type-1-2
403
+ 1F44D 1F3FC # (👍🏼) thumbs up sign type-3
404
+ 1F44D 1F3FD # (👍🏽) thumbs up sign type-4
405
+ 1F44D 1F3FE # (👍🏾) thumbs up sign type-5
406
+ 1F44D 1F3FF # (👍🏿) thumbs up sign type-6
407
+ 1F44E 1F3FB # (👎🏻) thumbs down sign type-1-2
408
+ 1F44E 1F3FC # (👎🏼) thumbs down sign type-3
409
+ 1F44E 1F3FD # (👎🏽) thumbs down sign type-4
410
+ 1F44E 1F3FE # (👎🏾) thumbs down sign type-5
411
+ 1F44E 1F3FF # (👎🏿) thumbs down sign type-6
412
+ 1F44F 1F3FB # (👏🏻) clapping hands sign type-1-2
413
+ 1F44F 1F3FC # (👏🏼) clapping hands sign type-3
414
+ 1F44F 1F3FD # (👏🏽) clapping hands sign type-4
415
+ 1F44F 1F3FE # (👏🏾) clapping hands sign type-5
416
+ 1F44F 1F3FF # (👏🏿) clapping hands sign type-6
417
+ 1F450 1F3FB # (👐🏻) open hands sign type-1-2
418
+ 1F450 1F3FC # (👐🏼) open hands sign type-3
419
+ 1F450 1F3FD # (👐🏽) open hands sign type-4
420
+ 1F450 1F3FE # (👐🏾) open hands sign type-5
421
+ 1F450 1F3FF # (👐🏿) open hands sign type-6
422
+ 1F466 1F3FB # (👦🏻) boy type-1-2
423
+ 1F466 1F3FC # (👦🏼) boy type-3
424
+ 1F466 1F3FD # (👦🏽) boy type-4
425
+ 1F466 1F3FE # (👦🏾) boy type-5
426
+ 1F466 1F3FF # (👦🏿) boy type-6
427
+ 1F467 1F3FB # (👧🏻) girl type-1-2
428
+ 1F467 1F3FC # (👧🏼) girl type-3
429
+ 1F467 1F3FD # (👧🏽) girl type-4
430
+ 1F467 1F3FE # (👧🏾) girl type-5
431
+ 1F467 1F3FF # (👧🏿) girl type-6
432
+ 1F468 1F3FB # (👨🏻) man type-1-2
433
+ 1F468 1F3FC # (👨🏼) man type-3
434
+ 1F468 1F3FD # (👨🏽) man type-4
435
+ 1F468 1F3FE # (👨🏾) man type-5
436
+ 1F468 1F3FF # (👨🏿) man type-6
437
+ 1F469 1F3FB # (👩🏻) woman type-1-2
438
+ 1F469 1F3FC # (👩🏼) woman type-3
439
+ 1F469 1F3FD # (👩🏽) woman type-4
440
+ 1F469 1F3FE # (👩🏾) woman type-5
441
+ 1F469 1F3FF # (👩🏿) woman type-6
442
+ 1F46E 1F3FB # (👮🏻) police officer type-1-2
443
+ 1F46E 1F3FC # (👮🏼) police officer type-3
444
+ 1F46E 1F3FD # (👮🏽) police officer type-4
445
+ 1F46E 1F3FE # (👮🏾) police officer type-5
446
+ 1F46E 1F3FF # (👮🏿) police officer type-6
447
+ 1F470 1F3FB # (👰🏻) bride with veil type-1-2
448
+ 1F470 1F3FC # (👰🏼) bride with veil type-3
449
+ 1F470 1F3FD # (👰🏽) bride with veil type-4
450
+ 1F470 1F3FE # (👰🏾) bride with veil type-5
451
+ 1F470 1F3FF # (👰🏿) bride with veil type-6
452
+ 1F471 1F3FB # (👱🏻) person with blond hair type-1-2
453
+ 1F471 1F3FC # (👱🏼) person with blond hair type-3
454
+ 1F471 1F3FD # (👱🏽) person with blond hair type-4
455
+ 1F471 1F3FE # (👱🏾) person with blond hair type-5
456
+ 1F471 1F3FF # (👱🏿) person with blond hair type-6
457
+ 1F472 1F3FB # (👲🏻) man with gua pi mao type-1-2
458
+ 1F472 1F3FC # (👲🏼) man with gua pi mao type-3
459
+ 1F472 1F3FD # (👲🏽) man with gua pi mao type-4
460
+ 1F472 1F3FE # (👲🏾) man with gua pi mao type-5
461
+ 1F472 1F3FF # (👲🏿) man with gua pi mao type-6
462
+ 1F473 1F3FB # (👳🏻) man with turban type-1-2
463
+ 1F473 1F3FC # (👳🏼) man with turban type-3
464
+ 1F473 1F3FD # (👳🏽) man with turban type-4
465
+ 1F473 1F3FE # (👳🏾) man with turban type-5
466
+ 1F473 1F3FF # (👳🏿) man with turban type-6
467
+ 1F474 1F3FB # (👴🏻) older man type-1-2
468
+ 1F474 1F3FC # (👴🏼) older man type-3
469
+ 1F474 1F3FD # (👴🏽) older man type-4
470
+ 1F474 1F3FE # (👴🏾) older man type-5
471
+ 1F474 1F3FF # (👴🏿) older man type-6
472
+ 1F475 1F3FB # (👵🏻) older woman type-1-2
473
+ 1F475 1F3FC # (👵🏼) older woman type-3
474
+ 1F475 1F3FD # (👵🏽) older woman type-4
475
+ 1F475 1F3FE # (👵🏾) older woman type-5
476
+ 1F475 1F3FF # (👵🏿) older woman type-6
477
+ 1F476 1F3FB # (👶🏻) baby type-1-2
478
+ 1F476 1F3FC # (👶🏼) baby type-3
479
+ 1F476 1F3FD # (👶🏽) baby type-4
480
+ 1F476 1F3FE # (👶🏾) baby type-5
481
+ 1F476 1F3FF # (👶🏿) baby type-6
482
+ 1F477 1F3FB # (👷🏻) construction worker type-1-2
483
+ 1F477 1F3FC # (👷🏼) construction worker type-3
484
+ 1F477 1F3FD # (👷🏽) construction worker type-4
485
+ 1F477 1F3FE # (👷🏾) construction worker type-5
486
+ 1F477 1F3FF # (👷🏿) construction worker type-6
487
+ 1F478 1F3FB # (👸🏻) princess type-1-2
488
+ 1F478 1F3FC # (👸🏼) princess type-3
489
+ 1F478 1F3FD # (👸🏽) princess type-4
490
+ 1F478 1F3FE # (👸🏾) princess type-5
491
+ 1F478 1F3FF # (👸🏿) princess type-6
492
+ 1F47C 1F3FB # (👼🏻) baby angel type-1-2
493
+ 1F47C 1F3FC # (👼🏼) baby angel type-3
494
+ 1F47C 1F3FD # (👼🏽) baby angel type-4
495
+ 1F47C 1F3FE # (👼🏾) baby angel type-5
496
+ 1F47C 1F3FF # (👼🏿) baby angel type-6
497
+ 1F481 1F3FB # (💁🏻) information desk person type-1-2
498
+ 1F481 1F3FC # (💁🏼) information desk person type-3
499
+ 1F481 1F3FD # (💁🏽) information desk person type-4
500
+ 1F481 1F3FE # (💁🏾) information desk person type-5
501
+ 1F481 1F3FF # (💁🏿) information desk person type-6
502
+ 1F482 1F3FB # (💂🏻) guardsman type-1-2
503
+ 1F482 1F3FC # (💂🏼) guardsman type-3
504
+ 1F482 1F3FD # (💂🏽) guardsman type-4
505
+ 1F482 1F3FE # (💂🏾) guardsman type-5
506
+ 1F482 1F3FF # (💂🏿) guardsman type-6
507
+ 1F483 1F3FB # (💃🏻) dancer type-1-2
508
+ 1F483 1F3FC # (💃🏼) dancer type-3
509
+ 1F483 1F3FD # (💃🏽) dancer type-4
510
+ 1F483 1F3FE # (💃🏾) dancer type-5
511
+ 1F483 1F3FF # (💃🏿) dancer type-6
512
+ 1F485 1F3FB # (💅🏻) nail polish type-1-2
513
+ 1F485 1F3FC # (💅🏼) nail polish type-3
514
+ 1F485 1F3FD # (💅🏽) nail polish type-4
515
+ 1F485 1F3FE # (💅🏾) nail polish type-5
516
+ 1F485 1F3FF # (💅🏿) nail polish type-6
517
+ 1F486 1F3FB # (💆🏻) face massage type-1-2
518
+ 1F486 1F3FC # (💆🏼) face massage type-3
519
+ 1F486 1F3FD # (💆🏽) face massage type-4
520
+ 1F486 1F3FE # (💆🏾) face massage type-5
521
+ 1F486 1F3FF # (💆🏿) face massage type-6
522
+ 1F487 1F3FB # (💇🏻) haircut type-1-2
523
+ 1F487 1F3FC # (💇🏼) haircut type-3
524
+ 1F487 1F3FD # (💇🏽) haircut type-4
525
+ 1F487 1F3FE # (💇🏾) haircut type-5
526
+ 1F487 1F3FF # (💇🏿) haircut type-6
527
+ 1F4AA 1F3FB # (💪🏻) flexed biceps type-1-2
528
+ 1F4AA 1F3FC # (💪🏼) flexed biceps type-3
529
+ 1F4AA 1F3FD # (💪🏽) flexed biceps type-4
530
+ 1F4AA 1F3FE # (💪🏾) flexed biceps type-5
531
+ 1F4AA 1F3FF # (💪🏿) flexed biceps type-6
532
+ 1F575 1F3FB # (🕵🏻) sleuth or spy type-1-2
533
+ 1F575 1F3FC # (🕵🏼) sleuth or spy type-3
534
+ 1F575 1F3FD # (🕵🏽) sleuth or spy type-4
535
+ 1F575 1F3FE # (🕵🏾) sleuth or spy type-5
536
+ 1F575 1F3FF # (🕵🏿) sleuth or spy type-6
537
+ 1F590 1F3FB # (🖐🏻) raised hand with fingers splayed type-1-2
538
+ 1F590 1F3FC # (🖐🏼) raised hand with fingers splayed type-3
539
+ 1F590 1F3FD # (🖐🏽) raised hand with fingers splayed type-4
540
+ 1F590 1F3FE # (🖐🏾) raised hand with fingers splayed type-5
541
+ 1F590 1F3FF # (🖐🏿) raised hand with fingers splayed type-6
542
+ 1F595 1F3FB # (🖕🏻) reversed hand with middle finger extended type-1-2
543
+ 1F595 1F3FC # (🖕🏼) reversed hand with middle finger extended type-3
544
+ 1F595 1F3FD # (🖕🏽) reversed hand with middle finger extended type-4
545
+ 1F595 1F3FE # (🖕🏾) reversed hand with middle finger extended type-5
546
+ 1F595 1F3FF # (🖕🏿) reversed hand with middle finger extended type-6
547
+ 1F596 1F3FB # (🖖🏻) raised hand with part between middle and ring fingers type-1-2
548
+ 1F596 1F3FC # (🖖🏼) raised hand with part between middle and ring fingers type-3
549
+ 1F596 1F3FD # (🖖🏽) raised hand with part between middle and ring fingers type-4
550
+ 1F596 1F3FE # (🖖🏾) raised hand with part between middle and ring fingers type-5
551
+ 1F596 1F3FF # (🖖🏿) raised hand with part between middle and ring fingers type-6
552
+ 1F645 1F3FB # (🙅🏻) face with no good gesture type-1-2
553
+ 1F645 1F3FC # (🙅🏼) face with no good gesture type-3
554
+ 1F645 1F3FD # (🙅🏽) face with no good gesture type-4
555
+ 1F645 1F3FE # (🙅🏾) face with no good gesture type-5
556
+ 1F645 1F3FF # (🙅🏿) face with no good gesture type-6
557
+ 1F646 1F3FB # (🙆🏻) face with ok gesture type-1-2
558
+ 1F646 1F3FC # (🙆🏼) face with ok gesture type-3
559
+ 1F646 1F3FD # (🙆🏽) face with ok gesture type-4
560
+ 1F646 1F3FE # (🙆🏾) face with ok gesture type-5
561
+ 1F646 1F3FF # (🙆🏿) face with ok gesture type-6
562
+ 1F647 1F3FB # (🙇🏻) person bowing deeply type-1-2
563
+ 1F647 1F3FC # (🙇🏼) person bowing deeply type-3
564
+ 1F647 1F3FD # (🙇🏽) person bowing deeply type-4
565
+ 1F647 1F3FE # (🙇🏾) person bowing deeply type-5
566
+ 1F647 1F3FF # (🙇🏿) person bowing deeply type-6
567
+ 1F64B 1F3FB # (🙋🏻) happy person raising one hand type-1-2
568
+ 1F64B 1F3FC # (🙋🏼) happy person raising one hand type-3
569
+ 1F64B 1F3FD # (🙋🏽) happy person raising one hand type-4
570
+ 1F64B 1F3FE # (🙋🏾) happy person raising one hand type-5
571
+ 1F64B 1F3FF # (🙋🏿) happy person raising one hand type-6
572
+ 1F64C 1F3FB # (🙌🏻) person raising both hands in celebration type-1-2
573
+ 1F64C 1F3FC # (🙌🏼) person raising both hands in celebration type-3
574
+ 1F64C 1F3FD # (🙌🏽) person raising both hands in celebration type-4
575
+ 1F64C 1F3FE # (🙌🏾) person raising both hands in celebration type-5
576
+ 1F64C 1F3FF # (🙌🏿) person raising both hands in celebration type-6
577
+ 1F64D 1F3FB # (🙍🏻) person frowning type-1-2
578
+ 1F64D 1F3FC # (🙍🏼) person frowning type-3
579
+ 1F64D 1F3FD # (🙍🏽) person frowning type-4
580
+ 1F64D 1F3FE # (🙍🏾) person frowning type-5
581
+ 1F64D 1F3FF # (🙍🏿) person frowning type-6
582
+ 1F64E 1F3FB # (🙎🏻) person with pouting face type-1-2
583
+ 1F64E 1F3FC # (🙎🏼) person with pouting face type-3
584
+ 1F64E 1F3FD # (🙎🏽) person with pouting face type-4
585
+ 1F64E 1F3FE # (🙎🏾) person with pouting face type-5
586
+ 1F64E 1F3FF # (🙎🏿) person with pouting face type-6
587
+ 1F64F 1F3FB # (🙏🏻) person with folded hands type-1-2
588
+ 1F64F 1F3FC # (🙏🏼) person with folded hands type-3
589
+ 1F64F 1F3FD # (🙏🏽) person with folded hands type-4
590
+ 1F64F 1F3FE # (🙏🏾) person with folded hands type-5
591
+ 1F64F 1F3FF # (🙏🏿) person with folded hands type-6
592
+ 1F6A3 1F3FB # (🚣🏻) rowboat type-1-2
593
+ 1F6A3 1F3FC # (🚣🏼) rowboat type-3
594
+ 1F6A3 1F3FD # (🚣🏽) rowboat type-4
595
+ 1F6A3 1F3FE # (🚣🏾) rowboat type-5
596
+ 1F6A3 1F3FF # (🚣🏿) rowboat type-6
597
+ 1F6B4 1F3FB # (🚴🏻) bicyclist type-1-2
598
+ 1F6B4 1F3FC # (🚴🏼) bicyclist type-3
599
+ 1F6B4 1F3FD # (🚴🏽) bicyclist type-4
600
+ 1F6B4 1F3FE # (🚴🏾) bicyclist type-5
601
+ 1F6B4 1F3FF # (🚴🏿) bicyclist type-6
602
+ 1F6B5 1F3FB # (🚵🏻) mountain bicyclist type-1-2
603
+ 1F6B5 1F3FC # (🚵🏼) mountain bicyclist type-3
604
+ 1F6B5 1F3FD # (🚵🏽) mountain bicyclist type-4
605
+ 1F6B5 1F3FE # (🚵🏾) mountain bicyclist type-5
606
+ 1F6B5 1F3FF # (🚵🏿) mountain bicyclist type-6
607
+ 1F6B6 1F3FB # (🚶🏻) pedestrian type-1-2
608
+ 1F6B6 1F3FC # (🚶🏼) pedestrian type-3
609
+ 1F6B6 1F3FD # (🚶🏽) pedestrian type-4
610
+ 1F6B6 1F3FE # (🚶🏾) pedestrian type-5
611
+ 1F6B6 1F3FF # (🚶🏿) pedestrian type-6
612
+ 1F6C0 1F3FB # (🛀🏻) bath type-1-2
613
+ 1F6C0 1F3FC # (🛀🏼) bath type-3
614
+ 1F6C0 1F3FD # (🛀🏽) bath type-4
615
+ 1F6C0 1F3FE # (🛀🏾) bath type-5
616
+ 1F6C0 1F3FF # (🛀🏿) bath type-6
617
+ 1F918 1F3FB # (🤘🏻) sign of the horns type-1-2
618
+ 1F918 1F3FC # (🤘🏼) sign of the horns type-3
619
+ 1F918 1F3FD # (🤘🏽) sign of the horns type-4
620
+ 1F918 1F3FE # (🤘🏾) sign of the horns type-5
621
+ 1F918 1F3FF # (🤘🏿) sign of the horns type-6
622
+
623
+ # Total sequences: 320
624
+
625
+ #EOF