emoji_sub 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: a1f89458d20fe54dd6b7b2a20840cec05f7d4584eae58c0756c0a8c78f116b9d
4
+ data.tar.gz: 83490523c30b2dfe4afdd6c36822bdf468e9b510efd9dc0c976c7167c71dfeca
5
+ SHA512:
6
+ metadata.gz: d6b6501f9b5c4ceb2b77a9f73d2b53f18450c4e063e5e2b44cc27e69db4aeeeff336579af21b202bfd2560e7e6cb40f7f48fac6009ef19abc54b07cf1330dc82
7
+ data.tar.gz: 44b10917c640e016c165fb87370a64d399207770ebd7e19d22dc1270aa61cdce63ba222e301a5b2fc866bf7d8cffabec6bf458027934f6c2714f0c9b7a884a87
@@ -0,0 +1,11 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /_yardoc/
4
+ /coverage/
5
+ /doc/
6
+ /pkg/
7
+ /spec/reports/
8
+ /tmp/
9
+
10
+ # rspec failure tracking
11
+ .rspec_status
data/.rspec ADDED
@@ -0,0 +1,3 @@
1
+ --format documentation
2
+ --color
3
+ --require spec_helper
@@ -0,0 +1,6 @@
1
+ ---
2
+ language: ruby
3
+ cache: bundler
4
+ rvm:
5
+ - 2.7.1
6
+ before_install: gem install bundler -v 2.1.4
@@ -0,0 +1,18 @@
1
+ # Changelog
2
+
3
+ All notable changes to this project will be documented in this file.
4
+
5
+ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6
+
7
+ ## [0.1.0] - 2020-08-21
8
+
9
+ This is the first release. The goal is to get a method that works for substitution of
10
+ emoji HTML entities (hex-unicode) for slack shortcut format (:this_kind:)
11
+
12
+ ### Added
13
+
14
+ - Creates initial module and :emoji_sub method
15
+ - data/emoji.yml file,
16
+ - Specs covering basic funcitonality
17
+
18
+ [0.1.0]: https://github.com/olivierlacan/keep-a-changelog/releases/tag/v0.1.0
@@ -0,0 +1,74 @@
1
+ # Contributor Covenant Code of Conduct
2
+
3
+ ## Our Pledge
4
+
5
+ In the interest of fostering an open and welcoming environment, we as
6
+ contributors and maintainers pledge to making participation in our project and
7
+ our community a harassment-free experience for everyone, regardless of age, body
8
+ size, disability, ethnicity, gender identity and expression, level of experience,
9
+ nationality, personal appearance, race, religion, or sexual identity and
10
+ orientation.
11
+
12
+ ## Our Standards
13
+
14
+ Examples of behavior that contributes to creating a positive environment
15
+ include:
16
+
17
+ * Using welcoming and inclusive language
18
+ * Being respectful of differing viewpoints and experiences
19
+ * Gracefully accepting constructive criticism
20
+ * Focusing on what is best for the community
21
+ * Showing empathy towards other community members
22
+
23
+ Examples of unacceptable behavior by participants include:
24
+
25
+ * The use of sexualized language or imagery and unwelcome sexual attention or
26
+ advances
27
+ * Trolling, insulting/derogatory comments, and personal or political attacks
28
+ * Public or private harassment
29
+ * Publishing others' private information, such as a physical or electronic
30
+ address, without explicit permission
31
+ * Other conduct which could reasonably be considered inappropriate in a
32
+ professional setting
33
+
34
+ ## Our Responsibilities
35
+
36
+ Project maintainers are responsible for clarifying the standards of acceptable
37
+ behavior and are expected to take appropriate and fair corrective action in
38
+ response to any instances of unacceptable behavior.
39
+
40
+ Project maintainers have the right and responsibility to remove, edit, or
41
+ reject comments, commits, code, wiki edits, issues, and other contributions
42
+ that are not aligned to this Code of Conduct, or to ban temporarily or
43
+ permanently any contributor for other behaviors that they deem inappropriate,
44
+ threatening, offensive, or harmful.
45
+
46
+ ## Scope
47
+
48
+ This Code of Conduct applies both within project spaces and in public spaces
49
+ when an individual is representing the project or its community. Examples of
50
+ representing a project or community include using an official project e-mail
51
+ address, posting via an official social media account, or acting as an appointed
52
+ representative at an online or offline event. Representation of a project may be
53
+ further defined and clarified by project maintainers.
54
+
55
+ ## Enforcement
56
+
57
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be
58
+ reported by contacting the project team at armahillo@gmail.com. All
59
+ complaints will be reviewed and investigated and will result in a response that
60
+ is deemed necessary and appropriate to the circumstances. The project team is
61
+ obligated to maintain confidentiality with regard to the reporter of an incident.
62
+ Further details of specific enforcement policies may be posted separately.
63
+
64
+ Project maintainers who do not follow or enforce the Code of Conduct in good
65
+ faith may face temporary or permanent repercussions as determined by other
66
+ members of the project's leadership.
67
+
68
+ ## Attribution
69
+
70
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
71
+ available at [https://contributor-covenant.org/version/1/4][version]
72
+
73
+ [homepage]: https://contributor-covenant.org
74
+ [version]: https://contributor-covenant.org/version/1/4/
data/Gemfile ADDED
@@ -0,0 +1,7 @@
1
+ source "https://rubygems.org"
2
+
3
+ # Specify your gem's dependencies in emoji_sub.gemspec
4
+ gemspec
5
+
6
+ gem "rake", "~> 12.0"
7
+ gem "rspec", "~> 3.0"
@@ -0,0 +1,34 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ emoji_sub (0.1.0)
5
+
6
+ GEM
7
+ remote: https://rubygems.org/
8
+ specs:
9
+ diff-lcs (1.4.4)
10
+ rake (12.3.3)
11
+ rspec (3.9.0)
12
+ rspec-core (~> 3.9.0)
13
+ rspec-expectations (~> 3.9.0)
14
+ rspec-mocks (~> 3.9.0)
15
+ rspec-core (3.9.2)
16
+ rspec-support (~> 3.9.3)
17
+ rspec-expectations (3.9.2)
18
+ diff-lcs (>= 1.2.0, < 2.0)
19
+ rspec-support (~> 3.9.0)
20
+ rspec-mocks (3.9.1)
21
+ diff-lcs (>= 1.2.0, < 2.0)
22
+ rspec-support (~> 3.9.0)
23
+ rspec-support (3.9.3)
24
+
25
+ PLATFORMS
26
+ ruby
27
+
28
+ DEPENDENCIES
29
+ emoji_sub!
30
+ rake (~> 12.0)
31
+ rspec (~> 3.0)
32
+
33
+ BUNDLED WITH
34
+ 2.1.4
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2020 Aaron Hill
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,67 @@
1
+ # EmojiSub
2
+
3
+ This gem is the byproduct of me editing a Markdown file for a static-site generator, wanting to use :heart: and have it show up like this: &#x2764;
4
+
5
+ OBVIOUSLY, the best way to solve this is to find a full list of all the slack-emoji shortcodes, find a separate list of all the actual emoji and their hex-unicode values, and then compile a mapping of those shortcodes to hex-unicodes. So enjoy the fruit of several hours of labor, here.
6
+
7
+ ## Installation
8
+
9
+ Add this line to your application's Gemfile:
10
+
11
+ ```ruby
12
+ gem 'emoji_sub'
13
+ ```
14
+
15
+ And then execute:
16
+
17
+ $ bundle install
18
+
19
+ Or install it yourself as:
20
+
21
+ $ gem install emoji_sub
22
+
23
+ ## Usage
24
+
25
+ Currently, it's limited to direct calling (I've not monkey-patched `String`...yet). So if you had a body of text, like "I :heart: New York :statue_of_liberty: :pizza: :dancer:" and wanted it to look like this:
26
+ "I &#x2764; New York &#x1F5FD; &#x1F355; &#x1F483;", you would do this:
27
+
28
+ ```ruby
29
+ text = "I :heart: New York :statue_of_liberty: :pizza: :dancer:"
30
+ better_text = EmojiSub.emoji_sub(text)
31
+ ```
32
+
33
+ You can even pass in additional mappings if you know about unicodes I forgot! (I'M SURE THERE ARE MORE, GOOD GOB THERE ARE SO MANY).
34
+
35
+ ```ruby
36
+ additional_emoji = { pigeon: "1F426" } # Technically that's the unicode for birb, but...
37
+ text = "I :heart: New York :statue_of_liberty: :pizza: :pigeon:"
38
+ better_text = EmojiSub.emoji_sub(text, additional_emoji)
39
+ ```
40
+
41
+ You can even, even override the mappings I did with your own! If your expert-moji opinion says that `:smiley_cat:` should be &#x1F638; and `:smile_cat:` should be &#x1F63A; who am I to disagree? They're very different, clearly, and obviously the "-y" on the end of "smile-y" means that the cat should have eyes that are more smiley. Very reasonable and I completely understand! YES I'M FINE WHY DO YOU ASK?
42
+
43
+ In all seriousness, one big reason I could see wanting to do overrides is because emoji shortcodes in Slack are often quite gendered, such as :man_bouncing_ball: => &#x26F9; and you'd like to use :woman_bouncing_ball: (&#x26F9;), which doesn't exist in the current YML mapping because GOOD GOB THERE ARE SO MANY AND I AM BUT ONE PERSON.
44
+
45
+ Currently, the emoji are also a single skin-tone. I'm still learning how to combine emoji to do skin-tone modifiers, but when I do, you would also use the overrides thing to do that, as well! If you're an e-moji e-xpert and can help out with this, please do!
46
+
47
+ Other reasons to override might be because you prefer a specific version of `:airplane:` to be mapped to `:airplane:` instead of &#x2708;, and at the end of the day, this is about making it more convenient for you.
48
+
49
+
50
+ ## Development
51
+
52
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
53
+
54
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
55
+
56
+ ## Contributing
57
+
58
+ Bug reports and pull requests are welcome on GitHub at https://github.com/armahillo/emoji_sub. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/armahillo/emoji_sub/blob/master/CODE_OF_CONDUCT.md).
59
+
60
+
61
+ ## License
62
+
63
+ The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
64
+
65
+ ## Code of Conduct
66
+
67
+ Everyone interacting in the EmojiSub project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/armahillo/emoji_sub/blob/master/CODE_OF_CONDUCT.md).
@@ -0,0 +1,6 @@
1
+ require "bundler/gem_tasks"
2
+ require "rspec/core/rake_task"
3
+
4
+ RSpec::Core::RakeTask.new(:spec)
5
+
6
+ task :default => :spec
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "emoji_sub"
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(__FILE__)
@@ -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,1049 @@
1
+ ---
2
+ :smile: 1F606
3
+ :laughing: 1F606
4
+ :blush: 1F60A
5
+ :smiley: 1F603
6
+ :relaxed: 1F60C
7
+ :smirk: 1F60F
8
+ :heart_eyes: 1F60D
9
+ :kissing_heart: 1F618
10
+ :flushed: 1F633
11
+ :satisfied: 1F606
12
+ :grin: 1F601
13
+ :wink: 1F609
14
+ :stuck_out_tongue_winking_eye: 1F61C
15
+ :stuck_out_tongue_closed_eyes: 1F61D
16
+ :grinning: 1F600
17
+ :kissing: 1F617
18
+ :kissing_smiling_eyes: 1F619
19
+ :stuck_out_tongue: 1F61B
20
+ :sleeping: 1F634
21
+ :worried: 1F61F
22
+ :frowning: 1F627
23
+ :anguished: 1F628
24
+ :open_mouth: 1F62E
25
+ :grimacing: 1F62C
26
+ :confused: 1F615
27
+ :hushed: 1F62F
28
+ :expressionless: 1F611
29
+ :unamused: 1F612
30
+ :sweat_smile: 1F605
31
+ :sweat: 1F613
32
+ :disappointed_relieved: 1F622
33
+ :weary: 1F629
34
+ :pensive: 1F614
35
+ :disappointed: 1F61E
36
+ :confounded: 1F616
37
+ :fearful: 1F628
38
+ :cold_sweat: 1F630
39
+ :cry: 1F622
40
+ :sob: 1F62D
41
+ :astonished: 1F632
42
+ :scream: 1F631
43
+ :tired_face: 1F629
44
+ :angry: 1F620
45
+ :rage: 1F621
46
+ :triumph: 1F624
47
+ :sleepy: 1F62A
48
+ :yum: 1F60B
49
+ :mask: 1F637
50
+ :sunglasses: 1F60E
51
+ :dizzy_face: 1F635
52
+ :imp: 1F47F
53
+ :smiling_imp: 1F608
54
+ :no_mouth: 1F636
55
+ :innocent: 1F607
56
+ :alien: 1F47D
57
+ :yellow_heart: 1F49B
58
+ :blue_heart: 1F499
59
+ :purple_heart: 1F49C
60
+ :heart: '2764'
61
+ :green_heart: 1F49A
62
+ :broken_heart: 1F494
63
+ :heartbeat: 1F493
64
+ :two_hearts: 1F495
65
+ :revolving_hearts: 1F49E
66
+ :cupid: 1F498
67
+ :sparkling_heart: 1F496
68
+ :sparkles: '2728'
69
+ :star: 2B50
70
+ :boom: 1F4A5
71
+ :anger: 1F4A2
72
+ :exclamation: '2757'
73
+ :question: '2753'
74
+ :grey_exclamation: '2755'
75
+ :grey_question: '2754'
76
+ :zzz: 1F4A4
77
+ :dash: 1F4A8
78
+ :sweat_drops: 1F4A6
79
+ :notes: 1F3B6
80
+ :musical_note: 1F3B5
81
+ :fire: 1F525
82
+ :poop: 1F4A9
83
+ :1: 1F44D
84
+ :thumbsup: 1F44D
85
+ :-1: 1F44E
86
+ :thumbsdown: 1F44E
87
+ :facepunch: 1F44A
88
+ :fist: 270A
89
+ :v: 270C
90
+ :wave: 1F44B
91
+ :raised_hand: 270B
92
+ :open_hands: 1F450
93
+ :point_up: 261D
94
+ :point_down: 1F447
95
+ :point_left: 1F448
96
+ :point_right: 1F449
97
+ :raised_hands: 1F64C
98
+ :pray: 1F64F
99
+ :point_up_2: 1F446
100
+ :clap: 1F44F
101
+ :muscle: 1F4AA
102
+ :runner: 1F3C3
103
+ :couple: 1F46B
104
+ :family: 1F46A
105
+ :two_men_holding_hands: 1F46C
106
+ :two_women_holding_hands: 1F46D
107
+ :dancer: 1F483
108
+ :dancers: 1F46F
109
+ :ok_woman: 1F645
110
+ :no_good: 1F646
111
+ :bride_with_veil: 1F470
112
+ :bow: 1F380
113
+ :couple_with_heart: 1F491
114
+ :massage: 1F486
115
+ :haircut: 1F487
116
+ :nail_care: 1F485
117
+ :boy: 1F466
118
+ :girl: 1F467
119
+ :woman: 1F469
120
+ :man: 1F468
121
+ :baby: 1F476
122
+ :older_woman: 1F475
123
+ :older_man: 1F474
124
+ :person_with_blond_hair: 1F471
125
+ :man_with_gua_pi_mao: 1F472
126
+ :man_with_turban: 1F473
127
+ :construction_worker: 1F477
128
+ :cop: 1F46E
129
+ :angel: 1F47C
130
+ :princess: 1F478
131
+ :smiley_cat: 1F63A
132
+ :smile_cat: 1F638
133
+ :heart_eyes_cat: 1F63B
134
+ :kissing_cat: 1F63D
135
+ :smirk_cat: 1F63C
136
+ :scream_cat: 1F640
137
+ :crying_cat_face: 1F63F
138
+ :joy_cat: 1F639
139
+ :pouting_cat: 1F63E
140
+ :japanese_ogre: 1F479
141
+ :japanese_goblin: 1F47A
142
+ :see_no_evil: 1F648
143
+ :hear_no_evil: 1F649
144
+ :speak_no_evil: 1F64A
145
+ :guardsman: 1F482
146
+ :skull: 1F480
147
+ :lips: 1F444
148
+ :kiss: 1F48B
149
+ :droplet: 1F4A7
150
+ :ear: 1F442
151
+ :eyes: 1F440
152
+ :nose: 1F443
153
+ :tongue: 1F445
154
+ :love_letter: 1F48C
155
+ :bust_in_silhouette: 1F464
156
+ :busts_in_silhouette: 1F465
157
+ :speech_balloon: 1F4AC
158
+ :thought_balloon: 1F4AD
159
+ :umbrella: '2614'
160
+ :snowflake: '2744'
161
+ :snowman: 26C4
162
+ :zap: 26A1
163
+ :cyclone: 1F300
164
+ :foggy: 1F301
165
+ :ocean: 1F30A
166
+ :cat: 1F431
167
+ :dog: 1F436
168
+ :mouse: 1F42D
169
+ :hamster: 1F439
170
+ :rabbit: 1F430
171
+ :wolf: 1F43A
172
+ :frog: 1F438
173
+ :tiger: 1F42F
174
+ :koala: 1F428
175
+ :bear: 1F43B
176
+ :pig: 1F437
177
+ :pig_nose: 1F43D
178
+ :cow: 1F42E
179
+ :boar: 1F417
180
+ :monkey_face: 1F435
181
+ :monkey: 1F412
182
+ :horse: 1F40E
183
+ :racehorse: 1F3C7
184
+ :camel: 1F42B
185
+ :elephant: 1F418
186
+ :panda_face: 1F43C
187
+ :snake: 1F40D
188
+ :bird: 1F426
189
+ :baby_chick: 1F424
190
+ :hatched_chick: 1F425
191
+ :hatching_chick: 1F423
192
+ :chicken: 1F414
193
+ :penguin: 1F427
194
+ :turtle: 1F422
195
+ :bug: 1F41B
196
+ :honeybee: 1F41D
197
+ :ant: 1F41C
198
+ :beetle: 1F41E
199
+ :snail: 1F40C
200
+ :octopus: 1F419
201
+ :tropical_fish: 1F420
202
+ :fish: 1F41F
203
+ :whale: 1F433
204
+ :whale2: 1F40B
205
+ :dolphin: 1F42C
206
+ :cow2: 1F404
207
+ :ram: 1F40F
208
+ :rat: 1F400
209
+ :water_buffalo: 1F403
210
+ :dragon: 1F409
211
+ :goat: 1F410
212
+ :dog2: 1F415
213
+ :pig2: 1F416
214
+ :mouse2: 1F401
215
+ :ox: 1F402
216
+ :dragon_face: 1F432
217
+ :blowfish: 1F421
218
+ :crocodile: 1F40A
219
+ :dromedary_camel: 1F42A
220
+ :leopard: 1F406
221
+ :cat2: 1F408
222
+ :poodle: 1F429
223
+ :paw_prints: 1F43E
224
+ :bouquet: 1F490
225
+ :cherry_blossom: 1F338
226
+ :tulip: 1F337
227
+ :four_leaf_clover: 1F340
228
+ :rose: 1F339
229
+ :sunflower: 1F33B
230
+ :hibiscus: 1F33A
231
+ :maple_leaf: 1F341
232
+ :leaves: 1F343
233
+ :fallen_leaf: 1F342
234
+ :herb: 1F33F
235
+ :mushroom: 1F344
236
+ :cactus: 1F335
237
+ :palm_tree: 1F334
238
+ :evergreen_tree: 1F332
239
+ :deciduous_tree: 1F333
240
+ :chestnut: 1F330
241
+ :seedling: 1F331
242
+ :blossom: 1F33C
243
+ :ear_of_rice: 1F33E
244
+ :shell: 1F41A
245
+ :globe_with_meridians: 1F310
246
+ :sun_with_face: 1F31E
247
+ :full_moon_with_face: 1F31D
248
+ :new_moon_with_face: 1F31A
249
+ :new_moon: 1F311
250
+ :waxing_crescent_moon: 1F311
251
+ :first_quarter_moon: 1F312
252
+ :waxing_gibbous_moon: 1F313
253
+ :full_moon: 1F315
254
+ :waning_gibbous_moon: 1F316
255
+ :last_quarter_moon: 1F317
256
+ :waning_crescent_moon: 1F318
257
+ :last_quarter_moon_with_face: 1F31C
258
+ :first_quarter_moon_with_face: 1F31B
259
+ :crescent_moon: 1F319
260
+ :earth_africa: 1F30D
261
+ :earth_americas: 1F30E
262
+ :earth_asia: 1F30F
263
+ :volcano: 1F30B
264
+ :milky_way: 1F30C
265
+ :partly_sunny: 26C5
266
+ :squirrel: 1F43F
267
+ :bamboo: 1F38B
268
+ :dolls: 1F38E
269
+ :school_satchel: 1F392
270
+ :mortar_board: 1F393
271
+ :fireworks: 1F386
272
+ :sparkler: 1F387
273
+ :wind_chime: 1F390
274
+ :jack_o_lantern: 1F383
275
+ :ghost: 1F47B
276
+ :santa: 1F385
277
+ :christmas_tree: 1F384
278
+ :gift: 1F381
279
+ :bell: 1F514
280
+ :no_bell: 1F515
281
+ :tada: 1F389
282
+ :confetti_ball: 1F38A
283
+ :balloon: 1F388
284
+ :crystal_ball: 1F52E
285
+ :cd: 1F4BF
286
+ :dvd: 1F4C0
287
+ :floppy_disk: 1F4BE
288
+ :camera: 1F4F7
289
+ :video_camera: 1F4F9
290
+ :movie_camera: 1F3A5
291
+ :computer: 1F4BB
292
+ :tv: 1F4FA
293
+ :iphone: 1F4F1
294
+ :telephone_receiver: 1F4DE
295
+ :pager: 1F4DF
296
+ :fax: 1F4E0
297
+ :minidisc: 1F4BD
298
+ :vhs: 1F4FC
299
+ :speaker: 1F508
300
+ :mute: 1F507
301
+ :loudspeaker: 1F4E2
302
+ :mega: 1F4E3
303
+ :hourglass_flowing_sand: 23F3
304
+ :alarm_clock: 23F0
305
+ :radio: 1F4FB
306
+ :satellite: 1F6F0
307
+ :unlock: 1F513
308
+ :lock: 1F512
309
+ :lock_with_ink_pen: 1F50F
310
+ :closed_lock_with_key: 1F510
311
+ :key: 1F511
312
+ :bulb: 1F4A1
313
+ :flashlight: 1F526
314
+ :high_brightness: 1F506
315
+ :low_brightness: 1F505
316
+ :electric_plug: 1F50C
317
+ :battery: 1F50B
318
+ :postbox: 1F4EE
319
+ :bath: 1F6C0
320
+ :bathtub: 1F6C1
321
+ :shower: 1F6BF
322
+ :toilet: 1F6BD
323
+ :wrench: 1F527
324
+ :nut_and_bolt: 1F529
325
+ :hammer: 1F528
326
+ :seat: 1F4BA
327
+ :moneybag: 1F4B0
328
+ :yen: 1F4B4
329
+ :dollar: 1F4B5
330
+ :pound: 1F4B7
331
+ :euro: 1F4B6
332
+ :credit_card: 1F4B4
333
+ :money_with_wings: 1F4B8
334
+ :e-mail: 1F4E7
335
+ :inbox_tray: 1F4E5
336
+ :outbox_tray: 1F4E4
337
+ :envelope: '2709'
338
+ :incoming_envelope: 1F4E8
339
+ :postal_horn: 1F4EF
340
+ :mailbox_closed: 1F4EA
341
+ :mailbox_with_mail: 1F4EC
342
+ :mailbox_with_no_mail: 1F4ED
343
+ :package: 1F4E6
344
+ :door: 1F6AA
345
+ :smoking: 1F6AC
346
+ :bomb: 1F4A3
347
+ :gun: 1F52B
348
+ :pill: 1F48A
349
+ :syringe: 1F489
350
+ :page_facing_up: 1F4C4
351
+ :page_with_curl: 1F4C3
352
+ :bookmark_tabs: 1F4D1
353
+ :bar_chart: 1F4CA
354
+ :chart_with_upwards_trend: 1F4C8
355
+ :chart_with_downwards_trend: 1F4C9
356
+ :scroll: 1F4DC
357
+ :clipboard: 1F4CB
358
+ :calendar: 1F4C5
359
+ :card_index: 1F4C7
360
+ :file_folder: 1F4C1
361
+ :open_file_folder: 1F4C2
362
+ :scissors: '2702'
363
+ :pushpin: 1F4CC
364
+ :paperclip: 1F4CE
365
+ :black_nib: '2712'
366
+ :straight_ruler: 1F4CF
367
+ :triangular_ruler: 1F4D0
368
+ :closed_book: 1F4D5
369
+ :green_book: 1F4D7
370
+ :blue_book: 1F4D8
371
+ :orange_book: 1F4D9
372
+ :notebook: 1F4D3
373
+ :ledger: 1F4D2
374
+ :books: 1F4DA
375
+ :bookmark: 1F516
376
+ :name_badge: 1F4DB
377
+ :microscope: 1F52C
378
+ :telescope: 1F52D
379
+ :newspaper: 1F4F0
380
+ :football: 1F3C8
381
+ :basketball: 1F3C0
382
+ :soccer: 26BD
383
+ :baseball: 26BE
384
+ :tennis: 1F3BE
385
+ :8ball: 1F3B1
386
+ :rugby_football: 1F3C9
387
+ :bowling: 1F3B3
388
+ :golf: 26F3
389
+ :mountain_bicyclist: 1F6B5
390
+ :bicyclist: 1F6B4
391
+ :snowboarder: 1F3C2
392
+ :swimmer: 1F3CA
393
+ :surfer: 1F3C4
394
+ :ski: 1F3BF
395
+ :gem: 1F48E
396
+ :ring: 1F48D
397
+ :trophy: 1F3C6
398
+ :musical_score: 1F3BC
399
+ :musical_keyboard: 1F3B9
400
+ :violin: 1F3BB
401
+ :space_invader: 1F47E
402
+ :video_game: 1F3AE
403
+ :black_joker: 1F0CF
404
+ :flower_playing_cards: 1F3B4
405
+ :game_die: 1F3B2
406
+ :dart: 1F3AF
407
+ :mahjong: 1F004
408
+ :clapper: 1F3AC
409
+ :memo: 1F4DD
410
+ :pencil: 270F
411
+ :microphone: 1F3A4
412
+ :headphones: 1F3A7
413
+ :trumpet: 1F3BA
414
+ :saxophone: 1F3B7
415
+ :guitar: 1F3B8
416
+ :shoe: 1F45E
417
+ :sandal: 1F461
418
+ :high_heel: 1F460
419
+ :lipstick: 1F484
420
+ :boot: 1F462
421
+ :shirt: 1F455
422
+ :necktie: 1F454
423
+ :womans_clothes: 1F45A
424
+ :dress: 1F457
425
+ :running_shirt_with_sash: 1F3BD
426
+ :jeans: 1F456
427
+ :kimono: 1F458
428
+ :bikini: 1F459
429
+ :ribbon: 1F397
430
+ :tophat: 1F3A9
431
+ :crown: 1F451
432
+ :womans_hat: 1F452
433
+ :closed_umbrella: 1F302
434
+ :briefcase: 1F4BC
435
+ :handbag: 1F45C
436
+ :pouch: 1F45D
437
+ :purse: 1F45B
438
+ :eyeglasses: 1F453
439
+ :fishing_pole_and_fish: 1F3A3
440
+ :coffee: '2615'
441
+ :tea: 1F375
442
+ :sake: 1F376
443
+ :baby_bottle: 1F37C
444
+ :beer: 1F37A
445
+ :beers: 1F37B
446
+ :tropical_drink: 1F379
447
+ :wine_glass: 1F377
448
+ :fork_and_knife: 1F374
449
+ :pizza: 1F355
450
+ :hamburger: 1F354
451
+ :fries: 1F35F
452
+ :poultry_leg: 1F357
453
+ :meat_on_bone: 1F356
454
+ :spaghetti: 1F35D
455
+ :curry: 1F35B
456
+ :fried_shrimp: 1F364
457
+ :bento: 1F371
458
+ :sushi: 1F363
459
+ :fish_cake: 1F365
460
+ :rice_ball: 1F359
461
+ :rice_cracker: 1F358
462
+ :rice: 1F35A
463
+ :oden: 1F362
464
+ :dango: 1F361
465
+ :egg: 1F959
466
+ :bread: 1F35E
467
+ :doughnut: 1F369
468
+ :custard: 1F36E
469
+ :ice_cream: 1F368
470
+ :shaved_ice: 1F367
471
+ :cake: 1F382
472
+ :cookie: 1F36A
473
+ :chocolate_bar: 1F36B
474
+ :lollipop: 1F36D
475
+ :honey_pot: 1F36F
476
+ :apple: 1F34E
477
+ :green_apple: 1F34F
478
+ :tangerine: 1F34A
479
+ :lemon: 1F34B
480
+ :cherries: 1F352
481
+ :grapes: 1F347
482
+ :watermelon: 1F349
483
+ :strawberry: 1F353
484
+ :peach: 1F351
485
+ :melon: 1F348
486
+ :banana: 1F34C
487
+ :pear: 1F350
488
+ :pineapple: 1F34D
489
+ :sweet_potato: 1F360
490
+ :eggplant: 1F346
491
+ :tomato: 1F345
492
+ :corn: 1F33D
493
+ :house: 1F3E0
494
+ :house_with_garden: 1F3E1
495
+ :school: 1F3EB
496
+ :office: 1F3E2
497
+ :post_office: 1F3E3
498
+ :hospital: 1F3E5
499
+ :bank: 1F3E6
500
+ :convenience_store: 1F3EA
501
+ :love_hotel: 1F3E9
502
+ :hotel: 1F3E8
503
+ :wedding: 1F492
504
+ :church: 26EA
505
+ :department_store: 1F3EC
506
+ :european_post_office: 1F3E4
507
+ :city_sunrise: 1F306
508
+ :city_sunset: 1F307
509
+ :japanese_castle: 1F3EF
510
+ :european_castle: 1F3F0
511
+ :tent: 26FA
512
+ :factory: 1F3ED
513
+ :tokyo_tower: 1F5FC
514
+ :japan: 1F5FE
515
+ :mount_fuji: 1F5FB
516
+ :sunrise_over_mountains: 1F304
517
+ :sunrise: 1F305
518
+ :statue_of_liberty: 1F5FD
519
+ :bridge_at_night: 1F309
520
+ :carousel_horse: 1F3A0
521
+ :rainbow: 1F308
522
+ :fountain: 26F2
523
+ :roller_coaster: 1F3A2
524
+ :ship: 1F6A2
525
+ :speedboat: 1F6A4
526
+ :boat: 26F4
527
+ :sailboat: 26F5
528
+ :rowboat: 1F6A3
529
+ :anchor: '2693'
530
+ :rocket: 1F680
531
+ :airplane: '2708'
532
+ :helicopter: 1F681
533
+ :steam_locomotive: 1F682
534
+ :tram: 1F68A
535
+ :mountain_railway: 1F69E
536
+ :bike: 1F6B2
537
+ :aerial_tramway: 1F6A1
538
+ :suspension_railway: 1F69F
539
+ :mountain_cableway: 1F6A0
540
+ :tractor: 1F69C
541
+ :blue_car: 1F699
542
+ :oncoming_automobile: 1F698
543
+ :red_car: 1F697
544
+ :taxi: 1F695
545
+ :oncoming_taxi: 1F696
546
+ :articulated_lorry: 1F69B
547
+ :bus: 1F68C
548
+ :oncoming_bus: 1F68D
549
+ :police_car: 1F693
550
+ :oncoming_police_car: 1F694
551
+ :fire_engine: 1F692
552
+ :ambulance: 1F691
553
+ :minibus: 1F690
554
+ :station: 1F689
555
+ :bullettrain_front: 1F686
556
+ :light_rail: 1F688
557
+ :monorail: 1F69D
558
+ :railway_car: 1F683
559
+ :trolleybus: 1F68E
560
+ :ticket: 1F3AB
561
+ :fuelpump: 26FD
562
+ :vertical_traffic_light: 1F6A6
563
+ :traffic_light: 1F6A5
564
+ :construction: 1F6A7
565
+ :beginner: 1F530
566
+ :atm: 1F3E7
567
+ :slot_machine: 1F3B0
568
+ :busstop: 1F68F
569
+ :barber: 1F488
570
+ :checkered_flag: 1F3C1
571
+ :crossed_flags: 1F38C
572
+ :izakaya_lantern: 1F3EE
573
+ :circus_tent: 1F3AA
574
+ :performing_arts: 1F3AD
575
+ :round_pushpin: 1F4CD
576
+ :triangular_flag_on_post: 1F6A9
577
+ :keycap_ten: 1F51F
578
+ :1234: 1F522
579
+ :symbols: 1F523
580
+ :arrow_down: 2B07
581
+ :arrow_left: 2B05
582
+ :capital_abcd: 1F520
583
+ :abcd: 1F521
584
+ :abc: 1F524
585
+ :arrow_right: 27A1
586
+ :arrow_up: 2B06
587
+ :arrow_double_down: 23EC
588
+ :arrow_double_up: 23EB
589
+ :arrows_clockwise: 1F503
590
+ :arrows_counterclockwise: 1F504
591
+ :rewind: 23EA
592
+ :fast_forward: 23E9
593
+ :ok: 1F197
594
+ :twisted_rightwards_arrows: 1F500
595
+ :repeat: 1F501
596
+ :repeat_one: 1F502
597
+ :new: 1F195
598
+ :top: 1F51D
599
+ :cool: 1F192
600
+ :free: 1F193
601
+ :ng: 1F196
602
+ :cinema: 1F3A6
603
+ :sa: 1F202
604
+ :restroom: 1F6BB
605
+ :mens: 1F6B9
606
+ :womens: 1F6BA
607
+ :baby_symbol: 1F6BC
608
+ :no_smoking: 1F6AD
609
+ :wheelchair: 267F
610
+ :baggage_claim: 1F6C4
611
+ :wc: 1F6BE
612
+ :potable_water: 1F6B0
613
+ :put_litter_in_its_place: 1F6AE
614
+ :secret: '3299'
615
+ :congratulations: '3297'
616
+ :m: 24C2
617
+ :passport_control: 1F6C2
618
+ :left_luggage: 1F6C5
619
+ :customs: 1F6C3
620
+ :cl: 1F191
621
+ :sos: 1F198
622
+ :id: 1F194
623
+ :no_entry_sign: 1F6AB
624
+ :underage: 1F51E
625
+ :non-potable_water: 1F6B1
626
+ :no_bicycles: 1F6B3
627
+ :no_pedestrians: 1F6B7
628
+ :children_crossing: 1F6B8
629
+ :no_entry: 26D4
630
+ :eight_spoked_asterisk: '2734'
631
+ :sparkle: '2747'
632
+ :heart_decoration: 1F49F
633
+ :vibration_mode: 1F4F3
634
+ :mobile_phone_off: 1F4F4
635
+ :currency_exchange: 1F4B1
636
+ :aries: '2648'
637
+ :taurus: '2649'
638
+ :gemini: 264A
639
+ :cancer: 264B
640
+ :leo: 264C
641
+ :virgo: 264D
642
+ :libra: 264E
643
+ :scorpius: 264F
644
+ :sagittarius: '2650'
645
+ :capricorn: '2651'
646
+ :aquarius: '2652'
647
+ :pisces: '2653'
648
+ :ophiuchus: 26CE
649
+ :six_pointed_star: 1F52F
650
+ :negative_squared_cross_mark: 274E
651
+ :a: 1F170
652
+ :b: 1F171
653
+ :ab: 1F18E
654
+ :diamond_shape_with_a_dot_inside: 1F4A0
655
+ :end: 1F51A
656
+ :back: 1F519
657
+ :on: 1F51B
658
+ :soon: 1F51C
659
+ :clock1: 1F550
660
+ :clock130: 1F55C
661
+ :clock10: 1F559
662
+ :clock1030: 1F565
663
+ :clock11: 1F55A
664
+ :clock1130: 1F566
665
+ :clock12: 1F55B
666
+ :clock1230: 1F567
667
+ :clock2: 1F551
668
+ :clock230: 1F55D
669
+ :clock3: 1F552
670
+ :clock330: 1F55E
671
+ :clock4: 1F553
672
+ :clock430: 1F55F
673
+ :clock5: 1F554
674
+ :clock530: 1F560
675
+ :clock6: 1F555
676
+ :clock630: 1F561
677
+ :clock7: 1F556
678
+ :clock730: 1F562
679
+ :clock8: 1F557
680
+ :clock830: 1F563
681
+ :clock9: 1F558
682
+ :clock930: 1F564
683
+ :heavy_dollar_sign: 1F4B2
684
+ :x: 274C
685
+ :o: 1F17E
686
+ :heavy_plus_sign: '2795'
687
+ :heavy_minus_sign: '2796'
688
+ :heavy_division_sign: '2797'
689
+ :white_flower: 1F4AE
690
+ :100: 1F4AF
691
+ :heavy_check_mark: '2714'
692
+ :radio_button: 1F518
693
+ :link: 1F517
694
+ :curly_loop: 27B0
695
+ :wavy_dash: '3030'
696
+ :part_alternation_mark: 303D
697
+ :trident: 1F531
698
+ :black_large_square: 2B1B
699
+ :white_large_square: 2B1C
700
+ :white_check_mark: '2705'
701
+ :black_square_button: 1F532
702
+ :white_square_button: 1F533
703
+ :black_circle: 26AB
704
+ :white_circle: 26AA
705
+ :red_circle: 2B55
706
+ :large_blue_circle: 1F535
707
+ :large_blue_diamond: 1F537
708
+ :large_orange_diamond: 1F536
709
+ :small_blue_diamond: 1F539
710
+ :small_orange_diamond: 1F538
711
+ :small_red_triangle: 1F53A
712
+ :small_red_triangle_down: 1F53B
713
+ :next_track: 23ED
714
+ :prev_track: 23EE
715
+ :play_pause: 23EF
716
+ :stopwatch: 23F1
717
+ :eggtimer: 23F2
718
+ :pause: 23F8
719
+ :stop: 23F9
720
+ :record: 23FA
721
+ :pawn: 265F
722
+ :pickaxe: 26CF
723
+ :medic: 26D1
724
+ :chains: 26D3
725
+ :shinto_shrine: 26E9
726
+ :mountain: 26F0
727
+ :beach_with_umbrella: 1F3D6
728
+ :umbrella_on_ground: 26F1
729
+ :skier: 26F7
730
+ :ice_skate: 26F8
731
+ :man_bouncing_ball: 26F9
732
+ :writing_hand: 270D
733
+ :latin_cross: 271D
734
+ :heavy_heart_exclamation: '2763'
735
+ :double_curly_loop: 27BF
736
+ :right_arrow_curving_up: '2934'
737
+ :negative_squared_latin_p: 1F17F
738
+ :here: 1F201
739
+ :night_with_stars: 1F303
740
+ :glowing_star: 1F31F
741
+ :shooting_star: 1F320
742
+ :thermometer: 1F321
743
+ :sun_with_small_cloud: 1F324
744
+ :sun_behind_cloud: 1F325
745
+ :sun_behind_raincloud: 1F326
746
+ :rain: 1F327
747
+ :snow: 1F328
748
+ :lightning: 1F329
749
+ :tornado: 1F32A
750
+ :fog: 1F32B
751
+ :windy: 1F32C
752
+ :hotdog: 1F32D
753
+ :taco: 1F32E
754
+ :burrito: 1F32F
755
+ :hot_pepper: 1F336
756
+ :steaming_bowl: 1F35C
757
+ :pot_of_food: 1F372
758
+ :fork_and_knife_with_plate: 1F37D
759
+ :bottle_with_popping_cork: 1F37E
760
+ :popcorn: 1F37F
761
+ :pine_decoration: 1F38D
762
+ :carp_streamer: 1F38F
763
+ :moon_viewing: 1F391
764
+ :military_medal: 1F396
765
+ :level_slider: 1F39A
766
+ :knobs: 1F39B
767
+ :film: 1F39E
768
+ :studio_microphone: 1F399
769
+ :admission_ticket: 1F39F
770
+ :palette: 1F3A8
771
+ :sports_medal: 1F3C5
772
+ :weight_lifter: 1F3CB
773
+ :golfer: 1F3CC
774
+ :motorcycle: 1F3CD
775
+ :racing_car: 1F3CE
776
+ :cricket_bat_and_ball: 1F3CF
777
+ :volleyball: 1F3D0
778
+ :field_hockey: 1F3D1
779
+ :hockey: 1F3D2
780
+ :pingpong: 1F3D3
781
+ :snowy_mountain: 1F3D4
782
+ :camping: 1F3D5
783
+ :building_construction: 1F3D7
784
+ :house_buildings: 1F3D8
785
+ :cityscape: 1F3D9
786
+ :derelict_house: 1F3DA
787
+ :desert: 1F3DC
788
+ :desert_island: 1F3DD
789
+ :national_park: 1F3DE
790
+ :stadium: 1F3DF
791
+ :classical_building: 1F3DB
792
+ :white_flag: 1F3F3
793
+ :black_flag: 1F3F4
794
+ :rosette: 1F3F5
795
+ :label: 1F3F7
796
+ :badminton: 1F3F8
797
+ :bow_and_arrow: 1F3F9
798
+ :amphora: 1F3FA
799
+ :horse_face: 1F434
800
+ :eye: 1F441
801
+ :ok_gesture: 1F44C
802
+ :running_shoe: 1F45F
803
+ :footprints: 1F463
804
+ :woman_with_tipping_hand: 1F481
805
+ :growing_heart: 1F497
806
+ :heart_with_ribbon: 1F49D
807
+ :tear_off_calendar: 1F4C6
808
+ :chart_with_upwards_trend_yen: 1F4B9
809
+ :open_book: 1F4D6
810
+ :envelope_with_arrow: 1F4E9
811
+ :closed_mailbox_with_raised_flag: 1F4EB
812
+ :iphone_with_arrow: 1F4F2
813
+ :no_mobile_phones: 1F4F5
814
+ :antenna_with_bars: 1F4F6
815
+ :camera_with_flash: 1F4F8
816
+ :film_projector: 1F4FD
817
+ :prayer_beads: 1F4FF
818
+ :speaker_low_volume: 1F509
819
+ :speaker_high_volume: 1F50A
820
+ :left_pointing_magnifying_glass: 1F50D
821
+ :right_pointing_magnifying_glass: 1F50E
822
+ :star_of_david: '2721'
823
+ :large_red_circle: 1F534
824
+ :upwards_button: 1F53C
825
+ :downwards_button: 1F53D
826
+ :om: 1F549
827
+ :dove: 1F54A
828
+ :kaaba: 1F54B
829
+ :mosque: 1F54C
830
+ :synagogue: 1F54D
831
+ :menorah: 1F54E
832
+ :candle: 1F56F
833
+ :mantelpiece_clock: 1F570
834
+ :hole: 1F573
835
+ :man_levitating_in_business_suit: 1F574
836
+ :spy: 1F575
837
+ :spider: 1F577
838
+ :spider_web: 1F578
839
+ :joystick: 1F579
840
+ :man_dancing: 1F57A
841
+ :ballpoint_pen: 1F58A
842
+ :fountain_pen: 1F58B
843
+ :paintbrush: 1F58C
844
+ :crayon: 1F58D
845
+ :raised_hand_with_fingers_splayed: 1F590
846
+ :middle_finger: 1F595
847
+ :vulcan_salute: 1F596
848
+ :black_heart: 1F5A4
849
+ :desktop_computer: 1F5A5
850
+ :printer: 1F5A8
851
+ :computer_mouse: 1F5B1
852
+ :trackball: 1F5B2
853
+ :framed_picture: 1F5BC
854
+ :card_index_dividers: 1F5C2
855
+ :card_file_box: 1F5C3
856
+ :file_cabinet: 1F5C4
857
+ :wastepaper_basket: 1F5D1
858
+ :spiral_notepad: 1F5D2
859
+ :spiral_calendar: 1F5D3
860
+ :compression: 1F5DC
861
+ :old_key: 1F5DD
862
+ :rolled_up_newspaper: 1F5DE
863
+ :dagger: 1F5E1
864
+ :speaking_head: 1F5E3
865
+ :speech_bubble_left: 1F5E8
866
+ :right_anger_bubble: 1F5EF
867
+ :ballot_box: 1F5F3
868
+ :world_map: 1F5FA
869
+ :moai: 1F5FF
870
+ :dark_sunglasses: 1F576
871
+ :slightly_frowning_face: 1F641
872
+ :slightly_smiling_face: 1F642
873
+ :upside_down_face: 1F643
874
+ :face_with_rolling_eyes: 1F644
875
+ :man_bowing: 1F647
876
+ :woman_with_raised_hand: 1F64B
877
+ :woman_frowning: 1F64D
878
+ :woman_pouting: 1F64E
879
+ :high_speed_train: 1F684
880
+ :train_in_tunnel: 1F687
881
+ :tram_car: 1F68B
882
+ :delivery_truck: 1F69A
883
+ :police_car_light: 1F6A8
884
+ :no_littering: 1F6AF
885
+ :pedestrian: 1F6B6
886
+ :couch_and_lamp: 1F6CB
887
+ :sleeping_accommodation: 1F6CC
888
+ :shopping_bags: 1F6Cd
889
+ :bellhop_bell: 1F6CE
890
+ :bed: 1F6CF
891
+ :place_of_worship: 1F6D0
892
+ :stop_sign: 1F6D1
893
+ :shopping_cart: 1F6D2
894
+ :hammer_and_wrench: 1F6E0
895
+ :shield: 1F6E1
896
+ :sock: 1F9E6
897
+ :coat: 1F9E5
898
+ :gloves: 1F9E4
899
+ :scarf: 1F9E3
900
+ :billed_cap: 1F9E2
901
+ :orange_heart: 1F9E1brain
902
+ :zombie: 1F9DF
903
+ :genie: 1F9DE
904
+ :elf: 1F9DD
905
+ :merman: 1F9DC
906
+ :vampire: 1F9DB
907
+ :fairy: 1F9DA
908
+ :witch: 1F9D9
909
+ :woman_in_lotus: 1F9D8
910
+ :man_climbing: 1F9D7
911
+ :man_in_steamy_room: 1F9D6
912
+ :person_with_headscarf: 1F9D5
913
+ :bearded_person: 1F9D4
914
+ :older_adult: 1F9D3
915
+ :child: 1F9D2
916
+ :adult: 1F9D1
917
+ :face_with_monocle: 1F9D0
918
+ :cheese: 1F9C0
919
+ :cricket: 1F997
920
+ :t-rex: 1F996
921
+ :sauropod: 1F995
922
+ :hedgehog: 1F994
923
+ :zebra: 1F993
924
+ :giraffe: 1F992
925
+ :squid: 1F991
926
+ :shrimp: 1F990
927
+ :rhino: 1F98F
928
+ :lizard: 1F98E
929
+ :gorilla: 1F98D
930
+ :deer: 1F98C
931
+ :butterfly: 1F98B
932
+ :fox_face: 1F98A
933
+ :owl: 1F989
934
+ :shark: 1F988
935
+ :bat: 1F987
936
+ :duck: 1F986
937
+ :eagle: 1F985
938
+ :unicorn: 1F984
939
+ :turkey: 1F983
940
+ :scorpion: 1F982
941
+ :lion_face: 1F981
942
+ :crab: 1F980
943
+ :canned_food: 1F96B
944
+ :sandwich: 1F96A
945
+ :cut_of_meat: 1F969
946
+ :pretzel: 1F968
947
+ :pie: 1F967
948
+ :broccoli: 1F966
949
+ :coconut: 1F965
950
+ :cup_with_straw: 1F964
951
+ :bowl: 1F963
952
+ :chopsticks: 1F962
953
+ :takeout_box: 1F961
954
+ :fortune_cookie: 1F960
955
+ :dumping: 1F95F
956
+ :pancakes: 1F95E
957
+ :kiwi: 1F95D
958
+ :peanuts: 1F95C
959
+ :glass_of_milk: 1F95B
960
+ :doner_kebab: 1F959
961
+ :stuffed_pita: 1F959
962
+ :paella: 1F958
963
+ :salad: 1F957
964
+ :baguette: 1F956
965
+ :carrot: 1F955
966
+ :potato: 1F954
967
+ :bacon: 1F953
968
+ :cucumber: 1F952
969
+ :avocado: 1F951
970
+ :croissant: 1F950
971
+ :flying_disc: 1F94F
972
+ :softball: 1F94E
973
+ :lacrosse: 1F94D
974
+ :curling_stone: 1F94C
975
+ :martial_arts_uniform: 1F94B
976
+ :gi: 1F94B
977
+ :boxing_glove: 1F94A
978
+ :third_place: 1F949
979
+ :second_place: 1F948
980
+ :first_place: 1F947
981
+ :goal_net: 1F945
982
+ :spoon: 1F944
983
+ :tumbler_glass: 1F943
984
+ :clinking_glasses: 1F942
985
+ :drum: 1F941
986
+ :wilted_flower: 1F940
987
+ :handball: 1F93E
988
+ :water_polo: 1F93D
989
+ :wrestling: 1F93C
990
+ :fencing: 1F93A
991
+ :juggling: 1F939
992
+ :gymnastics: 1F938
993
+ :woman_shrugging: 1F937
994
+ :mrs_claus: 1F936
995
+ :man_in_tuxedo: 1F935
996
+ :king: 1F934
997
+ :selfie: 1F933
998
+ :palms_up: 1F932
999
+ :breastfeeding: 1F931
1000
+ :pregnant_woman: 1F930
1001
+ :exploding_head: 1F92F
1002
+ :vomiting: 1F92E
1003
+ :face_with_hand_over_mouth: 1F92D
1004
+ :face_with_symbols_on_mouth: 1F92C
1005
+ :shushing_face: 1F92B
1006
+ :zany_face: 1F92A
1007
+ :oil_drum: 1F6E2
1008
+ :motorway: 1F6E3
1009
+ :railway_track: 1F6E4
1010
+ :motorboat: 1F6E5
1011
+ :small_airplane: 1F6E9
1012
+ :airplane_departure: 1F6EB
1013
+ :airplane_arrival: 1F6EC
1014
+ :passenger_ship: 1F6F3
1015
+ :scooter: 1F6F4
1016
+ :motor_scooter: 1F6F5
1017
+ :canoe: 1F6F6
1018
+ :sled: 1F6F7
1019
+ :ufo: 1F6F8
1020
+ :skateboard: 1F6F9
1021
+ :auto_rickshaw: 1F6FA
1022
+ :zipper_mouth_face: 1F910
1023
+ :money_mouth: 1F911
1024
+ :face_with_thermometer: 1F912
1025
+ :nerd_face: 1F913
1026
+ :thinking_face: 1F914
1027
+ :face_with_head_bandage: 1F915
1028
+ :robot_face: 1F916
1029
+ :hugging_face: 1F917
1030
+ :sign_of_the_horns: 1F918
1031
+ :shaka: 1F919
1032
+ :call_me_hands: 1F919
1033
+ :raised_back_of_hand: 1F91A
1034
+ :left_fist: 1F91B
1035
+ :right_fist: 1F91C
1036
+ :handshake: 1F91D
1037
+ :crossed_fingers: 1F91E
1038
+ :i_love_you_hand: 1F91F
1039
+ :cowboy_hat_face: 1F920
1040
+ :clown: 1F921
1041
+ :nauseated_face: 1F922
1042
+ :rolling_on_the_floor_laughing: 1F923
1043
+ :rofl: 1F923
1044
+ :drooling_face: 1F924
1045
+ :lying_face: 1F925
1046
+ :face_palm: 1F926
1047
+ :sneezing_face: 1F927
1048
+ :face_with_raised_eyebrow: 1F928
1049
+ :star_struck: 1F929