markita 1.0.210828 → 3.0.210912

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a93274ab77ea3d606b0c0c696c73914786ee9baf0c7c880bdceec4cb1ae4cb6e
4
- data.tar.gz: 7395b0d8d21fb98e929f5ca68548129fd6ccb713f8ef383504bbc59d0bd36436
3
+ metadata.gz: b39bace23d9d3e2c779379b38fe440abe26213ad3c0b6933fd9d7f6d2679b4af
4
+ data.tar.gz: aeafe146d44a85bcc4aafb16130f964701134c7b7c7bb8dec2bd82fe00e30186
5
5
  SHA512:
6
- metadata.gz: 90097792167ea98b81bad5a4682d680c323ed23c7507b355c53c05127b4f1a7177fe04f5df68522d432d4b84fa623c0e620b2f3dfdab44a72e7f07d5b6740180
7
- data.tar.gz: 41d9d9716c26f65dc41f183e6d0bbf3ba93bdfe00690ce60fd2282958165ba5074cb641125d9dedfcabed4347ace94fca09c591d1d7382c0390fe5f433b5d333
6
+ metadata.gz: 17775d54b7269655d00792aaed965f332b9c29ff063f9a333794ef32f1d07bc7f05d3c663ec616ddd462059ed6e03e9282669e9db7eabb37d0bfc8cb7f11d17f
7
+ data.tar.gz: 58285bfad94c859d7c5ab0780647b725eb78b317c34fbcda306c11d117aa31cc699a297f27c0e34a6b86dd0577b9cafd4f6c5049f5d4dabda80f418a91352e83
data/README.md CHANGED
@@ -1,22 +1,21 @@
1
1
  # Markita
2
2
 
