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