tiptapify 0.0.12 → 0.0.14

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.
Files changed (88) hide show
  1. package/README.md +14 -5
  2. package/dist/tiptapify.css +1 -1
  3. package/dist/tiptapify.mjs +76483 -57282
  4. package/dist/tiptapify.umd.js +42 -42
  5. package/package.json +56 -47
  6. package/src/components/Footer.vue +1 -3
  7. package/src/components/Tiptapify.vue +15 -3
  8. package/src/components/Toolbar/GroupBtn.vue +0 -1
  9. package/src/components/Toolbar/Toggle.vue +2 -3
  10. package/src/components/Toolbar/defaultExtensionComponents.ts +13 -1
  11. package/src/components/UI/TiptapifyDialog.vue +2 -3
  12. package/src/components/editorExtensions.ts +5 -0
  13. package/src/composables/Toolbar/Actions/useRedo.ts +1 -2
  14. package/src/composables/Toolbar/Actions/useUndo.ts +1 -2
  15. package/src/composables/Toolbar/Alignment/useAlignmentCenter.ts +1 -2
  16. package/src/composables/Toolbar/Alignment/useAlignmentJustify.ts +1 -2
  17. package/src/composables/Toolbar/Alignment/useAlignmentLeft.ts +1 -2
  18. package/src/composables/Toolbar/Alignment/useAlignmentRight.ts +1 -2
  19. package/src/composables/Toolbar/Format/useBold.ts +1 -2
  20. package/src/composables/Toolbar/Format/useItalic.ts +1 -2
  21. package/src/composables/Toolbar/Format/useStrike.ts +1 -2
  22. package/src/composables/Toolbar/Format/useUnderline.ts +1 -2
  23. package/src/composables/Toolbar/FormatExtra/useBlockquote.ts +1 -2
  24. package/src/composables/Toolbar/FormatExtra/useCode.ts +1 -2
  25. package/src/composables/Toolbar/FormatExtra/useCodeBlock.ts +1 -2
  26. package/src/composables/Toolbar/FormatExtra/useSub.ts +1 -2
  27. package/src/composables/Toolbar/FormatExtra/useSup.ts +1 -2
  28. package/src/composables/Toolbar/List/useBullet.ts +1 -2
  29. package/src/composables/Toolbar/List/useIndent.ts +1 -2
  30. package/src/composables/Toolbar/List/useNumbered.ts +1 -2
  31. package/src/composables/Toolbar/List/useOutdent.ts +1 -2
  32. package/src/composables/Toolbar/List/useTask.ts +1 -2
  33. package/src/composables/Toolbar/Media/useEmoji.ts +19 -0
  34. package/src/composables/Toolbar/Media/useImage.ts +1 -2
  35. package/src/composables/Toolbar/Media/useLink.ts +1 -2
  36. package/src/composables/Toolbar/Media/useTable.ts +1 -2
  37. package/src/composables/Toolbar/Media/useVideo.ts +22 -0
  38. package/src/composables/Toolbar/Misc/useBreak.ts +1 -2
  39. package/src/composables/Toolbar/Misc/useFormatClear.ts +1 -2
  40. package/src/composables/Toolbar/Misc/useInvisibleCharacters.ts +1 -2
  41. package/src/composables/Toolbar/Misc/useLine.ts +1 -2
  42. package/src/composables/Toolbar/Misc/usePreview.ts +1 -2
  43. package/src/composables/Toolbar/Misc/useSource.ts +1 -2
  44. package/src/composables/Toolbar/Style/useColor.ts +1 -2
  45. package/src/composables/Toolbar/Style/useFontFamily.ts +1 -2
  46. package/src/composables/Toolbar/Style/useFontSize.ts +1 -2
  47. package/src/composables/Toolbar/Style/useHeading.ts +1 -2
  48. package/src/composables/Toolbar/Style/useHighlight.ts +1 -2
  49. package/src/composables/Toolbar/Style/useLineHeight.ts +1 -2
  50. package/src/composables/Toolbar/useMediaItems.ts +4 -0
  51. package/src/extensions/components/Emoji.vue +108 -0
  52. package/src/extensions/components/FontFamily.vue +1 -2
  53. package/src/extensions/components/FontSize.vue +1 -2
  54. package/src/extensions/components/ImageDialog.vue +1 -2
  55. package/src/extensions/components/LineHeight.vue +1 -2
  56. package/src/extensions/components/LinkDialog.vue +1 -2
  57. package/src/extensions/components/ShowSourceDialog.vue +1 -2
  58. package/src/extensions/components/StyleColor.vue +1 -2
  59. package/src/extensions/components/TableBuilder.vue +1 -2
  60. package/src/extensions/components/VideoDialog.vue +138 -0
  61. package/src/extensions/emoji/activities.ts +770 -0
  62. package/src/extensions/emoji/animals_and_nature.ts +1330 -0
  63. package/src/extensions/emoji/component.ts +74 -0
  64. package/src/extensions/emoji/flags.ts +2210 -0
  65. package/src/extensions/emoji/food_and_drink.ts +1066 -0
  66. package/src/extensions/emoji/index.ts +63 -0
  67. package/src/extensions/emoji/objects.ts +2514 -0
  68. package/src/extensions/emoji/people_and_body.ts +3986 -0
  69. package/src/extensions/emoji/smileys_and_emotion.ts +1482 -0
  70. package/src/extensions/emoji/symbols.ts +2242 -0
  71. package/src/extensions/emoji/travel_and_places.ts +2138 -0
  72. package/src/i18n/index.ts +23 -10
  73. package/src/i18n/locales/ch.json +18 -0
  74. package/src/i18n/locales/cz.json +18 -0
  75. package/src/i18n/locales/de.json +18 -0
  76. package/src/i18n/locales/en.json +21 -1
  77. package/src/i18n/locales/es.json +18 -0
  78. package/src/i18n/locales/fr.json +18 -0
  79. package/src/i18n/locales/it.json +18 -0
  80. package/src/i18n/locales/la.json +18 -0
  81. package/src/i18n/locales/lt.json +18 -0
  82. package/src/i18n/locales/nl.json +18 -0
  83. package/src/i18n/locales/pl.json +18 -0
  84. package/src/i18n/locales/pt.json +18 -0
  85. package/src/i18n/locales/ru.json +21 -1
  86. package/src/i18n/locales/se.json +18 -0
  87. package/src/i18n/locales/ua.json +21 -1
  88. package/src/index.ts +0 -3