3
- * [VERSION 1.0.210828](https://github.com/carlosjhr64/markita/releases)
3
+ * [VERSION 3.0.210912](https://github.com/carlosjhr64/markita/releases)
4
4
  * [github](https://www.github.com/carlosjhr64/markita)
5
5
  * [rubygems](https://rubygems.org/gems/markita)
6
6
 
7
7
  ## DESCRIPTION
8
8
 
9
- A [Sinatra](http://sinatrarb.com) Markdown server.
9
+ A Sinatra Markdown server.
10
10
 
11
- Uses [Kramdown](https://kramdown.gettalong.org/index.html) for the Markdown to
12
- HTML conversion.
11
+ With many extra non-standard features.
13
12
 
14
13
  ## INSTALL
15
- ```shell
14
+ ```console
16
15
  $ gem install markita
17
16
  ```
18
17
  ## HELP
19
- ```shell
18
+ ```console
20
19
  $ markita --help
21
20
  Usage:
22
21
  markita [:options+]
@@ -45,30 +44,248 @@ Types:
45
44
  ```
46
45
  ## FEATURES
47
46
 
48
- * Check(Ballot) boxes for task lists
49
- * Image placement hints
50
- * One line forms
51
- * Template substitutions
52
- * ONLY SERVES MARKDOWN PAGES:`/**/*.md`(omit extension `.md` in the url)
53
- * ONLY SERVES PNG and GIF IMAGES: `/**/*.png`, and `/**/*.gif`
54
- * See [`lib/markita/plug`](lib/markita/plug) for examples of plugins
47
+ ### Ballot boxes
48
+
49
+ - [ ] Empty ballot
50
+ - [x] Marked ballot
51
+
52
+ Markdown:
53
+
54
+ - [ ] Empty ballot
55
+ - [x] Marked ballot
56
+
57
+ ### Image placement
58
+
59
+ Markdown:
60
+
61
+ ![ Centered Image ](/img/image.png)
62
+ ![Left Floating ](/img/image.png)
63
+ ![ Right Floating](/img/image.png)
64
+ Image centered above.
65
+ Image to the left.
66
+ Image to the right.
67
+ And set a HR bar below.
68
+ ---
69
+
70
+ ### Forms
71
+
72
+ Markdown:
73
+
74
+ A get method form without submit button on single field:
75
+ ! Google:[q] (https://www.google.com/search)
76
+
77
+ A post method form due to the password field with
78
+ a submit button due to multiple fields:
79
+ ! Username:[user] Password:[*pwd] (/login.html)
80
+
81
+ A multi-line form with default entry and hidden field:
82
+ ! Name:[user] [status="active"] (/register.html)
83
+ ! Address:[address]
84
+ ! Code:[code="1234"]
85
+
86
+ ### Template substitutions
87
+
88
+ Markdown:
89
+
90
+ ! template = "* [&query;](https://www.google.com/search?q=&QUERY;)"
91
+ ! regx = /^\* (?<query>.*)$/
92
+ * Grumpy Cat
93
+ * It's over 9000!
94
+
95
+ Template clears after first non-match.
96
+ Note: on upcased keys, value is CGI escaped.
97
+
98
+ ### Split table
99
+
100
+ <table><tr><td>
101
+ <p>
102
+ Top left
103
+ </p>
104
+ </td><td>
105
+ <p>
106
+ Top center
107
+ </p>
108
+ </td><td>
109
+ <p>
110
+ Top right
111
+ </p>
112
+ </td></tr><tr><td>
113
+ <p>
114
+ Middle left
115
+ </p>
116
+ </td><td>
117
+ <p>
118
+ Middle center
119
+ </p>
120
+ </td><td>
121
+ <p>
122
+ Middle left
123
+ </p>
124
+ </td></tr><tr><td>
125
+ <p>
126
+ Bottom left
127
+ </p>
128
+ </td><td>
129
+ <p>
130
+ Bottom center
131
+ </p>
132
+ </td><td>
133
+ <p>
134
+ Bottom right
135
+ </p>
136
+ </td></tr></table>
137
+
138
+ Markdown:
139
+
140
+ |:
141
+ Top left
142
+ |
143
+ Top center
144
+ |
145
+ Top right
146
+ :|:
147
+ Middle left
148
+ |
149
+ Middle center
150
+ |
151
+ Middle left
152
+ :|:
153
+ Bottom left
154
+ |
155
+ Bottom center
156
+ |
157
+ Bottom right
158
+ :|
159
+
160
+ ### Inline links, code, bold, italic, strikes, and underline
161
+
162
+ <p>
163
+ The <b>bold</b> and <i>italics</i> <s>strikes</s> at <u>underlined</u>,
164
+ while a <a href="#Markita">link to #Markita</a>
165
+ sees the <code>~ code ~ "a*b*c"</code> to <a href="https://github.com">https://github.com</a>.
166
+ </p>
167
+
168
+ Markdown:
169
+
170
+ The *bold* and "italics" ~strikes~ at _underlined_,
171
+ while a [link to #Markita](#Markita)
172
+ sees the `~ code ~ "a*b*c"` to [https://github.com].
173
+
174
+ ### Lists: ordered, un-ordered, definitions
175
+
176
+ 1. One
177
+ 2. Two
178
+
179
+ * Point A
180
+ * Point B
181
+
182
+ <dl>
183
+ <dt>Word</dt>
184
+ <dd>Definition of the word</dd>
185
+ <dt>Symbol</dt>
186
+ <dd>Usage for the symbol</dd>
187
+ </dl>
188
+
189
+ Markdown:
190
+
191
+ 1. One
192
+ 2. Two
193
+
194
+ * Point A
195
+ * Point B
196
+
197
+ : Word:
198
+ : Definition of the word
199
+ : Symbol:
200
+ : Usage for the symbol
201
+
202
+ ### Block-quote
203
+
204
+ Like Hamlet says...
205
+ > To be or not to be...
206
+ > That is the question!
55
207
 
56
- Optionally:
208
+ Markdown:
57
209
 
58
- * Place your custom `/favicon.ico`
59
- * Place your custom `/highlight.css`
60
- * Place `/.cert.crt` and `/.pkey.pem` for SSL(https)
61
- * Place `sha256sum` of site's password in `/.valid-id`
210
+ Like Hamlet says...
211
+ > To be or not to be...
212
+ > That is the question!
213
+
214
+ ### Code
215
+ ```ruby
216
+ def wut
217
+ puts "Wut?"
218
+ end
219
+ ```
220
+ Markdown:
221
+
222
+ ```ruby
223
+ def wut
224
+ puts "Wut?"
225
+ end
226
+ ```
227
+
228
+ ### Tables
229
+
230
+ | Integer | Float | Symbol | Word |
231
+ | ------: | ----: | :----: | :------------ |
232
+ | 1 | 1.0 | $ | The word |
233
+ | 1234 | 12.3 | & | On the street |
234
+
235
+ Markdown:
236
+
237
+ | Integer | Float | Symbol | Word |
238
+ | ------: | ----: | :----: | :------------ |
239
+ | 1 | 1.0 | $ | The word |
240
+ | 1234 | 12.3 | & | On the street |
241
+
242
+ ### Attributes
243
+
244
+ Markdown:
245
+
246
+ {: style="color: blue;"}
247
+ You can set the attributes for most blocks.
248
+
249
+ ### Embed text
250
+
251
+ Markdown:
252
+
253
+ !> /path-to/ascii_art.txt
254
+
255
+ Must be a `*.txt` file.
256
+ Useful for ASCII art.
257
+
258
+ ### Emojis
259
+
260
+ I :heart: to :laughing:!
261
+
262
+ Markdown:
263
+
264
+ I :heart: to :laughing:!
265
+
266
+ ### Footnotes
267
+
268
+ Markdown:
269
+
270
+ There once was a man from Nantucket[^1]
271
+ Who kept all his cash[^2] in a bucket.
272
+ But his daugter, named Nan,
273
+ Ran away with a man
274
+ And as for the bucket, Natucket.[^3]
275
+
276
+ [^1]: Nantucket is an island in the U.S. state of Massachusetts.
277
+ [^2]: Cash is money in currency.
278
+ [^3]: Read as "Nan took it."
62
279
 
63
280
  ## HOW-TOs
64
281
 
65
282
  ### Set site password:
66
- ```shell
283
+ ```console
67
284
  $ # Assuming ~/vimwiki is your site's root...
68
285
  $ echo -n '<SitePasswordHere>' | sha256sum | grep -o '^\w*' > ~/vimwiki/.valid-id
69
286
  ```
70
287
  ### Set site custom favicon, css, not found page, and login form and fail page:
71
- ```shell
288
+ ```console
72
289
  $ # Assuming ~/vimwiki is your site's root...
73
290
  $ # Note that you'll have to restart the server on any change to these:
74
291
  $ cp /path-to/custom/favicon.ico ~/vimwiki/favicon.ico
@@ -86,51 +303,19 @@ $ mv cert.crt ~/vimwiki/.cert.crt
86
303
  $ mv pkey.pem ~/vimwiki/.pkey.pem
87
304
  ```
88
305
  ### Allow localhost to bypass password:
89
- ```shell
306
+ ```console
90
307
  $ # Assuming ~/vimwiki with a site password set...
91
308
  $ markita --allowed=127.0.0.1
92
309
  ./bin/markita-1.0.210826
93
310
  == Sinatra (v2.1.0) has taken the stage on 8080 for development with backup from Thin
94
311
  ```
95
- ### Ballot boxes
96
- ```txt
97
- - [ ] This is an emty ballot box
98
- - [x] This is a checked ballot box
99
- ```
100
- ### Image placement hints:
101
- ```txt
102
- Left and right spaces of the alternate text of an image hints placement.
103
- The following image will be placed centered.
104
-
105
- ![ Centered Image ](/img/image.png)
106
-
107
- ![Left Floating ](/img/image.png)
108
- The above specified image will float left.
109
-
110
- ![ Right Floating](/img/image.png)
111
- The above specified image will float right.
112
- ```
113
- ### One line forms
114
- ```txt
115
- This will do a get method form:
116
-
117
- Google:[q](https://www.google.com/search)
118
-
119
- Due to the password field, this will do a post method form:
120
-
121
- Username:[user] Password:[*pwd](/login.html)
122
- ```
123
- ### Template substitutions
124
- ```txt
125
- In the template string, uppercase keys are CGI escaped:
126
-
127
- <!-- template: "* [&query;](https://www.google.com/search?q=&QUERY;)" -->
128
- <!-- regx: /^\* (?<query>.*)$/ -->
129
- * Grumpy Cat
130
- * It's over 9000!
131
-
132
- The substitutions are active until the end of the block.
133
- If template is not provided, the line itself will be the template.
312
+ ### Adding plugs
313
+ ```console
314
+ $ # Assuming ~/vimwiki
315
+ $ mkdir ~/viwiki/plug
316
+ $ # Then copy (or create) your plug there.
317
+ $ # For example:
318
+ $ GET https://raw.githubusercontent.com/carlosjhr64/markita/main/plug/todotxt.rb > ~/vimwiki/plug/todotxt.rb
134
319
  ```
135
320
  ## LICENSE
136
321
 
data/data/emojis.tsv ADDED
@@ -0,0 +1,1874 @@
1
+ +1 1f44d
2
+ -1 1f44e
3
+ 100 1f4af
4
+ 1234 1f522
5
+ 1st_place_medal 1f947
6
+ 2nd_place_medal 1f948
7
+ 3rd_place_medal 1f949
8
+ 8ball 1f3b1
9
+ a 1f170
10
+ ab 1f18e
11
+ abacus 1f9ee
12
+ abc 1f524
13
+ abcd 1f521
14
+ accept 1f251
15
+ accordion 1fa97
16
+ adhesive_bandage 1fa79
17
+ adult 1f9d1
18
+ aerial_tramway 1f6a1
19
+ afghanistan 1f1e6
20
+ airplane 2708
21
+ aland_islands 1f1e6
22
+ alarm_clock 23f0
23
+ albania 1f1e6
24
+ alembic 2697
25
+ algeria 1f1e9
26
+ alien 1f47d
27
+ ambulance 1f691
28
+ american_samoa 1f1e6
29
+ amphora 1f3fa
30
+ anatomical_heart 1fac0
31
+ anchor 2693
32
+ andorra 1f1e6
33
+ angel 1f47c
34
+ anger 1f4a2
35
+ angola 1f1e6
36
+ angry 1f620
37
+ anguilla 1f1e6
38
+ anguished 1f627
39
+ ant 1f41c
40
+ antarctica 1f1e6
41
+ antigua_barbuda 1f1e6
42
+ apple 1f34e
43
+ aquarius 2652
44
+ argentina 1f1e6
45
+ aries 2648
46
+ armenia 1f1e6
47
+ arrow_backward 25c0
48
+ arrow_double_down 23ec
49
+ arrow_double_up 23eb
50
+ arrow_down 2b07
51
+ arrow_down_small 1f53d
52
+ arrow_forward 25b6
53
+ arrow_heading_down 2935
54
+ arrow_heading_up 2934
55
+ arrow_left 2b05
56
+ arrow_lower_left 2199
57
+ arrow_lower_right 2198
58
+ arrow_right 27a1
59
+ arrow_right_hook 21aa
60
+ arrow_up 2b06
61
+ arrow_up_down 2195
62
+ arrow_up_small 1f53c
63
+ arrow_upper_left 2196
64
+ arrow_upper_right 2197
65
+ arrows_clockwise 1f503
66
+ arrows_counterclockwise 1f504
67
+ art 1f3a8
68
+ articulated_lorry 1f69b
69
+ artificial_satellite 1f6f0
70
+ artist 1f9d1
71
+ aruba 1f1e6
72
+ ascension_island 1f1e6
73
+ asterisk 002a
74
+ astonished 1f632
75
+ astronaut 1f9d1
76
+ athletic_shoe 1f45f
77
+ atm 1f3e7
78
+ atom atom
79
+ atom_symbol 269b
80
+ australia 1f1e6
81
+ austria 1f1e6
82
+ auto_rickshaw 1f6fa
83
+ avocado 1f951
84
+ axe 1fa93
85
+ azerbaijan 1f1e6
86
+ b 1f171
87
+ baby 1f476
88
+ baby_bottle 1f37c
89
+ baby_chick 1f424
90
+ baby_symbol 1f6bc
91
+ back 1f519
92
+ bacon 1f953
93
+ badger 1f9a1
94
+ badminton 1f3f8
95
+ bagel 1f96f
96
+ baggage_claim 1f6c4
97
+ baguette_bread 1f956
98
+ bahamas 1f1e7
99
+ bahrain 1f1e7
100
+ balance_scale 2696
101
+ bald_man 1f468
102
+ bald_woman 1f469
103
+ ballet_shoes 1fa70
104
+ balloon 1f388
105
+ ballot_box 1f5f3
106
+ ballot_box_with_check 2611
107
+ bamboo 1f38d
108
+ banana 1f34c
109
+ bangbang 203c
110
+ bangladesh 1f1e7
111
+ banjo 1fa95
112
+ bank 1f3e6
113
+ bar_chart 1f4ca
114
+ barbados 1f1e7
115
+ barber 1f488
116
+ baseball 26be
117
+ basecamp basecamp
118
+ basecampy basecampy
119
+ basket 1f9fa
120
+ basketball 1f3c0
121
+ basketball_man 26f9
122
+ basketball_woman 26f9
123
+ bat 1f987
124
+ bath 1f6c0
125
+ bathtub 1f6c1
126
+ battery 1f50b
127
+ beach_umbrella 1f3d6
128
+ bear 1f43b
129
+ bearded_person 1f9d4
130
+ beaver 1f9ab
131
+ bed 1f6cf
132
+ bee 1f41d
133
+ beer 1f37a
134
+ beers 1f37b
135
+ beetle 1fab2
136
+ beginner 1f530
137
+ belarus 1f1e7
138
+ belgium 1f1e7
139
+ belize 1f1e7
140
+ bell 1f514
141
+ bell_pepper 1fad1
142
+ bellhop_bell 1f6ce
143
+ benin 1f1e7
144
+ bento 1f371
145
+ bermuda 1f1e7
146
+ beverage_box 1f9c3
147
+ bhutan 1f1e7
148
+ bicyclist 1f6b4
149
+ bike 1f6b2
150
+ biking_man 1f6b4
151
+ biking_woman 1f6b4
152
+ bikini 1f459
153
+ billed_cap 1f9e2
154
+ biohazard 2623
155
+ bird 1f426
156
+ birthday 1f382
157
+ bison 1f9ac
158
+ black_cat 1f408
159
+ black_circle 26ab
160
+ black_flag 1f3f4
161
+ black_heart 1f5a4
162
+ black_joker 1f0cf
163
+ black_large_square 2b1b
164
+ black_medium_small_square 25fe
165
+ black_medium_square 25fc
166
+ black_nib 2712
167
+ black_small_square 25aa
168
+ black_square_button 1f532
169
+ blond_haired_man 1f471
170
+ blond_haired_person 1f471
171
+ blond_haired_woman 1f471
172
+ blonde_woman 1f471
173
+ blossom 1f33c
174
+ blowfish 1f421
175
+ blue_book 1f4d8
176
+ blue_car 1f699
177
+ blue_heart 1f499
178
+ blue_square 1f7e6
179
+ blueberries 1fad0
180
+ blush 1f60a
181
+ boar 1f417
182
+ boat 26f5
183
+ bolivia 1f1e7
184
+ bomb 1f4a3
185
+ bone 1f9b4
186
+ book 1f4d6
187
+ bookmark 1f516
188
+ bookmark_tabs 1f4d1
189
+ books 1f4da
190
+ boom 1f4a5
191
+ boomerang 1fa83
192
+ boot 1f462
193
+ bosnia_herzegovina 1f1e7
194
+ botswana 1f1e7
195
+ bouncing_ball_man 26f9
196
+ bouncing_ball_person 26f9
197
+ bouncing_ball_woman 26f9
198
+ bouquet 1f490
199
+ bouvet_island 1f1e7
200
+ bow 1f647
201
+ bow_and_arrow 1f3f9
202
+ bowing_man 1f647
203
+ bowing_woman 1f647
204
+ bowl_with_spoon 1f963
205
+ bowling 1f3b3
206
+ bowtie bowtie
207
+ boxing_glove 1f94a
208
+ boy 1f466
209
+ brain 1f9e0
210
+ brazil 1f1e7
211
+ bread 1f35e
212
+ breast_feeding 1f931
213
+ bricks 1f9f1
214
+ bride_with_veil 1f470
215
+ bridge_at_night 1f309
216
+ briefcase 1f4bc
217
+ british_indian_ocean_territory 1f1ee
218
+ british_virgin_islands 1f1fb
219
+ broccoli 1f966
220
+ broken_heart 1f494
221
+ broom 1f9f9
222
+ brown_circle 1f7e4
223
+ brown_heart 1f90e
224
+ brown_square 1f7eb
225
+ brunei 1f1e7
226
+ bubble_tea 1f9cb
227
+ bucket 1faa3
228
+ bug 1f41b
229
+ building_construction 1f3d7
230
+ bulb 1f4a1
231
+ bulgaria 1f1e7
232
+ bullettrain_front 1f685
233
+ bullettrain_side 1f684
234
+ burkina_faso 1f1e7
235
+ burrito 1f32f
236
+ burundi 1f1e7
237
+ bus 1f68c
238
+ business_suit_levitating 1f574
239
+ busstop 1f68f
240
+ bust_in_silhouette 1f464
241
+ busts_in_silhouette 1f465
242
+ butter 1f9c8
243
+ butterfly 1f98b
244
+ cactus 1f335
245
+ cake 1f370
246
+ calendar 1f4c6
247
+ call_me_hand 1f919
248
+ calling 1f4f2
249
+ cambodia 1f1f0
250
+ camel 1f42b
251
+ camera 1f4f7
252
+ camera_flash 1f4f8
253
+ cameroon 1f1e8
254
+ camping 1f3d5
255
+ canada 1f1e8
256
+ canary_islands 1f1ee
257
+ cancer 264b
258
+ candle 1f56f
259
+ candy 1f36c
260
+ canned_food 1f96b
261
+ canoe 1f6f6
262
+ cape_verde 1f1e8
263
+ capital_abcd 1f520
264
+ capricorn 2651
265
+ car 1f697
266
+ card_file_box 1f5c3
267
+ card_index 1f4c7
268
+ card_index_dividers 1f5c2
269
+ caribbean_netherlands 1f1e7
270
+ carousel_horse 1f3a0
271
+ carpentry_saw 1fa9a
272
+ carrot 1f955
273
+ cartwheeling 1f938
274
+ cat 1f431
275
+ cat2 1f408
276
+ cayman_islands 1f1f0
277
+ cd 1f4bf
278
+ central_african_republic 1f1e8
279
+ ceuta_melilla 1f1ea
280
+ chad 1f1f9
281
+ chains 26d3
282
+ chair 1fa91
283
+ champagne 1f37e
284
+ chart 1f4b9
285
+ chart_with_downwards_trend 1f4c9
286
+ chart_with_upwards_trend 1f4c8
287
+ checkered_flag 1f3c1
288
+ cheese 1f9c0
289
+ cherries 1f352
290
+ cherry_blossom 1f338
291
+ chess_pawn 265f
292
+ chestnut 1f330
293
+ chicken 1f414
294
+ child 1f9d2
295
+ children_crossing 1f6b8
296
+ chile 1f1e8
297
+ chipmunk 1f43f
298
+ chocolate_bar 1f36b
299
+ chopsticks 1f962
300
+ christmas_island 1f1e8
301
+ christmas_tree 1f384
302
+ church 26ea
303
+ cinema 1f3a6
304
+ circus_tent 1f3aa
305
+ city_sunrise 1f307
306
+ city_sunset 1f306
307
+ cityscape 1f3d9
308
+ cl 1f191
309
+ clamp 1f5dc
310
+ clap 1f44f
311
+ clapper 1f3ac
312
+ classical_building 1f3db
313
+ climbing 1f9d7
314
+ climbing_man 1f9d7
315
+ climbing_woman 1f9d7
316
+ clinking_glasses 1f942
317
+ clipboard 1f4cb
318
+ clipperton_island 1f1e8
319
+ clock1 1f550
320
+ clock10 1f559
321
+ clock1030 1f565
322
+ clock11 1f55a
323
+ clock1130 1f566
324
+ clock12 1f55b
325
+ clock1230 1f567
326
+ clock130 1f55c
327
+ clock2 1f551
328
+ clock230 1f55d
329
+ clock3 1f552
330
+ clock330 1f55e
331
+ clock4 1f553
332
+ clock430 1f55f
333
+ clock5 1f554
334
+ clock530 1f560
335
+ clock6 1f555
336
+ clock630 1f561
337
+ clock7 1f556
338
+ clock730 1f562
339
+ clock8 1f557
340
+ clock830 1f563
341
+ clock9 1f558
342
+ clock930 1f564
343
+ closed_book 1f4d5
344
+ closed_lock_with_key 1f510
345
+ closed_umbrella 1f302
346
+ cloud 2601
347
+ cloud_with_lightning 1f329
348
+ cloud_with_lightning_and_rain 26c8
349
+ cloud_with_rain 1f327
350
+ cloud_with_snow 1f328
351
+ clown_face 1f921
352
+ clubs 2663
353
+ cn 1f1e8
354
+ coat 1f9e5
355
+ cockroach 1fab3
356
+ cocktail 1f378
357
+ coconut 1f965
358
+ cocos_islands 1f1e8
359
+ coffee 2615
360
+ coffin 26b0
361
+ coin 1fa99
362
+ cold_face 1f976
363
+ cold_sweat 1f630
364
+ collision 1f4a5
365
+ colombia 1f1e8
366
+ comet 2604
367
+ comoros 1f1f0
368
+ compass 1f9ed
369
+ computer 1f4bb
370
+ computer_mouse 1f5b1
371
+ confetti_ball 1f38a
372
+ confounded 1f616
373
+ confused 1f615
374
+ congo_brazzaville 1f1e8
375
+ congo_kinshasa 1f1e8
376
+ congratulations 3297
377
+ construction 1f6a7
378
+ construction_worker 1f477
379
+ construction_worker_man 1f477
380
+ construction_worker_woman 1f477
381
+ control_knobs 1f39b
382
+ convenience_store 1f3ea
383
+ cook 1f9d1
384
+ cook_islands 1f1e8
385
+ cookie 1f36a
386
+ cool 1f192
387
+ cop 1f46e
388
+ copyright 00a9
389
+ corn 1f33d
390
+ costa_rica 1f1e8
391
+ cote_divoire 1f1e8
392
+ couch_and_lamp 1f6cb
393
+ couple 1f46b
394
+ couple_with_heart 1f491
395
+ couple_with_heart_man_man 1f468
396
+ couple_with_heart_woman_man 1f469
397
+ couple_with_heart_woman_woman 1f469
398
+ couplekiss 1f48f
399
+ couplekiss_man_man 1f468
400
+ couplekiss_man_woman 1f469
401
+ couplekiss_woman_woman 1f469
402
+ cow 1f42e
403
+ cow2 1f404
404
+ cowboy_hat_face 1f920
405
+ crab 1f980
406
+ crayon 1f58d
407
+ credit_card 1f4b3
408
+ crescent_moon 1f319
409
+ cricket 1f997
410
+ cricket_game 1f3cf
411
+ croatia 1f1ed
412
+ crocodile 1f40a
413
+ croissant 1f950
414
+ crossed_fingers 1f91e
415
+ crossed_flags 1f38c
416
+ crossed_swords 2694
417
+ crown 1f451
418
+ cry 1f622
419
+ crying_cat_face 1f63f
420
+ crystal_ball 1f52e
421
+ cuba 1f1e8
422
+ cucumber 1f952
423
+ cup_with_straw 1f964
424
+ cupcake 1f9c1
425
+ cupid 1f498
426
+ curacao 1f1e8
427
+ curling_stone 1f94c
428
+ curly_haired_man 1f468
429
+ curly_haired_woman 1f469
430
+ curly_loop 27b0
431
+ currency_exchange 1f4b1
432
+ curry 1f35b
433
+ cursing_face 1f92c
434
+ custard 1f36e
435
+ customs 1f6c3
436
+ cut_of_meat 1f969
437
+ cyclone 1f300
438
+ cyprus 1f1e8
439
+ czech_republic 1f1e8
440
+ dagger 1f5e1
441
+ dancer 1f483
442
+ dancers 1f46f
443
+ dancing_men 1f46f
444
+ dancing_women 1f46f
445
+ dango 1f361
446
+ dark_sunglasses 1f576
447
+ dart 1f3af
448
+ dash 1f4a8
449
+ date 1f4c5
450
+ de 1f1e9
451
+ deaf_man 1f9cf
452
+ deaf_person 1f9cf
453
+ deaf_woman 1f9cf
454
+ deciduous_tree 1f333
455
+ deer 1f98c
456
+ denmark 1f1e9
457
+ department_store 1f3ec
458
+ derelict_house 1f3da
459
+ desert 1f3dc
460
+ desert_island 1f3dd
461
+ desktop_computer 1f5a5
462
+ detective 1f575
463
+ diamond_shape_with_a_dot_inside 1f4a0
464
+ diamonds 2666
465
+ diego_garcia 1f1e9
466
+ disappointed 1f61e
467
+ disappointed_relieved 1f625
468
+ disguised_face 1f978
469
+ diving_mask 1f93f
470
+ diya_lamp 1fa94
471
+ dizzy 1f4ab
472
+ dizzy_face 1f635
473
+ djibouti 1f1e9
474
+ dna 1f9ec
475
+ do_not_litter 1f6af
476
+ dodo 1f9a4
477
+ dog 1f436
478
+ dog2 1f415
479
+ dollar 1f4b5
480
+ dolls 1f38e
481
+ dolphin 1f42c
482
+ dominica 1f1e9
483
+ dominican_republic 1f1e9
484
+ door 1f6aa
485
+ doughnut 1f369
486
+ dove 1f54a
487
+ dragon 1f409
488
+ dragon_face 1f432
489
+ dress 1f457
490
+ dromedary_camel 1f42a
491
+ drooling_face 1f924
492
+ drop_of_blood 1fa78
493
+ droplet 1f4a7
494
+ drum 1f941
495
+ duck 1f986
496
+ dumpling 1f95f
497
+ dvd 1f4c0
498
+ e-mail 1f4e7
499
+ eagle 1f985
500
+ ear 1f442
501
+ ear_of_rice 1f33e
502
+ ear_with_hearing_aid 1f9bb
503
+ earth_africa 1f30d
504
+ earth_americas 1f30e
505
+ earth_asia 1f30f
506
+ ecuador 1f1ea
507
+ egg 1f95a
508
+ eggplant 1f346
509
+ egypt 1f1ea
510
+ eight 0038
511
+ eight_pointed_black_star 2734
512
+ eight_spoked_asterisk 2733
513
+ eject_button 23cf
514
+ el_salvador 1f1f8
515
+ electric_plug 1f50c
516
+ electron electron
517
+ elephant 1f418
518
+ elevator 1f6d7
519
+ elf 1f9dd
520
+ elf_man 1f9dd
521
+ elf_woman 1f9dd
522
+ email 1f4e7
523
+ end 1f51a
524
+ england 1f3f4
525
+ envelope 2709
526
+ envelope_with_arrow 1f4e9
527
+ equatorial_guinea 1f1ec
528
+ eritrea 1f1ea
529
+ es 1f1ea
530
+ estonia 1f1ea
531
+ ethiopia 1f1ea
532
+ eu 1f1ea
533
+ euro 1f4b6
534
+ european_castle 1f3f0
535
+ european_post_office 1f3e4
536
+ european_union 1f1ea
537
+ evergreen_tree 1f332
538
+ exclamation 2757
539
+ exploding_head 1f92f
540
+ expressionless 1f611
541
+ eye 1f441
542
+ eye_speech_bubble 1f441
543
+ eyeglasses 1f453
544
+ eyes 1f440
545
+ face_exhaling 1f62e
546
+ face_in_clouds 1f636
547
+ face_with_head_bandage 1f915
548
+ face_with_spiral_eyes 1f635
549
+ face_with_thermometer 1f912
550
+ facepalm 1f926
551
+ facepunch 1f44a
552
+ factory 1f3ed
553
+ factory_worker 1f9d1
554
+ fairy 1f9da
555
+ fairy_man 1f9da
556
+ fairy_woman 1f9da
557
+ falafel 1f9c6
558
+ falkland_islands 1f1eb
559
+ fallen_leaf 1f342
560
+ family 1f46a
561
+ family_man_boy 1f468
562
+ family_man_boy_boy 1f468
563
+ family_man_girl 1f468
564
+ family_man_girl_boy 1f468
565
+ family_man_girl_girl 1f468
566
+ family_man_man_boy 1f468
567
+ family_man_man_boy_boy 1f468
568
+ family_man_man_girl 1f468
569
+ family_man_man_girl_boy 1f468
570
+ family_man_man_girl_girl 1f468
571
+ family_man_woman_boy 1f468
572
+ family_man_woman_boy_boy 1f468
573
+ family_man_woman_girl 1f468
574
+ family_man_woman_girl_boy 1f468
575
+ family_man_woman_girl_girl 1f468
576
+ family_woman_boy 1f469
577
+ family_woman_boy_boy 1f469
578
+ family_woman_girl 1f469
579
+ family_woman_girl_boy 1f469
580
+ family_woman_girl_girl 1f469
581
+ family_woman_woman_boy 1f469
582
+ family_woman_woman_boy_boy 1f469
583
+ family_woman_woman_girl 1f469
584
+ family_woman_woman_girl_boy 1f469
585
+ family_woman_woman_girl_girl 1f469
586
+ farmer 1f9d1
587
+ faroe_islands 1f1eb
588
+ fast_forward 23e9
589
+ fax 1f4e0
590
+ fearful 1f628
591
+ feather 1fab6
592
+ feelsgood feelsgood
593
+ feet 1f43e
594
+ female_detective 1f575
595
+ female_sign 2640
596
+ ferris_wheel 1f3a1
597
+ ferry 26f4
598
+ field_hockey 1f3d1
599
+ fiji 1f1eb
600
+ file_cabinet 1f5c4
601
+ file_folder 1f4c1
602
+ film_projector 1f4fd
603
+ film_strip 1f39e
604
+ finland 1f1eb
605
+ finnadie finnadie
606
+ fire 1f525
607
+ fire_engine 1f692
608
+ fire_extinguisher 1f9ef
609
+ firecracker 1f9e8
610
+ firefighter 1f9d1
611
+ fireworks 1f386
612
+ first_quarter_moon 1f313
613
+ first_quarter_moon_with_face 1f31b
614
+ fish 1f41f
615
+ fish_cake 1f365
616
+ fishing_pole_and_fish 1f3a3
617
+ fist 270a
618
+ fist_left 1f91b
619
+ fist_oncoming 1f44a
620
+ fist_raised 270a
621
+ fist_right 1f91c
622
+ five 0035
623
+ flags 1f38f
624
+ flamingo 1f9a9
625
+ flashlight 1f526
626
+ flat_shoe 1f97f
627
+ flatbread 1fad3
628
+ fleur_de_lis 269c
629
+ flight_arrival 1f6ec
630
+ flight_departure 1f6eb
631
+ flipper 1f42c
632
+ floppy_disk 1f4be
633
+ flower_playing_cards 1f3b4
634
+ flushed 1f633
635
+ fly 1fab0
636
+ flying_disc 1f94f
637
+ flying_saucer 1f6f8
638
+ fog 1f32b
639
+ foggy 1f301
640
+ fondue 1fad5
641
+ foot 1f9b6
642
+ football 1f3c8
643
+ footprints 1f463
644
+ fork_and_knife 1f374
645
+ fortune_cookie 1f960
646
+ fountain 26f2
647
+ fountain_pen 1f58b
648
+ four 0034
649
+ four_leaf_clover 1f340
650
+ fox_face 1f98a
651
+ fr 1f1eb
652
+ framed_picture 1f5bc
653
+ free 1f193
654
+ french_guiana 1f1ec
655
+ french_polynesia 1f1f5
656
+ french_southern_territories 1f1f9
657
+ fried_egg 1f373
658
+ fried_shrimp 1f364
659
+ fries 1f35f
660
+ frog 1f438
661
+ frowning 1f626
662
+ frowning_face 2639
663
+ frowning_man 1f64d
664
+ frowning_person 1f64d
665
+ frowning_woman 1f64d
666
+ fu 1f595
667
+ fuelpump 26fd
668
+ full_moon 1f315
669
+ full_moon_with_face 1f31d
670
+ funeral_urn 26b1
671
+ gabon 1f1ec
672
+ gambia 1f1ec
673
+ game_die 1f3b2
674
+ garlic 1f9c4
675
+ gb 1f1ec
676
+ gear 2699
677
+ gem 1f48e
678
+ gemini 264a
679
+ genie 1f9de
680
+ genie_man 1f9de
681
+ genie_woman 1f9de
682
+ georgia 1f1ec
683
+ ghana 1f1ec
684
+ ghost 1f47b
685
+ gibraltar 1f1ec
686
+ gift 1f381
687
+ gift_heart 1f49d
688
+ giraffe 1f992
689
+ girl 1f467
690
+ globe_with_meridians 1f310
691
+ gloves 1f9e4
692
+ goal_net 1f945
693
+ goat 1f410
694
+ goberserk goberserk
695
+ godmode godmode
696
+ goggles 1f97d
697
+ golf 26f3
698
+ golfing 1f3cc
699
+ golfing_man 1f3cc
700
+ golfing_woman 1f3cc
701
+ gorilla 1f98d
702
+ grapes 1f347
703
+ greece 1f1ec
704
+ green_apple 1f34f
705
+ green_book 1f4d7
706
+ green_circle 1f7e2
707
+ green_heart 1f49a
708
+ green_salad 1f957
709
+ green_square 1f7e9
710
+ greenland 1f1ec
711
+ grenada 1f1ec
712
+ grey_exclamation 2755
713
+ grey_question 2754
714
+ grimacing 1f62c
715
+ grin 1f601
716
+ grinning 1f600
717
+ guadeloupe 1f1ec
718
+ guam 1f1ec
719
+ guard 1f482
720
+ guardsman 1f482
721
+ guardswoman 1f482
722
+ guatemala 1f1ec
723
+ guernsey 1f1ec
724
+ guide_dog 1f9ae
725
+ guinea 1f1ec
726
+ guinea_bissau 1f1ec
727
+ guitar 1f3b8
728
+ gun 1f52b
729
+ guyana 1f1ec
730
+ haircut 1f487
731
+ haircut_man 1f487
732
+ haircut_woman 1f487
733
+ haiti 1f1ed
734
+ hamburger 1f354
735
+ hammer 1f528
736
+ hammer_and_pick 2692
737
+ hammer_and_wrench 1f6e0
738
+ hamster 1f439
739
+ hand 270b
740
+ hand_over_mouth 1f92d
741
+ handbag 1f45c
742
+ handball_person 1f93e
743
+ handshake 1f91d
744
+ hankey 1f4a9
745
+ hash 0023
746
+ hatched_chick 1f425
747
+ hatching_chick 1f423
748
+ headphones 1f3a7
749
+ headstone 1faa6
750
+ health_worker 1f9d1
751
+ hear_no_evil 1f649
752
+ heard_mcdonald_islands 1f1ed
753
+ heart 2764
754
+ heart_decoration 1f49f
755
+ heart_eyes 1f60d
756
+ heart_eyes_cat 1f63b
757
+ heart_on_fire 2764
758
+ heartbeat 1f493
759
+ heartpulse 1f497
760
+ hearts 2665
761
+ heavy_check_mark 2714
762
+ heavy_division_sign 2797
763
+ heavy_dollar_sign 1f4b2
764
+ heavy_exclamation_mark 2757
765
+ heavy_heart_exclamation 2763
766
+ heavy_minus_sign 2796
767
+ heavy_multiplication_x 2716
768
+ heavy_plus_sign 2795
769
+ hedgehog 1f994
770
+ helicopter 1f681
771
+ herb 1f33f
772
+ hibiscus 1f33a
773
+ high_brightness 1f506
774
+ high_heel 1f460
775
+ hiking_boot 1f97e
776
+ hindu_temple 1f6d5
777
+ hippopotamus 1f99b
778
+ hocho 1f52a
779
+ hole 1f573
780
+ honduras 1f1ed
781
+ honey_pot 1f36f
782
+ honeybee 1f41d
783
+ hong_kong 1f1ed
784
+ hook 1fa9d
785
+ horse 1f434
786
+ horse_racing 1f3c7
787
+ hospital 1f3e5
788
+ hot_face 1f975
789
+ hot_pepper 1f336
790
+ hotdog 1f32d
791
+ hotel 1f3e8
792
+ hotsprings 2668
793
+ hourglass 231b
794
+ hourglass_flowing_sand 23f3
795
+ house 1f3e0
796
+ house_with_garden 1f3e1
797
+ houses 1f3d8
798
+ hugs 1f917
799
+ hungary 1f1ed
800
+ hurtrealbad hurtrealbad
801
+ hushed 1f62f
802
+ hut 1f6d6
803
+ ice_cream 1f368
804
+ ice_cube 1f9ca
805
+ ice_hockey 1f3d2
806
+ ice_skate 26f8
807
+ icecream 1f366
808
+ iceland 1f1ee
809
+ id 1f194
810
+ ideograph_advantage 1f250
811
+ imp 1f47f
812
+ inbox_tray 1f4e5
813
+ incoming_envelope 1f4e8
814
+ india 1f1ee
815
+ indonesia 1f1ee
816
+ infinity 267e
817
+ information_desk_person 1f481
818
+ information_source 2139
819
+ innocent 1f607
820
+ interrobang 2049
821
+ iphone 1f4f1
822
+ iran 1f1ee
823
+ iraq 1f1ee
824
+ ireland 1f1ee
825
+ isle_of_man 1f1ee
826
+ israel 1f1ee
827
+ it 1f1ee
828
+ izakaya_lantern 1f3ee
829
+ jack_o_lantern 1f383
830
+ jamaica 1f1ef
831
+ japan 1f5fe
832
+ japanese_castle 1f3ef
833
+ japanese_goblin 1f47a
834
+ japanese_ogre 1f479
835
+ jeans 1f456
836
+ jersey 1f1ef
837
+ jigsaw 1f9e9
838
+ jordan 1f1ef
839
+ joy 1f602
840
+ joy_cat 1f639
841
+ joystick 1f579
842
+ jp 1f1ef
843
+ judge 1f9d1
844
+ juggling_person 1f939
845
+ kaaba 1f54b
846
+ kangaroo 1f998
847
+ kazakhstan 1f1f0
848
+ kenya 1f1f0
849
+ key 1f511
850
+ keyboard 2328
851
+ keycap_ten 1f51f
852
+ kick_scooter 1f6f4
853
+ kimono 1f458
854
+ kiribati 1f1f0
855
+ kiss 1f48b
856
+ kissing 1f617
857
+ kissing_cat 1f63d
858
+ kissing_closed_eyes 1f61a
859
+ kissing_heart 1f618
860
+ kissing_smiling_eyes 1f619
861
+ kite 1fa81
862
+ kiwi_fruit 1f95d
863
+ kneeling_man 1f9ce
864
+ kneeling_person 1f9ce
865
+ kneeling_woman 1f9ce
866
+ knife 1f52a
867
+ knot 1faa2
868
+ koala 1f428
869
+ koko 1f201
870
+ kosovo 1f1fd
871
+ kr 1f1f0
872
+ kuwait 1f1f0
873
+ kyrgyzstan 1f1f0
874
+ lab_coat 1f97c
875
+ label 1f3f7
876
+ lacrosse 1f94d
877
+ ladder 1fa9c
878
+ lady_beetle 1f41e
879
+ lantern 1f3ee
880
+ laos 1f1f1
881
+ large_blue_circle 1f535
882
+ large_blue_diamond 1f537
883
+ large_orange_diamond 1f536
884
+ last_quarter_moon 1f317
885
+ last_quarter_moon_with_face 1f31c
886
+ latin_cross 271d
887
+ latvia 1f1f1
888
+ laughing 1f606
889
+ leafy_green 1f96c
890
+ leaves 1f343
891
+ lebanon 1f1f1
892
+ ledger 1f4d2
893
+ left_luggage 1f6c5
894
+ left_right_arrow 2194
895
+ left_speech_bubble 1f5e8
896
+ leftwards_arrow_with_hook 21a9
897
+ leg 1f9b5
898
+ lemon 1f34b
899
+ leo 264c
900
+ leopard 1f406
901
+ lesotho 1f1f1
902
+ level_slider 1f39a
903
+ liberia 1f1f1
904
+ libra 264e
905
+ libya 1f1f1
906
+ liechtenstein 1f1f1
907
+ light_rail 1f688
908
+ link 1f517
909
+ lion 1f981
910
+ lips 1f444
911
+ lipstick 1f484
912
+ lithuania 1f1f1
913
+ lizard 1f98e
914
+ llama 1f999
915
+ lobster 1f99e
916
+ lock 1f512
917
+ lock_with_ink_pen 1f50f
918
+ lollipop 1f36d
919
+ long_drum 1fa98
920
+ loop 27bf
921
+ lotion_bottle 1f9f4
922
+ lotus_position 1f9d8
923
+ lotus_position_man 1f9d8
924
+ lotus_position_woman 1f9d8
925
+ loud_sound 1f50a
926
+ loudspeaker 1f4e2
927
+ love_hotel 1f3e9
928
+ love_letter 1f48c
929
+ love_you_gesture 1f91f
930
+ low_brightness 1f505
931
+ luggage 1f9f3
932
+ lungs 1fac1
933
+ luxembourg 1f1f1
934
+ lying_face 1f925
935
+ m 24c2
936
+ macau 1f1f2
937
+ macedonia 1f1f2
938
+ madagascar 1f1f2
939
+ mag 1f50d
940
+ mag_right 1f50e
941
+ mage 1f9d9
942
+ mage_man 1f9d9
943
+ mage_woman 1f9d9
944
+ magic_wand 1fa84
945
+ magnet 1f9f2
946
+ mahjong 1f004
947
+ mailbox 1f4eb
948
+ mailbox_closed 1f4ea
949
+ mailbox_with_mail 1f4ec
950
+ mailbox_with_no_mail 1f4ed
951
+ malawi 1f1f2
952
+ malaysia 1f1f2
953
+ maldives 1f1f2
954
+ male_detective 1f575
955
+ male_sign 2642
956
+ mali 1f1f2
957
+ malta 1f1f2
958
+ mammoth 1f9a3
959
+ man 1f468
960
+ man_artist 1f468
961
+ man_astronaut 1f468
962
+ man_beard 1f9d4
963
+ man_cartwheeling 1f938
964
+ man_cook 1f468
965
+ man_dancing 1f57a
966
+ man_facepalming 1f926
967
+ man_factory_worker 1f468
968
+ man_farmer 1f468
969
+ man_feeding_baby 1f468
970
+ man_firefighter 1f468
971
+ man_health_worker 1f468
972
+ man_in_manual_wheelchair 1f468
973
+ man_in_motorized_wheelchair 1f468
974
+ man_in_tuxedo 1f935
975
+ man_judge 1f468
976
+ man_juggling 1f939
977
+ man_mechanic 1f468
978
+ man_office_worker 1f468
979
+ man_pilot 1f468
980
+ man_playing_handball 1f93e
981
+ man_playing_water_polo 1f93d
982
+ man_scientist 1f468
983
+ man_shrugging 1f937
984
+ man_singer 1f468
985
+ man_student 1f468
986
+ man_teacher 1f468
987
+ man_technologist 1f468
988
+ man_with_gua_pi_mao 1f472
989
+ man_with_probing_cane 1f468
990
+ man_with_turban 1f473
991
+ man_with_veil 1f470
992
+ mandarin 1f34a
993
+ mango 1f96d
994
+ mans_shoe 1f45e
995
+ mantelpiece_clock 1f570
996
+ manual_wheelchair 1f9bd
997
+ maple_leaf 1f341
998
+ marshall_islands 1f1f2
999
+ martial_arts_uniform 1f94b
1000
+ martinique 1f1f2
1001
+ mask 1f637
1002
+ massage 1f486
1003
+ massage_man 1f486
1004
+ massage_woman 1f486
1005
+ mate 1f9c9
1006
+ mauritania 1f1f2
1007
+ mauritius 1f1f2
1008
+ mayotte 1f1fe
1009
+ meat_on_bone 1f356
1010
+ mechanic 1f9d1
1011
+ mechanical_arm 1f9be
1012
+ mechanical_leg 1f9bf
1013
+ medal_military 1f396
1014
+ medal_sports 1f3c5
1015
+ medical_symbol 2695
1016
+ mega 1f4e3
1017
+ melon 1f348
1018
+ memo 1f4dd
1019
+ men_wrestling 1f93c
1020
+ mending_heart 2764
1021
+ menorah 1f54e
1022
+ mens 1f6b9
1023
+ mermaid 1f9dc
1024
+ merman 1f9dc
1025
+ merperson 1f9dc
1026
+ metal 1f918
1027
+ metro 1f687
1028
+ mexico 1f1f2
1029
+ microbe 1f9a0
1030
+ micronesia 1f1eb
1031
+ microphone 1f3a4
1032
+ microscope 1f52c
1033
+ middle_finger 1f595
1034
+ military_helmet 1fa96
1035
+ milk_glass 1f95b
1036
+ milky_way 1f30c
1037
+ minibus 1f690
1038
+ minidisc 1f4bd
1039
+ mirror 1fa9e
1040
+ mobile_phone_off 1f4f4
1041
+ moldova 1f1f2
1042
+ monaco 1f1f2
1043
+ money_mouth_face 1f911
1044
+ money_with_wings 1f4b8
1045
+ moneybag 1f4b0
1046
+ mongolia 1f1f2
1047
+ monkey 1f412
1048
+ monkey_face 1f435
1049
+ monocle_face 1f9d0
1050
+ monorail 1f69d
1051
+ montenegro 1f1f2
1052
+ montserrat 1f1f2
1053
+ moon 1f314
1054
+ moon_cake 1f96e
1055
+ morocco 1f1f2
1056
+ mortar_board 1f393
1057
+ mosque 1f54c
1058
+ mosquito 1f99f
1059
+ motor_boat 1f6e5
1060
+ motor_scooter 1f6f5
1061
+ motorcycle 1f3cd
1062
+ motorized_wheelchair 1f9bc
1063
+ motorway 1f6e3
1064
+ mount_fuji 1f5fb
1065
+ mountain 26f0
1066
+ mountain_bicyclist 1f6b5
1067
+ mountain_biking_man 1f6b5
1068
+ mountain_biking_woman 1f6b5
1069
+ mountain_cableway 1f6a0
1070
+ mountain_railway 1f69e
1071
+ mountain_snow 1f3d4
1072
+ mouse 1f42d
1073
+ mouse2 1f401
1074
+ mouse_trap 1faa4
1075
+ movie_camera 1f3a5
1076
+ moyai 1f5ff
1077
+ mozambique 1f1f2
1078
+ mrs_claus 1f936
1079
+ muscle 1f4aa
1080
+ mushroom 1f344
1081
+ musical_keyboard 1f3b9
1082
+ musical_note 1f3b5
1083
+ musical_score 1f3bc
1084
+ mute 1f507
1085
+ mx_claus 1f9d1
1086
+ myanmar 1f1f2
1087
+ nail_care 1f485
1088
+ name_badge 1f4db
1089
+ namibia 1f1f3
1090
+ national_park 1f3de
1091
+ nauru 1f1f3
1092
+ nauseated_face 1f922
1093
+ nazar_amulet 1f9ff
1094
+ neckbeard neckbeard
1095
+ necktie 1f454
1096
+ negative_squared_cross_mark 274e
1097
+ nepal 1f1f3
1098
+ nerd_face 1f913
1099
+ nesting_dolls 1fa86
1100
+ netherlands 1f1f3
1101
+ neutral_face 1f610
1102
+ new 1f195
1103
+ new_caledonia 1f1f3
1104
+ new_moon 1f311
1105
+ new_moon_with_face 1f31a
1106
+ new_zealand 1f1f3
1107
+ newspaper 1f4f0
1108
+ newspaper_roll 1f5de
1109
+ next_track_button 23ed
1110
+ ng 1f196
1111
+ ng_man 1f645
1112
+ ng_woman 1f645
1113
+ nicaragua 1f1f3
1114
+ niger 1f1f3
1115
+ nigeria 1f1f3
1116
+ night_with_stars 1f303
1117
+ nine 0039
1118
+ ninja 1f977
1119
+ niue 1f1f3
1120
+ no_bell 1f515
1121
+ no_bicycles 1f6b3
1122
+ no_entry 26d4
1123
+ no_entry_sign 1f6ab
1124
+ no_good 1f645
1125
+ no_good_man 1f645
1126
+ no_good_woman 1f645
1127
+ no_mobile_phones 1f4f5
1128
+ no_mouth 1f636
1129
+ no_pedestrians 1f6b7
1130
+ no_smoking 1f6ad
1131
+ non-potable_water 1f6b1
1132
+ norfolk_island 1f1f3
1133
+ north_korea 1f1f0
1134
+ northern_mariana_islands 1f1f2
1135
+ norway 1f1f3
1136
+ nose 1f443
1137
+ notebook 1f4d3
1138
+ notebook_with_decorative_cover 1f4d4
1139
+ notes 1f3b6
1140
+ nut_and_bolt 1f529
1141
+ o 2b55
1142
+ o2 1f17e
1143
+ ocean 1f30a
1144
+ octocat octocat
1145
+ octopus 1f419
1146
+ oden 1f362
1147
+ office 1f3e2
1148
+ office_worker 1f9d1
1149
+ oil_drum 1f6e2
1150
+ ok 1f197
1151
+ ok_hand 1f44c
1152
+ ok_man 1f646
1153
+ ok_person 1f646
1154
+ ok_woman 1f646
1155
+ old_key 1f5dd
1156
+ older_adult 1f9d3
1157
+ older_man 1f474
1158
+ older_woman 1f475
1159
+ olive 1fad2
1160
+ om 1f549
1161
+ oman 1f1f4
1162
+ on 1f51b
1163
+ oncoming_automobile 1f698
1164
+ oncoming_bus 1f68d
1165
+ oncoming_police_car 1f694
1166
+ oncoming_taxi 1f696
1167
+ one 0031
1168
+ one_piece_swimsuit 1fa71
1169
+ onion 1f9c5
1170
+ open_book 1f4d6
1171
+ open_file_folder 1f4c2
1172
+ open_hands 1f450
1173
+ open_mouth 1f62e
1174
+ open_umbrella 2602
1175
+ ophiuchus 26ce
1176
+ orange 1f34a
1177
+ orange_book 1f4d9
1178
+ orange_circle 1f7e0
1179
+ orange_heart 1f9e1
1180
+ orange_square 1f7e7
1181
+ orangutan 1f9a7
1182
+ orthodox_cross 2626
1183
+ otter 1f9a6
1184
+ outbox_tray 1f4e4
1185
+ owl 1f989
1186
+ ox 1f402
1187
+ oyster 1f9aa
1188
+ package 1f4e6
1189
+ page_facing_up 1f4c4
1190
+ page_with_curl 1f4c3
1191
+ pager 1f4df
1192
+ paintbrush 1f58c
1193
+ pakistan 1f1f5
1194
+ palau 1f1f5
1195
+ palestinian_territories 1f1f5
1196
+ palm_tree 1f334
1197
+ palms_up_together 1f932
1198
+ panama 1f1f5
1199
+ pancakes 1f95e
1200
+ panda_face 1f43c
1201
+ paperclip 1f4ce
1202
+ paperclips 1f587
1203
+ papua_new_guinea 1f1f5
1204
+ parachute 1fa82
1205
+ paraguay 1f1f5
1206
+ parasol_on_ground 26f1
1207
+ parking 1f17f
1208
+ parrot 1f99c
1209
+ part_alternation_mark 303d
1210
+ partly_sunny 26c5
1211
+ partying_face 1f973
1212
+ passenger_ship 1f6f3
1213
+ passport_control 1f6c2
1214
+ pause_button 23f8
1215
+ paw_prints 1f43e
1216
+ peace_symbol 262e
1217
+ peach 1f351
1218
+ peacock 1f99a
1219
+ peanuts 1f95c
1220
+ pear 1f350
1221
+ pen 1f58a
1222
+ pencil 1f4dd
1223
+ pencil2 270f
1224
+ penguin 1f427
1225
+ pensive 1f614
1226
+ people_holding_hands 1f9d1
1227
+ people_hugging 1fac2
1228
+ performing_arts 1f3ad
1229
+ persevere 1f623
1230
+ person_bald 1f9d1
1231
+ person_curly_hair 1f9d1
1232
+ person_feeding_baby 1f9d1
1233
+ person_fencing 1f93a
1234
+ person_in_manual_wheelchair 1f9d1
1235
+ person_in_motorized_wheelchair 1f9d1
1236
+ person_in_tuxedo 1f935
1237
+ person_red_hair 1f9d1
1238
+ person_white_hair 1f9d1
1239
+ person_with_probing_cane 1f9d1
1240
+ person_with_turban 1f473
1241
+ person_with_veil 1f470
1242
+ peru 1f1f5
1243
+ petri_dish 1f9eb
1244
+ philippines 1f1f5
1245
+ phone 260e
1246
+ pick 26cf
1247
+ pickup_truck 1f6fb
1248
+ pie 1f967
1249
+ pig 1f437
1250
+ pig2 1f416
1251
+ pig_nose 1f43d
1252
+ pill 1f48a
1253
+ pilot 1f9d1
1254
+ pinata 1fa85
1255
+ pinched_fingers 1f90c
1256
+ pinching_hand 1f90f
1257
+ pineapple 1f34d
1258
+ ping_pong 1f3d3
1259
+ pirate_flag 1f3f4
1260
+ pisces 2653
1261
+ pitcairn_islands 1f1f5
1262
+ pizza 1f355
1263
+ placard 1faa7
1264
+ place_of_worship 1f6d0
1265
+ plate_with_cutlery 1f37d
1266
+ play_or_pause_button 23ef
1267
+ pleading_face 1f97a
1268
+ plunger 1faa0
1269
+ point_down 1f447
1270
+ point_left 1f448
1271
+ point_right 1f449
1272
+ point_up 261d
1273
+ point_up_2 1f446
1274
+ poland 1f1f5
1275
+ polar_bear 1f43b
1276
+ police_car 1f693
1277
+ police_officer 1f46e
1278
+ policeman 1f46e
1279
+ policewoman 1f46e
1280
+ poodle 1f429
1281
+ poop 1f4a9
1282
+ popcorn 1f37f
1283
+ portugal 1f1f5
1284
+ post_office 1f3e3
1285
+ postal_horn 1f4ef
1286
+ postbox 1f4ee
1287
+ potable_water 1f6b0
1288
+ potato 1f954
1289
+ potted_plant 1fab4
1290
+ pouch 1f45d
1291
+ poultry_leg 1f357
1292
+ pound 1f4b7
1293
+ pout 1f621
1294
+ pouting_cat 1f63e
1295
+ pouting_face 1f64e
1296
+ pouting_man 1f64e
1297
+ pouting_woman 1f64e
1298
+ pray 1f64f
1299
+ prayer_beads 1f4ff
1300
+ pregnant_woman 1f930
1301
+ pretzel 1f968
1302
+ previous_track_button 23ee
1303
+ prince 1f934
1304
+ princess 1f478
1305
+ printer 1f5a8
1306
+ probing_cane 1f9af
1307
+ puerto_rico 1f1f5
1308
+ punch 1f44a
1309
+ purple_circle 1f7e3
1310
+ purple_heart 1f49c
1311
+ purple_square 1f7ea
1312
+ purse 1f45b
1313
+ pushpin 1f4cc
1314
+ put_litter_in_its_place 1f6ae
1315
+ qatar 1f1f6
1316
+ question 2753
1317
+ rabbit 1f430
1318
+ rabbit2 1f407
1319
+ raccoon 1f99d
1320
+ racehorse 1f40e
1321
+ racing_car 1f3ce
1322
+ radio 1f4fb
1323
+ radio_button 1f518
1324
+ radioactive 2622
1325
+ rage 1f621
1326
+ rage1 rage1
1327
+ rage2 rage2
1328
+ rage3 rage3
1329
+ rage4 rage4
1330
+ railway_car 1f683
1331
+ railway_track 1f6e4
1332
+ rainbow 1f308
1333
+ rainbow_flag 1f3f3
1334
+ raised_back_of_hand 1f91a
1335
+ raised_eyebrow 1f928
1336
+ raised_hand 270b
1337
+ raised_hand_with_fingers_splayed 1f590
1338
+ raised_hands 1f64c
1339
+ raising_hand 1f64b
1340
+ raising_hand_man 1f64b
1341
+ raising_hand_woman 1f64b
1342
+ ram 1f40f
1343
+ ramen 1f35c
1344
+ rat 1f400
1345
+ razor 1fa92
1346
+ receipt 1f9fe
1347
+ record_button 23fa
1348
+ recycle 267b
1349
+ red_car 1f697
1350
+ red_circle 1f534
1351
+ red_envelope 1f9e7
1352
+ red_haired_man 1f468
1353
+ red_haired_woman 1f469
1354
+ red_square 1f7e5
1355
+ registered 00ae
1356
+ relaxed 263a
1357
+ relieved 1f60c
1358
+ reminder_ribbon 1f397
1359
+ repeat 1f501
1360
+ repeat_one 1f502
1361
+ rescue_worker_helmet 26d1
1362
+ restroom 1f6bb
1363
+ reunion 1f1f7
1364
+ revolving_hearts 1f49e
1365
+ rewind 23ea
1366
+ rhinoceros 1f98f
1367
+ ribbon 1f380
1368
+ rice 1f35a
1369
+ rice_ball 1f359
1370
+ rice_cracker 1f358
1371
+ rice_scene 1f391
1372
+ right_anger_bubble 1f5ef
1373
+ ring 1f48d
1374
+ ringed_planet 1fa90
1375
+ robot 1f916
1376
+ rock 1faa8
1377
+ rocket 1f680
1378
+ rofl 1f923
1379
+ roll_eyes 1f644
1380
+ roll_of_paper 1f9fb
1381
+ roller_coaster 1f3a2
1382
+ roller_skate 1f6fc
1383
+ romania 1f1f7
1384
+ rooster 1f413
1385
+ rose 1f339
1386
+ rosette 1f3f5
1387
+ rotating_light 1f6a8
1388
+ round_pushpin 1f4cd
1389
+ rowboat 1f6a3
1390
+ rowing_man 1f6a3
1391
+ rowing_woman 1f6a3
1392
+ ru 1f1f7
1393
+ rugby_football 1f3c9
1394
+ runner 1f3c3
1395
+ running 1f3c3
1396
+ running_man 1f3c3
1397
+ running_shirt_with_sash 1f3bd
1398
+ running_woman 1f3c3
1399
+ rwanda 1f1f7
1400
+ sa 1f202
1401
+ safety_pin 1f9f7
1402
+ safety_vest 1f9ba
1403
+ sagittarius 2650
1404
+ sailboat 26f5
1405
+ sake 1f376
1406
+ salt 1f9c2
1407
+ samoa 1f1fc
1408
+ san_marino 1f1f8
1409
+ sandal 1f461
1410
+ sandwich 1f96a
1411
+ santa 1f385
1412
+ sao_tome_principe 1f1f8
1413
+ sari 1f97b
1414
+ sassy_man 1f481
1415
+ sassy_woman 1f481
1416
+ satellite 1f4e1
1417
+ satisfied 1f606
1418
+ saudi_arabia 1f1f8
1419
+ sauna_man 1f9d6
1420
+ sauna_person 1f9d6
1421
+ sauna_woman 1f9d6
1422
+ sauropod 1f995
1423
+ saxophone 1f3b7
1424
+ scarf 1f9e3
1425
+ school 1f3eb
1426
+ school_satchel 1f392
1427
+ scientist 1f9d1
1428
+ scissors 2702
1429
+ scorpion 1f982
1430
+ scorpius 264f
1431
+ scotland 1f3f4
1432
+ scream 1f631
1433
+ scream_cat 1f640
1434
+ screwdriver 1fa9b
1435
+ scroll 1f4dc
1436
+ seal 1f9ad
1437
+ seat 1f4ba
1438
+ secret 3299
1439
+ see_no_evil 1f648
1440
+ seedling 1f331
1441
+ selfie 1f933
1442
+ senegal 1f1f8
1443
+ serbia 1f1f7
1444
+ service_dog 1f415
1445
+ seven 0037
1446
+ sewing_needle 1faa1
1447
+ seychelles 1f1f8
1448
+ shallow_pan_of_food 1f958
1449
+ shamrock 2618
1450
+ shark 1f988
1451
+ shaved_ice 1f367
1452
+ sheep 1f411
1453
+ shell 1f41a
1454
+ shield 1f6e1
1455
+ shinto_shrine 26e9
1456
+ ship 1f6a2
1457
+ shipit shipit
1458
+ shirt 1f455
1459
+ shit 1f4a9
1460
+ shoe 1f45e
1461
+ shopping 1f6cd
1462
+ shopping_cart 1f6d2
1463
+ shorts 1fa73
1464
+ shower 1f6bf
1465
+ shrimp 1f990
1466
+ shrug 1f937
1467
+ shushing_face 1f92b
1468
+ sierra_leone 1f1f8
1469
+ signal_strength 1f4f6
1470
+ singapore 1f1f8
1471
+ singer 1f9d1
1472
+ sint_maarten 1f1f8
1473
+ six 0036
1474
+ six_pointed_star 1f52f
1475
+ skateboard 1f6f9
1476
+ ski 1f3bf
1477
+ skier 26f7
1478
+ skull 1f480
1479
+ skull_and_crossbones 2620
1480
+ skunk 1f9a8
1481
+ sled 1f6f7
1482
+ sleeping 1f634
1483
+ sleeping_bed 1f6cc
1484
+ sleepy 1f62a
1485
+ slightly_frowning_face 1f641
1486
+ slightly_smiling_face 1f642
1487
+ slot_machine 1f3b0
1488
+ sloth 1f9a5
1489
+ slovakia 1f1f8
1490
+ slovenia 1f1f8
1491
+ small_airplane 1f6e9
1492
+ small_blue_diamond 1f539
1493
+ small_orange_diamond 1f538
1494
+ small_red_triangle 1f53a
1495
+ small_red_triangle_down 1f53b
1496
+ smile 1f604
1497
+ smile_cat 1f638
1498
+ smiley 1f603
1499
+ smiley_cat 1f63a
1500
+ smiling_face_with_tear 1f972
1501
+ smiling_face_with_three_hearts 1f970
1502
+ smiling_imp 1f608
1503
+ smirk 1f60f
1504
+ smirk_cat 1f63c
1505
+ smoking 1f6ac
1506
+ snail 1f40c
1507
+ snake 1f40d
1508
+ sneezing_face 1f927
1509
+ snowboarder 1f3c2
1510
+ snowflake 2744
1511
+ snowman 26c4
1512
+ snowman_with_snow 2603
1513
+ soap 1f9fc
1514
+ sob 1f62d
1515
+ soccer 26bd
1516
+ socks 1f9e6
1517
+ softball 1f94e
1518
+ solomon_islands 1f1f8
1519
+ somalia 1f1f8
1520
+ soon 1f51c
1521
+ sos 1f198
1522
+ sound 1f509
1523
+ south_africa 1f1ff
1524
+ south_georgia_south_sandwich_islands 1f1ec
1525
+ south_sudan 1f1f8
1526
+ space_invader 1f47e
1527
+ spades 2660
1528
+ spaghetti 1f35d
1529
+ sparkle 2747
1530
+ sparkler 1f387
1531
+ sparkles 2728
1532
+ sparkling_heart 1f496
1533
+ speak_no_evil 1f64a
1534
+ speaker 1f508
1535
+ speaking_head 1f5e3
1536
+ speech_balloon 1f4ac
1537
+ speedboat 1f6a4
1538
+ spider 1f577
1539
+ spider_web 1f578
1540
+ spiral_calendar 1f5d3
1541
+ spiral_notepad 1f5d2
1542
+ sponge 1f9fd
1543
+ spoon 1f944
1544
+ squid 1f991
1545
+ sri_lanka 1f1f1
1546
+ st_barthelemy 1f1e7
1547
+ st_helena 1f1f8
1548
+ st_kitts_nevis 1f1f0
1549
+ st_lucia 1f1f1
1550
+ st_martin 1f1f2
1551
+ st_pierre_miquelon 1f1f5
1552
+ st_vincent_grenadines 1f1fb
1553
+ stadium 1f3df
1554
+ standing_man 1f9cd
1555
+ standing_person 1f9cd
1556
+ standing_woman 1f9cd
1557
+ star 2b50
1558
+ star2 1f31f
1559
+ star_and_crescent 262a
1560
+ star_of_david 2721
1561
+ star_struck 1f929
1562
+ stars 1f320
1563
+ station 1f689
1564
+ statue_of_liberty 1f5fd
1565
+ steam_locomotive 1f682
1566
+ stethoscope 1fa7a
1567
+ stew 1f372
1568
+ stop_button 23f9
1569
+ stop_sign 1f6d1
1570
+ stopwatch 23f1
1571
+ straight_ruler 1f4cf
1572
+ strawberry 1f353
1573
+ stuck_out_tongue 1f61b
1574
+ stuck_out_tongue_closed_eyes 1f61d
1575
+ stuck_out_tongue_winking_eye 1f61c
1576
+ student 1f9d1
1577
+ studio_microphone 1f399
1578
+ stuffed_flatbread 1f959
1579
+ sudan 1f1f8
1580
+ sun_behind_large_cloud 1f325
1581
+ sun_behind_rain_cloud 1f326
1582
+ sun_behind_small_cloud 1f324
1583
+ sun_with_face 1f31e
1584
+ sunflower 1f33b
1585
+ sunglasses 1f60e
1586
+ sunny 2600
1587
+ sunrise 1f305
1588
+ sunrise_over_mountains 1f304
1589
+ superhero 1f9b8
1590
+ superhero_man 1f9b8
1591
+ superhero_woman 1f9b8
1592
+ supervillain 1f9b9
1593
+ supervillain_man 1f9b9
1594
+ supervillain_woman 1f9b9
1595
+ surfer 1f3c4
1596
+ surfing_man 1f3c4
1597
+ surfing_woman 1f3c4
1598
+ suriname 1f1f8
1599
+ sushi 1f363
1600
+ suspect suspect
1601
+ suspension_railway 1f69f
1602
+ svalbard_jan_mayen 1f1f8
1603
+ swan 1f9a2
1604
+ swaziland 1f1f8
1605
+ sweat 1f613
1606
+ sweat_drops 1f4a6
1607
+ sweat_smile 1f605
1608
+ sweden 1f1f8
1609
+ sweet_potato 1f360
1610
+ swim_brief 1fa72
1611
+ swimmer 1f3ca
1612
+ swimming_man 1f3ca
1613
+ swimming_woman 1f3ca
1614
+ switzerland 1f1e8
1615
+ symbols 1f523
1616
+ synagogue 1f54d
1617
+ syria 1f1f8
1618
+ syringe 1f489
1619
+ t-rex 1f996
1620
+ taco 1f32e
1621
+ tada 1f389
1622
+ taiwan 1f1f9
1623
+ tajikistan 1f1f9
1624
+ takeout_box 1f961
1625
+ tamale 1fad4
1626
+ tanabata_tree 1f38b
1627
+ tangerine 1f34a
1628
+ tanzania 1f1f9
1629
+ taurus 2649
1630
+ taxi 1f695
1631
+ tea 1f375
1632
+ teacher 1f9d1
1633
+ teapot 1fad6
1634
+ technologist 1f9d1
1635
+ teddy_bear 1f9f8
1636
+ telephone 260e
1637
+ telephone_receiver 1f4de
1638
+ telescope 1f52d
1639
+ tennis 1f3be
1640
+ tent 26fa
1641
+ test_tube 1f9ea
1642
+ thailand 1f1f9
1643
+ thermometer 1f321
1644
+ thinking 1f914
1645
+ thong_sandal 1fa74
1646
+ thought_balloon 1f4ad
1647
+ thread 1f9f5
1648
+ three 0033
1649
+ thumbsdown 1f44e
1650
+ thumbsup 1f44d
1651
+ ticket 1f3ab
1652
+ tickets 1f39f
1653
+ tiger 1f42f
1654
+ tiger2 1f405
1655
+ timer_clock 23f2
1656
+ timor_leste 1f1f9
1657
+ tipping_hand_man 1f481
1658
+ tipping_hand_person 1f481
1659
+ tipping_hand_woman 1f481
1660
+ tired_face 1f62b
1661
+ tm 2122
1662
+ togo 1f1f9
1663
+ toilet 1f6bd
1664
+ tokelau 1f1f9
1665
+ tokyo_tower 1f5fc
1666
+ tomato 1f345
1667
+ tonga 1f1f9
1668
+ tongue 1f445
1669
+ toolbox 1f9f0
1670
+ tooth 1f9b7
1671
+ toothbrush 1faa5
1672
+ top 1f51d
1673
+ tophat 1f3a9
1674
+ tornado 1f32a
1675
+ tr 1f1f9
1676
+ trackball 1f5b2
1677
+ tractor 1f69c
1678
+ traffic_light 1f6a5
1679
+ train 1f68b
1680
+ train2 1f686
1681
+ tram 1f68a
1682
+ transgender_flag 1f3f3
1683
+ transgender_symbol 26a7
1684
+ triangular_flag_on_post 1f6a9
1685
+ triangular_ruler 1f4d0
1686
+ trident 1f531
1687
+ trinidad_tobago 1f1f9
1688
+ tristan_da_cunha 1f1f9
1689
+ triumph 1f624
1690
+ trolleybus 1f68e
1691
+ trollface trollface
1692
+ trophy 1f3c6
1693
+ tropical_drink 1f379
1694
+ tropical_fish 1f420
1695
+ truck 1f69a
1696
+ trumpet 1f3ba
1697
+ tshirt 1f455
1698
+ tulip 1f337
1699
+ tumbler_glass 1f943
1700
+ tunisia 1f1f9
1701
+ turkey 1f983
1702
+ turkmenistan 1f1f9
1703
+ turks_caicos_islands 1f1f9
1704
+ turtle 1f422
1705
+ tuvalu 1f1f9
1706
+ tv 1f4fa
1707
+ twisted_rightwards_arrows 1f500
1708
+ two 0032
1709
+ two_hearts 1f495
1710
+ two_men_holding_hands 1f46c
1711
+ two_women_holding_hands 1f46d
1712
+ u5272 1f239
1713
+ u5408 1f234
1714
+ u55b6 1f23a
1715
+ u6307 1f22f
1716
+ u6708 1f237
1717
+ u6709 1f236
1718
+ u6e80 1f235
1719
+ u7121 1f21a
1720
+ u7533 1f238
1721
+ u7981 1f232
1722
+ u7a7a 1f233
1723
+ uganda 1f1fa
1724
+ uk 1f1ec
1725
+ ukraine 1f1fa
1726
+ umbrella 2614
1727
+ unamused 1f612
1728
+ underage 1f51e
1729
+ unicorn 1f984
1730
+ united_arab_emirates 1f1e6
1731
+ united_nations 1f1fa
1732
+ unlock 1f513
1733
+ up 1f199
1734
+ upside_down_face 1f643
1735
+ uruguay 1f1fa
1736
+ us 1f1fa
1737
+ us_outlying_islands 1f1fa
1738
+ us_virgin_islands 1f1fb
1739
+ uzbekistan 1f1fa
1740
+ v 270c
1741
+ vampire 1f9db
1742
+ vampire_man 1f9db
1743
+ vampire_woman 1f9db
1744
+ vanuatu 1f1fb
1745
+ vatican_city 1f1fb
1746
+ venezuela 1f1fb
1747
+ vertical_traffic_light 1f6a6
1748
+ vhs 1f4fc
1749
+ vibration_mode 1f4f3
1750
+ video_camera 1f4f9
1751
+ video_game 1f3ae
1752
+ vietnam 1f1fb
1753
+ violin 1f3bb
1754
+ virgo 264d
1755
+ volcano 1f30b
1756
+ volleyball 1f3d0
1757
+ vomiting_face 1f92e
1758
+ vs 1f19a
1759
+ vulcan_salute 1f596
1760
+ waffle 1f9c7
1761
+ wales 1f3f4
1762
+ walking 1f6b6
1763
+ walking_man 1f6b6
1764
+ walking_woman 1f6b6
1765
+ wallis_futuna 1f1fc
1766
+ waning_crescent_moon 1f318
1767
+ waning_gibbous_moon 1f316
1768
+ warning 26a0
1769
+ wastebasket 1f5d1
1770
+ watch 231a
1771
+ water_buffalo 1f403
1772
+ water_polo 1f93d
1773
+ watermelon 1f349
1774
+ wave 1f44b
1775
+ wavy_dash 3030
1776
+ waxing_crescent_moon 1f312
1777
+ waxing_gibbous_moon 1f314
1778
+ wc 1f6be
1779
+ weary 1f629
1780
+ wedding 1f492
1781
+ weight_lifting 1f3cb
1782
+ weight_lifting_man 1f3cb
1783
+ weight_lifting_woman 1f3cb
1784
+ western_sahara 1f1ea
1785
+ whale 1f433
1786
+ whale2 1f40b
1787
+ wheel_of_dharma 2638
1788
+ wheelchair 267f
1789
+ white_check_mark 2705
1790
+ white_circle 26aa
1791
+ white_flag 1f3f3
1792
+ white_flower 1f4ae
1793
+ white_haired_man 1f468
1794
+ white_haired_woman 1f469
1795
+ white_heart 1f90d
1796
+ white_large_square 2b1c
1797
+ white_medium_small_square 25fd
1798
+ white_medium_square 25fb
1799
+ white_small_square 25ab
1800
+ white_square_button 1f533
1801
+ wilted_flower 1f940
1802
+ wind_chime 1f390
1803
+ wind_face 1f32c
1804
+ window 1fa9f
1805
+ wine_glass 1f377
1806
+ wink 1f609
1807
+ wolf 1f43a
1808
+ woman 1f469
1809
+ woman_artist 1f469
1810
+ woman_astronaut 1f469
1811
+ woman_beard 1f9d4
1812
+ woman_cartwheeling 1f938
1813
+ woman_cook 1f469
1814
+ woman_dancing 1f483
1815
+ woman_facepalming 1f926
1816
+ woman_factory_worker 1f469
1817
+ woman_farmer 1f469
1818
+ woman_feeding_baby 1f469
1819
+ woman_firefighter 1f469
1820
+ woman_health_worker 1f469
1821
+ woman_in_manual_wheelchair 1f469
1822
+ woman_in_motorized_wheelchair 1f469
1823
+ woman_in_tuxedo 1f935
1824
+ woman_judge 1f469
1825
+ woman_juggling 1f939
1826
+ woman_mechanic 1f469
1827
+ woman_office_worker 1f469
1828
+ woman_pilot 1f469
1829
+ woman_playing_handball 1f93e
1830
+ woman_playing_water_polo 1f93d
1831
+ woman_scientist 1f469
1832
+ woman_shrugging 1f937
1833
+ woman_singer 1f469
1834
+ woman_student 1f469
1835
+ woman_teacher 1f469
1836
+ woman_technologist 1f469
1837
+ woman_with_headscarf 1f9d5
1838
+ woman_with_probing_cane 1f469
1839
+ woman_with_turban 1f473
1840
+ woman_with_veil 1f470
1841
+ womans_clothes 1f45a
1842
+ womans_hat 1f452
1843
+ women_wrestling 1f93c
1844
+ womens 1f6ba
1845
+ wood 1fab5
1846
+ woozy_face 1f974
1847
+ world_map 1f5fa
1848
+ worm 1fab1
1849
+ worried 1f61f
1850
+ wrench 1f527
1851
+ wrestling 1f93c
1852
+ writing_hand 270d
1853
+ x 274c
1854
+ yarn 1f9f6
1855
+ yawning_face 1f971
1856
+ yellow_circle 1f7e1
1857
+ yellow_heart 1f49b
1858
+ yellow_square 1f7e8
1859
+ yemen 1f1fe
1860
+ yen 1f4b4
1861
+ yin_yang 262f
1862
+ yo_yo 1fa80
1863
+ yum 1f60b
1864
+ zambia 1f1ff
1865
+ zany_face 1f92a
1866
+ zap 26a1
1867
+ zebra 1f993
1868
+ zero 0030
1869
+ zimbabwe 1f1ff
1870
+ zipper_mouth_face 1f910
1871
+ zombie 1f9df
1872
+ zombie_man 1f9df
1873
+ zombie_woman 1f9df
1874
+ zzz 1f4a4