@@ -0,0 +1,1482 @@
1
+ export default [
2
+ {
3
+ "codes": "1F600",
4
+ "char": "😀",
5
+ "name": "grinning face",
6
+ "category": "Smileys & Emotion (face-smiling)",
7
+ "group": "Smileys & Emotion",
8
+ "subgroup": "face-smiling"
9
+ },
10
+ {
11
+ "codes": "1F603",
12
+ "char": "😃",
13
+ "name": "grinning face with big eyes",
14
+ "category": "Smileys & Emotion (face-smiling)",
15
+ "group": "Smileys & Emotion",
16
+ "subgroup": "face-smiling"
17
+ },
18
+ {
19
+ "codes": "1F604",
20
+ "char": "😄",
21
+ "name": "grinning face with smiling eyes",
22
+ "category": "Smileys & Emotion (face-smiling)",
23
+ "group": "Smileys & Emotion",
24
+ "subgroup": "face-smiling"
25
+ },
26
+ {
27
+ "codes": "1F601",
28
+ "char": "😁",
29
+ "name": "beaming face with smiling eyes",
30
+ "category": "Smileys & Emotion (face-smiling)",
31
+ "group": "Smileys & Emotion",
32
+ "subgroup": "face-smiling"
33
+ },
34
+ {
35
+ "codes": "1F606",
36
+ "char": "😆",
37
+ "name": "grinning squinting face",
38
+ "category": "Smileys & Emotion (face-smiling)",
39
+ "group": "Smileys & Emotion",
40
+ "subgroup": "face-smiling"
41
+ },
42
+ {
43
+ "codes": "1F605",
44
+ "char": "😅",
45
+ "name": "grinning face with sweat",
46
+ "category": "Smileys & Emotion (face-smiling)",
47
+ "group": "Smileys & Emotion",
48
+ "subgroup": "face-smiling"
49
+ },
50
+ {
51
+ "codes": "1F923",
52
+ "char": "🤣",
53
+ "name": "rolling on the floor laughing",
54
+ "category": "Smileys & Emotion (face-smiling)",
55
+ "group": "Smileys & Emotion",
56
+ "subgroup": "face-smiling"
57
+ },
58
+ {
59
+ "codes": "1F602",
60
+ "char": "😂",
61
+ "name": "face with tears of joy",
62
+ "category": "Smileys & Emotion (face-smiling)",
63
+ "group": "Smileys & Emotion",
64
+ "subgroup": "face-smiling"
65
+ },
66
+ {
67
+ "codes": "1F642",
68
+ "char": "🙂",
69
+ "name": "slightly smiling face",
70
+ "category": "Smileys & Emotion (face-smiling)",
71
+ "group": "Smileys & Emotion",
72
+ "subgroup": "face-smiling"
73
+ },
74
+ {
75
+ "codes": "1F643",
76
+ "char": "🙃",
77
+ "name": "upside-down face",
78
+ "category": "Smileys & Emotion (face-smiling)",
79
+ "group": "Smileys & Emotion",
80
+ "subgroup": "face-smiling"
81
+ },
82
+ {
83
+ "codes": "1FAE0",
84
+ "char": "🫠",
85
+ "name": "melting face",
86
+ "category": "Smileys & Emotion (face-smiling)",
87
+ "group": "Smileys & Emotion",
88
+ "subgroup": "face-smiling"
89
+ },
90
+ {
91
+ "codes": "1F609",
92
+ "char": "😉",
93
+ "name": "winking face",
94
+ "category": "Smileys & Emotion (face-smiling)",
95
+ "group": "Smileys & Emotion",
96
+ "subgroup": "face-smiling"
97
+ },
98
+ {
99
+ "codes": "1F60A",
100
+ "char": "😊",
101
+ "name": "smiling face with smiling eyes",
102
+ "category": "Smileys & Emotion (face-smiling)",
103
+ "group": "Smileys & Emotion",
104
+ "subgroup": "face-smiling"
105
+ },
106
+ {
107
+ "codes": "1F607",
108
+ "char": "😇",
109
+ "name": "smiling face with halo",
110
+ "category": "Smileys & Emotion (face-smiling)",
111
+ "group": "Smileys & Emotion",
112
+ "subgroup": "face-smiling"
113
+ },
114
+ {
115
+ "codes": "1F970",
116
+ "char": "🥰",
117
+ "name": "smiling face with hearts",
118
+ "category": "Smileys & Emotion (face-affection)",
119
+ "group": "Smileys & Emotion",
120
+ "subgroup": "face-affection"
121
+ },
122
+ {
123
+ "codes": "1F60D",
124
+ "char": "😍",
125
+ "name": "smiling face with heart-eyes",
126
+ "category": "Smileys & Emotion (face-affection)",
127
+ "group": "Smileys & Emotion",
128
+ "subgroup": "face-affection"
129
+ },
130
+ {
131
+ "codes": "1F929",
132
+ "char": "🤩",
133
+ "name": "star-struck",
134
+ "category": "Smileys & Emotion (face-affection)",
135
+ "group": "Smileys & Emotion",
136
+ "subgroup": "face-affection"
137
+ },
138
+ {
139
+ "codes": "1F618",
140
+ "char": "😘",
141
+ "name": "face blowing a kiss",
142
+ "category": "Smileys & Emotion (face-affection)",
143
+ "group": "Smileys & Emotion",
144
+ "subgroup": "face-affection"
145
+ },
146
+ {
147
+ "codes": "1F617",
148
+ "char": "😗",
149
+ "name": "kissing face",
150
+ "category": "Smileys & Emotion (face-affection)",
151
+ "group": "Smileys & Emotion",
152
+ "subgroup": "face-affection"
153
+ },
154
+ {
155
+ "codes": "263A FE0F",
156
+ "char": "☺️",
157
+ "name": "smiling face",
158
+ "category": "Smileys & Emotion (face-affection)",
159
+ "group": "Smileys & Emotion",
160
+ "subgroup": "face-affection"
161
+ },
162
+ {
163
+ "codes": "263A",
164
+ "char": "☺",
165
+ "name": "smiling face",
166
+ "category": "Smileys & Emotion (face-affection)",
167
+ "group": "Smileys & Emotion",
168
+ "subgroup": "face-affection"
169
+ },
170
+ {
171
+ "codes": "1F61A",
172
+ "char": "😚",
173
+ "name": "kissing face with closed eyes",
174
+ "category": "Smileys & Emotion (face-affection)",
175
+ "group": "Smileys & Emotion",
176
+ "subgroup": "face-affection"
177
+ },
178
+ {
179
+ "codes": "1F619",
180
+ "char": "😙",
181
+ "name": "kissing face with smiling eyes",
182
+ "category": "Smileys & Emotion (face-affection)",
183
+ "group": "Smileys & Emotion",
184
+ "subgroup": "face-affection"
185
+ },
186
+ {
187
+ "codes": "1F972",
188
+ "char": "🥲",
189
+ "name": "smiling face with tear",
190
+ "category": "Smileys & Emotion (face-affection)",
191
+ "group": "Smileys & Emotion",
192
+ "subgroup": "face-affection"
193
+ },
194
+ {
195
+ "codes": "1F60B",
196
+ "char": "😋",
197
+ "name": "face savoring food",
198
+ "category": "Smileys & Emotion (face-tongue)",
199
+ "group": "Smileys & Emotion",
200
+ "subgroup": "face-tongue"
201
+ },
202
+ {
203
+ "codes": "1F61B",
204
+ "char": "😛",
205
+ "name": "face with tongue",
206
+ "category": "Smileys & Emotion (face-tongue)",
207
+ "group": "Smileys & Emotion",
208
+ "subgroup": "face-tongue"
209
+ },
210
+ {
211
+ "codes": "1F61C",
212
+ "char": "😜",
213
+ "name": "winking face with tongue",
214
+ "category": "Smileys & Emotion (face-tongue)",
215
+ "group": "Smileys & Emotion",
216
+ "subgroup": "face-tongue"
217
+ },
218
+ {
219
+ "codes": "1F92A",
220
+ "char": "🤪",
221
+ "name": "zany face",
222
+ "category": "Smileys & Emotion (face-tongue)",
223
+ "group": "Smileys & Emotion",
224
+ "subgroup": "face-tongue"
225
+ },
226
+ {
227
+ "codes": "1F61D",
228
+ "char": "😝",
229
+ "name": "squinting face with tongue",
230
+ "category": "Smileys & Emotion (face-tongue)",
231
+ "group": "Smileys & Emotion",
232
+ "subgroup": "face-tongue"
233
+ },
234
+ {
235
+ "codes": "1F911",
236
+ "char": "🤑",
237
+ "name": "money-mouth face",
238
+ "category": "Smileys & Emotion (face-tongue)",
239
+ "group": "Smileys & Emotion",
240
+ "subgroup": "face-tongue"
241
+ },
242
+ {
243
+ "codes": "1F917",
244
+ "char": "🤗",
245
+ "name": "smiling face with open hands",
246
+ "category": "Smileys & Emotion (face-hand)",
247
+ "group": "Smileys & Emotion",
248
+ "subgroup": "face-hand"
249
+ },
250
+ {
251
+ "codes": "1F92D",
252
+ "char": "🤭",
253
+ "name": "face with hand over mouth",
254
+ "category": "Smileys & Emotion (face-hand)",
255
+ "group": "Smileys & Emotion",
256
+ "subgroup": "face-hand"
257
+ },
258
+ {
259
+ "codes": "1FAE2",
260
+ "char": "🫢",
261
+ "name": "face with open eyes and hand over mouth",
262
+ "category": "Smileys & Emotion (face-hand)",
263
+ "group": "Smileys & Emotion",
264
+ "subgroup": "face-hand"
265
+ },
266
+ {
267
+ "codes": "1FAE3",
268
+ "char": "🫣",
269
+ "name": "face with peeking eye",
270
+ "category": "Smileys & Emotion (face-hand)",
271
+ "group": "Smileys & Emotion",
272
+ "subgroup": "face-hand"
273
+ },
274
+ {
275
+ "codes": "1F92B",
276
+ "char": "🤫",
277
+ "name": "shushing face",
278
+ "category": "Smileys & Emotion (face-hand)",
279
+ "group": "Smileys & Emotion",
280
+ "subgroup": "face-hand"
281
+ },
282
+ {
283
+ "codes": "1F914",
284
+ "char": "🤔",
285
+ "name": "thinking face",
286
+ "category": "Smileys & Emotion (face-hand)",
287
+ "group": "Smileys & Emotion",
288
+ "subgroup": "face-hand"
289
+ },
290
+ {
291
+ "codes": "1FAE1",
292
+ "char": "🫡",
293
+ "name": "saluting face",
294
+ "category": "Smileys & Emotion (face-hand)",
295
+ "group": "Smileys & Emotion",
296
+ "subgroup": "face-hand"
297
+ },
298
+ {
299
+ "codes": "1F910",
300
+ "char": "🤐",
301
+ "name": "zipper-mouth face",
302
+ "category": "Smileys & Emotion (face-neutral-skeptical)",
303
+ "group": "Smileys & Emotion",
304
+ "subgroup": "face-neutral-skeptical"
305
+ },
306
+ {
307
+ "codes": "1F928",
308
+ "char": "🤨",
309
+ "name": "face with raised eyebrow",
310
+ "category": "Smileys & Emotion (face-neutral-skeptical)",
311
+ "group": "Smileys & Emotion",
312
+ "subgroup": "face-neutral-skeptical"
313
+ },
314
+ {
315
+ "codes": "1F610",
316
+ "char": "😐",
317
+ "name": "neutral face",
318
+ "category": "Smileys & Emotion (face-neutral-skeptical)",
319
+ "group": "Smileys & Emotion",
320
+ "subgroup": "face-neutral-skeptical"
321
+ },
322
+ {
323
+ "codes": "1F611",
324
+ "char": "😑",
325
+ "name": "expressionless face",
326
+ "category": "Smileys & Emotion (face-neutral-skeptical)",
327
+ "group": "Smileys & Emotion",
328
+ "subgroup": "face-neutral-skeptical"
329
+ },
330
+ {
331
+ "codes": "1F636",
332
+ "char": "😶",
333
+ "name": "face without mouth",
334
+ "category": "Smileys & Emotion (face-neutral-skeptical)",
335
+ "group": "Smileys & Emotion",
336
+ "subgroup": "face-neutral-skeptical"
337
+ },
338
+ {
339
+ "codes": "1FAE5",
340
+ "char": "🫥",
341
+ "name": "dotted line face",
342
+ "category": "Smileys & Emotion (face-neutral-skeptical)",
343
+ "group": "Smileys & Emotion",
344
+ "subgroup": "face-neutral-skeptical"
345
+ },
346
+ {
347
+ "codes": "1F636 200D 1F32B FE0F",
348
+ "char": "😶‍🌫️",
349
+ "name": "face in clouds",
350
+ "category": "Smileys & Emotion (face-neutral-skeptical)",
351
+ "group": "Smileys & Emotion",
352
+ "subgroup": "face-neutral-skeptical"
353
+ },
354
+ {
355
+ "codes": "1F636 200D 1F32B",
356
+ "char": "😶‍🌫",
357
+ "name": "face in clouds",
358
+ "category": "Smileys & Emotion (face-neutral-skeptical)",
359
+ "group": "Smileys & Emotion",
360
+ "subgroup": "face-neutral-skeptical"
361
+ },
362
+ {
363
+ "codes": "1F60F",
364
+ "char": "😏",
365
+ "name": "smirking face",
366
+ "category": "Smileys & Emotion (face-neutral-skeptical)",
367
+ "group": "Smileys & Emotion",
368
+ "subgroup": "face-neutral-skeptical"
369
+ },
370
+ {
371
+ "codes": "1F612",
372
+ "char": "😒",
373
+ "name": "unamused face",
374
+ "category": "Smileys & Emotion (face-neutral-skeptical)",
375
+ "group": "Smileys & Emotion",
376
+ "subgroup": "face-neutral-skeptical"
377
+ },
378
+ {
379
+ "codes": "1F644",
380
+ "char": "🙄",
381
+ "name": "face with rolling eyes",
382
+ "category": "Smileys & Emotion (face-neutral-skeptical)",
383
+ "group": "Smileys & Emotion",
384
+ "subgroup": "face-neutral-skeptical"
385
+ },
386
+ {
387
+ "codes": "1F62C",
388
+ "char": "😬",
389
+ "name": "grimacing face",
390
+ "category": "Smileys & Emotion (face-neutral-skeptical)",
391
+ "group": "Smileys & Emotion",
392
+ "subgroup": "face-neutral-skeptical"
393
+ },
394
+ {
395
+ "codes": "1F62E 200D 1F4A8",
396
+ "char": "😮‍💨",
397
+ "name": "face exhaling",
398
+ "category": "Smileys & Emotion (face-neutral-skeptical)",
399
+ "group": "Smileys & Emotion",
400
+ "subgroup": "face-neutral-skeptical"
401
+ },
402
+ {
403
+ "codes": "1F925",
404
+ "char": "🤥",
405
+ "name": "lying face",
406
+ "category": "Smileys & Emotion (face-neutral-skeptical)",
407
+ "group": "Smileys & Emotion",
408
+ "subgroup": "face-neutral-skeptical"
409
+ },
410
+ {
411
+ "codes": "1FAE8",
412
+ "char": "🫨",
413
+ "name": "shaking face",
414
+ "category": "Smileys & Emotion (face-neutral-skeptical)",
415
+ "group": "Smileys & Emotion",
416
+ "subgroup": "face-neutral-skeptical"
417
+ },
418
+ {
419
+ "codes": "1F642 200D 2194 FE0F",
420
+ "char": "🙂‍↔️",
421
+ "name": "head shaking horizontally",
422
+ "category": "Smileys & Emotion (face-neutral-skeptical)",
423
+ "group": "Smileys & Emotion",
424
+ "subgroup": "face-neutral-skeptical"
425
+ },
426
+ {
427
+ "codes": "1F642 200D 2194",
428
+ "char": "🙂‍↔",
429
+ "name": "head shaking horizontally",
430
+ "category": "Smileys & Emotion (face-neutral-skeptical)",
431
+ "group": "Smileys & Emotion",
432
+ "subgroup": "face-neutral-skeptical"
433
+ },
434
+ {
435
+ "codes": "1F642 200D 2195 FE0F",
436
+ "char": "🙂‍↕️",
437
+ "name": "head shaking vertically",
438
+ "category": "Smileys & Emotion (face-neutral-skeptical)",
439
+ "group": "Smileys & Emotion",
440
+ "subgroup": "face-neutral-skeptical"
441
+ },
442
+ {
443
+ "codes": "1F642 200D 2195",
444
+ "char": "🙂‍↕",
445
+ "name": "head shaking vertically",
446
+ "category": "Smileys & Emotion (face-neutral-skeptical)",
447
+ "group": "Smileys & Emotion",
448
+ "subgroup": "face-neutral-skeptical"
449
+ },
450
+ {
451
+ "codes": "1F60C",
452
+ "char": "😌",
453
+ "name": "relieved face",
454
+ "category": "Smileys & Emotion (face-sleepy)",
455
+ "group": "Smileys & Emotion",
456
+ "subgroup": "face-sleepy"
457
+ },
458
+ {
459
+ "codes": "1F614",
460
+ "char": "😔",
461
+ "name": "pensive face",
462
+ "category": "Smileys & Emotion (face-sleepy)",
463
+ "group": "Smileys & Emotion",
464
+ "subgroup": "face-sleepy"
465
+ },
466
+ {
467
+ "codes": "1F62A",
468
+ "char": "😪",
469
+ "name": "sleepy face",
470
+ "category": "Smileys & Emotion (face-sleepy)",
471
+ "group": "Smileys & Emotion",
472
+ "subgroup": "face-sleepy"
473
+ },
474
+ {
475
+ "codes": "1F924",
476
+ "char": "🤤",
477
+ "name": "drooling face",
478
+ "category": "Smileys & Emotion (face-sleepy)",
479
+ "group": "Smileys & Emotion",
480
+ "subgroup": "face-sleepy"
481
+ },
482
+ {
483
+ "codes": "1F634",
484
+ "char": "😴",
485
+ "name": "sleeping face",
486
+ "category": "Smileys & Emotion (face-sleepy)",
487
+ "group": "Smileys & Emotion",
488
+ "subgroup": "face-sleepy"
489
+ },
490
+ {
491
+ "codes": "1FAE9",
492
+ "char": "🫩",
493
+ "name": "face with bags under eyes",
494
+ "category": "Smileys & Emotion (face-sleepy)",
495
+ "group": "Smileys & Emotion",
496
+ "subgroup": "face-sleepy"
497
+ },
498
+ {
499
+ "codes": "1F637",
500
+ "char": "😷",
501
+ "name": "face with medical mask",
502
+ "category": "Smileys & Emotion (face-unwell)",
503
+ "group": "Smileys & Emotion",
504
+ "subgroup": "face-unwell"
505
+ },
506
+ {
507
+ "codes": "1F912",
508
+ "char": "🤒",
509
+ "name": "face with thermometer",
510
+ "category": "Smileys & Emotion (face-unwell)",
511
+ "group": "Smileys & Emotion",
512
+ "subgroup": "face-unwell"
513
+ },
514
+ {
515
+ "codes": "1F915",
516
+ "char": "🤕",
517
+ "name": "face with head-bandage",
518
+ "category": "Smileys & Emotion (face-unwell)",
519
+ "group": "Smileys & Emotion",
520
+ "subgroup": "face-unwell"
521
+ },
522
+ {
523
+ "codes": "1F922",
524
+ "char": "🤢",
525
+ "name": "nauseated face",
526
+ "category": "Smileys & Emotion (face-unwell)",
527
+ "group": "Smileys & Emotion",
528
+ "subgroup": "face-unwell"
529
+ },
530
+ {
531
+ "codes": "1F92E",
532
+ "char": "🤮",
533
+ "name": "face vomiting",
534
+ "category": "Smileys & Emotion (face-unwell)",
535
+ "group": "Smileys & Emotion",
536
+ "subgroup": "face-unwell"
537
+ },
538
+ {
539
+ "codes": "1F927",
540
+ "char": "🤧",
541
+ "name": "sneezing face",
542
+ "category": "Smileys & Emotion (face-unwell)",
543
+ "group": "Smileys & Emotion",
544
+ "subgroup": "face-unwell"
545
+ },
546
+ {
547
+ "codes": "1F975",
548
+ "char": "🥵",
549
+ "name": "hot face",
550
+ "category": "Smileys & Emotion (face-unwell)",
551
+ "group": "Smileys & Emotion",
552
+ "subgroup": "face-unwell"
553
+ },
554
+ {
555
+ "codes": "1F976",
556
+ "char": "🥶",
557
+ "name": "cold face",
558
+ "category": "Smileys & Emotion (face-unwell)",
559
+ "group": "Smileys & Emotion",
560
+ "subgroup": "face-unwell"
561
+ },
562
+ {
563
+ "codes": "1F974",
564
+ "char": "🥴",
565
+ "name": "woozy face",
566
+ "category": "Smileys & Emotion (face-unwell)",
567
+ "group": "Smileys & Emotion",
568
+ "subgroup": "face-unwell"
569
+ },
570
+ {
571
+ "codes": "1F635",
572
+ "char": "😵",
573
+ "name": "face with crossed-out eyes",
574
+ "category": "Smileys & Emotion (face-unwell)",
575
+ "group": "Smileys & Emotion",
576
+ "subgroup": "face-unwell"
577
+ },
578
+ {
579
+ "codes": "1F635 200D 1F4AB",
580
+ "char": "😵‍💫",
581
+ "name": "face with spiral eyes",
582
+ "category": "Smileys & Emotion (face-unwell)",
583
+ "group": "Smileys & Emotion",
584
+ "subgroup": "face-unwell"
585
+ },
586
+ {
587
+ "codes": "1F92F",
588
+ "char": "🤯",
589
+ "name": "exploding head",
590
+ "category": "Smileys & Emotion (face-unwell)",
591
+ "group": "Smileys & Emotion",
592
+ "subgroup": "face-unwell"
593
+ },
594
+ {
595
+ "codes": "1F920",
596
+ "char": "🤠",
597
+ "name": "cowboy hat face",
598
+ "category": "Smileys & Emotion (face-hat)",
599
+ "group": "Smileys & Emotion",
600
+ "subgroup": "face-hat"
601
+ },
602
+ {
603
+ "codes": "1F973",
604
+ "char": "🥳",
605
+ "name": "partying face",
606
+ "category": "Smileys & Emotion (face-hat)",
607
+ "group": "Smileys & Emotion",
608
+ "subgroup": "face-hat"
609
+ },
610
+ {
611
+ "codes": "1F978",
612
+ "char": "🥸",
613
+ "name": "disguised face",
614
+ "category": "Smileys & Emotion (face-hat)",
615
+ "group": "Smileys & Emotion",
616
+ "subgroup": "face-hat"
617
+ },
618
+ {
619
+ "codes": "1F60E",
620
+ "char": "😎",
621
+ "name": "smiling face with sunglasses",
622
+ "category": "Smileys & Emotion (face-glasses)",
623
+ "group": "Smileys & Emotion",
624
+ "subgroup": "face-glasses"
625
+ },
626
+ {
627
+ "codes": "1F913",
628
+ "char": "🤓",
629
+ "name": "nerd face",
630
+ "category": "Smileys & Emotion (face-glasses)",
631
+ "group": "Smileys & Emotion",
632
+ "subgroup": "face-glasses"
633
+ },
634
+ {
635
+ "codes": "1F9D0",
636
+ "char": "🧐",
637
+ "name": "face with monocle",
638
+ "category": "Smileys & Emotion (face-glasses)",
639
+ "group": "Smileys & Emotion",
640
+ "subgroup": "face-glasses"
641
+ },
642
+ {
643
+ "codes": "1F615",
644
+ "char": "😕",
645
+ "name": "confused face",
646
+ "category": "Smileys & Emotion (face-concerned)",
647
+ "group": "Smileys & Emotion",
648
+ "subgroup": "face-concerned"
649
+ },
650
+ {
651
+ "codes": "1FAE4",
652
+ "char": "🫤",
653
+ "name": "face with diagonal mouth",
654
+ "category": "Smileys & Emotion (face-concerned)",
655
+ "group": "Smileys & Emotion",
656
+ "subgroup": "face-concerned"
657
+ },
658
+ {
659
+ "codes": "1F61F",
660
+ "char": "😟",
661
+ "name": "worried face",
662
+ "category": "Smileys & Emotion (face-concerned)",
663
+ "group": "Smileys & Emotion",
664
+ "subgroup": "face-concerned"
665
+ },
666
+ {
667
+ "codes": "1F641",
668
+ "char": "🙁",
669
+ "name": "slightly frowning face",
670
+ "category": "Smileys & Emotion (face-concerned)",
671
+ "group": "Smileys & Emotion",
672
+ "subgroup": "face-concerned"
673
+ },
674
+ {
675
+ "codes": "2639 FE0F",
676
+ "char": "☹️",
677
+ "name": "frowning face",
678
+ "category": "Smileys & Emotion (face-concerned)",
679
+ "group": "Smileys & Emotion",
680
+ "subgroup": "face-concerned"
681
+ },
682
+ {
683
+ "codes": "2639",
684
+ "char": "☹",
685
+ "name": "frowning face",
686
+ "category": "Smileys & Emotion (face-concerned)",
687
+ "group": "Smileys & Emotion",
688
+ "subgroup": "face-concerned"
689
+ },
690
+ {
691
+ "codes": "1F62E",
692
+ "char": "😮",
693
+ "name": "face with open mouth",
694
+ "category": "Smileys & Emotion (face-concerned)",
695
+ "group": "Smileys & Emotion",
696
+ "subgroup": "face-concerned"
697
+ },
698
+ {
699
+ "codes": "1F62F",
700
+ "char": "😯",
701
+ "name": "hushed face",
702
+ "category": "Smileys & Emotion (face-concerned)",
703
+ "group": "Smileys & Emotion",
704
+ "subgroup": "face-concerned"
705
+ },
706
+ {
707
+ "codes": "1F632",
708
+ "char": "😲",
709
+ "name": "astonished face",
710
+ "category": "Smileys & Emotion (face-concerned)",
711
+ "group": "Smileys & Emotion",
712
+ "subgroup": "face-concerned"
713
+ },
714
+ {
715
+ "codes": "1F633",
716
+ "char": "😳",
717
+ "name": "flushed face",
718
+ "category": "Smileys & Emotion (face-concerned)",
719
+ "group": "Smileys & Emotion",
720
+ "subgroup": "face-concerned"
721
+ },
722
+ {
723
+ "codes": "1F97A",
724
+ "char": "🥺",
725
+ "name": "pleading face",
726
+ "category": "Smileys & Emotion (face-concerned)",
727
+ "group": "Smileys & Emotion",
728
+ "subgroup": "face-concerned"
729
+ },
730
+ {
731
+ "codes": "1F979",
732
+ "char": "🥹",
733
+ "name": "face holding back tears",
734
+ "category": "Smileys & Emotion (face-concerned)",
735
+ "group": "Smileys & Emotion",
736
+ "subgroup": "face-concerned"
737
+ },
738
+ {
739
+ "codes": "1F626",
740
+ "char": "😦",
741
+ "name": "frowning face with open mouth",
742
+ "category": "Smileys & Emotion (face-concerned)",
743
+ "group": "Smileys & Emotion",
744
+ "subgroup": "face-concerned"
745
+ },
746
+ {
747
+ "codes": "1F627",
748
+ "char": "😧",
749
+ "name": "anguished face",
750
+ "category": "Smileys & Emotion (face-concerned)",
751
+ "group": "Smileys & Emotion",
752
+ "subgroup": "face-concerned"
753
+ },
754
+ {
755
+ "codes": "1F628",
756
+ "char": "😨",
757
+ "name": "fearful face",
758
+ "category": "Smileys & Emotion (face-concerned)",
759
+ "group": "Smileys & Emotion",
760
+ "subgroup": "face-concerned"
761
+ },
762
+ {
763
+ "codes": "1F630",
764
+ "char": "😰",
765
+ "name": "anxious face with sweat",
766
+ "category": "Smileys & Emotion (face-concerned)",
767
+ "group": "Smileys & Emotion",
768
+ "subgroup": "face-concerned"
769
+ },
770
+ {
771
+ "codes": "1F625",
772
+ "char": "😥",
773
+ "name": "sad but relieved face",
774
+ "category": "Smileys & Emotion (face-concerned)",
775
+ "group": "Smileys & Emotion",
776
+ "subgroup": "face-concerned"
777
+ },
778
+ {
779
+ "codes": "1F622",
780
+ "char": "😢",
781
+ "name": "crying face",
782
+ "category": "Smileys & Emotion (face-concerned)",
783
+ "group": "Smileys & Emotion",
784
+ "subgroup": "face-concerned"
785
+ },
786
+ {
787
+ "codes": "1F62D",
788
+ "char": "😭",
789
+ "name": "loudly crying face",
790
+ "category": "Smileys & Emotion (face-concerned)",
791
+ "group": "Smileys & Emotion",
792
+ "subgroup": "face-concerned"
793
+ },
794
+ {
795
+ "codes": "1F631",
796
+ "char": "😱",
797
+ "name": "face screaming in fear",
798
+ "category": "Smileys & Emotion (face-concerned)",
799
+ "group": "Smileys & Emotion",
800
+ "subgroup": "face-concerned"
801
+ },
802
+ {
803
+ "codes": "1F616",
804
+ "char": "😖",
805
+ "name": "confounded face",
806
+ "category": "Smileys & Emotion (face-concerned)",
807
+ "group": "Smileys & Emotion",
808
+ "subgroup": "face-concerned"
809
+ },
810
+ {
811
+ "codes": "1F623",
812
+ "char": "😣",
813
+ "name": "persevering face",
814
+ "category": "Smileys & Emotion (face-concerned)",
815
+ "group": "Smileys & Emotion",
816
+ "subgroup": "face-concerned"
817
+ },
818
+ {
819
+ "codes": "1F61E",
820
+ "char": "😞",
821
+ "name": "disappointed face",
822
+ "category": "Smileys & Emotion (face-concerned)",
823
+ "group": "Smileys & Emotion",
824
+ "subgroup": "face-concerned"
825
+ },
826
+ {
827
+ "codes": "1F613",
828
+ "char": "😓",
829
+ "name": "downcast face with sweat",
830
+ "category": "Smileys & Emotion (face-concerned)",
831
+ "group": "Smileys & Emotion",
832
+ "subgroup": "face-concerned"
833
+ },
834
+ {
835
+ "codes": "1F629",
836
+ "char": "😩",
837
+ "name": "weary face",
838
+ "category": "Smileys & Emotion (face-concerned)",
839
+ "group": "Smileys & Emotion",
840
+ "subgroup": "face-concerned"
841
+ },
842
+ {
843
+ "codes": "1F62B",
844
+ "char": "😫",
845
+ "name": "tired face",
846
+ "category": "Smileys & Emotion (face-concerned)",
847
+ "group": "Smileys & Emotion",
848
+ "subgroup": "face-concerned"
849
+ },
850
+ {
851
+ "codes": "1F971",
852
+ "char": "🥱",
853
+ "name": "yawning face",
854
+ "category": "Smileys & Emotion (face-concerned)",
855
+ "group": "Smileys & Emotion",
856
+ "subgroup": "face-concerned"
857
+ },
858
+ {
859
+ "codes": "1F624",
860
+ "char": "😤",
861
+ "name": "face with steam from nose",
862
+ "category": "Smileys & Emotion (face-negative)",
863
+ "group": "Smileys & Emotion",
864
+ "subgroup": "face-negative"
865
+ },
866
+ {
867
+ "codes": "1F621",
868
+ "char": "😡",
869
+ "name": "enraged face",
870
+ "category": "Smileys & Emotion (face-negative)",
871
+ "group": "Smileys & Emotion",
872
+ "subgroup": "face-negative"
873
+ },
874
+ {
875
+ "codes": "1F620",
876
+ "char": "😠",
877
+ "name": "angry face",
878
+ "category": "Smileys & Emotion (face-negative)",
879
+ "group": "Smileys & Emotion",
880
+ "subgroup": "face-negative"
881
+ },
882
+ {
883
+ "codes": "1F92C",
884
+ "char": "🤬",
885
+ "name": "face with symbols on mouth",
886
+ "category": "Smileys & Emotion (face-negative)",
887
+ "group": "Smileys & Emotion",
888
+ "subgroup": "face-negative"
889
+ },
890
+ {
891
+ "codes": "1F608",
892
+ "char": "😈",
893
+ "name": "smiling face with horns",
894
+ "category": "Smileys & Emotion (face-negative)",
895
+ "group": "Smileys & Emotion",
896
+ "subgroup": "face-negative"
897
+ },
898
+ {
899
+ "codes": "1F47F",
900
+ "char": "👿",
901
+ "name": "angry face with horns",
902
+ "category": "Smileys & Emotion (face-negative)",
903
+ "group": "Smileys & Emotion",
904
+ "subgroup": "face-negative"
905
+ },
906
+ {
907
+ "codes": "1F480",
908
+ "char": "💀",
909
+ "name": "skull",
910
+ "category": "Smileys & Emotion (face-negative)",
911
+ "group": "Smileys & Emotion",
912
+ "subgroup": "face-negative"
913
+ },
914
+ {
915
+ "codes": "2620 FE0F",
916
+ "char": "☠️",
917
+ "name": "skull and crossbones",
918
+ "category": "Smileys & Emotion (face-negative)",
919
+ "group": "Smileys & Emotion",
920
+ "subgroup": "face-negative"
921
+ },
922
+ {
923
+ "codes": "2620",
924
+ "char": "☠",
925
+ "name": "skull and crossbones",
926
+ "category": "Smileys & Emotion (face-negative)",
927
+ "group": "Smileys & Emotion",
928
+ "subgroup": "face-negative"
929
+ },
930
+ {
931
+ "codes": "1F4A9",
932
+ "char": "💩",
933
+ "name": "pile of poo",
934
+ "category": "Smileys & Emotion (face-costume)",
935
+ "group": "Smileys & Emotion",
936
+ "subgroup": "face-costume"
937
+ },
938
+ {
939
+ "codes": "1F921",
940
+ "char": "🤡",
941
+ "name": "clown face",
942
+ "category": "Smileys & Emotion (face-costume)",
943
+ "group": "Smileys & Emotion",
944
+ "subgroup": "face-costume"
945
+ },
946
+ {
947
+ "codes": "1F479",
948
+ "char": "👹",
949
+ "name": "ogre",
950
+ "category": "Smileys & Emotion (face-costume)",
951
+ "group": "Smileys & Emotion",
952
+ "subgroup": "face-costume"
953
+ },
954
+ {
955
+ "codes": "1F47A",
956
+ "char": "👺",
957
+ "name": "goblin",
958
+ "category": "Smileys & Emotion (face-costume)",
959
+ "group": "Smileys & Emotion",
960
+ "subgroup": "face-costume"
961
+ },
962
+ {
963
+ "codes": "1F47B",
964
+ "char": "👻",
965
+ "name": "ghost",
966
+ "category": "Smileys & Emotion (face-costume)",
967
+ "group": "Smileys & Emotion",
968
+ "subgroup": "face-costume"
969
+ },
970
+ {
971
+ "codes": "1F47D",
972
+ "char": "👽",
973
+ "name": "alien",
974
+ "category": "Smileys & Emotion (face-costume)",
975
+ "group": "Smileys & Emotion",
976
+ "subgroup": "face-costume"
977
+ },
978
+ {
979
+ "codes": "1F47E",
980
+ "char": "👾",
981
+ "name": "alien monster",
982
+ "category": "Smileys & Emotion (face-costume)",
983
+ "group": "Smileys & Emotion",
984
+ "subgroup": "face-costume"
985
+ },
986
+ {
987
+ "codes": "1F916",
988
+ "char": "🤖",
989
+ "name": "robot",
990
+ "category": "Smileys & Emotion (face-costume)",
991
+ "group": "Smileys & Emotion",
992
+ "subgroup": "face-costume"
993
+ },
994
+ {
995
+ "codes": "1F63A",
996
+ "char": "😺",
997
+ "name": "grinning cat",
998
+ "category": "Smileys & Emotion (cat-face)",
999
+ "group": "Smileys & Emotion",
1000
+ "subgroup": "cat-face"
1001
+ },
1002
+ {
1003
+ "codes": "1F638",
1004
+ "char": "😸",
1005
+ "name": "grinning cat with smiling eyes",
1006
+ "category": "Smileys & Emotion (cat-face)",
1007
+ "group": "Smileys & Emotion",
1008
+ "subgroup": "cat-face"
1009
+ },
1010
+ {
1011
+ "codes": "1F639",
1012
+ "char": "😹",
1013
+ "name": "cat with tears of joy",
1014
+ "category": "Smileys & Emotion (cat-face)",
1015
+ "group": "Smileys & Emotion",
1016
+ "subgroup": "cat-face"
1017
+ },
1018
+ {
1019
+ "codes": "1F63B",
1020
+ "char": "😻",
1021
+ "name": "smiling cat with heart-eyes",
1022
+ "category": "Smileys & Emotion (cat-face)",
1023
+ "group": "Smileys & Emotion",
1024
+ "subgroup": "cat-face"
1025
+ },
1026
+ {
1027
+ "codes": "1F63C",
1028
+ "char": "😼",
1029
+ "name": "cat with wry smile",
1030
+ "category": "Smileys & Emotion (cat-face)",
1031
+ "group": "Smileys & Emotion",
1032
+ "subgroup": "cat-face"
1033
+ },
1034
+ {
1035
+ "codes": "1F63D",
1036
+ "char": "😽",
1037
+ "name": "kissing cat",
1038
+ "category": "Smileys & Emotion (cat-face)",
1039
+ "group": "Smileys & Emotion",
1040
+ "subgroup": "cat-face"
1041
+ },
1042
+ {
1043
+ "codes": "1F640",
1044
+ "char": "🙀",
1045
+ "name": "weary cat",
1046
+ "category": "Smileys & Emotion (cat-face)",
1047
+ "group": "Smileys & Emotion",
1048
+ "subgroup": "cat-face"
1049
+ },
1050
+ {
1051
+ "codes": "1F63F",
1052
+ "char": "😿",
1053
+ "name": "crying cat",
1054
+ "category": "Smileys & Emotion (cat-face)",
1055
+ "group": "Smileys & Emotion",
1056
+ "subgroup": "cat-face"
1057
+ },
1058
+ {
1059
+ "codes": "1F63E",
1060
+ "char": "😾",
1061
+ "name": "pouting cat",
1062
+ "category": "Smileys & Emotion (cat-face)",
1063
+ "group": "Smileys & Emotion",
1064
+ "subgroup": "cat-face"
1065
+ },
1066
+ {
1067
+ "codes": "1F648",
1068
+ "char": "🙈",
1069
+ "name": "see-no-evil monkey",
1070
+ "category": "Smileys & Emotion (monkey-face)",
1071
+ "group": "Smileys & Emotion",
1072
+ "subgroup": "monkey-face"
1073
+ },
1074
+ {
1075
+ "codes": "1F649",
1076
+ "char": "🙉",
1077
+ "name": "hear-no-evil monkey",
1078
+ "category": "Smileys & Emotion (monkey-face)",
1079
+ "group": "Smileys & Emotion",
1080
+ "subgroup": "monkey-face"
1081
+ },
1082
+ {
1083
+ "codes": "1F64A",
1084
+ "char": "🙊",
1085
+ "name": "speak-no-evil monkey",
1086
+ "category": "Smileys & Emotion (monkey-face)",
1087
+ "group": "Smileys & Emotion",
1088
+ "subgroup": "monkey-face"
1089
+ },
1090
+ {
1091
+ "codes": "1F48C",
1092
+ "char": "💌",
1093
+ "name": "love letter",
1094
+ "category": "Smileys & Emotion (heart)",
1095
+ "group": "Smileys & Emotion",
1096
+ "subgroup": "heart"
1097
+ },
1098
+ {
1099
+ "codes": "1F498",
1100
+ "char": "💘",
1101
+ "name": "heart with arrow",
1102
+ "category": "Smileys & Emotion (heart)",
1103
+ "group": "Smileys & Emotion",
1104
+ "subgroup": "heart"
1105
+ },
1106
+ {
1107
+ "codes": "1F49D",
1108
+ "char": "💝",
1109
+ "name": "heart with ribbon",
1110
+ "category": "Smileys & Emotion (heart)",
1111
+ "group": "Smileys & Emotion",
1112
+ "subgroup": "heart"
1113
+ },
1114
+ {
1115
+ "codes": "1F496",
1116
+ "char": "💖",
1117
+ "name": "sparkling heart",
1118
+ "category": "Smileys & Emotion (heart)",
1119
+ "group": "Smileys & Emotion",
1120
+ "subgroup": "heart"
1121
+ },
1122
+ {
1123
+ "codes": "1F497",
1124
+ "char": "💗",
1125
+ "name": "growing heart",
1126
+ "category": "Smileys & Emotion (heart)",
1127
+ "group": "Smileys & Emotion",
1128
+ "subgroup": "heart"
1129
+ },
1130
+ {
1131
+ "codes": "1F493",
1132
+ "char": "💓",
1133
+ "name": "beating heart",
1134
+ "category": "Smileys & Emotion (heart)",
1135
+ "group": "Smileys & Emotion",
1136
+ "subgroup": "heart"
1137
+ },
1138
+ {
1139
+ "codes": "1F49E",
1140
+ "char": "💞",
1141
+ "name": "revolving hearts",
1142
+ "category": "Smileys & Emotion (heart)",
1143
+ "group": "Smileys & Emotion",
1144
+ "subgroup": "heart"
1145
+ },
1146
+ {
1147
+ "codes": "1F495",
1148
+ "char": "💕",
1149
+ "name": "two hearts",
1150
+ "category": "Smileys & Emotion (heart)",
1151
+ "group": "Smileys & Emotion",
1152
+ "subgroup": "heart"
1153
+ },
1154
+ {
1155
+ "codes": "1F49F",
1156
+ "char": "💟",
1157
+ "name": "heart decoration",
1158
+ "category": "Smileys & Emotion (heart)",
1159
+ "group": "Smileys & Emotion",
1160
+ "subgroup": "heart"
1161
+ },
1162
+ {
1163
+ "codes": "2763 FE0F",
1164
+ "char": "❣️",
1165
+ "name": "heart exclamation",
1166
+ "category": "Smileys & Emotion (heart)",
1167
+ "group": "Smileys & Emotion",
1168
+ "subgroup": "heart"
1169
+ },
1170
+ {
1171
+ "codes": "2763",
1172
+ "char": "❣",
1173
+ "name": "heart exclamation",
1174
+ "category": "Smileys & Emotion (heart)",
1175
+ "group": "Smileys & Emotion",
1176
+ "subgroup": "heart"
1177
+ },
1178
+ {
1179
+ "codes": "1F494",
1180
+ "char": "💔",
1181
+ "name": "broken heart",
1182
+ "category": "Smileys & Emotion (heart)",
1183
+ "group": "Smileys & Emotion",
1184
+ "subgroup": "heart"
1185
+ },
1186
+ {
1187
+ "codes": "2764 FE0F 200D 1F525",
1188
+ "char": "❤️‍🔥",
1189
+ "name": "heart on fire",
1190
+ "category": "Smileys & Emotion (heart)",
1191
+ "group": "Smileys & Emotion",
1192
+ "subgroup": "heart"
1193
+ },
1194
+ {
1195
+ "codes": "2764 200D 1F525",
1196
+ "char": "❤‍🔥",
1197
+ "name": "heart on fire",
1198
+ "category": "Smileys & Emotion (heart)",
1199
+ "group": "Smileys & Emotion",
1200
+ "subgroup": "heart"
1201
+ },
1202
+ {
1203
+ "codes": "2764 FE0F 200D 1FA79",
1204
+ "char": "❤️‍🩹",
1205
+ "name": "mending heart",
1206
+ "category": "Smileys & Emotion (heart)",
1207
+ "group": "Smileys & Emotion",
1208
+ "subgroup": "heart"
1209
+ },
1210
+ {
1211
+ "codes": "2764 200D 1FA79",
1212
+ "char": "❤‍🩹",
1213
+ "name": "mending heart",
1214
+ "category": "Smileys & Emotion (heart)",
1215
+ "group": "Smileys & Emotion",
1216
+ "subgroup": "heart"
1217
+ },
1218
+ {
1219
+ "codes": "2764 FE0F",
1220
+ "char": "❤️",
1221
+ "name": "red heart",
1222
+ "category": "Smileys & Emotion (heart)",
1223
+ "group": "Smileys & Emotion",
1224
+ "subgroup": "heart"
1225
+ },
1226
+ {
1227
+ "codes": "2764",
1228
+ "char": "❤",
1229
+ "name": "red heart",
1230
+ "category": "Smileys & Emotion (heart)",
1231
+ "group": "Smileys & Emotion",
1232
+ "subgroup": "heart"
1233
+ },
1234
+ {
1235
+ "codes": "1FA77",
1236
+ "char": "🩷",
1237
+ "name": "pink heart",
1238
+ "category": "Smileys & Emotion (heart)",
1239
+ "group": "Smileys & Emotion",
1240
+ "subgroup": "heart"
1241
+ },
1242
+ {
1243
+ "codes": "1F9E1",
1244
+ "char": "🧡",
1245
+ "name": "orange heart",
1246
+ "category": "Smileys & Emotion (heart)",
1247
+ "group": "Smileys & Emotion",
1248
+ "subgroup": "heart"
1249
+ },
1250
+ {
1251
+ "codes": "1F49B",
1252
+ "char": "💛",
1253
+ "name": "yellow heart",
1254
+ "category": "Smileys & Emotion (heart)",
1255
+ "group": "Smileys & Emotion",
1256
+ "subgroup": "heart"
1257
+ },
1258
+ {
1259
+ "codes": "1F49A",
1260
+ "char": "💚",
1261
+ "name": "green heart",
1262
+ "category": "Smileys & Emotion (heart)",
1263
+ "group": "Smileys & Emotion",
1264
+ "subgroup": "heart"
1265
+ },
1266
+ {
1267
+ "codes": "1F499",
1268
+ "char": "💙",
1269
+ "name": "blue heart",
1270
+ "category": "Smileys & Emotion (heart)",
1271
+ "group": "Smileys & Emotion",
1272
+ "subgroup": "heart"
1273
+ },
1274
+ {
1275
+ "codes": "1FA75",
1276
+ "char": "🩵",
1277
+ "name": "light blue heart",
1278
+ "category": "Smileys & Emotion (heart)",
1279
+ "group": "Smileys & Emotion",
1280
+ "subgroup": "heart"
1281
+ },
1282
+ {
1283
+ "codes": "1F49C",
1284
+ "char": "💜",
1285
+ "name": "purple heart",
1286
+ "category": "Smileys & Emotion (heart)",
1287
+ "group": "Smileys & Emotion",
1288
+ "subgroup": "heart"
1289
+ },
1290
+ {
1291
+ "codes": "1F90E",
1292
+ "char": "🤎",
1293
+ "name": "brown heart",
1294
+ "category": "Smileys & Emotion (heart)",
1295
+ "group": "Smileys & Emotion",
1296
+ "subgroup": "heart"
1297
+ },
1298
+ {
1299
+ "codes": "1F5A4",
1300
+ "char": "🖤",
1301
+ "name": "black heart",
1302
+ "category": "Smileys & Emotion (heart)",
1303
+ "group": "Smileys & Emotion",
1304
+ "subgroup": "heart"
1305
+ },
1306
+ {
1307
+ "codes": "1FA76",
1308
+ "char": "🩶",
1309
+ "name": "grey heart",
1310
+ "category": "Smileys & Emotion (heart)",
1311
+ "group": "Smileys & Emotion",
1312
+ "subgroup": "heart"
1313
+ },
1314
+ {
1315
+ "codes": "1F90D",
1316
+ "char": "🤍",
1317
+ "name": "white heart",
1318
+ "category": "Smileys & Emotion (heart)",
1319
+ "group": "Smileys & Emotion",
1320
+ "subgroup": "heart"
1321
+ },
1322
+ {
1323
+ "codes": "1F48B",
1324
+ "char": "💋",
1325
+ "name": "kiss mark",
1326
+ "category": "Smileys & Emotion (emotion)",
1327
+ "group": "Smileys & Emotion",
1328
+ "subgroup": "emotion"
1329
+ },
1330
+ {
1331
+ "codes": "1F4AF",
1332
+ "char": "💯",
1333
+ "name": "hundred points",
1334
+ "category": "Smileys & Emotion (emotion)",
1335
+ "group": "Smileys & Emotion",
1336
+ "subgroup": "emotion"
1337
+ },
1338
+ {
1339
+ "codes": "1F4A2",
1340
+ "char": "💢",
1341
+ "name": "anger symbol",
1342
+ "category": "Smileys & Emotion (emotion)",
1343
+ "group": "Smileys & Emotion",
1344
+ "subgroup": "emotion"
1345
+ },
1346
+ {
1347
+ "codes": "1F4A5",
1348
+ "char": "💥",
1349
+ "name": "collision",
1350
+ "category": "Smileys & Emotion (emotion)",
1351
+ "group": "Smileys & Emotion",
1352
+ "subgroup": "emotion"
1353
+ },
1354
+ {
1355
+ "codes": "1F4AB",
1356
+ "char": "💫",
1357
+ "name": "dizzy",
1358
+ "category": "Smileys & Emotion (emotion)",
1359
+ "group": "Smileys & Emotion",
1360
+ "subgroup": "emotion"
1361
+ },
1362
+ {
1363
+ "codes": "1F4A6",
1364
+ "char": "💦",
1365
+ "name": "sweat droplets",
1366
+ "category": "Smileys & Emotion (emotion)",
1367
+ "group": "Smileys & Emotion",
1368
+ "subgroup": "emotion"
1369
+ },
1370
+ {
1371
+ "codes": "1F4A8",
1372
+ "char": "💨",
1373
+ "name": "dashing away",
1374
+ "category": "Smileys & Emotion (emotion)",
1375
+ "group": "Smileys & Emotion",
1376
+ "subgroup": "emotion"
1377
+ },
1378
+ {
1379
+ "codes": "1F573 FE0F",
1380
+ "char": "🕳️",
1381
+ "name": "hole",
1382
+ "category": "Smileys & Emotion (emotion)",
1383
+ "group": "Smileys & Emotion",
1384
+ "subgroup": "emotion"
1385
+ },
1386
+ {
1387
+ "codes": "1F573",
1388
+ "char": "🕳",
1389
+ "name": "hole",
1390
+ "category": "Smileys & Emotion (emotion)",
1391
+ "group": "Smileys & Emotion",
1392
+ "subgroup": "emotion"
1393
+ },
1394
+ {
1395
+ "codes": "1F4AC",
1396
+ "char": "💬",
1397
+ "name": "speech balloon",
1398
+ "category": "Smileys & Emotion (emotion)",
1399
+ "group": "Smileys & Emotion",
1400
+ "subgroup": "emotion"
1401
+ },
1402
+ {
1403
+ "codes": "1F441 FE0F 200D 1F5E8 FE0F",
1404
+ "char": "👁️‍🗨️",
1405
+ "name": "eye in speech bubble",
1406
+ "category": "Smileys & Emotion (emotion)",
1407
+ "group": "Smileys & Emotion",
1408
+ "subgroup": "emotion"
1409
+ },
1410
+ {
1411
+ "codes": "1F441 200D 1F5E8 FE0F",
1412
+ "char": "👁‍🗨️",
1413
+ "name": "eye in speech bubble",
1414
+ "category": "Smileys & Emotion (emotion)",
1415
+ "group": "Smileys & Emotion",
1416
+ "subgroup": "emotion"
1417
+ },
1418
+ {
1419
+ "codes": "1F441 FE0F 200D 1F5E8",
1420
+ "char": "👁️‍🗨",
1421
+ "name": "eye in speech bubble",
1422
+ "category": "Smileys & Emotion (emotion)",
1423
+ "group": "Smileys & Emotion",
1424
+ "subgroup": "emotion"
1425
+ },
1426
+ {
1427
+ "codes": "1F441 200D 1F5E8",
1428
+ "char": "👁‍🗨",
1429
+ "name": "eye in speech bubble",
1430
+ "category": "Smileys & Emotion (emotion)",
1431
+ "group": "Smileys & Emotion",
1432
+ "subgroup": "emotion"
1433
+ },
1434
+ {
1435
+ "codes": "1F5E8 FE0F",
1436
+ "char": "🗨️",
1437
+ "name": "left speech bubble",
1438
+ "category": "Smileys & Emotion (emotion)",
1439
+ "group": "Smileys & Emotion",
1440
+ "subgroup": "emotion"
1441
+ },
1442
+ {
1443
+ "codes": "1F5E8",
1444
+ "char": "🗨",
1445
+ "name": "left speech bubble",
1446
+ "category": "Smileys & Emotion (emotion)",
1447
+ "group": "Smileys & Emotion",
1448
+ "subgroup": "emotion"
1449
+ },
1450
+ {
1451
+ "codes": "1F5EF FE0F",
1452
+ "char": "🗯️",
1453
+ "name": "right anger bubble",
1454
+ "category": "Smileys & Emotion (emotion)",
1455
+ "group": "Smileys & Emotion",
1456
+ "subgroup": "emotion"
1457
+ },
1458
+ {
1459
+ "codes": "1F5EF",
1460
+ "char": "🗯",
1461
+ "name": "right anger bubble",
1462
+ "category": "Smileys & Emotion (emotion)",
1463
+ "group": "Smileys & Emotion",
1464
+ "subgroup": "emotion"
1465
+ },
1466
+ {
1467
+ "codes": "1F4AD",
1468
+ "char": "💭",
1469
+ "name": "thought balloon",
1470
+ "category": "Smileys & Emotion (emotion)",
1471
+ "group": "Smileys & Emotion",
1472
+ "subgroup": "emotion"
1473
+ },
1474
+ {
1475
+ "codes": "1F4A4",
1476
+ "char": "💤",
1477
+ "name": "ZZZ",
1478
+ "category": "Smileys & Emotion (emotion)",
1479
+ "group": "Smileys & Emotion",
1480
+ "subgroup": "emotion"
1481
+ }
1482
+ ]