From ca9811792d3a5a98c3e5fbf78d9a65eea5acbbfa Mon Sep 17 00:00:00 2001 From: Cats Juice Date: Wed, 24 Sep 2025 15:14:54 +0800 Subject: [PATCH] feat(component): emoji and icon picker (#13638) ![CleanShot 2025-09-23 at 17 11 13](https://github.com/user-attachments/assets/0a4a9d09-1149-4042-bc73-e068a428f335) ## Summary by CodeRabbit - **New Features** - Icon Picker added with Emoji and Icon panels, search/filtering, recent selections, color selection, skin tone options, and smooth group navigation. - **Documentation** - Storybook example added to preview and test the Icon Picker. - **Chores** - Bumped icon library dependency to a newer minor version. - Added emoji data dependency to support the Emoji Picker. --- .../affine/blocks/attachment/package.json | 2 +- .../affine/blocks/bookmark/package.json | 2 +- blocksuite/affine/blocks/callout/package.json | 2 +- blocksuite/affine/blocks/code/package.json | 2 +- .../affine/blocks/data-view/package.json | 2 +- .../affine/blocks/database/package.json | 2 +- .../affine/blocks/edgeless-text/package.json | 2 +- .../affine/blocks/embed-doc/package.json | 2 +- blocksuite/affine/blocks/embed/package.json | 2 +- blocksuite/affine/blocks/frame/package.json | 2 +- blocksuite/affine/blocks/image/package.json | 2 +- blocksuite/affine/blocks/latex/package.json | 2 +- blocksuite/affine/blocks/list/package.json | 2 +- blocksuite/affine/blocks/note/package.json | 2 +- blocksuite/affine/blocks/root/package.json | 2 +- .../affine/blocks/surface-ref/package.json | 2 +- blocksuite/affine/blocks/table/package.json | 2 +- blocksuite/affine/components/package.json | 2 +- blocksuite/affine/data-view/package.json | 2 +- blocksuite/affine/foundation/package.json | 2 +- .../fragments/adapter-panel/package.json | 2 +- .../affine/fragments/doc-title/package.json | 2 +- .../affine/fragments/frame-panel/package.json | 2 +- .../affine/fragments/outline/package.json | 2 +- blocksuite/affine/gfx/brush/package.json | 2 +- blocksuite/affine/gfx/connector/package.json | 2 +- blocksuite/affine/gfx/group/package.json | 2 +- blocksuite/affine/gfx/link/package.json | 2 +- blocksuite/affine/gfx/mindmap/package.json | 2 +- blocksuite/affine/gfx/note/package.json | 2 +- blocksuite/affine/gfx/pointer/package.json | 2 +- blocksuite/affine/gfx/shape/package.json | 2 +- blocksuite/affine/gfx/template/package.json | 2 +- blocksuite/affine/gfx/text/package.json | 2 +- .../affine/inlines/footnote/package.json | 2 +- blocksuite/affine/inlines/latex/package.json | 2 +- blocksuite/affine/inlines/link/package.json | 2 +- .../affine/inlines/mention/package.json | 2 +- blocksuite/affine/inlines/preset/package.json | 2 +- .../affine/inlines/reference/package.json | 2 +- blocksuite/affine/rich-text/package.json | 2 +- blocksuite/affine/shared/package.json | 2 +- .../affine/widgets/drag-handle/package.json | 2 +- .../edgeless-auto-connect/package.json | 2 +- .../edgeless-dragging-area/package.json | 2 +- .../edgeless-selected-rect/package.json | 2 +- .../widgets/edgeless-toolbar/package.json | 2 +- .../edgeless-zoom-toolbar/package.json | 2 +- .../widgets/keyboard-toolbar/package.json | 2 +- .../affine/widgets/linked-doc/package.json | 2 +- .../affine/widgets/note-slicer/package.json | 2 +- .../widgets/page-dragging-area/package.json | 2 +- .../widgets/remote-selection/package.json | 2 +- .../affine/widgets/slash-menu/package.json | 2 +- .../affine/widgets/toolbar/package.json | 2 +- .../widgets/viewport-overlay/package.json | 2 +- blocksuite/integration-test/package.json | 2 +- blocksuite/playground/package.json | 2 +- packages/frontend/admin/package.json | 2 +- packages/frontend/apps/android/package.json | 2 +- packages/frontend/apps/ios/package.json | 2 +- packages/frontend/apps/mobile/package.json | 2 +- packages/frontend/component/package.json | 3 +- packages/frontend/component/src/index.ts | 1 + .../src/ui/icon-picker/icon-picker.css.ts | 31 + .../ui/icon-picker/icon-picker.stories.tsx | 20 + .../src/ui/icon-picker/icon-picker.tsx | 71 + .../component/src/ui/icon-picker/index.ts | 1 + .../affine-icon/affine-icon-picker.css.ts | 17 + .../picker/affine-icon/affine-icon-picker.tsx | 201 + .../ui/icon-picker/picker/emoji/constants.ts | 43 + .../ui/icon-picker/picker/emoji/data/en.json | 35020 ++++++++++++++++ .../picker/emoji/emoji-picker.css.ts | 42 + .../icon-picker/picker/emoji/emoji-picker.tsx | 332 + .../ui/icon-picker/picker/emoji/gen-data.ts | 59 + .../picker/emoji/icons/activity.tsx | 21 + .../icon-picker/picker/emoji/icons/animal.tsx | 21 + .../icon-picker/picker/emoji/icons/flag.tsx | 21 + .../icon-picker/picker/emoji/icons/food.tsx | 21 + .../icon-picker/picker/emoji/icons/object.tsx | 21 + .../icon-picker/picker/emoji/icons/smile.tsx | 21 + .../icon-picker/picker/emoji/icons/symbol.tsx | 21 + .../icon-picker/picker/emoji/icons/travel.tsx | 21 + .../src/ui/icon-picker/picker/emoji/type.ts | 11 + .../src/ui/icon-picker/picker/picker.css.ts | 69 + .../component/src/ui/icon-picker/renderer.tsx | 18 + .../ui/icon-picker/renderer/affine-icon.tsx | 19 + packages/frontend/core/package.json | 2 +- yarn.lock | 146 +- 89 files changed, 36266 insertions(+), 132 deletions(-) create mode 100644 packages/frontend/component/src/ui/icon-picker/icon-picker.css.ts create mode 100644 packages/frontend/component/src/ui/icon-picker/icon-picker.stories.tsx create mode 100644 packages/frontend/component/src/ui/icon-picker/icon-picker.tsx create mode 100644 packages/frontend/component/src/ui/icon-picker/index.ts create mode 100644 packages/frontend/component/src/ui/icon-picker/picker/affine-icon/affine-icon-picker.css.ts create mode 100644 packages/frontend/component/src/ui/icon-picker/picker/affine-icon/affine-icon-picker.tsx create mode 100644 packages/frontend/component/src/ui/icon-picker/picker/emoji/constants.ts create mode 100644 packages/frontend/component/src/ui/icon-picker/picker/emoji/data/en.json create mode 100644 packages/frontend/component/src/ui/icon-picker/picker/emoji/emoji-picker.css.ts create mode 100644 packages/frontend/component/src/ui/icon-picker/picker/emoji/emoji-picker.tsx create mode 100644 packages/frontend/component/src/ui/icon-picker/picker/emoji/gen-data.ts create mode 100644 packages/frontend/component/src/ui/icon-picker/picker/emoji/icons/activity.tsx create mode 100644 packages/frontend/component/src/ui/icon-picker/picker/emoji/icons/animal.tsx create mode 100644 packages/frontend/component/src/ui/icon-picker/picker/emoji/icons/flag.tsx create mode 100644 packages/frontend/component/src/ui/icon-picker/picker/emoji/icons/food.tsx create mode 100644 packages/frontend/component/src/ui/icon-picker/picker/emoji/icons/object.tsx create mode 100644 packages/frontend/component/src/ui/icon-picker/picker/emoji/icons/smile.tsx create mode 100644 packages/frontend/component/src/ui/icon-picker/picker/emoji/icons/symbol.tsx create mode 100644 packages/frontend/component/src/ui/icon-picker/picker/emoji/icons/travel.tsx create mode 100644 packages/frontend/component/src/ui/icon-picker/picker/emoji/type.ts create mode 100644 packages/frontend/component/src/ui/icon-picker/picker/picker.css.ts create mode 100644 packages/frontend/component/src/ui/icon-picker/renderer.tsx create mode 100644 packages/frontend/component/src/ui/icon-picker/renderer/affine-icon.tsx diff --git a/blocksuite/affine/blocks/attachment/package.json b/blocksuite/affine/blocks/attachment/package.json index b875dcff88..f79bc1551c 100644 --- a/blocksuite/affine/blocks/attachment/package.json +++ b/blocksuite/affine/blocks/attachment/package.json @@ -17,7 +17,7 @@ "@blocksuite/affine-shared": "workspace:*", "@blocksuite/affine-widget-slash-menu": "workspace:*", "@blocksuite/global": "workspace:*", - "@blocksuite/icons": "^2.2.12", + "@blocksuite/icons": "^2.2.17", "@blocksuite/std": "workspace:*", "@blocksuite/store": "workspace:*", "@floating-ui/dom": "^1.6.13", diff --git a/blocksuite/affine/blocks/bookmark/package.json b/blocksuite/affine/blocks/bookmark/package.json index a08778a501..5f493ae4b9 100644 --- a/blocksuite/affine/blocks/bookmark/package.json +++ b/blocksuite/affine/blocks/bookmark/package.json @@ -19,7 +19,7 @@ "@blocksuite/affine-shared": "workspace:*", "@blocksuite/affine-widget-slash-menu": "workspace:*", "@blocksuite/global": "workspace:*", - "@blocksuite/icons": "^2.2.12", + "@blocksuite/icons": "^2.2.17", "@blocksuite/std": "workspace:*", "@blocksuite/store": "workspace:*", "@lit/context": "^1.1.2", diff --git a/blocksuite/affine/blocks/callout/package.json b/blocksuite/affine/blocks/callout/package.json index 2505c91b6d..b396853fa5 100644 --- a/blocksuite/affine/blocks/callout/package.json +++ b/blocksuite/affine/blocks/callout/package.json @@ -18,7 +18,7 @@ "@blocksuite/affine-shared": "workspace:*", "@blocksuite/affine-widget-slash-menu": "workspace:*", "@blocksuite/global": "workspace:*", - "@blocksuite/icons": "^2.2.12", + "@blocksuite/icons": "^2.2.17", "@blocksuite/std": "workspace:*", "@blocksuite/store": "workspace:*", "@emoji-mart/data": "^1.2.1", diff --git a/blocksuite/affine/blocks/code/package.json b/blocksuite/affine/blocks/code/package.json index fd25a5f5e5..04c74b9e00 100644 --- a/blocksuite/affine/blocks/code/package.json +++ b/blocksuite/affine/blocks/code/package.json @@ -22,7 +22,7 @@ "@blocksuite/affine-shared": "workspace:*", "@blocksuite/affine-widget-slash-menu": "workspace:*", "@blocksuite/global": "workspace:*", - "@blocksuite/icons": "^2.2.12", + "@blocksuite/icons": "^2.2.17", "@blocksuite/std": "workspace:*", "@blocksuite/store": "workspace:*", "@floating-ui/dom": "^1.6.13", diff --git a/blocksuite/affine/blocks/data-view/package.json b/blocksuite/affine/blocks/data-view/package.json index bd38ff0086..993c50fe44 100644 --- a/blocksuite/affine/blocks/data-view/package.json +++ b/blocksuite/affine/blocks/data-view/package.json @@ -18,7 +18,7 @@ "@blocksuite/affine-widget-slash-menu": "workspace:*", "@blocksuite/data-view": "workspace:*", "@blocksuite/global": "workspace:*", - "@blocksuite/icons": "^2.2.12", + "@blocksuite/icons": "^2.2.17", "@blocksuite/std": "workspace:*", "@blocksuite/store": "workspace:*", "@floating-ui/dom": "^1.6.13", diff --git a/blocksuite/affine/blocks/database/package.json b/blocksuite/affine/blocks/database/package.json index 36d943de19..272e9c759b 100644 --- a/blocksuite/affine/blocks/database/package.json +++ b/blocksuite/affine/blocks/database/package.json @@ -21,7 +21,7 @@ "@blocksuite/affine-widget-slash-menu": "workspace:*", "@blocksuite/data-view": "workspace:*", "@blocksuite/global": "workspace:*", - "@blocksuite/icons": "^2.2.12", + "@blocksuite/icons": "^2.2.17", "@blocksuite/std": "workspace:*", "@blocksuite/store": "workspace:*", "@emotion/css": "^11.13.5", diff --git a/blocksuite/affine/blocks/edgeless-text/package.json b/blocksuite/affine/blocks/edgeless-text/package.json index 564f5f9d1f..4643642b52 100644 --- a/blocksuite/affine/blocks/edgeless-text/package.json +++ b/blocksuite/affine/blocks/edgeless-text/package.json @@ -20,7 +20,7 @@ "@blocksuite/affine-shared": "workspace:*", "@blocksuite/affine-widget-edgeless-toolbar": "workspace:*", "@blocksuite/global": "workspace:*", - "@blocksuite/icons": "^2.2.12", + "@blocksuite/icons": "^2.2.17", "@blocksuite/std": "workspace:*", "@blocksuite/store": "workspace:*", "@floating-ui/dom": "^1.6.13", diff --git a/blocksuite/affine/blocks/embed-doc/package.json b/blocksuite/affine/blocks/embed-doc/package.json index bf847107f4..06f0cfab35 100644 --- a/blocksuite/affine/blocks/embed-doc/package.json +++ b/blocksuite/affine/blocks/embed-doc/package.json @@ -20,7 +20,7 @@ "@blocksuite/affine-shared": "workspace:*", "@blocksuite/affine-widget-slash-menu": "workspace:*", "@blocksuite/global": "workspace:*", - "@blocksuite/icons": "^2.2.12", + "@blocksuite/icons": "^2.2.17", "@blocksuite/std": "workspace:*", "@blocksuite/store": "workspace:*", "@floating-ui/dom": "^1.6.13", diff --git a/blocksuite/affine/blocks/embed/package.json b/blocksuite/affine/blocks/embed/package.json index 855a170dc6..3237a7776f 100644 --- a/blocksuite/affine/blocks/embed/package.json +++ b/blocksuite/affine/blocks/embed/package.json @@ -20,7 +20,7 @@ "@blocksuite/affine-shared": "workspace:*", "@blocksuite/affine-widget-slash-menu": "workspace:*", "@blocksuite/global": "workspace:*", - "@blocksuite/icons": "^2.2.12", + "@blocksuite/icons": "^2.2.17", "@blocksuite/std": "workspace:*", "@blocksuite/store": "workspace:*", "@floating-ui/dom": "^1.6.13", diff --git a/blocksuite/affine/blocks/frame/package.json b/blocksuite/affine/blocks/frame/package.json index c313333909..95913aff31 100644 --- a/blocksuite/affine/blocks/frame/package.json +++ b/blocksuite/affine/blocks/frame/package.json @@ -19,7 +19,7 @@ "@blocksuite/affine-widget-edgeless-toolbar": "workspace:*", "@blocksuite/affine-widget-frame-title": "workspace:*", "@blocksuite/global": "workspace:*", - "@blocksuite/icons": "^2.2.12", + "@blocksuite/icons": "^2.2.17", "@blocksuite/std": "workspace:*", "@blocksuite/store": "workspace:*", "@floating-ui/dom": "^1.6.13", diff --git a/blocksuite/affine/blocks/image/package.json b/blocksuite/affine/blocks/image/package.json index 6f1f64e981..d582d7a9d2 100644 --- a/blocksuite/affine/blocks/image/package.json +++ b/blocksuite/affine/blocks/image/package.json @@ -19,7 +19,7 @@ "@blocksuite/affine-shared": "workspace:*", "@blocksuite/affine-widget-slash-menu": "workspace:*", "@blocksuite/global": "workspace:*", - "@blocksuite/icons": "^2.2.12", + "@blocksuite/icons": "^2.2.17", "@blocksuite/std": "workspace:*", "@blocksuite/store": "workspace:*", "@floating-ui/dom": "^1.6.13", diff --git a/blocksuite/affine/blocks/latex/package.json b/blocksuite/affine/blocks/latex/package.json index 55b86d3c48..b0fa652961 100644 --- a/blocksuite/affine/blocks/latex/package.json +++ b/blocksuite/affine/blocks/latex/package.json @@ -19,7 +19,7 @@ "@blocksuite/affine-shared": "workspace:*", "@blocksuite/affine-widget-slash-menu": "workspace:*", "@blocksuite/global": "workspace:*", - "@blocksuite/icons": "^2.2.12", + "@blocksuite/icons": "^2.2.17", "@blocksuite/std": "workspace:*", "@blocksuite/store": "workspace:*", "@floating-ui/dom": "^1.6.13", diff --git a/blocksuite/affine/blocks/list/package.json b/blocksuite/affine/blocks/list/package.json index e342ee99a7..f03b9e2f47 100644 --- a/blocksuite/affine/blocks/list/package.json +++ b/blocksuite/affine/blocks/list/package.json @@ -18,7 +18,7 @@ "@blocksuite/affine-rich-text": "workspace:*", "@blocksuite/affine-shared": "workspace:*", "@blocksuite/global": "workspace:*", - "@blocksuite/icons": "^2.2.12", + "@blocksuite/icons": "^2.2.17", "@blocksuite/std": "workspace:*", "@blocksuite/store": "workspace:*", "@floating-ui/dom": "^1.6.13", diff --git a/blocksuite/affine/blocks/note/package.json b/blocksuite/affine/blocks/note/package.json index 3c7175223e..913dd543b6 100644 --- a/blocksuite/affine/blocks/note/package.json +++ b/blocksuite/affine/blocks/note/package.json @@ -22,7 +22,7 @@ "@blocksuite/affine-shared": "workspace:*", "@blocksuite/affine-widget-slash-menu": "workspace:*", "@blocksuite/global": "workspace:*", - "@blocksuite/icons": "^2.2.12", + "@blocksuite/icons": "^2.2.17", "@blocksuite/std": "workspace:*", "@blocksuite/store": "workspace:*", "@lit/context": "^1.1.2", diff --git a/blocksuite/affine/blocks/root/package.json b/blocksuite/affine/blocks/root/package.json index 95d43349b6..56be69e4db 100644 --- a/blocksuite/affine/blocks/root/package.json +++ b/blocksuite/affine/blocks/root/package.json @@ -38,7 +38,7 @@ "@blocksuite/affine-widget-edgeless-toolbar": "workspace:*", "@blocksuite/data-view": "workspace:*", "@blocksuite/global": "workspace:*", - "@blocksuite/icons": "^2.2.12", + "@blocksuite/icons": "^2.2.17", "@blocksuite/std": "workspace:*", "@blocksuite/store": "workspace:*", "@floating-ui/dom": "^1.6.13", diff --git a/blocksuite/affine/blocks/surface-ref/package.json b/blocksuite/affine/blocks/surface-ref/package.json index 69f40b90ee..08bc03586e 100644 --- a/blocksuite/affine/blocks/surface-ref/package.json +++ b/blocksuite/affine/blocks/surface-ref/package.json @@ -19,7 +19,7 @@ "@blocksuite/affine-shared": "workspace:*", "@blocksuite/affine-widget-slash-menu": "workspace:*", "@blocksuite/global": "workspace:*", - "@blocksuite/icons": "^2.2.12", + "@blocksuite/icons": "^2.2.17", "@blocksuite/std": "workspace:*", "@blocksuite/store": "workspace:*", "@floating-ui/dom": "^1.6.13", diff --git a/blocksuite/affine/blocks/table/package.json b/blocksuite/affine/blocks/table/package.json index 7f7d13eff0..a07b491822 100644 --- a/blocksuite/affine/blocks/table/package.json +++ b/blocksuite/affine/blocks/table/package.json @@ -20,7 +20,7 @@ "@blocksuite/affine-widget-slash-menu": "workspace:*", "@blocksuite/data-view": "workspace:*", "@blocksuite/global": "workspace:*", - "@blocksuite/icons": "^2.2.12", + "@blocksuite/icons": "^2.2.17", "@blocksuite/std": "workspace:*", "@blocksuite/store": "workspace:*", "@emotion/css": "^11.13.5", diff --git a/blocksuite/affine/components/package.json b/blocksuite/affine/components/package.json index 8cdeb59946..a218db52fc 100644 --- a/blocksuite/affine/components/package.json +++ b/blocksuite/affine/components/package.json @@ -13,7 +13,7 @@ "@blocksuite/affine-model": "workspace:*", "@blocksuite/affine-shared": "workspace:*", "@blocksuite/global": "workspace:*", - "@blocksuite/icons": "^2.2.12", + "@blocksuite/icons": "^2.2.17", "@blocksuite/std": "workspace:*", "@blocksuite/store": "workspace:*", "@blocksuite/sync": "workspace:*", diff --git a/blocksuite/affine/data-view/package.json b/blocksuite/affine/data-view/package.json index 038a1120e9..047f18895e 100644 --- a/blocksuite/affine/data-view/package.json +++ b/blocksuite/affine/data-view/package.json @@ -13,7 +13,7 @@ "@blocksuite/affine-components": "workspace:*", "@blocksuite/affine-shared": "workspace:*", "@blocksuite/global": "workspace:*", - "@blocksuite/icons": "^2.2.12", + "@blocksuite/icons": "^2.2.17", "@blocksuite/std": "workspace:*", "@blocksuite/store": "workspace:*", "@emotion/css": "^11.13.5", diff --git a/blocksuite/affine/foundation/package.json b/blocksuite/affine/foundation/package.json index e20c0148cb..0410882926 100644 --- a/blocksuite/affine/foundation/package.json +++ b/blocksuite/affine/foundation/package.json @@ -16,7 +16,7 @@ "@blocksuite/affine-shared": "workspace:*", "@blocksuite/data-view": "workspace:*", "@blocksuite/global": "workspace:*", - "@blocksuite/icons": "^2.2.12", + "@blocksuite/icons": "^2.2.17", "@blocksuite/std": "workspace:*", "@blocksuite/store": "workspace:*", "@floating-ui/dom": "^1.6.13", diff --git a/blocksuite/affine/fragments/adapter-panel/package.json b/blocksuite/affine/fragments/adapter-panel/package.json index 9f94637d37..82dd6316d2 100644 --- a/blocksuite/affine/fragments/adapter-panel/package.json +++ b/blocksuite/affine/fragments/adapter-panel/package.json @@ -15,7 +15,7 @@ "@blocksuite/affine-model": "workspace:*", "@blocksuite/affine-shared": "workspace:*", "@blocksuite/global": "workspace:*", - "@blocksuite/icons": "^2.2.12", + "@blocksuite/icons": "^2.2.17", "@blocksuite/std": "workspace:*", "@blocksuite/store": "workspace:*", "@floating-ui/dom": "^1.6.13", diff --git a/blocksuite/affine/fragments/doc-title/package.json b/blocksuite/affine/fragments/doc-title/package.json index e8894a3b6d..b6ecb479d5 100644 --- a/blocksuite/affine/fragments/doc-title/package.json +++ b/blocksuite/affine/fragments/doc-title/package.json @@ -18,7 +18,7 @@ "@blocksuite/affine-rich-text": "workspace:*", "@blocksuite/affine-shared": "workspace:*", "@blocksuite/global": "workspace:*", - "@blocksuite/icons": "^2.2.12", + "@blocksuite/icons": "^2.2.17", "@blocksuite/std": "workspace:*", "@blocksuite/store": "workspace:*", "@floating-ui/dom": "^1.6.13", diff --git a/blocksuite/affine/fragments/frame-panel/package.json b/blocksuite/affine/fragments/frame-panel/package.json index dc8c76dccc..1f9ee512c1 100644 --- a/blocksuite/affine/fragments/frame-panel/package.json +++ b/blocksuite/affine/fragments/frame-panel/package.json @@ -18,7 +18,7 @@ "@blocksuite/affine-rich-text": "workspace:*", "@blocksuite/affine-shared": "workspace:*", "@blocksuite/global": "workspace:*", - "@blocksuite/icons": "^2.2.12", + "@blocksuite/icons": "^2.2.17", "@blocksuite/std": "workspace:*", "@blocksuite/store": "workspace:*", "@floating-ui/dom": "^1.6.13", diff --git a/blocksuite/affine/fragments/outline/package.json b/blocksuite/affine/fragments/outline/package.json index b763cea5b9..7bafbcbc0e 100644 --- a/blocksuite/affine/fragments/outline/package.json +++ b/blocksuite/affine/fragments/outline/package.json @@ -18,7 +18,7 @@ "@blocksuite/affine-rich-text": "workspace:*", "@blocksuite/affine-shared": "workspace:*", "@blocksuite/global": "workspace:*", - "@blocksuite/icons": "^2.2.12", + "@blocksuite/icons": "^2.2.17", "@blocksuite/std": "workspace:*", "@blocksuite/store": "workspace:*", "@floating-ui/dom": "^1.6.13", diff --git a/blocksuite/affine/gfx/brush/package.json b/blocksuite/affine/gfx/brush/package.json index 73af5abc7b..f1c2720f2c 100644 --- a/blocksuite/affine/gfx/brush/package.json +++ b/blocksuite/affine/gfx/brush/package.json @@ -18,7 +18,7 @@ "@blocksuite/affine-shared": "workspace:*", "@blocksuite/affine-widget-edgeless-toolbar": "workspace:*", "@blocksuite/global": "workspace:*", - "@blocksuite/icons": "^2.2.12", + "@blocksuite/icons": "^2.2.17", "@blocksuite/std": "workspace:*", "@blocksuite/store": "workspace:*", "@lit/context": "^1.1.2", diff --git a/blocksuite/affine/gfx/connector/package.json b/blocksuite/affine/gfx/connector/package.json index b9c23cb440..babd671915 100644 --- a/blocksuite/affine/gfx/connector/package.json +++ b/blocksuite/affine/gfx/connector/package.json @@ -19,7 +19,7 @@ "@blocksuite/affine-shared": "workspace:*", "@blocksuite/affine-widget-edgeless-toolbar": "workspace:*", "@blocksuite/global": "workspace:*", - "@blocksuite/icons": "^2.2.12", + "@blocksuite/icons": "^2.2.17", "@blocksuite/std": "workspace:*", "@blocksuite/store": "workspace:*", "@lit/context": "^1.1.2", diff --git a/blocksuite/affine/gfx/group/package.json b/blocksuite/affine/gfx/group/package.json index 828bbbfb43..98b557c92e 100644 --- a/blocksuite/affine/gfx/group/package.json +++ b/blocksuite/affine/gfx/group/package.json @@ -19,7 +19,7 @@ "@blocksuite/affine-shared": "workspace:*", "@blocksuite/affine-widget-edgeless-toolbar": "workspace:*", "@blocksuite/global": "workspace:*", - "@blocksuite/icons": "^2.2.12", + "@blocksuite/icons": "^2.2.17", "@blocksuite/std": "workspace:*", "@blocksuite/store": "workspace:*", "@lit/context": "^1.1.2", diff --git a/blocksuite/affine/gfx/link/package.json b/blocksuite/affine/gfx/link/package.json index 291d26b2ea..2064622b29 100644 --- a/blocksuite/affine/gfx/link/package.json +++ b/blocksuite/affine/gfx/link/package.json @@ -21,7 +21,7 @@ "@blocksuite/affine-shared": "workspace:*", "@blocksuite/affine-widget-edgeless-toolbar": "workspace:*", "@blocksuite/global": "workspace:*", - "@blocksuite/icons": "^2.2.12", + "@blocksuite/icons": "^2.2.17", "@blocksuite/std": "workspace:*", "@blocksuite/store": "workspace:*", "@lit/context": "^1.1.2", diff --git a/blocksuite/affine/gfx/mindmap/package.json b/blocksuite/affine/gfx/mindmap/package.json index 959167d574..3615c82fcb 100644 --- a/blocksuite/affine/gfx/mindmap/package.json +++ b/blocksuite/affine/gfx/mindmap/package.json @@ -25,7 +25,7 @@ "@blocksuite/affine-shared": "workspace:*", "@blocksuite/affine-widget-edgeless-toolbar": "workspace:*", "@blocksuite/global": "workspace:*", - "@blocksuite/icons": "^2.2.12", + "@blocksuite/icons": "^2.2.17", "@blocksuite/std": "workspace:*", "@blocksuite/store": "workspace:*", "@lit/context": "^1.1.2", diff --git a/blocksuite/affine/gfx/note/package.json b/blocksuite/affine/gfx/note/package.json index 665dd7d2df..98980b0678 100644 --- a/blocksuite/affine/gfx/note/package.json +++ b/blocksuite/affine/gfx/note/package.json @@ -21,7 +21,7 @@ "@blocksuite/affine-shared": "workspace:*", "@blocksuite/affine-widget-edgeless-toolbar": "workspace:*", "@blocksuite/global": "workspace:*", - "@blocksuite/icons": "^2.2.12", + "@blocksuite/icons": "^2.2.17", "@blocksuite/std": "workspace:*", "@blocksuite/store": "workspace:*", "@lit/context": "^1.1.2", diff --git a/blocksuite/affine/gfx/pointer/package.json b/blocksuite/affine/gfx/pointer/package.json index c41cc3ed50..50af7ea941 100644 --- a/blocksuite/affine/gfx/pointer/package.json +++ b/blocksuite/affine/gfx/pointer/package.json @@ -18,7 +18,7 @@ "@blocksuite/affine-shared": "workspace:*", "@blocksuite/affine-widget-edgeless-toolbar": "workspace:*", "@blocksuite/global": "workspace:*", - "@blocksuite/icons": "^2.2.12", + "@blocksuite/icons": "^2.2.17", "@blocksuite/std": "workspace:*", "@blocksuite/store": "workspace:*", "@lit/context": "^1.1.2", diff --git a/blocksuite/affine/gfx/shape/package.json b/blocksuite/affine/gfx/shape/package.json index 296e60a04c..31f5d3f198 100644 --- a/blocksuite/affine/gfx/shape/package.json +++ b/blocksuite/affine/gfx/shape/package.json @@ -19,7 +19,7 @@ "@blocksuite/affine-shared": "workspace:*", "@blocksuite/affine-widget-edgeless-toolbar": "workspace:*", "@blocksuite/global": "workspace:*", - "@blocksuite/icons": "^2.2.12", + "@blocksuite/icons": "^2.2.17", "@blocksuite/std": "workspace:*", "@blocksuite/store": "workspace:*", "@lit/context": "^1.1.2", diff --git a/blocksuite/affine/gfx/template/package.json b/blocksuite/affine/gfx/template/package.json index cd0a25b5d7..18b9e8c58c 100644 --- a/blocksuite/affine/gfx/template/package.json +++ b/blocksuite/affine/gfx/template/package.json @@ -19,7 +19,7 @@ "@blocksuite/affine-shared": "workspace:*", "@blocksuite/affine-widget-edgeless-toolbar": "workspace:*", "@blocksuite/global": "workspace:*", - "@blocksuite/icons": "^2.2.12", + "@blocksuite/icons": "^2.2.17", "@blocksuite/std": "workspace:*", "@blocksuite/store": "workspace:*", "@floating-ui/dom": "^1.6.13", diff --git a/blocksuite/affine/gfx/text/package.json b/blocksuite/affine/gfx/text/package.json index 6f90200418..db1b10befe 100644 --- a/blocksuite/affine/gfx/text/package.json +++ b/blocksuite/affine/gfx/text/package.json @@ -18,7 +18,7 @@ "@blocksuite/affine-shared": "workspace:*", "@blocksuite/affine-widget-edgeless-toolbar": "workspace:*", "@blocksuite/global": "workspace:*", - "@blocksuite/icons": "^2.2.12", + "@blocksuite/icons": "^2.2.17", "@blocksuite/std": "workspace:*", "@blocksuite/store": "workspace:*", "@lit/context": "^1.1.2", diff --git a/blocksuite/affine/inlines/footnote/package.json b/blocksuite/affine/inlines/footnote/package.json index c9b617eee2..49b60775e1 100644 --- a/blocksuite/affine/inlines/footnote/package.json +++ b/blocksuite/affine/inlines/footnote/package.json @@ -16,7 +16,7 @@ "@blocksuite/affine-model": "workspace:*", "@blocksuite/affine-shared": "workspace:*", "@blocksuite/global": "workspace:*", - "@blocksuite/icons": "^2.2.12", + "@blocksuite/icons": "^2.2.17", "@blocksuite/std": "workspace:*", "@blocksuite/store": "workspace:*", "@floating-ui/dom": "^1.6.13", diff --git a/blocksuite/affine/inlines/latex/package.json b/blocksuite/affine/inlines/latex/package.json index 4c71e35a8b..6a050a644c 100644 --- a/blocksuite/affine/inlines/latex/package.json +++ b/blocksuite/affine/inlines/latex/package.json @@ -17,7 +17,7 @@ "@blocksuite/affine-rich-text": "workspace:*", "@blocksuite/affine-shared": "workspace:*", "@blocksuite/global": "workspace:*", - "@blocksuite/icons": "^2.2.12", + "@blocksuite/icons": "^2.2.17", "@blocksuite/std": "workspace:*", "@blocksuite/store": "workspace:*", "@floating-ui/dom": "^1.6.13", diff --git a/blocksuite/affine/inlines/link/package.json b/blocksuite/affine/inlines/link/package.json index be803582e0..8d92023353 100644 --- a/blocksuite/affine/inlines/link/package.json +++ b/blocksuite/affine/inlines/link/package.json @@ -16,7 +16,7 @@ "@blocksuite/affine-model": "workspace:*", "@blocksuite/affine-shared": "workspace:*", "@blocksuite/global": "workspace:*", - "@blocksuite/icons": "^2.2.12", + "@blocksuite/icons": "^2.2.17", "@blocksuite/std": "workspace:*", "@blocksuite/store": "workspace:*", "@floating-ui/dom": "^1.6.13", diff --git a/blocksuite/affine/inlines/mention/package.json b/blocksuite/affine/inlines/mention/package.json index 134fad242c..10ab71064c 100644 --- a/blocksuite/affine/inlines/mention/package.json +++ b/blocksuite/affine/inlines/mention/package.json @@ -15,7 +15,7 @@ "@blocksuite/affine-model": "workspace:*", "@blocksuite/affine-shared": "workspace:*", "@blocksuite/global": "workspace:*", - "@blocksuite/icons": "^2.2.12", + "@blocksuite/icons": "^2.2.17", "@blocksuite/std": "workspace:*", "@blocksuite/store": "workspace:*", "@floating-ui/dom": "^1.6.13", diff --git a/blocksuite/affine/inlines/preset/package.json b/blocksuite/affine/inlines/preset/package.json index c53003fd01..8dd9241260 100644 --- a/blocksuite/affine/inlines/preset/package.json +++ b/blocksuite/affine/inlines/preset/package.json @@ -22,7 +22,7 @@ "@blocksuite/affine-rich-text": "workspace:*", "@blocksuite/affine-shared": "workspace:*", "@blocksuite/global": "workspace:*", - "@blocksuite/icons": "^2.2.12", + "@blocksuite/icons": "^2.2.17", "@blocksuite/std": "workspace:*", "@blocksuite/store": "workspace:*", "@floating-ui/dom": "^1.6.13", diff --git a/blocksuite/affine/inlines/reference/package.json b/blocksuite/affine/inlines/reference/package.json index bdff33b28b..d097a2ba47 100644 --- a/blocksuite/affine/inlines/reference/package.json +++ b/blocksuite/affine/inlines/reference/package.json @@ -15,7 +15,7 @@ "@blocksuite/affine-model": "workspace:*", "@blocksuite/affine-shared": "workspace:*", "@blocksuite/global": "workspace:*", - "@blocksuite/icons": "^2.2.12", + "@blocksuite/icons": "^2.2.17", "@blocksuite/std": "workspace:*", "@blocksuite/store": "workspace:*", "@floating-ui/dom": "^1.6.13", diff --git a/blocksuite/affine/rich-text/package.json b/blocksuite/affine/rich-text/package.json index 97cba891ef..6ddc1fa6ab 100644 --- a/blocksuite/affine/rich-text/package.json +++ b/blocksuite/affine/rich-text/package.json @@ -14,7 +14,7 @@ "@blocksuite/affine-model": "workspace:*", "@blocksuite/affine-shared": "workspace:*", "@blocksuite/global": "workspace:*", - "@blocksuite/icons": "^2.2.12", + "@blocksuite/icons": "^2.2.17", "@blocksuite/std": "workspace:*", "@blocksuite/store": "workspace:*", "@floating-ui/dom": "^1.6.13", diff --git a/blocksuite/affine/shared/package.json b/blocksuite/affine/shared/package.json index d1f15ddbc7..cde4b2ba87 100644 --- a/blocksuite/affine/shared/package.json +++ b/blocksuite/affine/shared/package.json @@ -12,7 +12,7 @@ "dependencies": { "@blocksuite/affine-model": "workspace:*", "@blocksuite/global": "workspace:*", - "@blocksuite/icons": "^2.2.12", + "@blocksuite/icons": "^2.2.17", "@blocksuite/std": "workspace:*", "@blocksuite/store": "workspace:*", "@floating-ui/dom": "^1.6.13", diff --git a/blocksuite/affine/widgets/drag-handle/package.json b/blocksuite/affine/widgets/drag-handle/package.json index 71e136a3ad..bf64f68893 100644 --- a/blocksuite/affine/widgets/drag-handle/package.json +++ b/blocksuite/affine/widgets/drag-handle/package.json @@ -21,7 +21,7 @@ "@blocksuite/affine-model": "workspace:*", "@blocksuite/affine-shared": "workspace:*", "@blocksuite/global": "workspace:*", - "@blocksuite/icons": "^2.2.12", + "@blocksuite/icons": "^2.2.17", "@blocksuite/std": "workspace:*", "@blocksuite/store": "workspace:*", "@floating-ui/dom": "^1.6.13", diff --git a/blocksuite/affine/widgets/edgeless-auto-connect/package.json b/blocksuite/affine/widgets/edgeless-auto-connect/package.json index 6a7de6dae4..1ec6cb28db 100644 --- a/blocksuite/affine/widgets/edgeless-auto-connect/package.json +++ b/blocksuite/affine/widgets/edgeless-auto-connect/package.json @@ -17,7 +17,7 @@ "@blocksuite/affine-model": "workspace:*", "@blocksuite/affine-shared": "workspace:*", "@blocksuite/global": "workspace:*", - "@blocksuite/icons": "^2.2.12", + "@blocksuite/icons": "^2.2.17", "@blocksuite/std": "workspace:*", "@preact/signals-core": "^1.8.0", "@toeverything/theme": "^1.1.16", diff --git a/blocksuite/affine/widgets/edgeless-dragging-area/package.json b/blocksuite/affine/widgets/edgeless-dragging-area/package.json index df1e1c0138..24c34c67a0 100644 --- a/blocksuite/affine/widgets/edgeless-dragging-area/package.json +++ b/blocksuite/affine/widgets/edgeless-dragging-area/package.json @@ -17,7 +17,7 @@ "@blocksuite/affine-model": "workspace:*", "@blocksuite/affine-shared": "workspace:*", "@blocksuite/global": "workspace:*", - "@blocksuite/icons": "^2.2.12", + "@blocksuite/icons": "^2.2.17", "@blocksuite/std": "workspace:*", "@lit/context": "^1.1.2", "@preact/signals-core": "^1.8.0", diff --git a/blocksuite/affine/widgets/edgeless-selected-rect/package.json b/blocksuite/affine/widgets/edgeless-selected-rect/package.json index 80c1def720..10b048766a 100644 --- a/blocksuite/affine/widgets/edgeless-selected-rect/package.json +++ b/blocksuite/affine/widgets/edgeless-selected-rect/package.json @@ -21,7 +21,7 @@ "@blocksuite/affine-model": "workspace:*", "@blocksuite/affine-shared": "workspace:*", "@blocksuite/global": "workspace:*", - "@blocksuite/icons": "^2.2.12", + "@blocksuite/icons": "^2.2.17", "@blocksuite/std": "workspace:*", "@lit/context": "^1.1.2", "@preact/signals-core": "^1.8.0", diff --git a/blocksuite/affine/widgets/edgeless-toolbar/package.json b/blocksuite/affine/widgets/edgeless-toolbar/package.json index 84060c39d4..f40b7be647 100644 --- a/blocksuite/affine/widgets/edgeless-toolbar/package.json +++ b/blocksuite/affine/widgets/edgeless-toolbar/package.json @@ -17,7 +17,7 @@ "@blocksuite/affine-rich-text": "workspace:*", "@blocksuite/affine-shared": "workspace:*", "@blocksuite/global": "workspace:*", - "@blocksuite/icons": "^2.2.12", + "@blocksuite/icons": "^2.2.17", "@blocksuite/std": "workspace:*", "@floating-ui/dom": "^1.6.13", "@lit/context": "^1.1.2", diff --git a/blocksuite/affine/widgets/edgeless-zoom-toolbar/package.json b/blocksuite/affine/widgets/edgeless-zoom-toolbar/package.json index c6addfbed2..30ce1f5c56 100644 --- a/blocksuite/affine/widgets/edgeless-zoom-toolbar/package.json +++ b/blocksuite/affine/widgets/edgeless-zoom-toolbar/package.json @@ -16,7 +16,7 @@ "@blocksuite/affine-model": "workspace:*", "@blocksuite/affine-shared": "workspace:*", "@blocksuite/global": "workspace:*", - "@blocksuite/icons": "^2.2.12", + "@blocksuite/icons": "^2.2.17", "@blocksuite/std": "workspace:*", "@floating-ui/dom": "^1.6.13", "@preact/signals-core": "^1.8.0", diff --git a/blocksuite/affine/widgets/keyboard-toolbar/package.json b/blocksuite/affine/widgets/keyboard-toolbar/package.json index b9c43f050f..3506cb6cc9 100644 --- a/blocksuite/affine/widgets/keyboard-toolbar/package.json +++ b/blocksuite/affine/widgets/keyboard-toolbar/package.json @@ -33,7 +33,7 @@ "@blocksuite/affine-shared": "workspace:*", "@blocksuite/data-view": "workspace:*", "@blocksuite/global": "workspace:*", - "@blocksuite/icons": "^2.2.12", + "@blocksuite/icons": "^2.2.17", "@blocksuite/std": "workspace:*", "@blocksuite/store": "workspace:*", "@lit/context": "^1.1.2", diff --git a/blocksuite/affine/widgets/linked-doc/package.json b/blocksuite/affine/widgets/linked-doc/package.json index ab3946fd15..21bb7c464b 100644 --- a/blocksuite/affine/widgets/linked-doc/package.json +++ b/blocksuite/affine/widgets/linked-doc/package.json @@ -18,7 +18,7 @@ "@blocksuite/affine-rich-text": "workspace:*", "@blocksuite/affine-shared": "workspace:*", "@blocksuite/global": "workspace:*", - "@blocksuite/icons": "^2.2.12", + "@blocksuite/icons": "^2.2.17", "@blocksuite/std": "workspace:*", "@blocksuite/store": "workspace:*", "@lit/context": "^1.1.2", diff --git a/blocksuite/affine/widgets/note-slicer/package.json b/blocksuite/affine/widgets/note-slicer/package.json index 56a3305d07..4775eab8f2 100644 --- a/blocksuite/affine/widgets/note-slicer/package.json +++ b/blocksuite/affine/widgets/note-slicer/package.json @@ -18,7 +18,7 @@ "@blocksuite/affine-shared": "workspace:*", "@blocksuite/affine-widget-edgeless-selected-rect": "workspace:*", "@blocksuite/global": "workspace:*", - "@blocksuite/icons": "^2.2.12", + "@blocksuite/icons": "^2.2.17", "@blocksuite/std": "workspace:*", "@lit/context": "^1.1.2", "@preact/signals-core": "^1.8.0", diff --git a/blocksuite/affine/widgets/page-dragging-area/package.json b/blocksuite/affine/widgets/page-dragging-area/package.json index 46f20ca21b..ae9f9c53b4 100644 --- a/blocksuite/affine/widgets/page-dragging-area/package.json +++ b/blocksuite/affine/widgets/page-dragging-area/package.json @@ -15,7 +15,7 @@ "@blocksuite/affine-model": "workspace:*", "@blocksuite/affine-shared": "workspace:*", "@blocksuite/global": "workspace:*", - "@blocksuite/icons": "^2.2.12", + "@blocksuite/icons": "^2.2.17", "@blocksuite/std": "workspace:*", "@blocksuite/store": "workspace:*", "@lit/context": "^1.1.2", diff --git a/blocksuite/affine/widgets/remote-selection/package.json b/blocksuite/affine/widgets/remote-selection/package.json index 244bf388fa..1ce2950d00 100644 --- a/blocksuite/affine/widgets/remote-selection/package.json +++ b/blocksuite/affine/widgets/remote-selection/package.json @@ -16,7 +16,7 @@ "@blocksuite/affine-model": "workspace:*", "@blocksuite/affine-shared": "workspace:*", "@blocksuite/global": "workspace:*", - "@blocksuite/icons": "^2.2.12", + "@blocksuite/icons": "^2.2.17", "@blocksuite/std": "workspace:*", "@preact/signals-core": "^1.8.0", "@toeverything/theme": "^1.1.16", diff --git a/blocksuite/affine/widgets/slash-menu/package.json b/blocksuite/affine/widgets/slash-menu/package.json index 5768c1dd4d..df85b90e29 100644 --- a/blocksuite/affine/widgets/slash-menu/package.json +++ b/blocksuite/affine/widgets/slash-menu/package.json @@ -15,7 +15,7 @@ "@blocksuite/affine-rich-text": "workspace:*", "@blocksuite/affine-shared": "workspace:*", "@blocksuite/global": "workspace:*", - "@blocksuite/icons": "^2.2.12", + "@blocksuite/icons": "^2.2.17", "@blocksuite/std": "workspace:*", "@blocksuite/store": "workspace:*", "@floating-ui/dom": "^1.6.13", diff --git a/blocksuite/affine/widgets/toolbar/package.json b/blocksuite/affine/widgets/toolbar/package.json index 886f31e6a8..f30590a15b 100644 --- a/blocksuite/affine/widgets/toolbar/package.json +++ b/blocksuite/affine/widgets/toolbar/package.json @@ -18,7 +18,7 @@ "@blocksuite/affine-model": "workspace:*", "@blocksuite/affine-shared": "workspace:*", "@blocksuite/global": "workspace:*", - "@blocksuite/icons": "^2.2.12", + "@blocksuite/icons": "^2.2.17", "@blocksuite/std": "workspace:*", "@floating-ui/dom": "^1.6.13", "@preact/signals-core": "^1.8.0", diff --git a/blocksuite/affine/widgets/viewport-overlay/package.json b/blocksuite/affine/widgets/viewport-overlay/package.json index 5240ff5b5f..e75a70e9fb 100644 --- a/blocksuite/affine/widgets/viewport-overlay/package.json +++ b/blocksuite/affine/widgets/viewport-overlay/package.json @@ -15,7 +15,7 @@ "@blocksuite/affine-model": "workspace:*", "@blocksuite/affine-shared": "workspace:*", "@blocksuite/global": "workspace:*", - "@blocksuite/icons": "^2.2.12", + "@blocksuite/icons": "^2.2.17", "@blocksuite/std": "workspace:*", "@floating-ui/dom": "^1.6.13", "@preact/signals-core": "^1.8.0", diff --git a/blocksuite/integration-test/package.json b/blocksuite/integration-test/package.json index d6e2c06958..c2315ac7dc 100644 --- a/blocksuite/integration-test/package.json +++ b/blocksuite/integration-test/package.json @@ -14,7 +14,7 @@ "license": "MIT", "dependencies": { "@blocksuite/affine": "workspace:*", - "@blocksuite/icons": "^2.2.12", + "@blocksuite/icons": "^2.2.17", "@floating-ui/dom": "^1.6.13", "@lit/context": "^1.1.3", "@lottiefiles/dotlottie-wc": "^0.5.0", diff --git a/blocksuite/playground/package.json b/blocksuite/playground/package.json index 338f8cc5d7..bf77b5dadc 100644 --- a/blocksuite/playground/package.json +++ b/blocksuite/playground/package.json @@ -14,7 +14,7 @@ "@blocksuite/affine-model": "workspace:*", "@blocksuite/affine-shared": "workspace:*", "@blocksuite/data-view": "workspace:*", - "@blocksuite/icons": "^2.2.12", + "@blocksuite/icons": "^2.2.17", "@blocksuite/integration-test": "workspace:*", "@preact/signals-core": "^1.8.0", "@shoelace-style/shoelace": "2.20.1", diff --git a/packages/frontend/admin/package.json b/packages/frontend/admin/package.json index c387d88c45..ee34951807 100644 --- a/packages/frontend/admin/package.json +++ b/packages/frontend/admin/package.json @@ -8,7 +8,7 @@ "@affine/error": "workspace:*", "@affine/graphql": "workspace:*", "@affine/routes": "workspace:*", - "@blocksuite/icons": "^2.2.12", + "@blocksuite/icons": "^2.2.17", "@radix-ui/react-accordion": "^1.2.2", "@radix-ui/react-alert-dialog": "^1.1.3", "@radix-ui/react-aspect-ratio": "^1.1.1", diff --git a/packages/frontend/apps/android/package.json b/packages/frontend/apps/android/package.json index b96e02fb07..92399ddd01 100644 --- a/packages/frontend/apps/android/package.json +++ b/packages/frontend/apps/android/package.json @@ -17,7 +17,7 @@ "@affine/i18n": "workspace:*", "@affine/nbstore": "workspace:*", "@blocksuite/affine": "workspace:*", - "@blocksuite/icons": "^2.2.12", + "@blocksuite/icons": "^2.2.17", "@capacitor/android": "^7.0.0", "@capacitor/app": "^7.0.0", "@capacitor/core": "^7.0.0", diff --git a/packages/frontend/apps/ios/package.json b/packages/frontend/apps/ios/package.json index d008c0fd3c..30d40b8628 100644 --- a/packages/frontend/apps/ios/package.json +++ b/packages/frontend/apps/ios/package.json @@ -20,7 +20,7 @@ "@affine/i18n": "workspace:*", "@affine/nbstore": "workspace:*", "@blocksuite/affine": "workspace:*", - "@blocksuite/icons": "^2.2.12", + "@blocksuite/icons": "^2.2.17", "@capacitor/app": "^7.0.0", "@capacitor/browser": "^7.0.0", "@capacitor/core": "^7.0.0", diff --git a/packages/frontend/apps/mobile/package.json b/packages/frontend/apps/mobile/package.json index 06b496236b..74021e9541 100644 --- a/packages/frontend/apps/mobile/package.json +++ b/packages/frontend/apps/mobile/package.json @@ -15,7 +15,7 @@ "@affine/i18n": "workspace:*", "@affine/nbstore": "workspace:*", "@blocksuite/affine": "workspace:*", - "@blocksuite/icons": "^2.2.12", + "@blocksuite/icons": "^2.2.17", "@sentry/react": "^9.2.0", "@toeverything/infra": "workspace:*", "react": "^19.0.0", diff --git a/packages/frontend/component/package.json b/packages/frontend/component/package.json index 8d053d4d9f..c9e9efd997 100644 --- a/packages/frontend/component/package.json +++ b/packages/frontend/component/package.json @@ -27,7 +27,7 @@ "@affine/i18n": "workspace:*", "@atlaskit/pragmatic-drag-and-drop": "^1.4.0", "@atlaskit/pragmatic-drag-and-drop-hitbox": "^1.0.3", - "@blocksuite/icons": "^2.2.12", + "@blocksuite/icons": "^2.2.17", "@emoji-mart/data": "^1.2.1", "@emoji-mart/react": "^1.1.1", "@emotion/react": "^11.14.0", @@ -54,6 +54,7 @@ "clsx": "^2.1.1", "dayjs": "^1.11.13", "emoji-mart": "^5.6.0", + "emojibase-data": "^16.0.3", "foxact": "^0.2.45", "jotai": "^2.10.3", "lit": "^3.2.1", diff --git a/packages/frontend/component/src/index.ts b/packages/frontend/component/src/index.ts index 6b20735072..12022f7024 100644 --- a/packages/frontend/component/src/index.ts +++ b/packages/frontend/component/src/index.ts @@ -13,6 +13,7 @@ export * from './ui/editable'; export * from './ui/empty'; export * from './ui/error-message'; export * from './ui/icon-name-editor'; +export * from './ui/icon-picker'; export * from './ui/input'; export * from './ui/layout'; export * from './ui/loading'; diff --git a/packages/frontend/component/src/ui/icon-picker/icon-picker.css.ts b/packages/frontend/component/src/ui/icon-picker/icon-picker.css.ts new file mode 100644 index 0000000000..4c28acc018 --- /dev/null +++ b/packages/frontend/component/src/ui/icon-picker/icon-picker.css.ts @@ -0,0 +1,31 @@ +import { cssVarV2 } from '@toeverything/theme/v2'; +import { style } from '@vanilla-extract/css'; + +export const container = style({ + width: 390, + maxWidth: '100%', + height: 400, + display: 'flex', + flexDirection: 'column', +}); + +export const header = style({ + padding: '12px 12px 0px 12px', +}); +export const headerContent = style({ + borderBottom: `0.5px solid ${cssVarV2.layer.insideBorder.border}`, + display: 'flex', + justifyContent: 'space-between', +}); +export const headerNav = style({ + backgroundColor: 'transparent', +}); +export const headerNavItem = style({ + marginBottom: 6, + fontSize: 14, +}); + +export const main = style({ + height: 0, + flexGrow: 1, +}); diff --git a/packages/frontend/component/src/ui/icon-picker/icon-picker.stories.tsx b/packages/frontend/component/src/ui/icon-picker/icon-picker.stories.tsx new file mode 100644 index 0000000000..3094af634e --- /dev/null +++ b/packages/frontend/component/src/ui/icon-picker/icon-picker.stories.tsx @@ -0,0 +1,20 @@ +import { IconPicker } from './icon-picker'; + +export default { + title: 'UI/IconPicker', + component: IconPicker, +}; + +export const Default = () => { + return ( + <> +
Selected: // TODO
+ + + ); +}; diff --git a/packages/frontend/component/src/ui/icon-picker/icon-picker.tsx b/packages/frontend/component/src/ui/icon-picker/icon-picker.tsx new file mode 100644 index 0000000000..98cc657a92 --- /dev/null +++ b/packages/frontend/component/src/ui/icon-picker/icon-picker.tsx @@ -0,0 +1,71 @@ +import { cssVarV2 } from '@toeverything/theme/v2'; +import clsx from 'clsx'; +import { type HTMLAttributes, useState } from 'react'; + +import { Button } from '../button'; +import { RadioGroup, type RadioItem } from '../radio'; +import * as styles from './icon-picker.css'; +import { AffineIconPicker } from './picker/affine-icon/affine-icon-picker'; +import { EmojiPicker } from './picker/emoji/emoji-picker'; + +const panels: Array = [ + { value: 'Emoji', className: styles.headerNavItem }, + { value: 'Icons', className: styles.headerNavItem }, +]; + +export const IconPicker = ({ + className, + style, +}: HTMLAttributes & { + onSelect?: ( + type: 'emoji' | 'affine-icon', + data: { icon?: string; color?: string } + ) => void; +}) => { + const [activePanel, setActivePanel] = useState('Icons'); + + // const ActivePanel = panels.find( + // panel => panel.value === activePanel + // )?.component; + + return ( +
+
+
+ {/* Nav */} + + + {/* Remove */} + +
+
+
+ {activePanel === 'Emoji' ? ( + + ) : activePanel === 'Icons' ? ( + + ) : null} +
+
+ ); +}; diff --git a/packages/frontend/component/src/ui/icon-picker/index.ts b/packages/frontend/component/src/ui/icon-picker/index.ts new file mode 100644 index 0000000000..1fd5d61e59 --- /dev/null +++ b/packages/frontend/component/src/ui/icon-picker/index.ts @@ -0,0 +1 @@ +export * from './icon-picker'; diff --git a/packages/frontend/component/src/ui/icon-picker/picker/affine-icon/affine-icon-picker.css.ts b/packages/frontend/component/src/ui/icon-picker/picker/affine-icon/affine-icon-picker.css.ts new file mode 100644 index 0000000000..36ab18bc3d --- /dev/null +++ b/packages/frontend/component/src/ui/icon-picker/picker/affine-icon/affine-icon-picker.css.ts @@ -0,0 +1,17 @@ +import { style } from '@vanilla-extract/css'; + +export const colorList = style({ + display: 'flex', + gap: 4, +}); + +export const colorItem = style({ + padding: 2, +}); + +export const colorDot = style({ + width: '1em', + height: '1em', + borderRadius: '50%', + background: 'currentColor', +}); diff --git a/packages/frontend/component/src/ui/icon-picker/picker/affine-icon/affine-icon-picker.tsx b/packages/frontend/component/src/ui/icon-picker/picker/affine-icon/affine-icon-picker.tsx new file mode 100644 index 0000000000..673bb3973b --- /dev/null +++ b/packages/frontend/component/src/ui/icon-picker/picker/affine-icon/affine-icon-picker.tsx @@ -0,0 +1,201 @@ +import keywords from '@blocksuite/icons/keywords/en.json'; +import * as allIcons from '@blocksuite/icons/rc'; +import { cssVarV2 } from '@toeverything/theme/v2'; +import { startTransition, useCallback, useEffect, useState } from 'react'; + +import { IconButton } from '../../../button'; +import Input from '../../../input'; +import { Menu } from '../../../menu'; +import { Scrollable } from '../../../scrollbar'; +import { AffineIconRenderer } from '../../renderer/affine-icon'; +import * as pickerStyles from '../picker.css'; +import * as styles from './affine-icon-picker.css'; + +type Icon = { + name: string; + keywords: string[]; +}; + +const icons = keywords['Emoji Panel'] as Icon[]; + +const colorList: string[] = [ + cssVarV2.block.callout.icon.red, + cssVarV2.block.callout.icon.orange, + cssVarV2.block.callout.icon.yellow, + cssVarV2.block.callout.icon.green, + cssVarV2.block.callout.icon.teal, + cssVarV2.block.callout.icon.blue, + cssVarV2.block.callout.icon.purple, + cssVarV2.block.callout.icon.magenta, + cssVarV2.block.callout.icon.grey, +]; + +const useRecentIcons = () => { + const [recentIcons, setRecentIcons] = useState>([]); + + useEffect(() => { + const recentIcons = localStorage.getItem('recentIcons'); + setRecentIcons(recentIcons ? recentIcons.split(',') : []); + }, []); + + const add = useCallback((icon: string) => { + setRecentIcons(prevRecentIcons => { + const newRecentIcons = [ + icon, + ...prevRecentIcons.filter(e => e !== icon), + ].slice(0, 10); + localStorage.setItem('recentIcons', newRecentIcons.join(',')); + return newRecentIcons; + }); + }, []); + + return { + recentIcons, + add, + }; +}; + +export const AffineIconPicker = ({ + onSelect, +}: { + onSelect?: (icon: string, color: string) => void; +}) => { + const [filteredIcons, setFilteredIcons] = useState([]); + const [keyword, setKeyword] = useState(''); + const [color, setColor] = useState(cssVarV2.block.callout.icon.blue); + + const { recentIcons, add: addRecentIcon } = useRecentIcons(); + + useEffect(() => { + startTransition(() => { + if (!keyword) { + setFilteredIcons(icons); + return; + } + + setFilteredIcons( + icons.filter(icon => + icon.keywords.some(kw => kw.includes(keyword.toLowerCase())) + ) + ); + }); + }, [keyword]); + + const handleIconSelect = useCallback( + (icon: string) => { + addRecentIcon(icon); + onSelect?.(icon, color); + }, + [addRecentIcon, onSelect, color] + ); + + return ( +
+ {/* Search */} +
+ + +
+ } + placeholder="Filter..." + /> + + {/* Color Picker */} + + {colorList.map(color => ( + + } + onClick={() => setColor(color)} + /> + ))} + + } + > + + } + /> + + + + {/* Content */} + + + {/* Recent */} + {recentIcons.length ? ( +
+
+ Recent +
+
+ {recentIcons.map(iconName => ( + + } + onClick={() => handleIconSelect(iconName)} + /> + ))} +
+
+ ) : null} + + {/* Groups */} +
+
+ Icons +
+
+ {filteredIcons.map(icon => { + return ( + + } + onClick={() => handleIconSelect(icon.name)} + /> + ); + })} +
+
+
+ +
+ + ); +}; diff --git a/packages/frontend/component/src/ui/icon-picker/picker/emoji/constants.ts b/packages/frontend/component/src/ui/icon-picker/picker/emoji/constants.ts new file mode 100644 index 0000000000..8255ef6be7 --- /dev/null +++ b/packages/frontend/component/src/ui/icon-picker/picker/emoji/constants.ts @@ -0,0 +1,43 @@ +import type { ComponentType, SVGProps } from 'react'; + +import { ActivityIcon } from './icons/activity'; +import { AnimalIcon } from './icons/animal'; +import { FlagIcon } from './icons/flag'; +import { FoodIcon } from './icons/food'; +import { ObjectIcon } from './icons/object'; +import { SmileIcon } from './icons/smile'; +import { SymbolIcon } from './icons/symbol'; +import { TravelIcon } from './icons/travel'; + +export type GroupName = + | 'Smileys & People' + | 'Animals & Nature' + | 'Food & Drink' + | 'Activity' + | 'Travel & Places' + | 'Objects' + | 'Symbols' + | 'Flags'; +export const GROUPS: GroupName[] = [ + 'Smileys & People', + 'Animals & Nature', + 'Food & Drink', + 'Activity', + 'Travel & Places', + 'Objects', + 'Symbols', + 'Flags', +]; +export const GROUP_ICON_MAP: Record< + GroupName, + ComponentType> +> = { + 'Smileys & People': SmileIcon, + 'Animals & Nature': AnimalIcon, + 'Food & Drink': FoodIcon, + Activity: ActivityIcon, + 'Travel & Places': TravelIcon, + Objects: ObjectIcon, + Symbols: SymbolIcon, + Flags: FlagIcon, +}; diff --git a/packages/frontend/component/src/ui/icon-picker/picker/emoji/data/en.json b/packages/frontend/component/src/ui/icon-picker/picker/emoji/data/en.json new file mode 100644 index 0000000000..c81d71e41d --- /dev/null +++ b/packages/frontend/component/src/ui/icon-picker/picker/emoji/data/en.json @@ -0,0 +1,35020 @@ +[ + { + "name": "Smileys & People", + "emojis": [ + { + "group": 0, + "hexcode": "1F600", + "label": "grinning face", + "order": 1, + "tags": [ + "cheerful", + "cheery", + "face", + "grin", + "grinning", + "happy", + "laugh", + "nice", + "smile", + "smiling", + "teeth" + ], + "unicode": "😀" + }, + { + "group": 0, + "hexcode": "1F603", + "label": "grinning face with big eyes", + "order": 2, + "tags": [ + "awesome", + "big", + "eyes", + "face", + "grin", + "grinning", + "happy", + "mouth", + "open", + "smile", + "smiling", + "teeth", + "yay" + ], + "unicode": "😃" + }, + { + "group": 0, + "hexcode": "1F604", + "label": "grinning face with smiling eyes", + "order": 3, + "tags": [ + "eye", + "eyes", + "face", + "grin", + "grinning", + "happy", + "laugh", + "lol", + "mouth", + "open", + "smile", + "smiling" + ], + "unicode": "😄", + "emoticon": ":D" + }, + { + "group": 0, + "hexcode": "1F601", + "label": "beaming face with smiling eyes", + "order": 4, + "tags": [ + "beaming", + "eye", + "eyes", + "face", + "grin", + "grinning", + "happy", + "nice", + "smile", + "smiling", + "teeth" + ], + "unicode": "😁" + }, + { + "group": 0, + "hexcode": "1F606", + "label": "grinning squinting face", + "order": 5, + "tags": [ + "closed", + "eyes", + "face", + "grinning", + "haha", + "hahaha", + "happy", + "laugh", + "lol", + "mouth", + "open", + "rofl", + "smile", + "smiling", + "squinting" + ], + "unicode": "😆", + "emoticon": ["xD", "XD"] + }, + { + "group": 0, + "hexcode": "1F605", + "label": "grinning face with sweat", + "order": 6, + "tags": [ + "cold", + "dejected", + "excited", + "face", + "grinning", + "mouth", + "nervous", + "open", + "smile", + "smiling", + "stress", + "stressed", + "sweat" + ], + "unicode": "😅" + }, + { + "group": 0, + "hexcode": "1F923", + "label": "rolling on the floor laughing", + "order": 7, + "tags": [ + "crying", + "face", + "floor", + "funny", + "haha", + "happy", + "hehe", + "hilarious", + "joy", + "laugh", + "lmao", + "lol", + "rofl", + "roflmao", + "rolling", + "tear" + ], + "unicode": "ðŸĪĢ", + "emoticon": ":'D" + }, + { + "group": 0, + "hexcode": "1F602", + "label": "face with tears of joy", + "order": 8, + "tags": [ + "crying", + "face", + "feels", + "funny", + "haha", + "happy", + "hehe", + "hilarious", + "joy", + "laugh", + "lmao", + "lol", + "rofl", + "roflmao", + "tear" + ], + "unicode": "😂", + "emoticon": ":')" + }, + { + "group": 0, + "hexcode": "1F642", + "label": "slightly smiling face", + "order": 9, + "tags": ["face", "happy", "slightly", "smile", "smiling"], + "unicode": "🙂", + "emoticon": ":)" + }, + { + "group": 0, + "hexcode": "1F643", + "label": "upside-down face", + "order": 10, + "tags": ["face", "hehe", "smile", "upside-down"], + "unicode": "🙃" + }, + { + "group": 0, + "hexcode": "1FAE0", + "label": "melting face", + "order": 11, + "tags": [ + "disappear", + "dissolve", + "embarrassed", + "face", + "haha", + "heat", + "hot", + "liquid", + "lol", + "melt", + "melting", + "sarcasm", + "sarcastic" + ], + "unicode": "ðŸŦ " + }, + { + "group": 0, + "hexcode": "1F609", + "label": "winking face", + "order": 12, + "tags": [ + "face", + "flirt", + "heartbreaker", + "sexy", + "slide", + "tease", + "wink", + "winking", + "winks" + ], + "unicode": "😉", + "emoticon": ";)" + }, + { + "group": 0, + "hexcode": "1F60A", + "label": "smiling face with smiling eyes", + "order": 13, + "tags": [ + "blush", + "eye", + "eyes", + "face", + "glad", + "satisfied", + "smile", + "smiling" + ], + "unicode": "😊", + "emoticon": ":>" + }, + { + "group": 0, + "hexcode": "1F607", + "label": "smiling face with halo", + "order": 14, + "tags": [ + "angel", + "angelic", + "angels", + "blessed", + "face", + "fairy", + "fairytale", + "fantasy", + "halo", + "happy", + "innocent", + "peaceful", + "smile", + "smiling", + "spirit", + "tale" + ], + "unicode": "😇", + "emoticon": ["o:)", "O:)"] + }, + { + "group": 0, + "hexcode": "1F970", + "label": "smiling face with hearts", + "order": 15, + "tags": [ + "3", + "adore", + "crush", + "face", + "heart", + "hearts", + "ily", + "love", + "romance", + "smile", + "smiling", + "you" + ], + "unicode": "ðŸĨ°" + }, + { + "group": 0, + "hexcode": "1F60D", + "label": "smiling face with heart-eyes", + "order": 16, + "tags": [ + "143", + "bae", + "eye", + "face", + "feels", + "heart-eyes", + "hearts", + "ily", + "kisses", + "love", + "romance", + "romantic", + "smile", + "xoxo" + ], + "unicode": "😍" + }, + { + "group": 0, + "hexcode": "1F929", + "label": "star-struck", + "order": 17, + "tags": [ + "excited", + "eyes", + "face", + "grinning", + "smile", + "star", + "starry-eyed", + "wow" + ], + "unicode": "ðŸĪĐ" + }, + { + "group": 0, + "hexcode": "1F618", + "label": "face blowing a kiss", + "order": 18, + "tags": [ + "adorbs", + "bae", + "blowing", + "face", + "flirt", + "heart", + "ily", + "kiss", + "love", + "lover", + "miss", + "muah", + "romantic", + "smooch", + "xoxo", + "you" + ], + "unicode": "😘", + "emoticon": [":x", ":X"] + }, + { + "group": 0, + "hexcode": "1F617", + "label": "kissing face", + "order": 19, + "tags": [ + "143", + "date", + "dating", + "face", + "flirt", + "ily", + "kiss", + "love", + "smooch", + "smooches", + "xoxo", + "you" + ], + "unicode": "😗" + }, + { + "group": 0, + "hexcode": "263A", + "label": "smiling face", + "order": 21, + "tags": ["face", "happy", "outlined", "relaxed", "smile", "smiling"], + "unicode": "☚ïļ" + }, + { + "group": 0, + "hexcode": "1F61A", + "label": "kissing face with closed eyes", + "order": 22, + "tags": [ + "143", + "bae", + "blush", + "closed", + "date", + "dating", + "eye", + "eyes", + "face", + "flirt", + "ily", + "kisses", + "kissing", + "smooches", + "xoxo" + ], + "unicode": "😚", + "emoticon": ":*" + }, + { + "group": 0, + "hexcode": "1F619", + "label": "kissing face with smiling eyes", + "order": 23, + "tags": [ + "143", + "closed", + "date", + "dating", + "eye", + "eyes", + "face", + "flirt", + "ily", + "kiss", + "kisses", + "kissing", + "love", + "night", + "smile", + "smiling" + ], + "unicode": "😙" + }, + { + "group": 0, + "hexcode": "1F972", + "label": "smiling face with tear", + "order": 24, + "tags": [ + "face", + "glad", + "grateful", + "happy", + "joy", + "pain", + "proud", + "relieved", + "smile", + "smiley", + "smiling", + "tear", + "touched" + ], + "unicode": "ðŸĨē" + }, + { + "group": 0, + "hexcode": "1F60B", + "label": "face savoring food", + "order": 25, + "tags": [ + "delicious", + "eat", + "face", + "food", + "full", + "hungry", + "savor", + "smile", + "smiling", + "tasty", + "um", + "yum", + "yummy" + ], + "unicode": "😋" + }, + { + "group": 0, + "hexcode": "1F61B", + "label": "face with tongue", + "order": 26, + "tags": [ + "awesome", + "cool", + "face", + "nice", + "party", + "stuck-out", + "sweet", + "tongue" + ], + "unicode": "😛", + "emoticon": [":p", ":P"] + }, + { + "group": 0, + "hexcode": "1F61C", + "label": "winking face with tongue", + "order": 27, + "tags": [ + "crazy", + "epic", + "eye", + "face", + "funny", + "joke", + "loopy", + "nutty", + "party", + "stuck-out", + "tongue", + "wacky", + "weirdo", + "wink", + "winking", + "yolo" + ], + "unicode": "😜", + "emoticon": [";p", ";P"] + }, + { + "group": 0, + "hexcode": "1F92A", + "label": "zany face", + "order": 28, + "tags": [ + "crazy", + "eye", + "eyes", + "face", + "goofy", + "large", + "small", + "zany" + ], + "unicode": "ðŸĪŠ" + }, + { + "group": 0, + "hexcode": "1F61D", + "label": "squinting face with tongue", + "order": 29, + "tags": [ + "closed", + "eye", + "eyes", + "face", + "gross", + "horrible", + "omg", + "squinting", + "stuck-out", + "taste", + "tongue", + "whatever", + "yolo" + ], + "unicode": "😝", + "emoticon": ["xp", "xP", "XP"] + }, + { + "group": 0, + "hexcode": "1F911", + "label": "money-mouth face", + "order": 30, + "tags": ["face", "money", "money-mouth", "mouth", "paid"], + "unicode": "ðŸĪ‘" + }, + { + "group": 0, + "hexcode": "1F917", + "label": "smiling face with open hands", + "order": 31, + "tags": ["face", "hands", "hug", "hugging", "open", "smiling"], + "unicode": "ðŸĪ—" + }, + { + "group": 0, + "hexcode": "1F92D", + "label": "face with hand over mouth", + "order": 32, + "tags": [ + "face", + "giggle", + "giggling", + "hand", + "mouth", + "oops", + "realization", + "secret", + "shock", + "sudden", + "surprise", + "whoops" + ], + "unicode": "ðŸĪ­" + }, + { + "group": 0, + "hexcode": "1FAE2", + "label": "face with open eyes and hand over mouth", + "order": 33, + "tags": [ + "amazement", + "awe", + "disbelief", + "embarrass", + "eyes", + "face", + "gasp", + "hand", + "mouth", + "omg", + "open", + "over", + "quiet", + "scared", + "shock", + "surprise" + ], + "unicode": "ðŸŦĒ" + }, + { + "group": 0, + "hexcode": "1FAE3", + "label": "face with peeking eye", + "order": 34, + "tags": [ + "captivated", + "embarrass", + "eye", + "face", + "hide", + "hiding", + "peek", + "peeking", + "peep", + "scared", + "shy", + "stare" + ], + "unicode": "ðŸŦĢ" + }, + { + "group": 0, + "hexcode": "1F92B", + "label": "shushing face", + "order": 35, + "tags": ["face", "quiet", "shh", "shush", "shushing"], + "unicode": "ðŸĪŦ" + }, + { + "group": 0, + "hexcode": "1F914", + "label": "thinking face", + "order": 36, + "tags": [ + "chin", + "consider", + "face", + "hmm", + "ponder", + "pondering", + "thinking", + "wondering" + ], + "unicode": "ðŸĪ”", + "emoticon": [":l", ":L"] + }, + { + "group": 0, + "hexcode": "1FAE1", + "label": "saluting face", + "order": 37, + "tags": [ + "face", + "good", + "luck", + "ma’am", + "ok", + "respect", + "salute", + "saluting", + "sir", + "troops", + "yes" + ], + "unicode": "ðŸŦĄ" + }, + { + "group": 0, + "hexcode": "1F910", + "label": "zipper-mouth face", + "order": 38, + "tags": [ + "face", + "keep", + "mouth", + "quiet", + "secret", + "shut", + "zip", + "zipper", + "zipper-mouth" + ], + "unicode": "ðŸĪ", + "emoticon": [":z", ":Z"] + }, + { + "group": 0, + "hexcode": "1F928", + "label": "face with raised eyebrow", + "order": 39, + "tags": [ + "disapproval", + "disbelief", + "distrust", + "emoji", + "eyebrow", + "face", + "hmm", + "mild", + "raised", + "skeptic", + "skeptical", + "skepticism", + "surprise", + "what" + ], + "unicode": "ðŸĪĻ" + }, + { + "group": 0, + "hexcode": "1F610", + "label": "neutral face", + "order": 40, + "tags": [ + "awkward", + "blank", + "deadpan", + "expressionless", + "face", + "fine", + "jealous", + "meh", + "neutral", + "oh", + "shade", + "straight", + "unamused", + "unhappy", + "unimpressed", + "whatever" + ], + "unicode": "😐ïļ", + "emoticon": ":|" + }, + { + "group": 0, + "hexcode": "1F611", + "label": "expressionless face", + "order": 41, + "tags": [ + "awkward", + "dead", + "expressionless", + "face", + "fine", + "inexpressive", + "jealous", + "meh", + "not", + "oh", + "omg", + "straight", + "uh", + "unhappy", + "unimpressed", + "whatever" + ], + "unicode": "😑" + }, + { + "group": 0, + "hexcode": "1F636", + "label": "face without mouth", + "order": 42, + "tags": [ + "awkward", + "blank", + "expressionless", + "face", + "mouth", + "mouthless", + "mute", + "quiet", + "secret", + "silence", + "silent", + "speechless" + ], + "unicode": "ðŸ˜ķ", + "emoticon": ":#" + }, + { + "group": 0, + "hexcode": "1FAE5", + "label": "dotted line face", + "order": 43, + "tags": [ + "depressed", + "disappear", + "dotted", + "face", + "hidden", + "hide", + "introvert", + "invisible", + "line", + "meh", + "whatever", + "wtv" + ], + "unicode": "ðŸŦĨ" + }, + { + "group": 0, + "hexcode": "1F636-200D-1F32B-FE0F", + "label": "face in clouds", + "order": 44, + "tags": ["absentminded", "clouds", "face", "fog", "head"], + "unicode": "ðŸ˜ķ‍ðŸŒŦïļ" + }, + { + "group": 0, + "hexcode": "1F60F", + "label": "smirking face", + "order": 46, + "tags": [ + "boss", + "dapper", + "face", + "flirt", + "homie", + "kidding", + "leer", + "shade", + "slick", + "sly", + "smirk", + "smug", + "snicker", + "suave", + "suspicious", + "swag" + ], + "unicode": "😏", + "emoticon": ":j" + }, + { + "group": 0, + "hexcode": "1F612", + "label": "unamused face", + "order": 47, + "tags": [ + "...", + "bored", + "face", + "fine", + "jealous", + "jel", + "jelly", + "pissed", + "smh", + "ugh", + "uhh", + "unamused", + "unhappy", + "weird", + "whatever" + ], + "unicode": "😒", + "emoticon": ":?" + }, + { + "group": 0, + "hexcode": "1F644", + "label": "face with rolling eyes", + "order": 48, + "tags": [ + "eyeroll", + "eyes", + "face", + "rolling", + "shade", + "ugh", + "whatever" + ], + "unicode": "🙄" + }, + { + "group": 0, + "hexcode": "1F62C", + "label": "grimacing face", + "order": 49, + "tags": [ + "awk", + "awkward", + "dentist", + "face", + "grimace", + "grimacing", + "grinning", + "smile", + "smiling" + ], + "unicode": "😎", + "emoticon": "8D" + }, + { + "group": 0, + "hexcode": "1F62E-200D-1F4A8", + "label": "face exhaling", + "order": 50, + "tags": [ + "blow", + "blowing", + "exhale", + "exhaling", + "exhausted", + "face", + "gasp", + "groan", + "relief", + "sigh", + "smiley", + "smoke", + "whisper", + "whistle" + ], + "unicode": "ðŸ˜Ū‍ðŸ’Ļ" + }, + { + "group": 0, + "hexcode": "1F925", + "label": "lying face", + "order": 51, + "tags": ["face", "liar", "lie", "lying", "pinocchio"], + "unicode": "ðŸĪĨ" + }, + { + "group": 0, + "hexcode": "1FAE8", + "label": "shaking face", + "order": 52, + "tags": [ + "crazy", + "daze", + "earthquake", + "face", + "omg", + "panic", + "shaking", + "shock", + "surprise", + "vibrate", + "whoa", + "wow" + ], + "unicode": "ðŸŦĻ" + }, + { + "group": 0, + "hexcode": "1F642-200D-2194-FE0F", + "label": "head shaking horizontally", + "order": 53, + "tags": ["head", "horizontally", "no", "shake", "shaking"], + "unicode": "🙂‍↔ïļ" + }, + { + "group": 0, + "hexcode": "1F642-200D-2195-FE0F", + "label": "head shaking vertically", + "order": 55, + "tags": ["head", "nod", "shaking", "vertically", "yes"], + "unicode": "🙂‍↕ïļ" + }, + { + "group": 0, + "hexcode": "1F60C", + "label": "relieved face", + "order": 57, + "tags": ["calm", "face", "peace", "relief", "relieved", "zen"], + "unicode": "😌" + }, + { + "group": 0, + "hexcode": "1F614", + "label": "pensive face", + "order": 58, + "tags": [ + "awful", + "bored", + "dejected", + "died", + "disappointed", + "face", + "losing", + "lost", + "pensive", + "sad", + "sucks" + ], + "unicode": "😔" + }, + { + "group": 0, + "hexcode": "1F62A", + "label": "sleepy face", + "order": 59, + "tags": [ + "crying", + "face", + "good", + "night", + "sad", + "sleep", + "sleeping", + "sleepy", + "tired" + ], + "unicode": "😊" + }, + { + "group": 0, + "hexcode": "1F924", + "label": "drooling face", + "order": 60, + "tags": ["drooling", "face"], + "unicode": "ðŸĪĪ" + }, + { + "group": 0, + "hexcode": "1F634", + "label": "sleeping face", + "order": 61, + "tags": [ + "bed", + "bedtime", + "face", + "good", + "goodnight", + "nap", + "night", + "sleep", + "sleeping", + "tired", + "whatever", + "yawn", + "zzz" + ], + "unicode": "ðŸ˜ī" + }, + { + "group": 0, + "hexcode": "1FAE9", + "label": "face with bags under eyes", + "order": 62, + "tags": [ + "bags", + "bored", + "exhausted", + "eyes", + "face", + "fatigued", + "late", + "sleepy", + "tired", + "weary" + ], + "unicode": "ðŸŦĐ" + }, + { + "group": 0, + "hexcode": "1F637", + "label": "face with medical mask", + "order": 63, + "tags": [ + "cold", + "dentist", + "dermatologist", + "doctor", + "dr", + "face", + "germs", + "mask", + "medical", + "medicine", + "sick" + ], + "unicode": "😷" + }, + { + "group": 0, + "hexcode": "1F912", + "label": "face with thermometer", + "order": 64, + "tags": ["face", "ill", "sick", "thermometer"], + "unicode": "ðŸĪ’" + }, + { + "group": 0, + "hexcode": "1F915", + "label": "face with head-bandage", + "order": 65, + "tags": ["bandage", "face", "head-bandage", "hurt", "injury", "ouch"], + "unicode": "ðŸĪ•" + }, + { + "group": 0, + "hexcode": "1F922", + "label": "nauseated face", + "order": 66, + "tags": ["face", "gross", "nasty", "nauseated", "sick", "vomit"], + "unicode": "ðŸĪĒ", + "emoticon": "%(" + }, + { + "group": 0, + "hexcode": "1F92E", + "label": "face vomiting", + "order": 67, + "tags": [ + "barf", + "ew", + "face", + "gross", + "puke", + "sick", + "spew", + "throw", + "up", + "vomit", + "vomiting" + ], + "unicode": "ðŸĪŪ" + }, + { + "group": 0, + "hexcode": "1F927", + "label": "sneezing face", + "order": 68, + "tags": [ + "face", + "fever", + "flu", + "gesundheit", + "sick", + "sneeze", + "sneezing" + ], + "unicode": "ðŸĪ§" + }, + { + "group": 0, + "hexcode": "1F975", + "label": "hot face", + "order": 69, + "tags": [ + "dying", + "face", + "feverish", + "heat", + "hot", + "panting", + "red-faced", + "stroke", + "sweating", + "tongue" + ], + "unicode": "ðŸĨĩ" + }, + { + "group": 0, + "hexcode": "1F976", + "label": "cold face", + "order": 70, + "tags": [ + "blue", + "blue-faced", + "cold", + "face", + "freezing", + "frostbite", + "icicles", + "subzero", + "teeth" + ], + "unicode": "ðŸĨķ" + }, + { + "group": 0, + "hexcode": "1F974", + "label": "woozy face", + "order": 71, + "tags": [ + "dizzy", + "drunk", + "eyes", + "face", + "intoxicated", + "mouth", + "tipsy", + "uneven", + "wavy", + "woozy" + ], + "unicode": "ðŸĨī", + "emoticon": ":&" + }, + { + "group": 0, + "hexcode": "1F635", + "label": "face with crossed-out eyes", + "order": 72, + "tags": [ + "crossed-out", + "dead", + "dizzy", + "eyes", + "face", + "feels", + "knocked", + "out", + "sick", + "tired" + ], + "unicode": "ðŸ˜ĩ", + "emoticon": ["xo", "XO"] + }, + { + "group": 0, + "hexcode": "1F635-200D-1F4AB", + "label": "face with spiral eyes", + "order": 73, + "tags": [ + "confused", + "dizzy", + "eyes", + "face", + "hypnotized", + "omg", + "smiley", + "spiral", + "trouble", + "whoa", + "woah", + "woozy" + ], + "unicode": "ðŸ˜ĩ‍ðŸ’Ŧ" + }, + { + "group": 0, + "hexcode": "1F92F", + "label": "exploding head", + "order": 74, + "tags": [ + "blown", + "explode", + "exploding", + "head", + "mind", + "mindblown", + "no", + "shocked", + "way" + ], + "unicode": "ðŸĪŊ" + }, + { + "group": 0, + "hexcode": "1F920", + "label": "cowboy hat face", + "order": 75, + "tags": ["cowboy", "cowgirl", "face", "hat"], + "unicode": "ðŸĪ " + }, + { + "group": 0, + "hexcode": "1F973", + "label": "partying face", + "order": 76, + "tags": [ + "bday", + "birthday", + "celebrate", + "celebration", + "excited", + "face", + "happy", + "hat", + "hooray", + "horn", + "party", + "partying" + ], + "unicode": "ðŸĨģ" + }, + { + "group": 0, + "hexcode": "1F978", + "label": "disguised face", + "order": 77, + "tags": [ + "disguise", + "eyebrow", + "face", + "glasses", + "incognito", + "moustache", + "mustache", + "nose", + "person", + "spy", + "tache", + "tash" + ], + "unicode": "ðŸĨļ" + }, + { + "group": 0, + "hexcode": "1F60E", + "label": "smiling face with sunglasses", + "order": 78, + "tags": [ + "awesome", + "beach", + "bright", + "bro", + "chilling", + "cool", + "face", + "rad", + "relaxed", + "shades", + "slay", + "smile", + "style", + "sunglasses", + "swag", + "win" + ], + "unicode": "😎", + "emoticon": "8)" + }, + { + "group": 0, + "hexcode": "1F913", + "label": "nerd face", + "order": 79, + "tags": [ + "brainy", + "clever", + "expert", + "face", + "geek", + "gifted", + "glasses", + "intelligent", + "nerd", + "smart" + ], + "unicode": "ðŸĪ“", + "emoticon": ":B" + }, + { + "group": 0, + "hexcode": "1F9D0", + "label": "face with monocle", + "order": 80, + "tags": [ + "classy", + "face", + "fancy", + "monocle", + "rich", + "stuffy", + "wealthy" + ], + "unicode": "🧐" + }, + { + "group": 0, + "hexcode": "1F615", + "label": "confused face", + "order": 81, + "tags": [ + "befuddled", + "confused", + "confusing", + "dunno", + "face", + "frown", + "hm", + "meh", + "not", + "sad", + "sorry", + "sure" + ], + "unicode": "😕", + "emoticon": ":/" + }, + { + "group": 0, + "hexcode": "1FAE4", + "label": "face with diagonal mouth", + "order": 82, + "tags": [ + "confused", + "confusion", + "diagonal", + "disappointed", + "doubt", + "doubtful", + "face", + "frustrated", + "frustration", + "meh", + "mouth", + "skeptical", + "unsure", + "whatever", + "wtv" + ], + "unicode": "ðŸŦĪ" + }, + { + "group": 0, + "hexcode": "1F61F", + "label": "worried face", + "order": 83, + "tags": [ + "anxious", + "butterflies", + "face", + "nerves", + "nervous", + "sad", + "stress", + "stressed", + "surprised", + "worried", + "worry" + ], + "unicode": "😟" + }, + { + "group": 0, + "hexcode": "1F641", + "label": "slightly frowning face", + "order": 84, + "tags": ["face", "frown", "frowning", "sad", "slightly"], + "unicode": "🙁" + }, + { + "group": 0, + "hexcode": "2639", + "label": "frowning face", + "order": 86, + "tags": ["face", "frown", "frowning", "sad"], + "unicode": "â˜đïļ", + "emoticon": ":(" + }, + { + "group": 0, + "hexcode": "1F62E", + "label": "face with open mouth", + "order": 87, + "tags": [ + "believe", + "face", + "forgot", + "mouth", + "omg", + "open", + "shocked", + "surprised", + "sympathy", + "unbelievable", + "unreal", + "whoa", + "wow", + "you" + ], + "unicode": "ðŸ˜Ū" + }, + { + "group": 0, + "hexcode": "1F62F", + "label": "hushed face", + "order": 88, + "tags": [ + "epic", + "face", + "hushed", + "omg", + "stunned", + "surprised", + "whoa", + "woah" + ], + "unicode": "ðŸ˜Ŋ" + }, + { + "group": 0, + "hexcode": "1F632", + "label": "astonished face", + "order": 89, + "tags": [ + "astonished", + "cost", + "face", + "no", + "omg", + "shocked", + "totally", + "way" + ], + "unicode": "ðŸ˜ē", + "emoticon": [":o", ":O"] + }, + { + "group": 0, + "hexcode": "1F633", + "label": "flushed face", + "order": 90, + "tags": [ + "amazed", + "awkward", + "crazy", + "dazed", + "dead", + "disbelief", + "embarrassed", + "face", + "flushed", + "geez", + "heat", + "hot", + "impressed", + "jeez", + "what", + "wow" + ], + "unicode": "ðŸ˜ģ", + "emoticon": ":$" + }, + { + "group": 0, + "hexcode": "1F97A", + "label": "pleading face", + "order": 91, + "tags": [ + "begging", + "big", + "eyes", + "face", + "mercy", + "not", + "pleading", + "please", + "pretty", + "puppy", + "sad", + "why" + ], + "unicode": "ðŸĨš" + }, + { + "group": 0, + "hexcode": "1F979", + "label": "face holding back tears", + "order": 92, + "tags": [ + "admiration", + "aww", + "back", + "cry", + "embarrassed", + "face", + "feelings", + "grateful", + "gratitude", + "holding", + "joy", + "please", + "proud", + "resist", + "sad", + "tears" + ], + "unicode": "ðŸĨđ" + }, + { + "group": 0, + "hexcode": "1F626", + "label": "frowning face with open mouth", + "order": 93, + "tags": [ + "caught", + "face", + "frown", + "frowning", + "guard", + "mouth", + "open", + "scared", + "scary", + "surprise", + "what", + "wow" + ], + "unicode": "ðŸ˜Ķ" + }, + { + "group": 0, + "hexcode": "1F627", + "label": "anguished face", + "order": 94, + "tags": [ + "anguished", + "face", + "forgot", + "scared", + "scary", + "stressed", + "surprise", + "unhappy", + "what", + "wow" + ], + "unicode": "😧", + "emoticon": [":s", ":S"] + }, + { + "group": 0, + "hexcode": "1F628", + "label": "fearful face", + "order": 95, + "tags": [ + "afraid", + "anxious", + "blame", + "face", + "fear", + "fearful", + "scared", + "worried" + ], + "unicode": "ðŸ˜Ļ" + }, + { + "group": 0, + "hexcode": "1F630", + "label": "anxious face with sweat", + "order": 96, + "tags": [ + "anxious", + "blue", + "cold", + "eek", + "face", + "mouth", + "nervous", + "open", + "rushed", + "scared", + "sweat", + "yikes" + ], + "unicode": "😰" + }, + { + "group": 0, + "hexcode": "1F625", + "label": "sad but relieved face", + "order": 97, + "tags": [ + "anxious", + "call", + "close", + "complicated", + "disappointed", + "face", + "not", + "relieved", + "sad", + "sweat", + "time", + "whew" + ], + "unicode": "ðŸ˜Ĩ" + }, + { + "group": 0, + "hexcode": "1F622", + "label": "crying face", + "order": 98, + "tags": [ + "awful", + "cry", + "crying", + "face", + "feels", + "miss", + "sad", + "tear", + "triste", + "unhappy" + ], + "unicode": "ðŸ˜Ē", + "emoticon": ":'(" + }, + { + "group": 0, + "hexcode": "1F62D", + "label": "loudly crying face", + "order": 99, + "tags": [ + "bawling", + "cry", + "crying", + "face", + "loudly", + "sad", + "sob", + "tear", + "tears", + "unhappy" + ], + "unicode": "😭", + "emoticon": ":'o" + }, + { + "group": 0, + "hexcode": "1F631", + "label": "face screaming in fear", + "order": 100, + "tags": [ + "epic", + "face", + "fear", + "fearful", + "munch", + "scared", + "scream", + "screamer", + "screaming", + "shocked", + "surprised", + "woah" + ], + "unicode": "ðŸ˜ą", + "emoticon": "Dx" + }, + { + "group": 0, + "hexcode": "1F616", + "label": "confounded face", + "order": 101, + "tags": [ + "annoyed", + "confounded", + "confused", + "cringe", + "distraught", + "face", + "feels", + "frustrated", + "mad", + "sad" + ], + "unicode": "😖", + "emoticon": ["x(", "X("] + }, + { + "group": 0, + "hexcode": "1F623", + "label": "persevering face", + "order": 102, + "tags": [ + "concentrate", + "concentration", + "face", + "focus", + "headache", + "persevere", + "persevering" + ], + "unicode": "ðŸ˜Ģ" + }, + { + "group": 0, + "hexcode": "1F61E", + "label": "disappointed face", + "order": 103, + "tags": [ + "awful", + "blame", + "dejected", + "disappointed", + "face", + "fail", + "losing", + "sad", + "unhappy" + ], + "unicode": "😞" + }, + { + "group": 0, + "hexcode": "1F613", + "label": "downcast face with sweat", + "order": 104, + "tags": [ + "close", + "cold", + "downcast", + "face", + "feels", + "headache", + "nervous", + "sad", + "scared", + "sweat", + "yikes" + ], + "unicode": "😓", + "emoticon": ":<" + }, + { + "group": 0, + "hexcode": "1F629", + "label": "weary face", + "order": 105, + "tags": [ + "crying", + "face", + "fail", + "feels", + "hungry", + "mad", + "nooo", + "sad", + "sleepy", + "tired", + "unhappy", + "weary" + ], + "unicode": "ðŸ˜Đ", + "emoticon": "D:" + }, + { + "group": 0, + "hexcode": "1F62B", + "label": "tired face", + "order": 106, + "tags": ["cost", "face", "feels", "nap", "sad", "sneeze", "tired"], + "unicode": "ðŸ˜Ŧ", + "emoticon": [":c", ":C"] + }, + { + "group": 0, + "hexcode": "1F971", + "label": "yawning face", + "order": 107, + "tags": [ + "bedtime", + "bored", + "face", + "goodnight", + "nap", + "night", + "sleep", + "sleepy", + "tired", + "whatever", + "yawn", + "yawning", + "zzz" + ], + "unicode": "ðŸĨą" + }, + { + "group": 0, + "hexcode": "1F624", + "label": "face with steam from nose", + "order": 108, + "tags": [ + "anger", + "angry", + "face", + "feels", + "fume", + "fuming", + "furious", + "fury", + "mad", + "nose", + "steam", + "triumph", + "unhappy", + "won" + ], + "unicode": "ðŸ˜Ī" + }, + { + "group": 0, + "hexcode": "1F621", + "label": "enraged face", + "order": 109, + "tags": [ + "anger", + "angry", + "enraged", + "face", + "feels", + "mad", + "maddening", + "pouting", + "rage", + "red", + "shade", + "unhappy", + "upset" + ], + "unicode": "ðŸ˜Ą", + "emoticon": ">:/" + }, + { + "group": 0, + "hexcode": "1F620", + "label": "angry face", + "order": 110, + "tags": [ + "anger", + "angry", + "blame", + "face", + "feels", + "frustrated", + "mad", + "maddening", + "rage", + "shade", + "unhappy", + "upset" + ], + "unicode": "😠" + }, + { + "group": 0, + "hexcode": "1F92C", + "label": "face with symbols on mouth", + "order": 111, + "tags": [ + "censor", + "cursing", + "cussing", + "face", + "mad", + "mouth", + "pissed", + "swearing", + "symbols" + ], + "unicode": "ðŸĪŽ", + "emoticon": ":@" + }, + { + "group": 0, + "hexcode": "1F608", + "label": "smiling face with horns", + "order": 112, + "tags": [ + "demon", + "devil", + "evil", + "face", + "fairy", + "fairytale", + "fantasy", + "horns", + "purple", + "shade", + "smile", + "smiling", + "tale" + ], + "unicode": "😈", + "emoticon": ">:)" + }, + { + "group": 0, + "hexcode": "1F47F", + "label": "angry face with horns", + "order": 113, + "tags": [ + "angry", + "demon", + "devil", + "evil", + "face", + "fairy", + "fairytale", + "fantasy", + "horns", + "imp", + "mischievous", + "purple", + "shade", + "tale" + ], + "unicode": "ðŸ‘ŋ", + "emoticon": ">:(" + }, + { + "group": 0, + "hexcode": "1F480", + "label": "skull", + "order": 114, + "tags": [ + "body", + "dead", + "death", + "face", + "fairy", + "fairytale", + "i’m", + "lmao", + "monster", + "tale", + "yolo" + ], + "unicode": "💀" + }, + { + "group": 0, + "hexcode": "2620", + "label": "skull and crossbones", + "order": 116, + "tags": [ + "bone", + "crossbones", + "dead", + "death", + "face", + "monster", + "skull" + ], + "unicode": "☠ïļ" + }, + { + "group": 0, + "hexcode": "1F4A9", + "label": "pile of poo", + "order": 117, + "tags": [ + "bs", + "comic", + "doo", + "dung", + "face", + "fml", + "monster", + "pile", + "poo", + "poop", + "smelly", + "smh", + "stink", + "stinks", + "stinky", + "turd" + ], + "unicode": "ðŸ’Đ" + }, + { + "group": 0, + "hexcode": "1F921", + "label": "clown face", + "order": 118, + "tags": ["clown", "face"], + "unicode": "ðŸĪĄ" + }, + { + "group": 0, + "hexcode": "1F479", + "label": "ogre", + "order": 119, + "tags": [ + "creature", + "devil", + "face", + "fairy", + "fairytale", + "fantasy", + "mask", + "monster", + "scary", + "tale" + ], + "unicode": "ðŸ‘đ", + "emoticon": ">0)" + }, + { + "group": 0, + "hexcode": "1F47A", + "label": "goblin", + "order": 120, + "tags": [ + "angry", + "creature", + "face", + "fairy", + "fairytale", + "fantasy", + "mask", + "mean", + "monster", + "tale" + ], + "unicode": "👚" + }, + { + "group": 0, + "hexcode": "1F47B", + "label": "ghost", + "order": 121, + "tags": [ + "boo", + "creature", + "excited", + "face", + "fairy", + "fairytale", + "fantasy", + "halloween", + "haunting", + "monster", + "scary", + "silly", + "tale" + ], + "unicode": "ðŸ‘ŧ" + }, + { + "group": 0, + "hexcode": "1F47D", + "label": "alien", + "order": 122, + "tags": [ + "creature", + "extraterrestrial", + "face", + "fairy", + "fairytale", + "fantasy", + "monster", + "space", + "tale", + "ufo" + ], + "unicode": "ðŸ‘―ïļ" + }, + { + "group": 0, + "hexcode": "1F47E", + "label": "alien monster", + "order": 123, + "tags": [ + "alien", + "creature", + "extraterrestrial", + "face", + "fairy", + "fairytale", + "fantasy", + "game", + "gamer", + "games", + "monster", + "pixelated", + "space", + "tale", + "ufo" + ], + "unicode": "ðŸ‘ū" + }, + { + "group": 0, + "hexcode": "1F916", + "label": "robot", + "order": 124, + "tags": ["face", "monster"], + "unicode": "ðŸĪ–" + }, + { + "group": 0, + "hexcode": "1F63A", + "label": "grinning cat", + "order": 125, + "tags": [ + "animal", + "cat", + "face", + "grinning", + "mouth", + "open", + "smile", + "smiling" + ], + "unicode": "😚" + }, + { + "group": 0, + "hexcode": "1F638", + "label": "grinning cat with smiling eyes", + "order": 126, + "tags": [ + "animal", + "cat", + "eye", + "eyes", + "face", + "grin", + "grinning", + "smile", + "smiling" + ], + "unicode": "ðŸ˜ļ" + }, + { + "group": 0, + "hexcode": "1F639", + "label": "cat with tears of joy", + "order": 127, + "tags": [ + "animal", + "cat", + "face", + "joy", + "laugh", + "laughing", + "lol", + "tear", + "tears" + ], + "unicode": "ðŸ˜đ" + }, + { + "group": 0, + "hexcode": "1F63B", + "label": "smiling cat with heart-eyes", + "order": 128, + "tags": [ + "animal", + "cat", + "eye", + "face", + "heart", + "heart-eyes", + "love", + "smile", + "smiling" + ], + "unicode": "ðŸ˜ŧ" + }, + { + "group": 0, + "hexcode": "1F63C", + "label": "cat with wry smile", + "order": 129, + "tags": ["animal", "cat", "face", "ironic", "smile", "wry"], + "unicode": "😞" + }, + { + "group": 0, + "hexcode": "1F63D", + "label": "kissing cat", + "order": 130, + "tags": [ + "animal", + "cat", + "closed", + "eye", + "eyes", + "face", + "kiss", + "kissing" + ], + "unicode": "ðŸ˜―", + "emoticon": ":3" + }, + { + "group": 0, + "hexcode": "1F640", + "label": "weary cat", + "order": 131, + "tags": ["animal", "cat", "face", "oh", "surprised", "weary"], + "unicode": "🙀" + }, + { + "group": 0, + "hexcode": "1F63F", + "label": "crying cat", + "order": 132, + "tags": ["animal", "cat", "cry", "crying", "face", "sad", "tear"], + "unicode": "ðŸ˜ŋ" + }, + { + "group": 0, + "hexcode": "1F63E", + "label": "pouting cat", + "order": 133, + "tags": ["animal", "cat", "face", "pouting"], + "unicode": "ðŸ˜ū" + }, + { + "group": 0, + "hexcode": "1F648", + "label": "see-no-evil monkey", + "order": 134, + "tags": [ + "embarrassed", + "evil", + "face", + "forbidden", + "forgot", + "gesture", + "hide", + "monkey", + "no", + "omg", + "prohibited", + "scared", + "secret", + "smh", + "watch" + ], + "unicode": "🙈" + }, + { + "group": 0, + "hexcode": "1F649", + "label": "hear-no-evil monkey", + "order": 135, + "tags": [ + "animal", + "ears", + "evil", + "face", + "forbidden", + "gesture", + "hear", + "listen", + "monkey", + "no", + "not", + "prohibited", + "secret", + "shh", + "tmi" + ], + "unicode": "🙉" + }, + { + "group": 0, + "hexcode": "1F64A", + "label": "speak-no-evil monkey", + "order": 136, + "tags": [ + "animal", + "evil", + "face", + "forbidden", + "gesture", + "monkey", + "no", + "not", + "oops", + "prohibited", + "quiet", + "secret", + "speak", + "stealth" + ], + "unicode": "🙊" + }, + { + "group": 0, + "hexcode": "1F48C", + "label": "love letter", + "order": 137, + "tags": ["heart", "letter", "love", "mail", "romance", "valentine"], + "unicode": "💌" + }, + { + "group": 0, + "hexcode": "1F498", + "label": "heart with arrow", + "order": 138, + "tags": [ + "143", + "adorbs", + "arrow", + "cupid", + "date", + "emotion", + "heart", + "ily", + "love", + "romance", + "valentine" + ], + "unicode": "💘" + }, + { + "group": 0, + "hexcode": "1F49D", + "label": "heart with ribbon", + "order": 139, + "tags": [ + "143", + "anniversary", + "emotion", + "heart", + "ily", + "kisses", + "ribbon", + "valentine", + "xoxo" + ], + "unicode": "💝" + }, + { + "group": 0, + "hexcode": "1F496", + "label": "sparkling heart", + "order": 140, + "tags": [ + "143", + "emotion", + "excited", + "good", + "heart", + "ily", + "kisses", + "morning", + "night", + "sparkle", + "sparkling", + "xoxo" + ], + "unicode": "💖" + }, + { + "group": 0, + "hexcode": "1F497", + "label": "growing heart", + "order": 141, + "tags": [ + "143", + "emotion", + "excited", + "growing", + "heart", + "heartpulse", + "ily", + "kisses", + "muah", + "nervous", + "pulse", + "xoxo" + ], + "unicode": "💗" + }, + { + "group": 0, + "hexcode": "1F493", + "label": "beating heart", + "order": 142, + "tags": [ + "143", + "beating", + "cardio", + "emotion", + "heart", + "heartbeat", + "ily", + "love", + "pulsating", + "pulse" + ], + "unicode": "💓" + }, + { + "group": 0, + "hexcode": "1F49E", + "label": "revolving hearts", + "order": 143, + "tags": [ + "143", + "adorbs", + "anniversary", + "emotion", + "heart", + "hearts", + "revolving" + ], + "unicode": "💞" + }, + { + "group": 0, + "hexcode": "1F495", + "label": "two hearts", + "order": 144, + "tags": [ + "143", + "anniversary", + "date", + "dating", + "emotion", + "heart", + "hearts", + "ily", + "kisses", + "love", + "loving", + "two", + "xoxo" + ], + "unicode": "💕" + }, + { + "group": 0, + "hexcode": "1F49F", + "label": "heart decoration", + "order": 145, + "tags": [ + "143", + "decoration", + "emotion", + "heart", + "hearth", + "purple", + "white" + ], + "unicode": "💟" + }, + { + "group": 0, + "hexcode": "2763", + "label": "heart exclamation", + "order": 147, + "tags": ["exclamation", "heart", "heavy", "mark", "punctuation"], + "unicode": "âĢïļ" + }, + { + "group": 0, + "hexcode": "1F494", + "label": "broken heart", + "order": 148, + "tags": [ + "break", + "broken", + "crushed", + "emotion", + "heart", + "heartbroken", + "lonely", + "sad" + ], + "unicode": "💔", + "emoticon": "", + "skins": [ + { + "group": 1, + "hexcode": "1F9D9-1F3FB-200D-2642-FE0F", + "label": "man mage: light skin tone", + "order": 1736, + "unicode": "🧙ðŸŧ‍♂ïļ" + }, + { + "group": 1, + "hexcode": "1F9D9-1F3FC-200D-2642-FE0F", + "label": "man mage: medium-light skin tone", + "order": 1738, + "unicode": "🧙🏞‍♂ïļ" + }, + { + "group": 1, + "hexcode": "1F9D9-1F3FD-200D-2642-FE0F", + "label": "man mage: medium skin tone", + "order": 1740, + "unicode": "ðŸ§™ðŸ―â€â™‚ïļ" + }, + { + "group": 1, + "hexcode": "1F9D9-1F3FE-200D-2642-FE0F", + "label": "man mage: medium-dark skin tone", + "order": 1742, + "unicode": "🧙ðŸū‍♂ïļ" + }, + { + "group": 1, + "hexcode": "1F9D9-1F3FF-200D-2642-FE0F", + "label": "man mage: dark skin tone", + "order": 1744, + "unicode": "🧙ðŸŋ‍♂ïļ" + } + ] + }, + { + "group": 1, + "hexcode": "1F9D9-200D-2640-FE0F", + "label": "woman mage", + "order": 1746, + "tags": [ + "fantasy", + "mage", + "magic", + "play", + "sorcerer", + "sorceress", + "sorcery", + "spell", + "summon", + "witch", + "wizard", + "woman" + ], + "unicode": "🧙‍♀ïļ", + "skins": [ + { + "group": 1, + "hexcode": "1F9D9-1F3FB-200D-2640-FE0F", + "label": "woman mage: light skin tone", + "order": 1748, + "unicode": "🧙ðŸŧ‍♀ïļ" + }, + { + "group": 1, + "hexcode": "1F9D9-1F3FC-200D-2640-FE0F", + "label": "woman mage: medium-light skin tone", + "order": 1750, + "unicode": "🧙🏞‍♀ïļ" + }, + { + "group": 1, + "hexcode": "1F9D9-1F3FD-200D-2640-FE0F", + "label": "woman mage: medium skin tone", + "order": 1752, + "unicode": "ðŸ§™ðŸ―â€â™€ïļ" + }, + { + "group": 1, + "hexcode": "1F9D9-1F3FE-200D-2640-FE0F", + "label": "woman mage: medium-dark skin tone", + "order": 1754, + "unicode": "🧙ðŸū‍♀ïļ" + }, + { + "group": 1, + "hexcode": "1F9D9-1F3FF-200D-2640-FE0F", + "label": "woman mage: dark skin tone", + "order": 1756, + "unicode": "🧙ðŸŋ‍♀ïļ" + } + ] + }, + { + "group": 1, + "hexcode": "1F9DA", + "label": "fairy", + "order": 1758, + "tags": [ + "fairytale", + "fantasy", + "myth", + "person", + "pixie", + "tale", + "wings" + ], + "unicode": "🧚", + "skins": [ + { + "group": 1, + "hexcode": "1F9DA-1F3FB", + "label": "fairy: light skin tone", + "order": 1759, + "unicode": "🧚ðŸŧ" + }, + { + "group": 1, + "hexcode": "1F9DA-1F3FC", + "label": "fairy: medium-light skin tone", + "order": 1760, + "unicode": "🧚🏞" + }, + { + "group": 1, + "hexcode": "1F9DA-1F3FD", + "label": "fairy: medium skin tone", + "order": 1761, + "unicode": "ðŸ§šðŸ―" + }, + { + "group": 1, + "hexcode": "1F9DA-1F3FE", + "label": "fairy: medium-dark skin tone", + "order": 1762, + "unicode": "🧚ðŸū" + }, + { + "group": 1, + "hexcode": "1F9DA-1F3FF", + "label": "fairy: dark skin tone", + "order": 1763, + "unicode": "🧚ðŸŋ" + } + ] + }, + { + "group": 1, + "hexcode": "1F9DA-200D-2642-FE0F", + "label": "man fairy", + "order": 1764, + "tags": [ + "fairy", + "fairytale", + "fantasy", + "man", + "myth", + "oberon", + "person", + "pixie", + "puck", + "tale", + "wings" + ], + "unicode": "🧚‍♂ïļ", + "skins": [ + { + "group": 1, + "hexcode": "1F9DA-1F3FB-200D-2642-FE0F", + "label": "man fairy: light skin tone", + "order": 1766, + "unicode": "🧚ðŸŧ‍♂ïļ" + }, + { + "group": 1, + "hexcode": "1F9DA-1F3FC-200D-2642-FE0F", + "label": "man fairy: medium-light skin tone", + "order": 1768, + "unicode": "🧚🏞‍♂ïļ" + }, + { + "group": 1, + "hexcode": "1F9DA-1F3FD-200D-2642-FE0F", + "label": "man fairy: medium skin tone", + "order": 1770, + "unicode": "ðŸ§šðŸ―â€â™‚ïļ" + }, + { + "group": 1, + "hexcode": "1F9DA-1F3FE-200D-2642-FE0F", + "label": "man fairy: medium-dark skin tone", + "order": 1772, + "unicode": "🧚ðŸū‍♂ïļ" + }, + { + "group": 1, + "hexcode": "1F9DA-1F3FF-200D-2642-FE0F", + "label": "man fairy: dark skin tone", + "order": 1774, + "unicode": "🧚ðŸŋ‍♂ïļ" + } + ] + }, + { + "group": 1, + "hexcode": "1F9DA-200D-2640-FE0F", + "label": "woman fairy", + "order": 1776, + "tags": [ + "fairy", + "fairytale", + "fantasy", + "myth", + "person", + "pixie", + "tale", + "titania", + "wings", + "woman" + ], + "unicode": "🧚‍♀ïļ", + "skins": [ + { + "group": 1, + "hexcode": "1F9DA-1F3FB-200D-2640-FE0F", + "label": "woman fairy: light skin tone", + "order": 1778, + "unicode": "🧚ðŸŧ‍♀ïļ" + }, + { + "group": 1, + "hexcode": "1F9DA-1F3FC-200D-2640-FE0F", + "label": "woman fairy: medium-light skin tone", + "order": 1780, + "unicode": "🧚🏞‍♀ïļ" + }, + { + "group": 1, + "hexcode": "1F9DA-1F3FD-200D-2640-FE0F", + "label": "woman fairy: medium skin tone", + "order": 1782, + "unicode": "ðŸ§šðŸ―â€â™€ïļ" + }, + { + "group": 1, + "hexcode": "1F9DA-1F3FE-200D-2640-FE0F", + "label": "woman fairy: medium-dark skin tone", + "order": 1784, + "unicode": "🧚ðŸū‍♀ïļ" + }, + { + "group": 1, + "hexcode": "1F9DA-1F3FF-200D-2640-FE0F", + "label": "woman fairy: dark skin tone", + "order": 1786, + "unicode": "🧚ðŸŋ‍♀ïļ" + } + ] + }, + { + "group": 1, + "hexcode": "1F9DB", + "label": "vampire", + "order": 1788, + "tags": [ + "blood", + "dracula", + "fangs", + "halloween", + "scary", + "supernatural", + "teeth", + "undead" + ], + "unicode": "🧛", + "emoticon": ":E", + "skins": [ + { + "group": 1, + "hexcode": "1F9DB-1F3FB", + "label": "vampire: light skin tone", + "order": 1789, + "unicode": "🧛ðŸŧ" + }, + { + "group": 1, + "hexcode": "1F9DB-1F3FC", + "label": "vampire: medium-light skin tone", + "order": 1790, + "unicode": "🧛🏞" + }, + { + "group": 1, + "hexcode": "1F9DB-1F3FD", + "label": "vampire: medium skin tone", + "order": 1791, + "unicode": "ðŸ§›ðŸ―" + }, + { + "group": 1, + "hexcode": "1F9DB-1F3FE", + "label": "vampire: medium-dark skin tone", + "order": 1792, + "unicode": "🧛ðŸū" + }, + { + "group": 1, + "hexcode": "1F9DB-1F3FF", + "label": "vampire: dark skin tone", + "order": 1793, + "unicode": "🧛ðŸŋ" + } + ] + }, + { + "group": 1, + "hexcode": "1F9DB-200D-2642-FE0F", + "label": "man vampire", + "order": 1794, + "tags": [ + "blood", + "fangs", + "halloween", + "man", + "scary", + "supernatural", + "teeth", + "undead", + "vampire" + ], + "unicode": "🧛‍♂ïļ", + "skins": [ + { + "group": 1, + "hexcode": "1F9DB-1F3FB-200D-2642-FE0F", + "label": "man vampire: light skin tone", + "order": 1796, + "unicode": "🧛ðŸŧ‍♂ïļ" + }, + { + "group": 1, + "hexcode": "1F9DB-1F3FC-200D-2642-FE0F", + "label": "man vampire: medium-light skin tone", + "order": 1798, + "unicode": "🧛🏞‍♂ïļ" + }, + { + "group": 1, + "hexcode": "1F9DB-1F3FD-200D-2642-FE0F", + "label": "man vampire: medium skin tone", + "order": 1800, + "unicode": "ðŸ§›ðŸ―â€â™‚ïļ" + }, + { + "group": 1, + "hexcode": "1F9DB-1F3FE-200D-2642-FE0F", + "label": "man vampire: medium-dark skin tone", + "order": 1802, + "unicode": "🧛ðŸū‍♂ïļ" + }, + { + "group": 1, + "hexcode": "1F9DB-1F3FF-200D-2642-FE0F", + "label": "man vampire: dark skin tone", + "order": 1804, + "unicode": "🧛ðŸŋ‍♂ïļ" + } + ] + }, + { + "group": 1, + "hexcode": "1F9DB-200D-2640-FE0F", + "label": "woman vampire", + "order": 1806, + "tags": [ + "blood", + "fangs", + "halloween", + "scary", + "supernatural", + "teeth", + "undead", + "vampire", + "woman" + ], + "unicode": "🧛‍♀ïļ", + "skins": [ + { + "group": 1, + "hexcode": "1F9DB-1F3FB-200D-2640-FE0F", + "label": "woman vampire: light skin tone", + "order": 1808, + "unicode": "🧛ðŸŧ‍♀ïļ" + }, + { + "group": 1, + "hexcode": "1F9DB-1F3FC-200D-2640-FE0F", + "label": "woman vampire: medium-light skin tone", + "order": 1810, + "unicode": "🧛🏞‍♀ïļ" + }, + { + "group": 1, + "hexcode": "1F9DB-1F3FD-200D-2640-FE0F", + "label": "woman vampire: medium skin tone", + "order": 1812, + "unicode": "ðŸ§›ðŸ―â€â™€ïļ" + }, + { + "group": 1, + "hexcode": "1F9DB-1F3FE-200D-2640-FE0F", + "label": "woman vampire: medium-dark skin tone", + "order": 1814, + "unicode": "🧛ðŸū‍♀ïļ" + }, + { + "group": 1, + "hexcode": "1F9DB-1F3FF-200D-2640-FE0F", + "label": "woman vampire: dark skin tone", + "order": 1816, + "unicode": "🧛ðŸŋ‍♀ïļ" + } + ] + }, + { + "group": 1, + "hexcode": "1F9DC", + "label": "merperson", + "order": 1818, + "tags": [ + "creature", + "fairytale", + "folklore", + "ocean", + "sea", + "siren", + "trident" + ], + "unicode": "🧜", + "skins": [ + { + "group": 1, + "hexcode": "1F9DC-1F3FB", + "label": "merperson: light skin tone", + "order": 1819, + "unicode": "🧜ðŸŧ" + }, + { + "group": 1, + "hexcode": "1F9DC-1F3FC", + "label": "merperson: medium-light skin tone", + "order": 1820, + "unicode": "🧜🏞" + }, + { + "group": 1, + "hexcode": "1F9DC-1F3FD", + "label": "merperson: medium skin tone", + "order": 1821, + "unicode": "ðŸ§œðŸ―" + }, + { + "group": 1, + "hexcode": "1F9DC-1F3FE", + "label": "merperson: medium-dark skin tone", + "order": 1822, + "unicode": "🧜ðŸū" + }, + { + "group": 1, + "hexcode": "1F9DC-1F3FF", + "label": "merperson: dark skin tone", + "order": 1823, + "unicode": "🧜ðŸŋ" + } + ] + }, + { + "group": 1, + "hexcode": "1F9DC-200D-2642-FE0F", + "label": "merman", + "order": 1824, + "tags": [ + "creature", + "fairytale", + "folklore", + "neptune", + "ocean", + "poseidon", + "sea", + "siren", + "trident", + "triton" + ], + "unicode": "🧜‍♂ïļ", + "skins": [ + { + "group": 1, + "hexcode": "1F9DC-1F3FB-200D-2642-FE0F", + "label": "merman: light skin tone", + "order": 1826, + "unicode": "🧜ðŸŧ‍♂ïļ" + }, + { + "group": 1, + "hexcode": "1F9DC-1F3FC-200D-2642-FE0F", + "label": "merman: medium-light skin tone", + "order": 1828, + "unicode": "🧜🏞‍♂ïļ" + }, + { + "group": 1, + "hexcode": "1F9DC-1F3FD-200D-2642-FE0F", + "label": "merman: medium skin tone", + "order": 1830, + "unicode": "ðŸ§œðŸ―â€â™‚ïļ" + }, + { + "group": 1, + "hexcode": "1F9DC-1F3FE-200D-2642-FE0F", + "label": "merman: medium-dark skin tone", + "order": 1832, + "unicode": "🧜ðŸū‍♂ïļ" + }, + { + "group": 1, + "hexcode": "1F9DC-1F3FF-200D-2642-FE0F", + "label": "merman: dark skin tone", + "order": 1834, + "unicode": "🧜ðŸŋ‍♂ïļ" + } + ] + }, + { + "group": 1, + "hexcode": "1F9DC-200D-2640-FE0F", + "label": "mermaid", + "order": 1836, + "tags": [ + "creature", + "fairytale", + "folklore", + "merwoman", + "ocean", + "sea", + "siren", + "trident" + ], + "unicode": "🧜‍♀ïļ", + "skins": [ + { + "group": 1, + "hexcode": "1F9DC-1F3FB-200D-2640-FE0F", + "label": "mermaid: light skin tone", + "order": 1838, + "unicode": "🧜ðŸŧ‍♀ïļ" + }, + { + "group": 1, + "hexcode": "1F9DC-1F3FC-200D-2640-FE0F", + "label": "mermaid: medium-light skin tone", + "order": 1840, + "unicode": "🧜🏞‍♀ïļ" + }, + { + "group": 1, + "hexcode": "1F9DC-1F3FD-200D-2640-FE0F", + "label": "mermaid: medium skin tone", + "order": 1842, + "unicode": "ðŸ§œðŸ―â€â™€ïļ" + }, + { + "group": 1, + "hexcode": "1F9DC-1F3FE-200D-2640-FE0F", + "label": "mermaid: medium-dark skin tone", + "order": 1844, + "unicode": "🧜ðŸū‍♀ïļ" + }, + { + "group": 1, + "hexcode": "1F9DC-1F3FF-200D-2640-FE0F", + "label": "mermaid: dark skin tone", + "order": 1846, + "unicode": "🧜ðŸŋ‍♀ïļ" + } + ] + }, + { + "group": 1, + "hexcode": "1F9DD", + "label": "elf", + "order": 1848, + "tags": [ + "elves", + "enchantment", + "fantasy", + "folklore", + "magic", + "magical", + "myth" + ], + "unicode": "🧝", + "skins": [ + { + "group": 1, + "hexcode": "1F9DD-1F3FB", + "label": "elf: light skin tone", + "order": 1849, + "unicode": "🧝ðŸŧ" + }, + { + "group": 1, + "hexcode": "1F9DD-1F3FC", + "label": "elf: medium-light skin tone", + "order": 1850, + "unicode": "🧝🏞" + }, + { + "group": 1, + "hexcode": "1F9DD-1F3FD", + "label": "elf: medium skin tone", + "order": 1851, + "unicode": "ðŸ§ðŸ―" + }, + { + "group": 1, + "hexcode": "1F9DD-1F3FE", + "label": "elf: medium-dark skin tone", + "order": 1852, + "unicode": "🧝ðŸū" + }, + { + "group": 1, + "hexcode": "1F9DD-1F3FF", + "label": "elf: dark skin tone", + "order": 1853, + "unicode": "🧝ðŸŋ" + } + ] + }, + { + "group": 1, + "hexcode": "1F9DD-200D-2642-FE0F", + "label": "man elf", + "order": 1854, + "tags": [ + "elf", + "elves", + "enchantment", + "fantasy", + "folklore", + "magic", + "magical", + "man", + "myth" + ], + "unicode": "🧝‍♂ïļ", + "skins": [ + { + "group": 1, + "hexcode": "1F9DD-1F3FB-200D-2642-FE0F", + "label": "man elf: light skin tone", + "order": 1856, + "unicode": "🧝ðŸŧ‍♂ïļ" + }, + { + "group": 1, + "hexcode": "1F9DD-1F3FC-200D-2642-FE0F", + "label": "man elf: medium-light skin tone", + "order": 1858, + "unicode": "🧝🏞‍♂ïļ" + }, + { + "group": 1, + "hexcode": "1F9DD-1F3FD-200D-2642-FE0F", + "label": "man elf: medium skin tone", + "order": 1860, + "unicode": "ðŸ§ðŸ―â€â™‚ïļ" + }, + { + "group": 1, + "hexcode": "1F9DD-1F3FE-200D-2642-FE0F", + "label": "man elf: medium-dark skin tone", + "order": 1862, + "unicode": "🧝ðŸū‍♂ïļ" + }, + { + "group": 1, + "hexcode": "1F9DD-1F3FF-200D-2642-FE0F", + "label": "man elf: dark skin tone", + "order": 1864, + "unicode": "🧝ðŸŋ‍♂ïļ" + } + ] + }, + { + "group": 1, + "hexcode": "1F9DD-200D-2640-FE0F", + "label": "woman elf", + "order": 1866, + "tags": [ + "elf", + "elves", + "enchantment", + "fantasy", + "folklore", + "magic", + "magical", + "myth", + "woman" + ], + "unicode": "🧝‍♀ïļ", + "skins": [ + { + "group": 1, + "hexcode": "1F9DD-1F3FB-200D-2640-FE0F", + "label": "woman elf: light skin tone", + "order": 1868, + "unicode": "🧝ðŸŧ‍♀ïļ" + }, + { + "group": 1, + "hexcode": "1F9DD-1F3FC-200D-2640-FE0F", + "label": "woman elf: medium-light skin tone", + "order": 1870, + "unicode": "🧝🏞‍♀ïļ" + }, + { + "group": 1, + "hexcode": "1F9DD-1F3FD-200D-2640-FE0F", + "label": "woman elf: medium skin tone", + "order": 1872, + "unicode": "ðŸ§ðŸ―â€â™€ïļ" + }, + { + "group": 1, + "hexcode": "1F9DD-1F3FE-200D-2640-FE0F", + "label": "woman elf: medium-dark skin tone", + "order": 1874, + "unicode": "🧝ðŸū‍♀ïļ" + }, + { + "group": 1, + "hexcode": "1F9DD-1F3FF-200D-2640-FE0F", + "label": "woman elf: dark skin tone", + "order": 1876, + "unicode": "🧝ðŸŋ‍♀ïļ" + } + ] + }, + { + "group": 1, + "hexcode": "1F9DE", + "label": "genie", + "order": 1878, + "tags": ["djinn", "fantasy", "jinn", "lamp", "myth", "rub", "wishes"], + "unicode": "🧞" + }, + { + "group": 1, + "hexcode": "1F9DE-200D-2642-FE0F", + "label": "man genie", + "order": 1879, + "tags": [ + "djinn", + "fantasy", + "genie", + "jinn", + "lamp", + "man", + "myth", + "rub", + "wishes" + ], + "unicode": "🧞‍♂ïļ" + }, + { + "group": 1, + "hexcode": "1F9DE-200D-2640-FE0F", + "label": "woman genie", + "order": 1881, + "tags": [ + "djinn", + "fantasy", + "genie", + "jinn", + "lamp", + "myth", + "rub", + "wishes", + "woman" + ], + "unicode": "🧞‍♀ïļ" + }, + { + "group": 1, + "hexcode": "1F9DF", + "label": "zombie", + "order": 1883, + "tags": [ + "apocalypse", + "dead", + "halloween", + "horror", + "scary", + "undead", + "walking" + ], + "unicode": "🧟", + "emoticon": "8#" + }, + { + "group": 1, + "hexcode": "1F9DF-200D-2642-FE0F", + "label": "man zombie", + "order": 1884, + "tags": [ + "apocalypse", + "dead", + "halloween", + "horror", + "man", + "scary", + "undead", + "walking", + "zombie" + ], + "unicode": "🧟‍♂ïļ" + }, + { + "group": 1, + "hexcode": "1F9DF-200D-2640-FE0F", + "label": "woman zombie", + "order": 1886, + "tags": [ + "apocalypse", + "dead", + "halloween", + "horror", + "scary", + "undead", + "walking", + "woman", + "zombie" + ], + "unicode": "🧟‍♀ïļ" + }, + { + "group": 1, + "hexcode": "1F9CC", + "label": "troll", + "order": 1888, + "tags": ["fairy", "fantasy", "monster", "tale", "trolling"], + "unicode": "🧌" + }, + { + "group": 1, + "hexcode": "1F486", + "label": "person getting massage", + "order": 1889, + "tags": [ + "face", + "getting", + "headache", + "massage", + "person", + "relax", + "relaxing", + "salon", + "soothe", + "spa", + "tension", + "therapy", + "treatment" + ], + "unicode": "💆", + "skins": [ + { + "group": 1, + "hexcode": "1F486-1F3FB", + "label": "person getting massage: light skin tone", + "order": 1890, + "unicode": "💆ðŸŧ" + }, + { + "group": 1, + "hexcode": "1F486-1F3FC", + "label": "person getting massage: medium-light skin tone", + "order": 1891, + "unicode": "💆🏞" + }, + { + "group": 1, + "hexcode": "1F486-1F3FD", + "label": "person getting massage: medium skin tone", + "order": 1892, + "unicode": "ðŸ’†ðŸ―" + }, + { + "group": 1, + "hexcode": "1F486-1F3FE", + "label": "person getting massage: medium-dark skin tone", + "order": 1893, + "unicode": "💆ðŸū" + }, + { + "group": 1, + "hexcode": "1F486-1F3FF", + "label": "person getting massage: dark skin tone", + "order": 1894, + "unicode": "💆ðŸŋ" + } + ] + }, + { + "group": 1, + "hexcode": "1F486-200D-2642-FE0F", + "label": "man getting massage", + "order": 1895, + "tags": [ + "face", + "getting", + "headache", + "man", + "massage", + "relax", + "relaxing", + "salon", + "soothe", + "spa", + "tension", + "therapy", + "treatment" + ], + "unicode": "💆‍♂ïļ", + "skins": [ + { + "group": 1, + "hexcode": "1F486-1F3FB-200D-2642-FE0F", + "label": "man getting massage: light skin tone", + "order": 1897, + "unicode": "💆ðŸŧ‍♂ïļ" + }, + { + "group": 1, + "hexcode": "1F486-1F3FC-200D-2642-FE0F", + "label": "man getting massage: medium-light skin tone", + "order": 1899, + "unicode": "💆🏞‍♂ïļ" + }, + { + "group": 1, + "hexcode": "1F486-1F3FD-200D-2642-FE0F", + "label": "man getting massage: medium skin tone", + "order": 1901, + "unicode": "ðŸ’†ðŸ―â€â™‚ïļ" + }, + { + "group": 1, + "hexcode": "1F486-1F3FE-200D-2642-FE0F", + "label": "man getting massage: medium-dark skin tone", + "order": 1903, + "unicode": "💆ðŸū‍♂ïļ" + }, + { + "group": 1, + "hexcode": "1F486-1F3FF-200D-2642-FE0F", + "label": "man getting massage: dark skin tone", + "order": 1905, + "unicode": "💆ðŸŋ‍♂ïļ" + } + ] + }, + { + "group": 1, + "hexcode": "1F486-200D-2640-FE0F", + "label": "woman getting massage", + "order": 1907, + "tags": [ + "face", + "getting", + "headache", + "massage", + "relax", + "relaxing", + "salon", + "soothe", + "spa", + "tension", + "therapy", + "treatment", + "woman" + ], + "unicode": "💆‍♀ïļ", + "skins": [ + { + "group": 1, + "hexcode": "1F486-1F3FB-200D-2640-FE0F", + "label": "woman getting massage: light skin tone", + "order": 1909, + "unicode": "💆ðŸŧ‍♀ïļ" + }, + { + "group": 1, + "hexcode": "1F486-1F3FC-200D-2640-FE0F", + "label": "woman getting massage: medium-light skin tone", + "order": 1911, + "unicode": "💆🏞‍♀ïļ" + }, + { + "group": 1, + "hexcode": "1F486-1F3FD-200D-2640-FE0F", + "label": "woman getting massage: medium skin tone", + "order": 1913, + "unicode": "ðŸ’†ðŸ―â€â™€ïļ" + }, + { + "group": 1, + "hexcode": "1F486-1F3FE-200D-2640-FE0F", + "label": "woman getting massage: medium-dark skin tone", + "order": 1915, + "unicode": "💆ðŸū‍♀ïļ" + }, + { + "group": 1, + "hexcode": "1F486-1F3FF-200D-2640-FE0F", + "label": "woman getting massage: dark skin tone", + "order": 1917, + "unicode": "💆ðŸŋ‍♀ïļ" + } + ] + }, + { + "group": 1, + "hexcode": "1F487", + "label": "person getting haircut", + "order": 1919, + "tags": [ + "barber", + "beauty", + "chop", + "cosmetology", + "cut", + "groom", + "hair", + "haircut", + "parlor", + "person", + "shears", + "style" + ], + "unicode": "💇", + "skins": [ + { + "group": 1, + "hexcode": "1F487-1F3FB", + "label": "person getting haircut: light skin tone", + "order": 1920, + "unicode": "💇ðŸŧ" + }, + { + "group": 1, + "hexcode": "1F487-1F3FC", + "label": "person getting haircut: medium-light skin tone", + "order": 1921, + "unicode": "💇🏞" + }, + { + "group": 1, + "hexcode": "1F487-1F3FD", + "label": "person getting haircut: medium skin tone", + "order": 1922, + "unicode": "ðŸ’‡ðŸ―" + }, + { + "group": 1, + "hexcode": "1F487-1F3FE", + "label": "person getting haircut: medium-dark skin tone", + "order": 1923, + "unicode": "💇ðŸū" + }, + { + "group": 1, + "hexcode": "1F487-1F3FF", + "label": "person getting haircut: dark skin tone", + "order": 1924, + "unicode": "💇ðŸŋ" + } + ] + }, + { + "group": 1, + "hexcode": "1F487-200D-2642-FE0F", + "label": "man getting haircut", + "order": 1925, + "tags": [ + "barber", + "beauty", + "chop", + "cosmetology", + "cut", + "groom", + "hair", + "haircut", + "man", + "parlor", + "person", + "shears", + "style" + ], + "unicode": "💇‍♂ïļ", + "skins": [ + { + "group": 1, + "hexcode": "1F487-1F3FB-200D-2642-FE0F", + "label": "man getting haircut: light skin tone", + "order": 1927, + "unicode": "💇ðŸŧ‍♂ïļ" + }, + { + "group": 1, + "hexcode": "1F487-1F3FC-200D-2642-FE0F", + "label": "man getting haircut: medium-light skin tone", + "order": 1929, + "unicode": "💇🏞‍♂ïļ" + }, + { + "group": 1, + "hexcode": "1F487-1F3FD-200D-2642-FE0F", + "label": "man getting haircut: medium skin tone", + "order": 1931, + "unicode": "ðŸ’‡ðŸ―â€â™‚ïļ" + }, + { + "group": 1, + "hexcode": "1F487-1F3FE-200D-2642-FE0F", + "label": "man getting haircut: medium-dark skin tone", + "order": 1933, + "unicode": "💇ðŸū‍♂ïļ" + }, + { + "group": 1, + "hexcode": "1F487-1F3FF-200D-2642-FE0F", + "label": "man getting haircut: dark skin tone", + "order": 1935, + "unicode": "💇ðŸŋ‍♂ïļ" + } + ] + }, + { + "group": 1, + "hexcode": "1F487-200D-2640-FE0F", + "label": "woman getting haircut", + "order": 1937, + "tags": [ + "barber", + "beauty", + "chop", + "cosmetology", + "cut", + "groom", + "hair", + "haircut", + "parlor", + "person", + "shears", + "style", + "woman" + ], + "unicode": "💇‍♀ïļ", + "skins": [ + { + "group": 1, + "hexcode": "1F487-1F3FB-200D-2640-FE0F", + "label": "woman getting haircut: light skin tone", + "order": 1939, + "unicode": "💇ðŸŧ‍♀ïļ" + }, + { + "group": 1, + "hexcode": "1F487-1F3FC-200D-2640-FE0F", + "label": "woman getting haircut: medium-light skin tone", + "order": 1941, + "unicode": "💇🏞‍♀ïļ" + }, + { + "group": 1, + "hexcode": "1F487-1F3FD-200D-2640-FE0F", + "label": "woman getting haircut: medium skin tone", + "order": 1943, + "unicode": "ðŸ’‡ðŸ―â€â™€ïļ" + }, + { + "group": 1, + "hexcode": "1F487-1F3FE-200D-2640-FE0F", + "label": "woman getting haircut: medium-dark skin tone", + "order": 1945, + "unicode": "💇ðŸū‍♀ïļ" + }, + { + "group": 1, + "hexcode": "1F487-1F3FF-200D-2640-FE0F", + "label": "woman getting haircut: dark skin tone", + "order": 1947, + "unicode": "💇ðŸŋ‍♀ïļ" + } + ] + }, + { + "group": 1, + "hexcode": "1F6B6", + "label": "person walking", + "order": 1949, + "tags": [ + "amble", + "gait", + "hike", + "man", + "pace", + "pedestrian", + "person", + "stride", + "stroll", + "walk", + "walking" + ], + "unicode": "ðŸšķ", + "skins": [ + { + "group": 1, + "hexcode": "1F6B6-1F3FB", + "label": "person walking: light skin tone", + "order": 1950, + "unicode": "ðŸšķðŸŧ" + }, + { + "group": 1, + "hexcode": "1F6B6-1F3FC", + "label": "person walking: medium-light skin tone", + "order": 1951, + "unicode": "ðŸšķ🏞" + }, + { + "group": 1, + "hexcode": "1F6B6-1F3FD", + "label": "person walking: medium skin tone", + "order": 1952, + "unicode": "ðŸšķðŸ―" + }, + { + "group": 1, + "hexcode": "1F6B6-1F3FE", + "label": "person walking: medium-dark skin tone", + "order": 1953, + "unicode": "ðŸšķðŸū" + }, + { + "group": 1, + "hexcode": "1F6B6-1F3FF", + "label": "person walking: dark skin tone", + "order": 1954, + "unicode": "ðŸšķðŸŋ" + } + ] + }, + { + "group": 1, + "hexcode": "1F6B6-200D-2642-FE0F", + "label": "man walking", + "order": 1955, + "tags": [ + "amble", + "gait", + "hike", + "man", + "pace", + "pedestrian", + "stride", + "stroll", + "walk", + "walking" + ], + "unicode": "ðŸšķ‍♂ïļ", + "skins": [ + { + "group": 1, + "hexcode": "1F6B6-1F3FB-200D-2642-FE0F", + "label": "man walking: light skin tone", + "order": 1957, + "unicode": "ðŸšķðŸŧ‍♂ïļ" + }, + { + "group": 1, + "hexcode": "1F6B6-1F3FC-200D-2642-FE0F", + "label": "man walking: medium-light skin tone", + "order": 1959, + "unicode": "ðŸšķ🏞‍♂ïļ" + }, + { + "group": 1, + "hexcode": "1F6B6-1F3FD-200D-2642-FE0F", + "label": "man walking: medium skin tone", + "order": 1961, + "unicode": "ðŸšķðŸ―â€â™‚ïļ" + }, + { + "group": 1, + "hexcode": "1F6B6-1F3FE-200D-2642-FE0F", + "label": "man walking: medium-dark skin tone", + "order": 1963, + "unicode": "ðŸšķðŸū‍♂ïļ" + }, + { + "group": 1, + "hexcode": "1F6B6-1F3FF-200D-2642-FE0F", + "label": "man walking: dark skin tone", + "order": 1965, + "unicode": "ðŸšķðŸŋ‍♂ïļ" + } + ] + }, + { + "group": 1, + "hexcode": "1F6B6-200D-2640-FE0F", + "label": "woman walking", + "order": 1967, + "tags": [ + "amble", + "gait", + "hike", + "man", + "pace", + "pedestrian", + "stride", + "stroll", + "walk", + "walking", + "woman" + ], + "unicode": "ðŸšķ‍♀ïļ", + "skins": [ + { + "group": 1, + "hexcode": "1F6B6-1F3FB-200D-2640-FE0F", + "label": "woman walking: light skin tone", + "order": 1969, + "unicode": "ðŸšķðŸŧ‍♀ïļ" + }, + { + "group": 1, + "hexcode": "1F6B6-1F3FC-200D-2640-FE0F", + "label": "woman walking: medium-light skin tone", + "order": 1971, + "unicode": "ðŸšķ🏞‍♀ïļ" + }, + { + "group": 1, + "hexcode": "1F6B6-1F3FD-200D-2640-FE0F", + "label": "woman walking: medium skin tone", + "order": 1973, + "unicode": "ðŸšķðŸ―â€â™€ïļ" + }, + { + "group": 1, + "hexcode": "1F6B6-1F3FE-200D-2640-FE0F", + "label": "woman walking: medium-dark skin tone", + "order": 1975, + "unicode": "ðŸšķðŸū‍♀ïļ" + }, + { + "group": 1, + "hexcode": "1F6B6-1F3FF-200D-2640-FE0F", + "label": "woman walking: dark skin tone", + "order": 1977, + "unicode": "ðŸšķðŸŋ‍♀ïļ" + } + ] + }, + { + "group": 1, + "hexcode": "1F6B6-200D-27A1-FE0F", + "label": "person walking facing right", + "order": 1979, + "tags": [ + "amble", + "gait", + "hike", + "man", + "pace", + "pedestrian", + "person", + "stride", + "stroll", + "walk", + "walking" + ], + "unicode": "ðŸšķ‍➡ïļ", + "skins": [ + { + "group": 1, + "hexcode": "1F6B6-1F3FB-200D-27A1-FE0F", + "label": "person walking facing right", + "order": 1981, + "unicode": "ðŸšķðŸŧ‍➡ïļ" + }, + { + "group": 1, + "hexcode": "1F6B6-1F3FC-200D-27A1-FE0F", + "label": "person walking facing right", + "order": 1983, + "unicode": "ðŸšķðŸžâ€âžĄïļ" + }, + { + "group": 1, + "hexcode": "1F6B6-1F3FD-200D-27A1-FE0F", + "label": "person walking facing right", + "order": 1985, + "unicode": "ðŸšķðŸ―â€âžĄïļ" + }, + { + "group": 1, + "hexcode": "1F6B6-1F3FE-200D-27A1-FE0F", + "label": "person walking facing right", + "order": 1987, + "unicode": "ðŸšķðŸū‍➡ïļ" + }, + { + "group": 1, + "hexcode": "1F6B6-1F3FF-200D-27A1-FE0F", + "label": "person walking facing right", + "order": 1989, + "unicode": "ðŸšķðŸŋ‍➡ïļ" + } + ] + }, + { + "group": 1, + "hexcode": "1F6B6-200D-2640-FE0F-200D-27A1-FE0F", + "label": "woman walking facing right", + "order": 1991, + "tags": [ + "amble", + "gait", + "hike", + "man", + "pace", + "pedestrian", + "stride", + "stroll", + "walk", + "walking", + "woman" + ], + "unicode": "ðŸšķ‍♀ïļâ€âžĄïļ", + "skins": [ + { + "group": 1, + "hexcode": "1F6B6-1F3FB-200D-2640-FE0F-200D-27A1-FE0F", + "label": "woman walking facing right", + "order": 1995, + "unicode": "ðŸšķðŸŧ‍♀ïļâ€âžĄïļ" + }, + { + "group": 1, + "hexcode": "1F6B6-1F3FC-200D-2640-FE0F-200D-27A1-FE0F", + "label": "woman walking facing right", + "order": 1999, + "unicode": "ðŸšķ🏞‍♀ïļâ€âžĄïļ" + }, + { + "group": 1, + "hexcode": "1F6B6-1F3FD-200D-2640-FE0F-200D-27A1-FE0F", + "label": "woman walking facing right", + "order": 2003, + "unicode": "ðŸšķðŸ―â€â™€ïļâ€âžĄïļ" + }, + { + "group": 1, + "hexcode": "1F6B6-1F3FE-200D-2640-FE0F-200D-27A1-FE0F", + "label": "woman walking facing right", + "order": 2007, + "unicode": "ðŸšķðŸū‍♀ïļâ€âžĄïļ" + }, + { + "group": 1, + "hexcode": "1F6B6-1F3FF-200D-2640-FE0F-200D-27A1-FE0F", + "label": "woman walking facing right", + "order": 2011, + "unicode": "ðŸšķðŸŋ‍♀ïļâ€âžĄïļ" + } + ] + }, + { + "group": 1, + "hexcode": "1F6B6-200D-2642-FE0F-200D-27A1-FE0F", + "label": "man walking facing right", + "order": 2015, + "tags": [ + "amble", + "gait", + "hike", + "man", + "pace", + "pedestrian", + "stride", + "stroll", + "walk", + "walking" + ], + "unicode": "ðŸšķ‍♂ïļâ€âžĄïļ", + "skins": [ + { + "group": 1, + "hexcode": "1F6B6-1F3FB-200D-2642-FE0F-200D-27A1-FE0F", + "label": "man walking facing right", + "order": 2019, + "unicode": "ðŸšķðŸŧ‍♂ïļâ€âžĄïļ" + }, + { + "group": 1, + "hexcode": "1F6B6-1F3FC-200D-2642-FE0F-200D-27A1-FE0F", + "label": "man walking facing right", + "order": 2023, + "unicode": "ðŸšķ🏞‍♂ïļâ€âžĄïļ" + }, + { + "group": 1, + "hexcode": "1F6B6-1F3FD-200D-2642-FE0F-200D-27A1-FE0F", + "label": "man walking facing right", + "order": 2027, + "unicode": "ðŸšķðŸ―â€â™‚ïļâ€âžĄïļ" + }, + { + "group": 1, + "hexcode": "1F6B6-1F3FE-200D-2642-FE0F-200D-27A1-FE0F", + "label": "man walking facing right", + "order": 2031, + "unicode": "ðŸšķðŸū‍♂ïļâ€âžĄïļ" + }, + { + "group": 1, + "hexcode": "1F6B6-1F3FF-200D-2642-FE0F-200D-27A1-FE0F", + "label": "man walking facing right", + "order": 2035, + "unicode": "ðŸšķðŸŋ‍♂ïļâ€âžĄïļ" + } + ] + }, + { + "group": 1, + "hexcode": "1F9CD", + "label": "person standing", + "order": 2039, + "tags": ["person", "stand", "standing"], + "unicode": "🧍", + "skins": [ + { + "group": 1, + "hexcode": "1F9CD-1F3FB", + "label": "person standing: light skin tone", + "order": 2040, + "unicode": "🧍ðŸŧ" + }, + { + "group": 1, + "hexcode": "1F9CD-1F3FC", + "label": "person standing: medium-light skin tone", + "order": 2041, + "unicode": "🧍🏞" + }, + { + "group": 1, + "hexcode": "1F9CD-1F3FD", + "label": "person standing: medium skin tone", + "order": 2042, + "unicode": "ðŸ§ðŸ―" + }, + { + "group": 1, + "hexcode": "1F9CD-1F3FE", + "label": "person standing: medium-dark skin tone", + "order": 2043, + "unicode": "🧍ðŸū" + }, + { + "group": 1, + "hexcode": "1F9CD-1F3FF", + "label": "person standing: dark skin tone", + "order": 2044, + "unicode": "🧍ðŸŋ" + } + ] + }, + { + "group": 1, + "hexcode": "1F9CD-200D-2642-FE0F", + "label": "man standing", + "order": 2045, + "tags": ["man", "stand", "standing"], + "unicode": "🧍‍♂ïļ", + "skins": [ + { + "group": 1, + "hexcode": "1F9CD-1F3FB-200D-2642-FE0F", + "label": "man standing: light skin tone", + "order": 2047, + "unicode": "🧍ðŸŧ‍♂ïļ" + }, + { + "group": 1, + "hexcode": "1F9CD-1F3FC-200D-2642-FE0F", + "label": "man standing: medium-light skin tone", + "order": 2049, + "unicode": "🧍🏞‍♂ïļ" + }, + { + "group": 1, + "hexcode": "1F9CD-1F3FD-200D-2642-FE0F", + "label": "man standing: medium skin tone", + "order": 2051, + "unicode": "ðŸ§ðŸ―â€â™‚ïļ" + }, + { + "group": 1, + "hexcode": "1F9CD-1F3FE-200D-2642-FE0F", + "label": "man standing: medium-dark skin tone", + "order": 2053, + "unicode": "🧍ðŸū‍♂ïļ" + }, + { + "group": 1, + "hexcode": "1F9CD-1F3FF-200D-2642-FE0F", + "label": "man standing: dark skin tone", + "order": 2055, + "unicode": "🧍ðŸŋ‍♂ïļ" + } + ] + }, + { + "group": 1, + "hexcode": "1F9CD-200D-2640-FE0F", + "label": "woman standing", + "order": 2057, + "tags": ["stand", "standing", "woman"], + "unicode": "🧍‍♀ïļ", + "skins": [ + { + "group": 1, + "hexcode": "1F9CD-1F3FB-200D-2640-FE0F", + "label": "woman standing: light skin tone", + "order": 2059, + "unicode": "🧍ðŸŧ‍♀ïļ" + }, + { + "group": 1, + "hexcode": "1F9CD-1F3FC-200D-2640-FE0F", + "label": "woman standing: medium-light skin tone", + "order": 2061, + "unicode": "🧍🏞‍♀ïļ" + }, + { + "group": 1, + "hexcode": "1F9CD-1F3FD-200D-2640-FE0F", + "label": "woman standing: medium skin tone", + "order": 2063, + "unicode": "ðŸ§ðŸ―â€â™€ïļ" + }, + { + "group": 1, + "hexcode": "1F9CD-1F3FE-200D-2640-FE0F", + "label": "woman standing: medium-dark skin tone", + "order": 2065, + "unicode": "🧍ðŸū‍♀ïļ" + }, + { + "group": 1, + "hexcode": "1F9CD-1F3FF-200D-2640-FE0F", + "label": "woman standing: dark skin tone", + "order": 2067, + "unicode": "🧍ðŸŋ‍♀ïļ" + } + ] + }, + { + "group": 1, + "hexcode": "1F9CE", + "label": "person kneeling", + "order": 2069, + "tags": ["kneel", "kneeling", "knees", "person"], + "unicode": "🧎", + "skins": [ + { + "group": 1, + "hexcode": "1F9CE-1F3FB", + "label": "person kneeling: light skin tone", + "order": 2070, + "unicode": "🧎ðŸŧ" + }, + { + "group": 1, + "hexcode": "1F9CE-1F3FC", + "label": "person kneeling: medium-light skin tone", + "order": 2071, + "unicode": "🧎🏞" + }, + { + "group": 1, + "hexcode": "1F9CE-1F3FD", + "label": "person kneeling: medium skin tone", + "order": 2072, + "unicode": "ðŸ§ŽðŸ―" + }, + { + "group": 1, + "hexcode": "1F9CE-1F3FE", + "label": "person kneeling: medium-dark skin tone", + "order": 2073, + "unicode": "🧎ðŸū" + }, + { + "group": 1, + "hexcode": "1F9CE-1F3FF", + "label": "person kneeling: dark skin tone", + "order": 2074, + "unicode": "🧎ðŸŋ" + } + ] + }, + { + "group": 1, + "hexcode": "1F9CE-200D-2642-FE0F", + "label": "man kneeling", + "order": 2075, + "tags": ["kneel", "kneeling", "knees", "man"], + "unicode": "🧎‍♂ïļ", + "skins": [ + { + "group": 1, + "hexcode": "1F9CE-1F3FB-200D-2642-FE0F", + "label": "man kneeling: light skin tone", + "order": 2077, + "unicode": "🧎ðŸŧ‍♂ïļ" + }, + { + "group": 1, + "hexcode": "1F9CE-1F3FC-200D-2642-FE0F", + "label": "man kneeling: medium-light skin tone", + "order": 2079, + "unicode": "🧎🏞‍♂ïļ" + }, + { + "group": 1, + "hexcode": "1F9CE-1F3FD-200D-2642-FE0F", + "label": "man kneeling: medium skin tone", + "order": 2081, + "unicode": "ðŸ§ŽðŸ―â€â™‚ïļ" + }, + { + "group": 1, + "hexcode": "1F9CE-1F3FE-200D-2642-FE0F", + "label": "man kneeling: medium-dark skin tone", + "order": 2083, + "unicode": "🧎ðŸū‍♂ïļ" + }, + { + "group": 1, + "hexcode": "1F9CE-1F3FF-200D-2642-FE0F", + "label": "man kneeling: dark skin tone", + "order": 2085, + "unicode": "🧎ðŸŋ‍♂ïļ" + } + ] + }, + { + "group": 1, + "hexcode": "1F9CE-200D-2640-FE0F", + "label": "woman kneeling", + "order": 2087, + "tags": ["kneel", "kneeling", "knees", "woman"], + "unicode": "🧎‍♀ïļ", + "skins": [ + { + "group": 1, + "hexcode": "1F9CE-1F3FB-200D-2640-FE0F", + "label": "woman kneeling: light skin tone", + "order": 2089, + "unicode": "🧎ðŸŧ‍♀ïļ" + }, + { + "group": 1, + "hexcode": "1F9CE-1F3FC-200D-2640-FE0F", + "label": "woman kneeling: medium-light skin tone", + "order": 2091, + "unicode": "🧎🏞‍♀ïļ" + }, + { + "group": 1, + "hexcode": "1F9CE-1F3FD-200D-2640-FE0F", + "label": "woman kneeling: medium skin tone", + "order": 2093, + "unicode": "ðŸ§ŽðŸ―â€â™€ïļ" + }, + { + "group": 1, + "hexcode": "1F9CE-1F3FE-200D-2640-FE0F", + "label": "woman kneeling: medium-dark skin tone", + "order": 2095, + "unicode": "🧎ðŸū‍♀ïļ" + }, + { + "group": 1, + "hexcode": "1F9CE-1F3FF-200D-2640-FE0F", + "label": "woman kneeling: dark skin tone", + "order": 2097, + "unicode": "🧎ðŸŋ‍♀ïļ" + } + ] + }, + { + "group": 1, + "hexcode": "1F9CE-200D-27A1-FE0F", + "label": "person kneeling facing right", + "order": 2099, + "tags": ["kneel", "kneeling", "knees", "person"], + "unicode": "ðŸ§Žâ€âžĄïļ", + "skins": [ + { + "group": 1, + "hexcode": "1F9CE-1F3FB-200D-27A1-FE0F", + "label": "person kneeling facing right", + "order": 2101, + "unicode": "🧎ðŸŧ‍➡ïļ" + }, + { + "group": 1, + "hexcode": "1F9CE-1F3FC-200D-27A1-FE0F", + "label": "person kneeling facing right", + "order": 2103, + "unicode": "ðŸ§ŽðŸžâ€âžĄïļ" + }, + { + "group": 1, + "hexcode": "1F9CE-1F3FD-200D-27A1-FE0F", + "label": "person kneeling facing right", + "order": 2105, + "unicode": "ðŸ§ŽðŸ―â€âžĄïļ" + }, + { + "group": 1, + "hexcode": "1F9CE-1F3FE-200D-27A1-FE0F", + "label": "person kneeling facing right", + "order": 2107, + "unicode": "🧎ðŸū‍➡ïļ" + }, + { + "group": 1, + "hexcode": "1F9CE-1F3FF-200D-27A1-FE0F", + "label": "person kneeling facing right", + "order": 2109, + "unicode": "🧎ðŸŋ‍➡ïļ" + } + ] + }, + { + "group": 1, + "hexcode": "1F9CE-200D-2640-FE0F-200D-27A1-FE0F", + "label": "woman kneeling facing right", + "order": 2111, + "tags": ["kneel", "kneeling", "knees", "woman"], + "unicode": "🧎‍♀ïļâ€âžĄïļ", + "skins": [ + { + "group": 1, + "hexcode": "1F9CE-1F3FB-200D-2640-FE0F-200D-27A1-FE0F", + "label": "woman kneeling facing right", + "order": 2115, + "unicode": "🧎ðŸŧ‍♀ïļâ€âžĄïļ" + }, + { + "group": 1, + "hexcode": "1F9CE-1F3FC-200D-2640-FE0F-200D-27A1-FE0F", + "label": "woman kneeling facing right", + "order": 2119, + "unicode": "🧎🏞‍♀ïļâ€âžĄïļ" + }, + { + "group": 1, + "hexcode": "1F9CE-1F3FD-200D-2640-FE0F-200D-27A1-FE0F", + "label": "woman kneeling facing right", + "order": 2123, + "unicode": "ðŸ§ŽðŸ―â€â™€ïļâ€âžĄïļ" + }, + { + "group": 1, + "hexcode": "1F9CE-1F3FE-200D-2640-FE0F-200D-27A1-FE0F", + "label": "woman kneeling facing right", + "order": 2127, + "unicode": "🧎ðŸū‍♀ïļâ€âžĄïļ" + }, + { + "group": 1, + "hexcode": "1F9CE-1F3FF-200D-2640-FE0F-200D-27A1-FE0F", + "label": "woman kneeling facing right", + "order": 2131, + "unicode": "🧎ðŸŋ‍♀ïļâ€âžĄïļ" + } + ] + }, + { + "group": 1, + "hexcode": "1F9CE-200D-2642-FE0F-200D-27A1-FE0F", + "label": "man kneeling facing right", + "order": 2135, + "tags": ["kneel", "kneeling", "knees", "man"], + "unicode": "🧎‍♂ïļâ€âžĄïļ", + "skins": [ + { + "group": 1, + "hexcode": "1F9CE-1F3FB-200D-2642-FE0F-200D-27A1-FE0F", + "label": "man kneeling facing right", + "order": 2139, + "unicode": "🧎ðŸŧ‍♂ïļâ€âžĄïļ" + }, + { + "group": 1, + "hexcode": "1F9CE-1F3FC-200D-2642-FE0F-200D-27A1-FE0F", + "label": "man kneeling facing right", + "order": 2143, + "unicode": "🧎🏞‍♂ïļâ€âžĄïļ" + }, + { + "group": 1, + "hexcode": "1F9CE-1F3FD-200D-2642-FE0F-200D-27A1-FE0F", + "label": "man kneeling facing right", + "order": 2147, + "unicode": "ðŸ§ŽðŸ―â€â™‚ïļâ€âžĄïļ" + }, + { + "group": 1, + "hexcode": "1F9CE-1F3FE-200D-2642-FE0F-200D-27A1-FE0F", + "label": "man kneeling facing right", + "order": 2151, + "unicode": "🧎ðŸū‍♂ïļâ€âžĄïļ" + }, + { + "group": 1, + "hexcode": "1F9CE-1F3FF-200D-2642-FE0F-200D-27A1-FE0F", + "label": "man kneeling facing right", + "order": 2155, + "unicode": "🧎ðŸŋ‍♂ïļâ€âžĄïļ" + } + ] + }, + { + "group": 1, + "hexcode": "1F9D1-200D-1F9AF", + "label": "person with white cane", + "order": 2159, + "tags": [ + "accessibility", + "blind", + "cane", + "person", + "probing", + "white" + ], + "unicode": "🧑‍ðŸĶŊ", + "skins": [ + { + "group": 1, + "hexcode": "1F9D1-1F3FB-200D-1F9AF", + "label": "person with white cane: light skin tone", + "order": 2160, + "unicode": "🧑ðŸŧ‍ðŸĶŊ" + }, + { + "group": 1, + "hexcode": "1F9D1-1F3FC-200D-1F9AF", + "label": "person with white cane: medium-light skin tone", + "order": 2161, + "unicode": "🧑🏞‍ðŸĶŊ" + }, + { + "group": 1, + "hexcode": "1F9D1-1F3FD-200D-1F9AF", + "label": "person with white cane: medium skin tone", + "order": 2162, + "unicode": "ðŸ§‘ðŸ―â€ðŸĶŊ" + }, + { + "group": 1, + "hexcode": "1F9D1-1F3FE-200D-1F9AF", + "label": "person with white cane: medium-dark skin tone", + "order": 2163, + "unicode": "🧑ðŸū‍ðŸĶŊ" + }, + { + "group": 1, + "hexcode": "1F9D1-1F3FF-200D-1F9AF", + "label": "person with white cane: dark skin tone", + "order": 2164, + "unicode": "🧑ðŸŋ‍ðŸĶŊ" + } + ] + }, + { + "group": 1, + "hexcode": "1F9D1-200D-1F9AF-200D-27A1-FE0F", + "label": "person with white cane facing right", + "order": 2165, + "tags": [ + "accessibility", + "blind", + "cane", + "person", + "probing", + "white" + ], + "unicode": "🧑‍ðŸĶŊ‍➡ïļ", + "skins": [ + { + "group": 1, + "hexcode": "1F9D1-1F3FB-200D-1F9AF-200D-27A1-FE0F", + "label": "person with white cane facing right", + "order": 2167, + "unicode": "🧑ðŸŧ‍ðŸĶŊ‍➡ïļ" + }, + { + "group": 1, + "hexcode": "1F9D1-1F3FC-200D-1F9AF-200D-27A1-FE0F", + "label": "person with white cane facing right", + "order": 2169, + "unicode": "🧑🏞‍ðŸĶŊ‍➡ïļ" + }, + { + "group": 1, + "hexcode": "1F9D1-1F3FD-200D-1F9AF-200D-27A1-FE0F", + "label": "person with white cane facing right", + "order": 2171, + "unicode": "ðŸ§‘ðŸ―â€ðŸĶŊ‍➡ïļ" + }, + { + "group": 1, + "hexcode": "1F9D1-1F3FE-200D-1F9AF-200D-27A1-FE0F", + "label": "person with white cane facing right", + "order": 2173, + "unicode": "🧑ðŸū‍ðŸĶŊ‍➡ïļ" + }, + { + "group": 1, + "hexcode": "1F9D1-1F3FF-200D-1F9AF-200D-27A1-FE0F", + "label": "person with white cane facing right", + "order": 2175, + "unicode": "🧑ðŸŋ‍ðŸĶŊ‍➡ïļ" + } + ] + }, + { + "group": 1, + "hexcode": "1F468-200D-1F9AF", + "label": "man with white cane", + "order": 2177, + "tags": ["accessibility", "blind", "cane", "man", "probing", "white"], + "unicode": "ðŸ‘Ļ‍ðŸĶŊ", + "skins": [ + { + "group": 1, + "hexcode": "1F468-1F3FB-200D-1F9AF", + "label": "man with white cane: light skin tone", + "order": 2178, + "unicode": "ðŸ‘ĻðŸŧ‍ðŸĶŊ" + }, + { + "group": 1, + "hexcode": "1F468-1F3FC-200D-1F9AF", + "label": "man with white cane: medium-light skin tone", + "order": 2179, + "unicode": "ðŸ‘Ļ🏞‍ðŸĶŊ" + }, + { + "group": 1, + "hexcode": "1F468-1F3FD-200D-1F9AF", + "label": "man with white cane: medium skin tone", + "order": 2180, + "unicode": "ðŸ‘ĻðŸ―â€ðŸĶŊ" + }, + { + "group": 1, + "hexcode": "1F468-1F3FE-200D-1F9AF", + "label": "man with white cane: medium-dark skin tone", + "order": 2181, + "unicode": "ðŸ‘ĻðŸū‍ðŸĶŊ" + }, + { + "group": 1, + "hexcode": "1F468-1F3FF-200D-1F9AF", + "label": "man with white cane: dark skin tone", + "order": 2182, + "unicode": "ðŸ‘ĻðŸŋ‍ðŸĶŊ" + } + ] + }, + { + "group": 1, + "hexcode": "1F468-200D-1F9AF-200D-27A1-FE0F", + "label": "man with white cane facing right", + "order": 2183, + "tags": ["accessibility", "blind", "cane", "man", "probing", "white"], + "unicode": "ðŸ‘Ļ‍ðŸĶŊ‍➡ïļ", + "skins": [ + { + "group": 1, + "hexcode": "1F468-1F3FB-200D-1F9AF-200D-27A1-FE0F", + "label": "man with white cane facing right", + "order": 2185, + "unicode": "ðŸ‘ĻðŸŧ‍ðŸĶŊ‍➡ïļ" + }, + { + "group": 1, + "hexcode": "1F468-1F3FC-200D-1F9AF-200D-27A1-FE0F", + "label": "man with white cane facing right", + "order": 2187, + "unicode": "ðŸ‘Ļ🏞‍ðŸĶŊ‍➡ïļ" + }, + { + "group": 1, + "hexcode": "1F468-1F3FD-200D-1F9AF-200D-27A1-FE0F", + "label": "man with white cane facing right", + "order": 2189, + "unicode": "ðŸ‘ĻðŸ―â€ðŸĶŊ‍➡ïļ" + }, + { + "group": 1, + "hexcode": "1F468-1F3FE-200D-1F9AF-200D-27A1-FE0F", + "label": "man with white cane facing right", + "order": 2191, + "unicode": "ðŸ‘ĻðŸū‍ðŸĶŊ‍➡ïļ" + }, + { + "group": 1, + "hexcode": "1F468-1F3FF-200D-1F9AF-200D-27A1-FE0F", + "label": "man with white cane facing right", + "order": 2193, + "unicode": "ðŸ‘ĻðŸŋ‍ðŸĶŊ‍➡ïļ" + } + ] + }, + { + "group": 1, + "hexcode": "1F469-200D-1F9AF", + "label": "woman with white cane", + "order": 2195, + "tags": ["accessibility", "blind", "cane", "probing", "white", "woman"], + "unicode": "ðŸ‘Đ‍ðŸĶŊ", + "skins": [ + { + "group": 1, + "hexcode": "1F469-1F3FB-200D-1F9AF", + "label": "woman with white cane: light skin tone", + "order": 2196, + "unicode": "ðŸ‘ĐðŸŧ‍ðŸĶŊ" + }, + { + "group": 1, + "hexcode": "1F469-1F3FC-200D-1F9AF", + "label": "woman with white cane: medium-light skin tone", + "order": 2197, + "unicode": "ðŸ‘Đ🏞‍ðŸĶŊ" + }, + { + "group": 1, + "hexcode": "1F469-1F3FD-200D-1F9AF", + "label": "woman with white cane: medium skin tone", + "order": 2198, + "unicode": "ðŸ‘ĐðŸ―â€ðŸĶŊ" + }, + { + "group": 1, + "hexcode": "1F469-1F3FE-200D-1F9AF", + "label": "woman with white cane: medium-dark skin tone", + "order": 2199, + "unicode": "ðŸ‘ĐðŸū‍ðŸĶŊ" + }, + { + "group": 1, + "hexcode": "1F469-1F3FF-200D-1F9AF", + "label": "woman with white cane: dark skin tone", + "order": 2200, + "unicode": "ðŸ‘ĐðŸŋ‍ðŸĶŊ" + } + ] + }, + { + "group": 1, + "hexcode": "1F469-200D-1F9AF-200D-27A1-FE0F", + "label": "woman with white cane facing right", + "order": 2201, + "tags": ["accessibility", "blind", "cane", "probing", "white", "woman"], + "unicode": "ðŸ‘Đ‍ðŸĶŊ‍➡ïļ", + "skins": [ + { + "group": 1, + "hexcode": "1F469-1F3FB-200D-1F9AF-200D-27A1-FE0F", + "label": "woman with white cane facing right", + "order": 2203, + "unicode": "ðŸ‘ĐðŸŧ‍ðŸĶŊ‍➡ïļ" + }, + { + "group": 1, + "hexcode": "1F469-1F3FC-200D-1F9AF-200D-27A1-FE0F", + "label": "woman with white cane facing right", + "order": 2205, + "unicode": "ðŸ‘Đ🏞‍ðŸĶŊ‍➡ïļ" + }, + { + "group": 1, + "hexcode": "1F469-1F3FD-200D-1F9AF-200D-27A1-FE0F", + "label": "woman with white cane facing right", + "order": 2207, + "unicode": "ðŸ‘ĐðŸ―â€ðŸĶŊ‍➡ïļ" + }, + { + "group": 1, + "hexcode": "1F469-1F3FE-200D-1F9AF-200D-27A1-FE0F", + "label": "woman with white cane facing right", + "order": 2209, + "unicode": "ðŸ‘ĐðŸū‍ðŸĶŊ‍➡ïļ" + }, + { + "group": 1, + "hexcode": "1F469-1F3FF-200D-1F9AF-200D-27A1-FE0F", + "label": "woman with white cane facing right", + "order": 2211, + "unicode": "ðŸ‘ĐðŸŋ‍ðŸĶŊ‍➡ïļ" + } + ] + }, + { + "group": 1, + "hexcode": "1F9D1-200D-1F9BC", + "label": "person in motorized wheelchair", + "order": 2213, + "tags": ["accessibility", "motorized", "person", "wheelchair"], + "unicode": "🧑‍ðŸĶž", + "skins": [ + { + "group": 1, + "hexcode": "1F9D1-1F3FB-200D-1F9BC", + "label": "person in motorized wheelchair: light skin tone", + "order": 2214, + "unicode": "🧑ðŸŧ‍ðŸĶž" + }, + { + "group": 1, + "hexcode": "1F9D1-1F3FC-200D-1F9BC", + "label": "person in motorized wheelchair: medium-light skin tone", + "order": 2215, + "unicode": "🧑🏞‍ðŸĶž" + }, + { + "group": 1, + "hexcode": "1F9D1-1F3FD-200D-1F9BC", + "label": "person in motorized wheelchair: medium skin tone", + "order": 2216, + "unicode": "ðŸ§‘ðŸ―â€ðŸĶž" + }, + { + "group": 1, + "hexcode": "1F9D1-1F3FE-200D-1F9BC", + "label": "person in motorized wheelchair: medium-dark skin tone", + "order": 2217, + "unicode": "🧑ðŸū‍ðŸĶž" + }, + { + "group": 1, + "hexcode": "1F9D1-1F3FF-200D-1F9BC", + "label": "person in motorized wheelchair: dark skin tone", + "order": 2218, + "unicode": "🧑ðŸŋ‍ðŸĶž" + } + ] + }, + { + "group": 1, + "hexcode": "1F9D1-200D-1F9BC-200D-27A1-FE0F", + "label": "person in motorized wheelchair facing right", + "order": 2219, + "tags": ["accessibility", "motorized", "person", "wheelchair"], + "unicode": "🧑‍ðŸĶžâ€âžĄïļ", + "skins": [ + { + "group": 1, + "hexcode": "1F9D1-1F3FB-200D-1F9BC-200D-27A1-FE0F", + "label": "person in motorized wheelchair facing right", + "order": 2221, + "unicode": "🧑ðŸŧ‍ðŸĶžâ€âžĄïļ" + }, + { + "group": 1, + "hexcode": "1F9D1-1F3FC-200D-1F9BC-200D-27A1-FE0F", + "label": "person in motorized wheelchair facing right", + "order": 2223, + "unicode": "🧑🏞‍ðŸĶžâ€âžĄïļ" + }, + { + "group": 1, + "hexcode": "1F9D1-1F3FD-200D-1F9BC-200D-27A1-FE0F", + "label": "person in motorized wheelchair facing right", + "order": 2225, + "unicode": "ðŸ§‘ðŸ―â€ðŸĶžâ€âžĄïļ" + }, + { + "group": 1, + "hexcode": "1F9D1-1F3FE-200D-1F9BC-200D-27A1-FE0F", + "label": "person in motorized wheelchair facing right", + "order": 2227, + "unicode": "🧑ðŸū‍ðŸĶžâ€âžĄïļ" + }, + { + "group": 1, + "hexcode": "1F9D1-1F3FF-200D-1F9BC-200D-27A1-FE0F", + "label": "person in motorized wheelchair facing right", + "order": 2229, + "unicode": "🧑ðŸŋ‍ðŸĶžâ€âžĄïļ" + } + ] + }, + { + "group": 1, + "hexcode": "1F468-200D-1F9BC", + "label": "man in motorized wheelchair", + "order": 2231, + "tags": ["accessibility", "man", "motorized", "wheelchair"], + "unicode": "ðŸ‘Ļ‍ðŸĶž", + "skins": [ + { + "group": 1, + "hexcode": "1F468-1F3FB-200D-1F9BC", + "label": "man in motorized wheelchair: light skin tone", + "order": 2232, + "unicode": "ðŸ‘ĻðŸŧ‍ðŸĶž" + }, + { + "group": 1, + "hexcode": "1F468-1F3FC-200D-1F9BC", + "label": "man in motorized wheelchair: medium-light skin tone", + "order": 2233, + "unicode": "ðŸ‘Ļ🏞‍ðŸĶž" + }, + { + "group": 1, + "hexcode": "1F468-1F3FD-200D-1F9BC", + "label": "man in motorized wheelchair: medium skin tone", + "order": 2234, + "unicode": "ðŸ‘ĻðŸ―â€ðŸĶž" + }, + { + "group": 1, + "hexcode": "1F468-1F3FE-200D-1F9BC", + "label": "man in motorized wheelchair: medium-dark skin tone", + "order": 2235, + "unicode": "ðŸ‘ĻðŸū‍ðŸĶž" + }, + { + "group": 1, + "hexcode": "1F468-1F3FF-200D-1F9BC", + "label": "man in motorized wheelchair: dark skin tone", + "order": 2236, + "unicode": "ðŸ‘ĻðŸŋ‍ðŸĶž" + } + ] + }, + { + "group": 1, + "hexcode": "1F468-200D-1F9BC-200D-27A1-FE0F", + "label": "man in motorized wheelchair facing right", + "order": 2237, + "tags": ["accessibility", "man", "motorized", "wheelchair"], + "unicode": "ðŸ‘Ļ‍ðŸĶžâ€âžĄïļ", + "skins": [ + { + "group": 1, + "hexcode": "1F468-1F3FB-200D-1F9BC-200D-27A1-FE0F", + "label": "man in motorized wheelchair facing right", + "order": 2239, + "unicode": "ðŸ‘ĻðŸŧ‍ðŸĶžâ€âžĄïļ" + }, + { + "group": 1, + "hexcode": "1F468-1F3FC-200D-1F9BC-200D-27A1-FE0F", + "label": "man in motorized wheelchair facing right", + "order": 2241, + "unicode": "ðŸ‘Ļ🏞‍ðŸĶžâ€âžĄïļ" + }, + { + "group": 1, + "hexcode": "1F468-1F3FD-200D-1F9BC-200D-27A1-FE0F", + "label": "man in motorized wheelchair facing right", + "order": 2243, + "unicode": "ðŸ‘ĻðŸ―â€ðŸĶžâ€âžĄïļ" + }, + { + "group": 1, + "hexcode": "1F468-1F3FE-200D-1F9BC-200D-27A1-FE0F", + "label": "man in motorized wheelchair facing right", + "order": 2245, + "unicode": "ðŸ‘ĻðŸū‍ðŸĶžâ€âžĄïļ" + }, + { + "group": 1, + "hexcode": "1F468-1F3FF-200D-1F9BC-200D-27A1-FE0F", + "label": "man in motorized wheelchair facing right", + "order": 2247, + "unicode": "ðŸ‘ĻðŸŋ‍ðŸĶžâ€âžĄïļ" + } + ] + }, + { + "group": 1, + "hexcode": "1F469-200D-1F9BC", + "label": "woman in motorized wheelchair", + "order": 2249, + "tags": ["accessibility", "motorized", "wheelchair", "woman"], + "unicode": "ðŸ‘Đ‍ðŸĶž", + "skins": [ + { + "group": 1, + "hexcode": "1F469-1F3FB-200D-1F9BC", + "label": "woman in motorized wheelchair: light skin tone", + "order": 2250, + "unicode": "ðŸ‘ĐðŸŧ‍ðŸĶž" + }, + { + "group": 1, + "hexcode": "1F469-1F3FC-200D-1F9BC", + "label": "woman in motorized wheelchair: medium-light skin tone", + "order": 2251, + "unicode": "ðŸ‘Đ🏞‍ðŸĶž" + }, + { + "group": 1, + "hexcode": "1F469-1F3FD-200D-1F9BC", + "label": "woman in motorized wheelchair: medium skin tone", + "order": 2252, + "unicode": "ðŸ‘ĐðŸ―â€ðŸĶž" + }, + { + "group": 1, + "hexcode": "1F469-1F3FE-200D-1F9BC", + "label": "woman in motorized wheelchair: medium-dark skin tone", + "order": 2253, + "unicode": "ðŸ‘ĐðŸū‍ðŸĶž" + }, + { + "group": 1, + "hexcode": "1F469-1F3FF-200D-1F9BC", + "label": "woman in motorized wheelchair: dark skin tone", + "order": 2254, + "unicode": "ðŸ‘ĐðŸŋ‍ðŸĶž" + } + ] + }, + { + "group": 1, + "hexcode": "1F469-200D-1F9BC-200D-27A1-FE0F", + "label": "woman in motorized wheelchair facing right", + "order": 2255, + "tags": ["accessibility", "motorized", "wheelchair", "woman"], + "unicode": "ðŸ‘Đ‍ðŸĶžâ€âžĄïļ", + "skins": [ + { + "group": 1, + "hexcode": "1F469-1F3FB-200D-1F9BC-200D-27A1-FE0F", + "label": "woman in motorized wheelchair facing right", + "order": 2257, + "unicode": "ðŸ‘ĐðŸŧ‍ðŸĶžâ€âžĄïļ" + }, + { + "group": 1, + "hexcode": "1F469-1F3FC-200D-1F9BC-200D-27A1-FE0F", + "label": "woman in motorized wheelchair facing right", + "order": 2259, + "unicode": "ðŸ‘Đ🏞‍ðŸĶžâ€âžĄïļ" + }, + { + "group": 1, + "hexcode": "1F469-1F3FD-200D-1F9BC-200D-27A1-FE0F", + "label": "woman in motorized wheelchair facing right", + "order": 2261, + "unicode": "ðŸ‘ĐðŸ―â€ðŸĶžâ€âžĄïļ" + }, + { + "group": 1, + "hexcode": "1F469-1F3FE-200D-1F9BC-200D-27A1-FE0F", + "label": "woman in motorized wheelchair facing right", + "order": 2263, + "unicode": "ðŸ‘ĐðŸū‍ðŸĶžâ€âžĄïļ" + }, + { + "group": 1, + "hexcode": "1F469-1F3FF-200D-1F9BC-200D-27A1-FE0F", + "label": "woman in motorized wheelchair facing right", + "order": 2265, + "unicode": "ðŸ‘ĐðŸŋ‍ðŸĶžâ€âžĄïļ" + } + ] + }, + { + "group": 1, + "hexcode": "1F9D1-200D-1F9BD", + "label": "person in manual wheelchair", + "order": 2267, + "tags": ["accessibility", "manual", "person", "wheelchair"], + "unicode": "🧑‍ðŸĶ―", + "skins": [ + { + "group": 1, + "hexcode": "1F9D1-1F3FB-200D-1F9BD", + "label": "person in manual wheelchair: light skin tone", + "order": 2268, + "unicode": "🧑ðŸŧ‍ðŸĶ―" + }, + { + "group": 1, + "hexcode": "1F9D1-1F3FC-200D-1F9BD", + "label": "person in manual wheelchair: medium-light skin tone", + "order": 2269, + "unicode": "🧑🏞‍ðŸĶ―" + }, + { + "group": 1, + "hexcode": "1F9D1-1F3FD-200D-1F9BD", + "label": "person in manual wheelchair: medium skin tone", + "order": 2270, + "unicode": "ðŸ§‘ðŸ―â€ðŸĶ―" + }, + { + "group": 1, + "hexcode": "1F9D1-1F3FE-200D-1F9BD", + "label": "person in manual wheelchair: medium-dark skin tone", + "order": 2271, + "unicode": "🧑ðŸū‍ðŸĶ―" + }, + { + "group": 1, + "hexcode": "1F9D1-1F3FF-200D-1F9BD", + "label": "person in manual wheelchair: dark skin tone", + "order": 2272, + "unicode": "🧑ðŸŋ‍ðŸĶ―" + } + ] + }, + { + "group": 1, + "hexcode": "1F9D1-200D-1F9BD-200D-27A1-FE0F", + "label": "person in manual wheelchair facing right", + "order": 2273, + "tags": ["accessibility", "manual", "person", "wheelchair"], + "unicode": "🧑‍ðŸĶ―‍➡ïļ", + "skins": [ + { + "group": 1, + "hexcode": "1F9D1-1F3FB-200D-1F9BD-200D-27A1-FE0F", + "label": "person in manual wheelchair facing right", + "order": 2275, + "unicode": "🧑ðŸŧ‍ðŸĶ―‍➡ïļ" + }, + { + "group": 1, + "hexcode": "1F9D1-1F3FC-200D-1F9BD-200D-27A1-FE0F", + "label": "person in manual wheelchair facing right", + "order": 2277, + "unicode": "🧑🏞‍ðŸĶ―‍➡ïļ" + }, + { + "group": 1, + "hexcode": "1F9D1-1F3FD-200D-1F9BD-200D-27A1-FE0F", + "label": "person in manual wheelchair facing right", + "order": 2279, + "unicode": "ðŸ§‘ðŸ―â€ðŸĶ―‍➡ïļ" + }, + { + "group": 1, + "hexcode": "1F9D1-1F3FE-200D-1F9BD-200D-27A1-FE0F", + "label": "person in manual wheelchair facing right", + "order": 2281, + "unicode": "🧑ðŸū‍ðŸĶ―‍➡ïļ" + }, + { + "group": 1, + "hexcode": "1F9D1-1F3FF-200D-1F9BD-200D-27A1-FE0F", + "label": "person in manual wheelchair facing right", + "order": 2283, + "unicode": "🧑ðŸŋ‍ðŸĶ―‍➡ïļ" + } + ] + }, + { + "group": 1, + "hexcode": "1F468-200D-1F9BD", + "label": "man in manual wheelchair", + "order": 2285, + "tags": ["accessibility", "man", "manual", "wheelchair"], + "unicode": "ðŸ‘Ļ‍ðŸĶ―", + "skins": [ + { + "group": 1, + "hexcode": "1F468-1F3FB-200D-1F9BD", + "label": "man in manual wheelchair: light skin tone", + "order": 2286, + "unicode": "ðŸ‘ĻðŸŧ‍ðŸĶ―" + }, + { + "group": 1, + "hexcode": "1F468-1F3FC-200D-1F9BD", + "label": "man in manual wheelchair: medium-light skin tone", + "order": 2287, + "unicode": "ðŸ‘Ļ🏞‍ðŸĶ―" + }, + { + "group": 1, + "hexcode": "1F468-1F3FD-200D-1F9BD", + "label": "man in manual wheelchair: medium skin tone", + "order": 2288, + "unicode": "ðŸ‘ĻðŸ―â€ðŸĶ―" + }, + { + "group": 1, + "hexcode": "1F468-1F3FE-200D-1F9BD", + "label": "man in manual wheelchair: medium-dark skin tone", + "order": 2289, + "unicode": "ðŸ‘ĻðŸū‍ðŸĶ―" + }, + { + "group": 1, + "hexcode": "1F468-1F3FF-200D-1F9BD", + "label": "man in manual wheelchair: dark skin tone", + "order": 2290, + "unicode": "ðŸ‘ĻðŸŋ‍ðŸĶ―" + } + ] + }, + { + "group": 1, + "hexcode": "1F468-200D-1F9BD-200D-27A1-FE0F", + "label": "man in manual wheelchair facing right", + "order": 2291, + "tags": ["accessibility", "man", "manual", "wheelchair"], + "unicode": "ðŸ‘Ļ‍ðŸĶ―‍➡ïļ", + "skins": [ + { + "group": 1, + "hexcode": "1F468-1F3FB-200D-1F9BD-200D-27A1-FE0F", + "label": "man in manual wheelchair facing right", + "order": 2293, + "unicode": "ðŸ‘ĻðŸŧ‍ðŸĶ―‍➡ïļ" + }, + { + "group": 1, + "hexcode": "1F468-1F3FC-200D-1F9BD-200D-27A1-FE0F", + "label": "man in manual wheelchair facing right", + "order": 2295, + "unicode": "ðŸ‘Ļ🏞‍ðŸĶ―‍➡ïļ" + }, + { + "group": 1, + "hexcode": "1F468-1F3FD-200D-1F9BD-200D-27A1-FE0F", + "label": "man in manual wheelchair facing right", + "order": 2297, + "unicode": "ðŸ‘ĻðŸ―â€ðŸĶ―‍➡ïļ" + }, + { + "group": 1, + "hexcode": "1F468-1F3FE-200D-1F9BD-200D-27A1-FE0F", + "label": "man in manual wheelchair facing right", + "order": 2299, + "unicode": "ðŸ‘ĻðŸū‍ðŸĶ―‍➡ïļ" + }, + { + "group": 1, + "hexcode": "1F468-1F3FF-200D-1F9BD-200D-27A1-FE0F", + "label": "man in manual wheelchair facing right", + "order": 2301, + "unicode": "ðŸ‘ĻðŸŋ‍ðŸĶ―‍➡ïļ" + } + ] + }, + { + "group": 1, + "hexcode": "1F469-200D-1F9BD", + "label": "woman in manual wheelchair", + "order": 2303, + "tags": ["accessibility", "manual", "wheelchair", "woman"], + "unicode": "ðŸ‘Đ‍ðŸĶ―", + "skins": [ + { + "group": 1, + "hexcode": "1F469-1F3FB-200D-1F9BD", + "label": "woman in manual wheelchair: light skin tone", + "order": 2304, + "unicode": "ðŸ‘ĐðŸŧ‍ðŸĶ―" + }, + { + "group": 1, + "hexcode": "1F469-1F3FC-200D-1F9BD", + "label": "woman in manual wheelchair: medium-light skin tone", + "order": 2305, + "unicode": "ðŸ‘Đ🏞‍ðŸĶ―" + }, + { + "group": 1, + "hexcode": "1F469-1F3FD-200D-1F9BD", + "label": "woman in manual wheelchair: medium skin tone", + "order": 2306, + "unicode": "ðŸ‘ĐðŸ―â€ðŸĶ―" + }, + { + "group": 1, + "hexcode": "1F469-1F3FE-200D-1F9BD", + "label": "woman in manual wheelchair: medium-dark skin tone", + "order": 2307, + "unicode": "ðŸ‘ĐðŸū‍ðŸĶ―" + }, + { + "group": 1, + "hexcode": "1F469-1F3FF-200D-1F9BD", + "label": "woman in manual wheelchair: dark skin tone", + "order": 2308, + "unicode": "ðŸ‘ĐðŸŋ‍ðŸĶ―" + } + ] + }, + { + "group": 1, + "hexcode": "1F469-200D-1F9BD-200D-27A1-FE0F", + "label": "woman in manual wheelchair facing right", + "order": 2309, + "tags": ["accessibility", "manual", "wheelchair", "woman"], + "unicode": "ðŸ‘Đ‍ðŸĶ―‍➡ïļ", + "skins": [ + { + "group": 1, + "hexcode": "1F469-1F3FB-200D-1F9BD-200D-27A1-FE0F", + "label": "woman in manual wheelchair facing right", + "order": 2311, + "unicode": "ðŸ‘ĐðŸŧ‍ðŸĶ―‍➡ïļ" + }, + { + "group": 1, + "hexcode": "1F469-1F3FC-200D-1F9BD-200D-27A1-FE0F", + "label": "woman in manual wheelchair facing right", + "order": 2313, + "unicode": "ðŸ‘Đ🏞‍ðŸĶ―‍➡ïļ" + }, + { + "group": 1, + "hexcode": "1F469-1F3FD-200D-1F9BD-200D-27A1-FE0F", + "label": "woman in manual wheelchair facing right", + "order": 2315, + "unicode": "ðŸ‘ĐðŸ―â€ðŸĶ―‍➡ïļ" + }, + { + "group": 1, + "hexcode": "1F469-1F3FE-200D-1F9BD-200D-27A1-FE0F", + "label": "woman in manual wheelchair facing right", + "order": 2317, + "unicode": "ðŸ‘ĐðŸū‍ðŸĶ―‍➡ïļ" + }, + { + "group": 1, + "hexcode": "1F469-1F3FF-200D-1F9BD-200D-27A1-FE0F", + "label": "woman in manual wheelchair facing right", + "order": 2319, + "unicode": "ðŸ‘ĐðŸŋ‍ðŸĶ―‍➡ïļ" + } + ] + }, + { + "group": 1, + "hexcode": "1F3C3", + "label": "person running", + "order": 2321, + "tags": [ + "fast", + "hurry", + "marathon", + "move", + "person", + "quick", + "race", + "racing", + "run", + "rush", + "speed" + ], + "unicode": "🏃", + "skins": [ + { + "group": 1, + "hexcode": "1F3C3-1F3FB", + "label": "person running: light skin tone", + "order": 2322, + "unicode": "🏃ðŸŧ" + }, + { + "group": 1, + "hexcode": "1F3C3-1F3FC", + "label": "person running: medium-light skin tone", + "order": 2323, + "unicode": "🏃🏞" + }, + { + "group": 1, + "hexcode": "1F3C3-1F3FD", + "label": "person running: medium skin tone", + "order": 2324, + "unicode": "ðŸƒðŸ―" + }, + { + "group": 1, + "hexcode": "1F3C3-1F3FE", + "label": "person running: medium-dark skin tone", + "order": 2325, + "unicode": "🏃ðŸū" + }, + { + "group": 1, + "hexcode": "1F3C3-1F3FF", + "label": "person running: dark skin tone", + "order": 2326, + "unicode": "🏃ðŸŋ" + } + ] + }, + { + "group": 1, + "hexcode": "1F3C3-200D-2642-FE0F", + "label": "man running", + "order": 2327, + "tags": [ + "fast", + "hurry", + "man", + "marathon", + "move", + "quick", + "race", + "racing", + "run", + "rush", + "speed" + ], + "unicode": "🏃‍♂ïļ", + "skins": [ + { + "group": 1, + "hexcode": "1F3C3-1F3FB-200D-2642-FE0F", + "label": "man running: light skin tone", + "order": 2329, + "unicode": "🏃ðŸŧ‍♂ïļ" + }, + { + "group": 1, + "hexcode": "1F3C3-1F3FC-200D-2642-FE0F", + "label": "man running: medium-light skin tone", + "order": 2331, + "unicode": "🏃🏞‍♂ïļ" + }, + { + "group": 1, + "hexcode": "1F3C3-1F3FD-200D-2642-FE0F", + "label": "man running: medium skin tone", + "order": 2333, + "unicode": "ðŸƒðŸ―â€â™‚ïļ" + }, + { + "group": 1, + "hexcode": "1F3C3-1F3FE-200D-2642-FE0F", + "label": "man running: medium-dark skin tone", + "order": 2335, + "unicode": "🏃ðŸū‍♂ïļ" + }, + { + "group": 1, + "hexcode": "1F3C3-1F3FF-200D-2642-FE0F", + "label": "man running: dark skin tone", + "order": 2337, + "unicode": "🏃ðŸŋ‍♂ïļ" + } + ] + }, + { + "group": 1, + "hexcode": "1F3C3-200D-2640-FE0F", + "label": "woman running", + "order": 2339, + "tags": [ + "fast", + "hurry", + "marathon", + "move", + "quick", + "race", + "racing", + "run", + "rush", + "speed", + "woman" + ], + "unicode": "🏃‍♀ïļ", + "skins": [ + { + "group": 1, + "hexcode": "1F3C3-1F3FB-200D-2640-FE0F", + "label": "woman running: light skin tone", + "order": 2341, + "unicode": "🏃ðŸŧ‍♀ïļ" + }, + { + "group": 1, + "hexcode": "1F3C3-1F3FC-200D-2640-FE0F", + "label": "woman running: medium-light skin tone", + "order": 2343, + "unicode": "🏃🏞‍♀ïļ" + }, + { + "group": 1, + "hexcode": "1F3C3-1F3FD-200D-2640-FE0F", + "label": "woman running: medium skin tone", + "order": 2345, + "unicode": "ðŸƒðŸ―â€â™€ïļ" + }, + { + "group": 1, + "hexcode": "1F3C3-1F3FE-200D-2640-FE0F", + "label": "woman running: medium-dark skin tone", + "order": 2347, + "unicode": "🏃ðŸū‍♀ïļ" + }, + { + "group": 1, + "hexcode": "1F3C3-1F3FF-200D-2640-FE0F", + "label": "woman running: dark skin tone", + "order": 2349, + "unicode": "🏃ðŸŋ‍♀ïļ" + } + ] + }, + { + "group": 1, + "hexcode": "1F3C3-200D-27A1-FE0F", + "label": "person running facing right", + "order": 2351, + "tags": [ + "fast", + "hurry", + "marathon", + "move", + "person", + "quick", + "race", + "racing", + "run", + "rush", + "speed" + ], + "unicode": "ðŸƒâ€âžĄïļ", + "skins": [ + { + "group": 1, + "hexcode": "1F3C3-1F3FB-200D-27A1-FE0F", + "label": "person running facing right", + "order": 2353, + "unicode": "🏃ðŸŧ‍➡ïļ" + }, + { + "group": 1, + "hexcode": "1F3C3-1F3FC-200D-27A1-FE0F", + "label": "person running facing right", + "order": 2355, + "unicode": "ðŸƒðŸžâ€âžĄïļ" + }, + { + "group": 1, + "hexcode": "1F3C3-1F3FD-200D-27A1-FE0F", + "label": "person running facing right", + "order": 2357, + "unicode": "ðŸƒðŸ―â€âžĄïļ" + }, + { + "group": 1, + "hexcode": "1F3C3-1F3FE-200D-27A1-FE0F", + "label": "person running facing right", + "order": 2359, + "unicode": "🏃ðŸū‍➡ïļ" + }, + { + "group": 1, + "hexcode": "1F3C3-1F3FF-200D-27A1-FE0F", + "label": "person running facing right", + "order": 2361, + "unicode": "🏃ðŸŋ‍➡ïļ" + } + ] + }, + { + "group": 1, + "hexcode": "1F3C3-200D-2640-FE0F-200D-27A1-FE0F", + "label": "woman running facing right", + "order": 2363, + "tags": [ + "fast", + "hurry", + "marathon", + "move", + "quick", + "race", + "racing", + "run", + "rush", + "speed", + "woman" + ], + "unicode": "🏃‍♀ïļâ€âžĄïļ", + "skins": [ + { + "group": 1, + "hexcode": "1F3C3-1F3FB-200D-2640-FE0F-200D-27A1-FE0F", + "label": "woman running facing right", + "order": 2367, + "unicode": "🏃ðŸŧ‍♀ïļâ€âžĄïļ" + }, + { + "group": 1, + "hexcode": "1F3C3-1F3FC-200D-2640-FE0F-200D-27A1-FE0F", + "label": "woman running facing right", + "order": 2371, + "unicode": "🏃🏞‍♀ïļâ€âžĄïļ" + }, + { + "group": 1, + "hexcode": "1F3C3-1F3FD-200D-2640-FE0F-200D-27A1-FE0F", + "label": "woman running facing right", + "order": 2375, + "unicode": "ðŸƒðŸ―â€â™€ïļâ€âžĄïļ" + }, + { + "group": 1, + "hexcode": "1F3C3-1F3FE-200D-2640-FE0F-200D-27A1-FE0F", + "label": "woman running facing right", + "order": 2379, + "unicode": "🏃ðŸū‍♀ïļâ€âžĄïļ" + }, + { + "group": 1, + "hexcode": "1F3C3-1F3FF-200D-2640-FE0F-200D-27A1-FE0F", + "label": "woman running facing right", + "order": 2383, + "unicode": "🏃ðŸŋ‍♀ïļâ€âžĄïļ" + } + ] + }, + { + "group": 1, + "hexcode": "1F3C3-200D-2642-FE0F-200D-27A1-FE0F", + "label": "man running facing right", + "order": 2387, + "tags": [ + "fast", + "hurry", + "man", + "marathon", + "move", + "quick", + "race", + "racing", + "run", + "rush", + "speed" + ], + "unicode": "🏃‍♂ïļâ€âžĄïļ", + "skins": [ + { + "group": 1, + "hexcode": "1F3C3-1F3FB-200D-2642-FE0F-200D-27A1-FE0F", + "label": "man running facing right", + "order": 2391, + "unicode": "🏃ðŸŧ‍♂ïļâ€âžĄïļ" + }, + { + "group": 1, + "hexcode": "1F3C3-1F3FC-200D-2642-FE0F-200D-27A1-FE0F", + "label": "man running facing right", + "order": 2395, + "unicode": "🏃🏞‍♂ïļâ€âžĄïļ" + }, + { + "group": 1, + "hexcode": "1F3C3-1F3FD-200D-2642-FE0F-200D-27A1-FE0F", + "label": "man running facing right", + "order": 2399, + "unicode": "ðŸƒðŸ―â€â™‚ïļâ€âžĄïļ" + }, + { + "group": 1, + "hexcode": "1F3C3-1F3FE-200D-2642-FE0F-200D-27A1-FE0F", + "label": "man running facing right", + "order": 2403, + "unicode": "🏃ðŸū‍♂ïļâ€âžĄïļ" + }, + { + "group": 1, + "hexcode": "1F3C3-1F3FF-200D-2642-FE0F-200D-27A1-FE0F", + "label": "man running facing right", + "order": 2407, + "unicode": "🏃ðŸŋ‍♂ïļâ€âžĄïļ" + } + ] + }, + { + "group": 1, + "hexcode": "1F483", + "label": "woman dancing", + "order": 2411, + "tags": [ + "dance", + "dancer", + "dancing", + "elegant", + "festive", + "flair", + "flamenco", + "groove", + "let’s", + "salsa", + "tango", + "woman" + ], + "unicode": "💃", + "skins": [ + { + "group": 1, + "hexcode": "1F483-1F3FB", + "label": "woman dancing: light skin tone", + "order": 2412, + "unicode": "💃ðŸŧ" + }, + { + "group": 1, + "hexcode": "1F483-1F3FC", + "label": "woman dancing: medium-light skin tone", + "order": 2413, + "unicode": "💃🏞" + }, + { + "group": 1, + "hexcode": "1F483-1F3FD", + "label": "woman dancing: medium skin tone", + "order": 2414, + "unicode": "ðŸ’ƒðŸ―" + }, + { + "group": 1, + "hexcode": "1F483-1F3FE", + "label": "woman dancing: medium-dark skin tone", + "order": 2415, + "unicode": "💃ðŸū" + }, + { + "group": 1, + "hexcode": "1F483-1F3FF", + "label": "woman dancing: dark skin tone", + "order": 2416, + "unicode": "💃ðŸŋ" + } + ] + }, + { + "group": 1, + "hexcode": "1F57A", + "label": "man dancing", + "order": 2417, + "tags": [ + "dance", + "dancer", + "dancing", + "elegant", + "festive", + "flair", + "flamenco", + "groove", + "let’s", + "man", + "salsa", + "tango" + ], + "unicode": "🕚", + "skins": [ + { + "group": 1, + "hexcode": "1F57A-1F3FB", + "label": "man dancing: light skin tone", + "order": 2418, + "unicode": "🕚ðŸŧ" + }, + { + "group": 1, + "hexcode": "1F57A-1F3FC", + "label": "man dancing: medium-light skin tone", + "order": 2419, + "unicode": "🕚🏞" + }, + { + "group": 1, + "hexcode": "1F57A-1F3FD", + "label": "man dancing: medium skin tone", + "order": 2420, + "unicode": "ðŸ•šðŸ―" + }, + { + "group": 1, + "hexcode": "1F57A-1F3FE", + "label": "man dancing: medium-dark skin tone", + "order": 2421, + "unicode": "🕚ðŸū" + }, + { + "group": 1, + "hexcode": "1F57A-1F3FF", + "label": "man dancing: dark skin tone", + "order": 2422, + "unicode": "🕚ðŸŋ" + } + ] + }, + { + "group": 1, + "hexcode": "1F574", + "label": "person in suit levitating", + "order": 2424, + "tags": ["business", "levitating", "person", "suit"], + "unicode": "ðŸ•īïļ", + "skins": [ + { + "group": 1, + "hexcode": "1F574-1F3FB", + "label": "person in suit levitating: light skin tone", + "order": 2425, + "unicode": "ðŸ•īðŸŧ" + }, + { + "group": 1, + "hexcode": "1F574-1F3FC", + "label": "person in suit levitating: medium-light skin tone", + "order": 2426, + "unicode": "ðŸ•ī🏞" + }, + { + "group": 1, + "hexcode": "1F574-1F3FD", + "label": "person in suit levitating: medium skin tone", + "order": 2427, + "unicode": "ðŸ•īðŸ―" + }, + { + "group": 1, + "hexcode": "1F574-1F3FE", + "label": "person in suit levitating: medium-dark skin tone", + "order": 2428, + "unicode": "ðŸ•īðŸū" + }, + { + "group": 1, + "hexcode": "1F574-1F3FF", + "label": "person in suit levitating: dark skin tone", + "order": 2429, + "unicode": "ðŸ•īðŸŋ" + } + ] + }, + { + "group": 1, + "hexcode": "1F46F", + "label": "people with bunny ears", + "order": 2430, + "tags": [ + "bestie", + "bff", + "bunny", + "counterpart", + "dancer", + "double", + "ear", + "identical", + "pair", + "party", + "partying", + "people", + "soulmate", + "twin", + "twinsies" + ], + "unicode": "ðŸ‘Ŋ" + }, + { + "group": 1, + "hexcode": "1F46F-200D-2642-FE0F", + "label": "men with bunny ears", + "order": 2431, + "tags": [ + "bestie", + "bff", + "bunny", + "counterpart", + "dancer", + "double", + "ear", + "identical", + "men", + "pair", + "party", + "partying", + "people", + "soulmate", + "twin", + "twinsies" + ], + "unicode": "ðŸ‘Ŋ‍♂ïļ" + }, + { + "group": 1, + "hexcode": "1F46F-200D-2640-FE0F", + "label": "women with bunny ears", + "order": 2433, + "tags": [ + "bestie", + "bff", + "bunny", + "counterpart", + "dancer", + "double", + "ear", + "identical", + "pair", + "party", + "partying", + "people", + "soulmate", + "twin", + "twinsies", + "women" + ], + "unicode": "ðŸ‘Ŋ‍♀ïļ" + }, + { + "group": 1, + "hexcode": "1F9D6", + "label": "person in steamy room", + "order": 2435, + "tags": [ + "day", + "luxurious", + "pamper", + "person", + "relax", + "room", + "sauna", + "spa", + "steam", + "steambath", + "unwind" + ], + "unicode": "🧖", + "skins": [ + { + "group": 1, + "hexcode": "1F9D6-1F3FB", + "label": "person in steamy room: light skin tone", + "order": 2436, + "unicode": "🧖ðŸŧ" + }, + { + "group": 1, + "hexcode": "1F9D6-1F3FC", + "label": "person in steamy room: medium-light skin tone", + "order": 2437, + "unicode": "🧖🏞" + }, + { + "group": 1, + "hexcode": "1F9D6-1F3FD", + "label": "person in steamy room: medium skin tone", + "order": 2438, + "unicode": "ðŸ§–ðŸ―" + }, + { + "group": 1, + "hexcode": "1F9D6-1F3FE", + "label": "person in steamy room: medium-dark skin tone", + "order": 2439, + "unicode": "🧖ðŸū" + }, + { + "group": 1, + "hexcode": "1F9D6-1F3FF", + "label": "person in steamy room: dark skin tone", + "order": 2440, + "unicode": "🧖ðŸŋ" + } + ] + }, + { + "group": 1, + "hexcode": "1F9D6-200D-2642-FE0F", + "label": "man in steamy room", + "order": 2441, + "tags": [ + "day", + "luxurious", + "man", + "pamper", + "relax", + "room", + "sauna", + "spa", + "steam", + "steambath", + "unwind" + ], + "unicode": "🧖‍♂ïļ", + "skins": [ + { + "group": 1, + "hexcode": "1F9D6-1F3FB-200D-2642-FE0F", + "label": "man in steamy room: light skin tone", + "order": 2443, + "unicode": "🧖ðŸŧ‍♂ïļ" + }, + { + "group": 1, + "hexcode": "1F9D6-1F3FC-200D-2642-FE0F", + "label": "man in steamy room: medium-light skin tone", + "order": 2445, + "unicode": "🧖🏞‍♂ïļ" + }, + { + "group": 1, + "hexcode": "1F9D6-1F3FD-200D-2642-FE0F", + "label": "man in steamy room: medium skin tone", + "order": 2447, + "unicode": "ðŸ§–ðŸ―â€â™‚ïļ" + }, + { + "group": 1, + "hexcode": "1F9D6-1F3FE-200D-2642-FE0F", + "label": "man in steamy room: medium-dark skin tone", + "order": 2449, + "unicode": "🧖ðŸū‍♂ïļ" + }, + { + "group": 1, + "hexcode": "1F9D6-1F3FF-200D-2642-FE0F", + "label": "man in steamy room: dark skin tone", + "order": 2451, + "unicode": "🧖ðŸŋ‍♂ïļ" + } + ] + }, + { + "group": 1, + "hexcode": "1F9D6-200D-2640-FE0F", + "label": "woman in steamy room", + "order": 2453, + "tags": [ + "day", + "luxurious", + "pamper", + "relax", + "room", + "sauna", + "spa", + "steam", + "steambath", + "unwind", + "woman" + ], + "unicode": "🧖‍♀ïļ", + "skins": [ + { + "group": 1, + "hexcode": "1F9D6-1F3FB-200D-2640-FE0F", + "label": "woman in steamy room: light skin tone", + "order": 2455, + "unicode": "🧖ðŸŧ‍♀ïļ" + }, + { + "group": 1, + "hexcode": "1F9D6-1F3FC-200D-2640-FE0F", + "label": "woman in steamy room: medium-light skin tone", + "order": 2457, + "unicode": "🧖🏞‍♀ïļ" + }, + { + "group": 1, + "hexcode": "1F9D6-1F3FD-200D-2640-FE0F", + "label": "woman in steamy room: medium skin tone", + "order": 2459, + "unicode": "ðŸ§–ðŸ―â€â™€ïļ" + }, + { + "group": 1, + "hexcode": "1F9D6-1F3FE-200D-2640-FE0F", + "label": "woman in steamy room: medium-dark skin tone", + "order": 2461, + "unicode": "🧖ðŸū‍♀ïļ" + }, + { + "group": 1, + "hexcode": "1F9D6-1F3FF-200D-2640-FE0F", + "label": "woman in steamy room: dark skin tone", + "order": 2463, + "unicode": "🧖ðŸŋ‍♀ïļ" + } + ] + }, + { + "group": 1, + "hexcode": "1F9D7", + "label": "person climbing", + "order": 2465, + "tags": [ + "climb", + "climber", + "climbing", + "mountain", + "person", + "rock", + "scale", + "up" + ], + "unicode": "🧗", + "skins": [ + { + "group": 1, + "hexcode": "1F9D7-1F3FB", + "label": "person climbing: light skin tone", + "order": 2466, + "unicode": "🧗ðŸŧ" + }, + { + "group": 1, + "hexcode": "1F9D7-1F3FC", + "label": "person climbing: medium-light skin tone", + "order": 2467, + "unicode": "🧗🏞" + }, + { + "group": 1, + "hexcode": "1F9D7-1F3FD", + "label": "person climbing: medium skin tone", + "order": 2468, + "unicode": "ðŸ§—ðŸ―" + }, + { + "group": 1, + "hexcode": "1F9D7-1F3FE", + "label": "person climbing: medium-dark skin tone", + "order": 2469, + "unicode": "🧗ðŸū" + }, + { + "group": 1, + "hexcode": "1F9D7-1F3FF", + "label": "person climbing: dark skin tone", + "order": 2470, + "unicode": "🧗ðŸŋ" + } + ] + }, + { + "group": 1, + "hexcode": "1F9D7-200D-2642-FE0F", + "label": "man climbing", + "order": 2471, + "tags": [ + "climb", + "climber", + "climbing", + "man", + "mountain", + "rock", + "scale", + "up" + ], + "unicode": "🧗‍♂ïļ", + "skins": [ + { + "group": 1, + "hexcode": "1F9D7-1F3FB-200D-2642-FE0F", + "label": "man climbing: light skin tone", + "order": 2473, + "unicode": "🧗ðŸŧ‍♂ïļ" + }, + { + "group": 1, + "hexcode": "1F9D7-1F3FC-200D-2642-FE0F", + "label": "man climbing: medium-light skin tone", + "order": 2475, + "unicode": "🧗🏞‍♂ïļ" + }, + { + "group": 1, + "hexcode": "1F9D7-1F3FD-200D-2642-FE0F", + "label": "man climbing: medium skin tone", + "order": 2477, + "unicode": "ðŸ§—ðŸ―â€â™‚ïļ" + }, + { + "group": 1, + "hexcode": "1F9D7-1F3FE-200D-2642-FE0F", + "label": "man climbing: medium-dark skin tone", + "order": 2479, + "unicode": "🧗ðŸū‍♂ïļ" + }, + { + "group": 1, + "hexcode": "1F9D7-1F3FF-200D-2642-FE0F", + "label": "man climbing: dark skin tone", + "order": 2481, + "unicode": "🧗ðŸŋ‍♂ïļ" + } + ] + }, + { + "group": 1, + "hexcode": "1F9D7-200D-2640-FE0F", + "label": "woman climbing", + "order": 2483, + "tags": [ + "climb", + "climber", + "climbing", + "mountain", + "rock", + "scale", + "up", + "woman" + ], + "unicode": "🧗‍♀ïļ", + "skins": [ + { + "group": 1, + "hexcode": "1F9D7-1F3FB-200D-2640-FE0F", + "label": "woman climbing: light skin tone", + "order": 2485, + "unicode": "🧗ðŸŧ‍♀ïļ" + }, + { + "group": 1, + "hexcode": "1F9D7-1F3FC-200D-2640-FE0F", + "label": "woman climbing: medium-light skin tone", + "order": 2487, + "unicode": "🧗🏞‍♀ïļ" + }, + { + "group": 1, + "hexcode": "1F9D7-1F3FD-200D-2640-FE0F", + "label": "woman climbing: medium skin tone", + "order": 2489, + "unicode": "ðŸ§—ðŸ―â€â™€ïļ" + }, + { + "group": 1, + "hexcode": "1F9D7-1F3FE-200D-2640-FE0F", + "label": "woman climbing: medium-dark skin tone", + "order": 2491, + "unicode": "🧗ðŸū‍♀ïļ" + }, + { + "group": 1, + "hexcode": "1F9D7-1F3FF-200D-2640-FE0F", + "label": "woman climbing: dark skin tone", + "order": 2493, + "unicode": "🧗ðŸŋ‍♀ïļ" + } + ] + }, + { + "group": 1, + "hexcode": "1F93A", + "label": "person fencing", + "order": 2495, + "tags": ["fencer", "fencing", "person", "sword"], + "unicode": "ðŸĪš" + }, + { + "group": 1, + "hexcode": "1F3C7", + "label": "horse racing", + "order": 2496, + "tags": ["horse", "jockey", "racehorse", "racing", "riding", "sport"], + "unicode": "🏇", + "skins": [ + { + "group": 1, + "hexcode": "1F3C7-1F3FB", + "label": "horse racing: light skin tone", + "order": 2497, + "unicode": "🏇ðŸŧ" + }, + { + "group": 1, + "hexcode": "1F3C7-1F3FC", + "label": "horse racing: medium-light skin tone", + "order": 2498, + "unicode": "🏇🏞" + }, + { + "group": 1, + "hexcode": "1F3C7-1F3FD", + "label": "horse racing: medium skin tone", + "order": 2499, + "unicode": "ðŸ‡ðŸ―" + }, + { + "group": 1, + "hexcode": "1F3C7-1F3FE", + "label": "horse racing: medium-dark skin tone", + "order": 2500, + "unicode": "🏇ðŸū" + }, + { + "group": 1, + "hexcode": "1F3C7-1F3FF", + "label": "horse racing: dark skin tone", + "order": 2501, + "unicode": "🏇ðŸŋ" + } + ] + }, + { + "group": 1, + "hexcode": "26F7", + "label": "skier", + "order": 2503, + "tags": ["ski", "snow"], + "unicode": "⛷ïļ" + }, + { + "group": 1, + "hexcode": "1F3C2", + "label": "snowboarder", + "order": 2504, + "tags": ["ski", "snow", "snowboard", "sport"], + "unicode": "🏂ïļ", + "skins": [ + { + "group": 1, + "hexcode": "1F3C2-1F3FB", + "label": "snowboarder: light skin tone", + "order": 2505, + "unicode": "🏂ðŸŧ" + }, + { + "group": 1, + "hexcode": "1F3C2-1F3FC", + "label": "snowboarder: medium-light skin tone", + "order": 2506, + "unicode": "🏂🏞" + }, + { + "group": 1, + "hexcode": "1F3C2-1F3FD", + "label": "snowboarder: medium skin tone", + "order": 2507, + "unicode": "ðŸ‚ðŸ―" + }, + { + "group": 1, + "hexcode": "1F3C2-1F3FE", + "label": "snowboarder: medium-dark skin tone", + "order": 2508, + "unicode": "🏂ðŸū" + }, + { + "group": 1, + "hexcode": "1F3C2-1F3FF", + "label": "snowboarder: dark skin tone", + "order": 2509, + "unicode": "🏂ðŸŋ" + } + ] + }, + { + "group": 1, + "hexcode": "1F3CC", + "label": "person golfing", + "order": 2511, + "tags": [ + "ball", + "birdie", + "caddy", + "driving", + "golf", + "golfing", + "green", + "person", + "pga", + "putt", + "range", + "tee" + ], + "unicode": "🏌ïļ", + "skins": [ + { + "group": 1, + "hexcode": "1F3CC-1F3FB", + "label": "person golfing: light skin tone", + "order": 2512, + "unicode": "🏌ðŸŧ" + }, + { + "group": 1, + "hexcode": "1F3CC-1F3FC", + "label": "person golfing: medium-light skin tone", + "order": 2513, + "unicode": "🏌🏞" + }, + { + "group": 1, + "hexcode": "1F3CC-1F3FD", + "label": "person golfing: medium skin tone", + "order": 2514, + "unicode": "ðŸŒðŸ―" + }, + { + "group": 1, + "hexcode": "1F3CC-1F3FE", + "label": "person golfing: medium-dark skin tone", + "order": 2515, + "unicode": "🏌ðŸū" + }, + { + "group": 1, + "hexcode": "1F3CC-1F3FF", + "label": "person golfing: dark skin tone", + "order": 2516, + "unicode": "🏌ðŸŋ" + } + ] + }, + { + "group": 1, + "hexcode": "1F3CC-FE0F-200D-2642-FE0F", + "label": "man golfing", + "order": 2517, + "tags": [ + "ball", + "birdie", + "caddy", + "driving", + "golf", + "golfing", + "green", + "man", + "pga", + "putt", + "range", + "tee" + ], + "unicode": "🏌ïļâ€â™‚ïļ", + "skins": [ + { + "group": 1, + "hexcode": "1F3CC-1F3FB-200D-2642-FE0F", + "label": "man golfing: light skin tone", + "order": 2521, + "unicode": "🏌ðŸŧ‍♂ïļ" + }, + { + "group": 1, + "hexcode": "1F3CC-1F3FC-200D-2642-FE0F", + "label": "man golfing: medium-light skin tone", + "order": 2523, + "unicode": "🏌🏞‍♂ïļ" + }, + { + "group": 1, + "hexcode": "1F3CC-1F3FD-200D-2642-FE0F", + "label": "man golfing: medium skin tone", + "order": 2525, + "unicode": "ðŸŒðŸ―â€â™‚ïļ" + }, + { + "group": 1, + "hexcode": "1F3CC-1F3FE-200D-2642-FE0F", + "label": "man golfing: medium-dark skin tone", + "order": 2527, + "unicode": "🏌ðŸū‍♂ïļ" + }, + { + "group": 1, + "hexcode": "1F3CC-1F3FF-200D-2642-FE0F", + "label": "man golfing: dark skin tone", + "order": 2529, + "unicode": "🏌ðŸŋ‍♂ïļ" + } + ] + }, + { + "group": 1, + "hexcode": "1F3CC-FE0F-200D-2640-FE0F", + "label": "woman golfing", + "order": 2531, + "tags": [ + "ball", + "birdie", + "caddy", + "driving", + "golf", + "golfing", + "green", + "pga", + "putt", + "range", + "tee", + "woman" + ], + "unicode": "🏌ïļâ€â™€ïļ", + "skins": [ + { + "group": 1, + "hexcode": "1F3CC-1F3FB-200D-2640-FE0F", + "label": "woman golfing: light skin tone", + "order": 2535, + "unicode": "🏌ðŸŧ‍♀ïļ" + }, + { + "group": 1, + "hexcode": "1F3CC-1F3FC-200D-2640-FE0F", + "label": "woman golfing: medium-light skin tone", + "order": 2537, + "unicode": "🏌🏞‍♀ïļ" + }, + { + "group": 1, + "hexcode": "1F3CC-1F3FD-200D-2640-FE0F", + "label": "woman golfing: medium skin tone", + "order": 2539, + "unicode": "ðŸŒðŸ―â€â™€ïļ" + }, + { + "group": 1, + "hexcode": "1F3CC-1F3FE-200D-2640-FE0F", + "label": "woman golfing: medium-dark skin tone", + "order": 2541, + "unicode": "🏌ðŸū‍♀ïļ" + }, + { + "group": 1, + "hexcode": "1F3CC-1F3FF-200D-2640-FE0F", + "label": "woman golfing: dark skin tone", + "order": 2543, + "unicode": "🏌ðŸŋ‍♀ïļ" + } + ] + }, + { + "group": 1, + "hexcode": "1F3C4", + "label": "person surfing", + "order": 2545, + "tags": [ + "beach", + "ocean", + "person", + "sport", + "surf", + "surfer", + "surfing", + "swell", + "waves" + ], + "unicode": "🏄ïļ", + "skins": [ + { + "group": 1, + "hexcode": "1F3C4-1F3FB", + "label": "person surfing: light skin tone", + "order": 2546, + "unicode": "🏄ðŸŧ" + }, + { + "group": 1, + "hexcode": "1F3C4-1F3FC", + "label": "person surfing: medium-light skin tone", + "order": 2547, + "unicode": "🏄🏞" + }, + { + "group": 1, + "hexcode": "1F3C4-1F3FD", + "label": "person surfing: medium skin tone", + "order": 2548, + "unicode": "ðŸ„ðŸ―" + }, + { + "group": 1, + "hexcode": "1F3C4-1F3FE", + "label": "person surfing: medium-dark skin tone", + "order": 2549, + "unicode": "🏄ðŸū" + }, + { + "group": 1, + "hexcode": "1F3C4-1F3FF", + "label": "person surfing: dark skin tone", + "order": 2550, + "unicode": "🏄ðŸŋ" + } + ] + }, + { + "group": 1, + "hexcode": "1F3C4-200D-2642-FE0F", + "label": "man surfing", + "order": 2551, + "tags": [ + "beach", + "man", + "ocean", + "sport", + "surf", + "surfer", + "surfing", + "swell", + "waves" + ], + "unicode": "🏄‍♂ïļ", + "skins": [ + { + "group": 1, + "hexcode": "1F3C4-1F3FB-200D-2642-FE0F", + "label": "man surfing: light skin tone", + "order": 2553, + "unicode": "🏄ðŸŧ‍♂ïļ" + }, + { + "group": 1, + "hexcode": "1F3C4-1F3FC-200D-2642-FE0F", + "label": "man surfing: medium-light skin tone", + "order": 2555, + "unicode": "🏄🏞‍♂ïļ" + }, + { + "group": 1, + "hexcode": "1F3C4-1F3FD-200D-2642-FE0F", + "label": "man surfing: medium skin tone", + "order": 2557, + "unicode": "ðŸ„ðŸ―â€â™‚ïļ" + }, + { + "group": 1, + "hexcode": "1F3C4-1F3FE-200D-2642-FE0F", + "label": "man surfing: medium-dark skin tone", + "order": 2559, + "unicode": "🏄ðŸū‍♂ïļ" + }, + { + "group": 1, + "hexcode": "1F3C4-1F3FF-200D-2642-FE0F", + "label": "man surfing: dark skin tone", + "order": 2561, + "unicode": "🏄ðŸŋ‍♂ïļ" + } + ] + }, + { + "group": 1, + "hexcode": "1F3C4-200D-2640-FE0F", + "label": "woman surfing", + "order": 2563, + "tags": [ + "beach", + "ocean", + "person", + "sport", + "surf", + "surfer", + "surfing", + "swell", + "waves" + ], + "unicode": "🏄‍♀ïļ", + "skins": [ + { + "group": 1, + "hexcode": "1F3C4-1F3FB-200D-2640-FE0F", + "label": "woman surfing: light skin tone", + "order": 2565, + "unicode": "🏄ðŸŧ‍♀ïļ" + }, + { + "group": 1, + "hexcode": "1F3C4-1F3FC-200D-2640-FE0F", + "label": "woman surfing: medium-light skin tone", + "order": 2567, + "unicode": "🏄🏞‍♀ïļ" + }, + { + "group": 1, + "hexcode": "1F3C4-1F3FD-200D-2640-FE0F", + "label": "woman surfing: medium skin tone", + "order": 2569, + "unicode": "ðŸ„ðŸ―â€â™€ïļ" + }, + { + "group": 1, + "hexcode": "1F3C4-1F3FE-200D-2640-FE0F", + "label": "woman surfing: medium-dark skin tone", + "order": 2571, + "unicode": "🏄ðŸū‍♀ïļ" + }, + { + "group": 1, + "hexcode": "1F3C4-1F3FF-200D-2640-FE0F", + "label": "woman surfing: dark skin tone", + "order": 2573, + "unicode": "🏄ðŸŋ‍♀ïļ" + } + ] + }, + { + "group": 1, + "hexcode": "1F6A3", + "label": "person rowing boat", + "order": 2575, + "tags": [ + "boat", + "canoe", + "cruise", + "fishing", + "lake", + "oar", + "paddle", + "person", + "raft", + "river", + "row", + "rowboat", + "rowing" + ], + "unicode": "ðŸšĢ", + "skins": [ + { + "group": 1, + "hexcode": "1F6A3-1F3FB", + "label": "person rowing boat: light skin tone", + "order": 2576, + "unicode": "ðŸšĢðŸŧ" + }, + { + "group": 1, + "hexcode": "1F6A3-1F3FC", + "label": "person rowing boat: medium-light skin tone", + "order": 2577, + "unicode": "ðŸšĢ🏞" + }, + { + "group": 1, + "hexcode": "1F6A3-1F3FD", + "label": "person rowing boat: medium skin tone", + "order": 2578, + "unicode": "ðŸšĢðŸ―" + }, + { + "group": 1, + "hexcode": "1F6A3-1F3FE", + "label": "person rowing boat: medium-dark skin tone", + "order": 2579, + "unicode": "ðŸšĢðŸū" + }, + { + "group": 1, + "hexcode": "1F6A3-1F3FF", + "label": "person rowing boat: dark skin tone", + "order": 2580, + "unicode": "ðŸšĢðŸŋ" + } + ] + }, + { + "group": 1, + "hexcode": "1F6A3-200D-2642-FE0F", + "label": "man rowing boat", + "order": 2581, + "tags": [ + "boat", + "canoe", + "cruise", + "fishing", + "lake", + "man", + "oar", + "paddle", + "raft", + "river", + "row", + "rowboat", + "rowing" + ], + "unicode": "ðŸšĢ‍♂ïļ", + "skins": [ + { + "group": 1, + "hexcode": "1F6A3-1F3FB-200D-2642-FE0F", + "label": "man rowing boat: light skin tone", + "order": 2583, + "unicode": "ðŸšĢðŸŧ‍♂ïļ" + }, + { + "group": 1, + "hexcode": "1F6A3-1F3FC-200D-2642-FE0F", + "label": "man rowing boat: medium-light skin tone", + "order": 2585, + "unicode": "ðŸšĢ🏞‍♂ïļ" + }, + { + "group": 1, + "hexcode": "1F6A3-1F3FD-200D-2642-FE0F", + "label": "man rowing boat: medium skin tone", + "order": 2587, + "unicode": "ðŸšĢðŸ―â€â™‚ïļ" + }, + { + "group": 1, + "hexcode": "1F6A3-1F3FE-200D-2642-FE0F", + "label": "man rowing boat: medium-dark skin tone", + "order": 2589, + "unicode": "ðŸšĢðŸū‍♂ïļ" + }, + { + "group": 1, + "hexcode": "1F6A3-1F3FF-200D-2642-FE0F", + "label": "man rowing boat: dark skin tone", + "order": 2591, + "unicode": "ðŸšĢðŸŋ‍♂ïļ" + } + ] + }, + { + "group": 1, + "hexcode": "1F6A3-200D-2640-FE0F", + "label": "woman rowing boat", + "order": 2593, + "tags": [ + "boat", + "canoe", + "cruise", + "fishing", + "lake", + "oar", + "paddle", + "raft", + "river", + "row", + "rowboat", + "rowing", + "woman" + ], + "unicode": "ðŸšĢ‍♀ïļ", + "skins": [ + { + "group": 1, + "hexcode": "1F6A3-1F3FB-200D-2640-FE0F", + "label": "woman rowing boat: light skin tone", + "order": 2595, + "unicode": "ðŸšĢðŸŧ‍♀ïļ" + }, + { + "group": 1, + "hexcode": "1F6A3-1F3FC-200D-2640-FE0F", + "label": "woman rowing boat: medium-light skin tone", + "order": 2597, + "unicode": "ðŸšĢ🏞‍♀ïļ" + }, + { + "group": 1, + "hexcode": "1F6A3-1F3FD-200D-2640-FE0F", + "label": "woman rowing boat: medium skin tone", + "order": 2599, + "unicode": "ðŸšĢðŸ―â€â™€ïļ" + }, + { + "group": 1, + "hexcode": "1F6A3-1F3FE-200D-2640-FE0F", + "label": "woman rowing boat: medium-dark skin tone", + "order": 2601, + "unicode": "ðŸšĢðŸū‍♀ïļ" + }, + { + "group": 1, + "hexcode": "1F6A3-1F3FF-200D-2640-FE0F", + "label": "woman rowing boat: dark skin tone", + "order": 2603, + "unicode": "ðŸšĢðŸŋ‍♀ïļ" + } + ] + }, + { + "group": 1, + "hexcode": "1F3CA", + "label": "person swimming", + "order": 2605, + "tags": [ + "freestyle", + "person", + "sport", + "swim", + "swimmer", + "swimming", + "triathlon" + ], + "unicode": "🏊ïļ", + "skins": [ + { + "group": 1, + "hexcode": "1F3CA-1F3FB", + "label": "person swimming: light skin tone", + "order": 2606, + "unicode": "🏊ðŸŧ" + }, + { + "group": 1, + "hexcode": "1F3CA-1F3FC", + "label": "person swimming: medium-light skin tone", + "order": 2607, + "unicode": "🏊🏞" + }, + { + "group": 1, + "hexcode": "1F3CA-1F3FD", + "label": "person swimming: medium skin tone", + "order": 2608, + "unicode": "ðŸŠðŸ―" + }, + { + "group": 1, + "hexcode": "1F3CA-1F3FE", + "label": "person swimming: medium-dark skin tone", + "order": 2609, + "unicode": "🏊ðŸū" + }, + { + "group": 1, + "hexcode": "1F3CA-1F3FF", + "label": "person swimming: dark skin tone", + "order": 2610, + "unicode": "🏊ðŸŋ" + } + ] + }, + { + "group": 1, + "hexcode": "1F3CA-200D-2642-FE0F", + "label": "man swimming", + "order": 2611, + "tags": [ + "freestyle", + "man", + "sport", + "swim", + "swimmer", + "swimming", + "triathlon" + ], + "unicode": "🏊‍♂ïļ", + "skins": [ + { + "group": 1, + "hexcode": "1F3CA-1F3FB-200D-2642-FE0F", + "label": "man swimming: light skin tone", + "order": 2613, + "unicode": "🏊ðŸŧ‍♂ïļ" + }, + { + "group": 1, + "hexcode": "1F3CA-1F3FC-200D-2642-FE0F", + "label": "man swimming: medium-light skin tone", + "order": 2615, + "unicode": "🏊🏞‍♂ïļ" + }, + { + "group": 1, + "hexcode": "1F3CA-1F3FD-200D-2642-FE0F", + "label": "man swimming: medium skin tone", + "order": 2617, + "unicode": "ðŸŠðŸ―â€â™‚ïļ" + }, + { + "group": 1, + "hexcode": "1F3CA-1F3FE-200D-2642-FE0F", + "label": "man swimming: medium-dark skin tone", + "order": 2619, + "unicode": "🏊ðŸū‍♂ïļ" + }, + { + "group": 1, + "hexcode": "1F3CA-1F3FF-200D-2642-FE0F", + "label": "man swimming: dark skin tone", + "order": 2621, + "unicode": "🏊ðŸŋ‍♂ïļ" + } + ] + }, + { + "group": 1, + "hexcode": "1F3CA-200D-2640-FE0F", + "label": "woman swimming", + "order": 2623, + "tags": [ + "freestyle", + "man", + "sport", + "swim", + "swimmer", + "swimming", + "triathlon" + ], + "unicode": "🏊‍♀ïļ", + "skins": [ + { + "group": 1, + "hexcode": "1F3CA-1F3FB-200D-2640-FE0F", + "label": "woman swimming: light skin tone", + "order": 2625, + "unicode": "🏊ðŸŧ‍♀ïļ" + }, + { + "group": 1, + "hexcode": "1F3CA-1F3FC-200D-2640-FE0F", + "label": "woman swimming: medium-light skin tone", + "order": 2627, + "unicode": "🏊🏞‍♀ïļ" + }, + { + "group": 1, + "hexcode": "1F3CA-1F3FD-200D-2640-FE0F", + "label": "woman swimming: medium skin tone", + "order": 2629, + "unicode": "ðŸŠðŸ―â€â™€ïļ" + }, + { + "group": 1, + "hexcode": "1F3CA-1F3FE-200D-2640-FE0F", + "label": "woman swimming: medium-dark skin tone", + "order": 2631, + "unicode": "🏊ðŸū‍♀ïļ" + }, + { + "group": 1, + "hexcode": "1F3CA-1F3FF-200D-2640-FE0F", + "label": "woman swimming: dark skin tone", + "order": 2633, + "unicode": "🏊ðŸŋ‍♀ïļ" + } + ] + }, + { + "group": 1, + "hexcode": "26F9", + "label": "person bouncing ball", + "order": 2636, + "tags": [ + "athletic", + "ball", + "basketball", + "bouncing", + "championship", + "dribble", + "net", + "person", + "player", + "throw" + ], + "unicode": "â›đïļ", + "skins": [ + { + "group": 1, + "hexcode": "26F9-1F3FB", + "label": "person bouncing ball: light skin tone", + "order": 2637, + "unicode": "â›đðŸŧ" + }, + { + "group": 1, + "hexcode": "26F9-1F3FC", + "label": "person bouncing ball: medium-light skin tone", + "order": 2638, + "unicode": "â›đ🏞" + }, + { + "group": 1, + "hexcode": "26F9-1F3FD", + "label": "person bouncing ball: medium skin tone", + "order": 2639, + "unicode": "â›đðŸ―" + }, + { + "group": 1, + "hexcode": "26F9-1F3FE", + "label": "person bouncing ball: medium-dark skin tone", + "order": 2640, + "unicode": "â›đðŸū" + }, + { + "group": 1, + "hexcode": "26F9-1F3FF", + "label": "person bouncing ball: dark skin tone", + "order": 2641, + "unicode": "â›đðŸŋ" + } + ] + }, + { + "group": 1, + "hexcode": "26F9-FE0F-200D-2642-FE0F", + "label": "man bouncing ball", + "order": 2642, + "tags": [ + "athletic", + "ball", + "basketball", + "bouncing", + "championship", + "dribble", + "man", + "net", + "player", + "throw" + ], + "unicode": "â›đïļâ€â™‚ïļ", + "skins": [ + { + "group": 1, + "hexcode": "26F9-1F3FB-200D-2642-FE0F", + "label": "man bouncing ball: light skin tone", + "order": 2646, + "unicode": "â›đðŸŧ‍♂ïļ" + }, + { + "group": 1, + "hexcode": "26F9-1F3FC-200D-2642-FE0F", + "label": "man bouncing ball: medium-light skin tone", + "order": 2648, + "unicode": "â›đ🏞‍♂ïļ" + }, + { + "group": 1, + "hexcode": "26F9-1F3FD-200D-2642-FE0F", + "label": "man bouncing ball: medium skin tone", + "order": 2650, + "unicode": "â›đðŸ―â€â™‚ïļ" + }, + { + "group": 1, + "hexcode": "26F9-1F3FE-200D-2642-FE0F", + "label": "man bouncing ball: medium-dark skin tone", + "order": 2652, + "unicode": "â›đðŸū‍♂ïļ" + }, + { + "group": 1, + "hexcode": "26F9-1F3FF-200D-2642-FE0F", + "label": "man bouncing ball: dark skin tone", + "order": 2654, + "unicode": "â›đðŸŋ‍♂ïļ" + } + ] + }, + { + "group": 1, + "hexcode": "26F9-FE0F-200D-2640-FE0F", + "label": "woman bouncing ball", + "order": 2656, + "tags": [ + "athletic", + "ball", + "basketball", + "bouncing", + "championship", + "dribble", + "net", + "player", + "throw", + "woman" + ], + "unicode": "â›đïļâ€â™€ïļ", + "skins": [ + { + "group": 1, + "hexcode": "26F9-1F3FB-200D-2640-FE0F", + "label": "woman bouncing ball: light skin tone", + "order": 2660, + "unicode": "â›đðŸŧ‍♀ïļ" + }, + { + "group": 1, + "hexcode": "26F9-1F3FC-200D-2640-FE0F", + "label": "woman bouncing ball: medium-light skin tone", + "order": 2662, + "unicode": "â›đ🏞‍♀ïļ" + }, + { + "group": 1, + "hexcode": "26F9-1F3FD-200D-2640-FE0F", + "label": "woman bouncing ball: medium skin tone", + "order": 2664, + "unicode": "â›đðŸ―â€â™€ïļ" + }, + { + "group": 1, + "hexcode": "26F9-1F3FE-200D-2640-FE0F", + "label": "woman bouncing ball: medium-dark skin tone", + "order": 2666, + "unicode": "â›đðŸū‍♀ïļ" + }, + { + "group": 1, + "hexcode": "26F9-1F3FF-200D-2640-FE0F", + "label": "woman bouncing ball: dark skin tone", + "order": 2668, + "unicode": "â›đðŸŋ‍♀ïļ" + } + ] + }, + { + "group": 1, + "hexcode": "1F3CB", + "label": "person lifting weights", + "order": 2671, + "tags": [ + "barbell", + "bodybuilder", + "deadlift", + "lifter", + "lifting", + "person", + "powerlifting", + "weight", + "weightlifter", + "weights", + "workout" + ], + "unicode": "🏋ïļ", + "skins": [ + { + "group": 1, + "hexcode": "1F3CB-1F3FB", + "label": "person lifting weights: light skin tone", + "order": 2672, + "unicode": "🏋ðŸŧ" + }, + { + "group": 1, + "hexcode": "1F3CB-1F3FC", + "label": "person lifting weights: medium-light skin tone", + "order": 2673, + "unicode": "🏋🏞" + }, + { + "group": 1, + "hexcode": "1F3CB-1F3FD", + "label": "person lifting weights: medium skin tone", + "order": 2674, + "unicode": "ðŸ‹ðŸ―" + }, + { + "group": 1, + "hexcode": "1F3CB-1F3FE", + "label": "person lifting weights: medium-dark skin tone", + "order": 2675, + "unicode": "🏋ðŸū" + }, + { + "group": 1, + "hexcode": "1F3CB-1F3FF", + "label": "person lifting weights: dark skin tone", + "order": 2676, + "unicode": "🏋ðŸŋ" + } + ] + }, + { + "group": 1, + "hexcode": "1F3CB-FE0F-200D-2642-FE0F", + "label": "man lifting weights", + "order": 2677, + "tags": [ + "barbell", + "bodybuilder", + "deadlift", + "lifter", + "lifting", + "man", + "powerlifting", + "weight", + "weightlifter", + "weights", + "workout" + ], + "unicode": "🏋ïļâ€â™‚ïļ", + "skins": [ + { + "group": 1, + "hexcode": "1F3CB-1F3FB-200D-2642-FE0F", + "label": "man lifting weights: light skin tone", + "order": 2681, + "unicode": "🏋ðŸŧ‍♂ïļ" + }, + { + "group": 1, + "hexcode": "1F3CB-1F3FC-200D-2642-FE0F", + "label": "man lifting weights: medium-light skin tone", + "order": 2683, + "unicode": "🏋🏞‍♂ïļ" + }, + { + "group": 1, + "hexcode": "1F3CB-1F3FD-200D-2642-FE0F", + "label": "man lifting weights: medium skin tone", + "order": 2685, + "unicode": "ðŸ‹ðŸ―â€â™‚ïļ" + }, + { + "group": 1, + "hexcode": "1F3CB-1F3FE-200D-2642-FE0F", + "label": "man lifting weights: medium-dark skin tone", + "order": 2687, + "unicode": "🏋ðŸū‍♂ïļ" + }, + { + "group": 1, + "hexcode": "1F3CB-1F3FF-200D-2642-FE0F", + "label": "man lifting weights: dark skin tone", + "order": 2689, + "unicode": "🏋ðŸŋ‍♂ïļ" + } + ] + }, + { + "group": 1, + "hexcode": "1F3CB-FE0F-200D-2640-FE0F", + "label": "woman lifting weights", + "order": 2691, + "tags": [ + "barbell", + "bodybuilder", + "deadlift", + "lifter", + "lifting", + "powerlifting", + "weight", + "weightlifter", + "weights", + "woman", + "workout" + ], + "unicode": "🏋ïļâ€â™€ïļ", + "skins": [ + { + "group": 1, + "hexcode": "1F3CB-1F3FB-200D-2640-FE0F", + "label": "woman lifting weights: light skin tone", + "order": 2695, + "unicode": "🏋ðŸŧ‍♀ïļ" + }, + { + "group": 1, + "hexcode": "1F3CB-1F3FC-200D-2640-FE0F", + "label": "woman lifting weights: medium-light skin tone", + "order": 2697, + "unicode": "🏋🏞‍♀ïļ" + }, + { + "group": 1, + "hexcode": "1F3CB-1F3FD-200D-2640-FE0F", + "label": "woman lifting weights: medium skin tone", + "order": 2699, + "unicode": "ðŸ‹ðŸ―â€â™€ïļ" + }, + { + "group": 1, + "hexcode": "1F3CB-1F3FE-200D-2640-FE0F", + "label": "woman lifting weights: medium-dark skin tone", + "order": 2701, + "unicode": "🏋ðŸū‍♀ïļ" + }, + { + "group": 1, + "hexcode": "1F3CB-1F3FF-200D-2640-FE0F", + "label": "woman lifting weights: dark skin tone", + "order": 2703, + "unicode": "🏋ðŸŋ‍♀ïļ" + } + ] + }, + { + "group": 1, + "hexcode": "1F6B4", + "label": "person biking", + "order": 2705, + "tags": [ + "bicycle", + "bicyclist", + "bike", + "biking", + "cycle", + "cyclist", + "person", + "riding", + "sport" + ], + "unicode": "ðŸšī", + "skins": [ + { + "group": 1, + "hexcode": "1F6B4-1F3FB", + "label": "person biking: light skin tone", + "order": 2706, + "unicode": "ðŸšīðŸŧ" + }, + { + "group": 1, + "hexcode": "1F6B4-1F3FC", + "label": "person biking: medium-light skin tone", + "order": 2707, + "unicode": "ðŸšī🏞" + }, + { + "group": 1, + "hexcode": "1F6B4-1F3FD", + "label": "person biking: medium skin tone", + "order": 2708, + "unicode": "ðŸšīðŸ―" + }, + { + "group": 1, + "hexcode": "1F6B4-1F3FE", + "label": "person biking: medium-dark skin tone", + "order": 2709, + "unicode": "ðŸšīðŸū" + }, + { + "group": 1, + "hexcode": "1F6B4-1F3FF", + "label": "person biking: dark skin tone", + "order": 2710, + "unicode": "ðŸšīðŸŋ" + } + ] + }, + { + "group": 1, + "hexcode": "1F6B4-200D-2642-FE0F", + "label": "man biking", + "order": 2711, + "tags": [ + "bicycle", + "bicyclist", + "bike", + "biking", + "cycle", + "cyclist", + "man", + "riding", + "sport" + ], + "unicode": "ðŸšī‍♂ïļ", + "skins": [ + { + "group": 1, + "hexcode": "1F6B4-1F3FB-200D-2642-FE0F", + "label": "man biking: light skin tone", + "order": 2713, + "unicode": "ðŸšīðŸŧ‍♂ïļ" + }, + { + "group": 1, + "hexcode": "1F6B4-1F3FC-200D-2642-FE0F", + "label": "man biking: medium-light skin tone", + "order": 2715, + "unicode": "ðŸšī🏞‍♂ïļ" + }, + { + "group": 1, + "hexcode": "1F6B4-1F3FD-200D-2642-FE0F", + "label": "man biking: medium skin tone", + "order": 2717, + "unicode": "ðŸšīðŸ―â€â™‚ïļ" + }, + { + "group": 1, + "hexcode": "1F6B4-1F3FE-200D-2642-FE0F", + "label": "man biking: medium-dark skin tone", + "order": 2719, + "unicode": "ðŸšīðŸū‍♂ïļ" + }, + { + "group": 1, + "hexcode": "1F6B4-1F3FF-200D-2642-FE0F", + "label": "man biking: dark skin tone", + "order": 2721, + "unicode": "ðŸšīðŸŋ‍♂ïļ" + } + ] + }, + { + "group": 1, + "hexcode": "1F6B4-200D-2640-FE0F", + "label": "woman biking", + "order": 2723, + "tags": [ + "bicycle", + "bicyclist", + "bike", + "biking", + "cycle", + "cyclist", + "riding", + "sport", + "woman" + ], + "unicode": "ðŸšī‍♀ïļ", + "skins": [ + { + "group": 1, + "hexcode": "1F6B4-1F3FB-200D-2640-FE0F", + "label": "woman biking: light skin tone", + "order": 2725, + "unicode": "ðŸšīðŸŧ‍♀ïļ" + }, + { + "group": 1, + "hexcode": "1F6B4-1F3FC-200D-2640-FE0F", + "label": "woman biking: medium-light skin tone", + "order": 2727, + "unicode": "ðŸšī🏞‍♀ïļ" + }, + { + "group": 1, + "hexcode": "1F6B4-1F3FD-200D-2640-FE0F", + "label": "woman biking: medium skin tone", + "order": 2729, + "unicode": "ðŸšīðŸ―â€â™€ïļ" + }, + { + "group": 1, + "hexcode": "1F6B4-1F3FE-200D-2640-FE0F", + "label": "woman biking: medium-dark skin tone", + "order": 2731, + "unicode": "ðŸšīðŸū‍♀ïļ" + }, + { + "group": 1, + "hexcode": "1F6B4-1F3FF-200D-2640-FE0F", + "label": "woman biking: dark skin tone", + "order": 2733, + "unicode": "ðŸšīðŸŋ‍♀ïļ" + } + ] + }, + { + "group": 1, + "hexcode": "1F6B5", + "label": "person mountain biking", + "order": 2735, + "tags": [ + "bicycle", + "bicyclist", + "bike", + "biking", + "cycle", + "cyclist", + "mountain", + "person", + "riding", + "sport" + ], + "unicode": "ðŸšĩ", + "skins": [ + { + "group": 1, + "hexcode": "1F6B5-1F3FB", + "label": "person mountain biking: light skin tone", + "order": 2736, + "unicode": "ðŸšĩðŸŧ" + }, + { + "group": 1, + "hexcode": "1F6B5-1F3FC", + "label": "person mountain biking: medium-light skin tone", + "order": 2737, + "unicode": "ðŸšĩ🏞" + }, + { + "group": 1, + "hexcode": "1F6B5-1F3FD", + "label": "person mountain biking: medium skin tone", + "order": 2738, + "unicode": "ðŸšĩðŸ―" + }, + { + "group": 1, + "hexcode": "1F6B5-1F3FE", + "label": "person mountain biking: medium-dark skin tone", + "order": 2739, + "unicode": "ðŸšĩðŸū" + }, + { + "group": 1, + "hexcode": "1F6B5-1F3FF", + "label": "person mountain biking: dark skin tone", + "order": 2740, + "unicode": "ðŸšĩðŸŋ" + } + ] + }, + { + "group": 1, + "hexcode": "1F6B5-200D-2642-FE0F", + "label": "man mountain biking", + "order": 2741, + "tags": [ + "bicycle", + "bicyclist", + "bike", + "biking", + "cycle", + "cyclist", + "man", + "mountain", + "riding", + "sport" + ], + "unicode": "ðŸšĩ‍♂ïļ", + "skins": [ + { + "group": 1, + "hexcode": "1F6B5-1F3FB-200D-2642-FE0F", + "label": "man mountain biking: light skin tone", + "order": 2743, + "unicode": "ðŸšĩðŸŧ‍♂ïļ" + }, + { + "group": 1, + "hexcode": "1F6B5-1F3FC-200D-2642-FE0F", + "label": "man mountain biking: medium-light skin tone", + "order": 2745, + "unicode": "ðŸšĩ🏞‍♂ïļ" + }, + { + "group": 1, + "hexcode": "1F6B5-1F3FD-200D-2642-FE0F", + "label": "man mountain biking: medium skin tone", + "order": 2747, + "unicode": "ðŸšĩðŸ―â€â™‚ïļ" + }, + { + "group": 1, + "hexcode": "1F6B5-1F3FE-200D-2642-FE0F", + "label": "man mountain biking: medium-dark skin tone", + "order": 2749, + "unicode": "ðŸšĩðŸū‍♂ïļ" + }, + { + "group": 1, + "hexcode": "1F6B5-1F3FF-200D-2642-FE0F", + "label": "man mountain biking: dark skin tone", + "order": 2751, + "unicode": "ðŸšĩðŸŋ‍♂ïļ" + } + ] + }, + { + "group": 1, + "hexcode": "1F6B5-200D-2640-FE0F", + "label": "woman mountain biking", + "order": 2753, + "tags": [ + "bicycle", + "bicyclist", + "bike", + "biking", + "cycle", + "cyclist", + "mountain", + "riding", + "sport", + "woman" + ], + "unicode": "ðŸšĩ‍♀ïļ", + "skins": [ + { + "group": 1, + "hexcode": "1F6B5-1F3FB-200D-2640-FE0F", + "label": "woman mountain biking: light skin tone", + "order": 2755, + "unicode": "ðŸšĩðŸŧ‍♀ïļ" + }, + { + "group": 1, + "hexcode": "1F6B5-1F3FC-200D-2640-FE0F", + "label": "woman mountain biking: medium-light skin tone", + "order": 2757, + "unicode": "ðŸšĩ🏞‍♀ïļ" + }, + { + "group": 1, + "hexcode": "1F6B5-1F3FD-200D-2640-FE0F", + "label": "woman mountain biking: medium skin tone", + "order": 2759, + "unicode": "ðŸšĩðŸ―â€â™€ïļ" + }, + { + "group": 1, + "hexcode": "1F6B5-1F3FE-200D-2640-FE0F", + "label": "woman mountain biking: medium-dark skin tone", + "order": 2761, + "unicode": "ðŸšĩðŸū‍♀ïļ" + }, + { + "group": 1, + "hexcode": "1F6B5-1F3FF-200D-2640-FE0F", + "label": "woman mountain biking: dark skin tone", + "order": 2763, + "unicode": "ðŸšĩðŸŋ‍♀ïļ" + } + ] + }, + { + "group": 1, + "hexcode": "1F938", + "label": "person cartwheeling", + "order": 2765, + "tags": [ + "active", + "cartwheel", + "cartwheeling", + "excited", + "flip", + "gymnastics", + "happy", + "person", + "somersault" + ], + "unicode": "ðŸĪļ", + "skins": [ + { + "group": 1, + "hexcode": "1F938-1F3FB", + "label": "person cartwheeling: light skin tone", + "order": 2766, + "unicode": "ðŸĪļðŸŧ" + }, + { + "group": 1, + "hexcode": "1F938-1F3FC", + "label": "person cartwheeling: medium-light skin tone", + "order": 2767, + "unicode": "ðŸĪļ🏞" + }, + { + "group": 1, + "hexcode": "1F938-1F3FD", + "label": "person cartwheeling: medium skin tone", + "order": 2768, + "unicode": "ðŸĪļðŸ―" + }, + { + "group": 1, + "hexcode": "1F938-1F3FE", + "label": "person cartwheeling: medium-dark skin tone", + "order": 2769, + "unicode": "ðŸĪļðŸū" + }, + { + "group": 1, + "hexcode": "1F938-1F3FF", + "label": "person cartwheeling: dark skin tone", + "order": 2770, + "unicode": "ðŸĪļðŸŋ" + } + ] + }, + { + "group": 1, + "hexcode": "1F938-200D-2642-FE0F", + "label": "man cartwheeling", + "order": 2771, + "tags": [ + "active", + "cartwheel", + "cartwheeling", + "excited", + "flip", + "gymnastics", + "happy", + "man", + "somersault" + ], + "unicode": "ðŸĪļ‍♂ïļ", + "skins": [ + { + "group": 1, + "hexcode": "1F938-1F3FB-200D-2642-FE0F", + "label": "man cartwheeling: light skin tone", + "order": 2773, + "unicode": "ðŸĪļðŸŧ‍♂ïļ" + }, + { + "group": 1, + "hexcode": "1F938-1F3FC-200D-2642-FE0F", + "label": "man cartwheeling: medium-light skin tone", + "order": 2775, + "unicode": "ðŸĪļ🏞‍♂ïļ" + }, + { + "group": 1, + "hexcode": "1F938-1F3FD-200D-2642-FE0F", + "label": "man cartwheeling: medium skin tone", + "order": 2777, + "unicode": "ðŸĪļðŸ―â€â™‚ïļ" + }, + { + "group": 1, + "hexcode": "1F938-1F3FE-200D-2642-FE0F", + "label": "man cartwheeling: medium-dark skin tone", + "order": 2779, + "unicode": "ðŸĪļðŸū‍♂ïļ" + }, + { + "group": 1, + "hexcode": "1F938-1F3FF-200D-2642-FE0F", + "label": "man cartwheeling: dark skin tone", + "order": 2781, + "unicode": "ðŸĪļðŸŋ‍♂ïļ" + } + ] + }, + { + "group": 1, + "hexcode": "1F938-200D-2640-FE0F", + "label": "woman cartwheeling", + "order": 2783, + "tags": [ + "active", + "cartwheel", + "cartwheeling", + "excited", + "flip", + "gymnastics", + "happy", + "somersault", + "woman" + ], + "unicode": "ðŸĪļ‍♀ïļ", + "skins": [ + { + "group": 1, + "hexcode": "1F938-1F3FB-200D-2640-FE0F", + "label": "woman cartwheeling: light skin tone", + "order": 2785, + "unicode": "ðŸĪļðŸŧ‍♀ïļ" + }, + { + "group": 1, + "hexcode": "1F938-1F3FC-200D-2640-FE0F", + "label": "woman cartwheeling: medium-light skin tone", + "order": 2787, + "unicode": "ðŸĪļ🏞‍♀ïļ" + }, + { + "group": 1, + "hexcode": "1F938-1F3FD-200D-2640-FE0F", + "label": "woman cartwheeling: medium skin tone", + "order": 2789, + "unicode": "ðŸĪļðŸ―â€â™€ïļ" + }, + { + "group": 1, + "hexcode": "1F938-1F3FE-200D-2640-FE0F", + "label": "woman cartwheeling: medium-dark skin tone", + "order": 2791, + "unicode": "ðŸĪļðŸū‍♀ïļ" + }, + { + "group": 1, + "hexcode": "1F938-1F3FF-200D-2640-FE0F", + "label": "woman cartwheeling: dark skin tone", + "order": 2793, + "unicode": "ðŸĪļðŸŋ‍♀ïļ" + } + ] + }, + { + "group": 1, + "hexcode": "1F93C", + "label": "people wrestling", + "order": 2795, + "tags": [ + "combat", + "duel", + "grapple", + "people", + "ring", + "tournament", + "wrestle", + "wrestling" + ], + "unicode": "ðŸĪž" + }, + { + "group": 1, + "hexcode": "1F93C-200D-2642-FE0F", + "label": "men wrestling", + "order": 2796, + "tags": [ + "combat", + "duel", + "grapple", + "men", + "ring", + "tournament", + "wrestle", + "wrestling" + ], + "unicode": "ðŸĪžâ€â™‚ïļ" + }, + { + "group": 1, + "hexcode": "1F93C-200D-2640-FE0F", + "label": "women wrestling", + "order": 2798, + "tags": [ + "combat", + "duel", + "grapple", + "ring", + "tournament", + "women", + "wrestle", + "wrestling" + ], + "unicode": "ðŸĪžâ€â™€ïļ" + }, + { + "group": 1, + "hexcode": "1F93D", + "label": "person playing water polo", + "order": 2800, + "tags": [ + "person", + "playing", + "polo", + "sport", + "swimming", + "water", + "waterpolo" + ], + "unicode": "ðŸĪ―", + "skins": [ + { + "group": 1, + "hexcode": "1F93D-1F3FB", + "label": "person playing water polo: light skin tone", + "order": 2801, + "unicode": "ðŸĪ―ðŸŧ" + }, + { + "group": 1, + "hexcode": "1F93D-1F3FC", + "label": "person playing water polo: medium-light skin tone", + "order": 2802, + "unicode": "ðŸĪ―🏞" + }, + { + "group": 1, + "hexcode": "1F93D-1F3FD", + "label": "person playing water polo: medium skin tone", + "order": 2803, + "unicode": "ðŸĪ―ðŸ―" + }, + { + "group": 1, + "hexcode": "1F93D-1F3FE", + "label": "person playing water polo: medium-dark skin tone", + "order": 2804, + "unicode": "ðŸĪ―ðŸū" + }, + { + "group": 1, + "hexcode": "1F93D-1F3FF", + "label": "person playing water polo: dark skin tone", + "order": 2805, + "unicode": "ðŸĪ―ðŸŋ" + } + ] + }, + { + "group": 1, + "hexcode": "1F93D-200D-2642-FE0F", + "label": "man playing water polo", + "order": 2806, + "tags": [ + "man", + "playing", + "polo", + "sport", + "swimming", + "water", + "waterpolo" + ], + "unicode": "ðŸĪ―‍♂ïļ", + "skins": [ + { + "group": 1, + "hexcode": "1F93D-1F3FB-200D-2642-FE0F", + "label": "man playing water polo: light skin tone", + "order": 2808, + "unicode": "ðŸĪ―ðŸŧ‍♂ïļ" + }, + { + "group": 1, + "hexcode": "1F93D-1F3FC-200D-2642-FE0F", + "label": "man playing water polo: medium-light skin tone", + "order": 2810, + "unicode": "ðŸĪ―🏞‍♂ïļ" + }, + { + "group": 1, + "hexcode": "1F93D-1F3FD-200D-2642-FE0F", + "label": "man playing water polo: medium skin tone", + "order": 2812, + "unicode": "ðŸĪ―ðŸ―â€â™‚ïļ" + }, + { + "group": 1, + "hexcode": "1F93D-1F3FE-200D-2642-FE0F", + "label": "man playing water polo: medium-dark skin tone", + "order": 2814, + "unicode": "ðŸĪ―ðŸū‍♂ïļ" + }, + { + "group": 1, + "hexcode": "1F93D-1F3FF-200D-2642-FE0F", + "label": "man playing water polo: dark skin tone", + "order": 2816, + "unicode": "ðŸĪ―ðŸŋ‍♂ïļ" + } + ] + }, + { + "group": 1, + "hexcode": "1F93D-200D-2640-FE0F", + "label": "woman playing water polo", + "order": 2818, + "tags": [ + "playing", + "polo", + "sport", + "swimming", + "water", + "waterpolo", + "woman" + ], + "unicode": "ðŸĪ―‍♀ïļ", + "skins": [ + { + "group": 1, + "hexcode": "1F93D-1F3FB-200D-2640-FE0F", + "label": "woman playing water polo: light skin tone", + "order": 2820, + "unicode": "ðŸĪ―ðŸŧ‍♀ïļ" + }, + { + "group": 1, + "hexcode": "1F93D-1F3FC-200D-2640-FE0F", + "label": "woman playing water polo: medium-light skin tone", + "order": 2822, + "unicode": "ðŸĪ―🏞‍♀ïļ" + }, + { + "group": 1, + "hexcode": "1F93D-1F3FD-200D-2640-FE0F", + "label": "woman playing water polo: medium skin tone", + "order": 2824, + "unicode": "ðŸĪ―ðŸ―â€â™€ïļ" + }, + { + "group": 1, + "hexcode": "1F93D-1F3FE-200D-2640-FE0F", + "label": "woman playing water polo: medium-dark skin tone", + "order": 2826, + "unicode": "ðŸĪ―ðŸū‍♀ïļ" + }, + { + "group": 1, + "hexcode": "1F93D-1F3FF-200D-2640-FE0F", + "label": "woman playing water polo: dark skin tone", + "order": 2828, + "unicode": "ðŸĪ―ðŸŋ‍♀ïļ" + } + ] + }, + { + "group": 1, + "hexcode": "1F93E", + "label": "person playing handball", + "order": 2830, + "tags": [ + "athletics", + "ball", + "catch", + "chuck", + "handball", + "hurl", + "lob", + "person", + "pitch", + "playing", + "sport", + "throw", + "toss" + ], + "unicode": "ðŸĪū", + "skins": [ + { + "group": 1, + "hexcode": "1F93E-1F3FB", + "label": "person playing handball: light skin tone", + "order": 2831, + "unicode": "ðŸĪūðŸŧ" + }, + { + "group": 1, + "hexcode": "1F93E-1F3FC", + "label": "person playing handball: medium-light skin tone", + "order": 2832, + "unicode": "ðŸĪū🏞" + }, + { + "group": 1, + "hexcode": "1F93E-1F3FD", + "label": "person playing handball: medium skin tone", + "order": 2833, + "unicode": "ðŸĪūðŸ―" + }, + { + "group": 1, + "hexcode": "1F93E-1F3FE", + "label": "person playing handball: medium-dark skin tone", + "order": 2834, + "unicode": "ðŸĪūðŸū" + }, + { + "group": 1, + "hexcode": "1F93E-1F3FF", + "label": "person playing handball: dark skin tone", + "order": 2835, + "unicode": "ðŸĪūðŸŋ" + } + ] + }, + { + "group": 1, + "hexcode": "1F93E-200D-2642-FE0F", + "label": "man playing handball", + "order": 2836, + "tags": [ + "athletics", + "ball", + "catch", + "chuck", + "handball", + "hurl", + "lob", + "man", + "pitch", + "playing", + "sport", + "throw", + "toss" + ], + "unicode": "ðŸĪū‍♂ïļ", + "skins": [ + { + "group": 1, + "hexcode": "1F93E-1F3FB-200D-2642-FE0F", + "label": "man playing handball: light skin tone", + "order": 2838, + "unicode": "ðŸĪūðŸŧ‍♂ïļ" + }, + { + "group": 1, + "hexcode": "1F93E-1F3FC-200D-2642-FE0F", + "label": "man playing handball: medium-light skin tone", + "order": 2840, + "unicode": "ðŸĪū🏞‍♂ïļ" + }, + { + "group": 1, + "hexcode": "1F93E-1F3FD-200D-2642-FE0F", + "label": "man playing handball: medium skin tone", + "order": 2842, + "unicode": "ðŸĪūðŸ―â€â™‚ïļ" + }, + { + "group": 1, + "hexcode": "1F93E-1F3FE-200D-2642-FE0F", + "label": "man playing handball: medium-dark skin tone", + "order": 2844, + "unicode": "ðŸĪūðŸū‍♂ïļ" + }, + { + "group": 1, + "hexcode": "1F93E-1F3FF-200D-2642-FE0F", + "label": "man playing handball: dark skin tone", + "order": 2846, + "unicode": "ðŸĪūðŸŋ‍♂ïļ" + } + ] + }, + { + "group": 1, + "hexcode": "1F93E-200D-2640-FE0F", + "label": "woman playing handball", + "order": 2848, + "tags": [ + "athletics", + "ball", + "catch", + "chuck", + "handball", + "hurl", + "lob", + "pitch", + "playing", + "sport", + "throw", + "toss", + "woman" + ], + "unicode": "ðŸĪū‍♀ïļ", + "skins": [ + { + "group": 1, + "hexcode": "1F93E-1F3FB-200D-2640-FE0F", + "label": "woman playing handball: light skin tone", + "order": 2850, + "unicode": "ðŸĪūðŸŧ‍♀ïļ" + }, + { + "group": 1, + "hexcode": "1F93E-1F3FC-200D-2640-FE0F", + "label": "woman playing handball: medium-light skin tone", + "order": 2852, + "unicode": "ðŸĪū🏞‍♀ïļ" + }, + { + "group": 1, + "hexcode": "1F93E-1F3FD-200D-2640-FE0F", + "label": "woman playing handball: medium skin tone", + "order": 2854, + "unicode": "ðŸĪūðŸ―â€â™€ïļ" + }, + { + "group": 1, + "hexcode": "1F93E-1F3FE-200D-2640-FE0F", + "label": "woman playing handball: medium-dark skin tone", + "order": 2856, + "unicode": "ðŸĪūðŸū‍♀ïļ" + }, + { + "group": 1, + "hexcode": "1F93E-1F3FF-200D-2640-FE0F", + "label": "woman playing handball: dark skin tone", + "order": 2858, + "unicode": "ðŸĪūðŸŋ‍♀ïļ" + } + ] + }, + { + "group": 1, + "hexcode": "1F939", + "label": "person juggling", + "order": 2860, + "tags": [ + "act", + "balance", + "balancing", + "handle", + "juggle", + "juggling", + "manage", + "multitask", + "person", + "skill" + ], + "unicode": "ðŸĪđ", + "skins": [ + { + "group": 1, + "hexcode": "1F939-1F3FB", + "label": "person juggling: light skin tone", + "order": 2861, + "unicode": "ðŸĪđðŸŧ" + }, + { + "group": 1, + "hexcode": "1F939-1F3FC", + "label": "person juggling: medium-light skin tone", + "order": 2862, + "unicode": "ðŸĪđ🏞" + }, + { + "group": 1, + "hexcode": "1F939-1F3FD", + "label": "person juggling: medium skin tone", + "order": 2863, + "unicode": "ðŸĪđðŸ―" + }, + { + "group": 1, + "hexcode": "1F939-1F3FE", + "label": "person juggling: medium-dark skin tone", + "order": 2864, + "unicode": "ðŸĪđðŸū" + }, + { + "group": 1, + "hexcode": "1F939-1F3FF", + "label": "person juggling: dark skin tone", + "order": 2865, + "unicode": "ðŸĪđðŸŋ" + } + ] + }, + { + "group": 1, + "hexcode": "1F939-200D-2642-FE0F", + "label": "man juggling", + "order": 2866, + "tags": [ + "act", + "balance", + "balancing", + "handle", + "juggle", + "juggling", + "man", + "manage", + "multitask", + "skill" + ], + "unicode": "ðŸĪđ‍♂ïļ", + "skins": [ + { + "group": 1, + "hexcode": "1F939-1F3FB-200D-2642-FE0F", + "label": "man juggling: light skin tone", + "order": 2868, + "unicode": "ðŸĪđðŸŧ‍♂ïļ" + }, + { + "group": 1, + "hexcode": "1F939-1F3FC-200D-2642-FE0F", + "label": "man juggling: medium-light skin tone", + "order": 2870, + "unicode": "ðŸĪđ🏞‍♂ïļ" + }, + { + "group": 1, + "hexcode": "1F939-1F3FD-200D-2642-FE0F", + "label": "man juggling: medium skin tone", + "order": 2872, + "unicode": "ðŸĪđðŸ―â€â™‚ïļ" + }, + { + "group": 1, + "hexcode": "1F939-1F3FE-200D-2642-FE0F", + "label": "man juggling: medium-dark skin tone", + "order": 2874, + "unicode": "ðŸĪđðŸū‍♂ïļ" + }, + { + "group": 1, + "hexcode": "1F939-1F3FF-200D-2642-FE0F", + "label": "man juggling: dark skin tone", + "order": 2876, + "unicode": "ðŸĪđðŸŋ‍♂ïļ" + } + ] + }, + { + "group": 1, + "hexcode": "1F939-200D-2640-FE0F", + "label": "woman juggling", + "order": 2878, + "tags": [ + "act", + "balance", + "balancing", + "handle", + "juggle", + "juggling", + "manage", + "multitask", + "skill", + "woman" + ], + "unicode": "ðŸĪđ‍♀ïļ", + "skins": [ + { + "group": 1, + "hexcode": "1F939-1F3FB-200D-2640-FE0F", + "label": "woman juggling: light skin tone", + "order": 2880, + "unicode": "ðŸĪđðŸŧ‍♀ïļ" + }, + { + "group": 1, + "hexcode": "1F939-1F3FC-200D-2640-FE0F", + "label": "woman juggling: medium-light skin tone", + "order": 2882, + "unicode": "ðŸĪđ🏞‍♀ïļ" + }, + { + "group": 1, + "hexcode": "1F939-1F3FD-200D-2640-FE0F", + "label": "woman juggling: medium skin tone", + "order": 2884, + "unicode": "ðŸĪđðŸ―â€â™€ïļ" + }, + { + "group": 1, + "hexcode": "1F939-1F3FE-200D-2640-FE0F", + "label": "woman juggling: medium-dark skin tone", + "order": 2886, + "unicode": "ðŸĪđðŸū‍♀ïļ" + }, + { + "group": 1, + "hexcode": "1F939-1F3FF-200D-2640-FE0F", + "label": "woman juggling: dark skin tone", + "order": 2888, + "unicode": "ðŸĪđðŸŋ‍♀ïļ" + } + ] + }, + { + "group": 1, + "hexcode": "1F9D8", + "label": "person in lotus position", + "order": 2890, + "tags": [ + "cross", + "legged", + "legs", + "lotus", + "meditation", + "peace", + "person", + "position", + "relax", + "serenity", + "yoga", + "yogi", + "zen" + ], + "unicode": "🧘", + "skins": [ + { + "group": 1, + "hexcode": "1F9D8-1F3FB", + "label": "person in lotus position: light skin tone", + "order": 2891, + "unicode": "🧘ðŸŧ" + }, + { + "group": 1, + "hexcode": "1F9D8-1F3FC", + "label": "person in lotus position: medium-light skin tone", + "order": 2892, + "unicode": "🧘🏞" + }, + { + "group": 1, + "hexcode": "1F9D8-1F3FD", + "label": "person in lotus position: medium skin tone", + "order": 2893, + "unicode": "ðŸ§˜ðŸ―" + }, + { + "group": 1, + "hexcode": "1F9D8-1F3FE", + "label": "person in lotus position: medium-dark skin tone", + "order": 2894, + "unicode": "🧘ðŸū" + }, + { + "group": 1, + "hexcode": "1F9D8-1F3FF", + "label": "person in lotus position: dark skin tone", + "order": 2895, + "unicode": "🧘ðŸŋ" + } + ] + }, + { + "group": 1, + "hexcode": "1F9D8-200D-2642-FE0F", + "label": "man in lotus position", + "order": 2896, + "tags": [ + "cross", + "legged", + "legs", + "lotus", + "man", + "meditation", + "peace", + "position", + "relax", + "serenity", + "yoga", + "yogi", + "zen" + ], + "unicode": "🧘‍♂ïļ", + "skins": [ + { + "group": 1, + "hexcode": "1F9D8-1F3FB-200D-2642-FE0F", + "label": "man in lotus position: light skin tone", + "order": 2898, + "unicode": "🧘ðŸŧ‍♂ïļ" + }, + { + "group": 1, + "hexcode": "1F9D8-1F3FC-200D-2642-FE0F", + "label": "man in lotus position: medium-light skin tone", + "order": 2900, + "unicode": "🧘🏞‍♂ïļ" + }, + { + "group": 1, + "hexcode": "1F9D8-1F3FD-200D-2642-FE0F", + "label": "man in lotus position: medium skin tone", + "order": 2902, + "unicode": "ðŸ§˜ðŸ―â€â™‚ïļ" + }, + { + "group": 1, + "hexcode": "1F9D8-1F3FE-200D-2642-FE0F", + "label": "man in lotus position: medium-dark skin tone", + "order": 2904, + "unicode": "🧘ðŸū‍♂ïļ" + }, + { + "group": 1, + "hexcode": "1F9D8-1F3FF-200D-2642-FE0F", + "label": "man in lotus position: dark skin tone", + "order": 2906, + "unicode": "🧘ðŸŋ‍♂ïļ" + } + ] + }, + { + "group": 1, + "hexcode": "1F9D8-200D-2640-FE0F", + "label": "woman in lotus position", + "order": 2908, + "tags": [ + "cross", + "legged", + "legs", + "lotus", + "meditation", + "peace", + "position", + "relax", + "serenity", + "woman", + "yoga", + "yogi", + "zen" + ], + "unicode": "🧘‍♀ïļ", + "skins": [ + { + "group": 1, + "hexcode": "1F9D8-1F3FB-200D-2640-FE0F", + "label": "woman in lotus position: light skin tone", + "order": 2910, + "unicode": "🧘ðŸŧ‍♀ïļ" + }, + { + "group": 1, + "hexcode": "1F9D8-1F3FC-200D-2640-FE0F", + "label": "woman in lotus position: medium-light skin tone", + "order": 2912, + "unicode": "🧘🏞‍♀ïļ" + }, + { + "group": 1, + "hexcode": "1F9D8-1F3FD-200D-2640-FE0F", + "label": "woman in lotus position: medium skin tone", + "order": 2914, + "unicode": "ðŸ§˜ðŸ―â€â™€ïļ" + }, + { + "group": 1, + "hexcode": "1F9D8-1F3FE-200D-2640-FE0F", + "label": "woman in lotus position: medium-dark skin tone", + "order": 2916, + "unicode": "🧘ðŸū‍♀ïļ" + }, + { + "group": 1, + "hexcode": "1F9D8-1F3FF-200D-2640-FE0F", + "label": "woman in lotus position: dark skin tone", + "order": 2918, + "unicode": "🧘ðŸŋ‍♀ïļ" + } + ] + }, + { + "group": 1, + "hexcode": "1F6C0", + "label": "person taking bath", + "order": 2920, + "tags": ["bath", "bathtub", "person", "taking", "tub"], + "unicode": "🛀", + "skins": [ + { + "group": 1, + "hexcode": "1F6C0-1F3FB", + "label": "person taking bath: light skin tone", + "order": 2921, + "unicode": "🛀ðŸŧ" + }, + { + "group": 1, + "hexcode": "1F6C0-1F3FC", + "label": "person taking bath: medium-light skin tone", + "order": 2922, + "unicode": "🛀🏞" + }, + { + "group": 1, + "hexcode": "1F6C0-1F3FD", + "label": "person taking bath: medium skin tone", + "order": 2923, + "unicode": "ðŸ›€ðŸ―" + }, + { + "group": 1, + "hexcode": "1F6C0-1F3FE", + "label": "person taking bath: medium-dark skin tone", + "order": 2924, + "unicode": "🛀ðŸū" + }, + { + "group": 1, + "hexcode": "1F6C0-1F3FF", + "label": "person taking bath: dark skin tone", + "order": 2925, + "unicode": "🛀ðŸŋ" + } + ] + }, + { + "group": 1, + "hexcode": "1F6CC", + "label": "person in bed", + "order": 2926, + "tags": [ + "bed", + "bedtime", + "good", + "goodnight", + "hotel", + "nap", + "night", + "person", + "sleep", + "tired", + "zzz" + ], + "unicode": "🛌", + "skins": [ + { + "group": 1, + "hexcode": "1F6CC-1F3FB", + "label": "person in bed: light skin tone", + "order": 2927, + "unicode": "🛌ðŸŧ" + }, + { + "group": 1, + "hexcode": "1F6CC-1F3FC", + "label": "person in bed: medium-light skin tone", + "order": 2928, + "unicode": "🛌🏞" + }, + { + "group": 1, + "hexcode": "1F6CC-1F3FD", + "label": "person in bed: medium skin tone", + "order": 2929, + "unicode": "ðŸ›ŒðŸ―" + }, + { + "group": 1, + "hexcode": "1F6CC-1F3FE", + "label": "person in bed: medium-dark skin tone", + "order": 2930, + "unicode": "🛌ðŸū" + }, + { + "group": 1, + "hexcode": "1F6CC-1F3FF", + "label": "person in bed: dark skin tone", + "order": 2931, + "unicode": "🛌ðŸŋ" + } + ] + }, + { + "group": 1, + "hexcode": "1F9D1-200D-1F91D-200D-1F9D1", + "label": "people holding hands", + "order": 2932, + "tags": [ + "bae", + "bestie", + "bff", + "couple", + "dating", + "flirt", + "friends", + "hand", + "hold", + "people", + "twins" + ], + "unicode": "🧑‍ðŸĪâ€ðŸ§‘", + "skins": [ + { + "group": 1, + "hexcode": "1F9D1-1F3FB-200D-1F91D-200D-1F9D1-1F3FB", + "label": "people holding hands: light skin tone", + "order": 2933, + "unicode": "🧑ðŸŧ‍ðŸĪâ€ðŸ§‘ðŸŧ" + }, + { + "group": 1, + "hexcode": "1F9D1-1F3FB-200D-1F91D-200D-1F9D1-1F3FC", + "label": "people holding hands: light skin tone, medium-light skin tone", + "order": 2934, + "unicode": "🧑ðŸŧ‍ðŸĪâ€ðŸ§‘🏞" + }, + { + "group": 1, + "hexcode": "1F9D1-1F3FB-200D-1F91D-200D-1F9D1-1F3FD", + "label": "people holding hands: light skin tone, medium skin tone", + "order": 2935, + "unicode": "🧑ðŸŧ‍ðŸĪâ€ðŸ§‘ðŸ―" + }, + { + "group": 1, + "hexcode": "1F9D1-1F3FB-200D-1F91D-200D-1F9D1-1F3FE", + "label": "people holding hands: light skin tone, medium-dark skin tone", + "order": 2936, + "unicode": "🧑ðŸŧ‍ðŸĪâ€ðŸ§‘ðŸū" + }, + { + "group": 1, + "hexcode": "1F9D1-1F3FB-200D-1F91D-200D-1F9D1-1F3FF", + "label": "people holding hands: light skin tone, dark skin tone", + "order": 2937, + "unicode": "🧑ðŸŧ‍ðŸĪâ€ðŸ§‘ðŸŋ" + }, + { + "group": 1, + "hexcode": "1F9D1-1F3FC-200D-1F91D-200D-1F9D1-1F3FB", + "label": "people holding hands: medium-light skin tone, light skin tone", + "order": 2938, + "unicode": "🧑🏞‍ðŸĪâ€ðŸ§‘ðŸŧ" + }, + { + "group": 1, + "hexcode": "1F9D1-1F3FC-200D-1F91D-200D-1F9D1-1F3FC", + "label": "people holding hands: medium-light skin tone", + "order": 2939, + "unicode": "🧑🏞‍ðŸĪâ€ðŸ§‘🏞" + }, + { + "group": 1, + "hexcode": "1F9D1-1F3FC-200D-1F91D-200D-1F9D1-1F3FD", + "label": "people holding hands: medium-light skin tone, medium skin tone", + "order": 2940, + "unicode": "🧑🏞‍ðŸĪâ€ðŸ§‘ðŸ―" + }, + { + "group": 1, + "hexcode": "1F9D1-1F3FC-200D-1F91D-200D-1F9D1-1F3FE", + "label": "people holding hands: medium-light skin tone, medium-dark skin tone", + "order": 2941, + "unicode": "🧑🏞‍ðŸĪâ€ðŸ§‘ðŸū" + }, + { + "group": 1, + "hexcode": "1F9D1-1F3FC-200D-1F91D-200D-1F9D1-1F3FF", + "label": "people holding hands: medium-light skin tone, dark skin tone", + "order": 2942, + "unicode": "🧑🏞‍ðŸĪâ€ðŸ§‘ðŸŋ" + }, + { + "group": 1, + "hexcode": "1F9D1-1F3FD-200D-1F91D-200D-1F9D1-1F3FB", + "label": "people holding hands: medium skin tone, light skin tone", + "order": 2943, + "unicode": "ðŸ§‘ðŸ―â€ðŸĪâ€ðŸ§‘ðŸŧ" + }, + { + "group": 1, + "hexcode": "1F9D1-1F3FD-200D-1F91D-200D-1F9D1-1F3FC", + "label": "people holding hands: medium skin tone, medium-light skin tone", + "order": 2944, + "unicode": "ðŸ§‘ðŸ―â€ðŸĪâ€ðŸ§‘🏞" + }, + { + "group": 1, + "hexcode": "1F9D1-1F3FD-200D-1F91D-200D-1F9D1-1F3FD", + "label": "people holding hands: medium skin tone", + "order": 2945, + "unicode": "ðŸ§‘ðŸ―â€ðŸĪâ€ðŸ§‘ðŸ―" + }, + { + "group": 1, + "hexcode": "1F9D1-1F3FD-200D-1F91D-200D-1F9D1-1F3FE", + "label": "people holding hands: medium skin tone, medium-dark skin tone", + "order": 2946, + "unicode": "ðŸ§‘ðŸ―â€ðŸĪâ€ðŸ§‘ðŸū" + }, + { + "group": 1, + "hexcode": "1F9D1-1F3FD-200D-1F91D-200D-1F9D1-1F3FF", + "label": "people holding hands: medium skin tone, dark skin tone", + "order": 2947, + "unicode": "ðŸ§‘ðŸ―â€ðŸĪâ€ðŸ§‘ðŸŋ" + }, + { + "group": 1, + "hexcode": "1F9D1-1F3FE-200D-1F91D-200D-1F9D1-1F3FB", + "label": "people holding hands: medium-dark skin tone, light skin tone", + "order": 2948, + "unicode": "🧑ðŸū‍ðŸĪâ€ðŸ§‘ðŸŧ" + }, + { + "group": 1, + "hexcode": "1F9D1-1F3FE-200D-1F91D-200D-1F9D1-1F3FC", + "label": "people holding hands: medium-dark skin tone, medium-light skin tone", + "order": 2949, + "unicode": "🧑ðŸū‍ðŸĪâ€ðŸ§‘🏞" + }, + { + "group": 1, + "hexcode": "1F9D1-1F3FE-200D-1F91D-200D-1F9D1-1F3FD", + "label": "people holding hands: medium-dark skin tone, medium skin tone", + "order": 2950, + "unicode": "🧑ðŸū‍ðŸĪâ€ðŸ§‘ðŸ―" + }, + { + "group": 1, + "hexcode": "1F9D1-1F3FE-200D-1F91D-200D-1F9D1-1F3FE", + "label": "people holding hands: medium-dark skin tone", + "order": 2951, + "unicode": "🧑ðŸū‍ðŸĪâ€ðŸ§‘ðŸū" + }, + { + "group": 1, + "hexcode": "1F9D1-1F3FE-200D-1F91D-200D-1F9D1-1F3FF", + "label": "people holding hands: medium-dark skin tone, dark skin tone", + "order": 2952, + "unicode": "🧑ðŸū‍ðŸĪâ€ðŸ§‘ðŸŋ" + }, + { + "group": 1, + "hexcode": "1F9D1-1F3FF-200D-1F91D-200D-1F9D1-1F3FB", + "label": "people holding hands: dark skin tone, light skin tone", + "order": 2953, + "unicode": "🧑ðŸŋ‍ðŸĪâ€ðŸ§‘ðŸŧ" + }, + { + "group": 1, + "hexcode": "1F9D1-1F3FF-200D-1F91D-200D-1F9D1-1F3FC", + "label": "people holding hands: dark skin tone, medium-light skin tone", + "order": 2954, + "unicode": "🧑ðŸŋ‍ðŸĪâ€ðŸ§‘🏞" + }, + { + "group": 1, + "hexcode": "1F9D1-1F3FF-200D-1F91D-200D-1F9D1-1F3FD", + "label": "people holding hands: dark skin tone, medium skin tone", + "order": 2955, + "unicode": "🧑ðŸŋ‍ðŸĪâ€ðŸ§‘ðŸ―" + }, + { + "group": 1, + "hexcode": "1F9D1-1F3FF-200D-1F91D-200D-1F9D1-1F3FE", + "label": "people holding hands: dark skin tone, medium-dark skin tone", + "order": 2956, + "unicode": "🧑ðŸŋ‍ðŸĪâ€ðŸ§‘ðŸū" + }, + { + "group": 1, + "hexcode": "1F9D1-1F3FF-200D-1F91D-200D-1F9D1-1F3FF", + "label": "people holding hands: dark skin tone", + "order": 2957, + "unicode": "🧑ðŸŋ‍ðŸĪâ€ðŸ§‘ðŸŋ" + } + ] + }, + { + "group": 1, + "hexcode": "1F46D", + "label": "women holding hands", + "order": 2958, + "tags": [ + "bae", + "bestie", + "bff", + "couple", + "dating", + "flirt", + "friends", + "girls", + "hand", + "hold", + "sisters", + "twins", + "women" + ], + "unicode": "👭", + "skins": [ + { + "group": 1, + "hexcode": "1F46D-1F3FB", + "label": "women holding hands: light skin tone", + "order": 2959, + "unicode": "👭ðŸŧ" + }, + { + "group": 1, + "hexcode": "1F46D-1F3FC", + "label": "women holding hands: medium-light skin tone", + "order": 2965, + "unicode": "👭🏞" + }, + { + "group": 1, + "hexcode": "1F46D-1F3FD", + "label": "women holding hands: medium skin tone", + "order": 2971, + "unicode": "ðŸ‘­ðŸ―" + }, + { + "group": 1, + "hexcode": "1F46D-1F3FE", + "label": "women holding hands: medium-dark skin tone", + "order": 2977, + "unicode": "👭ðŸū" + }, + { + "group": 1, + "hexcode": "1F46D-1F3FF", + "label": "women holding hands: dark skin tone", + "order": 2983, + "unicode": "👭ðŸŋ" + }, + { + "group": 1, + "hexcode": "1F469-1F3FB-200D-1F91D-200D-1F469-1F3FC", + "label": "women holding hands: light skin tone, medium-light skin tone", + "order": 2960, + "unicode": "ðŸ‘ĐðŸŧ‍ðŸĪâ€ðŸ‘Đ🏞" + }, + { + "group": 1, + "hexcode": "1F469-1F3FB-200D-1F91D-200D-1F469-1F3FD", + "label": "women holding hands: light skin tone, medium skin tone", + "order": 2961, + "unicode": "ðŸ‘ĐðŸŧ‍ðŸĪâ€ðŸ‘ĐðŸ―" + }, + { + "group": 1, + "hexcode": "1F469-1F3FB-200D-1F91D-200D-1F469-1F3FE", + "label": "women holding hands: light skin tone, medium-dark skin tone", + "order": 2962, + "unicode": "ðŸ‘ĐðŸŧ‍ðŸĪâ€ðŸ‘ĐðŸū" + }, + { + "group": 1, + "hexcode": "1F469-1F3FB-200D-1F91D-200D-1F469-1F3FF", + "label": "women holding hands: light skin tone, dark skin tone", + "order": 2963, + "unicode": "ðŸ‘ĐðŸŧ‍ðŸĪâ€ðŸ‘ĐðŸŋ" + }, + { + "group": 1, + "hexcode": "1F469-1F3FC-200D-1F91D-200D-1F469-1F3FB", + "label": "women holding hands: medium-light skin tone, light skin tone", + "order": 2964, + "unicode": "ðŸ‘Đ🏞‍ðŸĪâ€ðŸ‘ĐðŸŧ" + }, + { + "group": 1, + "hexcode": "1F469-1F3FC-200D-1F91D-200D-1F469-1F3FD", + "label": "women holding hands: medium-light skin tone, medium skin tone", + "order": 2966, + "unicode": "ðŸ‘Đ🏞‍ðŸĪâ€ðŸ‘ĐðŸ―" + }, + { + "group": 1, + "hexcode": "1F469-1F3FC-200D-1F91D-200D-1F469-1F3FE", + "label": "women holding hands: medium-light skin tone, medium-dark skin tone", + "order": 2967, + "unicode": "ðŸ‘Đ🏞‍ðŸĪâ€ðŸ‘ĐðŸū" + }, + { + "group": 1, + "hexcode": "1F469-1F3FC-200D-1F91D-200D-1F469-1F3FF", + "label": "women holding hands: medium-light skin tone, dark skin tone", + "order": 2968, + "unicode": "ðŸ‘Đ🏞‍ðŸĪâ€ðŸ‘ĐðŸŋ" + }, + { + "group": 1, + "hexcode": "1F469-1F3FD-200D-1F91D-200D-1F469-1F3FB", + "label": "women holding hands: medium skin tone, light skin tone", + "order": 2969, + "unicode": "ðŸ‘ĐðŸ―â€ðŸĪâ€ðŸ‘ĐðŸŧ" + }, + { + "group": 1, + "hexcode": "1F469-1F3FD-200D-1F91D-200D-1F469-1F3FC", + "label": "women holding hands: medium skin tone, medium-light skin tone", + "order": 2970, + "unicode": "ðŸ‘ĐðŸ―â€ðŸĪâ€ðŸ‘Đ🏞" + }, + { + "group": 1, + "hexcode": "1F469-1F3FD-200D-1F91D-200D-1F469-1F3FE", + "label": "women holding hands: medium skin tone, medium-dark skin tone", + "order": 2972, + "unicode": "ðŸ‘ĐðŸ―â€ðŸĪâ€ðŸ‘ĐðŸū" + }, + { + "group": 1, + "hexcode": "1F469-1F3FD-200D-1F91D-200D-1F469-1F3FF", + "label": "women holding hands: medium skin tone, dark skin tone", + "order": 2973, + "unicode": "ðŸ‘ĐðŸ―â€ðŸĪâ€ðŸ‘ĐðŸŋ" + }, + { + "group": 1, + "hexcode": "1F469-1F3FE-200D-1F91D-200D-1F469-1F3FB", + "label": "women holding hands: medium-dark skin tone, light skin tone", + "order": 2974, + "unicode": "ðŸ‘ĐðŸū‍ðŸĪâ€ðŸ‘ĐðŸŧ" + }, + { + "group": 1, + "hexcode": "1F469-1F3FE-200D-1F91D-200D-1F469-1F3FC", + "label": "women holding hands: medium-dark skin tone, medium-light skin tone", + "order": 2975, + "unicode": "ðŸ‘ĐðŸū‍ðŸĪâ€ðŸ‘Đ🏞" + }, + { + "group": 1, + "hexcode": "1F469-1F3FE-200D-1F91D-200D-1F469-1F3FD", + "label": "women holding hands: medium-dark skin tone, medium skin tone", + "order": 2976, + "unicode": "ðŸ‘ĐðŸū‍ðŸĪâ€ðŸ‘ĐðŸ―" + }, + { + "group": 1, + "hexcode": "1F469-1F3FE-200D-1F91D-200D-1F469-1F3FF", + "label": "women holding hands: medium-dark skin tone, dark skin tone", + "order": 2978, + "unicode": "ðŸ‘ĐðŸū‍ðŸĪâ€ðŸ‘ĐðŸŋ" + }, + { + "group": 1, + "hexcode": "1F469-1F3FF-200D-1F91D-200D-1F469-1F3FB", + "label": "women holding hands: dark skin tone, light skin tone", + "order": 2979, + "unicode": "ðŸ‘ĐðŸŋ‍ðŸĪâ€ðŸ‘ĐðŸŧ" + }, + { + "group": 1, + "hexcode": "1F469-1F3FF-200D-1F91D-200D-1F469-1F3FC", + "label": "women holding hands: dark skin tone, medium-light skin tone", + "order": 2980, + "unicode": "ðŸ‘ĐðŸŋ‍ðŸĪâ€ðŸ‘Đ🏞" + }, + { + "group": 1, + "hexcode": "1F469-1F3FF-200D-1F91D-200D-1F469-1F3FD", + "label": "women holding hands: dark skin tone, medium skin tone", + "order": 2981, + "unicode": "ðŸ‘ĐðŸŋ‍ðŸĪâ€ðŸ‘ĐðŸ―" + }, + { + "group": 1, + "hexcode": "1F469-1F3FF-200D-1F91D-200D-1F469-1F3FE", + "label": "women holding hands: dark skin tone, medium-dark skin tone", + "order": 2982, + "unicode": "ðŸ‘ĐðŸŋ‍ðŸĪâ€ðŸ‘ĐðŸū" + } + ] + }, + { + "group": 1, + "hexcode": "1F46B", + "label": "woman and man holding hands", + "order": 2984, + "tags": [ + "bae", + "bestie", + "bff", + "couple", + "dating", + "flirt", + "friends", + "hand", + "hold", + "man", + "twins", + "woman" + ], + "unicode": "ðŸ‘Ŧ", + "skins": [ + { + "group": 1, + "hexcode": "1F46B-1F3FB", + "label": "woman and man holding hands: light skin tone", + "order": 2985, + "unicode": "ðŸ‘ŦðŸŧ" + }, + { + "group": 1, + "hexcode": "1F46B-1F3FC", + "label": "woman and man holding hands: medium-light skin tone", + "order": 2991, + "unicode": "ðŸ‘Ŧ🏞" + }, + { + "group": 1, + "hexcode": "1F46B-1F3FD", + "label": "woman and man holding hands: medium skin tone", + "order": 2997, + "unicode": "ðŸ‘ŦðŸ―" + }, + { + "group": 1, + "hexcode": "1F46B-1F3FE", + "label": "woman and man holding hands: medium-dark skin tone", + "order": 3003, + "unicode": "ðŸ‘ŦðŸū" + }, + { + "group": 1, + "hexcode": "1F46B-1F3FF", + "label": "woman and man holding hands: dark skin tone", + "order": 3009, + "unicode": "ðŸ‘ŦðŸŋ" + }, + { + "group": 1, + "hexcode": "1F469-1F3FB-200D-1F91D-200D-1F468-1F3FC", + "label": "woman and man holding hands: light skin tone, medium-light skin tone", + "order": 2986, + "unicode": "ðŸ‘ĐðŸŧ‍ðŸĪâ€ðŸ‘Ļ🏞" + }, + { + "group": 1, + "hexcode": "1F469-1F3FB-200D-1F91D-200D-1F468-1F3FD", + "label": "woman and man holding hands: light skin tone, medium skin tone", + "order": 2987, + "unicode": "ðŸ‘ĐðŸŧ‍ðŸĪâ€ðŸ‘ĻðŸ―" + }, + { + "group": 1, + "hexcode": "1F469-1F3FB-200D-1F91D-200D-1F468-1F3FE", + "label": "woman and man holding hands: light skin tone, medium-dark skin tone", + "order": 2988, + "unicode": "ðŸ‘ĐðŸŧ‍ðŸĪâ€ðŸ‘ĻðŸū" + }, + { + "group": 1, + "hexcode": "1F469-1F3FB-200D-1F91D-200D-1F468-1F3FF", + "label": "woman and man holding hands: light skin tone, dark skin tone", + "order": 2989, + "unicode": "ðŸ‘ĐðŸŧ‍ðŸĪâ€ðŸ‘ĻðŸŋ" + }, + { + "group": 1, + "hexcode": "1F469-1F3FC-200D-1F91D-200D-1F468-1F3FB", + "label": "woman and man holding hands: medium-light skin tone, light skin tone", + "order": 2990, + "unicode": "ðŸ‘Đ🏞‍ðŸĪâ€ðŸ‘ĻðŸŧ" + }, + { + "group": 1, + "hexcode": "1F469-1F3FC-200D-1F91D-200D-1F468-1F3FD", + "label": "woman and man holding hands: medium-light skin tone, medium skin tone", + "order": 2992, + "unicode": "ðŸ‘Đ🏞‍ðŸĪâ€ðŸ‘ĻðŸ―" + }, + { + "group": 1, + "hexcode": "1F469-1F3FC-200D-1F91D-200D-1F468-1F3FE", + "label": "woman and man holding hands: medium-light skin tone, medium-dark skin tone", + "order": 2993, + "unicode": "ðŸ‘Đ🏞‍ðŸĪâ€ðŸ‘ĻðŸū" + }, + { + "group": 1, + "hexcode": "1F469-1F3FC-200D-1F91D-200D-1F468-1F3FF", + "label": "woman and man holding hands: medium-light skin tone, dark skin tone", + "order": 2994, + "unicode": "ðŸ‘Đ🏞‍ðŸĪâ€ðŸ‘ĻðŸŋ" + }, + { + "group": 1, + "hexcode": "1F469-1F3FD-200D-1F91D-200D-1F468-1F3FB", + "label": "woman and man holding hands: medium skin tone, light skin tone", + "order": 2995, + "unicode": "ðŸ‘ĐðŸ―â€ðŸĪâ€ðŸ‘ĻðŸŧ" + }, + { + "group": 1, + "hexcode": "1F469-1F3FD-200D-1F91D-200D-1F468-1F3FC", + "label": "woman and man holding hands: medium skin tone, medium-light skin tone", + "order": 2996, + "unicode": "ðŸ‘ĐðŸ―â€ðŸĪâ€ðŸ‘Ļ🏞" + }, + { + "group": 1, + "hexcode": "1F469-1F3FD-200D-1F91D-200D-1F468-1F3FE", + "label": "woman and man holding hands: medium skin tone, medium-dark skin tone", + "order": 2998, + "unicode": "ðŸ‘ĐðŸ―â€ðŸĪâ€ðŸ‘ĻðŸū" + }, + { + "group": 1, + "hexcode": "1F469-1F3FD-200D-1F91D-200D-1F468-1F3FF", + "label": "woman and man holding hands: medium skin tone, dark skin tone", + "order": 2999, + "unicode": "ðŸ‘ĐðŸ―â€ðŸĪâ€ðŸ‘ĻðŸŋ" + }, + { + "group": 1, + "hexcode": "1F469-1F3FE-200D-1F91D-200D-1F468-1F3FB", + "label": "woman and man holding hands: medium-dark skin tone, light skin tone", + "order": 3000, + "unicode": "ðŸ‘ĐðŸū‍ðŸĪâ€ðŸ‘ĻðŸŧ" + }, + { + "group": 1, + "hexcode": "1F469-1F3FE-200D-1F91D-200D-1F468-1F3FC", + "label": "woman and man holding hands: medium-dark skin tone, medium-light skin tone", + "order": 3001, + "unicode": "ðŸ‘ĐðŸū‍ðŸĪâ€ðŸ‘Ļ🏞" + }, + { + "group": 1, + "hexcode": "1F469-1F3FE-200D-1F91D-200D-1F468-1F3FD", + "label": "woman and man holding hands: medium-dark skin tone, medium skin tone", + "order": 3002, + "unicode": "ðŸ‘ĐðŸū‍ðŸĪâ€ðŸ‘ĻðŸ―" + }, + { + "group": 1, + "hexcode": "1F469-1F3FE-200D-1F91D-200D-1F468-1F3FF", + "label": "woman and man holding hands: medium-dark skin tone, dark skin tone", + "order": 3004, + "unicode": "ðŸ‘ĐðŸū‍ðŸĪâ€ðŸ‘ĻðŸŋ" + }, + { + "group": 1, + "hexcode": "1F469-1F3FF-200D-1F91D-200D-1F468-1F3FB", + "label": "woman and man holding hands: dark skin tone, light skin tone", + "order": 3005, + "unicode": "ðŸ‘ĐðŸŋ‍ðŸĪâ€ðŸ‘ĻðŸŧ" + }, + { + "group": 1, + "hexcode": "1F469-1F3FF-200D-1F91D-200D-1F468-1F3FC", + "label": "woman and man holding hands: dark skin tone, medium-light skin tone", + "order": 3006, + "unicode": "ðŸ‘ĐðŸŋ‍ðŸĪâ€ðŸ‘Ļ🏞" + }, + { + "group": 1, + "hexcode": "1F469-1F3FF-200D-1F91D-200D-1F468-1F3FD", + "label": "woman and man holding hands: dark skin tone, medium skin tone", + "order": 3007, + "unicode": "ðŸ‘ĐðŸŋ‍ðŸĪâ€ðŸ‘ĻðŸ―" + }, + { + "group": 1, + "hexcode": "1F469-1F3FF-200D-1F91D-200D-1F468-1F3FE", + "label": "woman and man holding hands: dark skin tone, medium-dark skin tone", + "order": 3008, + "unicode": "ðŸ‘ĐðŸŋ‍ðŸĪâ€ðŸ‘ĻðŸū" + } + ] + }, + { + "group": 1, + "hexcode": "1F46C", + "label": "men holding hands", + "order": 3010, + "tags": [ + "bae", + "bestie", + "bff", + "boys", + "brothers", + "couple", + "dating", + "flirt", + "friends", + "hand", + "hold", + "men", + "twins" + ], + "unicode": "👎", + "skins": [ + { + "group": 1, + "hexcode": "1F46C-1F3FB", + "label": "men holding hands: light skin tone", + "order": 3011, + "unicode": "👎ðŸŧ" + }, + { + "group": 1, + "hexcode": "1F46C-1F3FC", + "label": "men holding hands: medium-light skin tone", + "order": 3017, + "unicode": "👎🏞" + }, + { + "group": 1, + "hexcode": "1F46C-1F3FD", + "label": "men holding hands: medium skin tone", + "order": 3023, + "unicode": "ðŸ‘ŽðŸ―" + }, + { + "group": 1, + "hexcode": "1F46C-1F3FE", + "label": "men holding hands: medium-dark skin tone", + "order": 3029, + "unicode": "👎ðŸū" + }, + { + "group": 1, + "hexcode": "1F46C-1F3FF", + "label": "men holding hands: dark skin tone", + "order": 3035, + "unicode": "👎ðŸŋ" + }, + { + "group": 1, + "hexcode": "1F468-1F3FB-200D-1F91D-200D-1F468-1F3FC", + "label": "men holding hands: light skin tone, medium-light skin tone", + "order": 3012, + "unicode": "ðŸ‘ĻðŸŧ‍ðŸĪâ€ðŸ‘Ļ🏞" + }, + { + "group": 1, + "hexcode": "1F468-1F3FB-200D-1F91D-200D-1F468-1F3FD", + "label": "men holding hands: light skin tone, medium skin tone", + "order": 3013, + "unicode": "ðŸ‘ĻðŸŧ‍ðŸĪâ€ðŸ‘ĻðŸ―" + }, + { + "group": 1, + "hexcode": "1F468-1F3FB-200D-1F91D-200D-1F468-1F3FE", + "label": "men holding hands: light skin tone, medium-dark skin tone", + "order": 3014, + "unicode": "ðŸ‘ĻðŸŧ‍ðŸĪâ€ðŸ‘ĻðŸū" + }, + { + "group": 1, + "hexcode": "1F468-1F3FB-200D-1F91D-200D-1F468-1F3FF", + "label": "men holding hands: light skin tone, dark skin tone", + "order": 3015, + "unicode": "ðŸ‘ĻðŸŧ‍ðŸĪâ€ðŸ‘ĻðŸŋ" + }, + { + "group": 1, + "hexcode": "1F468-1F3FC-200D-1F91D-200D-1F468-1F3FB", + "label": "men holding hands: medium-light skin tone, light skin tone", + "order": 3016, + "unicode": "ðŸ‘Ļ🏞‍ðŸĪâ€ðŸ‘ĻðŸŧ" + }, + { + "group": 1, + "hexcode": "1F468-1F3FC-200D-1F91D-200D-1F468-1F3FD", + "label": "men holding hands: medium-light skin tone, medium skin tone", + "order": 3018, + "unicode": "ðŸ‘Ļ🏞‍ðŸĪâ€ðŸ‘ĻðŸ―" + }, + { + "group": 1, + "hexcode": "1F468-1F3FC-200D-1F91D-200D-1F468-1F3FE", + "label": "men holding hands: medium-light skin tone, medium-dark skin tone", + "order": 3019, + "unicode": "ðŸ‘Ļ🏞‍ðŸĪâ€ðŸ‘ĻðŸū" + }, + { + "group": 1, + "hexcode": "1F468-1F3FC-200D-1F91D-200D-1F468-1F3FF", + "label": "men holding hands: medium-light skin tone, dark skin tone", + "order": 3020, + "unicode": "ðŸ‘Ļ🏞‍ðŸĪâ€ðŸ‘ĻðŸŋ" + }, + { + "group": 1, + "hexcode": "1F468-1F3FD-200D-1F91D-200D-1F468-1F3FB", + "label": "men holding hands: medium skin tone, light skin tone", + "order": 3021, + "unicode": "ðŸ‘ĻðŸ―â€ðŸĪâ€ðŸ‘ĻðŸŧ" + }, + { + "group": 1, + "hexcode": "1F468-1F3FD-200D-1F91D-200D-1F468-1F3FC", + "label": "men holding hands: medium skin tone, medium-light skin tone", + "order": 3022, + "unicode": "ðŸ‘ĻðŸ―â€ðŸĪâ€ðŸ‘Ļ🏞" + }, + { + "group": 1, + "hexcode": "1F468-1F3FD-200D-1F91D-200D-1F468-1F3FE", + "label": "men holding hands: medium skin tone, medium-dark skin tone", + "order": 3024, + "unicode": "ðŸ‘ĻðŸ―â€ðŸĪâ€ðŸ‘ĻðŸū" + }, + { + "group": 1, + "hexcode": "1F468-1F3FD-200D-1F91D-200D-1F468-1F3FF", + "label": "men holding hands: medium skin tone, dark skin tone", + "order": 3025, + "unicode": "ðŸ‘ĻðŸ―â€ðŸĪâ€ðŸ‘ĻðŸŋ" + }, + { + "group": 1, + "hexcode": "1F468-1F3FE-200D-1F91D-200D-1F468-1F3FB", + "label": "men holding hands: medium-dark skin tone, light skin tone", + "order": 3026, + "unicode": "ðŸ‘ĻðŸū‍ðŸĪâ€ðŸ‘ĻðŸŧ" + }, + { + "group": 1, + "hexcode": "1F468-1F3FE-200D-1F91D-200D-1F468-1F3FC", + "label": "men holding hands: medium-dark skin tone, medium-light skin tone", + "order": 3027, + "unicode": "ðŸ‘ĻðŸū‍ðŸĪâ€ðŸ‘Ļ🏞" + }, + { + "group": 1, + "hexcode": "1F468-1F3FE-200D-1F91D-200D-1F468-1F3FD", + "label": "men holding hands: medium-dark skin tone, medium skin tone", + "order": 3028, + "unicode": "ðŸ‘ĻðŸū‍ðŸĪâ€ðŸ‘ĻðŸ―" + }, + { + "group": 1, + "hexcode": "1F468-1F3FE-200D-1F91D-200D-1F468-1F3FF", + "label": "men holding hands: medium-dark skin tone, dark skin tone", + "order": 3030, + "unicode": "ðŸ‘ĻðŸū‍ðŸĪâ€ðŸ‘ĻðŸŋ" + }, + { + "group": 1, + "hexcode": "1F468-1F3FF-200D-1F91D-200D-1F468-1F3FB", + "label": "men holding hands: dark skin tone, light skin tone", + "order": 3031, + "unicode": "ðŸ‘ĻðŸŋ‍ðŸĪâ€ðŸ‘ĻðŸŧ" + }, + { + "group": 1, + "hexcode": "1F468-1F3FF-200D-1F91D-200D-1F468-1F3FC", + "label": "men holding hands: dark skin tone, medium-light skin tone", + "order": 3032, + "unicode": "ðŸ‘ĻðŸŋ‍ðŸĪâ€ðŸ‘Ļ🏞" + }, + { + "group": 1, + "hexcode": "1F468-1F3FF-200D-1F91D-200D-1F468-1F3FD", + "label": "men holding hands: dark skin tone, medium skin tone", + "order": 3033, + "unicode": "ðŸ‘ĻðŸŋ‍ðŸĪâ€ðŸ‘ĻðŸ―" + }, + { + "group": 1, + "hexcode": "1F468-1F3FF-200D-1F91D-200D-1F468-1F3FE", + "label": "men holding hands: dark skin tone, medium-dark skin tone", + "order": 3034, + "unicode": "ðŸ‘ĻðŸŋ‍ðŸĪâ€ðŸ‘ĻðŸū" + } + ] + }, + { + "group": 1, + "hexcode": "1F48F", + "label": "kiss", + "order": 3036, + "tags": [ + "anniversary", + "babe", + "bae", + "couple", + "date", + "dating", + "heart", + "love", + "mwah", + "person", + "romance", + "together", + "xoxo" + ], + "unicode": "💏", + "skins": [ + { + "group": 1, + "hexcode": "1F48F-1F3FB", + "label": "kiss: light skin tone", + "order": 3037, + "unicode": "💏ðŸŧ" + }, + { + "group": 1, + "hexcode": "1F48F-1F3FC", + "label": "kiss: medium-light skin tone", + "order": 3038, + "unicode": "💏🏞" + }, + { + "group": 1, + "hexcode": "1F48F-1F3FD", + "label": "kiss: medium skin tone", + "order": 3039, + "unicode": "ðŸ’ðŸ―" + }, + { + "group": 1, + "hexcode": "1F48F-1F3FE", + "label": "kiss: medium-dark skin tone", + "order": 3040, + "unicode": "💏ðŸū" + }, + { + "group": 1, + "hexcode": "1F48F-1F3FF", + "label": "kiss: dark skin tone", + "order": 3041, + "unicode": "💏ðŸŋ" + }, + { + "group": 1, + "hexcode": "1F9D1-1F3FB-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FC", + "label": "kiss: person, person, light skin tone, medium-light skin tone", + "order": 3042, + "unicode": "🧑ðŸŧ‍âĪïļâ€ðŸ’‹â€ðŸ§‘🏞" + }, + { + "group": 1, + "hexcode": "1F9D1-1F3FB-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FD", + "label": "kiss: person, person, light skin tone, medium skin tone", + "order": 3044, + "unicode": "🧑ðŸŧ‍âĪïļâ€ðŸ’‹â€ðŸ§‘ðŸ―" + }, + { + "group": 1, + "hexcode": "1F9D1-1F3FB-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FE", + "label": "kiss: person, person, light skin tone, medium-dark skin tone", + "order": 3046, + "unicode": "🧑ðŸŧ‍âĪïļâ€ðŸ’‹â€ðŸ§‘ðŸū" + }, + { + "group": 1, + "hexcode": "1F9D1-1F3FB-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FF", + "label": "kiss: person, person, light skin tone, dark skin tone", + "order": 3048, + "unicode": "🧑ðŸŧ‍âĪïļâ€ðŸ’‹â€ðŸ§‘ðŸŋ" + }, + { + "group": 1, + "hexcode": "1F9D1-1F3FC-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FB", + "label": "kiss: person, person, medium-light skin tone, light skin tone", + "order": 3050, + "unicode": "🧑🏞‍âĪïļâ€ðŸ’‹â€ðŸ§‘ðŸŧ" + }, + { + "group": 1, + "hexcode": "1F9D1-1F3FC-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FD", + "label": "kiss: person, person, medium-light skin tone, medium skin tone", + "order": 3052, + "unicode": "🧑🏞‍âĪïļâ€ðŸ’‹â€ðŸ§‘ðŸ―" + }, + { + "group": 1, + "hexcode": "1F9D1-1F3FC-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FE", + "label": "kiss: person, person, medium-light skin tone, medium-dark skin tone", + "order": 3054, + "unicode": "🧑🏞‍âĪïļâ€ðŸ’‹â€ðŸ§‘ðŸū" + }, + { + "group": 1, + "hexcode": "1F9D1-1F3FC-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FF", + "label": "kiss: person, person, medium-light skin tone, dark skin tone", + "order": 3056, + "unicode": "🧑🏞‍âĪïļâ€ðŸ’‹â€ðŸ§‘ðŸŋ" + }, + { + "group": 1, + "hexcode": "1F9D1-1F3FD-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FB", + "label": "kiss: person, person, medium skin tone, light skin tone", + "order": 3058, + "unicode": "ðŸ§‘ðŸ―â€âĪïļâ€ðŸ’‹â€ðŸ§‘ðŸŧ" + }, + { + "group": 1, + "hexcode": "1F9D1-1F3FD-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FC", + "label": "kiss: person, person, medium skin tone, medium-light skin tone", + "order": 3060, + "unicode": "ðŸ§‘ðŸ―â€âĪïļâ€ðŸ’‹â€ðŸ§‘🏞" + }, + { + "group": 1, + "hexcode": "1F9D1-1F3FD-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FE", + "label": "kiss: person, person, medium skin tone, medium-dark skin tone", + "order": 3062, + "unicode": "ðŸ§‘ðŸ―â€âĪïļâ€ðŸ’‹â€ðŸ§‘ðŸū" + }, + { + "group": 1, + "hexcode": "1F9D1-1F3FD-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FF", + "label": "kiss: person, person, medium skin tone, dark skin tone", + "order": 3064, + "unicode": "ðŸ§‘ðŸ―â€âĪïļâ€ðŸ’‹â€ðŸ§‘ðŸŋ" + }, + { + "group": 1, + "hexcode": "1F9D1-1F3FE-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FB", + "label": "kiss: person, person, medium-dark skin tone, light skin tone", + "order": 3066, + "unicode": "🧑ðŸū‍âĪïļâ€ðŸ’‹â€ðŸ§‘ðŸŧ" + }, + { + "group": 1, + "hexcode": "1F9D1-1F3FE-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FC", + "label": "kiss: person, person, medium-dark skin tone, medium-light skin tone", + "order": 3068, + "unicode": "🧑ðŸū‍âĪïļâ€ðŸ’‹â€ðŸ§‘🏞" + }, + { + "group": 1, + "hexcode": "1F9D1-1F3FE-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FD", + "label": "kiss: person, person, medium-dark skin tone, medium skin tone", + "order": 3070, + "unicode": "🧑ðŸū‍âĪïļâ€ðŸ’‹â€ðŸ§‘ðŸ―" + }, + { + "group": 1, + "hexcode": "1F9D1-1F3FE-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FF", + "label": "kiss: person, person, medium-dark skin tone, dark skin tone", + "order": 3072, + "unicode": "🧑ðŸū‍âĪïļâ€ðŸ’‹â€ðŸ§‘ðŸŋ" + }, + { + "group": 1, + "hexcode": "1F9D1-1F3FF-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FB", + "label": "kiss: person, person, dark skin tone, light skin tone", + "order": 3074, + "unicode": "🧑ðŸŋ‍âĪïļâ€ðŸ’‹â€ðŸ§‘ðŸŧ" + }, + { + "group": 1, + "hexcode": "1F9D1-1F3FF-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FC", + "label": "kiss: person, person, dark skin tone, medium-light skin tone", + "order": 3076, + "unicode": "🧑ðŸŋ‍âĪïļâ€ðŸ’‹â€ðŸ§‘🏞" + }, + { + "group": 1, + "hexcode": "1F9D1-1F3FF-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FD", + "label": "kiss: person, person, dark skin tone, medium skin tone", + "order": 3078, + "unicode": "🧑ðŸŋ‍âĪïļâ€ðŸ’‹â€ðŸ§‘ðŸ―" + }, + { + "group": 1, + "hexcode": "1F9D1-1F3FF-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FE", + "label": "kiss: person, person, dark skin tone, medium-dark skin tone", + "order": 3080, + "unicode": "🧑ðŸŋ‍âĪïļâ€ðŸ’‹â€ðŸ§‘ðŸū" + } + ] + }, + { + "group": 1, + "hexcode": "1F469-200D-2764-FE0F-200D-1F48B-200D-1F468", + "label": "kiss: woman, man", + "order": 3082, + "tags": [ + "anniversary", + "babe", + "bae", + "couple", + "date", + "dating", + "heart", + "kiss", + "love", + "man", + "mwah", + "person", + "romance", + "together", + "woman", + "xoxo" + ], + "unicode": "ðŸ‘Đ‍âĪïļâ€ðŸ’‹â€ðŸ‘Ļ", + "skins": [ + { + "group": 1, + "hexcode": "1F469-1F3FB-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FB", + "label": "kiss: woman, man, light skin tone", + "order": 3084, + "unicode": "ðŸ‘ĐðŸŧ‍âĪïļâ€ðŸ’‹â€ðŸ‘ĻðŸŧ" + }, + { + "group": 1, + "hexcode": "1F469-1F3FB-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FC", + "label": "kiss: woman, man, light skin tone, medium-light skin tone", + "order": 3086, + "unicode": "ðŸ‘ĐðŸŧ‍âĪïļâ€ðŸ’‹â€ðŸ‘Ļ🏞" + }, + { + "group": 1, + "hexcode": "1F469-1F3FB-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FD", + "label": "kiss: woman, man, light skin tone, medium skin tone", + "order": 3088, + "unicode": "ðŸ‘ĐðŸŧ‍âĪïļâ€ðŸ’‹â€ðŸ‘ĻðŸ―" + }, + { + "group": 1, + "hexcode": "1F469-1F3FB-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FE", + "label": "kiss: woman, man, light skin tone, medium-dark skin tone", + "order": 3090, + "unicode": "ðŸ‘ĐðŸŧ‍âĪïļâ€ðŸ’‹â€ðŸ‘ĻðŸū" + }, + { + "group": 1, + "hexcode": "1F469-1F3FB-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FF", + "label": "kiss: woman, man, light skin tone, dark skin tone", + "order": 3092, + "unicode": "ðŸ‘ĐðŸŧ‍âĪïļâ€ðŸ’‹â€ðŸ‘ĻðŸŋ" + }, + { + "group": 1, + "hexcode": "1F469-1F3FC-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FB", + "label": "kiss: woman, man, medium-light skin tone, light skin tone", + "order": 3094, + "unicode": "ðŸ‘Đ🏞‍âĪïļâ€ðŸ’‹â€ðŸ‘ĻðŸŧ" + }, + { + "group": 1, + "hexcode": "1F469-1F3FC-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FC", + "label": "kiss: woman, man, medium-light skin tone", + "order": 3096, + "unicode": "ðŸ‘Đ🏞‍âĪïļâ€ðŸ’‹â€ðŸ‘Ļ🏞" + }, + { + "group": 1, + "hexcode": "1F469-1F3FC-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FD", + "label": "kiss: woman, man, medium-light skin tone, medium skin tone", + "order": 3098, + "unicode": "ðŸ‘Đ🏞‍âĪïļâ€ðŸ’‹â€ðŸ‘ĻðŸ―" + }, + { + "group": 1, + "hexcode": "1F469-1F3FC-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FE", + "label": "kiss: woman, man, medium-light skin tone, medium-dark skin tone", + "order": 3100, + "unicode": "ðŸ‘Đ🏞‍âĪïļâ€ðŸ’‹â€ðŸ‘ĻðŸū" + }, + { + "group": 1, + "hexcode": "1F469-1F3FC-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FF", + "label": "kiss: woman, man, medium-light skin tone, dark skin tone", + "order": 3102, + "unicode": "ðŸ‘Đ🏞‍âĪïļâ€ðŸ’‹â€ðŸ‘ĻðŸŋ" + }, + { + "group": 1, + "hexcode": "1F469-1F3FD-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FB", + "label": "kiss: woman, man, medium skin tone, light skin tone", + "order": 3104, + "unicode": "ðŸ‘ĐðŸ―â€âĪïļâ€ðŸ’‹â€ðŸ‘ĻðŸŧ" + }, + { + "group": 1, + "hexcode": "1F469-1F3FD-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FC", + "label": "kiss: woman, man, medium skin tone, medium-light skin tone", + "order": 3106, + "unicode": "ðŸ‘ĐðŸ―â€âĪïļâ€ðŸ’‹â€ðŸ‘Ļ🏞" + }, + { + "group": 1, + "hexcode": "1F469-1F3FD-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FD", + "label": "kiss: woman, man, medium skin tone", + "order": 3108, + "unicode": "ðŸ‘ĐðŸ―â€âĪïļâ€ðŸ’‹â€ðŸ‘ĻðŸ―" + }, + { + "group": 1, + "hexcode": "1F469-1F3FD-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FE", + "label": "kiss: woman, man, medium skin tone, medium-dark skin tone", + "order": 3110, + "unicode": "ðŸ‘ĐðŸ―â€âĪïļâ€ðŸ’‹â€ðŸ‘ĻðŸū" + }, + { + "group": 1, + "hexcode": "1F469-1F3FD-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FF", + "label": "kiss: woman, man, medium skin tone, dark skin tone", + "order": 3112, + "unicode": "ðŸ‘ĐðŸ―â€âĪïļâ€ðŸ’‹â€ðŸ‘ĻðŸŋ" + }, + { + "group": 1, + "hexcode": "1F469-1F3FE-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FB", + "label": "kiss: woman, man, medium-dark skin tone, light skin tone", + "order": 3114, + "unicode": "ðŸ‘ĐðŸū‍âĪïļâ€ðŸ’‹â€ðŸ‘ĻðŸŧ" + }, + { + "group": 1, + "hexcode": "1F469-1F3FE-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FC", + "label": "kiss: woman, man, medium-dark skin tone, medium-light skin tone", + "order": 3116, + "unicode": "ðŸ‘ĐðŸū‍âĪïļâ€ðŸ’‹â€ðŸ‘Ļ🏞" + }, + { + "group": 1, + "hexcode": "1F469-1F3FE-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FD", + "label": "kiss: woman, man, medium-dark skin tone, medium skin tone", + "order": 3118, + "unicode": "ðŸ‘ĐðŸū‍âĪïļâ€ðŸ’‹â€ðŸ‘ĻðŸ―" + }, + { + "group": 1, + "hexcode": "1F469-1F3FE-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FE", + "label": "kiss: woman, man, medium-dark skin tone", + "order": 3120, + "unicode": "ðŸ‘ĐðŸū‍âĪïļâ€ðŸ’‹â€ðŸ‘ĻðŸū" + }, + { + "group": 1, + "hexcode": "1F469-1F3FE-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FF", + "label": "kiss: woman, man, medium-dark skin tone, dark skin tone", + "order": 3122, + "unicode": "ðŸ‘ĐðŸū‍âĪïļâ€ðŸ’‹â€ðŸ‘ĻðŸŋ" + }, + { + "group": 1, + "hexcode": "1F469-1F3FF-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FB", + "label": "kiss: woman, man, dark skin tone, light skin tone", + "order": 3124, + "unicode": "ðŸ‘ĐðŸŋ‍âĪïļâ€ðŸ’‹â€ðŸ‘ĻðŸŧ" + }, + { + "group": 1, + "hexcode": "1F469-1F3FF-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FC", + "label": "kiss: woman, man, dark skin tone, medium-light skin tone", + "order": 3126, + "unicode": "ðŸ‘ĐðŸŋ‍âĪïļâ€ðŸ’‹â€ðŸ‘Ļ🏞" + }, + { + "group": 1, + "hexcode": "1F469-1F3FF-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FD", + "label": "kiss: woman, man, dark skin tone, medium skin tone", + "order": 3128, + "unicode": "ðŸ‘ĐðŸŋ‍âĪïļâ€ðŸ’‹â€ðŸ‘ĻðŸ―" + }, + { + "group": 1, + "hexcode": "1F469-1F3FF-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FE", + "label": "kiss: woman, man, dark skin tone, medium-dark skin tone", + "order": 3130, + "unicode": "ðŸ‘ĐðŸŋ‍âĪïļâ€ðŸ’‹â€ðŸ‘ĻðŸū" + }, + { + "group": 1, + "hexcode": "1F469-1F3FF-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FF", + "label": "kiss: woman, man, dark skin tone", + "order": 3132, + "unicode": "ðŸ‘ĐðŸŋ‍âĪïļâ€ðŸ’‹â€ðŸ‘ĻðŸŋ" + } + ] + }, + { + "group": 1, + "hexcode": "1F468-200D-2764-FE0F-200D-1F48B-200D-1F468", + "label": "kiss: man, man", + "order": 3134, + "tags": [ + "anniversary", + "babe", + "bae", + "couple", + "date", + "dating", + "heart", + "kiss", + "love", + "man", + "mwah", + "person", + "romance", + "together", + "xoxo" + ], + "unicode": "ðŸ‘Ļ‍âĪïļâ€ðŸ’‹â€ðŸ‘Ļ", + "skins": [ + { + "group": 1, + "hexcode": "1F468-1F3FB-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FB", + "label": "kiss: man, man, light skin tone", + "order": 3136, + "unicode": "ðŸ‘ĻðŸŧ‍âĪïļâ€ðŸ’‹â€ðŸ‘ĻðŸŧ" + }, + { + "group": 1, + "hexcode": "1F468-1F3FB-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FC", + "label": "kiss: man, man, light skin tone, medium-light skin tone", + "order": 3138, + "unicode": "ðŸ‘ĻðŸŧ‍âĪïļâ€ðŸ’‹â€ðŸ‘Ļ🏞" + }, + { + "group": 1, + "hexcode": "1F468-1F3FB-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FD", + "label": "kiss: man, man, light skin tone, medium skin tone", + "order": 3140, + "unicode": "ðŸ‘ĻðŸŧ‍âĪïļâ€ðŸ’‹â€ðŸ‘ĻðŸ―" + }, + { + "group": 1, + "hexcode": "1F468-1F3FB-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FE", + "label": "kiss: man, man, light skin tone, medium-dark skin tone", + "order": 3142, + "unicode": "ðŸ‘ĻðŸŧ‍âĪïļâ€ðŸ’‹â€ðŸ‘ĻðŸū" + }, + { + "group": 1, + "hexcode": "1F468-1F3FB-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FF", + "label": "kiss: man, man, light skin tone, dark skin tone", + "order": 3144, + "unicode": "ðŸ‘ĻðŸŧ‍âĪïļâ€ðŸ’‹â€ðŸ‘ĻðŸŋ" + }, + { + "group": 1, + "hexcode": "1F468-1F3FC-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FB", + "label": "kiss: man, man, medium-light skin tone, light skin tone", + "order": 3146, + "unicode": "ðŸ‘Ļ🏞‍âĪïļâ€ðŸ’‹â€ðŸ‘ĻðŸŧ" + }, + { + "group": 1, + "hexcode": "1F468-1F3FC-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FC", + "label": "kiss: man, man, medium-light skin tone", + "order": 3148, + "unicode": "ðŸ‘Ļ🏞‍âĪïļâ€ðŸ’‹â€ðŸ‘Ļ🏞" + }, + { + "group": 1, + "hexcode": "1F468-1F3FC-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FD", + "label": "kiss: man, man, medium-light skin tone, medium skin tone", + "order": 3150, + "unicode": "ðŸ‘Ļ🏞‍âĪïļâ€ðŸ’‹â€ðŸ‘ĻðŸ―" + }, + { + "group": 1, + "hexcode": "1F468-1F3FC-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FE", + "label": "kiss: man, man, medium-light skin tone, medium-dark skin tone", + "order": 3152, + "unicode": "ðŸ‘Ļ🏞‍âĪïļâ€ðŸ’‹â€ðŸ‘ĻðŸū" + }, + { + "group": 1, + "hexcode": "1F468-1F3FC-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FF", + "label": "kiss: man, man, medium-light skin tone, dark skin tone", + "order": 3154, + "unicode": "ðŸ‘Ļ🏞‍âĪïļâ€ðŸ’‹â€ðŸ‘ĻðŸŋ" + }, + { + "group": 1, + "hexcode": "1F468-1F3FD-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FB", + "label": "kiss: man, man, medium skin tone, light skin tone", + "order": 3156, + "unicode": "ðŸ‘ĻðŸ―â€âĪïļâ€ðŸ’‹â€ðŸ‘ĻðŸŧ" + }, + { + "group": 1, + "hexcode": "1F468-1F3FD-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FC", + "label": "kiss: man, man, medium skin tone, medium-light skin tone", + "order": 3158, + "unicode": "ðŸ‘ĻðŸ―â€âĪïļâ€ðŸ’‹â€ðŸ‘Ļ🏞" + }, + { + "group": 1, + "hexcode": "1F468-1F3FD-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FD", + "label": "kiss: man, man, medium skin tone", + "order": 3160, + "unicode": "ðŸ‘ĻðŸ―â€âĪïļâ€ðŸ’‹â€ðŸ‘ĻðŸ―" + }, + { + "group": 1, + "hexcode": "1F468-1F3FD-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FE", + "label": "kiss: man, man, medium skin tone, medium-dark skin tone", + "order": 3162, + "unicode": "ðŸ‘ĻðŸ―â€âĪïļâ€ðŸ’‹â€ðŸ‘ĻðŸū" + }, + { + "group": 1, + "hexcode": "1F468-1F3FD-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FF", + "label": "kiss: man, man, medium skin tone, dark skin tone", + "order": 3164, + "unicode": "ðŸ‘ĻðŸ―â€âĪïļâ€ðŸ’‹â€ðŸ‘ĻðŸŋ" + }, + { + "group": 1, + "hexcode": "1F468-1F3FE-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FB", + "label": "kiss: man, man, medium-dark skin tone, light skin tone", + "order": 3166, + "unicode": "ðŸ‘ĻðŸū‍âĪïļâ€ðŸ’‹â€ðŸ‘ĻðŸŧ" + }, + { + "group": 1, + "hexcode": "1F468-1F3FE-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FC", + "label": "kiss: man, man, medium-dark skin tone, medium-light skin tone", + "order": 3168, + "unicode": "ðŸ‘ĻðŸū‍âĪïļâ€ðŸ’‹â€ðŸ‘Ļ🏞" + }, + { + "group": 1, + "hexcode": "1F468-1F3FE-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FD", + "label": "kiss: man, man, medium-dark skin tone, medium skin tone", + "order": 3170, + "unicode": "ðŸ‘ĻðŸū‍âĪïļâ€ðŸ’‹â€ðŸ‘ĻðŸ―" + }, + { + "group": 1, + "hexcode": "1F468-1F3FE-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FE", + "label": "kiss: man, man, medium-dark skin tone", + "order": 3172, + "unicode": "ðŸ‘ĻðŸū‍âĪïļâ€ðŸ’‹â€ðŸ‘ĻðŸū" + }, + { + "group": 1, + "hexcode": "1F468-1F3FE-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FF", + "label": "kiss: man, man, medium-dark skin tone, dark skin tone", + "order": 3174, + "unicode": "ðŸ‘ĻðŸū‍âĪïļâ€ðŸ’‹â€ðŸ‘ĻðŸŋ" + }, + { + "group": 1, + "hexcode": "1F468-1F3FF-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FB", + "label": "kiss: man, man, dark skin tone, light skin tone", + "order": 3176, + "unicode": "ðŸ‘ĻðŸŋ‍âĪïļâ€ðŸ’‹â€ðŸ‘ĻðŸŧ" + }, + { + "group": 1, + "hexcode": "1F468-1F3FF-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FC", + "label": "kiss: man, man, dark skin tone, medium-light skin tone", + "order": 3178, + "unicode": "ðŸ‘ĻðŸŋ‍âĪïļâ€ðŸ’‹â€ðŸ‘Ļ🏞" + }, + { + "group": 1, + "hexcode": "1F468-1F3FF-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FD", + "label": "kiss: man, man, dark skin tone, medium skin tone", + "order": 3180, + "unicode": "ðŸ‘ĻðŸŋ‍âĪïļâ€ðŸ’‹â€ðŸ‘ĻðŸ―" + }, + { + "group": 1, + "hexcode": "1F468-1F3FF-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FE", + "label": "kiss: man, man, dark skin tone, medium-dark skin tone", + "order": 3182, + "unicode": "ðŸ‘ĻðŸŋ‍âĪïļâ€ðŸ’‹â€ðŸ‘ĻðŸū" + }, + { + "group": 1, + "hexcode": "1F468-1F3FF-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FF", + "label": "kiss: man, man, dark skin tone", + "order": 3184, + "unicode": "ðŸ‘ĻðŸŋ‍âĪïļâ€ðŸ’‹â€ðŸ‘ĻðŸŋ" + } + ] + }, + { + "group": 1, + "hexcode": "1F469-200D-2764-FE0F-200D-1F48B-200D-1F469", + "label": "kiss: woman, woman", + "order": 3186, + "tags": [ + "anniversary", + "babe", + "bae", + "couple", + "date", + "dating", + "heart", + "kiss", + "love", + "mwah", + "person", + "romance", + "together", + "woman", + "xoxo" + ], + "unicode": "ðŸ‘Đ‍âĪïļâ€ðŸ’‹â€ðŸ‘Đ", + "skins": [ + { + "group": 1, + "hexcode": "1F469-1F3FB-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FB", + "label": "kiss: woman, woman, light skin tone", + "order": 3188, + "unicode": "ðŸ‘ĐðŸŧ‍âĪïļâ€ðŸ’‹â€ðŸ‘ĐðŸŧ" + }, + { + "group": 1, + "hexcode": "1F469-1F3FB-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FC", + "label": "kiss: woman, woman, light skin tone, medium-light skin tone", + "order": 3190, + "unicode": "ðŸ‘ĐðŸŧ‍âĪïļâ€ðŸ’‹â€ðŸ‘Đ🏞" + }, + { + "group": 1, + "hexcode": "1F469-1F3FB-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FD", + "label": "kiss: woman, woman, light skin tone, medium skin tone", + "order": 3192, + "unicode": "ðŸ‘ĐðŸŧ‍âĪïļâ€ðŸ’‹â€ðŸ‘ĐðŸ―" + }, + { + "group": 1, + "hexcode": "1F469-1F3FB-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FE", + "label": "kiss: woman, woman, light skin tone, medium-dark skin tone", + "order": 3194, + "unicode": "ðŸ‘ĐðŸŧ‍âĪïļâ€ðŸ’‹â€ðŸ‘ĐðŸū" + }, + { + "group": 1, + "hexcode": "1F469-1F3FB-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FF", + "label": "kiss: woman, woman, light skin tone, dark skin tone", + "order": 3196, + "unicode": "ðŸ‘ĐðŸŧ‍âĪïļâ€ðŸ’‹â€ðŸ‘ĐðŸŋ" + }, + { + "group": 1, + "hexcode": "1F469-1F3FC-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FB", + "label": "kiss: woman, woman, medium-light skin tone, light skin tone", + "order": 3198, + "unicode": "ðŸ‘Đ🏞‍âĪïļâ€ðŸ’‹â€ðŸ‘ĐðŸŧ" + }, + { + "group": 1, + "hexcode": "1F469-1F3FC-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FC", + "label": "kiss: woman, woman, medium-light skin tone", + "order": 3200, + "unicode": "ðŸ‘Đ🏞‍âĪïļâ€ðŸ’‹â€ðŸ‘Đ🏞" + }, + { + "group": 1, + "hexcode": "1F469-1F3FC-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FD", + "label": "kiss: woman, woman, medium-light skin tone, medium skin tone", + "order": 3202, + "unicode": "ðŸ‘Đ🏞‍âĪïļâ€ðŸ’‹â€ðŸ‘ĐðŸ―" + }, + { + "group": 1, + "hexcode": "1F469-1F3FC-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FE", + "label": "kiss: woman, woman, medium-light skin tone, medium-dark skin tone", + "order": 3204, + "unicode": "ðŸ‘Đ🏞‍âĪïļâ€ðŸ’‹â€ðŸ‘ĐðŸū" + }, + { + "group": 1, + "hexcode": "1F469-1F3FC-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FF", + "label": "kiss: woman, woman, medium-light skin tone, dark skin tone", + "order": 3206, + "unicode": "ðŸ‘Đ🏞‍âĪïļâ€ðŸ’‹â€ðŸ‘ĐðŸŋ" + }, + { + "group": 1, + "hexcode": "1F469-1F3FD-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FB", + "label": "kiss: woman, woman, medium skin tone, light skin tone", + "order": 3208, + "unicode": "ðŸ‘ĐðŸ―â€âĪïļâ€ðŸ’‹â€ðŸ‘ĐðŸŧ" + }, + { + "group": 1, + "hexcode": "1F469-1F3FD-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FC", + "label": "kiss: woman, woman, medium skin tone, medium-light skin tone", + "order": 3210, + "unicode": "ðŸ‘ĐðŸ―â€âĪïļâ€ðŸ’‹â€ðŸ‘Đ🏞" + }, + { + "group": 1, + "hexcode": "1F469-1F3FD-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FD", + "label": "kiss: woman, woman, medium skin tone", + "order": 3212, + "unicode": "ðŸ‘ĐðŸ―â€âĪïļâ€ðŸ’‹â€ðŸ‘ĐðŸ―" + }, + { + "group": 1, + "hexcode": "1F469-1F3FD-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FE", + "label": "kiss: woman, woman, medium skin tone, medium-dark skin tone", + "order": 3214, + "unicode": "ðŸ‘ĐðŸ―â€âĪïļâ€ðŸ’‹â€ðŸ‘ĐðŸū" + }, + { + "group": 1, + "hexcode": "1F469-1F3FD-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FF", + "label": "kiss: woman, woman, medium skin tone, dark skin tone", + "order": 3216, + "unicode": "ðŸ‘ĐðŸ―â€âĪïļâ€ðŸ’‹â€ðŸ‘ĐðŸŋ" + }, + { + "group": 1, + "hexcode": "1F469-1F3FE-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FB", + "label": "kiss: woman, woman, medium-dark skin tone, light skin tone", + "order": 3218, + "unicode": "ðŸ‘ĐðŸū‍âĪïļâ€ðŸ’‹â€ðŸ‘ĐðŸŧ" + }, + { + "group": 1, + "hexcode": "1F469-1F3FE-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FC", + "label": "kiss: woman, woman, medium-dark skin tone, medium-light skin tone", + "order": 3220, + "unicode": "ðŸ‘ĐðŸū‍âĪïļâ€ðŸ’‹â€ðŸ‘Đ🏞" + }, + { + "group": 1, + "hexcode": "1F469-1F3FE-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FD", + "label": "kiss: woman, woman, medium-dark skin tone, medium skin tone", + "order": 3222, + "unicode": "ðŸ‘ĐðŸū‍âĪïļâ€ðŸ’‹â€ðŸ‘ĐðŸ―" + }, + { + "group": 1, + "hexcode": "1F469-1F3FE-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FE", + "label": "kiss: woman, woman, medium-dark skin tone", + "order": 3224, + "unicode": "ðŸ‘ĐðŸū‍âĪïļâ€ðŸ’‹â€ðŸ‘ĐðŸū" + }, + { + "group": 1, + "hexcode": "1F469-1F3FE-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FF", + "label": "kiss: woman, woman, medium-dark skin tone, dark skin tone", + "order": 3226, + "unicode": "ðŸ‘ĐðŸū‍âĪïļâ€ðŸ’‹â€ðŸ‘ĐðŸŋ" + }, + { + "group": 1, + "hexcode": "1F469-1F3FF-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FB", + "label": "kiss: woman, woman, dark skin tone, light skin tone", + "order": 3228, + "unicode": "ðŸ‘ĐðŸŋ‍âĪïļâ€ðŸ’‹â€ðŸ‘ĐðŸŧ" + }, + { + "group": 1, + "hexcode": "1F469-1F3FF-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FC", + "label": "kiss: woman, woman, dark skin tone, medium-light skin tone", + "order": 3230, + "unicode": "ðŸ‘ĐðŸŋ‍âĪïļâ€ðŸ’‹â€ðŸ‘Đ🏞" + }, + { + "group": 1, + "hexcode": "1F469-1F3FF-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FD", + "label": "kiss: woman, woman, dark skin tone, medium skin tone", + "order": 3232, + "unicode": "ðŸ‘ĐðŸŋ‍âĪïļâ€ðŸ’‹â€ðŸ‘ĐðŸ―" + }, + { + "group": 1, + "hexcode": "1F469-1F3FF-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FE", + "label": "kiss: woman, woman, dark skin tone, medium-dark skin tone", + "order": 3234, + "unicode": "ðŸ‘ĐðŸŋ‍âĪïļâ€ðŸ’‹â€ðŸ‘ĐðŸū" + }, + { + "group": 1, + "hexcode": "1F469-1F3FF-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FF", + "label": "kiss: woman, woman, dark skin tone", + "order": 3236, + "unicode": "ðŸ‘ĐðŸŋ‍âĪïļâ€ðŸ’‹â€ðŸ‘ĐðŸŋ" + } + ] + }, + { + "group": 1, + "hexcode": "1F491", + "label": "couple with heart", + "order": 3238, + "tags": [ + "anniversary", + "babe", + "bae", + "couple", + "dating", + "heart", + "kiss", + "love", + "person", + "relationship", + "romance", + "together", + "you" + ], + "unicode": "💑", + "skins": [ + { + "group": 1, + "hexcode": "1F491-1F3FB", + "label": "couple with heart: light skin tone", + "order": 3239, + "unicode": "💑ðŸŧ" + }, + { + "group": 1, + "hexcode": "1F491-1F3FC", + "label": "couple with heart: medium-light skin tone", + "order": 3240, + "unicode": "💑🏞" + }, + { + "group": 1, + "hexcode": "1F491-1F3FD", + "label": "couple with heart: medium skin tone", + "order": 3241, + "unicode": "ðŸ’‘ðŸ―" + }, + { + "group": 1, + "hexcode": "1F491-1F3FE", + "label": "couple with heart: medium-dark skin tone", + "order": 3242, + "unicode": "💑ðŸū" + }, + { + "group": 1, + "hexcode": "1F491-1F3FF", + "label": "couple with heart: dark skin tone", + "order": 3243, + "unicode": "💑ðŸŋ" + }, + { + "group": 1, + "hexcode": "1F9D1-1F3FB-200D-2764-FE0F-200D-1F9D1-1F3FC", + "label": "couple with heart: person, person, light skin tone, medium-light skin tone", + "order": 3244, + "unicode": "🧑ðŸŧ‍âĪïļâ€ðŸ§‘🏞" + }, + { + "group": 1, + "hexcode": "1F9D1-1F3FB-200D-2764-FE0F-200D-1F9D1-1F3FD", + "label": "couple with heart: person, person, light skin tone, medium skin tone", + "order": 3246, + "unicode": "🧑ðŸŧ‍âĪïļâ€ðŸ§‘ðŸ―" + }, + { + "group": 1, + "hexcode": "1F9D1-1F3FB-200D-2764-FE0F-200D-1F9D1-1F3FE", + "label": "couple with heart: person, person, light skin tone, medium-dark skin tone", + "order": 3248, + "unicode": "🧑ðŸŧ‍âĪïļâ€ðŸ§‘ðŸū" + }, + { + "group": 1, + "hexcode": "1F9D1-1F3FB-200D-2764-FE0F-200D-1F9D1-1F3FF", + "label": "couple with heart: person, person, light skin tone, dark skin tone", + "order": 3250, + "unicode": "🧑ðŸŧ‍âĪïļâ€ðŸ§‘ðŸŋ" + }, + { + "group": 1, + "hexcode": "1F9D1-1F3FC-200D-2764-FE0F-200D-1F9D1-1F3FB", + "label": "couple with heart: person, person, medium-light skin tone, light skin tone", + "order": 3252, + "unicode": "🧑🏞‍âĪïļâ€ðŸ§‘ðŸŧ" + }, + { + "group": 1, + "hexcode": "1F9D1-1F3FC-200D-2764-FE0F-200D-1F9D1-1F3FD", + "label": "couple with heart: person, person, medium-light skin tone, medium skin tone", + "order": 3254, + "unicode": "🧑🏞‍âĪïļâ€ðŸ§‘ðŸ―" + }, + { + "group": 1, + "hexcode": "1F9D1-1F3FC-200D-2764-FE0F-200D-1F9D1-1F3FE", + "label": "couple with heart: person, person, medium-light skin tone, medium-dark skin tone", + "order": 3256, + "unicode": "🧑🏞‍âĪïļâ€ðŸ§‘ðŸū" + }, + { + "group": 1, + "hexcode": "1F9D1-1F3FC-200D-2764-FE0F-200D-1F9D1-1F3FF", + "label": "couple with heart: person, person, medium-light skin tone, dark skin tone", + "order": 3258, + "unicode": "🧑🏞‍âĪïļâ€ðŸ§‘ðŸŋ" + }, + { + "group": 1, + "hexcode": "1F9D1-1F3FD-200D-2764-FE0F-200D-1F9D1-1F3FB", + "label": "couple with heart: person, person, medium skin tone, light skin tone", + "order": 3260, + "unicode": "ðŸ§‘ðŸ―â€âĪïļâ€ðŸ§‘ðŸŧ" + }, + { + "group": 1, + "hexcode": "1F9D1-1F3FD-200D-2764-FE0F-200D-1F9D1-1F3FC", + "label": "couple with heart: person, person, medium skin tone, medium-light skin tone", + "order": 3262, + "unicode": "ðŸ§‘ðŸ―â€âĪïļâ€ðŸ§‘🏞" + }, + { + "group": 1, + "hexcode": "1F9D1-1F3FD-200D-2764-FE0F-200D-1F9D1-1F3FE", + "label": "couple with heart: person, person, medium skin tone, medium-dark skin tone", + "order": 3264, + "unicode": "ðŸ§‘ðŸ―â€âĪïļâ€ðŸ§‘ðŸū" + }, + { + "group": 1, + "hexcode": "1F9D1-1F3FD-200D-2764-FE0F-200D-1F9D1-1F3FF", + "label": "couple with heart: person, person, medium skin tone, dark skin tone", + "order": 3266, + "unicode": "ðŸ§‘ðŸ―â€âĪïļâ€ðŸ§‘ðŸŋ" + }, + { + "group": 1, + "hexcode": "1F9D1-1F3FE-200D-2764-FE0F-200D-1F9D1-1F3FB", + "label": "couple with heart: person, person, medium-dark skin tone, light skin tone", + "order": 3268, + "unicode": "🧑ðŸū‍âĪïļâ€ðŸ§‘ðŸŧ" + }, + { + "group": 1, + "hexcode": "1F9D1-1F3FE-200D-2764-FE0F-200D-1F9D1-1F3FC", + "label": "couple with heart: person, person, medium-dark skin tone, medium-light skin tone", + "order": 3270, + "unicode": "🧑ðŸū‍âĪïļâ€ðŸ§‘🏞" + }, + { + "group": 1, + "hexcode": "1F9D1-1F3FE-200D-2764-FE0F-200D-1F9D1-1F3FD", + "label": "couple with heart: person, person, medium-dark skin tone, medium skin tone", + "order": 3272, + "unicode": "🧑ðŸū‍âĪïļâ€ðŸ§‘ðŸ―" + }, + { + "group": 1, + "hexcode": "1F9D1-1F3FE-200D-2764-FE0F-200D-1F9D1-1F3FF", + "label": "couple with heart: person, person, medium-dark skin tone, dark skin tone", + "order": 3274, + "unicode": "🧑ðŸū‍âĪïļâ€ðŸ§‘ðŸŋ" + }, + { + "group": 1, + "hexcode": "1F9D1-1F3FF-200D-2764-FE0F-200D-1F9D1-1F3FB", + "label": "couple with heart: person, person, dark skin tone, light skin tone", + "order": 3276, + "unicode": "🧑ðŸŋ‍âĪïļâ€ðŸ§‘ðŸŧ" + }, + { + "group": 1, + "hexcode": "1F9D1-1F3FF-200D-2764-FE0F-200D-1F9D1-1F3FC", + "label": "couple with heart: person, person, dark skin tone, medium-light skin tone", + "order": 3278, + "unicode": "🧑ðŸŋ‍âĪïļâ€ðŸ§‘🏞" + }, + { + "group": 1, + "hexcode": "1F9D1-1F3FF-200D-2764-FE0F-200D-1F9D1-1F3FD", + "label": "couple with heart: person, person, dark skin tone, medium skin tone", + "order": 3280, + "unicode": "🧑ðŸŋ‍âĪïļâ€ðŸ§‘ðŸ―" + }, + { + "group": 1, + "hexcode": "1F9D1-1F3FF-200D-2764-FE0F-200D-1F9D1-1F3FE", + "label": "couple with heart: person, person, dark skin tone, medium-dark skin tone", + "order": 3282, + "unicode": "🧑ðŸŋ‍âĪïļâ€ðŸ§‘ðŸū" + } + ] + }, + { + "group": 1, + "hexcode": "1F469-200D-2764-FE0F-200D-1F468", + "label": "couple with heart: woman, man", + "order": 3284, + "tags": [ + "anniversary", + "babe", + "bae", + "couple", + "dating", + "heart", + "kiss", + "love", + "man", + "person", + "relationship", + "romance", + "together", + "woman", + "you" + ], + "unicode": "ðŸ‘Đ‍âĪïļâ€ðŸ‘Ļ", + "skins": [ + { + "group": 1, + "hexcode": "1F469-1F3FB-200D-2764-FE0F-200D-1F468-1F3FB", + "label": "couple with heart: woman, man, light skin tone", + "order": 3286, + "unicode": "ðŸ‘ĐðŸŧ‍âĪïļâ€ðŸ‘ĻðŸŧ" + }, + { + "group": 1, + "hexcode": "1F469-1F3FB-200D-2764-FE0F-200D-1F468-1F3FC", + "label": "couple with heart: woman, man, light skin tone, medium-light skin tone", + "order": 3288, + "unicode": "ðŸ‘ĐðŸŧ‍âĪïļâ€ðŸ‘Ļ🏞" + }, + { + "group": 1, + "hexcode": "1F469-1F3FB-200D-2764-FE0F-200D-1F468-1F3FD", + "label": "couple with heart: woman, man, light skin tone, medium skin tone", + "order": 3290, + "unicode": "ðŸ‘ĐðŸŧ‍âĪïļâ€ðŸ‘ĻðŸ―" + }, + { + "group": 1, + "hexcode": "1F469-1F3FB-200D-2764-FE0F-200D-1F468-1F3FE", + "label": "couple with heart: woman, man, light skin tone, medium-dark skin tone", + "order": 3292, + "unicode": "ðŸ‘ĐðŸŧ‍âĪïļâ€ðŸ‘ĻðŸū" + }, + { + "group": 1, + "hexcode": "1F469-1F3FB-200D-2764-FE0F-200D-1F468-1F3FF", + "label": "couple with heart: woman, man, light skin tone, dark skin tone", + "order": 3294, + "unicode": "ðŸ‘ĐðŸŧ‍âĪïļâ€ðŸ‘ĻðŸŋ" + }, + { + "group": 1, + "hexcode": "1F469-1F3FC-200D-2764-FE0F-200D-1F468-1F3FB", + "label": "couple with heart: woman, man, medium-light skin tone, light skin tone", + "order": 3296, + "unicode": "ðŸ‘Đ🏞‍âĪïļâ€ðŸ‘ĻðŸŧ" + }, + { + "group": 1, + "hexcode": "1F469-1F3FC-200D-2764-FE0F-200D-1F468-1F3FC", + "label": "couple with heart: woman, man, medium-light skin tone", + "order": 3298, + "unicode": "ðŸ‘Đ🏞‍âĪïļâ€ðŸ‘Ļ🏞" + }, + { + "group": 1, + "hexcode": "1F469-1F3FC-200D-2764-FE0F-200D-1F468-1F3FD", + "label": "couple with heart: woman, man, medium-light skin tone, medium skin tone", + "order": 3300, + "unicode": "ðŸ‘Đ🏞‍âĪïļâ€ðŸ‘ĻðŸ―" + }, + { + "group": 1, + "hexcode": "1F469-1F3FC-200D-2764-FE0F-200D-1F468-1F3FE", + "label": "couple with heart: woman, man, medium-light skin tone, medium-dark skin tone", + "order": 3302, + "unicode": "ðŸ‘Đ🏞‍âĪïļâ€ðŸ‘ĻðŸū" + }, + { + "group": 1, + "hexcode": "1F469-1F3FC-200D-2764-FE0F-200D-1F468-1F3FF", + "label": "couple with heart: woman, man, medium-light skin tone, dark skin tone", + "order": 3304, + "unicode": "ðŸ‘Đ🏞‍âĪïļâ€ðŸ‘ĻðŸŋ" + }, + { + "group": 1, + "hexcode": "1F469-1F3FD-200D-2764-FE0F-200D-1F468-1F3FB", + "label": "couple with heart: woman, man, medium skin tone, light skin tone", + "order": 3306, + "unicode": "ðŸ‘ĐðŸ―â€âĪïļâ€ðŸ‘ĻðŸŧ" + }, + { + "group": 1, + "hexcode": "1F469-1F3FD-200D-2764-FE0F-200D-1F468-1F3FC", + "label": "couple with heart: woman, man, medium skin tone, medium-light skin tone", + "order": 3308, + "unicode": "ðŸ‘ĐðŸ―â€âĪïļâ€ðŸ‘Ļ🏞" + }, + { + "group": 1, + "hexcode": "1F469-1F3FD-200D-2764-FE0F-200D-1F468-1F3FD", + "label": "couple with heart: woman, man, medium skin tone", + "order": 3310, + "unicode": "ðŸ‘ĐðŸ―â€âĪïļâ€ðŸ‘ĻðŸ―" + }, + { + "group": 1, + "hexcode": "1F469-1F3FD-200D-2764-FE0F-200D-1F468-1F3FE", + "label": "couple with heart: woman, man, medium skin tone, medium-dark skin tone", + "order": 3312, + "unicode": "ðŸ‘ĐðŸ―â€âĪïļâ€ðŸ‘ĻðŸū" + }, + { + "group": 1, + "hexcode": "1F469-1F3FD-200D-2764-FE0F-200D-1F468-1F3FF", + "label": "couple with heart: woman, man, medium skin tone, dark skin tone", + "order": 3314, + "unicode": "ðŸ‘ĐðŸ―â€âĪïļâ€ðŸ‘ĻðŸŋ" + }, + { + "group": 1, + "hexcode": "1F469-1F3FE-200D-2764-FE0F-200D-1F468-1F3FB", + "label": "couple with heart: woman, man, medium-dark skin tone, light skin tone", + "order": 3316, + "unicode": "ðŸ‘ĐðŸū‍âĪïļâ€ðŸ‘ĻðŸŧ" + }, + { + "group": 1, + "hexcode": "1F469-1F3FE-200D-2764-FE0F-200D-1F468-1F3FC", + "label": "couple with heart: woman, man, medium-dark skin tone, medium-light skin tone", + "order": 3318, + "unicode": "ðŸ‘ĐðŸū‍âĪïļâ€ðŸ‘Ļ🏞" + }, + { + "group": 1, + "hexcode": "1F469-1F3FE-200D-2764-FE0F-200D-1F468-1F3FD", + "label": "couple with heart: woman, man, medium-dark skin tone, medium skin tone", + "order": 3320, + "unicode": "ðŸ‘ĐðŸū‍âĪïļâ€ðŸ‘ĻðŸ―" + }, + { + "group": 1, + "hexcode": "1F469-1F3FE-200D-2764-FE0F-200D-1F468-1F3FE", + "label": "couple with heart: woman, man, medium-dark skin tone", + "order": 3322, + "unicode": "ðŸ‘ĐðŸū‍âĪïļâ€ðŸ‘ĻðŸū" + }, + { + "group": 1, + "hexcode": "1F469-1F3FE-200D-2764-FE0F-200D-1F468-1F3FF", + "label": "couple with heart: woman, man, medium-dark skin tone, dark skin tone", + "order": 3324, + "unicode": "ðŸ‘ĐðŸū‍âĪïļâ€ðŸ‘ĻðŸŋ" + }, + { + "group": 1, + "hexcode": "1F469-1F3FF-200D-2764-FE0F-200D-1F468-1F3FB", + "label": "couple with heart: woman, man, dark skin tone, light skin tone", + "order": 3326, + "unicode": "ðŸ‘ĐðŸŋ‍âĪïļâ€ðŸ‘ĻðŸŧ" + }, + { + "group": 1, + "hexcode": "1F469-1F3FF-200D-2764-FE0F-200D-1F468-1F3FC", + "label": "couple with heart: woman, man, dark skin tone, medium-light skin tone", + "order": 3328, + "unicode": "ðŸ‘ĐðŸŋ‍âĪïļâ€ðŸ‘Ļ🏞" + }, + { + "group": 1, + "hexcode": "1F469-1F3FF-200D-2764-FE0F-200D-1F468-1F3FD", + "label": "couple with heart: woman, man, dark skin tone, medium skin tone", + "order": 3330, + "unicode": "ðŸ‘ĐðŸŋ‍âĪïļâ€ðŸ‘ĻðŸ―" + }, + { + "group": 1, + "hexcode": "1F469-1F3FF-200D-2764-FE0F-200D-1F468-1F3FE", + "label": "couple with heart: woman, man, dark skin tone, medium-dark skin tone", + "order": 3332, + "unicode": "ðŸ‘ĐðŸŋ‍âĪïļâ€ðŸ‘ĻðŸū" + }, + { + "group": 1, + "hexcode": "1F469-1F3FF-200D-2764-FE0F-200D-1F468-1F3FF", + "label": "couple with heart: woman, man, dark skin tone", + "order": 3334, + "unicode": "ðŸ‘ĐðŸŋ‍âĪïļâ€ðŸ‘ĻðŸŋ" + } + ] + }, + { + "group": 1, + "hexcode": "1F468-200D-2764-FE0F-200D-1F468", + "label": "couple with heart: man, man", + "order": 3336, + "tags": [ + "anniversary", + "babe", + "bae", + "couple", + "dating", + "heart", + "kiss", + "love", + "man", + "person", + "relationship", + "romance", + "together", + "you" + ], + "unicode": "ðŸ‘Ļ‍âĪïļâ€ðŸ‘Ļ", + "skins": [ + { + "group": 1, + "hexcode": "1F468-1F3FB-200D-2764-FE0F-200D-1F468-1F3FB", + "label": "couple with heart: man, man, light skin tone", + "order": 3338, + "unicode": "ðŸ‘ĻðŸŧ‍âĪïļâ€ðŸ‘ĻðŸŧ" + }, + { + "group": 1, + "hexcode": "1F468-1F3FB-200D-2764-FE0F-200D-1F468-1F3FC", + "label": "couple with heart: man, man, light skin tone, medium-light skin tone", + "order": 3340, + "unicode": "ðŸ‘ĻðŸŧ‍âĪïļâ€ðŸ‘Ļ🏞" + }, + { + "group": 1, + "hexcode": "1F468-1F3FB-200D-2764-FE0F-200D-1F468-1F3FD", + "label": "couple with heart: man, man, light skin tone, medium skin tone", + "order": 3342, + "unicode": "ðŸ‘ĻðŸŧ‍âĪïļâ€ðŸ‘ĻðŸ―" + }, + { + "group": 1, + "hexcode": "1F468-1F3FB-200D-2764-FE0F-200D-1F468-1F3FE", + "label": "couple with heart: man, man, light skin tone, medium-dark skin tone", + "order": 3344, + "unicode": "ðŸ‘ĻðŸŧ‍âĪïļâ€ðŸ‘ĻðŸū" + }, + { + "group": 1, + "hexcode": "1F468-1F3FB-200D-2764-FE0F-200D-1F468-1F3FF", + "label": "couple with heart: man, man, light skin tone, dark skin tone", + "order": 3346, + "unicode": "ðŸ‘ĻðŸŧ‍âĪïļâ€ðŸ‘ĻðŸŋ" + }, + { + "group": 1, + "hexcode": "1F468-1F3FC-200D-2764-FE0F-200D-1F468-1F3FB", + "label": "couple with heart: man, man, medium-light skin tone, light skin tone", + "order": 3348, + "unicode": "ðŸ‘Ļ🏞‍âĪïļâ€ðŸ‘ĻðŸŧ" + }, + { + "group": 1, + "hexcode": "1F468-1F3FC-200D-2764-FE0F-200D-1F468-1F3FC", + "label": "couple with heart: man, man, medium-light skin tone", + "order": 3350, + "unicode": "ðŸ‘Ļ🏞‍âĪïļâ€ðŸ‘Ļ🏞" + }, + { + "group": 1, + "hexcode": "1F468-1F3FC-200D-2764-FE0F-200D-1F468-1F3FD", + "label": "couple with heart: man, man, medium-light skin tone, medium skin tone", + "order": 3352, + "unicode": "ðŸ‘Ļ🏞‍âĪïļâ€ðŸ‘ĻðŸ―" + }, + { + "group": 1, + "hexcode": "1F468-1F3FC-200D-2764-FE0F-200D-1F468-1F3FE", + "label": "couple with heart: man, man, medium-light skin tone, medium-dark skin tone", + "order": 3354, + "unicode": "ðŸ‘Ļ🏞‍âĪïļâ€ðŸ‘ĻðŸū" + }, + { + "group": 1, + "hexcode": "1F468-1F3FC-200D-2764-FE0F-200D-1F468-1F3FF", + "label": "couple with heart: man, man, medium-light skin tone, dark skin tone", + "order": 3356, + "unicode": "ðŸ‘Ļ🏞‍âĪïļâ€ðŸ‘ĻðŸŋ" + }, + { + "group": 1, + "hexcode": "1F468-1F3FD-200D-2764-FE0F-200D-1F468-1F3FB", + "label": "couple with heart: man, man, medium skin tone, light skin tone", + "order": 3358, + "unicode": "ðŸ‘ĻðŸ―â€âĪïļâ€ðŸ‘ĻðŸŧ" + }, + { + "group": 1, + "hexcode": "1F468-1F3FD-200D-2764-FE0F-200D-1F468-1F3FC", + "label": "couple with heart: man, man, medium skin tone, medium-light skin tone", + "order": 3360, + "unicode": "ðŸ‘ĻðŸ―â€âĪïļâ€ðŸ‘Ļ🏞" + }, + { + "group": 1, + "hexcode": "1F468-1F3FD-200D-2764-FE0F-200D-1F468-1F3FD", + "label": "couple with heart: man, man, medium skin tone", + "order": 3362, + "unicode": "ðŸ‘ĻðŸ―â€âĪïļâ€ðŸ‘ĻðŸ―" + }, + { + "group": 1, + "hexcode": "1F468-1F3FD-200D-2764-FE0F-200D-1F468-1F3FE", + "label": "couple with heart: man, man, medium skin tone, medium-dark skin tone", + "order": 3364, + "unicode": "ðŸ‘ĻðŸ―â€âĪïļâ€ðŸ‘ĻðŸū" + }, + { + "group": 1, + "hexcode": "1F468-1F3FD-200D-2764-FE0F-200D-1F468-1F3FF", + "label": "couple with heart: man, man, medium skin tone, dark skin tone", + "order": 3366, + "unicode": "ðŸ‘ĻðŸ―â€âĪïļâ€ðŸ‘ĻðŸŋ" + }, + { + "group": 1, + "hexcode": "1F468-1F3FE-200D-2764-FE0F-200D-1F468-1F3FB", + "label": "couple with heart: man, man, medium-dark skin tone, light skin tone", + "order": 3368, + "unicode": "ðŸ‘ĻðŸū‍âĪïļâ€ðŸ‘ĻðŸŧ" + }, + { + "group": 1, + "hexcode": "1F468-1F3FE-200D-2764-FE0F-200D-1F468-1F3FC", + "label": "couple with heart: man, man, medium-dark skin tone, medium-light skin tone", + "order": 3370, + "unicode": "ðŸ‘ĻðŸū‍âĪïļâ€ðŸ‘Ļ🏞" + }, + { + "group": 1, + "hexcode": "1F468-1F3FE-200D-2764-FE0F-200D-1F468-1F3FD", + "label": "couple with heart: man, man, medium-dark skin tone, medium skin tone", + "order": 3372, + "unicode": "ðŸ‘ĻðŸū‍âĪïļâ€ðŸ‘ĻðŸ―" + }, + { + "group": 1, + "hexcode": "1F468-1F3FE-200D-2764-FE0F-200D-1F468-1F3FE", + "label": "couple with heart: man, man, medium-dark skin tone", + "order": 3374, + "unicode": "ðŸ‘ĻðŸū‍âĪïļâ€ðŸ‘ĻðŸū" + }, + { + "group": 1, + "hexcode": "1F468-1F3FE-200D-2764-FE0F-200D-1F468-1F3FF", + "label": "couple with heart: man, man, medium-dark skin tone, dark skin tone", + "order": 3376, + "unicode": "ðŸ‘ĻðŸū‍âĪïļâ€ðŸ‘ĻðŸŋ" + }, + { + "group": 1, + "hexcode": "1F468-1F3FF-200D-2764-FE0F-200D-1F468-1F3FB", + "label": "couple with heart: man, man, dark skin tone, light skin tone", + "order": 3378, + "unicode": "ðŸ‘ĻðŸŋ‍âĪïļâ€ðŸ‘ĻðŸŧ" + }, + { + "group": 1, + "hexcode": "1F468-1F3FF-200D-2764-FE0F-200D-1F468-1F3FC", + "label": "couple with heart: man, man, dark skin tone, medium-light skin tone", + "order": 3380, + "unicode": "ðŸ‘ĻðŸŋ‍âĪïļâ€ðŸ‘Ļ🏞" + }, + { + "group": 1, + "hexcode": "1F468-1F3FF-200D-2764-FE0F-200D-1F468-1F3FD", + "label": "couple with heart: man, man, dark skin tone, medium skin tone", + "order": 3382, + "unicode": "ðŸ‘ĻðŸŋ‍âĪïļâ€ðŸ‘ĻðŸ―" + }, + { + "group": 1, + "hexcode": "1F468-1F3FF-200D-2764-FE0F-200D-1F468-1F3FE", + "label": "couple with heart: man, man, dark skin tone, medium-dark skin tone", + "order": 3384, + "unicode": "ðŸ‘ĻðŸŋ‍âĪïļâ€ðŸ‘ĻðŸū" + }, + { + "group": 1, + "hexcode": "1F468-1F3FF-200D-2764-FE0F-200D-1F468-1F3FF", + "label": "couple with heart: man, man, dark skin tone", + "order": 3386, + "unicode": "ðŸ‘ĻðŸŋ‍âĪïļâ€ðŸ‘ĻðŸŋ" + } + ] + }, + { + "group": 1, + "hexcode": "1F469-200D-2764-FE0F-200D-1F469", + "label": "couple with heart: woman, woman", + "order": 3388, + "tags": [ + "anniversary", + "babe", + "bae", + "couple", + "dating", + "heart", + "kiss", + "love", + "person", + "relationship", + "romance", + "together", + "woman", + "you" + ], + "unicode": "ðŸ‘Đ‍âĪïļâ€ðŸ‘Đ", + "skins": [ + { + "group": 1, + "hexcode": "1F469-1F3FB-200D-2764-FE0F-200D-1F469-1F3FB", + "label": "couple with heart: woman, woman, light skin tone", + "order": 3390, + "unicode": "ðŸ‘ĐðŸŧ‍âĪïļâ€ðŸ‘ĐðŸŧ" + }, + { + "group": 1, + "hexcode": "1F469-1F3FB-200D-2764-FE0F-200D-1F469-1F3FC", + "label": "couple with heart: woman, woman, light skin tone, medium-light skin tone", + "order": 3392, + "unicode": "ðŸ‘ĐðŸŧ‍âĪïļâ€ðŸ‘Đ🏞" + }, + { + "group": 1, + "hexcode": "1F469-1F3FB-200D-2764-FE0F-200D-1F469-1F3FD", + "label": "couple with heart: woman, woman, light skin tone, medium skin tone", + "order": 3394, + "unicode": "ðŸ‘ĐðŸŧ‍âĪïļâ€ðŸ‘ĐðŸ―" + }, + { + "group": 1, + "hexcode": "1F469-1F3FB-200D-2764-FE0F-200D-1F469-1F3FE", + "label": "couple with heart: woman, woman, light skin tone, medium-dark skin tone", + "order": 3396, + "unicode": "ðŸ‘ĐðŸŧ‍âĪïļâ€ðŸ‘ĐðŸū" + }, + { + "group": 1, + "hexcode": "1F469-1F3FB-200D-2764-FE0F-200D-1F469-1F3FF", + "label": "couple with heart: woman, woman, light skin tone, dark skin tone", + "order": 3398, + "unicode": "ðŸ‘ĐðŸŧ‍âĪïļâ€ðŸ‘ĐðŸŋ" + }, + { + "group": 1, + "hexcode": "1F469-1F3FC-200D-2764-FE0F-200D-1F469-1F3FB", + "label": "couple with heart: woman, woman, medium-light skin tone, light skin tone", + "order": 3400, + "unicode": "ðŸ‘Đ🏞‍âĪïļâ€ðŸ‘ĐðŸŧ" + }, + { + "group": 1, + "hexcode": "1F469-1F3FC-200D-2764-FE0F-200D-1F469-1F3FC", + "label": "couple with heart: woman, woman, medium-light skin tone", + "order": 3402, + "unicode": "ðŸ‘Đ🏞‍âĪïļâ€ðŸ‘Đ🏞" + }, + { + "group": 1, + "hexcode": "1F469-1F3FC-200D-2764-FE0F-200D-1F469-1F3FD", + "label": "couple with heart: woman, woman, medium-light skin tone, medium skin tone", + "order": 3404, + "unicode": "ðŸ‘Đ🏞‍âĪïļâ€ðŸ‘ĐðŸ―" + }, + { + "group": 1, + "hexcode": "1F469-1F3FC-200D-2764-FE0F-200D-1F469-1F3FE", + "label": "couple with heart: woman, woman, medium-light skin tone, medium-dark skin tone", + "order": 3406, + "unicode": "ðŸ‘Đ🏞‍âĪïļâ€ðŸ‘ĐðŸū" + }, + { + "group": 1, + "hexcode": "1F469-1F3FC-200D-2764-FE0F-200D-1F469-1F3FF", + "label": "couple with heart: woman, woman, medium-light skin tone, dark skin tone", + "order": 3408, + "unicode": "ðŸ‘Đ🏞‍âĪïļâ€ðŸ‘ĐðŸŋ" + }, + { + "group": 1, + "hexcode": "1F469-1F3FD-200D-2764-FE0F-200D-1F469-1F3FB", + "label": "couple with heart: woman, woman, medium skin tone, light skin tone", + "order": 3410, + "unicode": "ðŸ‘ĐðŸ―â€âĪïļâ€ðŸ‘ĐðŸŧ" + }, + { + "group": 1, + "hexcode": "1F469-1F3FD-200D-2764-FE0F-200D-1F469-1F3FC", + "label": "couple with heart: woman, woman, medium skin tone, medium-light skin tone", + "order": 3412, + "unicode": "ðŸ‘ĐðŸ―â€âĪïļâ€ðŸ‘Đ🏞" + }, + { + "group": 1, + "hexcode": "1F469-1F3FD-200D-2764-FE0F-200D-1F469-1F3FD", + "label": "couple with heart: woman, woman, medium skin tone", + "order": 3414, + "unicode": "ðŸ‘ĐðŸ―â€âĪïļâ€ðŸ‘ĐðŸ―" + }, + { + "group": 1, + "hexcode": "1F469-1F3FD-200D-2764-FE0F-200D-1F469-1F3FE", + "label": "couple with heart: woman, woman, medium skin tone, medium-dark skin tone", + "order": 3416, + "unicode": "ðŸ‘ĐðŸ―â€âĪïļâ€ðŸ‘ĐðŸū" + }, + { + "group": 1, + "hexcode": "1F469-1F3FD-200D-2764-FE0F-200D-1F469-1F3FF", + "label": "couple with heart: woman, woman, medium skin tone, dark skin tone", + "order": 3418, + "unicode": "ðŸ‘ĐðŸ―â€âĪïļâ€ðŸ‘ĐðŸŋ" + }, + { + "group": 1, + "hexcode": "1F469-1F3FE-200D-2764-FE0F-200D-1F469-1F3FB", + "label": "couple with heart: woman, woman, medium-dark skin tone, light skin tone", + "order": 3420, + "unicode": "ðŸ‘ĐðŸū‍âĪïļâ€ðŸ‘ĐðŸŧ" + }, + { + "group": 1, + "hexcode": "1F469-1F3FE-200D-2764-FE0F-200D-1F469-1F3FC", + "label": "couple with heart: woman, woman, medium-dark skin tone, medium-light skin tone", + "order": 3422, + "unicode": "ðŸ‘ĐðŸū‍âĪïļâ€ðŸ‘Đ🏞" + }, + { + "group": 1, + "hexcode": "1F469-1F3FE-200D-2764-FE0F-200D-1F469-1F3FD", + "label": "couple with heart: woman, woman, medium-dark skin tone, medium skin tone", + "order": 3424, + "unicode": "ðŸ‘ĐðŸū‍âĪïļâ€ðŸ‘ĐðŸ―" + }, + { + "group": 1, + "hexcode": "1F469-1F3FE-200D-2764-FE0F-200D-1F469-1F3FE", + "label": "couple with heart: woman, woman, medium-dark skin tone", + "order": 3426, + "unicode": "ðŸ‘ĐðŸū‍âĪïļâ€ðŸ‘ĐðŸū" + }, + { + "group": 1, + "hexcode": "1F469-1F3FE-200D-2764-FE0F-200D-1F469-1F3FF", + "label": "couple with heart: woman, woman, medium-dark skin tone, dark skin tone", + "order": 3428, + "unicode": "ðŸ‘ĐðŸū‍âĪïļâ€ðŸ‘ĐðŸŋ" + }, + { + "group": 1, + "hexcode": "1F469-1F3FF-200D-2764-FE0F-200D-1F469-1F3FB", + "label": "couple with heart: woman, woman, dark skin tone, light skin tone", + "order": 3430, + "unicode": "ðŸ‘ĐðŸŋ‍âĪïļâ€ðŸ‘ĐðŸŧ" + }, + { + "group": 1, + "hexcode": "1F469-1F3FF-200D-2764-FE0F-200D-1F469-1F3FC", + "label": "couple with heart: woman, woman, dark skin tone, medium-light skin tone", + "order": 3432, + "unicode": "ðŸ‘ĐðŸŋ‍âĪïļâ€ðŸ‘Đ🏞" + }, + { + "group": 1, + "hexcode": "1F469-1F3FF-200D-2764-FE0F-200D-1F469-1F3FD", + "label": "couple with heart: woman, woman, dark skin tone, medium skin tone", + "order": 3434, + "unicode": "ðŸ‘ĐðŸŋ‍âĪïļâ€ðŸ‘ĐðŸ―" + }, + { + "group": 1, + "hexcode": "1F469-1F3FF-200D-2764-FE0F-200D-1F469-1F3FE", + "label": "couple with heart: woman, woman, dark skin tone, medium-dark skin tone", + "order": 3436, + "unicode": "ðŸ‘ĐðŸŋ‍âĪïļâ€ðŸ‘ĐðŸū" + }, + { + "group": 1, + "hexcode": "1F469-1F3FF-200D-2764-FE0F-200D-1F469-1F3FF", + "label": "couple with heart: woman, woman, dark skin tone", + "order": 3438, + "unicode": "ðŸ‘ĐðŸŋ‍âĪïļâ€ðŸ‘ĐðŸŋ" + } + ] + }, + { + "group": 1, + "hexcode": "1F468-200D-1F469-200D-1F466", + "label": "family: man, woman, boy", + "order": 3440, + "tags": ["boy", "child", "family", "man", "woman"], + "unicode": "ðŸ‘Ļ‍ðŸ‘Đ‍ðŸ‘Ķ" + }, + { + "group": 1, + "hexcode": "1F468-200D-1F469-200D-1F467", + "label": "family: man, woman, girl", + "order": 3441, + "tags": ["child", "family", "girl", "man", "woman"], + "unicode": "ðŸ‘Ļ‍ðŸ‘Đ‍👧" + }, + { + "group": 1, + "hexcode": "1F468-200D-1F469-200D-1F467-200D-1F466", + "label": "family: man, woman, girl, boy", + "order": 3442, + "tags": ["boy", "child", "family", "girl", "man", "woman"], + "unicode": "ðŸ‘Ļ‍ðŸ‘Đ‍👧‍ðŸ‘Ķ" + }, + { + "group": 1, + "hexcode": "1F468-200D-1F469-200D-1F466-200D-1F466", + "label": "family: man, woman, boy, boy", + "order": 3443, + "tags": ["boy", "child", "family", "man", "woman"], + "unicode": "ðŸ‘Ļ‍ðŸ‘Đ‍ðŸ‘Ķ‍ðŸ‘Ķ" + }, + { + "group": 1, + "hexcode": "1F468-200D-1F469-200D-1F467-200D-1F467", + "label": "family: man, woman, girl, girl", + "order": 3444, + "tags": ["child", "family", "girl", "man", "woman"], + "unicode": "ðŸ‘Ļ‍ðŸ‘Đ‍👧‍👧" + }, + { + "group": 1, + "hexcode": "1F468-200D-1F468-200D-1F466", + "label": "family: man, man, boy", + "order": 3445, + "tags": ["boy", "child", "family", "man"], + "unicode": "ðŸ‘Ļ‍ðŸ‘Ļ‍ðŸ‘Ķ" + }, + { + "group": 1, + "hexcode": "1F468-200D-1F468-200D-1F467", + "label": "family: man, man, girl", + "order": 3446, + "tags": ["child", "family", "girl", "man"], + "unicode": "ðŸ‘Ļ‍ðŸ‘Ļ‍👧" + }, + { + "group": 1, + "hexcode": "1F468-200D-1F468-200D-1F467-200D-1F466", + "label": "family: man, man, girl, boy", + "order": 3447, + "tags": ["boy", "child", "family", "girl", "man"], + "unicode": "ðŸ‘Ļ‍ðŸ‘Ļ‍👧‍ðŸ‘Ķ" + }, + { + "group": 1, + "hexcode": "1F468-200D-1F468-200D-1F466-200D-1F466", + "label": "family: man, man, boy, boy", + "order": 3448, + "tags": ["boy", "child", "family", "man"], + "unicode": "ðŸ‘Ļ‍ðŸ‘Ļ‍ðŸ‘Ķ‍ðŸ‘Ķ" + }, + { + "group": 1, + "hexcode": "1F468-200D-1F468-200D-1F467-200D-1F467", + "label": "family: man, man, girl, girl", + "order": 3449, + "tags": ["child", "family", "girl", "man"], + "unicode": "ðŸ‘Ļ‍ðŸ‘Ļ‍👧‍👧" + }, + { + "group": 1, + "hexcode": "1F469-200D-1F469-200D-1F466", + "label": "family: woman, woman, boy", + "order": 3450, + "tags": ["boy", "child", "family", "woman"], + "unicode": "ðŸ‘Đ‍ðŸ‘Đ‍ðŸ‘Ķ" + }, + { + "group": 1, + "hexcode": "1F469-200D-1F469-200D-1F467", + "label": "family: woman, woman, girl", + "order": 3451, + "tags": ["child", "family", "girl", "woman"], + "unicode": "ðŸ‘Đ‍ðŸ‘Đ‍👧" + }, + { + "group": 1, + "hexcode": "1F469-200D-1F469-200D-1F467-200D-1F466", + "label": "family: woman, woman, girl, boy", + "order": 3452, + "tags": ["boy", "child", "family", "girl", "woman"], + "unicode": "ðŸ‘Đ‍ðŸ‘Đ‍👧‍ðŸ‘Ķ" + }, + { + "group": 1, + "hexcode": "1F469-200D-1F469-200D-1F466-200D-1F466", + "label": "family: woman, woman, boy, boy", + "order": 3453, + "tags": ["boy", "child", "family", "woman"], + "unicode": "ðŸ‘Đ‍ðŸ‘Đ‍ðŸ‘Ķ‍ðŸ‘Ķ" + }, + { + "group": 1, + "hexcode": "1F469-200D-1F469-200D-1F467-200D-1F467", + "label": "family: woman, woman, girl, girl", + "order": 3454, + "tags": ["child", "family", "girl", "woman"], + "unicode": "ðŸ‘Đ‍ðŸ‘Đ‍👧‍👧" + }, + { + "group": 1, + "hexcode": "1F468-200D-1F466", + "label": "family: man, boy", + "order": 3455, + "tags": ["boy", "child", "family", "man"], + "unicode": "ðŸ‘Ļ‍ðŸ‘Ķ" + }, + { + "group": 1, + "hexcode": "1F468-200D-1F466-200D-1F466", + "label": "family: man, boy, boy", + "order": 3456, + "tags": ["boy", "child", "family", "man"], + "unicode": "ðŸ‘Ļ‍ðŸ‘Ķ‍ðŸ‘Ķ" + }, + { + "group": 1, + "hexcode": "1F468-200D-1F467", + "label": "family: man, girl", + "order": 3457, + "tags": ["child", "family", "girl", "man"], + "unicode": "ðŸ‘Ļ‍👧" + }, + { + "group": 1, + "hexcode": "1F468-200D-1F467-200D-1F466", + "label": "family: man, girl, boy", + "order": 3458, + "tags": ["boy", "child", "family", "girl", "man"], + "unicode": "ðŸ‘Ļ‍👧‍ðŸ‘Ķ" + }, + { + "group": 1, + "hexcode": "1F468-200D-1F467-200D-1F467", + "label": "family: man, girl, girl", + "order": 3459, + "tags": ["child", "family", "girl", "man"], + "unicode": "ðŸ‘Ļ‍👧‍👧" + }, + { + "group": 1, + "hexcode": "1F469-200D-1F466", + "label": "family: woman, boy", + "order": 3460, + "tags": ["boy", "child", "family", "woman"], + "unicode": "ðŸ‘Đ‍ðŸ‘Ķ" + }, + { + "group": 1, + "hexcode": "1F469-200D-1F466-200D-1F466", + "label": "family: woman, boy, boy", + "order": 3461, + "tags": ["boy", "child", "family", "woman"], + "unicode": "ðŸ‘Đ‍ðŸ‘Ķ‍ðŸ‘Ķ" + }, + { + "group": 1, + "hexcode": "1F469-200D-1F467", + "label": "family: woman, girl", + "order": 3462, + "tags": ["child", "family", "girl", "woman"], + "unicode": "ðŸ‘Đ‍👧" + }, + { + "group": 1, + "hexcode": "1F469-200D-1F467-200D-1F466", + "label": "family: woman, girl, boy", + "order": 3463, + "tags": ["boy", "child", "family", "girl", "woman"], + "unicode": "ðŸ‘Đ‍👧‍ðŸ‘Ķ" + }, + { + "group": 1, + "hexcode": "1F469-200D-1F467-200D-1F467", + "label": "family: woman, girl, girl", + "order": 3464, + "tags": ["child", "family", "girl", "woman"], + "unicode": "ðŸ‘Đ‍👧‍👧" + }, + { + "group": 1, + "hexcode": "1F5E3", + "label": "speaking head", + "order": 3466, + "tags": ["face", "head", "silhouette", "speak", "speaking"], + "unicode": "ðŸ—Ģïļ" + }, + { + "group": 1, + "hexcode": "1F464", + "label": "bust in silhouette", + "order": 3467, + "tags": ["bust", "mysterious", "shadow", "silhouette"], + "unicode": "ðŸ‘Ī" + }, + { + "group": 1, + "hexcode": "1F465", + "label": "busts in silhouette", + "order": 3468, + "tags": [ + "bff", + "bust", + "busts", + "everyone", + "friend", + "friends", + "people", + "silhouette" + ], + "unicode": "ðŸ‘Ĩ" + }, + { + "group": 1, + "hexcode": "1FAC2", + "label": "people hugging", + "order": 3469, + "tags": [ + "comfort", + "embrace", + "farewell", + "friendship", + "goodbye", + "hello", + "hug", + "hugging", + "love", + "people", + "thanks" + ], + "unicode": "ðŸŦ‚" + }, + { + "group": 1, + "hexcode": "1F46A", + "label": "family", + "order": 3470, + "tags": ["child"], + "unicode": "👊ïļ" + }, + { + "group": 1, + "hexcode": "1F9D1-200D-1F9D1-200D-1F9D2", + "label": "family: adult, adult, child", + "order": 3471, + "tags": ["adult", "child", "family"], + "unicode": "🧑‍🧑‍🧒" + }, + { + "group": 1, + "hexcode": "1F9D1-200D-1F9D1-200D-1F9D2-200D-1F9D2", + "label": "family: adult, adult, child, child", + "order": 3472, + "tags": ["adult", "child", "family"], + "unicode": "🧑‍🧑‍🧒‍🧒" + }, + { + "group": 1, + "hexcode": "1F9D1-200D-1F9D2", + "label": "family: adult, child", + "order": 3473, + "tags": ["adult", "child", "family"], + "unicode": "🧑‍🧒" + }, + { + "group": 1, + "hexcode": "1F9D1-200D-1F9D2-200D-1F9D2", + "label": "family: adult, child, child", + "order": 3474, + "tags": ["adult", "child", "family"], + "unicode": "🧑‍🧒‍🧒" + }, + { + "group": 1, + "hexcode": "1F463", + "label": "footprints", + "order": 3475, + "tags": ["barefoot", "clothing", "footprint", "omw", "print", "walk"], + "unicode": "ðŸ‘Ģ" + }, + { + "group": 1, + "hexcode": "1FAC6", + "label": "fingerprint", + "order": 3476, + "tags": [ + "clue", + "crime", + "detective", + "forensics", + "identity", + "mystery", + "print", + "safety", + "trace" + ], + "unicode": "ðŸŦ†" + } + ] + }, + { + "name": "Animals & Nature", + "emojis": [ + { + "group": 3, + "hexcode": "1F435", + "label": "monkey face", + "order": 3486, + "tags": ["animal", "banana", "face", "monkey"], + "unicode": "ðŸĩ" + }, + { + "group": 3, + "hexcode": "1F412", + "label": "monkey", + "order": 3487, + "tags": ["animal", "banana"], + "unicode": "🐒" + }, + { + "group": 3, + "hexcode": "1F98D", + "label": "gorilla", + "order": 3488, + "tags": ["animal"], + "unicode": "ðŸĶ" + }, + { + "group": 3, + "hexcode": "1F9A7", + "label": "orangutan", + "order": 3489, + "tags": ["animal", "ape", "monkey"], + "unicode": "ðŸĶ§" + }, + { + "group": 3, + "hexcode": "1F436", + "label": "dog face", + "order": 3490, + "tags": ["adorbs", "animal", "dog", "face", "pet", "puppies", "puppy"], + "unicode": "ðŸķ" + }, + { + "group": 3, + "hexcode": "1F415", + "label": "dog", + "order": 3491, + "tags": ["animal", "animals", "dogs", "pet"], + "unicode": "🐕ïļ" + }, + { + "group": 3, + "hexcode": "1F9AE", + "label": "guide dog", + "order": 3492, + "tags": ["accessibility", "animal", "blind", "dog", "guide"], + "unicode": "ðŸĶŪ" + }, + { + "group": 3, + "hexcode": "1F415-200D-1F9BA", + "label": "service dog", + "order": 3493, + "tags": ["accessibility", "animal", "assistance", "dog", "service"], + "unicode": "🐕‍ðŸĶš" + }, + { + "group": 3, + "hexcode": "1F429", + "label": "poodle", + "order": 3494, + "tags": ["animal", "dog", "fluffy"], + "unicode": "ðŸĐ" + }, + { + "group": 3, + "hexcode": "1F43A", + "label": "wolf", + "order": 3495, + "tags": ["animal", "face"], + "unicode": "🐚" + }, + { + "group": 3, + "hexcode": "1F98A", + "label": "fox", + "order": 3496, + "tags": ["animal", "face"], + "unicode": "ðŸĶŠ" + }, + { + "group": 3, + "hexcode": "1F99D", + "label": "raccoon", + "order": 3497, + "tags": ["animal", "curious", "sly"], + "unicode": "ðŸĶ" + }, + { + "group": 3, + "hexcode": "1F431", + "label": "cat face", + "order": 3498, + "tags": ["animal", "cat", "face", "kitten", "kitty", "pet"], + "unicode": "ðŸą" + }, + { + "group": 3, + "hexcode": "1F408", + "label": "cat", + "order": 3499, + "tags": ["animal", "animals", "cats", "kitten", "pet"], + "unicode": "🐈ïļ" + }, + { + "group": 3, + "hexcode": "1F408-200D-2B1B", + "label": "black cat", + "order": 3500, + "tags": [ + "animal", + "black", + "cat", + "feline", + "halloween", + "meow", + "unlucky" + ], + "unicode": "🐈‍⎛" + }, + { + "group": 3, + "hexcode": "1F981", + "label": "lion", + "order": 3501, + "tags": [ + "alpha", + "animal", + "face", + "leo", + "mane", + "order", + "rawr", + "roar", + "safari", + "strong", + "zodiac" + ], + "unicode": "ðŸĶ" + }, + { + "group": 3, + "hexcode": "1F42F", + "label": "tiger face", + "order": 3502, + "tags": ["animal", "big", "cat", "face", "predator", "tiger"], + "unicode": "ðŸŊ" + }, + { + "group": 3, + "hexcode": "1F405", + "label": "tiger", + "order": 3503, + "tags": ["animal", "big", "cat", "predator", "zoo"], + "unicode": "🐅" + }, + { + "group": 3, + "hexcode": "1F406", + "label": "leopard", + "order": 3504, + "tags": ["animal", "big", "cat", "predator", "zoo"], + "unicode": "🐆" + }, + { + "group": 3, + "hexcode": "1F434", + "label": "horse face", + "order": 3505, + "tags": [ + "animal", + "dressage", + "equine", + "face", + "farm", + "horse", + "horses" + ], + "unicode": "ðŸī" + }, + { + "group": 3, + "hexcode": "1FACE", + "label": "moose", + "order": 3506, + "tags": ["alces", "animal", "antlers", "elk", "mammal"], + "unicode": "ðŸŦŽ" + }, + { + "group": 3, + "hexcode": "1FACF", + "label": "donkey", + "order": 3507, + "tags": [ + "animal", + "ass", + "burro", + "hinny", + "mammal", + "mule", + "stubborn" + ], + "unicode": "ðŸŦ" + }, + { + "group": 3, + "hexcode": "1F40E", + "label": "horse", + "order": 3508, + "tags": ["animal", "equestrian", "farm", "racehorse", "racing"], + "unicode": "🐎" + }, + { + "group": 3, + "hexcode": "1F984", + "label": "unicorn", + "order": 3509, + "tags": ["face"], + "unicode": "ðŸĶ„" + }, + { + "group": 3, + "hexcode": "1F993", + "label": "zebra", + "order": 3510, + "tags": ["animal", "stripe"], + "unicode": "ðŸĶ“" + }, + { + "group": 3, + "hexcode": "1F98C", + "label": "deer", + "order": 3511, + "tags": ["animal"], + "unicode": "ðŸĶŒ" + }, + { + "group": 3, + "hexcode": "1F9AC", + "label": "bison", + "order": 3512, + "tags": ["animal", "buffalo", "herd", "wisent"], + "unicode": "ðŸĶŽ" + }, + { + "group": 3, + "hexcode": "1F42E", + "label": "cow face", + "order": 3513, + "tags": ["animal", "cow", "face", "farm", "milk", "moo"], + "unicode": "ðŸŪ" + }, + { + "group": 3, + "hexcode": "1F402", + "label": "ox", + "order": 3514, + "tags": ["animal", "animals", "bull", "farm", "taurus", "zodiac"], + "unicode": "🐂" + }, + { + "group": 3, + "hexcode": "1F403", + "label": "water buffalo", + "order": 3515, + "tags": ["animal", "buffalo", "water", "zoo"], + "unicode": "🐃" + }, + { + "group": 3, + "hexcode": "1F404", + "label": "cow", + "order": 3516, + "tags": ["animal", "animals", "farm", "milk", "moo"], + "unicode": "🐄" + }, + { + "group": 3, + "hexcode": "1F437", + "label": "pig face", + "order": 3517, + "tags": ["animal", "bacon", "face", "farm", "pig", "pork"], + "unicode": "🐷" + }, + { + "group": 3, + "hexcode": "1F416", + "label": "pig", + "order": 3518, + "tags": ["animal", "bacon", "farm", "pork", "sow"], + "unicode": "🐖" + }, + { + "group": 3, + "hexcode": "1F417", + "label": "boar", + "order": 3519, + "tags": ["animal", "pig"], + "unicode": "🐗" + }, + { + "group": 3, + "hexcode": "1F43D", + "label": "pig nose", + "order": 3520, + "tags": ["animal", "face", "farm", "nose", "pig", "smell", "snout"], + "unicode": "ðŸ―" + }, + { + "group": 3, + "hexcode": "1F40F", + "label": "ram", + "order": 3521, + "tags": ["animal", "aries", "horns", "male", "sheep", "zodiac", "zoo"], + "unicode": "🐏" + }, + { + "group": 3, + "hexcode": "1F411", + "label": "ewe", + "order": 3522, + "tags": [ + "animal", + "baa", + "farm", + "female", + "fluffy", + "lamb", + "sheep", + "wool" + ], + "unicode": "🐑" + }, + { + "group": 3, + "hexcode": "1F410", + "label": "goat", + "order": 3523, + "tags": ["animal", "capricorn", "farm", "milk", "zodiac"], + "unicode": "🐐" + }, + { + "group": 3, + "hexcode": "1F42A", + "label": "camel", + "order": 3524, + "tags": ["animal", "desert", "dromedary", "hump", "one"], + "unicode": "🐊" + }, + { + "group": 3, + "hexcode": "1F42B", + "label": "two-hump camel", + "order": 3525, + "tags": [ + "animal", + "bactrian", + "camel", + "desert", + "hump", + "two", + "two-hump" + ], + "unicode": "ðŸŦ" + }, + { + "group": 3, + "hexcode": "1F999", + "label": "llama", + "order": 3526, + "tags": ["alpaca", "animal", "guanaco", "vicuÃąa", "wool"], + "unicode": "ðŸĶ™" + }, + { + "group": 3, + "hexcode": "1F992", + "label": "giraffe", + "order": 3527, + "tags": ["animal", "spots"], + "unicode": "ðŸĶ’" + }, + { + "group": 3, + "hexcode": "1F418", + "label": "elephant", + "order": 3528, + "tags": ["animal"], + "unicode": "🐘" + }, + { + "group": 3, + "hexcode": "1F9A3", + "label": "mammoth", + "order": 3529, + "tags": ["animal", "extinction", "large", "tusk", "wooly"], + "unicode": "ðŸĶĢ" + }, + { + "group": 3, + "hexcode": "1F98F", + "label": "rhinoceros", + "order": 3530, + "tags": ["animal"], + "unicode": "ðŸĶ" + }, + { + "group": 3, + "hexcode": "1F99B", + "label": "hippopotamus", + "order": 3531, + "tags": ["animal", "hippo"], + "unicode": "ðŸĶ›" + }, + { + "group": 3, + "hexcode": "1F42D", + "label": "mouse face", + "order": 3532, + "tags": ["animal", "face", "mouse"], + "unicode": "🐭" + }, + { + "group": 3, + "hexcode": "1F401", + "label": "mouse", + "order": 3533, + "tags": ["animal", "animals"], + "unicode": "🐁" + }, + { + "group": 3, + "hexcode": "1F400", + "label": "rat", + "order": 3534, + "tags": ["animal"], + "unicode": "🐀" + }, + { + "group": 3, + "hexcode": "1F439", + "label": "hamster", + "order": 3535, + "tags": ["animal", "face", "pet"], + "unicode": "ðŸđ" + }, + { + "group": 3, + "hexcode": "1F430", + "label": "rabbit face", + "order": 3536, + "tags": ["animal", "bunny", "face", "pet", "rabbit"], + "unicode": "🐰" + }, + { + "group": 3, + "hexcode": "1F407", + "label": "rabbit", + "order": 3537, + "tags": ["animal", "bunny", "pet"], + "unicode": "🐇" + }, + { + "group": 3, + "hexcode": "1F43F", + "label": "chipmunk", + "order": 3539, + "tags": ["animal", "squirrel"], + "unicode": "ðŸŋïļ" + }, + { + "group": 3, + "hexcode": "1F9AB", + "label": "beaver", + "order": 3540, + "tags": ["animal", "dam", "teeth"], + "unicode": "ðŸĶŦ" + }, + { + "group": 3, + "hexcode": "1F994", + "label": "hedgehog", + "order": 3541, + "tags": ["animal", "spiny"], + "unicode": "ðŸĶ”" + }, + { + "group": 3, + "hexcode": "1F987", + "label": "bat", + "order": 3542, + "tags": ["animal", "vampire"], + "unicode": "ðŸĶ‡" + }, + { + "group": 3, + "hexcode": "1F43B", + "label": "bear", + "order": 3543, + "tags": ["animal", "face", "grizzly", "growl", "honey"], + "unicode": "ðŸŧ" + }, + { + "group": 3, + "hexcode": "1F43B-200D-2744-FE0F", + "label": "polar bear", + "order": 3544, + "tags": ["animal", "arctic", "bear", "polar", "white"], + "unicode": "ðŸŧ‍❄ïļ" + }, + { + "group": 3, + "hexcode": "1F428", + "label": "koala", + "order": 3546, + "tags": [ + "animal", + "australia", + "bear", + "down", + "face", + "marsupial", + "under" + ], + "unicode": "ðŸĻ" + }, + { + "group": 3, + "hexcode": "1F43C", + "label": "panda", + "order": 3547, + "tags": ["animal", "bamboo", "face"], + "unicode": "🐞" + }, + { + "group": 3, + "hexcode": "1F9A5", + "label": "sloth", + "order": 3548, + "tags": ["lazy", "slow"], + "unicode": "ðŸĶĨ" + }, + { + "group": 3, + "hexcode": "1F9A6", + "label": "otter", + "order": 3549, + "tags": ["animal", "fishing", "playful"], + "unicode": "ðŸĶĶ" + }, + { + "group": 3, + "hexcode": "1F9A8", + "label": "skunk", + "order": 3550, + "tags": ["animal", "stink"], + "unicode": "ðŸĶĻ" + }, + { + "group": 3, + "hexcode": "1F998", + "label": "kangaroo", + "order": 3551, + "tags": ["animal", "joey", "jump", "marsupial"], + "unicode": "ðŸĶ˜" + }, + { + "group": 3, + "hexcode": "1F9A1", + "label": "badger", + "order": 3552, + "tags": ["animal", "honey", "pester"], + "unicode": "ðŸĶĄ" + }, + { + "group": 3, + "hexcode": "1F43E", + "label": "paw prints", + "order": 3553, + "tags": ["feet", "paw", "paws", "print", "prints"], + "unicode": "ðŸū" + }, + { + "group": 3, + "hexcode": "1F983", + "label": "turkey", + "order": 3554, + "tags": ["bird", "gobble", "thanksgiving"], + "unicode": "ðŸĶƒ" + }, + { + "group": 3, + "hexcode": "1F414", + "label": "chicken", + "order": 3555, + "tags": ["animal", "bird", "ornithology"], + "unicode": "🐔" + }, + { + "group": 3, + "hexcode": "1F413", + "label": "rooster", + "order": 3556, + "tags": ["animal", "bird", "ornithology"], + "unicode": "🐓" + }, + { + "group": 3, + "hexcode": "1F423", + "label": "hatching chick", + "order": 3557, + "tags": ["animal", "baby", "bird", "chick", "egg", "hatching"], + "unicode": "ðŸĢ" + }, + { + "group": 3, + "hexcode": "1F424", + "label": "baby chick", + "order": 3558, + "tags": ["animal", "baby", "bird", "chick", "ornithology"], + "unicode": "ðŸĪ" + }, + { + "group": 3, + "hexcode": "1F425", + "label": "front-facing baby chick", + "order": 3559, + "tags": [ + "animal", + "baby", + "bird", + "chick", + "front-facing", + "newborn", + "ornithology" + ], + "unicode": "ðŸĨ" + }, + { + "group": 3, + "hexcode": "1F426", + "label": "bird", + "order": 3560, + "tags": ["animal", "ornithology"], + "unicode": "ðŸĶïļ" + }, + { + "group": 3, + "hexcode": "1F427", + "label": "penguin", + "order": 3561, + "tags": ["animal", "antarctica", "bird", "ornithology"], + "unicode": "🐧" + }, + { + "group": 3, + "hexcode": "1F54A", + "label": "dove", + "order": 3563, + "tags": ["bird", "fly", "ornithology", "peace"], + "unicode": "🕊ïļ" + }, + { + "group": 3, + "hexcode": "1F985", + "label": "eagle", + "order": 3564, + "tags": ["animal", "bird", "ornithology"], + "unicode": "ðŸĶ…" + }, + { + "group": 3, + "hexcode": "1F986", + "label": "duck", + "order": 3565, + "tags": ["animal", "bird", "ornithology"], + "unicode": "ðŸĶ†" + }, + { + "group": 3, + "hexcode": "1F9A2", + "label": "swan", + "order": 3566, + "tags": ["animal", "bird", "cygnet", "duckling", "ornithology", "ugly"], + "unicode": "ðŸĶĒ" + }, + { + "group": 3, + "hexcode": "1F989", + "label": "owl", + "order": 3567, + "tags": ["animal", "bird", "ornithology", "wise"], + "unicode": "ðŸĶ‰" + }, + { + "group": 3, + "hexcode": "1F9A4", + "label": "dodo", + "order": 3568, + "tags": ["animal", "bird", "extinction", "large", "ornithology"], + "unicode": "ðŸĶĪ" + }, + { + "group": 3, + "hexcode": "1FAB6", + "label": "feather", + "order": 3569, + "tags": ["bird", "flight", "light", "plumage"], + "unicode": "ðŸŠķ" + }, + { + "group": 3, + "hexcode": "1F9A9", + "label": "flamingo", + "order": 3570, + "tags": ["animal", "bird", "flamboyant", "ornithology", "tropical"], + "unicode": "ðŸĶĐ" + }, + { + "group": 3, + "hexcode": "1F99A", + "label": "peacock", + "order": 3571, + "tags": [ + "animal", + "bird", + "colorful", + "ornithology", + "ostentatious", + "peahen", + "pretty", + "proud" + ], + "unicode": "ðŸĶš" + }, + { + "group": 3, + "hexcode": "1F99C", + "label": "parrot", + "order": 3572, + "tags": ["animal", "bird", "ornithology", "pirate", "talk"], + "unicode": "ðŸĶœ" + }, + { + "group": 3, + "hexcode": "1FABD", + "label": "wing", + "order": 3573, + "tags": [ + "angelic", + "ascend", + "aviation", + "bird", + "fly", + "flying", + "heavenly", + "mythology", + "soar" + ], + "unicode": "ðŸŠ―" + }, + { + "group": 3, + "hexcode": "1F426-200D-2B1B", + "label": "black bird", + "order": 3574, + "tags": [ + "animal", + "beak", + "bird", + "black", + "caw", + "corvid", + "crow", + "ornithology", + "raven", + "rook" + ], + "unicode": "ðŸĶ‍⮛" + }, + { + "group": 3, + "hexcode": "1FABF", + "label": "goose", + "order": 3575, + "tags": [ + "animal", + "bird", + "duck", + "flock", + "fowl", + "gaggle", + "gander", + "geese", + "honk", + "ornithology", + "silly" + ], + "unicode": "ðŸŠŋ" + }, + { + "group": 3, + "hexcode": "1F426-200D-1F525", + "label": "phoenix", + "order": 3576, + "tags": [ + "ascend", + "ascension", + "emerge", + "fantasy", + "firebird", + "glory", + "immortal", + "rebirth", + "reincarnation", + "reinvent", + "renewal", + "revival", + "revive", + "rise", + "transform" + ], + "unicode": "ðŸĶ‍ðŸ”Ĩ" + }, + { + "group": 3, + "hexcode": "1F438", + "label": "frog", + "order": 3577, + "tags": ["animal", "face"], + "unicode": "ðŸļ" + }, + { + "group": 3, + "hexcode": "1F40A", + "label": "crocodile", + "order": 3578, + "tags": ["animal", "zoo"], + "unicode": "🐊" + }, + { + "group": 3, + "hexcode": "1F422", + "label": "turtle", + "order": 3579, + "tags": ["animal", "terrapin", "tortoise"], + "unicode": "ðŸĒ" + }, + { + "group": 3, + "hexcode": "1F98E", + "label": "lizard", + "order": 3580, + "tags": ["animal", "reptile"], + "unicode": "ðŸĶŽ" + }, + { + "group": 3, + "hexcode": "1F40D", + "label": "snake", + "order": 3581, + "tags": ["animal", "bearer", "ophiuchus", "serpent", "zodiac"], + "unicode": "🐍" + }, + { + "group": 3, + "hexcode": "1F432", + "label": "dragon face", + "order": 3582, + "tags": ["animal", "dragon", "face", "fairy", "fairytale", "tale"], + "unicode": "ðŸē" + }, + { + "group": 3, + "hexcode": "1F409", + "label": "dragon", + "order": 3583, + "tags": ["animal", "fairy", "fairytale", "knights", "tale"], + "unicode": "🐉" + }, + { + "group": 3, + "hexcode": "1F995", + "label": "sauropod", + "order": 3584, + "tags": ["brachiosaurus", "brontosaurus", "dinosaur", "diplodocus"], + "unicode": "ðŸĶ•" + }, + { + "group": 3, + "hexcode": "1F996", + "label": "T-Rex", + "order": 3585, + "tags": ["dinosaur", "rex", "t", "t-rex", "tyrannosaurus"], + "unicode": "ðŸĶ–" + }, + { + "group": 3, + "hexcode": "1F433", + "label": "spouting whale", + "order": 3586, + "tags": ["animal", "beach", "face", "ocean", "spouting", "whale"], + "unicode": "ðŸģ" + }, + { + "group": 3, + "hexcode": "1F40B", + "label": "whale", + "order": 3587, + "tags": ["animal", "beach", "ocean"], + "unicode": "🐋" + }, + { + "group": 3, + "hexcode": "1F42C", + "label": "dolphin", + "order": 3588, + "tags": ["animal", "beach", "flipper", "ocean"], + "unicode": "🐎" + }, + { + "group": 3, + "hexcode": "1F9AD", + "label": "seal", + "order": 3589, + "tags": ["animal", "lion", "ocean", "sea"], + "unicode": "ðŸĶ­" + }, + { + "group": 3, + "hexcode": "1F41F", + "label": "fish", + "order": 3590, + "tags": ["animal", "dinner", "fishes", "fishing", "pisces", "zodiac"], + "unicode": "🐟ïļ" + }, + { + "group": 3, + "hexcode": "1F420", + "label": "tropical fish", + "order": 3591, + "tags": ["animal", "fish", "fishes", "tropical"], + "unicode": "🐠" + }, + { + "group": 3, + "hexcode": "1F421", + "label": "blowfish", + "order": 3592, + "tags": ["animal", "fish"], + "unicode": "ðŸĄ" + }, + { + "group": 3, + "hexcode": "1F988", + "label": "shark", + "order": 3593, + "tags": ["animal", "fish"], + "unicode": "ðŸĶˆ" + }, + { + "group": 3, + "hexcode": "1F419", + "label": "octopus", + "order": 3594, + "tags": ["animal", "creature", "ocean"], + "unicode": "🐙" + }, + { + "group": 3, + "hexcode": "1F41A", + "label": "spiral shell", + "order": 3595, + "tags": ["animal", "beach", "conch", "sea", "shell", "spiral"], + "unicode": "🐚" + }, + { + "group": 3, + "hexcode": "1FAB8", + "label": "coral", + "order": 3596, + "tags": ["change", "climate", "ocean", "reef", "sea"], + "unicode": "ðŸŠļ" + }, + { + "group": 3, + "hexcode": "1FABC", + "label": "jellyfish", + "order": 3597, + "tags": [ + "animal", + "aquarium", + "burn", + "invertebrate", + "jelly", + "life", + "marine", + "ocean", + "ouch", + "plankton", + "sea", + "sting", + "stinger", + "tentacles" + ], + "unicode": "🊞" + }, + { + "group": 3, + "hexcode": "1F980", + "label": "crab", + "order": 3598, + "tags": ["cancer", "zodiac"], + "unicode": "ðŸĶ€" + }, + { + "group": 3, + "hexcode": "1F99E", + "label": "lobster", + "order": 3599, + "tags": ["animal", "bisque", "claws", "seafood"], + "unicode": "ðŸĶž" + }, + { + "group": 3, + "hexcode": "1F990", + "label": "shrimp", + "order": 3600, + "tags": ["food", "shellfish", "small"], + "unicode": "ðŸĶ" + }, + { + "group": 3, + "hexcode": "1F991", + "label": "squid", + "order": 3601, + "tags": ["animal", "food", "mollusk"], + "unicode": "ðŸĶ‘" + }, + { + "group": 3, + "hexcode": "1F9AA", + "label": "oyster", + "order": 3602, + "tags": ["diving", "pearl"], + "unicode": "ðŸĶŠ" + }, + { + "group": 3, + "hexcode": "1F40C", + "label": "snail", + "order": 3603, + "tags": ["animal", "escargot", "garden", "nature", "slug"], + "unicode": "🐌" + }, + { + "group": 3, + "hexcode": "1F98B", + "label": "butterfly", + "order": 3604, + "tags": ["insect", "pretty"], + "unicode": "ðŸĶ‹" + }, + { + "group": 3, + "hexcode": "1F41B", + "label": "bug", + "order": 3605, + "tags": ["animal", "garden", "insect"], + "unicode": "🐛" + }, + { + "group": 3, + "hexcode": "1F41C", + "label": "ant", + "order": 3606, + "tags": ["animal", "garden", "insect"], + "unicode": "🐜" + }, + { + "group": 3, + "hexcode": "1F41D", + "label": "honeybee", + "order": 3607, + "tags": [ + "animal", + "bee", + "bumblebee", + "honey", + "insect", + "nature", + "spring" + ], + "unicode": "🐝" + }, + { + "group": 3, + "hexcode": "1FAB2", + "label": "beetle", + "order": 3608, + "tags": ["animal", "bug", "insect"], + "unicode": "ðŸŠē" + }, + { + "group": 3, + "hexcode": "1F41E", + "label": "lady beetle", + "order": 3609, + "tags": [ + "animal", + "beetle", + "garden", + "insect", + "lady", + "ladybird", + "ladybug", + "nature" + ], + "unicode": "🐞" + }, + { + "group": 3, + "hexcode": "1F997", + "label": "cricket", + "order": 3610, + "tags": ["animal", "bug", "grasshopper", "insect", "orthoptera"], + "unicode": "ðŸĶ—" + }, + { + "group": 3, + "hexcode": "1FAB3", + "label": "cockroach", + "order": 3611, + "tags": ["animal", "insect", "pest", "roach"], + "unicode": "ðŸŠģ" + }, + { + "group": 3, + "hexcode": "1F577", + "label": "spider", + "order": 3613, + "tags": ["animal", "insect"], + "unicode": "🕷ïļ" + }, + { + "group": 3, + "hexcode": "1F578", + "label": "spider web", + "order": 3615, + "tags": ["spider", "web"], + "unicode": "ðŸ•ļïļ" + }, + { + "group": 3, + "hexcode": "1F982", + "label": "scorpion", + "order": 3616, + "tags": ["scorpio", "scorpius", "zodiac"], + "unicode": "ðŸĶ‚" + }, + { + "group": 3, + "hexcode": "1F99F", + "label": "mosquito", + "order": 3617, + "tags": [ + "bite", + "disease", + "fever", + "insect", + "malaria", + "pest", + "virus" + ], + "unicode": "ðŸĶŸ" + }, + { + "group": 3, + "hexcode": "1FAB0", + "label": "fly", + "order": 3618, + "tags": ["animal", "disease", "insect", "maggot", "pest", "rotting"], + "unicode": "🊰" + }, + { + "group": 3, + "hexcode": "1FAB1", + "label": "worm", + "order": 3619, + "tags": ["animal", "annelid", "earthworm", "parasite"], + "unicode": "ðŸŠą" + }, + { + "group": 3, + "hexcode": "1F9A0", + "label": "microbe", + "order": 3620, + "tags": ["amoeba", "bacteria", "science", "virus"], + "unicode": "ðŸĶ " + }, + { + "group": 3, + "hexcode": "1F490", + "label": "bouquet", + "order": 3621, + "tags": [ + "anniversary", + "birthday", + "date", + "flower", + "love", + "plant", + "romance" + ], + "unicode": "💐" + }, + { + "group": 3, + "hexcode": "1F338", + "label": "cherry blossom", + "order": 3622, + "tags": [ + "blossom", + "cherry", + "flower", + "plant", + "spring", + "springtime" + ], + "unicode": "ðŸŒļ" + }, + { + "group": 3, + "hexcode": "1F4AE", + "label": "white flower", + "order": 3623, + "tags": ["flower", "white"], + "unicode": "ðŸ’Ū" + }, + { + "group": 3, + "hexcode": "1FAB7", + "label": "lotus", + "order": 3624, + "tags": [ + "beauty", + "buddhism", + "calm", + "flower", + "hinduism", + "peace", + "purity", + "serenity" + ], + "unicode": "🊷" + }, + { + "group": 3, + "hexcode": "1F3F5", + "label": "rosette", + "order": 3626, + "tags": ["plant"], + "unicode": "ðŸĩïļ" + }, + { + "group": 3, + "hexcode": "1F339", + "label": "rose", + "order": 3627, + "tags": [ + "beauty", + "elegant", + "flower", + "love", + "plant", + "red", + "valentine" + ], + "unicode": "ðŸŒđ" + }, + { + "group": 3, + "hexcode": "1F940", + "label": "wilted flower", + "order": 3628, + "tags": ["dying", "flower", "wilted"], + "unicode": "ðŸĨ€" + }, + { + "group": 3, + "hexcode": "1F33A", + "label": "hibiscus", + "order": 3629, + "tags": ["flower", "plant"], + "unicode": "🌚" + }, + { + "group": 3, + "hexcode": "1F33B", + "label": "sunflower", + "order": 3630, + "tags": ["flower", "outdoors", "plant", "sun"], + "unicode": "ðŸŒŧ" + }, + { + "group": 3, + "hexcode": "1F33C", + "label": "blossom", + "order": 3631, + "tags": ["buttercup", "dandelion", "flower", "plant"], + "unicode": "🌞" + }, + { + "group": 3, + "hexcode": "1F337", + "label": "tulip", + "order": 3632, + "tags": ["blossom", "flower", "growth", "plant"], + "unicode": "🌷" + }, + { + "group": 3, + "hexcode": "1FABB", + "label": "hyacinth", + "order": 3633, + "tags": [ + "bloom", + "bluebonnet", + "flower", + "indigo", + "lavender", + "lilac", + "lupine", + "plant", + "purple", + "shrub", + "snapdragon", + "spring", + "violet" + ], + "unicode": "ðŸŠŧ" + }, + { + "group": 3, + "hexcode": "1F331", + "label": "seedling", + "order": 3634, + "tags": ["plant", "sapling", "sprout", "young"], + "unicode": "ðŸŒą" + }, + { + "group": 3, + "hexcode": "1FAB4", + "label": "potted plant", + "order": 3635, + "tags": [ + "decor", + "grow", + "house", + "nurturing", + "plant", + "pot", + "potted" + ], + "unicode": "ðŸŠī" + }, + { + "group": 3, + "hexcode": "1F332", + "label": "evergreen tree", + "order": 3636, + "tags": ["christmas", "evergreen", "forest", "pine", "tree"], + "unicode": "ðŸŒē" + }, + { + "group": 3, + "hexcode": "1F333", + "label": "deciduous tree", + "order": 3637, + "tags": ["deciduous", "forest", "green", "habitat", "shedding", "tree"], + "unicode": "ðŸŒģ" + }, + { + "group": 3, + "hexcode": "1F334", + "label": "palm tree", + "order": 3638, + "tags": ["beach", "palm", "plant", "tree", "tropical"], + "unicode": "ðŸŒī" + }, + { + "group": 3, + "hexcode": "1F335", + "label": "cactus", + "order": 3639, + "tags": ["desert", "drought", "nature", "plant"], + "unicode": "ðŸŒĩ" + }, + { + "group": 3, + "hexcode": "1F33E", + "label": "sheaf of rice", + "order": 3640, + "tags": ["ear", "grain", "grains", "plant", "rice", "sheaf"], + "unicode": "ðŸŒū" + }, + { + "group": 3, + "hexcode": "1F33F", + "label": "herb", + "order": 3641, + "tags": ["leaf", "plant"], + "unicode": "ðŸŒŋ" + }, + { + "group": 3, + "hexcode": "2618", + "label": "shamrock", + "order": 3643, + "tags": ["irish", "plant"], + "unicode": "☘ïļ" + }, + { + "group": 3, + "hexcode": "1F340", + "label": "four leaf clover", + "order": 3644, + "tags": [ + "4", + "clover", + "four", + "four-leaf", + "irish", + "leaf", + "lucky", + "plant" + ], + "unicode": "🍀" + }, + { + "group": 3, + "hexcode": "1F341", + "label": "maple leaf", + "order": 3645, + "tags": ["falling", "leaf", "maple"], + "unicode": "🍁" + }, + { + "group": 3, + "hexcode": "1F342", + "label": "fallen leaf", + "order": 3646, + "tags": ["autumn", "fall", "fallen", "falling", "leaf"], + "unicode": "🍂" + }, + { + "group": 3, + "hexcode": "1F343", + "label": "leaf fluttering in wind", + "order": 3647, + "tags": ["blow", "flutter", "fluttering", "leaf", "wind"], + "unicode": "🍃" + }, + { + "group": 3, + "hexcode": "1FAB9", + "label": "empty nest", + "order": 3648, + "tags": ["branch", "empty", "home", "nest", "nesting"], + "unicode": "ðŸŠđ" + }, + { + "group": 3, + "hexcode": "1FABA", + "label": "nest with eggs", + "order": 3649, + "tags": ["bird", "branch", "egg", "eggs", "nest", "nesting"], + "unicode": "🊚" + }, + { + "group": 3, + "hexcode": "1F344", + "label": "mushroom", + "order": 3650, + "tags": ["fungus", "toadstool"], + "unicode": "🍄" + }, + { + "group": 3, + "hexcode": "1FABE", + "label": "leafless tree", + "order": 3651, + "tags": [ + "bare", + "barren", + "branches", + "dead", + "drought", + "leafless", + "tree", + "trunk", + "winter", + "wood" + ], + "unicode": "ðŸŠū" + } + ] + }, + { + "name": "Food & Drink", + "emojis": [ + { + "group": 4, + "hexcode": "1F347", + "label": "grapes", + "order": 3652, + "tags": ["dionysus", "fruit", "grape"], + "unicode": "🍇" + }, + { + "group": 4, + "hexcode": "1F348", + "label": "melon", + "order": 3653, + "tags": ["cantaloupe", "fruit"], + "unicode": "🍈" + }, + { + "group": 4, + "hexcode": "1F349", + "label": "watermelon", + "order": 3654, + "tags": ["fruit"], + "unicode": "🍉" + }, + { + "group": 4, + "hexcode": "1F34A", + "label": "tangerine", + "order": 3655, + "tags": ["c", "citrus", "fruit", "nectarine", "orange", "vitamin"], + "unicode": "🍊" + }, + { + "group": 4, + "hexcode": "1F34B", + "label": "lemon", + "order": 3656, + "tags": ["citrus", "fruit", "sour"], + "unicode": "🍋" + }, + { + "group": 4, + "hexcode": "1F34B-200D-1F7E9", + "label": "lime", + "order": 3657, + "tags": [ + "acidity", + "citrus", + "cocktail", + "fruit", + "garnish", + "key", + "margarita", + "mojito", + "refreshing", + "salsa", + "sour", + "tangy", + "tequila", + "tropical", + "zest" + ], + "unicode": "🍋‍ðŸŸĐ" + }, + { + "group": 4, + "hexcode": "1F34C", + "label": "banana", + "order": 3658, + "tags": ["fruit", "potassium"], + "unicode": "🍌" + }, + { + "group": 4, + "hexcode": "1F34D", + "label": "pineapple", + "order": 3659, + "tags": ["colada", "fruit", "pina", "tropical"], + "unicode": "🍍" + }, + { + "group": 4, + "hexcode": "1F96D", + "label": "mango", + "order": 3660, + "tags": ["food", "fruit", "tropical"], + "unicode": "ðŸĨ­" + }, + { + "group": 4, + "hexcode": "1F34E", + "label": "red apple", + "order": 3661, + "tags": ["apple", "diet", "food", "fruit", "health", "red", "ripe"], + "unicode": "🍎" + }, + { + "group": 4, + "hexcode": "1F34F", + "label": "green apple", + "order": 3662, + "tags": ["apple", "fruit", "green"], + "unicode": "🍏" + }, + { + "group": 4, + "hexcode": "1F350", + "label": "pear", + "order": 3663, + "tags": ["fruit"], + "unicode": "🍐" + }, + { + "group": 4, + "hexcode": "1F351", + "label": "peach", + "order": 3664, + "tags": ["fruit"], + "unicode": "🍑" + }, + { + "group": 4, + "hexcode": "1F352", + "label": "cherries", + "order": 3665, + "tags": ["berries", "cherry", "fruit", "red"], + "unicode": "🍒" + }, + { + "group": 4, + "hexcode": "1F353", + "label": "strawberry", + "order": 3666, + "tags": ["berry", "fruit"], + "unicode": "🍓" + }, + { + "group": 4, + "hexcode": "1FAD0", + "label": "blueberries", + "order": 3667, + "tags": [ + "berries", + "berry", + "bilberry", + "blue", + "blueberry", + "food", + "fruit" + ], + "unicode": "ðŸŦ" + }, + { + "group": 4, + "hexcode": "1F95D", + "label": "kiwi fruit", + "order": 3668, + "tags": ["food", "fruit", "kiwi"], + "unicode": "ðŸĨ" + }, + { + "group": 4, + "hexcode": "1F345", + "label": "tomato", + "order": 3669, + "tags": ["food", "fruit", "vegetable"], + "unicode": "🍅" + }, + { + "group": 4, + "hexcode": "1FAD2", + "label": "olive", + "order": 3670, + "tags": ["food"], + "unicode": "ðŸŦ’" + }, + { + "group": 4, + "hexcode": "1F965", + "label": "coconut", + "order": 3671, + "tags": ["colada", "palm", "piÃąa"], + "unicode": "ðŸĨĨ" + }, + { + "group": 4, + "hexcode": "1F951", + "label": "avocado", + "order": 3672, + "tags": ["food", "fruit"], + "unicode": "ðŸĨ‘" + }, + { + "group": 4, + "hexcode": "1F346", + "label": "eggplant", + "order": 3673, + "tags": ["aubergine", "vegetable"], + "unicode": "🍆" + }, + { + "group": 4, + "hexcode": "1F954", + "label": "potato", + "order": 3674, + "tags": ["food", "vegetable"], + "unicode": "ðŸĨ”" + }, + { + "group": 4, + "hexcode": "1F955", + "label": "carrot", + "order": 3675, + "tags": ["food", "vegetable"], + "unicode": "ðŸĨ•" + }, + { + "group": 4, + "hexcode": "1F33D", + "label": "ear of corn", + "order": 3676, + "tags": ["corn", "crops", "ear", "farm", "maize", "maze"], + "unicode": "ðŸŒ―" + }, + { + "group": 4, + "hexcode": "1F336", + "label": "hot pepper", + "order": 3678, + "tags": ["hot", "pepper"], + "unicode": "ðŸŒķïļ" + }, + { + "group": 4, + "hexcode": "1FAD1", + "label": "bell pepper", + "order": 3679, + "tags": ["bell", "capsicum", "food", "pepper", "vegetable"], + "unicode": "ðŸŦ‘" + }, + { + "group": 4, + "hexcode": "1F952", + "label": "cucumber", + "order": 3680, + "tags": ["food", "pickle", "vegetable"], + "unicode": "ðŸĨ’" + }, + { + "group": 4, + "hexcode": "1F96C", + "label": "leafy green", + "order": 3681, + "tags": [ + "bok", + "burgers", + "cabbage", + "choy", + "green", + "kale", + "leafy", + "lettuce", + "salad" + ], + "unicode": "ðŸĨŽ" + }, + { + "group": 4, + "hexcode": "1F966", + "label": "broccoli", + "order": 3682, + "tags": ["cabbage", "wild"], + "unicode": "ðŸĨĶ" + }, + { + "group": 4, + "hexcode": "1F9C4", + "label": "garlic", + "order": 3683, + "tags": ["flavoring"], + "unicode": "🧄" + }, + { + "group": 4, + "hexcode": "1F9C5", + "label": "onion", + "order": 3684, + "tags": ["flavoring"], + "unicode": "🧅" + }, + { + "group": 4, + "hexcode": "1F95C", + "label": "peanuts", + "order": 3685, + "tags": ["food", "nut", "peanut", "vegetable"], + "unicode": "ðŸĨœ" + }, + { + "group": 4, + "hexcode": "1FAD8", + "label": "beans", + "order": 3686, + "tags": ["food", "kidney", "legume", "small"], + "unicode": "ðŸŦ˜" + }, + { + "group": 4, + "hexcode": "1F330", + "label": "chestnut", + "order": 3687, + "tags": ["almond", "plant"], + "unicode": "🌰" + }, + { + "group": 4, + "hexcode": "1FADA", + "label": "ginger root", + "order": 3688, + "tags": [ + "beer", + "ginger", + "health", + "herb", + "natural", + "root", + "spice" + ], + "unicode": "ðŸŦš" + }, + { + "group": 4, + "hexcode": "1FADB", + "label": "pea pod", + "order": 3689, + "tags": [ + "beans", + "beanstalk", + "edamame", + "legume", + "pea", + "pod", + "soybean", + "vegetable", + "veggie" + ], + "unicode": "ðŸŦ›" + }, + { + "group": 4, + "hexcode": "1F344-200D-1F7EB", + "label": "brown mushroom", + "order": 3690, + "tags": [ + "food", + "fungi", + "fungus", + "mushroom", + "nature", + "pizza", + "portobello", + "shiitake", + "shroom", + "spore", + "sprout", + "toppings", + "truffle", + "vegetable", + "vegetarian", + "veggie" + ], + "unicode": "🍄‍ðŸŸŦ" + }, + { + "group": 4, + "hexcode": "1FADC", + "label": "root vegetable", + "order": 3691, + "tags": [ + "beet", + "food", + "garden", + "radish", + "root", + "salad", + "turnip", + "vegetable", + "vegetarian" + ], + "unicode": "ðŸŦœ" + }, + { + "group": 4, + "hexcode": "1F35E", + "label": "bread", + "order": 3692, + "tags": [ + "carbs", + "food", + "grain", + "loaf", + "restaurant", + "toast", + "wheat" + ], + "unicode": "🍞" + }, + { + "group": 4, + "hexcode": "1F950", + "label": "croissant", + "order": 3693, + "tags": ["bread", "breakfast", "crescent", "food", "french", "roll"], + "unicode": "ðŸĨ" + }, + { + "group": 4, + "hexcode": "1F956", + "label": "baguette bread", + "order": 3694, + "tags": ["baguette", "bread", "food", "french"], + "unicode": "ðŸĨ–" + }, + { + "group": 4, + "hexcode": "1FAD3", + "label": "flatbread", + "order": 3695, + "tags": ["arepa", "bread", "food", "gordita", "lavash", "naan", "pita"], + "unicode": "ðŸŦ“" + }, + { + "group": 4, + "hexcode": "1F968", + "label": "pretzel", + "order": 3696, + "tags": ["convoluted", "twisted"], + "unicode": "ðŸĨĻ" + }, + { + "group": 4, + "hexcode": "1F96F", + "label": "bagel", + "order": 3697, + "tags": ["bakery", "bread", "breakfast", "schmear"], + "unicode": "ðŸĨŊ" + }, + { + "group": 4, + "hexcode": "1F95E", + "label": "pancakes", + "order": 3698, + "tags": ["breakfast", "crÊpe", "food", "hotcake", "pancake"], + "unicode": "ðŸĨž" + }, + { + "group": 4, + "hexcode": "1F9C7", + "label": "waffle", + "order": 3699, + "tags": ["breakfast", "indecisive", "iron"], + "unicode": "🧇" + }, + { + "group": 4, + "hexcode": "1F9C0", + "label": "cheese wedge", + "order": 3700, + "tags": ["cheese", "wedge"], + "unicode": "🧀" + }, + { + "group": 4, + "hexcode": "1F356", + "label": "meat on bone", + "order": 3701, + "tags": ["bone", "meat"], + "unicode": "🍖" + }, + { + "group": 4, + "hexcode": "1F357", + "label": "poultry leg", + "order": 3702, + "tags": [ + "bone", + "chicken", + "drumstick", + "hungry", + "leg", + "poultry", + "turkey" + ], + "unicode": "🍗" + }, + { + "group": 4, + "hexcode": "1F969", + "label": "cut of meat", + "order": 3703, + "tags": ["chop", "cut", "lambchop", "meat", "porkchop", "red", "steak"], + "unicode": "ðŸĨĐ" + }, + { + "group": 4, + "hexcode": "1F953", + "label": "bacon", + "order": 3704, + "tags": ["breakfast", "food", "meat"], + "unicode": "ðŸĨ“" + }, + { + "group": 4, + "hexcode": "1F354", + "label": "hamburger", + "order": 3705, + "tags": ["burger", "eat", "fast", "food", "hungry"], + "unicode": "🍔" + }, + { + "group": 4, + "hexcode": "1F35F", + "label": "french fries", + "order": 3706, + "tags": ["fast", "food", "french", "fries"], + "unicode": "🍟" + }, + { + "group": 4, + "hexcode": "1F355", + "label": "pizza", + "order": 3707, + "tags": ["cheese", "food", "hungry", "pepperoni", "slice"], + "unicode": "🍕" + }, + { + "group": 4, + "hexcode": "1F32D", + "label": "hot dog", + "order": 3708, + "tags": ["dog", "frankfurter", "hot", "hotdog", "sausage"], + "unicode": "🌭" + }, + { + "group": 4, + "hexcode": "1F96A", + "label": "sandwich", + "order": 3709, + "tags": ["bread"], + "unicode": "ðŸĨŠ" + }, + { + "group": 4, + "hexcode": "1F32E", + "label": "taco", + "order": 3710, + "tags": ["mexican"], + "unicode": "ðŸŒŪ" + }, + { + "group": 4, + "hexcode": "1F32F", + "label": "burrito", + "order": 3711, + "tags": ["mexican", "wrap"], + "unicode": "ðŸŒŊ" + }, + { + "group": 4, + "hexcode": "1FAD4", + "label": "tamale", + "order": 3712, + "tags": ["food", "mexican", "pamonha", "wrapped"], + "unicode": "ðŸŦ”" + }, + { + "group": 4, + "hexcode": "1F959", + "label": "stuffed flatbread", + "order": 3713, + "tags": ["falafel", "flatbread", "food", "gyro", "kebab", "stuffed"], + "unicode": "ðŸĨ™" + }, + { + "group": 4, + "hexcode": "1F9C6", + "label": "falafel", + "order": 3714, + "tags": ["chickpea", "meatball"], + "unicode": "🧆" + }, + { + "group": 4, + "hexcode": "1F95A", + "label": "egg", + "order": 3715, + "tags": ["breakfast", "food"], + "unicode": "ðŸĨš" + }, + { + "group": 4, + "hexcode": "1F373", + "label": "cooking", + "order": 3716, + "tags": [ + "breakfast", + "easy", + "egg", + "fry", + "frying", + "over", + "pan", + "restaurant", + "side", + "sunny", + "up" + ], + "unicode": "ðŸģ" + }, + { + "group": 4, + "hexcode": "1F958", + "label": "shallow pan of food", + "order": 3717, + "tags": ["casserole", "food", "paella", "pan", "shallow"], + "unicode": "ðŸĨ˜" + }, + { + "group": 4, + "hexcode": "1F372", + "label": "pot of food", + "order": 3718, + "tags": ["food", "pot", "soup", "stew"], + "unicode": "ðŸē" + }, + { + "group": 4, + "hexcode": "1FAD5", + "label": "fondue", + "order": 3719, + "tags": ["cheese", "chocolate", "food", "melted", "pot", "ski"], + "unicode": "ðŸŦ•" + }, + { + "group": 4, + "hexcode": "1F963", + "label": "bowl with spoon", + "order": 3720, + "tags": [ + "bowl", + "breakfast", + "cereal", + "congee", + "oatmeal", + "porridge", + "spoon" + ], + "unicode": "ðŸĨĢ" + }, + { + "group": 4, + "hexcode": "1F957", + "label": "green salad", + "order": 3721, + "tags": ["food", "green", "salad"], + "unicode": "ðŸĨ—" + }, + { + "group": 4, + "hexcode": "1F37F", + "label": "popcorn", + "order": 3722, + "tags": ["corn", "movie", "pop"], + "unicode": "ðŸŋ" + }, + { + "group": 4, + "hexcode": "1F9C8", + "label": "butter", + "order": 3723, + "tags": ["dairy"], + "unicode": "🧈" + }, + { + "group": 4, + "hexcode": "1F9C2", + "label": "salt", + "order": 3724, + "tags": [ + "condiment", + "flavor", + "mad", + "salty", + "shaker", + "taste", + "upset" + ], + "unicode": "🧂" + }, + { + "group": 4, + "hexcode": "1F96B", + "label": "canned food", + "order": 3725, + "tags": ["can", "canned", "food"], + "unicode": "ðŸĨŦ" + }, + { + "group": 4, + "hexcode": "1F371", + "label": "bento box", + "order": 3726, + "tags": ["bento", "box", "food"], + "unicode": "ðŸą" + }, + { + "group": 4, + "hexcode": "1F358", + "label": "rice cracker", + "order": 3727, + "tags": ["cracker", "food", "rice"], + "unicode": "🍘" + }, + { + "group": 4, + "hexcode": "1F359", + "label": "rice ball", + "order": 3728, + "tags": ["ball", "food", "japanese", "rice"], + "unicode": "🍙" + }, + { + "group": 4, + "hexcode": "1F35A", + "label": "cooked rice", + "order": 3729, + "tags": ["cooked", "food", "rice"], + "unicode": "🍚" + }, + { + "group": 4, + "hexcode": "1F35B", + "label": "curry rice", + "order": 3730, + "tags": ["curry", "food", "rice"], + "unicode": "🍛" + }, + { + "group": 4, + "hexcode": "1F35C", + "label": "steaming bowl", + "order": 3731, + "tags": [ + "bowl", + "chopsticks", + "food", + "noodle", + "pho", + "ramen", + "soup", + "steaming" + ], + "unicode": "🍜" + }, + { + "group": 4, + "hexcode": "1F35D", + "label": "spaghetti", + "order": 3732, + "tags": ["food", "meatballs", "pasta", "restaurant"], + "unicode": "🍝" + }, + { + "group": 4, + "hexcode": "1F360", + "label": "roasted sweet potato", + "order": 3733, + "tags": ["food", "potato", "roasted", "sweet"], + "unicode": "🍠" + }, + { + "group": 4, + "hexcode": "1F362", + "label": "oden", + "order": 3734, + "tags": ["food", "kebab", "restaurant", "seafood", "skewer", "stick"], + "unicode": "ðŸĒ" + }, + { + "group": 4, + "hexcode": "1F363", + "label": "sushi", + "order": 3735, + "tags": ["food"], + "unicode": "ðŸĢ" + }, + { + "group": 4, + "hexcode": "1F364", + "label": "fried shrimp", + "order": 3736, + "tags": ["fried", "prawn", "shrimp", "tempura"], + "unicode": "ðŸĪ" + }, + { + "group": 4, + "hexcode": "1F365", + "label": "fish cake with swirl", + "order": 3737, + "tags": ["cake", "fish", "food", "pastry", "restaurant", "swirl"], + "unicode": "ðŸĨ" + }, + { + "group": 4, + "hexcode": "1F96E", + "label": "moon cake", + "order": 3738, + "tags": ["autumn", "cake", "festival", "moon", "yuÃĻbĮng"], + "unicode": "ðŸĨŪ" + }, + { + "group": 4, + "hexcode": "1F361", + "label": "dango", + "order": 3739, + "tags": ["dessert", "japanese", "skewer", "stick", "sweet"], + "unicode": "ðŸĄ" + }, + { + "group": 4, + "hexcode": "1F95F", + "label": "dumpling", + "order": 3740, + "tags": ["empanada", "gyōza", "jiaozi", "pierogi", "potsticker"], + "unicode": "ðŸĨŸ" + }, + { + "group": 4, + "hexcode": "1F960", + "label": "fortune cookie", + "order": 3741, + "tags": ["cookie", "fortune", "prophecy"], + "unicode": "ðŸĨ " + }, + { + "group": 4, + "hexcode": "1F961", + "label": "takeout box", + "order": 3742, + "tags": [ + "box", + "chopsticks", + "delivery", + "food", + "oyster", + "pail", + "takeout" + ], + "unicode": "ðŸĨĄ" + }, + { + "group": 4, + "hexcode": "1F366", + "label": "soft ice cream", + "order": 3743, + "tags": [ + "cream", + "dessert", + "food", + "ice", + "icecream", + "restaurant", + "serve", + "soft", + "sweet" + ], + "unicode": "ðŸĶ" + }, + { + "group": 4, + "hexcode": "1F367", + "label": "shaved ice", + "order": 3744, + "tags": ["dessert", "ice", "restaurant", "shaved", "sweet"], + "unicode": "🍧" + }, + { + "group": 4, + "hexcode": "1F368", + "label": "ice cream", + "order": 3745, + "tags": ["cream", "dessert", "food", "ice", "restaurant", "sweet"], + "unicode": "ðŸĻ" + }, + { + "group": 4, + "hexcode": "1F369", + "label": "doughnut", + "order": 3746, + "tags": ["breakfast", "dessert", "donut", "food", "sweet"], + "unicode": "ðŸĐ" + }, + { + "group": 4, + "hexcode": "1F36A", + "label": "cookie", + "order": 3747, + "tags": ["chip", "chocolate", "dessert", "sweet"], + "unicode": "🍊" + }, + { + "group": 4, + "hexcode": "1F382", + "label": "birthday cake", + "order": 3748, + "tags": [ + "bday", + "birthday", + "cake", + "celebration", + "dessert", + "happy", + "pastry", + "sweet" + ], + "unicode": "🎂" + }, + { + "group": 4, + "hexcode": "1F370", + "label": "shortcake", + "order": 3749, + "tags": ["cake", "dessert", "pastry", "slice", "sweet"], + "unicode": "🍰" + }, + { + "group": 4, + "hexcode": "1F9C1", + "label": "cupcake", + "order": 3750, + "tags": ["bakery", "dessert", "sprinkles", "sugar", "sweet", "treat"], + "unicode": "🧁" + }, + { + "group": 4, + "hexcode": "1F967", + "label": "pie", + "order": 3751, + "tags": [ + "apple", + "filling", + "fruit", + "meat", + "pastry", + "pumpkin", + "slice" + ], + "unicode": "ðŸĨ§" + }, + { + "group": 4, + "hexcode": "1F36B", + "label": "chocolate bar", + "order": 3752, + "tags": [ + "bar", + "candy", + "chocolate", + "dessert", + "halloween", + "sweet", + "tooth" + ], + "unicode": "ðŸŦ" + }, + { + "group": 4, + "hexcode": "1F36C", + "label": "candy", + "order": 3753, + "tags": [ + "cavities", + "dessert", + "halloween", + "restaurant", + "sweet", + "tooth", + "wrapper" + ], + "unicode": "🍎" + }, + { + "group": 4, + "hexcode": "1F36D", + "label": "lollipop", + "order": 3754, + "tags": ["candy", "dessert", "food", "restaurant", "sweet"], + "unicode": "🍭" + }, + { + "group": 4, + "hexcode": "1F36E", + "label": "custard", + "order": 3755, + "tags": ["dessert", "pudding", "sweet"], + "unicode": "ðŸŪ" + }, + { + "group": 4, + "hexcode": "1F36F", + "label": "honey pot", + "order": 3756, + "tags": [ + "barrel", + "bear", + "food", + "honey", + "honeypot", + "jar", + "pot", + "sweet" + ], + "unicode": "ðŸŊ" + }, + { + "group": 4, + "hexcode": "1F37C", + "label": "baby bottle", + "order": 3757, + "tags": [ + "babies", + "baby", + "birth", + "born", + "bottle", + "drink", + "infant", + "milk", + "newborn" + ], + "unicode": "🍞" + }, + { + "group": 4, + "hexcode": "1F95B", + "label": "glass of milk", + "order": 3758, + "tags": ["drink", "glass", "milk"], + "unicode": "ðŸĨ›" + }, + { + "group": 4, + "hexcode": "2615", + "label": "hot beverage", + "order": 3759, + "tags": [ + "beverage", + "cafe", + "caffeine", + "chai", + "coffee", + "drink", + "hot", + "morning", + "steaming", + "tea" + ], + "unicode": "☕ïļ" + }, + { + "group": 4, + "hexcode": "1FAD6", + "label": "teapot", + "order": 3760, + "tags": ["brew", "drink", "food", "pot", "tea"], + "unicode": "ðŸŦ–" + }, + { + "group": 4, + "hexcode": "1F375", + "label": "teacup without handle", + "order": 3761, + "tags": [ + "beverage", + "cup", + "drink", + "handle", + "oolong", + "tea", + "teacup" + ], + "unicode": "ðŸĩ" + }, + { + "group": 4, + "hexcode": "1F376", + "label": "sake", + "order": 3762, + "tags": ["bar", "beverage", "bottle", "cup", "drink", "restaurant"], + "unicode": "ðŸķ" + }, + { + "group": 4, + "hexcode": "1F37E", + "label": "bottle with popping cork", + "order": 3763, + "tags": ["bar", "bottle", "cork", "drink", "popping"], + "unicode": "ðŸū" + }, + { + "group": 4, + "hexcode": "1F377", + "label": "wine glass", + "order": 3764, + "tags": [ + "alcohol", + "bar", + "beverage", + "booze", + "club", + "drink", + "drinking", + "drinks", + "glass", + "restaurant", + "wine" + ], + "unicode": "🍷" + }, + { + "group": 4, + "hexcode": "1F378", + "label": "cocktail glass", + "order": 3765, + "tags": [ + "alcohol", + "bar", + "booze", + "club", + "cocktail", + "drink", + "drinking", + "drinks", + "glass", + "mad", + "martini", + "men" + ], + "unicode": "ðŸļïļ" + }, + { + "group": 4, + "hexcode": "1F379", + "label": "tropical drink", + "order": 3766, + "tags": [ + "alcohol", + "bar", + "booze", + "club", + "cocktail", + "drink", + "drinking", + "drinks", + "drunk", + "mai", + "party", + "tai", + "tropical", + "tropics" + ], + "unicode": "ðŸđ" + }, + { + "group": 4, + "hexcode": "1F37A", + "label": "beer mug", + "order": 3767, + "tags": [ + "alcohol", + "ale", + "bar", + "beer", + "booze", + "drink", + "drinking", + "drinks", + "mug", + "octoberfest", + "oktoberfest", + "pint", + "stein", + "summer" + ], + "unicode": "🍚" + }, + { + "group": 4, + "hexcode": "1F37B", + "label": "clinking beer mugs", + "order": 3768, + "tags": [ + "alcohol", + "bar", + "beer", + "booze", + "bottoms", + "cheers", + "clink", + "clinking", + "drinking", + "drinks", + "mugs" + ], + "unicode": "ðŸŧ" + }, + { + "group": 4, + "hexcode": "1F942", + "label": "clinking glasses", + "order": 3769, + "tags": ["celebrate", "clink", "clinking", "drink", "glass", "glasses"], + "unicode": "ðŸĨ‚" + }, + { + "group": 4, + "hexcode": "1F943", + "label": "tumbler glass", + "order": 3770, + "tags": [ + "glass", + "liquor", + "scotch", + "shot", + "tumbler", + "whiskey", + "whisky" + ], + "unicode": "ðŸĨƒ" + }, + { + "group": 4, + "hexcode": "1FAD7", + "label": "pouring liquid", + "order": 3771, + "tags": [ + "accident", + "drink", + "empty", + "glass", + "liquid", + "oops", + "pour", + "pouring", + "spill", + "water" + ], + "unicode": "ðŸŦ—" + }, + { + "group": 4, + "hexcode": "1F964", + "label": "cup with straw", + "order": 3772, + "tags": [ + "cup", + "drink", + "juice", + "malt", + "soda", + "soft", + "straw", + "water" + ], + "unicode": "ðŸĨĪ" + }, + { + "group": 4, + "hexcode": "1F9CB", + "label": "bubble tea", + "order": 3773, + "tags": ["boba", "bubble", "food", "milk", "pearl", "tea"], + "unicode": "🧋" + }, + { + "group": 4, + "hexcode": "1F9C3", + "label": "beverage box", + "order": 3774, + "tags": ["beverage", "box", "juice", "straw", "sweet"], + "unicode": "🧃" + }, + { + "group": 4, + "hexcode": "1F9C9", + "label": "mate", + "order": 3775, + "tags": ["drink"], + "unicode": "🧉" + }, + { + "group": 4, + "hexcode": "1F9CA", + "label": "ice", + "order": 3776, + "tags": ["cold", "cube", "iceberg"], + "unicode": "🧊" + }, + { + "group": 4, + "hexcode": "1F962", + "label": "chopsticks", + "order": 3777, + "tags": ["hashi", "jeotgarak", "kuaizi"], + "unicode": "ðŸĨĒ" + }, + { + "group": 4, + "hexcode": "1F37D", + "label": "fork and knife with plate", + "order": 3779, + "tags": ["cooking", "dinner", "eat", "fork", "knife", "plate"], + "unicode": "ðŸ―ïļ" + }, + { + "group": 4, + "hexcode": "1F374", + "label": "fork and knife", + "order": 3780, + "tags": [ + "breakfast", + "breaky", + "cooking", + "cutlery", + "delicious", + "dinner", + "eat", + "feed", + "food", + "fork", + "hungry", + "knife", + "lunch", + "restaurant", + "yum", + "yummy" + ], + "unicode": "ðŸī" + }, + { + "group": 4, + "hexcode": "1F944", + "label": "spoon", + "order": 3781, + "tags": ["eat", "tableware"], + "unicode": "ðŸĨ„" + }, + { + "group": 4, + "hexcode": "1F52A", + "label": "kitchen knife", + "order": 3782, + "tags": [ + "chef", + "cooking", + "hocho", + "kitchen", + "knife", + "tool", + "weapon" + ], + "unicode": "🔊" + }, + { + "group": 4, + "hexcode": "1FAD9", + "label": "jar", + "order": 3783, + "tags": [ + "condiment", + "container", + "empty", + "nothing", + "sauce", + "store" + ], + "unicode": "ðŸŦ™" + }, + { + "group": 4, + "hexcode": "1F3FA", + "label": "amphora", + "order": 3784, + "tags": [ + "aquarius", + "cooking", + "drink", + "jug", + "tool", + "weapon", + "zodiac" + ], + "unicode": "🏚" + } + ] + }, + { + "name": "Activity", + "emojis": [ + { + "group": 6, + "hexcode": "1F383", + "label": "jack-o-lantern", + "order": 4052, + "tags": ["celebration", "halloween", "jack", "lantern", "pumpkin"], + "unicode": "🎃" + }, + { + "group": 6, + "hexcode": "1F384", + "label": "Christmas tree", + "order": 4053, + "tags": ["celebration", "christmas", "tree"], + "unicode": "🎄" + }, + { + "group": 6, + "hexcode": "1F386", + "label": "fireworks", + "order": 4054, + "tags": ["boom", "celebration", "entertainment", "yolo"], + "unicode": "🎆" + }, + { + "group": 6, + "hexcode": "1F387", + "label": "sparkler", + "order": 4055, + "tags": ["boom", "celebration", "fireworks", "sparkle"], + "unicode": "🎇" + }, + { + "group": 6, + "hexcode": "1F9E8", + "label": "firecracker", + "order": 4056, + "tags": [ + "dynamite", + "explosive", + "fire", + "fireworks", + "light", + "pop", + "popping", + "spark" + ], + "unicode": "ðŸ§Ļ" + }, + { + "group": 6, + "hexcode": "2728", + "label": "sparkles", + "order": 4057, + "tags": ["*", "magic", "sparkle", "star"], + "unicode": "âœĻïļ" + }, + { + "group": 6, + "hexcode": "1F388", + "label": "balloon", + "order": 4058, + "tags": ["birthday", "celebrate", "celebration"], + "unicode": "🎈" + }, + { + "group": 6, + "hexcode": "1F389", + "label": "party popper", + "order": 4059, + "tags": [ + "awesome", + "birthday", + "celebrate", + "celebration", + "excited", + "hooray", + "party", + "popper", + "tada", + "woohoo" + ], + "unicode": "🎉" + }, + { + "group": 6, + "hexcode": "1F38A", + "label": "confetti ball", + "order": 4060, + "tags": [ + "ball", + "celebrate", + "celebration", + "confetti", + "party", + "woohoo" + ], + "unicode": "🎊" + }, + { + "group": 6, + "hexcode": "1F38B", + "label": "tanabata tree", + "order": 4061, + "tags": ["banner", "celebration", "japanese", "tanabata", "tree"], + "unicode": "🎋" + }, + { + "group": 6, + "hexcode": "1F38D", + "label": "pine decoration", + "order": 4062, + "tags": [ + "bamboo", + "celebration", + "decoration", + "japanese", + "pine", + "plant" + ], + "unicode": "🎍" + }, + { + "group": 6, + "hexcode": "1F38E", + "label": "Japanese dolls", + "order": 4063, + "tags": ["celebration", "doll", "dolls", "festival", "japanese"], + "unicode": "🎎" + }, + { + "group": 6, + "hexcode": "1F38F", + "label": "carp streamer", + "order": 4064, + "tags": ["carp", "celebration", "streamer"], + "unicode": "🎏" + }, + { + "group": 6, + "hexcode": "1F390", + "label": "wind chime", + "order": 4065, + "tags": ["bell", "celebration", "chime", "wind"], + "unicode": "🎐" + }, + { + "group": 6, + "hexcode": "1F391", + "label": "moon viewing ceremony", + "order": 4066, + "tags": ["celebration", "ceremony", "moon", "viewing"], + "unicode": "🎑" + }, + { + "group": 6, + "hexcode": "1F9E7", + "label": "red envelope", + "order": 4067, + "tags": [ + "envelope", + "gift", + "good", + "hÃģngbāo", + "lai", + "luck", + "money", + "red", + "see" + ], + "unicode": "🧧" + }, + { + "group": 6, + "hexcode": "1F380", + "label": "ribbon", + "order": 4068, + "tags": ["celebration"], + "unicode": "🎀" + }, + { + "group": 6, + "hexcode": "1F381", + "label": "wrapped gift", + "order": 4069, + "tags": [ + "birthday", + "bow", + "box", + "celebration", + "christmas", + "gift", + "present", + "surprise", + "wrapped" + ], + "unicode": "🎁" + }, + { + "group": 6, + "hexcode": "1F397", + "label": "reminder ribbon", + "order": 4071, + "tags": ["celebration", "reminder", "ribbon"], + "unicode": "🎗ïļ" + }, + { + "group": 6, + "hexcode": "1F39F", + "label": "admission tickets", + "order": 4073, + "tags": ["admission", "ticket", "tickets"], + "unicode": "🎟ïļ" + }, + { + "group": 6, + "hexcode": "1F3AB", + "label": "ticket", + "order": 4074, + "tags": ["admission", "stub"], + "unicode": "ðŸŽŦ" + }, + { + "group": 6, + "hexcode": "1F396", + "label": "military medal", + "order": 4076, + "tags": ["award", "celebration", "medal", "military"], + "unicode": "🎖ïļ" + }, + { + "group": 6, + "hexcode": "1F3C6", + "label": "trophy", + "order": 4077, + "tags": [ + "champion", + "champs", + "prize", + "slay", + "sport", + "victory", + "win", + "winning" + ], + "unicode": "🏆ïļ" + }, + { + "group": 6, + "hexcode": "1F3C5", + "label": "sports medal", + "order": 4078, + "tags": ["award", "gold", "medal", "sports", "winner"], + "unicode": "🏅" + }, + { + "group": 6, + "hexcode": "1F947", + "label": "1st place medal", + "order": 4079, + "tags": ["1st", "first", "gold", "medal", "place"], + "unicode": "ðŸĨ‡" + }, + { + "group": 6, + "hexcode": "1F948", + "label": "2nd place medal", + "order": 4080, + "tags": ["2nd", "medal", "place", "second", "silver"], + "unicode": "ðŸĨˆ" + }, + { + "group": 6, + "hexcode": "1F949", + "label": "3rd place medal", + "order": 4081, + "tags": ["3rd", "bronze", "medal", "place", "third"], + "unicode": "ðŸĨ‰" + }, + { + "group": 6, + "hexcode": "26BD", + "label": "soccer ball", + "order": 4082, + "tags": ["ball", "football", "futbol", "soccer", "sport"], + "unicode": "âš―ïļ" + }, + { + "group": 6, + "hexcode": "26BE", + "label": "baseball", + "order": 4083, + "tags": ["ball", "sport"], + "unicode": "âšūïļ" + }, + { + "group": 6, + "hexcode": "1F94E", + "label": "softball", + "order": 4084, + "tags": ["ball", "glove", "sports", "underarm"], + "unicode": "ðŸĨŽ" + }, + { + "group": 6, + "hexcode": "1F3C0", + "label": "basketball", + "order": 4085, + "tags": ["ball", "hoop", "sport"], + "unicode": "🏀" + }, + { + "group": 6, + "hexcode": "1F3D0", + "label": "volleyball", + "order": 4086, + "tags": ["ball", "game"], + "unicode": "🏐" + }, + { + "group": 6, + "hexcode": "1F3C8", + "label": "american football", + "order": 4087, + "tags": ["american", "ball", "bowl", "football", "sport", "super"], + "unicode": "🏈" + }, + { + "group": 6, + "hexcode": "1F3C9", + "label": "rugby football", + "order": 4088, + "tags": ["ball", "football", "rugby", "sport"], + "unicode": "🏉" + }, + { + "group": 6, + "hexcode": "1F3BE", + "label": "tennis", + "order": 4089, + "tags": ["ball", "racquet", "sport"], + "unicode": "ðŸŽū" + }, + { + "group": 6, + "hexcode": "1F94F", + "label": "flying disc", + "order": 4090, + "tags": ["disc", "flying", "ultimate"], + "unicode": "ðŸĨ" + }, + { + "group": 6, + "hexcode": "1F3B3", + "label": "bowling", + "order": 4091, + "tags": ["ball", "game", "sport", "strike"], + "unicode": "ðŸŽģ" + }, + { + "group": 6, + "hexcode": "1F3CF", + "label": "cricket game", + "order": 4092, + "tags": ["ball", "bat", "cricket", "game"], + "unicode": "🏏" + }, + { + "group": 6, + "hexcode": "1F3D1", + "label": "field hockey", + "order": 4093, + "tags": ["ball", "field", "game", "hockey", "stick"], + "unicode": "🏑" + }, + { + "group": 6, + "hexcode": "1F3D2", + "label": "ice hockey", + "order": 4094, + "tags": ["game", "hockey", "ice", "puck", "stick"], + "unicode": "🏒" + }, + { + "group": 6, + "hexcode": "1F94D", + "label": "lacrosse", + "order": 4095, + "tags": ["ball", "goal", "sports", "stick"], + "unicode": "ðŸĨ" + }, + { + "group": 6, + "hexcode": "1F3D3", + "label": "ping pong", + "order": 4096, + "tags": [ + "ball", + "bat", + "game", + "paddle", + "ping", + "pingpong", + "pong", + "table", + "tennis" + ], + "unicode": "🏓" + }, + { + "group": 6, + "hexcode": "1F3F8", + "label": "badminton", + "order": 4097, + "tags": ["birdie", "game", "racquet", "shuttlecock"], + "unicode": "ðŸļ" + }, + { + "group": 6, + "hexcode": "1F94A", + "label": "boxing glove", + "order": 4098, + "tags": ["boxing", "glove"], + "unicode": "ðŸĨŠ" + }, + { + "group": 6, + "hexcode": "1F94B", + "label": "martial arts uniform", + "order": 4099, + "tags": ["arts", "judo", "karate", "martial", "taekwondo", "uniform"], + "unicode": "ðŸĨ‹" + }, + { + "group": 6, + "hexcode": "1F945", + "label": "goal net", + "order": 4100, + "tags": ["goal", "net"], + "unicode": "ðŸĨ…" + }, + { + "group": 6, + "hexcode": "26F3", + "label": "flag in hole", + "order": 4101, + "tags": ["flag", "golf", "hole", "sport"], + "unicode": "â›ģïļ" + }, + { + "group": 6, + "hexcode": "26F8", + "label": "ice skate", + "order": 4103, + "tags": ["ice", "skate", "skating"], + "unicode": "â›ļïļ" + }, + { + "group": 6, + "hexcode": "1F3A3", + "label": "fishing pole", + "order": 4104, + "tags": ["entertainment", "fish", "fishing", "pole", "sport"], + "unicode": "ðŸŽĢ" + }, + { + "group": 6, + "hexcode": "1F93F", + "label": "diving mask", + "order": 4105, + "tags": ["diving", "mask", "scuba", "snorkeling"], + "unicode": "ðŸĪŋ" + }, + { + "group": 6, + "hexcode": "1F3BD", + "label": "running shirt", + "order": 4106, + "tags": ["athletics", "running", "sash", "shirt"], + "unicode": "ðŸŽ―" + }, + { + "group": 6, + "hexcode": "1F3BF", + "label": "skis", + "order": 4107, + "tags": ["ski", "snow", "sport"], + "unicode": "ðŸŽŋ" + }, + { + "group": 6, + "hexcode": "1F6F7", + "label": "sled", + "order": 4108, + "tags": ["luge", "sledge", "sleigh", "snow", "toboggan"], + "unicode": "🛷" + }, + { + "group": 6, + "hexcode": "1F94C", + "label": "curling stone", + "order": 4109, + "tags": ["curling", "game", "rock", "stone"], + "unicode": "ðŸĨŒ" + }, + { + "group": 6, + "hexcode": "1F3AF", + "label": "bullseye", + "order": 4110, + "tags": [ + "bull", + "dart", + "direct", + "entertainment", + "game", + "hit", + "target" + ], + "unicode": "ðŸŽŊ" + }, + { + "group": 6, + "hexcode": "1FA80", + "label": "yo-yo", + "order": 4111, + "tags": ["fluctuate", "toy"], + "unicode": "🊀" + }, + { + "group": 6, + "hexcode": "1FA81", + "label": "kite", + "order": 4112, + "tags": ["fly", "soar"], + "unicode": "🊁" + }, + { + "group": 6, + "hexcode": "1F52B", + "label": "water pistol", + "order": 4113, + "tags": [ + "gun", + "handgun", + "pistol", + "revolver", + "tool", + "water", + "weapon" + ], + "unicode": "ðŸ”Ŧ" + }, + { + "group": 6, + "hexcode": "1F3B1", + "label": "pool 8 ball", + "order": 4114, + "tags": ["8", "8ball", "ball", "billiard", "eight", "game", "pool"], + "unicode": "ðŸŽą" + }, + { + "group": 6, + "hexcode": "1F52E", + "label": "crystal ball", + "order": 4115, + "tags": [ + "ball", + "crystal", + "fairy", + "fairytale", + "fantasy", + "fortune", + "future", + "magic", + "tale", + "tool" + ], + "unicode": "ðŸ”Ū" + }, + { + "group": 6, + "hexcode": "1FA84", + "label": "magic wand", + "order": 4116, + "tags": ["magic", "magician", "wand", "witch", "wizard"], + "unicode": "🊄" + }, + { + "group": 6, + "hexcode": "1F3AE", + "label": "video game", + "order": 4117, + "tags": ["controller", "entertainment", "game", "video"], + "unicode": "ðŸŽŪïļ" + }, + { + "group": 6, + "hexcode": "1F579", + "label": "joystick", + "order": 4119, + "tags": ["game", "video", "videogame"], + "unicode": "ðŸ•đïļ" + }, + { + "group": 6, + "hexcode": "1F3B0", + "label": "slot machine", + "order": 4120, + "tags": [ + "casino", + "gamble", + "gambling", + "game", + "machine", + "slot", + "slots" + ], + "unicode": "🎰" + }, + { + "group": 6, + "hexcode": "1F3B2", + "label": "game die", + "order": 4121, + "tags": ["dice", "die", "entertainment", "game"], + "unicode": "ðŸŽē" + }, + { + "group": 6, + "hexcode": "1F9E9", + "label": "puzzle piece", + "order": 4122, + "tags": ["clue", "interlocking", "jigsaw", "piece", "puzzle"], + "unicode": "ðŸ§Đ" + }, + { + "group": 6, + "hexcode": "1F9F8", + "label": "teddy bear", + "order": 4123, + "tags": ["bear", "plaything", "plush", "stuffed", "teddy", "toy"], + "unicode": "ðŸ§ļ" + }, + { + "group": 6, + "hexcode": "1FA85", + "label": "piÃąata", + "order": 4124, + "tags": [ + "candy", + "celebrate", + "celebration", + "cinco", + "de", + "festive", + "mayo", + "party", + "pinada", + "pinata" + ], + "unicode": "🊅" + }, + { + "group": 6, + "hexcode": "1FAA9", + "label": "mirror ball", + "order": 4125, + "tags": ["ball", "dance", "disco", "glitter", "mirror", "party"], + "unicode": "ðŸŠĐ" + }, + { + "group": 6, + "hexcode": "1FA86", + "label": "nesting dolls", + "order": 4126, + "tags": [ + "babooshka", + "baboushka", + "babushka", + "doll", + "dolls", + "matryoshka", + "nesting", + "russia" + ], + "unicode": "🊆" + }, + { + "group": 6, + "hexcode": "2660", + "label": "spade suit", + "order": 4128, + "tags": ["card", "game", "spade", "suit"], + "unicode": "♠ïļ" + }, + { + "group": 6, + "hexcode": "2665", + "label": "heart suit", + "order": 4130, + "tags": ["card", "emotion", "game", "heart", "hearts", "suit"], + "unicode": "â™Ĩïļ" + }, + { + "group": 6, + "hexcode": "2666", + "label": "diamond suit", + "order": 4132, + "tags": ["card", "diamond", "game", "suit"], + "unicode": "â™Ķïļ" + }, + { + "group": 6, + "hexcode": "2663", + "label": "club suit", + "order": 4134, + "tags": ["card", "club", "clubs", "game", "suit"], + "unicode": "â™Ģïļ" + }, + { + "group": 6, + "hexcode": "265F", + "label": "chess pawn", + "order": 4136, + "tags": ["chess", "dupe", "expendable", "pawn"], + "unicode": "♟ïļ" + }, + { + "group": 6, + "hexcode": "1F0CF", + "label": "joker", + "order": 4137, + "tags": ["card", "game", "wildcard"], + "unicode": "🃏" + }, + { + "group": 6, + "hexcode": "1F004", + "label": "mahjong red dragon", + "order": 4138, + "tags": ["dragon", "game", "mahjong", "red"], + "unicode": "🀄ïļ" + }, + { + "group": 6, + "hexcode": "1F3B4", + "label": "flower playing cards", + "order": 4139, + "tags": ["card", "cards", "flower", "game", "japanese", "playing"], + "unicode": "ðŸŽī" + }, + { + "group": 6, + "hexcode": "1F3AD", + "label": "performing arts", + "order": 4140, + "tags": [ + "actor", + "actress", + "art", + "arts", + "entertainment", + "mask", + "performing", + "theater", + "theatre", + "thespian" + ], + "unicode": "🎭ïļ" + }, + { + "group": 6, + "hexcode": "1F5BC", + "label": "framed picture", + "order": 4142, + "tags": ["art", "frame", "framed", "museum", "painting", "picture"], + "unicode": "🖞ïļ" + }, + { + "group": 6, + "hexcode": "1F3A8", + "label": "artist palette", + "order": 4143, + "tags": [ + "art", + "artist", + "artsy", + "arty", + "colorful", + "creative", + "entertainment", + "museum", + "painter", + "painting", + "palette" + ], + "unicode": "ðŸŽĻ" + }, + { + "group": 6, + "hexcode": "1F9F5", + "label": "thread", + "order": 4144, + "tags": ["needle", "sewing", "spool", "string"], + "unicode": "ðŸ§ĩ" + }, + { + "group": 6, + "hexcode": "1FAA1", + "label": "sewing needle", + "order": 4145, + "tags": [ + "embroidery", + "needle", + "sew", + "sewing", + "stitches", + "sutures", + "tailoring", + "thread" + ], + "unicode": "ðŸŠĄ" + }, + { + "group": 6, + "hexcode": "1F9F6", + "label": "yarn", + "order": 4146, + "tags": ["ball", "crochet", "knit"], + "unicode": "ðŸ§ķ" + }, + { + "group": 6, + "hexcode": "1FAA2", + "label": "knot", + "order": 4147, + "tags": ["cord", "rope", "tangled", "tie", "twine", "twist"], + "unicode": "ðŸŠĒ" + } + ] + }, + { + "name": "Travel & Places", + "emojis": [ + { + "group": 5, + "hexcode": "1F30D", + "label": "globe showing Europe-Africa", + "order": 3785, + "tags": [ + "africa", + "earth", + "europe", + "europe-africa", + "globe", + "showing", + "world" + ], + "unicode": "🌍ïļ" + }, + { + "group": 5, + "hexcode": "1F30E", + "label": "globe showing Americas", + "order": 3786, + "tags": ["americas", "earth", "globe", "showing", "world"], + "unicode": "🌎ïļ" + }, + { + "group": 5, + "hexcode": "1F30F", + "label": "globe showing Asia-Australia", + "order": 3787, + "tags": [ + "asia", + "asia-australia", + "australia", + "earth", + "globe", + "showing", + "world" + ], + "unicode": "🌏ïļ" + }, + { + "group": 5, + "hexcode": "1F310", + "label": "globe with meridians", + "order": 3788, + "tags": [ + "earth", + "globe", + "internet", + "meridians", + "web", + "world", + "worldwide" + ], + "unicode": "🌐" + }, + { + "group": 5, + "hexcode": "1F5FA", + "label": "world map", + "order": 3790, + "tags": ["map", "world"], + "unicode": "🗚ïļ" + }, + { + "group": 5, + "hexcode": "1F5FE", + "label": "map of Japan", + "order": 3791, + "tags": ["japan", "map"], + "unicode": "ðŸ—ū" + }, + { + "group": 5, + "hexcode": "1F9ED", + "label": "compass", + "order": 3792, + "tags": ["direction", "magnetic", "navigation", "orienteering"], + "unicode": "🧭" + }, + { + "group": 5, + "hexcode": "1F3D4", + "label": "snow-capped mountain", + "order": 3794, + "tags": ["cold", "mountain", "snow", "snow-capped"], + "unicode": "🏔ïļ" + }, + { + "group": 5, + "hexcode": "26F0", + "label": "mountain", + "order": 3796, + "tags": ["mountain"], + "unicode": "⛰ïļ" + }, + { + "group": 5, + "hexcode": "1F30B", + "label": "volcano", + "order": 3797, + "tags": ["eruption", "mountain", "nature"], + "unicode": "🌋" + }, + { + "group": 5, + "hexcode": "1F5FB", + "label": "mount fuji", + "order": 3798, + "tags": ["fuji", "mount", "mountain", "nature"], + "unicode": "ðŸ—ŧ" + }, + { + "group": 5, + "hexcode": "1F3D5", + "label": "camping", + "order": 3800, + "tags": ["camping"], + "unicode": "🏕ïļ" + }, + { + "group": 5, + "hexcode": "1F3D6", + "label": "beach with umbrella", + "order": 3802, + "tags": ["beach", "umbrella"], + "unicode": "🏖ïļ" + }, + { + "group": 5, + "hexcode": "1F3DC", + "label": "desert", + "order": 3804, + "tags": ["desert"], + "unicode": "🏜ïļ" + }, + { + "group": 5, + "hexcode": "1F3DD", + "label": "desert island", + "order": 3806, + "tags": ["desert", "island"], + "unicode": "🏝ïļ" + }, + { + "group": 5, + "hexcode": "1F3DE", + "label": "national park", + "order": 3808, + "tags": ["national", "park"], + "unicode": "🏞ïļ" + }, + { + "group": 5, + "hexcode": "1F3DF", + "label": "stadium", + "order": 3810, + "tags": ["stadium"], + "unicode": "🏟ïļ" + }, + { + "group": 5, + "hexcode": "1F3DB", + "label": "classical building", + "order": 3812, + "tags": ["building", "classical"], + "unicode": "🏛ïļ" + }, + { + "group": 5, + "hexcode": "1F3D7", + "label": "building construction", + "order": 3814, + "tags": ["building", "construction", "crane"], + "unicode": "🏗ïļ" + }, + { + "group": 5, + "hexcode": "1F9F1", + "label": "brick", + "order": 3815, + "tags": ["bricks", "clay", "mortar", "wall"], + "unicode": "ðŸ§ą" + }, + { + "group": 5, + "hexcode": "1FAA8", + "label": "rock", + "order": 3816, + "tags": ["boulder", "heavy", "solid", "stone", "tough"], + "unicode": "ðŸŠĻ" + }, + { + "group": 5, + "hexcode": "1FAB5", + "label": "wood", + "order": 3817, + "tags": ["log", "lumber", "timber"], + "unicode": "ðŸŠĩ" + }, + { + "group": 5, + "hexcode": "1F6D6", + "label": "hut", + "order": 3818, + "tags": ["home", "house", "roundhouse", "shelter", "yurt"], + "unicode": "🛖" + }, + { + "group": 5, + "hexcode": "1F3D8", + "label": "houses", + "order": 3820, + "tags": ["house"], + "unicode": "🏘ïļ" + }, + { + "group": 5, + "hexcode": "1F3DA", + "label": "derelict house", + "order": 3822, + "tags": ["derelict", "home", "house"], + "unicode": "🏚ïļ" + }, + { + "group": 5, + "hexcode": "1F3E0", + "label": "house", + "order": 3823, + "tags": [ + "building", + "country", + "heart", + "home", + "ranch", + "settle", + "simple", + "suburban", + "suburbia", + "where" + ], + "unicode": "🏠ïļ" + }, + { + "group": 5, + "hexcode": "1F3E1", + "label": "house with garden", + "order": 3824, + "tags": [ + "building", + "country", + "garden", + "heart", + "home", + "house", + "ranch", + "settle", + "simple", + "suburban", + "suburbia", + "where" + ], + "unicode": "ðŸĄ" + }, + { + "group": 5, + "hexcode": "1F3E2", + "label": "office building", + "order": 3825, + "tags": ["building", "city", "cubical", "job", "office"], + "unicode": "ðŸĒ" + }, + { + "group": 5, + "hexcode": "1F3E3", + "label": "Japanese post office", + "order": 3826, + "tags": ["building", "japanese", "office", "post"], + "unicode": "ðŸĢ" + }, + { + "group": 5, + "hexcode": "1F3E4", + "label": "post office", + "order": 3827, + "tags": ["building", "european", "office", "post"], + "unicode": "ðŸĪ" + }, + { + "group": 5, + "hexcode": "1F3E5", + "label": "hospital", + "order": 3828, + "tags": ["building", "doctor", "medicine"], + "unicode": "ðŸĨ" + }, + { + "group": 5, + "hexcode": "1F3E6", + "label": "bank", + "order": 3829, + "tags": ["building"], + "unicode": "ðŸĶ" + }, + { + "group": 5, + "hexcode": "1F3E8", + "label": "hotel", + "order": 3830, + "tags": ["building"], + "unicode": "ðŸĻ" + }, + { + "group": 5, + "hexcode": "1F3E9", + "label": "love hotel", + "order": 3831, + "tags": ["building", "hotel", "love"], + "unicode": "ðŸĐ" + }, + { + "group": 5, + "hexcode": "1F3EA", + "label": "convenience store", + "order": 3832, + "tags": ["24", "building", "convenience", "hours", "store"], + "unicode": "🏊" + }, + { + "group": 5, + "hexcode": "1F3EB", + "label": "school", + "order": 3833, + "tags": ["building"], + "unicode": "ðŸŦ" + }, + { + "group": 5, + "hexcode": "1F3EC", + "label": "department store", + "order": 3834, + "tags": ["building", "department", "store"], + "unicode": "🏎" + }, + { + "group": 5, + "hexcode": "1F3ED", + "label": "factory", + "order": 3835, + "tags": ["building"], + "unicode": "🏭ïļ" + }, + { + "group": 5, + "hexcode": "1F3EF", + "label": "Japanese castle", + "order": 3836, + "tags": ["building", "castle", "japanese"], + "unicode": "ðŸŊ" + }, + { + "group": 5, + "hexcode": "1F3F0", + "label": "castle", + "order": 3837, + "tags": ["building", "european"], + "unicode": "🏰" + }, + { + "group": 5, + "hexcode": "1F492", + "label": "wedding", + "order": 3838, + "tags": ["chapel", "hitched", "nuptials", "romance"], + "unicode": "💒" + }, + { + "group": 5, + "hexcode": "1F5FC", + "label": "Tokyo tower", + "order": 3839, + "tags": ["tokyo", "tower"], + "unicode": "🗞" + }, + { + "group": 5, + "hexcode": "1F5FD", + "label": "Statue of Liberty", + "order": 3840, + "tags": ["liberty", "new", "ny", "nyc", "statue", "york"], + "unicode": "ðŸ—―" + }, + { + "group": 5, + "hexcode": "26EA", + "label": "church", + "order": 3841, + "tags": ["bless", "chapel", "christian", "cross", "religion"], + "unicode": "⛩ïļ" + }, + { + "group": 5, + "hexcode": "1F54C", + "label": "mosque", + "order": 3842, + "tags": ["islam", "masjid", "muslim", "religion"], + "unicode": "🕌" + }, + { + "group": 5, + "hexcode": "1F6D5", + "label": "hindu temple", + "order": 3843, + "tags": ["hindu", "temple"], + "unicode": "🛕" + }, + { + "group": 5, + "hexcode": "1F54D", + "label": "synagogue", + "order": 3844, + "tags": ["jew", "jewish", "judaism", "religion", "temple"], + "unicode": "🕍" + }, + { + "group": 5, + "hexcode": "26E9", + "label": "shinto shrine", + "order": 3846, + "tags": ["religion", "shinto", "shrine"], + "unicode": "â›Đïļ" + }, + { + "group": 5, + "hexcode": "1F54B", + "label": "kaaba", + "order": 3847, + "tags": ["hajj", "islam", "muslim", "religion", "umrah"], + "unicode": "🕋" + }, + { + "group": 5, + "hexcode": "26F2", + "label": "fountain", + "order": 3848, + "tags": ["fountain"], + "unicode": "â›ēïļ" + }, + { + "group": 5, + "hexcode": "26FA", + "label": "tent", + "order": 3849, + "tags": ["camping"], + "unicode": "⛹ïļ" + }, + { + "group": 5, + "hexcode": "1F301", + "label": "foggy", + "order": 3850, + "tags": ["fog"], + "unicode": "🌁" + }, + { + "group": 5, + "hexcode": "1F303", + "label": "night with stars", + "order": 3851, + "tags": ["night", "star", "stars"], + "unicode": "🌃" + }, + { + "group": 5, + "hexcode": "1F3D9", + "label": "cityscape", + "order": 3853, + "tags": ["city"], + "unicode": "🏙ïļ" + }, + { + "group": 5, + "hexcode": "1F304", + "label": "sunrise over mountains", + "order": 3854, + "tags": ["morning", "mountains", "over", "sun", "sunrise"], + "unicode": "🌄" + }, + { + "group": 5, + "hexcode": "1F305", + "label": "sunrise", + "order": 3855, + "tags": ["morning", "nature", "sun"], + "unicode": "🌅" + }, + { + "group": 5, + "hexcode": "1F306", + "label": "cityscape at dusk", + "order": 3856, + "tags": [ + "at", + "building", + "city", + "cityscape", + "dusk", + "evening", + "landscape", + "sun", + "sunset" + ], + "unicode": "🌆" + }, + { + "group": 5, + "hexcode": "1F307", + "label": "sunset", + "order": 3857, + "tags": ["building", "dusk", "sun"], + "unicode": "🌇" + }, + { + "group": 5, + "hexcode": "1F309", + "label": "bridge at night", + "order": 3858, + "tags": ["at", "bridge", "night"], + "unicode": "🌉" + }, + { + "group": 5, + "hexcode": "2668", + "label": "hot springs", + "order": 3860, + "tags": ["hot", "hotsprings", "springs", "steaming"], + "unicode": "â™Ļïļ" + }, + { + "group": 5, + "hexcode": "1F3A0", + "label": "carousel horse", + "order": 3861, + "tags": ["carousel", "entertainment", "horse"], + "unicode": "🎠" + }, + { + "group": 5, + "hexcode": "1F6DD", + "label": "playground slide", + "order": 3862, + "tags": [ + "amusement", + "park", + "play", + "playground", + "playing", + "slide", + "sliding", + "theme" + ], + "unicode": "🛝" + }, + { + "group": 5, + "hexcode": "1F3A1", + "label": "ferris wheel", + "order": 3863, + "tags": ["amusement", "ferris", "park", "theme", "wheel"], + "unicode": "ðŸŽĄ" + }, + { + "group": 5, + "hexcode": "1F3A2", + "label": "roller coaster", + "order": 3864, + "tags": ["amusement", "coaster", "park", "roller", "theme"], + "unicode": "ðŸŽĒ" + }, + { + "group": 5, + "hexcode": "1F488", + "label": "barber pole", + "order": 3865, + "tags": ["barber", "cut", "fresh", "haircut", "pole", "shave"], + "unicode": "💈" + }, + { + "group": 5, + "hexcode": "1F3AA", + "label": "circus tent", + "order": 3866, + "tags": ["circus", "tent"], + "unicode": "🎊" + }, + { + "group": 5, + "hexcode": "1F682", + "label": "locomotive", + "order": 3867, + "tags": [ + "caboose", + "engine", + "railway", + "steam", + "train", + "trains", + "travel" + ], + "unicode": "🚂" + }, + { + "group": 5, + "hexcode": "1F683", + "label": "railway car", + "order": 3868, + "tags": [ + "car", + "electric", + "railway", + "train", + "tram", + "travel", + "trolleybus" + ], + "unicode": "🚃" + }, + { + "group": 5, + "hexcode": "1F684", + "label": "high-speed train", + "order": 3869, + "tags": ["high-speed", "railway", "shinkansen", "speed", "train"], + "unicode": "🚄" + }, + { + "group": 5, + "hexcode": "1F685", + "label": "bullet train", + "order": 3870, + "tags": [ + "bullet", + "high-speed", + "nose", + "railway", + "shinkansen", + "speed", + "train", + "travel" + ], + "unicode": "🚅" + }, + { + "group": 5, + "hexcode": "1F686", + "label": "train", + "order": 3871, + "tags": ["arrived", "choo", "railway"], + "unicode": "🚆" + }, + { + "group": 5, + "hexcode": "1F687", + "label": "metro", + "order": 3872, + "tags": ["subway", "travel"], + "unicode": "🚇ïļ" + }, + { + "group": 5, + "hexcode": "1F688", + "label": "light rail", + "order": 3873, + "tags": ["arrived", "light", "monorail", "rail", "railway"], + "unicode": "🚈" + }, + { + "group": 5, + "hexcode": "1F689", + "label": "station", + "order": 3874, + "tags": ["railway", "train"], + "unicode": "🚉" + }, + { + "group": 5, + "hexcode": "1F68A", + "label": "tram", + "order": 3875, + "tags": ["trolleybus"], + "unicode": "🚊" + }, + { + "group": 5, + "hexcode": "1F69D", + "label": "monorail", + "order": 3876, + "tags": ["vehicle"], + "unicode": "🚝" + }, + { + "group": 5, + "hexcode": "1F69E", + "label": "mountain railway", + "order": 3877, + "tags": ["car", "mountain", "railway", "trip"], + "unicode": "🚞" + }, + { + "group": 5, + "hexcode": "1F68B", + "label": "tram car", + "order": 3878, + "tags": ["bus", "car", "tram", "trolley", "trolleybus"], + "unicode": "🚋" + }, + { + "group": 5, + "hexcode": "1F68C", + "label": "bus", + "order": 3879, + "tags": ["school", "vehicle"], + "unicode": "🚌" + }, + { + "group": 5, + "hexcode": "1F68D", + "label": "oncoming bus", + "order": 3880, + "tags": ["bus", "cars", "oncoming"], + "unicode": "🚍ïļ" + }, + { + "group": 5, + "hexcode": "1F68E", + "label": "trolleybus", + "order": 3881, + "tags": ["bus", "tram", "trolley"], + "unicode": "🚎" + }, + { + "group": 5, + "hexcode": "1F690", + "label": "minibus", + "order": 3882, + "tags": ["bus", "drive", "van", "vehicle"], + "unicode": "🚐" + }, + { + "group": 5, + "hexcode": "1F691", + "label": "ambulance", + "order": 3883, + "tags": ["emergency", "vehicle"], + "unicode": "🚑ïļ" + }, + { + "group": 5, + "hexcode": "1F692", + "label": "fire engine", + "order": 3884, + "tags": ["engine", "fire", "truck"], + "unicode": "🚒" + }, + { + "group": 5, + "hexcode": "1F693", + "label": "police car", + "order": 3885, + "tags": ["5–0", "car", "cops", "patrol", "police"], + "unicode": "🚓" + }, + { + "group": 5, + "hexcode": "1F694", + "label": "oncoming police car", + "order": 3886, + "tags": ["car", "oncoming", "police"], + "unicode": "🚔ïļ" + }, + { + "group": 5, + "hexcode": "1F695", + "label": "taxi", + "order": 3887, + "tags": ["cab", "cabbie", "car", "drive", "vehicle", "yellow"], + "unicode": "🚕" + }, + { + "group": 5, + "hexcode": "1F696", + "label": "oncoming taxi", + "order": 3888, + "tags": [ + "cab", + "cabbie", + "cars", + "drove", + "hail", + "oncoming", + "taxi", + "yellow" + ], + "unicode": "🚖" + }, + { + "group": 5, + "hexcode": "1F697", + "label": "automobile", + "order": 3889, + "tags": ["car", "driving", "vehicle"], + "unicode": "🚗" + }, + { + "group": 5, + "hexcode": "1F698", + "label": "oncoming automobile", + "order": 3890, + "tags": ["automobile", "car", "cars", "drove", "oncoming", "vehicle"], + "unicode": "🚘ïļ" + }, + { + "group": 5, + "hexcode": "1F699", + "label": "sport utility vehicle", + "order": 3891, + "tags": [ + "car", + "drive", + "recreational", + "sport", + "sportutility", + "utility", + "vehicle" + ], + "unicode": "🚙" + }, + { + "group": 5, + "hexcode": "1F6FB", + "label": "pickup truck", + "order": 3892, + "tags": [ + "automobile", + "car", + "flatbed", + "pick-up", + "pickup", + "transportation", + "truck" + ], + "unicode": "ðŸ›ŧ" + }, + { + "group": 5, + "hexcode": "1F69A", + "label": "delivery truck", + "order": 3893, + "tags": ["car", "delivery", "drive", "truck", "vehicle"], + "unicode": "🚚" + }, + { + "group": 5, + "hexcode": "1F69B", + "label": "articulated lorry", + "order": 3894, + "tags": [ + "articulated", + "car", + "drive", + "lorry", + "move", + "semi", + "truck", + "vehicle" + ], + "unicode": "🚛" + }, + { + "group": 5, + "hexcode": "1F69C", + "label": "tractor", + "order": 3895, + "tags": ["vehicle"], + "unicode": "🚜" + }, + { + "group": 5, + "hexcode": "1F3CE", + "label": "racing car", + "order": 3897, + "tags": ["car", "racing", "zoom"], + "unicode": "🏎ïļ" + }, + { + "group": 5, + "hexcode": "1F3CD", + "label": "motorcycle", + "order": 3899, + "tags": ["racing"], + "unicode": "🏍ïļ" + }, + { + "group": 5, + "hexcode": "1F6F5", + "label": "motor scooter", + "order": 3900, + "tags": ["motor", "scooter"], + "unicode": "ðŸ›ĩ" + }, + { + "group": 5, + "hexcode": "1F9BD", + "label": "manual wheelchair", + "order": 3901, + "tags": ["accessibility", "manual", "wheelchair"], + "unicode": "ðŸĶ―" + }, + { + "group": 5, + "hexcode": "1F9BC", + "label": "motorized wheelchair", + "order": 3902, + "tags": ["accessibility", "motorized", "wheelchair"], + "unicode": "ðŸĶž" + }, + { + "group": 5, + "hexcode": "1F6FA", + "label": "auto rickshaw", + "order": 3903, + "tags": ["auto", "rickshaw", "tuk"], + "unicode": "🛚" + }, + { + "group": 5, + "hexcode": "1F6B2", + "label": "bicycle", + "order": 3904, + "tags": [ + "bike", + "class", + "cycle", + "cycling", + "cyclist", + "gang", + "ride", + "spin", + "spinning" + ], + "unicode": "ðŸšēïļ" + }, + { + "group": 5, + "hexcode": "1F6F4", + "label": "kick scooter", + "order": 3905, + "tags": ["kick", "scooter"], + "unicode": "ðŸ›ī" + }, + { + "group": 5, + "hexcode": "1F6F9", + "label": "skateboard", + "order": 3906, + "tags": ["board", "skate", "skater", "wheels"], + "unicode": "ðŸ›đ" + }, + { + "group": 5, + "hexcode": "1F6FC", + "label": "roller skate", + "order": 3907, + "tags": ["blades", "roller", "skate", "skates", "sport"], + "unicode": "🛞" + }, + { + "group": 5, + "hexcode": "1F68F", + "label": "bus stop", + "order": 3908, + "tags": ["bus", "busstop", "stop"], + "unicode": "🚏" + }, + { + "group": 5, + "hexcode": "1F6E3", + "label": "motorway", + "order": 3910, + "tags": ["highway", "road"], + "unicode": "ðŸ›Ģïļ" + }, + { + "group": 5, + "hexcode": "1F6E4", + "label": "railway track", + "order": 3912, + "tags": ["railway", "track", "train"], + "unicode": "ðŸ›Īïļ" + }, + { + "group": 5, + "hexcode": "1F6E2", + "label": "oil drum", + "order": 3914, + "tags": ["drum", "oil"], + "unicode": "ðŸ›Ēïļ" + }, + { + "group": 5, + "hexcode": "26FD", + "label": "fuel pump", + "order": 3915, + "tags": [ + "diesel", + "fuel", + "fuelpump", + "gas", + "gasoline", + "pump", + "station" + ], + "unicode": "â›―ïļ" + }, + { + "group": 5, + "hexcode": "1F6DE", + "label": "wheel", + "order": 3916, + "tags": ["car", "circle", "tire", "turn", "vehicle"], + "unicode": "🛞" + }, + { + "group": 5, + "hexcode": "1F6A8", + "label": "police car light", + "order": 3917, + "tags": [ + "alarm", + "alert", + "beacon", + "car", + "emergency", + "light", + "police", + "revolving", + "siren" + ], + "unicode": "ðŸšĻ" + }, + { + "group": 5, + "hexcode": "1F6A5", + "label": "horizontal traffic light", + "order": 3918, + "tags": [ + "horizontal", + "intersection", + "light", + "signal", + "stop", + "stoplight", + "traffic" + ], + "unicode": "ðŸšĨ" + }, + { + "group": 5, + "hexcode": "1F6A6", + "label": "vertical traffic light", + "order": 3919, + "tags": [ + "drove", + "intersection", + "light", + "signal", + "stop", + "stoplight", + "traffic", + "vertical" + ], + "unicode": "ðŸšĶ" + }, + { + "group": 5, + "hexcode": "1F6D1", + "label": "stop sign", + "order": 3920, + "tags": ["octagonal", "sign", "stop"], + "unicode": "🛑" + }, + { + "group": 5, + "hexcode": "1F6A7", + "label": "construction", + "order": 3921, + "tags": ["barrier"], + "unicode": "🚧" + }, + { + "group": 5, + "hexcode": "2693", + "label": "anchor", + "order": 3922, + "tags": ["ship", "tool"], + "unicode": "⚓ïļ" + }, + { + "group": 5, + "hexcode": "1F6DF", + "label": "ring buoy", + "order": 3923, + "tags": [ + "buoy", + "float", + "life", + "lifesaver", + "preserver", + "rescue", + "ring", + "safety", + "save", + "saver", + "swim" + ], + "unicode": "🛟" + }, + { + "group": 5, + "hexcode": "26F5", + "label": "sailboat", + "order": 3924, + "tags": ["boat", "resort", "sailing", "sea", "yacht"], + "unicode": "â›ĩïļ" + }, + { + "group": 5, + "hexcode": "1F6F6", + "label": "canoe", + "order": 3925, + "tags": ["boat"], + "unicode": "ðŸ›ķ" + }, + { + "group": 5, + "hexcode": "1F6A4", + "label": "speedboat", + "order": 3926, + "tags": [ + "billionaire", + "boat", + "lake", + "luxury", + "millionaire", + "summer", + "travel" + ], + "unicode": "ðŸšĪ" + }, + { + "group": 5, + "hexcode": "1F6F3", + "label": "passenger ship", + "order": 3928, + "tags": ["passenger", "ship"], + "unicode": "ðŸ›ģïļ" + }, + { + "group": 5, + "hexcode": "26F4", + "label": "ferry", + "order": 3930, + "tags": ["boat", "passenger"], + "unicode": "â›īïļ" + }, + { + "group": 5, + "hexcode": "1F6E5", + "label": "motor boat", + "order": 3932, + "tags": ["boat", "motor", "motorboat"], + "unicode": "ðŸ›Ĩïļ" + }, + { + "group": 5, + "hexcode": "1F6A2", + "label": "ship", + "order": 3933, + "tags": ["boat", "passenger", "travel"], + "unicode": "ðŸšĒ" + }, + { + "group": 5, + "hexcode": "2708", + "label": "airplane", + "order": 3935, + "tags": ["aeroplane", "fly", "flying", "jet", "plane", "travel"], + "unicode": "✈ïļ" + }, + { + "group": 5, + "hexcode": "1F6E9", + "label": "small airplane", + "order": 3937, + "tags": ["aeroplane", "airplane", "plane", "small"], + "unicode": "ðŸ›Đïļ" + }, + { + "group": 5, + "hexcode": "1F6EB", + "label": "airplane departure", + "order": 3938, + "tags": [ + "aeroplane", + "airplane", + "check-in", + "departure", + "departures", + "plane" + ], + "unicode": "ðŸ›Ŧ" + }, + { + "group": 5, + "hexcode": "1F6EC", + "label": "airplane arrival", + "order": 3939, + "tags": [ + "aeroplane", + "airplane", + "arrival", + "arrivals", + "arriving", + "landing", + "plane" + ], + "unicode": "🛎" + }, + { + "group": 5, + "hexcode": "1FA82", + "label": "parachute", + "order": 3940, + "tags": ["hang-glide", "parasail", "skydive"], + "unicode": "🊂" + }, + { + "group": 5, + "hexcode": "1F4BA", + "label": "seat", + "order": 3941, + "tags": ["chair"], + "unicode": "💚" + }, + { + "group": 5, + "hexcode": "1F681", + "label": "helicopter", + "order": 3942, + "tags": ["copter", "roflcopter", "travel", "vehicle"], + "unicode": "🚁" + }, + { + "group": 5, + "hexcode": "1F69F", + "label": "suspension railway", + "order": 3943, + "tags": ["railway", "suspension"], + "unicode": "🚟" + }, + { + "group": 5, + "hexcode": "1F6A0", + "label": "mountain cableway", + "order": 3944, + "tags": ["cable", "cableway", "gondola", "lift", "mountain", "ski"], + "unicode": "🚠" + }, + { + "group": 5, + "hexcode": "1F6A1", + "label": "aerial tramway", + "order": 3945, + "tags": ["aerial", "cable", "car", "gondola", "ropeway", "tramway"], + "unicode": "ðŸšĄ" + }, + { + "group": 5, + "hexcode": "1F6F0", + "label": "satellite", + "order": 3947, + "tags": ["space"], + "unicode": "🛰ïļ" + }, + { + "group": 5, + "hexcode": "1F680", + "label": "rocket", + "order": 3948, + "tags": ["launch", "rockets", "space", "travel"], + "unicode": "🚀" + }, + { + "group": 5, + "hexcode": "1F6F8", + "label": "flying saucer", + "order": 3949, + "tags": ["aliens", "extra", "flying", "saucer", "terrestrial", "ufo"], + "unicode": "ðŸ›ļ" + }, + { + "group": 5, + "hexcode": "1F6CE", + "label": "bellhop bell", + "order": 3951, + "tags": ["bell", "bellhop", "hotel"], + "unicode": "🛎ïļ" + }, + { + "group": 5, + "hexcode": "1F9F3", + "label": "luggage", + "order": 3952, + "tags": ["bag", "packing", "roller", "suitcase", "travel"], + "unicode": "ðŸ§ģ" + }, + { + "group": 5, + "hexcode": "231B", + "label": "hourglass done", + "order": 3953, + "tags": ["done", "hourglass", "sand", "time", "timer"], + "unicode": "⌛ïļ" + }, + { + "group": 5, + "hexcode": "23F3", + "label": "hourglass not done", + "order": 3954, + "tags": [ + "done", + "flowing", + "hourglass", + "hours", + "not", + "sand", + "timer", + "waiting", + "yolo" + ], + "unicode": "âģïļ" + }, + { + "group": 5, + "hexcode": "231A", + "label": "watch", + "order": 3955, + "tags": ["clock", "time"], + "unicode": "⌚ïļ" + }, + { + "group": 5, + "hexcode": "23F0", + "label": "alarm clock", + "order": 3956, + "tags": ["alarm", "clock", "hours", "hrs", "late", "time", "waiting"], + "unicode": "⏰ïļ" + }, + { + "group": 5, + "hexcode": "23F1", + "label": "stopwatch", + "order": 3958, + "tags": ["clock", "time"], + "unicode": "⏱ïļ" + }, + { + "group": 5, + "hexcode": "23F2", + "label": "timer clock", + "order": 3960, + "tags": ["clock", "timer"], + "unicode": "âēïļ" + }, + { + "group": 5, + "hexcode": "1F570", + "label": "mantelpiece clock", + "order": 3962, + "tags": ["clock", "mantelpiece", "time"], + "unicode": "🕰ïļ" + }, + { + "group": 5, + "hexcode": "1F55B", + "label": "twelve o’clock", + "order": 3963, + "tags": ["12", "12:00", "clock", "o’clock", "time", "twelve"], + "unicode": "🕛ïļ" + }, + { + "group": 5, + "hexcode": "1F567", + "label": "twelve-thirty", + "order": 3964, + "tags": ["12", "12:30", "30", "clock", "thirty", "time", "twelve"], + "unicode": "🕧ïļ" + }, + { + "group": 5, + "hexcode": "1F550", + "label": "one o’clock", + "order": 3965, + "tags": ["1", "1:00", "clock", "one", "o’clock", "time"], + "unicode": "🕐ïļ" + }, + { + "group": 5, + "hexcode": "1F55C", + "label": "one-thirty", + "order": 3966, + "tags": ["1", "1:30", "30", "clock", "one", "thirty", "time"], + "unicode": "🕜ïļ" + }, + { + "group": 5, + "hexcode": "1F551", + "label": "two o’clock", + "order": 3967, + "tags": ["2", "2:00", "clock", "o’clock", "time", "two"], + "unicode": "🕑ïļ" + }, + { + "group": 5, + "hexcode": "1F55D", + "label": "two-thirty", + "order": 3968, + "tags": ["2", "2:30", "30", "clock", "thirty", "time", "two"], + "unicode": "🕝ïļ" + }, + { + "group": 5, + "hexcode": "1F552", + "label": "three o’clock", + "order": 3969, + "tags": ["3", "3:00", "clock", "o’clock", "three", "time"], + "unicode": "🕒ïļ" + }, + { + "group": 5, + "hexcode": "1F55E", + "label": "three-thirty", + "order": 3970, + "tags": ["3", "30", "3:30", "clock", "thirty", "three", "time"], + "unicode": "🕞ïļ" + }, + { + "group": 5, + "hexcode": "1F553", + "label": "four o’clock", + "order": 3971, + "tags": ["4", "4:00", "clock", "four", "o’clock", "time"], + "unicode": "🕓ïļ" + }, + { + "group": 5, + "hexcode": "1F55F", + "label": "four-thirty", + "order": 3972, + "tags": ["30", "4", "4:30", "clock", "four", "thirty", "time"], + "unicode": "🕟ïļ" + }, + { + "group": 5, + "hexcode": "1F554", + "label": "five o’clock", + "order": 3973, + "tags": ["5", "5:00", "clock", "five", "o’clock", "time"], + "unicode": "🕔ïļ" + }, + { + "group": 5, + "hexcode": "1F560", + "label": "five-thirty", + "order": 3974, + "tags": ["30", "5", "5:30", "clock", "five", "thirty", "time"], + "unicode": "🕠ïļ" + }, + { + "group": 5, + "hexcode": "1F555", + "label": "six o’clock", + "order": 3975, + "tags": ["6", "6:00", "clock", "o’clock", "six", "time"], + "unicode": "🕕ïļ" + }, + { + "group": 5, + "hexcode": "1F561", + "label": "six-thirty", + "order": 3976, + "tags": ["30", "6", "6:30", "clock", "six", "thirty"], + "unicode": "ðŸ•Ąïļ" + }, + { + "group": 5, + "hexcode": "1F556", + "label": "seven o’clock", + "order": 3977, + "tags": ["0", "7", "7:00", "clock", "o’clock", "seven"], + "unicode": "🕖ïļ" + }, + { + "group": 5, + "hexcode": "1F562", + "label": "seven-thirty", + "order": 3978, + "tags": ["30", "7", "7:30", "clock", "seven", "thirty"], + "unicode": "ðŸ•Ēïļ" + }, + { + "group": 5, + "hexcode": "1F557", + "label": "eight o’clock", + "order": 3979, + "tags": ["8", "8:00", "clock", "eight", "o’clock", "time"], + "unicode": "🕗ïļ" + }, + { + "group": 5, + "hexcode": "1F563", + "label": "eight-thirty", + "order": 3980, + "tags": ["30", "8", "8:30", "clock", "eight", "thirty", "time"], + "unicode": "ðŸ•Ģïļ" + }, + { + "group": 5, + "hexcode": "1F558", + "label": "nine o’clock", + "order": 3981, + "tags": ["9", "9:00", "clock", "nine", "o’clock", "time"], + "unicode": "🕘ïļ" + }, + { + "group": 5, + "hexcode": "1F564", + "label": "nine-thirty", + "order": 3982, + "tags": ["30", "9", "9:30", "clock", "nine", "thirty", "time"], + "unicode": "ðŸ•Īïļ" + }, + { + "group": 5, + "hexcode": "1F559", + "label": "ten o’clock", + "order": 3983, + "tags": ["0", "10", "10:00", "clock", "o’clock", "ten"], + "unicode": "🕙ïļ" + }, + { + "group": 5, + "hexcode": "1F565", + "label": "ten-thirty", + "order": 3984, + "tags": ["10", "10:30", "30", "clock", "ten", "thirty", "time"], + "unicode": "ðŸ•Ĩïļ" + }, + { + "group": 5, + "hexcode": "1F55A", + "label": "eleven o’clock", + "order": 3985, + "tags": ["11", "11:00", "clock", "eleven", "o’clock", "time"], + "unicode": "🕚ïļ" + }, + { + "group": 5, + "hexcode": "1F566", + "label": "eleven-thirty", + "order": 3986, + "tags": ["11", "11:30", "30", "clock", "eleven", "thirty", "time"], + "unicode": "ðŸ•Ķïļ" + }, + { + "group": 5, + "hexcode": "1F311", + "label": "new moon", + "order": 3987, + "tags": ["dark", "moon", "new", "space"], + "unicode": "🌑" + }, + { + "group": 5, + "hexcode": "1F312", + "label": "waxing crescent moon", + "order": 3988, + "tags": ["crescent", "dreams", "moon", "space", "waxing"], + "unicode": "🌒" + }, + { + "group": 5, + "hexcode": "1F313", + "label": "first quarter moon", + "order": 3989, + "tags": ["first", "moon", "quarter", "space"], + "unicode": "🌓" + }, + { + "group": 5, + "hexcode": "1F314", + "label": "waxing gibbous moon", + "order": 3990, + "tags": ["gibbous", "moon", "space", "waxing"], + "unicode": "🌔" + }, + { + "group": 5, + "hexcode": "1F315", + "label": "full moon", + "order": 3991, + "tags": ["full", "moon", "space"], + "unicode": "🌕ïļ" + }, + { + "group": 5, + "hexcode": "1F316", + "label": "waning gibbous moon", + "order": 3992, + "tags": ["gibbous", "moon", "space", "waning"], + "unicode": "🌖" + }, + { + "group": 5, + "hexcode": "1F317", + "label": "last quarter moon", + "order": 3993, + "tags": ["last", "moon", "quarter", "space"], + "unicode": "🌗" + }, + { + "group": 5, + "hexcode": "1F318", + "label": "waning crescent moon", + "order": 3994, + "tags": ["crescent", "moon", "space", "waning"], + "unicode": "🌘" + }, + { + "group": 5, + "hexcode": "1F319", + "label": "crescent moon", + "order": 3995, + "tags": ["crescent", "moon", "ramadan", "space"], + "unicode": "🌙" + }, + { + "group": 5, + "hexcode": "1F31A", + "label": "new moon face", + "order": 3996, + "tags": ["face", "moon", "new", "space"], + "unicode": "🌚" + }, + { + "group": 5, + "hexcode": "1F31B", + "label": "first quarter moon face", + "order": 3997, + "tags": ["face", "first", "moon", "quarter", "space"], + "unicode": "🌛" + }, + { + "group": 5, + "hexcode": "1F31C", + "label": "last quarter moon face", + "order": 3998, + "tags": ["dreams", "face", "last", "moon", "quarter"], + "unicode": "🌜ïļ" + }, + { + "group": 5, + "hexcode": "1F321", + "label": "thermometer", + "order": 4000, + "tags": ["weather"], + "unicode": "ðŸŒĄïļ" + }, + { + "group": 5, + "hexcode": "2600", + "label": "sun", + "order": 4002, + "tags": ["bright", "rays", "space", "sunny", "weather"], + "unicode": "☀ïļ" + }, + { + "group": 5, + "hexcode": "1F31D", + "label": "full moon face", + "order": 4003, + "tags": ["bright", "face", "full", "moon"], + "unicode": "🌝" + }, + { + "group": 5, + "hexcode": "1F31E", + "label": "sun with face", + "order": 4004, + "tags": [ + "beach", + "bright", + "day", + "face", + "heat", + "shine", + "sun", + "sunny", + "sunshine", + "weather" + ], + "unicode": "🌞" + }, + { + "group": 5, + "hexcode": "1FA90", + "label": "ringed planet", + "order": 4005, + "tags": ["planet", "ringed", "saturn", "saturnine"], + "unicode": "🊐" + }, + { + "group": 5, + "hexcode": "2B50", + "label": "star", + "order": 4006, + "tags": ["astronomy", "medium", "stars", "white"], + "unicode": "⭐ïļ" + }, + { + "group": 5, + "hexcode": "1F31F", + "label": "glowing star", + "order": 4007, + "tags": [ + "glittery", + "glow", + "glowing", + "night", + "shining", + "sparkle", + "star", + "win" + ], + "unicode": "🌟" + }, + { + "group": 5, + "hexcode": "1F320", + "label": "shooting star", + "order": 4008, + "tags": ["falling", "night", "shooting", "space", "star"], + "unicode": "🌠" + }, + { + "group": 5, + "hexcode": "1F30C", + "label": "milky way", + "order": 4009, + "tags": ["milky", "space", "way"], + "unicode": "🌌" + }, + { + "group": 5, + "hexcode": "2601", + "label": "cloud", + "order": 4011, + "tags": ["weather"], + "unicode": "☁ïļ" + }, + { + "group": 5, + "hexcode": "26C5", + "label": "sun behind cloud", + "order": 4012, + "tags": ["behind", "cloud", "cloudy", "sun", "weather"], + "unicode": "⛅ïļ" + }, + { + "group": 5, + "hexcode": "26C8", + "label": "cloud with lightning and rain", + "order": 4014, + "tags": ["cloud", "lightning", "rain", "thunder", "thunderstorm"], + "unicode": "⛈ïļ" + }, + { + "group": 5, + "hexcode": "1F324", + "label": "sun behind small cloud", + "order": 4016, + "tags": ["behind", "cloud", "sun", "weather"], + "unicode": "ðŸŒĪïļ" + }, + { + "group": 5, + "hexcode": "1F325", + "label": "sun behind large cloud", + "order": 4018, + "tags": ["behind", "cloud", "sun", "weather"], + "unicode": "ðŸŒĨïļ" + }, + { + "group": 5, + "hexcode": "1F326", + "label": "sun behind rain cloud", + "order": 4020, + "tags": ["behind", "cloud", "rain", "sun", "weather"], + "unicode": "ðŸŒĶïļ" + }, + { + "group": 5, + "hexcode": "1F327", + "label": "cloud with rain", + "order": 4022, + "tags": ["cloud", "rain", "weather"], + "unicode": "🌧ïļ" + }, + { + "group": 5, + "hexcode": "1F328", + "label": "cloud with snow", + "order": 4024, + "tags": ["cloud", "cold", "snow", "weather"], + "unicode": "ðŸŒĻïļ" + }, + { + "group": 5, + "hexcode": "1F329", + "label": "cloud with lightning", + "order": 4026, + "tags": ["cloud", "lightning", "weather"], + "unicode": "ðŸŒĐïļ" + }, + { + "group": 5, + "hexcode": "1F32A", + "label": "tornado", + "order": 4028, + "tags": ["cloud", "weather", "whirlwind"], + "unicode": "🌊ïļ" + }, + { + "group": 5, + "hexcode": "1F32B", + "label": "fog", + "order": 4030, + "tags": ["cloud", "weather"], + "unicode": "ðŸŒŦïļ" + }, + { + "group": 5, + "hexcode": "1F32C", + "label": "wind face", + "order": 4032, + "tags": ["blow", "cloud", "face", "wind"], + "unicode": "🌎ïļ" + }, + { + "group": 5, + "hexcode": "1F300", + "label": "cyclone", + "order": 4033, + "tags": ["dizzy", "hurricane", "twister", "typhoon", "weather"], + "unicode": "🌀" + }, + { + "group": 5, + "hexcode": "1F308", + "label": "rainbow", + "order": 4034, + "tags": [ + "gay", + "genderqueer", + "glbt", + "glbtq", + "lesbian", + "lgbt", + "lgbtq", + "lgbtqia", + "nature", + "pride", + "queer", + "rain", + "trans", + "transgender", + "weather" + ], + "unicode": "🌈" + }, + { + "group": 5, + "hexcode": "1F302", + "label": "closed umbrella", + "order": 4035, + "tags": ["closed", "clothing", "rain", "umbrella"], + "unicode": "🌂" + }, + { + "group": 5, + "hexcode": "2602", + "label": "umbrella", + "order": 4037, + "tags": ["clothing", "rain"], + "unicode": "☂ïļ" + }, + { + "group": 5, + "hexcode": "2614", + "label": "umbrella with rain drops", + "order": 4038, + "tags": ["clothing", "drop", "drops", "rain", "umbrella", "weather"], + "unicode": "☔ïļ" + }, + { + "group": 5, + "hexcode": "26F1", + "label": "umbrella on ground", + "order": 4040, + "tags": ["ground", "rain", "sun", "umbrella"], + "unicode": "⛱ïļ" + }, + { + "group": 5, + "hexcode": "26A1", + "label": "high voltage", + "order": 4041, + "tags": [ + "danger", + "electric", + "electricity", + "high", + "lightning", + "nature", + "thunder", + "thunderbolt", + "voltage", + "zap" + ], + "unicode": "⚡ïļ" + }, + { + "group": 5, + "hexcode": "2744", + "label": "snowflake", + "order": 4043, + "tags": ["cold", "snow", "weather"], + "unicode": "❄ïļ" + }, + { + "group": 5, + "hexcode": "2603", + "label": "snowman", + "order": 4045, + "tags": ["cold", "man", "snow"], + "unicode": "☃ïļ" + }, + { + "group": 5, + "hexcode": "26C4", + "label": "snowman without snow", + "order": 4046, + "tags": ["cold", "man", "snow", "snowman"], + "unicode": "⛄ïļ" + }, + { + "group": 5, + "hexcode": "2604", + "label": "comet", + "order": 4048, + "tags": ["space"], + "unicode": "☄ïļ" + }, + { + "group": 5, + "hexcode": "1F525", + "label": "fire", + "order": 4049, + "tags": ["af", "burn", "flame", "hot", "lit", "litaf", "tool"], + "unicode": "ðŸ”Ĩ" + }, + { + "group": 5, + "hexcode": "1F4A7", + "label": "droplet", + "order": 4050, + "tags": [ + "cold", + "comic", + "drop", + "nature", + "sad", + "sweat", + "tear", + "water", + "weather" + ], + "unicode": "💧" + }, + { + "group": 5, + "hexcode": "1F30A", + "label": "water wave", + "order": 4051, + "tags": [ + "nature", + "ocean", + "surf", + "surfer", + "surfing", + "water", + "wave" + ], + "unicode": "🌊" + } + ] + }, + { + "name": "Objects", + "emojis": [ + { + "group": 7, + "hexcode": "1F453", + "label": "glasses", + "order": 4148, + "tags": ["clothing", "eye", "eyeglasses", "eyewear"], + "unicode": "👓ïļ" + }, + { + "group": 7, + "hexcode": "1F576", + "label": "sunglasses", + "order": 4150, + "tags": ["dark", "eye", "eyewear", "glasses"], + "unicode": "ðŸ•ķïļ" + }, + { + "group": 7, + "hexcode": "1F97D", + "label": "goggles", + "order": 4151, + "tags": ["dive", "eye", "protection", "scuba", "swimming", "welding"], + "unicode": "ðŸĨ―" + }, + { + "group": 7, + "hexcode": "1F97C", + "label": "lab coat", + "order": 4152, + "tags": [ + "clothes", + "coat", + "doctor", + "dr", + "experiment", + "jacket", + "lab", + "scientist", + "white" + ], + "unicode": "ðŸĨž" + }, + { + "group": 7, + "hexcode": "1F9BA", + "label": "safety vest", + "order": 4153, + "tags": ["emergency", "safety", "vest"], + "unicode": "ðŸĶš" + }, + { + "group": 7, + "hexcode": "1F454", + "label": "necktie", + "order": 4154, + "tags": ["clothing", "employed", "serious", "shirt", "tie"], + "unicode": "👔" + }, + { + "group": 7, + "hexcode": "1F455", + "label": "t-shirt", + "order": 4155, + "tags": [ + "blue", + "casual", + "clothes", + "clothing", + "collar", + "dressed", + "shirt", + "shopping", + "tshirt", + "weekend" + ], + "unicode": "👕" + }, + { + "group": 7, + "hexcode": "1F456", + "label": "jeans", + "order": 4156, + "tags": [ + "blue", + "casual", + "clothes", + "clothing", + "denim", + "dressed", + "pants", + "shopping", + "trousers", + "weekend" + ], + "unicode": "👖" + }, + { + "group": 7, + "hexcode": "1F9E3", + "label": "scarf", + "order": 4157, + "tags": ["bundle", "cold", "neck", "up"], + "unicode": "ðŸ§Ģ" + }, + { + "group": 7, + "hexcode": "1F9E4", + "label": "gloves", + "order": 4158, + "tags": ["hand"], + "unicode": "ðŸ§Ī" + }, + { + "group": 7, + "hexcode": "1F9E5", + "label": "coat", + "order": 4159, + "tags": ["brr", "bundle", "cold", "jacket", "up"], + "unicode": "ðŸ§Ĩ" + }, + { + "group": 7, + "hexcode": "1F9E6", + "label": "socks", + "order": 4160, + "tags": ["stocking"], + "unicode": "ðŸ§Ķ" + }, + { + "group": 7, + "hexcode": "1F457", + "label": "dress", + "order": 4161, + "tags": ["clothes", "clothing", "dressed", "fancy", "shopping"], + "unicode": "👗" + }, + { + "group": 7, + "hexcode": "1F458", + "label": "kimono", + "order": 4162, + "tags": ["clothing", "comfortable"], + "unicode": "👘" + }, + { + "group": 7, + "hexcode": "1F97B", + "label": "sari", + "order": 4163, + "tags": ["clothing", "dress"], + "unicode": "ðŸĨŧ" + }, + { + "group": 7, + "hexcode": "1FA71", + "label": "one-piece swimsuit", + "order": 4164, + "tags": ["bathing", "one-piece", "suit", "swimsuit"], + "unicode": "ðŸĐą" + }, + { + "group": 7, + "hexcode": "1FA72", + "label": "briefs", + "order": 4165, + "tags": ["bathing", "one-piece", "suit", "swimsuit", "underwear"], + "unicode": "ðŸĐē" + }, + { + "group": 7, + "hexcode": "1FA73", + "label": "shorts", + "order": 4166, + "tags": ["bathing", "pants", "suit", "swimsuit", "underwear"], + "unicode": "ðŸĐģ" + }, + { + "group": 7, + "hexcode": "1F459", + "label": "bikini", + "order": 4167, + "tags": ["bathing", "beach", "clothing", "pool", "suit", "swim"], + "unicode": "👙" + }, + { + "group": 7, + "hexcode": "1F45A", + "label": "woman’s clothes", + "order": 4168, + "tags": [ + "blouse", + "clothes", + "clothing", + "collar", + "dress", + "dressed", + "lady", + "shirt", + "shopping", + "woman", + "woman’s" + ], + "unicode": "👚" + }, + { + "group": 7, + "hexcode": "1FAAD", + "label": "folding hand fan", + "order": 4169, + "tags": [ + "clack", + "clap", + "cool", + "cooling", + "dance", + "fan", + "flirt", + "flutter", + "folding", + "hand", + "hot", + "shy" + ], + "unicode": "🊭" + }, + { + "group": 7, + "hexcode": "1F45B", + "label": "purse", + "order": 4170, + "tags": [ + "clothes", + "clothing", + "coin", + "dress", + "fancy", + "handbag", + "shopping" + ], + "unicode": "👛" + }, + { + "group": 7, + "hexcode": "1F45C", + "label": "handbag", + "order": 4171, + "tags": [ + "bag", + "clothes", + "clothing", + "dress", + "lady", + "purse", + "shopping" + ], + "unicode": "👜" + }, + { + "group": 7, + "hexcode": "1F45D", + "label": "clutch bag", + "order": 4172, + "tags": [ + "bag", + "clothes", + "clothing", + "clutch", + "dress", + "handbag", + "pouch", + "purse" + ], + "unicode": "👝" + }, + { + "group": 7, + "hexcode": "1F6CD", + "label": "shopping bags", + "order": 4174, + "tags": ["bag", "bags", "hotel", "shopping"], + "unicode": "🛍ïļ" + }, + { + "group": 7, + "hexcode": "1F392", + "label": "backpack", + "order": 4175, + "tags": [ + "backpacking", + "bag", + "bookbag", + "education", + "rucksack", + "satchel", + "school" + ], + "unicode": "🎒" + }, + { + "group": 7, + "hexcode": "1FA74", + "label": "thong sandal", + "order": 4176, + "tags": [ + "beach", + "flip", + "flop", + "sandal", + "sandals", + "shoe", + "thong", + "thongs", + "zōri" + ], + "unicode": "ðŸĐī" + }, + { + "group": 7, + "hexcode": "1F45E", + "label": "man’s shoe", + "order": 4177, + "tags": [ + "brown", + "clothes", + "clothing", + "feet", + "foot", + "kick", + "man", + "man’s", + "shoe", + "shoes", + "shopping" + ], + "unicode": "👞" + }, + { + "group": 7, + "hexcode": "1F45F", + "label": "running shoe", + "order": 4178, + "tags": [ + "athletic", + "clothes", + "clothing", + "fast", + "kick", + "running", + "shoe", + "shoes", + "shopping", + "sneaker", + "tennis" + ], + "unicode": "👟" + }, + { + "group": 7, + "hexcode": "1F97E", + "label": "hiking boot", + "order": 4179, + "tags": [ + "backpacking", + "boot", + "brown", + "camping", + "hiking", + "outdoors", + "shoe" + ], + "unicode": "ðŸĨū" + }, + { + "group": 7, + "hexcode": "1F97F", + "label": "flat shoe", + "order": 4180, + "tags": [ + "ballet", + "comfy", + "flat", + "flats", + "shoe", + "slip-on", + "slipper" + ], + "unicode": "ðŸĨŋ" + }, + { + "group": 7, + "hexcode": "1F460", + "label": "high-heeled shoe", + "order": 4181, + "tags": [ + "clothes", + "clothing", + "dress", + "fashion", + "heel", + "heels", + "high-heeled", + "shoe", + "shoes", + "shopping", + "stiletto", + "woman" + ], + "unicode": "👠" + }, + { + "group": 7, + "hexcode": "1F461", + "label": "woman’s sandal", + "order": 4182, + "tags": ["clothing", "sandal", "shoe", "woman", "woman’s"], + "unicode": "ðŸ‘Ą" + }, + { + "group": 7, + "hexcode": "1FA70", + "label": "ballet shoes", + "order": 4183, + "tags": ["ballet", "dance", "shoes"], + "unicode": "ðŸĐ°" + }, + { + "group": 7, + "hexcode": "1F462", + "label": "woman’s boot", + "order": 4184, + "tags": [ + "boot", + "clothes", + "clothing", + "dress", + "shoe", + "shoes", + "shopping", + "woman", + "woman’s" + ], + "unicode": "ðŸ‘Ē" + }, + { + "group": 7, + "hexcode": "1FAAE", + "label": "hair pick", + "order": 4185, + "tags": ["afro", "comb", "groom", "hair", "pick"], + "unicode": "ðŸŠŪ" + }, + { + "group": 7, + "hexcode": "1F451", + "label": "crown", + "order": 4186, + "tags": [ + "clothing", + "family", + "king", + "medieval", + "queen", + "royal", + "royalty", + "win" + ], + "unicode": "👑" + }, + { + "group": 7, + "hexcode": "1F452", + "label": "woman’s hat", + "order": 4187, + "tags": [ + "clothes", + "clothing", + "garden", + "hat", + "hats", + "party", + "woman", + "woman’s" + ], + "unicode": "👒" + }, + { + "group": 7, + "hexcode": "1F3A9", + "label": "top hat", + "order": 4188, + "tags": [ + "clothes", + "clothing", + "fancy", + "formal", + "hat", + "magic", + "top", + "tophat" + ], + "unicode": "ðŸŽĐ" + }, + { + "group": 7, + "hexcode": "1F393", + "label": "graduation cap", + "order": 4189, + "tags": [ + "cap", + "celebration", + "clothing", + "education", + "graduation", + "hat", + "scholar" + ], + "unicode": "🎓ïļ" + }, + { + "group": 7, + "hexcode": "1F9E2", + "label": "billed cap", + "order": 4190, + "tags": ["baseball", "bent", "billed", "cap", "dad", "hat"], + "unicode": "ðŸ§Ē" + }, + { + "group": 7, + "hexcode": "1FA96", + "label": "military helmet", + "order": 4191, + "tags": ["army", "helmet", "military", "soldier", "war", "warrior"], + "unicode": "🊖" + }, + { + "group": 7, + "hexcode": "26D1", + "label": "rescue worker’s helmet", + "order": 4193, + "tags": ["aid", "cross", "face", "hat", "helmet", "rescue", "worker’s"], + "unicode": "⛑ïļ" + }, + { + "group": 7, + "hexcode": "1F4FF", + "label": "prayer beads", + "order": 4194, + "tags": ["beads", "clothing", "necklace", "prayer", "religion"], + "unicode": "ðŸ“ŋ" + }, + { + "group": 7, + "hexcode": "1F484", + "label": "lipstick", + "order": 4195, + "tags": ["cosmetics", "date", "makeup"], + "unicode": "💄" + }, + { + "group": 7, + "hexcode": "1F48D", + "label": "ring", + "order": 4196, + "tags": [ + "diamond", + "engaged", + "engagement", + "married", + "romance", + "shiny", + "sparkling", + "wedding" + ], + "unicode": "💍" + }, + { + "group": 7, + "hexcode": "1F48E", + "label": "gem stone", + "order": 4197, + "tags": [ + "diamond", + "engagement", + "gem", + "jewel", + "money", + "romance", + "stone", + "wedding" + ], + "unicode": "💎" + }, + { + "group": 7, + "hexcode": "1F507", + "label": "muted speaker", + "order": 4198, + "tags": ["mute", "muted", "quiet", "silent", "sound", "speaker"], + "unicode": "🔇" + }, + { + "group": 7, + "hexcode": "1F508", + "label": "speaker low volume", + "order": 4199, + "tags": ["low", "soft", "sound", "speaker", "volume"], + "unicode": "🔈ïļ" + }, + { + "group": 7, + "hexcode": "1F509", + "label": "speaker medium volume", + "order": 4200, + "tags": ["medium", "sound", "speaker", "volume"], + "unicode": "🔉" + }, + { + "group": 7, + "hexcode": "1F50A", + "label": "speaker high volume", + "order": 4201, + "tags": ["high", "loud", "music", "sound", "speaker", "volume"], + "unicode": "🔊" + }, + { + "group": 7, + "hexcode": "1F4E2", + "label": "loudspeaker", + "order": 4202, + "tags": ["address", "communication", "loud", "public", "sound"], + "unicode": "ðŸ“Ē" + }, + { + "group": 7, + "hexcode": "1F4E3", + "label": "megaphone", + "order": 4203, + "tags": ["cheering", "sound"], + "unicode": "ðŸ“Ģ" + }, + { + "group": 7, + "hexcode": "1F4EF", + "label": "postal horn", + "order": 4204, + "tags": ["horn", "post", "postal"], + "unicode": "ðŸ“Ŋ" + }, + { + "group": 7, + "hexcode": "1F514", + "label": "bell", + "order": 4205, + "tags": ["break", "church", "sound"], + "unicode": "🔔" + }, + { + "group": 7, + "hexcode": "1F515", + "label": "bell with slash", + "order": 4206, + "tags": [ + "bell", + "forbidden", + "mute", + "no", + "not", + "prohibited", + "quiet", + "silent", + "slash", + "sound" + ], + "unicode": "🔕" + }, + { + "group": 7, + "hexcode": "1F3BC", + "label": "musical score", + "order": 4207, + "tags": ["music", "musical", "note", "score"], + "unicode": "🎞" + }, + { + "group": 7, + "hexcode": "1F3B5", + "label": "musical note", + "order": 4208, + "tags": ["music", "musical", "note", "sound"], + "unicode": "ðŸŽĩ" + }, + { + "group": 7, + "hexcode": "1F3B6", + "label": "musical notes", + "order": 4209, + "tags": ["music", "musical", "note", "notes", "sound"], + "unicode": "ðŸŽķ" + }, + { + "group": 7, + "hexcode": "1F399", + "label": "studio microphone", + "order": 4211, + "tags": ["mic", "microphone", "music", "studio"], + "unicode": "🎙ïļ" + }, + { + "group": 7, + "hexcode": "1F39A", + "label": "level slider", + "order": 4213, + "tags": ["level", "music", "slider"], + "unicode": "🎚ïļ" + }, + { + "group": 7, + "hexcode": "1F39B", + "label": "control knobs", + "order": 4215, + "tags": ["control", "knobs", "music"], + "unicode": "🎛ïļ" + }, + { + "group": 7, + "hexcode": "1F3A4", + "label": "microphone", + "order": 4216, + "tags": ["karaoke", "mic", "music", "sing", "sound"], + "unicode": "ðŸŽĪ" + }, + { + "group": 7, + "hexcode": "1F3A7", + "label": "headphone", + "order": 4217, + "tags": ["earbud", "sound"], + "unicode": "🎧ïļ" + }, + { + "group": 7, + "hexcode": "1F4FB", + "label": "radio", + "order": 4218, + "tags": ["entertainment", "tbt", "video"], + "unicode": "ðŸ“ŧïļ" + }, + { + "group": 7, + "hexcode": "1F3B7", + "label": "saxophone", + "order": 4219, + "tags": ["instrument", "music", "sax"], + "unicode": "🎷" + }, + { + "group": 7, + "hexcode": "1FA97", + "label": "accordion", + "order": 4220, + "tags": [ + "box", + "concertina", + "instrument", + "music", + "squeeze", + "squeezebox" + ], + "unicode": "🊗" + }, + { + "group": 7, + "hexcode": "1F3B8", + "label": "guitar", + "order": 4221, + "tags": ["instrument", "music", "strat"], + "unicode": "ðŸŽļ" + }, + { + "group": 7, + "hexcode": "1F3B9", + "label": "musical keyboard", + "order": 4222, + "tags": ["instrument", "keyboard", "music", "musical", "piano"], + "unicode": "ðŸŽđ" + }, + { + "group": 7, + "hexcode": "1F3BA", + "label": "trumpet", + "order": 4223, + "tags": ["instrument", "music"], + "unicode": "🎚" + }, + { + "group": 7, + "hexcode": "1F3BB", + "label": "violin", + "order": 4224, + "tags": ["instrument", "music"], + "unicode": "ðŸŽŧ" + }, + { + "group": 7, + "hexcode": "1FA95", + "label": "banjo", + "order": 4225, + "tags": ["music", "stringed"], + "unicode": "🊕" + }, + { + "group": 7, + "hexcode": "1F941", + "label": "drum", + "order": 4226, + "tags": ["drumsticks", "music"], + "unicode": "ðŸĨ" + }, + { + "group": 7, + "hexcode": "1FA98", + "label": "long drum", + "order": 4227, + "tags": ["beat", "conga", "drum", "instrument", "long", "rhythm"], + "unicode": "🊘" + }, + { + "group": 7, + "hexcode": "1FA87", + "label": "maracas", + "order": 4228, + "tags": [ + "cha", + "dance", + "instrument", + "music", + "party", + "percussion", + "rattle", + "shake", + "shaker" + ], + "unicode": "🊇" + }, + { + "group": 7, + "hexcode": "1FA88", + "label": "flute", + "order": 4229, + "tags": [ + "band", + "fife", + "flautist", + "instrument", + "marching", + "music", + "orchestra", + "piccolo", + "pipe", + "recorder", + "woodwind" + ], + "unicode": "🊈" + }, + { + "group": 7, + "hexcode": "1FA89", + "label": "harp", + "order": 4230, + "tags": ["cupid", "instrument", "love", "music", "orchestra"], + "unicode": "🊉" + }, + { + "group": 7, + "hexcode": "1F4F1", + "label": "mobile phone", + "order": 4231, + "tags": ["cell", "communication", "mobile", "phone", "telephone"], + "unicode": "ðŸ“ą" + }, + { + "group": 7, + "hexcode": "1F4F2", + "label": "mobile phone with arrow", + "order": 4232, + "tags": [ + "arrow", + "build", + "call", + "cell", + "communication", + "mobile", + "phone", + "receive", + "telephone" + ], + "unicode": "ðŸ“ē" + }, + { + "group": 7, + "hexcode": "260E", + "label": "telephone", + "order": 4234, + "tags": ["phone"], + "unicode": "☎ïļ" + }, + { + "group": 7, + "hexcode": "1F4DE", + "label": "telephone receiver", + "order": 4235, + "tags": ["communication", "phone", "receiver", "telephone", "voip"], + "unicode": "📞" + }, + { + "group": 7, + "hexcode": "1F4DF", + "label": "pager", + "order": 4236, + "tags": ["communication"], + "unicode": "📟ïļ" + }, + { + "group": 7, + "hexcode": "1F4E0", + "label": "fax machine", + "order": 4237, + "tags": ["communication", "fax", "machine"], + "unicode": "📠" + }, + { + "group": 7, + "hexcode": "1F50B", + "label": "battery", + "order": 4238, + "tags": ["battery"], + "unicode": "🔋" + }, + { + "group": 7, + "hexcode": "1FAAB", + "label": "low battery", + "order": 4239, + "tags": ["battery", "drained", "electronic", "energy", "low", "power"], + "unicode": "ðŸŠŦ" + }, + { + "group": 7, + "hexcode": "1F50C", + "label": "electric plug", + "order": 4240, + "tags": ["electric", "electricity", "plug"], + "unicode": "🔌" + }, + { + "group": 7, + "hexcode": "1F4BB", + "label": "laptop", + "order": 4241, + "tags": ["computer", "office", "pc", "personal"], + "unicode": "ðŸ’ŧïļ" + }, + { + "group": 7, + "hexcode": "1F5A5", + "label": "desktop computer", + "order": 4243, + "tags": ["computer", "desktop", "monitor"], + "unicode": "ðŸ–Ĩïļ" + }, + { + "group": 7, + "hexcode": "1F5A8", + "label": "printer", + "order": 4245, + "tags": ["computer"], + "unicode": "ðŸ–Ļïļ" + }, + { + "group": 7, + "hexcode": "2328", + "label": "keyboard", + "order": 4247, + "tags": ["computer"], + "unicode": "âŒĻïļ" + }, + { + "group": 7, + "hexcode": "1F5B1", + "label": "computer mouse", + "order": 4249, + "tags": ["computer", "mouse"], + "unicode": "ðŸ–ąïļ" + }, + { + "group": 7, + "hexcode": "1F5B2", + "label": "trackball", + "order": 4251, + "tags": ["computer"], + "unicode": "ðŸ–ēïļ" + }, + { + "group": 7, + "hexcode": "1F4BD", + "label": "computer disk", + "order": 4252, + "tags": ["computer", "disk", "minidisk", "optical"], + "unicode": "ðŸ’―" + }, + { + "group": 7, + "hexcode": "1F4BE", + "label": "floppy disk", + "order": 4253, + "tags": ["computer", "disk", "floppy"], + "unicode": "ðŸ’ū" + }, + { + "group": 7, + "hexcode": "1F4BF", + "label": "optical disk", + "order": 4254, + "tags": ["blu-ray", "cd", "computer", "disk", "dvd", "optical"], + "unicode": "ðŸ’ŋïļ" + }, + { + "group": 7, + "hexcode": "1F4C0", + "label": "dvd", + "order": 4255, + "tags": ["blu-ray", "cd", "computer", "disk", "optical"], + "unicode": "📀" + }, + { + "group": 7, + "hexcode": "1F9EE", + "label": "abacus", + "order": 4256, + "tags": ["calculation", "calculator"], + "unicode": "ðŸ§Ū" + }, + { + "group": 7, + "hexcode": "1F3A5", + "label": "movie camera", + "order": 4257, + "tags": [ + "bollywood", + "camera", + "cinema", + "film", + "hollywood", + "movie", + "record" + ], + "unicode": "ðŸŽĨ" + }, + { + "group": 7, + "hexcode": "1F39E", + "label": "film frames", + "order": 4259, + "tags": ["cinema", "film", "frames", "movie"], + "unicode": "🎞ïļ" + }, + { + "group": 7, + "hexcode": "1F4FD", + "label": "film projector", + "order": 4261, + "tags": ["cinema", "film", "movie", "projector", "video"], + "unicode": "ðŸ“―ïļ" + }, + { + "group": 7, + "hexcode": "1F3AC", + "label": "clapper board", + "order": 4262, + "tags": ["action", "board", "clapper", "movie"], + "unicode": "🎎ïļ" + }, + { + "group": 7, + "hexcode": "1F4FA", + "label": "television", + "order": 4263, + "tags": ["tv", "video"], + "unicode": "📚ïļ" + }, + { + "group": 7, + "hexcode": "1F4F7", + "label": "camera", + "order": 4264, + "tags": ["photo", "selfie", "snap", "tbt", "trip", "video"], + "unicode": "📷ïļ" + }, + { + "group": 7, + "hexcode": "1F4F8", + "label": "camera with flash", + "order": 4265, + "tags": ["camera", "flash", "video"], + "unicode": "ðŸ“ļ" + }, + { + "group": 7, + "hexcode": "1F4F9", + "label": "video camera", + "order": 4266, + "tags": ["camcorder", "camera", "tbt", "video"], + "unicode": "ðŸ“đïļ" + }, + { + "group": 7, + "hexcode": "1F4FC", + "label": "videocassette", + "order": 4267, + "tags": ["old", "school", "tape", "vcr", "vhs", "video"], + "unicode": "📞" + }, + { + "group": 7, + "hexcode": "1F50D", + "label": "magnifying glass tilted left", + "order": 4268, + "tags": [ + "glass", + "lab", + "left", + "left-pointing", + "magnifying", + "science", + "search", + "tilted", + "tool" + ], + "unicode": "🔍ïļ" + }, + { + "group": 7, + "hexcode": "1F50E", + "label": "magnifying glass tilted right", + "order": 4269, + "tags": [ + "contact", + "glass", + "lab", + "magnifying", + "right", + "right-pointing", + "science", + "search", + "tilted", + "tool" + ], + "unicode": "🔎" + }, + { + "group": 7, + "hexcode": "1F56F", + "label": "candle", + "order": 4271, + "tags": ["light"], + "unicode": "ðŸ•Ŋïļ" + }, + { + "group": 7, + "hexcode": "1F4A1", + "label": "light bulb", + "order": 4272, + "tags": ["bulb", "comic", "electric", "idea", "light"], + "unicode": "ðŸ’Ą" + }, + { + "group": 7, + "hexcode": "1F526", + "label": "flashlight", + "order": 4273, + "tags": ["electric", "light", "tool", "torch"], + "unicode": "ðŸ”Ķ" + }, + { + "group": 7, + "hexcode": "1F3EE", + "label": "red paper lantern", + "order": 4274, + "tags": ["bar", "lantern", "light", "paper", "red", "restaurant"], + "unicode": "ðŸŪ" + }, + { + "group": 7, + "hexcode": "1FA94", + "label": "diya lamp", + "order": 4275, + "tags": ["diya", "lamp", "light", "oil"], + "unicode": "🊔" + }, + { + "group": 7, + "hexcode": "1F4D4", + "label": "notebook with decorative cover", + "order": 4276, + "tags": [ + "book", + "cover", + "decorated", + "decorative", + "education", + "notebook", + "school", + "writing" + ], + "unicode": "📔" + }, + { + "group": 7, + "hexcode": "1F4D5", + "label": "closed book", + "order": 4277, + "tags": ["book", "closed", "education"], + "unicode": "📕" + }, + { + "group": 7, + "hexcode": "1F4D6", + "label": "open book", + "order": 4278, + "tags": [ + "book", + "education", + "fantasy", + "knowledge", + "library", + "novels", + "open", + "reading" + ], + "unicode": "📖" + }, + { + "group": 7, + "hexcode": "1F4D7", + "label": "green book", + "order": 4279, + "tags": ["book", "education", "fantasy", "green", "library", "reading"], + "unicode": "📗" + }, + { + "group": 7, + "hexcode": "1F4D8", + "label": "blue book", + "order": 4280, + "tags": ["blue", "book", "education", "fantasy", "library", "reading"], + "unicode": "📘" + }, + { + "group": 7, + "hexcode": "1F4D9", + "label": "orange book", + "order": 4281, + "tags": [ + "book", + "education", + "fantasy", + "library", + "orange", + "reading" + ], + "unicode": "📙" + }, + { + "group": 7, + "hexcode": "1F4DA", + "label": "books", + "order": 4282, + "tags": [ + "book", + "education", + "fantasy", + "knowledge", + "library", + "novels", + "reading", + "school", + "study" + ], + "unicode": "📚ïļ" + }, + { + "group": 7, + "hexcode": "1F4D3", + "label": "notebook", + "order": 4283, + "tags": ["notebook"], + "unicode": "📓" + }, + { + "group": 7, + "hexcode": "1F4D2", + "label": "ledger", + "order": 4284, + "tags": ["notebook"], + "unicode": "📒" + }, + { + "group": 7, + "hexcode": "1F4C3", + "label": "page with curl", + "order": 4285, + "tags": ["curl", "document", "page", "paper"], + "unicode": "📃" + }, + { + "group": 7, + "hexcode": "1F4DC", + "label": "scroll", + "order": 4286, + "tags": ["paper"], + "unicode": "📜" + }, + { + "group": 7, + "hexcode": "1F4C4", + "label": "page facing up", + "order": 4287, + "tags": ["document", "facing", "page", "paper", "up"], + "unicode": "📄" + }, + { + "group": 7, + "hexcode": "1F4F0", + "label": "newspaper", + "order": 4288, + "tags": ["communication", "news", "paper"], + "unicode": "📰" + }, + { + "group": 7, + "hexcode": "1F5DE", + "label": "rolled-up newspaper", + "order": 4290, + "tags": ["news", "newspaper", "paper", "rolled", "rolled-up"], + "unicode": "🗞ïļ" + }, + { + "group": 7, + "hexcode": "1F4D1", + "label": "bookmark tabs", + "order": 4291, + "tags": ["bookmark", "mark", "marker", "tabs"], + "unicode": "📑" + }, + { + "group": 7, + "hexcode": "1F516", + "label": "bookmark", + "order": 4292, + "tags": ["mark"], + "unicode": "🔖" + }, + { + "group": 7, + "hexcode": "1F3F7", + "label": "label", + "order": 4294, + "tags": ["tag"], + "unicode": "🏷ïļ" + }, + { + "group": 7, + "hexcode": "1F4B0", + "label": "money bag", + "order": 4295, + "tags": [ + "bag", + "bank", + "bet", + "billion", + "cash", + "cost", + "dollar", + "gold", + "million", + "money", + "moneybag", + "paid", + "paying", + "pot", + "rich", + "win" + ], + "unicode": "💰ïļ" + }, + { + "group": 7, + "hexcode": "1FA99", + "label": "coin", + "order": 4296, + "tags": [ + "dollar", + "euro", + "gold", + "metal", + "money", + "rich", + "silver", + "treasure" + ], + "unicode": "🊙" + }, + { + "group": 7, + "hexcode": "1F4B4", + "label": "yen banknote", + "order": 4297, + "tags": [ + "bank", + "banknote", + "bill", + "currency", + "money", + "note", + "yen" + ], + "unicode": "ðŸ’ī" + }, + { + "group": 7, + "hexcode": "1F4B5", + "label": "dollar banknote", + "order": 4298, + "tags": [ + "bank", + "banknote", + "bill", + "currency", + "dollar", + "money", + "note" + ], + "unicode": "ðŸ’ĩ" + }, + { + "group": 7, + "hexcode": "1F4B6", + "label": "euro banknote", + "order": 4299, + "tags": [ + "100", + "bank", + "banknote", + "bill", + "currency", + "euro", + "money", + "note", + "rich" + ], + "unicode": "ðŸ’ķ" + }, + { + "group": 7, + "hexcode": "1F4B7", + "label": "pound banknote", + "order": 4300, + "tags": [ + "bank", + "banknote", + "bill", + "billion", + "cash", + "currency", + "money", + "note", + "pound", + "pounds" + ], + "unicode": "💷" + }, + { + "group": 7, + "hexcode": "1F4B8", + "label": "money with wings", + "order": 4301, + "tags": [ + "bank", + "banknote", + "bill", + "billion", + "cash", + "dollar", + "fly", + "million", + "money", + "note", + "pay", + "wings" + ], + "unicode": "ðŸ’ļ" + }, + { + "group": 7, + "hexcode": "1F4B3", + "label": "credit card", + "order": 4302, + "tags": ["bank", "card", "cash", "charge", "credit", "money", "pay"], + "unicode": "ðŸ’ģïļ" + }, + { + "group": 7, + "hexcode": "1F9FE", + "label": "receipt", + "order": 4303, + "tags": ["accounting", "bookkeeping", "evidence", "invoice", "proof"], + "unicode": "ðŸ§ū" + }, + { + "group": 7, + "hexcode": "1F4B9", + "label": "chart increasing with yen", + "order": 4304, + "tags": [ + "bank", + "chart", + "currency", + "graph", + "growth", + "increasing", + "market", + "money", + "rise", + "trend", + "upward", + "yen" + ], + "unicode": "ðŸ’đ" + }, + { + "group": 7, + "hexcode": "2709", + "label": "envelope", + "order": 4306, + "tags": ["e-mail", "email", "letter"], + "unicode": "✉ïļ" + }, + { + "group": 7, + "hexcode": "1F4E7", + "label": "e-mail", + "order": 4307, + "tags": ["email", "letter", "mail"], + "unicode": "📧" + }, + { + "group": 7, + "hexcode": "1F4E8", + "label": "incoming envelope", + "order": 4308, + "tags": [ + "delivering", + "e-mail", + "email", + "envelope", + "incoming", + "letter", + "mail", + "receive", + "sent" + ], + "unicode": "ðŸ“Ļ" + }, + { + "group": 7, + "hexcode": "1F4E9", + "label": "envelope with arrow", + "order": 4309, + "tags": [ + "arrow", + "communication", + "down", + "e-mail", + "email", + "envelope", + "letter", + "mail", + "outgoing", + "send", + "sent" + ], + "unicode": "ðŸ“Đ" + }, + { + "group": 7, + "hexcode": "1F4E4", + "label": "outbox tray", + "order": 4310, + "tags": ["box", "email", "letter", "mail", "outbox", "sent", "tray"], + "unicode": "ðŸ“Īïļ" + }, + { + "group": 7, + "hexcode": "1F4E5", + "label": "inbox tray", + "order": 4311, + "tags": [ + "box", + "email", + "inbox", + "letter", + "mail", + "receive", + "tray", + "zero" + ], + "unicode": "ðŸ“Ĩïļ" + }, + { + "group": 7, + "hexcode": "1F4E6", + "label": "package", + "order": 4312, + "tags": ["box", "communication", "delivery", "parcel", "shipping"], + "unicode": "ðŸ“Ķïļ" + }, + { + "group": 7, + "hexcode": "1F4EB", + "label": "closed mailbox with raised flag", + "order": 4313, + "tags": [ + "closed", + "communication", + "flag", + "mail", + "mailbox", + "postbox", + "raised" + ], + "unicode": "ðŸ“Ŧïļ" + }, + { + "group": 7, + "hexcode": "1F4EA", + "label": "closed mailbox with lowered flag", + "order": 4314, + "tags": ["closed", "flag", "lowered", "mail", "mailbox", "postbox"], + "unicode": "📊ïļ" + }, + { + "group": 7, + "hexcode": "1F4EC", + "label": "open mailbox with raised flag", + "order": 4315, + "tags": ["flag", "mail", "mailbox", "open", "postbox", "raised"], + "unicode": "📎ïļ" + }, + { + "group": 7, + "hexcode": "1F4ED", + "label": "open mailbox with lowered flag", + "order": 4316, + "tags": ["flag", "lowered", "mail", "mailbox", "open", "postbox"], + "unicode": "📭ïļ" + }, + { + "group": 7, + "hexcode": "1F4EE", + "label": "postbox", + "order": 4317, + "tags": ["mail", "mailbox"], + "unicode": "ðŸ“Ū" + }, + { + "group": 7, + "hexcode": "1F5F3", + "label": "ballot box with ballot", + "order": 4319, + "tags": ["ballot", "box"], + "unicode": "ðŸ—ģïļ" + }, + { + "group": 7, + "hexcode": "270F", + "label": "pencil", + "order": 4321, + "tags": ["pencil"], + "unicode": "✏ïļ" + }, + { + "group": 7, + "hexcode": "2712", + "label": "black nib", + "order": 4323, + "tags": ["black", "nib", "pen"], + "unicode": "✒ïļ" + }, + { + "group": 7, + "hexcode": "1F58B", + "label": "fountain pen", + "order": 4325, + "tags": ["fountain", "pen"], + "unicode": "🖋ïļ" + }, + { + "group": 7, + "hexcode": "1F58A", + "label": "pen", + "order": 4327, + "tags": ["ballpoint"], + "unicode": "🖊ïļ" + }, + { + "group": 7, + "hexcode": "1F58C", + "label": "paintbrush", + "order": 4329, + "tags": ["painting"], + "unicode": "🖌ïļ" + }, + { + "group": 7, + "hexcode": "1F58D", + "label": "crayon", + "order": 4331, + "tags": ["crayon"], + "unicode": "🖍ïļ" + }, + { + "group": 7, + "hexcode": "1F4DD", + "label": "memo", + "order": 4332, + "tags": ["communication", "media", "notes", "pencil"], + "unicode": "📝" + }, + { + "group": 7, + "hexcode": "1F4BC", + "label": "briefcase", + "order": 4333, + "tags": ["office"], + "unicode": "💞" + }, + { + "group": 7, + "hexcode": "1F4C1", + "label": "file folder", + "order": 4334, + "tags": ["file", "folder"], + "unicode": "📁" + }, + { + "group": 7, + "hexcode": "1F4C2", + "label": "open file folder", + "order": 4335, + "tags": ["file", "folder", "open"], + "unicode": "📂" + }, + { + "group": 7, + "hexcode": "1F5C2", + "label": "card index dividers", + "order": 4337, + "tags": ["card", "dividers", "index"], + "unicode": "🗂ïļ" + }, + { + "group": 7, + "hexcode": "1F4C5", + "label": "calendar", + "order": 4338, + "tags": ["date"], + "unicode": "📅" + }, + { + "group": 7, + "hexcode": "1F4C6", + "label": "tear-off calendar", + "order": 4339, + "tags": ["calendar", "tear-off"], + "unicode": "📆" + }, + { + "group": 7, + "hexcode": "1F5D2", + "label": "spiral notepad", + "order": 4341, + "tags": ["note", "notepad", "pad", "spiral"], + "unicode": "🗒ïļ" + }, + { + "group": 7, + "hexcode": "1F5D3", + "label": "spiral calendar", + "order": 4343, + "tags": ["calendar", "pad", "spiral"], + "unicode": "🗓ïļ" + }, + { + "group": 7, + "hexcode": "1F4C7", + "label": "card index", + "order": 4344, + "tags": ["card", "index", "old", "rolodex", "school"], + "unicode": "📇" + }, + { + "group": 7, + "hexcode": "1F4C8", + "label": "chart increasing", + "order": 4345, + "tags": [ + "chart", + "data", + "graph", + "growth", + "increasing", + "right", + "trend", + "up", + "upward" + ], + "unicode": "📈" + }, + { + "group": 7, + "hexcode": "1F4C9", + "label": "chart decreasing", + "order": 4346, + "tags": [ + "chart", + "data", + "decreasing", + "down", + "downward", + "graph", + "negative", + "trend" + ], + "unicode": "📉" + }, + { + "group": 7, + "hexcode": "1F4CA", + "label": "bar chart", + "order": 4347, + "tags": ["bar", "chart", "data", "graph"], + "unicode": "📊" + }, + { + "group": 7, + "hexcode": "1F4CB", + "label": "clipboard", + "order": 4348, + "tags": ["do", "list", "notes"], + "unicode": "📋ïļ" + }, + { + "group": 7, + "hexcode": "1F4CC", + "label": "pushpin", + "order": 4349, + "tags": ["collage", "pin"], + "unicode": "📌" + }, + { + "group": 7, + "hexcode": "1F4CD", + "label": "round pushpin", + "order": 4350, + "tags": ["location", "map", "pin", "pushpin", "round"], + "unicode": "📍" + }, + { + "group": 7, + "hexcode": "1F4CE", + "label": "paperclip", + "order": 4351, + "tags": ["paperclip"], + "unicode": "📎" + }, + { + "group": 7, + "hexcode": "1F587", + "label": "linked paperclips", + "order": 4353, + "tags": ["link", "linked", "paperclip", "paperclips"], + "unicode": "🖇ïļ" + }, + { + "group": 7, + "hexcode": "1F4CF", + "label": "straight ruler", + "order": 4354, + "tags": ["angle", "edge", "math", "ruler", "straight", "straightedge"], + "unicode": "📏" + }, + { + "group": 7, + "hexcode": "1F4D0", + "label": "triangular ruler", + "order": 4355, + "tags": [ + "angle", + "math", + "rule", + "ruler", + "set", + "slide", + "triangle", + "triangular" + ], + "unicode": "📐" + }, + { + "group": 7, + "hexcode": "2702", + "label": "scissors", + "order": 4357, + "tags": ["cut", "cutting", "paper", "tool"], + "unicode": "✂ïļ" + }, + { + "group": 7, + "hexcode": "1F5C3", + "label": "card file box", + "order": 4359, + "tags": ["box", "card", "file"], + "unicode": "🗃ïļ" + }, + { + "group": 7, + "hexcode": "1F5C4", + "label": "file cabinet", + "order": 4361, + "tags": ["cabinet", "file", "filing", "paper"], + "unicode": "🗄ïļ" + }, + { + "group": 7, + "hexcode": "1F5D1", + "label": "wastebasket", + "order": 4363, + "tags": ["can", "garbage", "trash", "waste"], + "unicode": "🗑ïļ" + }, + { + "group": 7, + "hexcode": "1F512", + "label": "locked", + "order": 4364, + "tags": ["closed", "lock", "private"], + "unicode": "🔒ïļ" + }, + { + "group": 7, + "hexcode": "1F513", + "label": "unlocked", + "order": 4365, + "tags": ["cracked", "lock", "open", "unlock"], + "unicode": "🔓ïļ" + }, + { + "group": 7, + "hexcode": "1F50F", + "label": "locked with pen", + "order": 4366, + "tags": ["ink", "lock", "locked", "nib", "pen", "privacy"], + "unicode": "🔏" + }, + { + "group": 7, + "hexcode": "1F510", + "label": "locked with key", + "order": 4367, + "tags": ["bike", "closed", "key", "lock", "locked", "secure"], + "unicode": "🔐" + }, + { + "group": 7, + "hexcode": "1F511", + "label": "key", + "order": 4368, + "tags": ["keys", "lock", "major", "password", "unlock"], + "unicode": "🔑" + }, + { + "group": 7, + "hexcode": "1F5DD", + "label": "old key", + "order": 4370, + "tags": ["clue", "key", "lock", "old"], + "unicode": "🗝ïļ" + }, + { + "group": 7, + "hexcode": "1F528", + "label": "hammer", + "order": 4371, + "tags": ["home", "improvement", "repairs", "tool"], + "unicode": "ðŸ”Ļ" + }, + { + "group": 7, + "hexcode": "1FA93", + "label": "axe", + "order": 4372, + "tags": ["ax", "chop", "hatchet", "split", "wood"], + "unicode": "🊓" + }, + { + "group": 7, + "hexcode": "26CF", + "label": "pick", + "order": 4374, + "tags": ["hammer", "mining", "tool"], + "unicode": "⛏ïļ" + }, + { + "group": 7, + "hexcode": "2692", + "label": "hammer and pick", + "order": 4376, + "tags": ["hammer", "pick", "tool"], + "unicode": "⚒ïļ" + }, + { + "group": 7, + "hexcode": "1F6E0", + "label": "hammer and wrench", + "order": 4378, + "tags": ["hammer", "spanner", "tool", "wrench"], + "unicode": "🛠ïļ" + }, + { + "group": 7, + "hexcode": "1F5E1", + "label": "dagger", + "order": 4380, + "tags": ["knife", "weapon"], + "unicode": "ðŸ—Ąïļ" + }, + { + "group": 7, + "hexcode": "2694", + "label": "crossed swords", + "order": 4382, + "tags": ["crossed", "swords", "weapon"], + "unicode": "⚔ïļ" + }, + { + "group": 7, + "hexcode": "1F4A3", + "label": "bomb", + "order": 4383, + "tags": ["boom", "comic", "dangerous", "explosion", "hot"], + "unicode": "ðŸ’Ģïļ" + }, + { + "group": 7, + "hexcode": "1FA83", + "label": "boomerang", + "order": 4384, + "tags": ["rebound", "repercussion", "weapon"], + "unicode": "🊃" + }, + { + "group": 7, + "hexcode": "1F3F9", + "label": "bow and arrow", + "order": 4385, + "tags": [ + "archer", + "archery", + "arrow", + "bow", + "sagittarius", + "tool", + "weapon", + "zodiac" + ], + "unicode": "ðŸđ" + }, + { + "group": 7, + "hexcode": "1F6E1", + "label": "shield", + "order": 4387, + "tags": ["weapon"], + "unicode": "ðŸ›Ąïļ" + }, + { + "group": 7, + "hexcode": "1FA9A", + "label": "carpentry saw", + "order": 4388, + "tags": [ + "carpenter", + "carpentry", + "cut", + "lumber", + "saw", + "tool", + "trim" + ], + "unicode": "🊚" + }, + { + "group": 7, + "hexcode": "1F527", + "label": "wrench", + "order": 4389, + "tags": ["home", "improvement", "spanner", "tool"], + "unicode": "🔧" + }, + { + "group": 7, + "hexcode": "1FA9B", + "label": "screwdriver", + "order": 4390, + "tags": ["flathead", "handy", "screw", "tool"], + "unicode": "🊛" + }, + { + "group": 7, + "hexcode": "1F529", + "label": "nut and bolt", + "order": 4391, + "tags": ["bolt", "home", "improvement", "nut", "tool"], + "unicode": "ðŸ”Đ" + }, + { + "group": 7, + "hexcode": "2699", + "label": "gear", + "order": 4393, + "tags": ["cog", "cogwheel", "tool"], + "unicode": "⚙ïļ" + }, + { + "group": 7, + "hexcode": "1F5DC", + "label": "clamp", + "order": 4395, + "tags": ["compress", "tool", "vice"], + "unicode": "🗜ïļ" + }, + { + "group": 7, + "hexcode": "2696", + "label": "balance scale", + "order": 4397, + "tags": [ + "balance", + "justice", + "libra", + "scale", + "scales", + "tool", + "weight", + "zodiac" + ], + "unicode": "⚖ïļ" + }, + { + "group": 7, + "hexcode": "1F9AF", + "label": "white cane", + "order": 4398, + "tags": ["accessibility", "blind", "cane", "probing", "white"], + "unicode": "ðŸĶŊ" + }, + { + "group": 7, + "hexcode": "1F517", + "label": "link", + "order": 4399, + "tags": ["links"], + "unicode": "🔗" + }, + { + "group": 7, + "hexcode": "26D3-FE0F-200D-1F4A5", + "label": "broken chain", + "order": 4400, + "tags": ["break", "breaking", "broken", "chain", "cuffs", "freedom"], + "unicode": "⛓ïļâ€ðŸ’Ĩ" + }, + { + "group": 7, + "hexcode": "26D3", + "label": "chains", + "order": 4403, + "tags": ["chain"], + "unicode": "⛓ïļ" + }, + { + "group": 7, + "hexcode": "1FA9D", + "label": "hook", + "order": 4404, + "tags": ["catch", "crook", "curve", "ensnare", "point", "selling"], + "unicode": "🊝" + }, + { + "group": 7, + "hexcode": "1F9F0", + "label": "toolbox", + "order": 4405, + "tags": ["box", "chest", "mechanic", "red", "tool"], + "unicode": "🧰" + }, + { + "group": 7, + "hexcode": "1F9F2", + "label": "magnet", + "order": 4406, + "tags": [ + "attraction", + "horseshoe", + "magnetic", + "negative", + "positive", + "shape", + "u" + ], + "unicode": "ðŸ§ē" + }, + { + "group": 7, + "hexcode": "1FA9C", + "label": "ladder", + "order": 4407, + "tags": ["climb", "rung", "step"], + "unicode": "🊜" + }, + { + "group": 7, + "hexcode": "1FA8F", + "label": "shovel", + "order": 4408, + "tags": [ + "bury", + "dig", + "garden", + "hole", + "plant", + "scoop", + "snow", + "spade" + ], + "unicode": "🊏" + }, + { + "group": 7, + "hexcode": "2697", + "label": "alembic", + "order": 4410, + "tags": ["chemistry", "tool"], + "unicode": "⚗ïļ" + }, + { + "group": 7, + "hexcode": "1F9EA", + "label": "test tube", + "order": 4411, + "tags": [ + "chemist", + "chemistry", + "experiment", + "lab", + "science", + "test", + "tube" + ], + "unicode": "🧊" + }, + { + "group": 7, + "hexcode": "1F9EB", + "label": "petri dish", + "order": 4412, + "tags": [ + "bacteria", + "biologist", + "biology", + "culture", + "dish", + "lab", + "petri" + ], + "unicode": "ðŸ§Ŧ" + }, + { + "group": 7, + "hexcode": "1F9EC", + "label": "dna", + "order": 4413, + "tags": ["biologist", "evolution", "gene", "genetics", "life"], + "unicode": "🧎" + }, + { + "group": 7, + "hexcode": "1F52C", + "label": "microscope", + "order": 4414, + "tags": ["experiment", "lab", "science", "tool"], + "unicode": "🔎" + }, + { + "group": 7, + "hexcode": "1F52D", + "label": "telescope", + "order": 4415, + "tags": ["contact", "extraterrestrial", "science", "tool"], + "unicode": "🔭" + }, + { + "group": 7, + "hexcode": "1F4E1", + "label": "satellite antenna", + "order": 4416, + "tags": [ + "aliens", + "antenna", + "contact", + "dish", + "satellite", + "science" + ], + "unicode": "ðŸ“Ą" + }, + { + "group": 7, + "hexcode": "1F489", + "label": "syringe", + "order": 4417, + "tags": [ + "doctor", + "flu", + "medicine", + "needle", + "shot", + "sick", + "tool", + "vaccination" + ], + "unicode": "💉" + }, + { + "group": 7, + "hexcode": "1FA78", + "label": "drop of blood", + "order": 4418, + "tags": [ + "bleed", + "blood", + "donation", + "drop", + "injury", + "medicine", + "menstruation" + ], + "unicode": "ðŸĐļ" + }, + { + "group": 7, + "hexcode": "1F48A", + "label": "pill", + "order": 4419, + "tags": [ + "doctor", + "drugs", + "medicated", + "medicine", + "pills", + "sick", + "vitamin" + ], + "unicode": "💊" + }, + { + "group": 7, + "hexcode": "1FA79", + "label": "adhesive bandage", + "order": 4420, + "tags": ["adhesive", "bandage"], + "unicode": "ðŸĐđ" + }, + { + "group": 7, + "hexcode": "1FA7C", + "label": "crutch", + "order": 4421, + "tags": [ + "aid", + "cane", + "disability", + "help", + "hurt", + "injured", + "mobility", + "stick" + ], + "unicode": "ðŸĐž" + }, + { + "group": 7, + "hexcode": "1FA7A", + "label": "stethoscope", + "order": 4422, + "tags": ["doctor", "heart", "medicine"], + "unicode": "ðŸĐš" + }, + { + "group": 7, + "hexcode": "1FA7B", + "label": "x-ray", + "order": 4423, + "tags": ["bones", "doctor", "medical", "skeleton", "skull", "xray"], + "unicode": "ðŸĐŧ" + }, + { + "group": 7, + "hexcode": "1F6AA", + "label": "door", + "order": 4424, + "tags": ["back", "closet", "front"], + "unicode": "🚊" + }, + { + "group": 7, + "hexcode": "1F6D7", + "label": "elevator", + "order": 4425, + "tags": ["accessibility", "hoist", "lift"], + "unicode": "🛗" + }, + { + "group": 7, + "hexcode": "1FA9E", + "label": "mirror", + "order": 4426, + "tags": ["makeup", "reflection", "reflector", "speculum"], + "unicode": "🊞" + }, + { + "group": 7, + "hexcode": "1FA9F", + "label": "window", + "order": 4427, + "tags": ["air", "frame", "fresh", "opening", "transparent", "view"], + "unicode": "🊟" + }, + { + "group": 7, + "hexcode": "1F6CF", + "label": "bed", + "order": 4429, + "tags": ["hotel", "sleep"], + "unicode": "🛏ïļ" + }, + { + "group": 7, + "hexcode": "1F6CB", + "label": "couch and lamp", + "order": 4431, + "tags": ["couch", "hotel", "lamp"], + "unicode": "🛋ïļ" + }, + { + "group": 7, + "hexcode": "1FA91", + "label": "chair", + "order": 4432, + "tags": ["seat", "sit"], + "unicode": "🊑" + }, + { + "group": 7, + "hexcode": "1F6BD", + "label": "toilet", + "order": 4433, + "tags": ["bathroom"], + "unicode": "ðŸš―" + }, + { + "group": 7, + "hexcode": "1FAA0", + "label": "plunger", + "order": 4434, + "tags": ["cup", "force", "plumber", "poop", "suction", "toilet"], + "unicode": "🊠" + }, + { + "group": 7, + "hexcode": "1F6BF", + "label": "shower", + "order": 4435, + "tags": ["water"], + "unicode": "ðŸšŋ" + }, + { + "group": 7, + "hexcode": "1F6C1", + "label": "bathtub", + "order": 4436, + "tags": ["bath"], + "unicode": "🛁" + }, + { + "group": 7, + "hexcode": "1FAA4", + "label": "mouse trap", + "order": 4437, + "tags": [ + "bait", + "cheese", + "lure", + "mouse", + "mousetrap", + "snare", + "trap" + ], + "unicode": "ðŸŠĪ" + }, + { + "group": 7, + "hexcode": "1FA92", + "label": "razor", + "order": 4438, + "tags": ["sharp", "shave"], + "unicode": "🊒" + }, + { + "group": 7, + "hexcode": "1F9F4", + "label": "lotion bottle", + "order": 4439, + "tags": ["bottle", "lotion", "moisturizer", "shampoo", "sunscreen"], + "unicode": "ðŸ§ī" + }, + { + "group": 7, + "hexcode": "1F9F7", + "label": "safety pin", + "order": 4440, + "tags": ["diaper", "pin", "punk", "rock", "safety"], + "unicode": "🧷" + }, + { + "group": 7, + "hexcode": "1F9F9", + "label": "broom", + "order": 4441, + "tags": ["cleaning", "sweeping", "witch"], + "unicode": "ðŸ§đ" + }, + { + "group": 7, + "hexcode": "1F9FA", + "label": "basket", + "order": 4442, + "tags": ["farming", "laundry", "picnic"], + "unicode": "🧚" + }, + { + "group": 7, + "hexcode": "1F9FB", + "label": "roll of paper", + "order": 4443, + "tags": ["paper", "roll", "toilet", "towels"], + "unicode": "ðŸ§ŧ" + }, + { + "group": 7, + "hexcode": "1FAA3", + "label": "bucket", + "order": 4444, + "tags": ["cask", "pail", "vat"], + "unicode": "ðŸŠĢ" + }, + { + "group": 7, + "hexcode": "1F9FC", + "label": "soap", + "order": 4445, + "tags": ["bar", "bathing", "clean", "cleaning", "lather", "soapdish"], + "unicode": "🧞" + }, + { + "group": 7, + "hexcode": "1FAE7", + "label": "bubbles", + "order": 4446, + "tags": [ + "bubble", + "burp", + "clean", + "floating", + "pearl", + "soap", + "underwater" + ], + "unicode": "ðŸŦ§" + }, + { + "group": 7, + "hexcode": "1FAA5", + "label": "toothbrush", + "order": 4447, + "tags": [ + "bathroom", + "brush", + "clean", + "dental", + "hygiene", + "teeth", + "toiletry" + ], + "unicode": "ðŸŠĨ" + }, + { + "group": 7, + "hexcode": "1F9FD", + "label": "sponge", + "order": 4448, + "tags": ["absorbing", "cleaning", "porous", "soak"], + "unicode": "ðŸ§―" + }, + { + "group": 7, + "hexcode": "1F9EF", + "label": "fire extinguisher", + "order": 4449, + "tags": ["extinguish", "extinguisher", "fire", "quench"], + "unicode": "ðŸ§Ŋ" + }, + { + "group": 7, + "hexcode": "1F6D2", + "label": "shopping cart", + "order": 4450, + "tags": ["cart", "shopping", "trolley"], + "unicode": "🛒" + }, + { + "group": 7, + "hexcode": "1F6AC", + "label": "cigarette", + "order": 4451, + "tags": ["smoking"], + "unicode": "🚎" + }, + { + "group": 7, + "hexcode": "26B0", + "label": "coffin", + "order": 4453, + "tags": ["dead", "death", "vampire"], + "unicode": "⚰ïļ" + }, + { + "group": 7, + "hexcode": "1FAA6", + "label": "headstone", + "order": 4454, + "tags": [ + "cemetery", + "dead", + "grave", + "graveyard", + "memorial", + "rip", + "tomb", + "tombstone" + ], + "unicode": "ðŸŠĶ" + }, + { + "group": 7, + "hexcode": "26B1", + "label": "funeral urn", + "order": 4456, + "tags": ["ashes", "death", "funeral", "urn"], + "unicode": "⚱ïļ" + }, + { + "group": 7, + "hexcode": "1F9FF", + "label": "nazar amulet", + "order": 4457, + "tags": [ + "amulet", + "bead", + "blue", + "charm", + "evil-eye", + "nazar", + "talisman" + ], + "unicode": "ðŸ§ŋ" + }, + { + "group": 7, + "hexcode": "1FAAC", + "label": "hamsa", + "order": 4458, + "tags": [ + "amulet", + "fatima", + "fortune", + "guide", + "hand", + "mary", + "miriam", + "palm", + "protect", + "protection" + ], + "unicode": "🊎" + }, + { + "group": 7, + "hexcode": "1F5FF", + "label": "moai", + "order": 4459, + "tags": ["face", "moyai", "statue", "stoneface", "travel"], + "unicode": "ðŸ—ŋ" + }, + { + "group": 7, + "hexcode": "1FAA7", + "label": "placard", + "order": 4460, + "tags": [ + "card", + "demonstration", + "notice", + "picket", + "plaque", + "protest", + "sign" + ], + "unicode": "🊧" + }, + { + "group": 7, + "hexcode": "1FAAA", + "label": "identification card", + "order": 4461, + "tags": [ + "card", + "credentials", + "document", + "id", + "identification", + "license", + "security" + ], + "unicode": "🊊" + } + ] + }, + { + "name": "Symbols", + "emojis": [ + { + "group": 8, + "hexcode": "1F3E7", + "label": "ATM sign", + "order": 4462, + "tags": ["atm", "automated", "bank", "cash", "money", "sign", "teller"], + "unicode": "🏧" + }, + { + "group": 8, + "hexcode": "1F6AE", + "label": "litter in bin sign", + "order": 4463, + "tags": ["bin", "litter", "litterbin", "sign"], + "unicode": "ðŸšŪ" + }, + { + "group": 8, + "hexcode": "1F6B0", + "label": "potable water", + "order": 4464, + "tags": ["drinking", "potable", "water"], + "unicode": "🚰" + }, + { + "group": 8, + "hexcode": "267F", + "label": "wheelchair symbol", + "order": 4465, + "tags": ["access", "handicap", "symbol", "wheelchair"], + "unicode": "â™ŋïļ" + }, + { + "group": 8, + "hexcode": "1F6B9", + "label": "men’s room", + "order": 4466, + "tags": [ + "bathroom", + "lavatory", + "man", + "men’s", + "restroom", + "room", + "toilet", + "wc" + ], + "unicode": "ðŸšđïļ" + }, + { + "group": 8, + "hexcode": "1F6BA", + "label": "women’s room", + "order": 4467, + "tags": [ + "bathroom", + "lavatory", + "restroom", + "room", + "toilet", + "wc", + "woman", + "women’s" + ], + "unicode": "🚚ïļ" + }, + { + "group": 8, + "hexcode": "1F6BB", + "label": "restroom", + "order": 4468, + "tags": ["bathroom", "lavatory", "toilet", "wc"], + "unicode": "ðŸšŧ" + }, + { + "group": 8, + "hexcode": "1F6BC", + "label": "baby symbol", + "order": 4469, + "tags": ["baby", "changing", "symbol"], + "unicode": "🚞ïļ" + }, + { + "group": 8, + "hexcode": "1F6BE", + "label": "water closet", + "order": 4470, + "tags": [ + "bathroom", + "closet", + "lavatory", + "restroom", + "toilet", + "water", + "wc" + ], + "unicode": "ðŸšū" + }, + { + "group": 8, + "hexcode": "1F6C2", + "label": "passport control", + "order": 4471, + "tags": ["control", "passport"], + "unicode": "🛂" + }, + { + "group": 8, + "hexcode": "1F6C3", + "label": "customs", + "order": 4472, + "tags": ["packing"], + "unicode": "🛃" + }, + { + "group": 8, + "hexcode": "1F6C4", + "label": "baggage claim", + "order": 4473, + "tags": [ + "arrived", + "baggage", + "bags", + "case", + "checked", + "claim", + "journey", + "packing", + "plane", + "ready", + "travel", + "trip" + ], + "unicode": "🛄" + }, + { + "group": 8, + "hexcode": "1F6C5", + "label": "left luggage", + "order": 4474, + "tags": ["baggage", "case", "left", "locker", "luggage"], + "unicode": "🛅" + }, + { + "group": 8, + "hexcode": "26A0", + "label": "warning", + "order": 4476, + "tags": ["caution"], + "unicode": "⚠ïļ" + }, + { + "group": 8, + "hexcode": "1F6B8", + "label": "children crossing", + "order": 4477, + "tags": ["child", "children", "crossing", "pedestrian", "traffic"], + "unicode": "ðŸšļ" + }, + { + "group": 8, + "hexcode": "26D4", + "label": "no entry", + "order": 4478, + "tags": [ + "do", + "entry", + "fail", + "forbidden", + "no", + "not", + "pass", + "prohibited", + "traffic" + ], + "unicode": "⛔ïļ" + }, + { + "group": 8, + "hexcode": "1F6AB", + "label": "prohibited", + "order": 4479, + "tags": ["entry", "forbidden", "no", "not", "smoke"], + "unicode": "ðŸšŦ" + }, + { + "group": 8, + "hexcode": "1F6B3", + "label": "no bicycles", + "order": 4480, + "tags": [ + "bicycle", + "bicycles", + "bike", + "forbidden", + "no", + "not", + "prohibited" + ], + "unicode": "ðŸšģ" + }, + { + "group": 8, + "hexcode": "1F6AD", + "label": "no smoking", + "order": 4481, + "tags": ["forbidden", "no", "not", "prohibited", "smoke", "smoking"], + "unicode": "🚭ïļ" + }, + { + "group": 8, + "hexcode": "1F6AF", + "label": "no littering", + "order": 4482, + "tags": ["forbidden", "litter", "littering", "no", "not", "prohibited"], + "unicode": "ðŸšŊ" + }, + { + "group": 8, + "hexcode": "1F6B1", + "label": "non-potable water", + "order": 4483, + "tags": ["dry", "non-drinking", "non-potable", "prohibited", "water"], + "unicode": "ðŸšą" + }, + { + "group": 8, + "hexcode": "1F6B7", + "label": "no pedestrians", + "order": 4484, + "tags": [ + "forbidden", + "no", + "not", + "pedestrian", + "pedestrians", + "prohibited" + ], + "unicode": "🚷" + }, + { + "group": 8, + "hexcode": "1F4F5", + "label": "no mobile phones", + "order": 4485, + "tags": [ + "cell", + "forbidden", + "mobile", + "no", + "not", + "phone", + "phones", + "prohibited", + "telephone" + ], + "unicode": "ðŸ“ĩ" + }, + { + "group": 8, + "hexcode": "1F51E", + "label": "no one under eighteen", + "order": 4486, + "tags": [ + "18", + "age", + "eighteen", + "forbidden", + "no", + "not", + "one", + "prohibited", + "restriction", + "underage" + ], + "unicode": "🔞" + }, + { + "group": 8, + "hexcode": "2622", + "label": "radioactive", + "order": 4488, + "tags": ["sign"], + "unicode": "â˜Ēïļ" + }, + { + "group": 8, + "hexcode": "2623", + "label": "biohazard", + "order": 4490, + "tags": ["sign"], + "unicode": "â˜Ģïļ" + }, + { + "group": 8, + "hexcode": "2B06", + "label": "up arrow", + "order": 4492, + "tags": ["arrow", "cardinal", "direction", "north", "up"], + "unicode": "⮆ïļ" + }, + { + "group": 8, + "hexcode": "2197", + "label": "up-right arrow", + "order": 4494, + "tags": [ + "arrow", + "direction", + "intercardinal", + "northeast", + "up-right" + ], + "unicode": "↗ïļ" + }, + { + "group": 8, + "hexcode": "27A1", + "label": "right arrow", + "order": 4496, + "tags": ["arrow", "cardinal", "direction", "east", "right"], + "unicode": "➡ïļ" + }, + { + "group": 8, + "hexcode": "2198", + "label": "down-right arrow", + "order": 4498, + "tags": [ + "arrow", + "direction", + "down-right", + "intercardinal", + "southeast" + ], + "unicode": "↘ïļ" + }, + { + "group": 8, + "hexcode": "2B07", + "label": "down arrow", + "order": 4500, + "tags": ["arrow", "cardinal", "direction", "down", "south"], + "unicode": "⮇ïļ" + }, + { + "group": 8, + "hexcode": "2199", + "label": "down-left arrow", + "order": 4502, + "tags": [ + "arrow", + "direction", + "down-left", + "intercardinal", + "southwest" + ], + "unicode": "↙ïļ" + }, + { + "group": 8, + "hexcode": "2B05", + "label": "left arrow", + "order": 4504, + "tags": ["arrow", "cardinal", "direction", "left", "west"], + "unicode": "⮅ïļ" + }, + { + "group": 8, + "hexcode": "2196", + "label": "up-left arrow", + "order": 4506, + "tags": ["arrow", "direction", "intercardinal", "northwest", "up-left"], + "unicode": "↖ïļ" + }, + { + "group": 8, + "hexcode": "2195", + "label": "up-down arrow", + "order": 4508, + "tags": ["arrow", "up-down"], + "unicode": "↕ïļ" + }, + { + "group": 8, + "hexcode": "2194", + "label": "left-right arrow", + "order": 4510, + "tags": ["arrow", "left-right"], + "unicode": "↔ïļ" + }, + { + "group": 8, + "hexcode": "21A9", + "label": "right arrow curving left", + "order": 4512, + "tags": ["arrow", "curving", "left", "right"], + "unicode": "â†Đïļ" + }, + { + "group": 8, + "hexcode": "21AA", + "label": "left arrow curving right", + "order": 4514, + "tags": ["arrow", "curving", "left", "right"], + "unicode": "↩ïļ" + }, + { + "group": 8, + "hexcode": "2934", + "label": "right arrow curving up", + "order": 4516, + "tags": ["arrow", "curving", "right", "up"], + "unicode": "âĪīïļ" + }, + { + "group": 8, + "hexcode": "2935", + "label": "right arrow curving down", + "order": 4518, + "tags": ["arrow", "curving", "down", "right"], + "unicode": "âĪĩïļ" + }, + { + "group": 8, + "hexcode": "1F503", + "label": "clockwise vertical arrows", + "order": 4519, + "tags": [ + "arrow", + "arrows", + "clockwise", + "refresh", + "reload", + "vertical" + ], + "unicode": "🔃" + }, + { + "group": 8, + "hexcode": "1F504", + "label": "counterclockwise arrows button", + "order": 4520, + "tags": [ + "again", + "anticlockwise", + "arrow", + "arrows", + "button", + "counterclockwise", + "deja", + "refresh", + "rewindershins", + "vu" + ], + "unicode": "🔄" + }, + { + "group": 8, + "hexcode": "1F519", + "label": "BACK arrow", + "order": 4521, + "tags": ["arrow", "back"], + "unicode": "🔙" + }, + { + "group": 8, + "hexcode": "1F51A", + "label": "END arrow", + "order": 4522, + "tags": ["arrow", "end"], + "unicode": "🔚" + }, + { + "group": 8, + "hexcode": "1F51B", + "label": "ON! arrow", + "order": 4523, + "tags": ["arrow", "mark", "on!"], + "unicode": "🔛" + }, + { + "group": 8, + "hexcode": "1F51C", + "label": "SOON arrow", + "order": 4524, + "tags": ["arrow", "brb", "omw", "soon"], + "unicode": "🔜" + }, + { + "group": 8, + "hexcode": "1F51D", + "label": "TOP arrow", + "order": 4525, + "tags": ["arrow", "homie", "top", "up"], + "unicode": "🔝" + }, + { + "group": 8, + "hexcode": "1F6D0", + "label": "place of worship", + "order": 4526, + "tags": ["place", "pray", "religion", "worship"], + "unicode": "🛐" + }, + { + "group": 8, + "hexcode": "269B", + "label": "atom symbol", + "order": 4528, + "tags": ["atheist", "atom", "symbol"], + "unicode": "⚛ïļ" + }, + { + "group": 8, + "hexcode": "1F549", + "label": "om", + "order": 4530, + "tags": ["hindu", "religion"], + "unicode": "🕉ïļ" + }, + { + "group": 8, + "hexcode": "2721", + "label": "star of David", + "order": 4532, + "tags": ["david", "jew", "jewish", "judaism", "religion", "star"], + "unicode": "✡ïļ" + }, + { + "group": 8, + "hexcode": "2638", + "label": "wheel of dharma", + "order": 4534, + "tags": ["buddhist", "dharma", "religion", "wheel"], + "unicode": "â˜ļïļ" + }, + { + "group": 8, + "hexcode": "262F", + "label": "yin yang", + "order": 4536, + "tags": [ + "difficult", + "lives", + "religion", + "tao", + "taoist", + "total", + "yang", + "yin", + "yinyang" + ], + "unicode": "â˜Ŋïļ" + }, + { + "group": 8, + "hexcode": "271D", + "label": "latin cross", + "order": 4538, + "tags": ["christ", "christian", "cross", "latin", "religion"], + "unicode": "✝ïļ" + }, + { + "group": 8, + "hexcode": "2626", + "label": "orthodox cross", + "order": 4540, + "tags": ["christian", "cross", "orthodox", "religion"], + "unicode": "â˜Ķïļ" + }, + { + "group": 8, + "hexcode": "262A", + "label": "star and crescent", + "order": 4542, + "tags": ["crescent", "islam", "muslim", "ramadan", "religion", "star"], + "unicode": "☊ïļ" + }, + { + "group": 8, + "hexcode": "262E", + "label": "peace symbol", + "order": 4544, + "tags": ["healing", "peace", "peaceful", "symbol"], + "unicode": "â˜Ūïļ" + }, + { + "group": 8, + "hexcode": "1F54E", + "label": "menorah", + "order": 4545, + "tags": [ + "candelabrum", + "candlestick", + "hanukkah", + "jewish", + "judaism", + "religion" + ], + "unicode": "🕎" + }, + { + "group": 8, + "hexcode": "1F52F", + "label": "dotted six-pointed star", + "order": 4546, + "tags": [ + "dotted", + "fortune", + "jewish", + "judaism", + "six-pointed", + "star" + ], + "unicode": "ðŸ”Ŋ" + }, + { + "group": 8, + "hexcode": "1FAAF", + "label": "khanda", + "order": 4547, + "tags": [ + "deg", + "fateh", + "khalsa", + "religion", + "sikh", + "sikhism", + "tegh" + ], + "unicode": "ðŸŠŊ" + }, + { + "group": 8, + "hexcode": "2648", + "label": "Aries", + "order": 4548, + "tags": ["aries", "horoscope", "ram", "zodiac"], + "unicode": "♈ïļ" + }, + { + "group": 8, + "hexcode": "2649", + "label": "Taurus", + "order": 4549, + "tags": ["bull", "horoscope", "ox", "taurus", "zodiac"], + "unicode": "♉ïļ" + }, + { + "group": 8, + "hexcode": "264A", + "label": "Gemini", + "order": 4550, + "tags": ["gemini", "horoscope", "twins", "zodiac"], + "unicode": "♊ïļ" + }, + { + "group": 8, + "hexcode": "264B", + "label": "Cancer", + "order": 4551, + "tags": ["cancer", "crab", "horoscope", "zodiac"], + "unicode": "♋ïļ" + }, + { + "group": 8, + "hexcode": "264C", + "label": "Leo", + "order": 4552, + "tags": ["horoscope", "leo", "lion", "zodiac"], + "unicode": "♌ïļ" + }, + { + "group": 8, + "hexcode": "264D", + "label": "Virgo", + "order": 4553, + "tags": ["horoscope", "virgo", "zodiac"], + "unicode": "♍ïļ" + }, + { + "group": 8, + "hexcode": "264E", + "label": "Libra", + "order": 4554, + "tags": [ + "balance", + "horoscope", + "justice", + "libra", + "scales", + "zodiac" + ], + "unicode": "♎ïļ" + }, + { + "group": 8, + "hexcode": "264F", + "label": "Scorpio", + "order": 4555, + "tags": ["horoscope", "scorpio", "scorpion", "scorpius", "zodiac"], + "unicode": "♏ïļ" + }, + { + "group": 8, + "hexcode": "2650", + "label": "Sagittarius", + "order": 4556, + "tags": ["archer", "horoscope", "sagittarius", "zodiac"], + "unicode": "♐ïļ" + }, + { + "group": 8, + "hexcode": "2651", + "label": "Capricorn", + "order": 4557, + "tags": ["capricorn", "goat", "horoscope", "zodiac"], + "unicode": "♑ïļ" + }, + { + "group": 8, + "hexcode": "2652", + "label": "Aquarius", + "order": 4558, + "tags": ["aquarius", "bearer", "horoscope", "water", "zodiac"], + "unicode": "♒ïļ" + }, + { + "group": 8, + "hexcode": "2653", + "label": "Pisces", + "order": 4559, + "tags": ["fish", "horoscope", "pisces", "zodiac"], + "unicode": "♓ïļ" + }, + { + "group": 8, + "hexcode": "26CE", + "label": "Ophiuchus", + "order": 4560, + "tags": ["bearer", "ophiuchus", "serpent", "snake", "zodiac"], + "unicode": "⛎ïļ" + }, + { + "group": 8, + "hexcode": "1F500", + "label": "shuffle tracks button", + "order": 4561, + "tags": ["arrow", "button", "crossed", "shuffle", "tracks"], + "unicode": "🔀" + }, + { + "group": 8, + "hexcode": "1F501", + "label": "repeat button", + "order": 4562, + "tags": ["arrow", "button", "clockwise", "repeat"], + "unicode": "🔁" + }, + { + "group": 8, + "hexcode": "1F502", + "label": "repeat single button", + "order": 4563, + "tags": ["arrow", "button", "clockwise", "once", "repeat", "single"], + "unicode": "🔂" + }, + { + "group": 8, + "hexcode": "25B6", + "label": "play button", + "order": 4565, + "tags": ["arrow", "button", "play", "right", "triangle"], + "unicode": "â–ķïļ" + }, + { + "group": 8, + "hexcode": "23E9", + "label": "fast-forward button", + "order": 4566, + "tags": [ + "arrow", + "button", + "double", + "fast", + "fast-forward", + "forward" + ], + "unicode": "âĐïļ" + }, + { + "group": 8, + "hexcode": "23ED", + "label": "next track button", + "order": 4568, + "tags": ["arrow", "button", "next", "scene", "track", "triangle"], + "unicode": "⏭ïļ" + }, + { + "group": 8, + "hexcode": "23EF", + "label": "play or pause button", + "order": 4570, + "tags": ["arrow", "button", "pause", "play", "right", "triangle"], + "unicode": "âŊïļ" + }, + { + "group": 8, + "hexcode": "25C0", + "label": "reverse button", + "order": 4572, + "tags": ["arrow", "button", "left", "reverse", "triangle"], + "unicode": "◀ïļ" + }, + { + "group": 8, + "hexcode": "23EA", + "label": "fast reverse button", + "order": 4573, + "tags": ["arrow", "button", "double", "fast", "reverse", "rewind"], + "unicode": "⏊ïļ" + }, + { + "group": 8, + "hexcode": "23EE", + "label": "last track button", + "order": 4575, + "tags": [ + "arrow", + "button", + "last", + "previous", + "scene", + "track", + "triangle" + ], + "unicode": "âŪïļ" + }, + { + "group": 8, + "hexcode": "1F53C", + "label": "upwards button", + "order": 4576, + "tags": ["arrow", "button", "red", "up", "upwards"], + "unicode": "🔞" + }, + { + "group": 8, + "hexcode": "23EB", + "label": "fast up button", + "order": 4577, + "tags": ["arrow", "button", "double", "fast", "up"], + "unicode": "âŦïļ" + }, + { + "group": 8, + "hexcode": "1F53D", + "label": "downwards button", + "order": 4578, + "tags": ["arrow", "button", "down", "downwards", "red"], + "unicode": "ðŸ”―" + }, + { + "group": 8, + "hexcode": "23EC", + "label": "fast down button", + "order": 4579, + "tags": ["arrow", "button", "double", "down", "fast"], + "unicode": "⏎ïļ" + }, + { + "group": 8, + "hexcode": "23F8", + "label": "pause button", + "order": 4581, + "tags": ["bar", "button", "double", "pause", "vertical"], + "unicode": "âļïļ" + }, + { + "group": 8, + "hexcode": "23F9", + "label": "stop button", + "order": 4583, + "tags": ["button", "square", "stop"], + "unicode": "âđïļ" + }, + { + "group": 8, + "hexcode": "23FA", + "label": "record button", + "order": 4585, + "tags": ["button", "circle", "record"], + "unicode": "⏚ïļ" + }, + { + "group": 8, + "hexcode": "23CF", + "label": "eject button", + "order": 4587, + "tags": ["button", "eject"], + "unicode": "⏏ïļ" + }, + { + "group": 8, + "hexcode": "1F3A6", + "label": "cinema", + "order": 4588, + "tags": ["camera", "film", "movie"], + "unicode": "ðŸŽĶ" + }, + { + "group": 8, + "hexcode": "1F505", + "label": "dim button", + "order": 4589, + "tags": ["brightness", "button", "dim", "low"], + "unicode": "🔅" + }, + { + "group": 8, + "hexcode": "1F506", + "label": "bright button", + "order": 4590, + "tags": ["bright", "brightness", "button", "light"], + "unicode": "🔆" + }, + { + "group": 8, + "hexcode": "1F4F6", + "label": "antenna bars", + "order": 4591, + "tags": [ + "antenna", + "bar", + "bars", + "cell", + "communication", + "mobile", + "phone", + "signal", + "telephone" + ], + "unicode": "ðŸ“ķ" + }, + { + "group": 8, + "hexcode": "1F6DC", + "label": "wireless", + "order": 4592, + "tags": [ + "broadband", + "computer", + "connectivity", + "hotspot", + "internet", + "network", + "router", + "smartphone", + "wi-fi", + "wifi", + "wlan" + ], + "unicode": "🛜" + }, + { + "group": 8, + "hexcode": "1F4F3", + "label": "vibration mode", + "order": 4593, + "tags": [ + "cell", + "communication", + "mobile", + "mode", + "phone", + "telephone", + "vibration" + ], + "unicode": "ðŸ“ģ" + }, + { + "group": 8, + "hexcode": "1F4F4", + "label": "mobile phone off", + "order": 4594, + "tags": ["cell", "mobile", "off", "phone", "telephone"], + "unicode": "ðŸ“ī" + }, + { + "group": 8, + "hexcode": "2640", + "label": "female sign", + "order": 4596, + "tags": ["female", "sign", "woman"], + "unicode": "♀ïļ" + }, + { + "group": 8, + "hexcode": "2642", + "label": "male sign", + "order": 4598, + "tags": ["male", "man", "sign"], + "unicode": "♂ïļ" + }, + { + "group": 8, + "hexcode": "26A7", + "label": "transgender symbol", + "order": 4600, + "tags": ["symbol", "transgender"], + "unicode": "⚧ïļ" + }, + { + "group": 8, + "hexcode": "2716", + "label": "multiply", + "order": 4602, + "tags": ["cancel", "multiplication", "sign", "x", "×"], + "unicode": "✖ïļ" + }, + { + "group": 8, + "hexcode": "2795", + "label": "plus", + "order": 4603, + "tags": ["+"], + "unicode": "➕ïļ" + }, + { + "group": 8, + "hexcode": "2796", + "label": "minus", + "order": 4604, + "tags": ["-", "heavy", "math", "sign", "−"], + "unicode": "➖ïļ" + }, + { + "group": 8, + "hexcode": "2797", + "label": "divide", + "order": 4605, + "tags": ["division", "heavy", "math", "sign", "÷"], + "unicode": "➗ïļ" + }, + { + "group": 8, + "hexcode": "1F7F0", + "label": "heavy equals sign", + "order": 4606, + "tags": [ + "answer", + "equal", + "equality", + "equals", + "heavy", + "math", + "sign" + ], + "unicode": "🟰" + }, + { + "group": 8, + "hexcode": "267E", + "label": "infinity", + "order": 4608, + "tags": ["forever", "unbounded", "universal"], + "unicode": "â™ūïļ" + }, + { + "group": 8, + "hexcode": "203C", + "label": "double exclamation mark", + "order": 4610, + "tags": [ + "!", + "!!", + "bangbang", + "double", + "exclamation", + "mark", + "punctuation" + ], + "unicode": "‾ïļ" + }, + { + "group": 8, + "hexcode": "2049", + "label": "exclamation question mark", + "order": 4612, + "tags": [ + "!", + "!?", + "?", + "exclamation", + "interrobang", + "mark", + "punctuation", + "question" + ], + "unicode": "⁉ïļ" + }, + { + "group": 8, + "hexcode": "2753", + "label": "red question mark", + "order": 4613, + "tags": ["?", "mark", "punctuation", "question", "red"], + "unicode": "❓ïļ" + }, + { + "group": 8, + "hexcode": "2754", + "label": "white question mark", + "order": 4614, + "tags": ["?", "mark", "outlined", "punctuation", "question", "white"], + "unicode": "❔ïļ" + }, + { + "group": 8, + "hexcode": "2755", + "label": "white exclamation mark", + "order": 4615, + "tags": [ + "!", + "exclamation", + "mark", + "outlined", + "punctuation", + "white" + ], + "unicode": "❕ïļ" + }, + { + "group": 8, + "hexcode": "2757", + "label": "red exclamation mark", + "order": 4616, + "tags": ["!", "exclamation", "mark", "punctuation", "red"], + "unicode": "❗ïļ" + }, + { + "group": 8, + "hexcode": "3030", + "label": "wavy dash", + "order": 4618, + "tags": ["dash", "punctuation", "wavy"], + "unicode": "〰ïļ" + }, + { + "group": 8, + "hexcode": "1F4B1", + "label": "currency exchange", + "order": 4619, + "tags": ["bank", "currency", "exchange", "money"], + "unicode": "ðŸ’ą" + }, + { + "group": 8, + "hexcode": "1F4B2", + "label": "heavy dollar sign", + "order": 4620, + "tags": [ + "billion", + "cash", + "charge", + "currency", + "dollar", + "heavy", + "million", + "money", + "pay", + "sign" + ], + "unicode": "ðŸ’ē" + }, + { + "group": 8, + "hexcode": "2695", + "label": "medical symbol", + "order": 4622, + "tags": ["aesculapius", "medical", "medicine", "staff", "symbol"], + "unicode": "⚕ïļ" + }, + { + "group": 8, + "hexcode": "267B", + "label": "recycling symbol", + "order": 4624, + "tags": ["recycle", "recycling", "symbol"], + "unicode": "â™ŧïļ" + }, + { + "group": 8, + "hexcode": "269C", + "label": "fleur-de-lis", + "order": 4626, + "tags": ["knights"], + "unicode": "⚜ïļ" + }, + { + "group": 8, + "hexcode": "1F531", + "label": "trident emblem", + "order": 4627, + "tags": ["anchor", "emblem", "poseidon", "ship", "tool", "trident"], + "unicode": "ðŸ”ą" + }, + { + "group": 8, + "hexcode": "1F4DB", + "label": "name badge", + "order": 4628, + "tags": ["badge", "name"], + "unicode": "📛" + }, + { + "group": 8, + "hexcode": "1F530", + "label": "Japanese symbol for beginner", + "order": 4629, + "tags": [ + "beginner", + "chevron", + "green", + "japanese", + "leaf", + "symbol", + "tool", + "yellow" + ], + "unicode": "🔰" + }, + { + "group": 8, + "hexcode": "2B55", + "label": "hollow red circle", + "order": 4630, + "tags": ["circle", "heavy", "hollow", "large", "o", "red"], + "unicode": "⭕ïļ" + }, + { + "group": 8, + "hexcode": "2705", + "label": "check mark button", + "order": 4631, + "tags": [ + "button", + "check", + "checked", + "checkmark", + "complete", + "completed", + "done", + "fixed", + "mark", + "tick", + "✓" + ], + "unicode": "✅ïļ" + }, + { + "group": 8, + "hexcode": "2611", + "label": "check box with check", + "order": 4633, + "tags": [ + "ballot", + "box", + "check", + "checked", + "done", + "off", + "tick", + "✓" + ], + "unicode": "☑ïļ" + }, + { + "group": 8, + "hexcode": "2714", + "label": "check mark", + "order": 4635, + "tags": [ + "check", + "checked", + "checkmark", + "done", + "heavy", + "mark", + "tick", + "✓" + ], + "unicode": "✔ïļ" + }, + { + "group": 8, + "hexcode": "274C", + "label": "cross mark", + "order": 4636, + "tags": [ + "cancel", + "cross", + "mark", + "multiplication", + "multiply", + "x", + "×" + ], + "unicode": "❌ïļ" + }, + { + "group": 8, + "hexcode": "274E", + "label": "cross mark button", + "order": 4637, + "tags": [ + "button", + "cross", + "mark", + "multiplication", + "multiply", + "square", + "x", + "×" + ], + "unicode": "❎ïļ" + }, + { + "group": 8, + "hexcode": "27B0", + "label": "curly loop", + "order": 4638, + "tags": ["curl", "curly", "loop"], + "unicode": "➰ïļ" + }, + { + "group": 8, + "hexcode": "27BF", + "label": "double curly loop", + "order": 4639, + "tags": ["curl", "curly", "double", "loop"], + "unicode": "âžŋïļ" + }, + { + "group": 8, + "hexcode": "303D", + "label": "part alternation mark", + "order": 4641, + "tags": ["alternation", "mark", "part"], + "unicode": "ã€―ïļ" + }, + { + "group": 8, + "hexcode": "2733", + "label": "eight-spoked asterisk", + "order": 4643, + "tags": ["*", "asterisk", "eight-spoked"], + "unicode": "âœģïļ" + }, + { + "group": 8, + "hexcode": "2734", + "label": "eight-pointed star", + "order": 4645, + "tags": ["*", "eight-pointed", "star"], + "unicode": "âœīïļ" + }, + { + "group": 8, + "hexcode": "2747", + "label": "sparkle", + "order": 4647, + "tags": ["*"], + "unicode": "❇ïļ" + }, + { + "group": 8, + "hexcode": "00A9", + "label": "copyright", + "order": 4649, + "tags": ["c"], + "unicode": "ÂĐïļ" + }, + { + "group": 8, + "hexcode": "00AE", + "label": "registered", + "order": 4651, + "tags": ["r"], + "unicode": "ÂŪïļ" + }, + { + "group": 8, + "hexcode": "2122", + "label": "trade mark", + "order": 4653, + "tags": ["mark", "tm", "trade", "trademark"], + "unicode": "â„Ēïļ" + }, + { + "group": 8, + "hexcode": "1FADF", + "label": "splatter", + "order": 4654, + "tags": [ + "drip", + "holi", + "ink", + "liquid", + "mess", + "paint", + "spill", + "stain" + ], + "unicode": "ðŸŦŸ" + }, + { + "group": 8, + "hexcode": "0023-FE0F-20E3", + "label": "keycap: #", + "order": 4655, + "tags": ["keycap"], + "unicode": "#ïļâƒĢ" + }, + { + "group": 8, + "hexcode": "002A-FE0F-20E3", + "label": "keycap: *", + "order": 4657, + "tags": ["keycap"], + "unicode": "*ïļâƒĢ" + }, + { + "group": 8, + "hexcode": "0030-FE0F-20E3", + "label": "keycap: 0", + "order": 4659, + "tags": ["keycap"], + "unicode": "0ïļâƒĢ" + }, + { + "group": 8, + "hexcode": "0031-FE0F-20E3", + "label": "keycap: 1", + "order": 4661, + "tags": ["keycap"], + "unicode": "1ïļâƒĢ" + }, + { + "group": 8, + "hexcode": "0032-FE0F-20E3", + "label": "keycap: 2", + "order": 4663, + "tags": ["keycap"], + "unicode": "2ïļâƒĢ" + }, + { + "group": 8, + "hexcode": "0033-FE0F-20E3", + "label": "keycap: 3", + "order": 4665, + "tags": ["keycap"], + "unicode": "3ïļâƒĢ" + }, + { + "group": 8, + "hexcode": "0034-FE0F-20E3", + "label": "keycap: 4", + "order": 4667, + "tags": ["keycap"], + "unicode": "4ïļâƒĢ" + }, + { + "group": 8, + "hexcode": "0035-FE0F-20E3", + "label": "keycap: 5", + "order": 4669, + "tags": ["keycap"], + "unicode": "5ïļâƒĢ" + }, + { + "group": 8, + "hexcode": "0036-FE0F-20E3", + "label": "keycap: 6", + "order": 4671, + "tags": ["keycap"], + "unicode": "6ïļâƒĢ" + }, + { + "group": 8, + "hexcode": "0037-FE0F-20E3", + "label": "keycap: 7", + "order": 4673, + "tags": ["keycap"], + "unicode": "7ïļâƒĢ" + }, + { + "group": 8, + "hexcode": "0038-FE0F-20E3", + "label": "keycap: 8", + "order": 4675, + "tags": ["keycap"], + "unicode": "8ïļâƒĢ" + }, + { + "group": 8, + "hexcode": "0039-FE0F-20E3", + "label": "keycap: 9", + "order": 4677, + "tags": ["keycap"], + "unicode": "9ïļâƒĢ" + }, + { + "group": 8, + "hexcode": "1F51F", + "label": "keycap: 10", + "order": 4679, + "tags": ["keycap"], + "unicode": "🔟" + }, + { + "group": 8, + "hexcode": "1F520", + "label": "input latin uppercase", + "order": 4680, + "tags": ["abcd", "input", "latin", "letters", "uppercase"], + "unicode": "🔠" + }, + { + "group": 8, + "hexcode": "1F521", + "label": "input latin lowercase", + "order": 4681, + "tags": ["abcd", "input", "latin", "letters", "lowercase"], + "unicode": "ðŸ”Ą" + }, + { + "group": 8, + "hexcode": "1F522", + "label": "input numbers", + "order": 4682, + "tags": ["1234", "input", "numbers"], + "unicode": "ðŸ”Ē" + }, + { + "group": 8, + "hexcode": "1F523", + "label": "input symbols", + "order": 4683, + "tags": ["%", "&", "input", "symbols", "♩", "〒"], + "unicode": "ðŸ”Ģ" + }, + { + "group": 8, + "hexcode": "1F524", + "label": "input latin letters", + "order": 4684, + "tags": ["abc", "alphabet", "input", "latin", "letters"], + "unicode": "ðŸ”Ī" + }, + { + "group": 8, + "hexcode": "1F170", + "label": "A button (blood type)", + "order": 4686, + "tags": ["blood", "button", "type"], + "unicode": "🅰ïļ" + }, + { + "group": 8, + "hexcode": "1F18E", + "label": "AB button (blood type)", + "order": 4687, + "tags": ["ab", "blood", "button", "type"], + "unicode": "🆎" + }, + { + "group": 8, + "hexcode": "1F171", + "label": "B button (blood type)", + "order": 4689, + "tags": ["b", "blood", "button", "type"], + "unicode": "ðŸ…ąïļ" + }, + { + "group": 8, + "hexcode": "1F191", + "label": "CL button", + "order": 4690, + "tags": ["button", "cl"], + "unicode": "🆑" + }, + { + "group": 8, + "hexcode": "1F192", + "label": "COOL button", + "order": 4691, + "tags": ["button", "cool"], + "unicode": "🆒" + }, + { + "group": 8, + "hexcode": "1F193", + "label": "FREE button", + "order": 4692, + "tags": ["button", "free"], + "unicode": "🆓" + }, + { + "group": 8, + "hexcode": "2139", + "label": "information", + "order": 4694, + "tags": ["i"], + "unicode": "â„đïļ" + }, + { + "group": 8, + "hexcode": "1F194", + "label": "ID button", + "order": 4695, + "tags": ["button", "id", "identity"], + "unicode": "🆔" + }, + { + "group": 8, + "hexcode": "24C2", + "label": "circled M", + "order": 4697, + "tags": ["circle", "circled", "m"], + "unicode": "Ⓜïļ" + }, + { + "group": 8, + "hexcode": "1F195", + "label": "NEW button", + "order": 4698, + "tags": ["button", "new"], + "unicode": "🆕" + }, + { + "group": 8, + "hexcode": "1F196", + "label": "NG button", + "order": 4699, + "tags": ["button", "ng"], + "unicode": "🆖" + }, + { + "group": 8, + "hexcode": "1F17E", + "label": "O button (blood type)", + "order": 4701, + "tags": ["blood", "button", "o", "type"], + "unicode": "ðŸ…ūïļ" + }, + { + "group": 8, + "hexcode": "1F197", + "label": "OK button", + "order": 4702, + "tags": ["button", "ok", "okay"], + "unicode": "🆗" + }, + { + "group": 8, + "hexcode": "1F17F", + "label": "P button", + "order": 4704, + "tags": ["button", "p", "parking"], + "unicode": "ðŸ…ŋïļ" + }, + { + "group": 8, + "hexcode": "1F198", + "label": "SOS button", + "order": 4705, + "tags": ["button", "help", "sos"], + "unicode": "🆘" + }, + { + "group": 8, + "hexcode": "1F199", + "label": "UP! button", + "order": 4706, + "tags": ["button", "mark", "up", "up!"], + "unicode": "🆙" + }, + { + "group": 8, + "hexcode": "1F19A", + "label": "VS button", + "order": 4707, + "tags": ["button", "versus", "vs"], + "unicode": "🆚" + }, + { + "group": 8, + "hexcode": "1F201", + "label": "Japanese “here” button", + "order": 4708, + "tags": ["button", "here", "japanese", "katakana"], + "unicode": "🈁" + }, + { + "group": 8, + "hexcode": "1F202", + "label": "Japanese “service charge” button", + "order": 4710, + "tags": ["button", "charge", "japanese", "katakana", "service"], + "unicode": "🈂ïļ" + }, + { + "group": 8, + "hexcode": "1F237", + "label": "Japanese “monthly amount” button", + "order": 4712, + "tags": ["amount", "button", "ideograph", "japanese", "monthly"], + "unicode": "🈷ïļ" + }, + { + "group": 8, + "hexcode": "1F236", + "label": "Japanese “not free of charge” button", + "order": 4713, + "tags": ["button", "charge", "free", "ideograph", "japanese", "not"], + "unicode": "ðŸˆķ" + }, + { + "group": 8, + "hexcode": "1F22F", + "label": "Japanese “reserved” button", + "order": 4714, + "tags": ["button", "ideograph", "japanese", "reserved"], + "unicode": "ðŸˆŊïļ" + }, + { + "group": 8, + "hexcode": "1F250", + "label": "Japanese “bargain” button", + "order": 4715, + "tags": ["bargain", "button", "ideograph", "japanese"], + "unicode": "🉐" + }, + { + "group": 8, + "hexcode": "1F239", + "label": "Japanese “discount” button", + "order": 4716, + "tags": ["button", "discount", "ideograph", "japanese"], + "unicode": "ðŸˆđ" + }, + { + "group": 8, + "hexcode": "1F21A", + "label": "Japanese “free of charge” button", + "order": 4717, + "tags": ["button", "charge", "free", "ideograph", "japanese"], + "unicode": "🈚ïļ" + }, + { + "group": 8, + "hexcode": "1F232", + "label": "Japanese “prohibited” button", + "order": 4718, + "tags": ["button", "ideograph", "japanese", "prohibited"], + "unicode": "ðŸˆē" + }, + { + "group": 8, + "hexcode": "1F251", + "label": "Japanese “acceptable” button", + "order": 4719, + "tags": ["acceptable", "button", "ideograph", "japanese"], + "unicode": "🉑" + }, + { + "group": 8, + "hexcode": "1F238", + "label": "Japanese “application” button", + "order": 4720, + "tags": ["application", "button", "ideograph", "japanese"], + "unicode": "ðŸˆļ" + }, + { + "group": 8, + "hexcode": "1F234", + "label": "Japanese “passing grade” button", + "order": 4721, + "tags": ["button", "grade", "ideograph", "japanese", "passing"], + "unicode": "ðŸˆī" + }, + { + "group": 8, + "hexcode": "1F233", + "label": "Japanese “vacancy” button", + "order": 4722, + "tags": ["button", "ideograph", "japanese", "vacancy"], + "unicode": "ðŸˆģ" + }, + { + "group": 8, + "hexcode": "3297", + "label": "Japanese “congratulations” button", + "order": 4724, + "tags": ["button", "congratulations", "ideograph", "japanese"], + "unicode": "㊗ïļ" + }, + { + "group": 8, + "hexcode": "3299", + "label": "Japanese “secret” button", + "order": 4726, + "tags": ["button", "ideograph", "japanese", "secret"], + "unicode": "㊙ïļ" + }, + { + "group": 8, + "hexcode": "1F23A", + "label": "Japanese “open for business” button", + "order": 4727, + "tags": ["business", "button", "ideograph", "japanese", "open"], + "unicode": "🈚" + }, + { + "group": 8, + "hexcode": "1F235", + "label": "Japanese “no vacancy” button", + "order": 4728, + "tags": ["button", "ideograph", "japanese", "no", "vacancy"], + "unicode": "ðŸˆĩ" + }, + { + "group": 8, + "hexcode": "1F534", + "label": "red circle", + "order": 4729, + "tags": ["circle", "geometric", "red"], + "unicode": "ðŸ”ī" + }, + { + "group": 8, + "hexcode": "1F7E0", + "label": "orange circle", + "order": 4730, + "tags": ["circle", "orange"], + "unicode": "🟠" + }, + { + "group": 8, + "hexcode": "1F7E1", + "label": "yellow circle", + "order": 4731, + "tags": ["circle", "yellow"], + "unicode": "ðŸŸĄ" + }, + { + "group": 8, + "hexcode": "1F7E2", + "label": "green circle", + "order": 4732, + "tags": ["circle", "green"], + "unicode": "ðŸŸĒ" + }, + { + "group": 8, + "hexcode": "1F535", + "label": "blue circle", + "order": 4733, + "tags": ["blue", "circle", "geometric"], + "unicode": "ðŸ”ĩ" + }, + { + "group": 8, + "hexcode": "1F7E3", + "label": "purple circle", + "order": 4734, + "tags": ["circle", "purple"], + "unicode": "ðŸŸĢ" + }, + { + "group": 8, + "hexcode": "1F7E4", + "label": "brown circle", + "order": 4735, + "tags": ["brown", "circle"], + "unicode": "ðŸŸĪ" + }, + { + "group": 8, + "hexcode": "26AB", + "label": "black circle", + "order": 4736, + "tags": ["black", "circle", "geometric"], + "unicode": "âšŦïļ" + }, + { + "group": 8, + "hexcode": "26AA", + "label": "white circle", + "order": 4737, + "tags": ["circle", "geometric", "white"], + "unicode": "⚩ïļ" + }, + { + "group": 8, + "hexcode": "1F7E5", + "label": "red square", + "order": 4738, + "tags": ["card", "penalty", "red", "square"], + "unicode": "ðŸŸĨ" + }, + { + "group": 8, + "hexcode": "1F7E7", + "label": "orange square", + "order": 4739, + "tags": ["orange", "square"], + "unicode": "🟧" + }, + { + "group": 8, + "hexcode": "1F7E8", + "label": "yellow square", + "order": 4740, + "tags": ["card", "penalty", "square", "yellow"], + "unicode": "ðŸŸĻ" + }, + { + "group": 8, + "hexcode": "1F7E9", + "label": "green square", + "order": 4741, + "tags": ["green", "square"], + "unicode": "ðŸŸĐ" + }, + { + "group": 8, + "hexcode": "1F7E6", + "label": "blue square", + "order": 4742, + "tags": ["blue", "square"], + "unicode": "ðŸŸĶ" + }, + { + "group": 8, + "hexcode": "1F7EA", + "label": "purple square", + "order": 4743, + "tags": ["purple", "square"], + "unicode": "🟊" + }, + { + "group": 8, + "hexcode": "1F7EB", + "label": "brown square", + "order": 4744, + "tags": ["brown", "square"], + "unicode": "ðŸŸŦ" + }, + { + "group": 8, + "hexcode": "2B1B", + "label": "black large square", + "order": 4745, + "tags": ["black", "geometric", "large", "square"], + "unicode": "⮛ïļ" + }, + { + "group": 8, + "hexcode": "2B1C", + "label": "white large square", + "order": 4746, + "tags": ["geometric", "large", "square", "white"], + "unicode": "⮜ïļ" + }, + { + "group": 8, + "hexcode": "25FC", + "label": "black medium square", + "order": 4748, + "tags": ["black", "geometric", "medium", "square"], + "unicode": "◾ïļ" + }, + { + "group": 8, + "hexcode": "25FB", + "label": "white medium square", + "order": 4750, + "tags": ["geometric", "medium", "square", "white"], + "unicode": "â—ŧïļ" + }, + { + "group": 8, + "hexcode": "25FE", + "label": "black medium-small square", + "order": 4751, + "tags": ["black", "geometric", "medium-small", "square"], + "unicode": "â—ūïļ" + }, + { + "group": 8, + "hexcode": "25FD", + "label": "white medium-small square", + "order": 4752, + "tags": ["geometric", "medium-small", "square", "white"], + "unicode": "â—―ïļ" + }, + { + "group": 8, + "hexcode": "25AA", + "label": "black small square", + "order": 4754, + "tags": ["black", "geometric", "small", "square"], + "unicode": "▩ïļ" + }, + { + "group": 8, + "hexcode": "25AB", + "label": "white small square", + "order": 4756, + "tags": ["geometric", "small", "square", "white"], + "unicode": "â–Ŧïļ" + }, + { + "group": 8, + "hexcode": "1F536", + "label": "large orange diamond", + "order": 4757, + "tags": ["diamond", "geometric", "large", "orange"], + "unicode": "ðŸ”ķ" + }, + { + "group": 8, + "hexcode": "1F537", + "label": "large blue diamond", + "order": 4758, + "tags": ["blue", "diamond", "geometric", "large"], + "unicode": "🔷" + }, + { + "group": 8, + "hexcode": "1F538", + "label": "small orange diamond", + "order": 4759, + "tags": ["diamond", "geometric", "orange", "small"], + "unicode": "ðŸ”ļ" + }, + { + "group": 8, + "hexcode": "1F539", + "label": "small blue diamond", + "order": 4760, + "tags": ["blue", "diamond", "geometric", "small"], + "unicode": "ðŸ”đ" + }, + { + "group": 8, + "hexcode": "1F53A", + "label": "red triangle pointed up", + "order": 4761, + "tags": ["geometric", "pointed", "red", "triangle", "up"], + "unicode": "🔚" + }, + { + "group": 8, + "hexcode": "1F53B", + "label": "red triangle pointed down", + "order": 4762, + "tags": ["down", "geometric", "pointed", "red", "triangle"], + "unicode": "ðŸ”ŧ" + }, + { + "group": 8, + "hexcode": "1F4A0", + "label": "diamond with a dot", + "order": 4763, + "tags": ["comic", "diamond", "dot", "geometric"], + "unicode": "💠" + }, + { + "group": 8, + "hexcode": "1F518", + "label": "radio button", + "order": 4764, + "tags": ["button", "geometric", "radio"], + "unicode": "🔘" + }, + { + "group": 8, + "hexcode": "1F533", + "label": "white square button", + "order": 4765, + "tags": ["button", "geometric", "outlined", "square", "white"], + "unicode": "ðŸ”ģ" + }, + { + "group": 8, + "hexcode": "1F532", + "label": "black square button", + "order": 4766, + "tags": ["black", "button", "geometric", "square"], + "unicode": "ðŸ”ē" + } + ] + }, + { + "name": "Flags", + "emojis": [ + { + "group": 9, + "hexcode": "1F3C1", + "label": "chequered flag", + "order": 4767, + "tags": [ + "checkered", + "chequered", + "finish", + "flag", + "flags", + "game", + "race", + "racing", + "sport", + "win" + ], + "unicode": "🏁" + }, + { + "group": 9, + "hexcode": "1F6A9", + "label": "triangular flag", + "order": 4768, + "tags": ["construction", "flag", "golf", "post", "triangular"], + "unicode": "ðŸšĐ" + }, + { + "group": 9, + "hexcode": "1F38C", + "label": "crossed flags", + "order": 4769, + "tags": ["celebration", "cross", "crossed", "flags", "japanese"], + "unicode": "🎌" + }, + { + "group": 9, + "hexcode": "1F3F4", + "label": "black flag", + "order": 4770, + "tags": ["black", "flag", "waving"], + "unicode": "ðŸī" + }, + { + "group": 9, + "hexcode": "1F3F3", + "label": "white flag", + "order": 4772, + "tags": ["flag", "waving", "white"], + "unicode": "ðŸģïļ" + }, + { + "group": 9, + "hexcode": "1F3F3-FE0F-200D-1F308", + "label": "rainbow flag", + "order": 4773, + "tags": [ + "bisexual", + "flag", + "gay", + "genderqueer", + "glbt", + "glbtq", + "lesbian", + "lgbt", + "lgbtq", + "lgbtqia", + "pride", + "queer", + "rainbow", + "trans", + "transgender" + ], + "unicode": "ðŸģïļâ€ðŸŒˆ" + }, + { + "group": 9, + "hexcode": "1F3F3-FE0F-200D-26A7-FE0F", + "label": "transgender flag", + "order": 4775, + "tags": ["blue", "flag", "light", "pink", "transgender", "white"], + "unicode": "ðŸģïļâ€âš§ïļ" + }, + { + "group": 9, + "hexcode": "1F3F4-200D-2620-FE0F", + "label": "pirate flag", + "order": 4779, + "tags": ["flag", "jolly", "pirate", "plunder", "roger", "treasure"], + "unicode": "ðŸī‍☠ïļ" + }, + { + "group": 9, + "hexcode": "1F1E6-1F1E8", + "label": "flag: Ascension Island", + "order": 4781, + "tags": ["AC", "flag"], + "unicode": "ðŸ‡ĶðŸ‡Ļ" + }, + { + "group": 9, + "hexcode": "1F1E6-1F1E9", + "label": "flag: Andorra", + "order": 4782, + "tags": ["AD", "flag"], + "unicode": "ðŸ‡ĶðŸ‡Đ" + }, + { + "group": 9, + "hexcode": "1F1E6-1F1EA", + "label": "flag: United Arab Emirates", + "order": 4783, + "tags": ["AE", "flag"], + "unicode": "ðŸ‡Ķ🇊" + }, + { + "group": 9, + "hexcode": "1F1E6-1F1EB", + "label": "flag: Afghanistan", + "order": 4784, + "tags": ["AF", "flag"], + "unicode": "ðŸ‡ĶðŸ‡Ŧ" + }, + { + "group": 9, + "hexcode": "1F1E6-1F1EC", + "label": "flag: Antigua & Barbuda", + "order": 4785, + "tags": ["AG", "flag"], + "unicode": "ðŸ‡Ķ🇎" + }, + { + "group": 9, + "hexcode": "1F1E6-1F1EE", + "label": "flag: Anguilla", + "order": 4786, + "tags": ["AI", "flag"], + "unicode": "ðŸ‡ĶðŸ‡Ū" + }, + { + "group": 9, + "hexcode": "1F1E6-1F1F1", + "label": "flag: Albania", + "order": 4787, + "tags": ["AL", "flag"], + "unicode": "ðŸ‡ĶðŸ‡ą" + }, + { + "group": 9, + "hexcode": "1F1E6-1F1F2", + "label": "flag: Armenia", + "order": 4788, + "tags": ["AM", "flag"], + "unicode": "ðŸ‡ĶðŸ‡ē" + }, + { + "group": 9, + "hexcode": "1F1E6-1F1F4", + "label": "flag: Angola", + "order": 4789, + "tags": ["AO", "flag"], + "unicode": "ðŸ‡ĶðŸ‡ī" + }, + { + "group": 9, + "hexcode": "1F1E6-1F1F6", + "label": "flag: Antarctica", + "order": 4790, + "tags": ["AQ", "flag"], + "unicode": "ðŸ‡ĶðŸ‡ķ" + }, + { + "group": 9, + "hexcode": "1F1E6-1F1F7", + "label": "flag: Argentina", + "order": 4791, + "tags": ["AR", "flag"], + "unicode": "ðŸ‡Ķ🇷" + }, + { + "group": 9, + "hexcode": "1F1E6-1F1F8", + "label": "flag: American Samoa", + "order": 4792, + "tags": ["AS", "flag"], + "unicode": "ðŸ‡ĶðŸ‡ļ" + }, + { + "group": 9, + "hexcode": "1F1E6-1F1F9", + "label": "flag: Austria", + "order": 4793, + "tags": ["AT", "flag"], + "unicode": "ðŸ‡ĶðŸ‡đ" + }, + { + "group": 9, + "hexcode": "1F1E6-1F1FA", + "label": "flag: Australia", + "order": 4794, + "tags": ["AU", "flag"], + "unicode": "ðŸ‡Ķ🇚" + }, + { + "group": 9, + "hexcode": "1F1E6-1F1FC", + "label": "flag: Aruba", + "order": 4795, + "tags": ["AW", "flag"], + "unicode": "ðŸ‡Ķ🇞" + }, + { + "group": 9, + "hexcode": "1F1E6-1F1FD", + "label": "flag: Åland Islands", + "order": 4796, + "tags": ["AX", "flag"], + "unicode": "ðŸ‡ĶðŸ‡―" + }, + { + "group": 9, + "hexcode": "1F1E6-1F1FF", + "label": "flag: Azerbaijan", + "order": 4797, + "tags": ["AZ", "flag"], + "unicode": "ðŸ‡ĶðŸ‡ŋ" + }, + { + "group": 9, + "hexcode": "1F1E7-1F1E6", + "label": "flag: Bosnia & Herzegovina", + "order": 4798, + "tags": ["BA", "flag"], + "unicode": "🇧ðŸ‡Ķ" + }, + { + "group": 9, + "hexcode": "1F1E7-1F1E7", + "label": "flag: Barbados", + "order": 4799, + "tags": ["BB", "flag"], + "unicode": "🇧🇧" + }, + { + "group": 9, + "hexcode": "1F1E7-1F1E9", + "label": "flag: Bangladesh", + "order": 4800, + "tags": ["BD", "flag"], + "unicode": "🇧ðŸ‡Đ" + }, + { + "group": 9, + "hexcode": "1F1E7-1F1EA", + "label": "flag: Belgium", + "order": 4801, + "tags": ["BE", "flag"], + "unicode": "🇧🇊" + }, + { + "group": 9, + "hexcode": "1F1E7-1F1EB", + "label": "flag: Burkina Faso", + "order": 4802, + "tags": ["BF", "flag"], + "unicode": "🇧ðŸ‡Ŧ" + }, + { + "group": 9, + "hexcode": "1F1E7-1F1EC", + "label": "flag: Bulgaria", + "order": 4803, + "tags": ["BG", "flag"], + "unicode": "🇧🇎" + }, + { + "group": 9, + "hexcode": "1F1E7-1F1ED", + "label": "flag: Bahrain", + "order": 4804, + "tags": ["BH", "flag"], + "unicode": "🇧🇭" + }, + { + "group": 9, + "hexcode": "1F1E7-1F1EE", + "label": "flag: Burundi", + "order": 4805, + "tags": ["BI", "flag"], + "unicode": "🇧ðŸ‡Ū" + }, + { + "group": 9, + "hexcode": "1F1E7-1F1EF", + "label": "flag: Benin", + "order": 4806, + "tags": ["BJ", "flag"], + "unicode": "🇧ðŸ‡Ŋ" + }, + { + "group": 9, + "hexcode": "1F1E7-1F1F1", + "label": "flag: St. BarthÃĐlemy", + "order": 4807, + "tags": ["BL", "flag"], + "unicode": "ðŸ‡§ðŸ‡ą" + }, + { + "group": 9, + "hexcode": "1F1E7-1F1F2", + "label": "flag: Bermuda", + "order": 4808, + "tags": ["BM", "flag"], + "unicode": "🇧ðŸ‡ē" + }, + { + "group": 9, + "hexcode": "1F1E7-1F1F3", + "label": "flag: Brunei", + "order": 4809, + "tags": ["BN", "flag"], + "unicode": "🇧ðŸ‡ģ" + }, + { + "group": 9, + "hexcode": "1F1E7-1F1F4", + "label": "flag: Bolivia", + "order": 4810, + "tags": ["BO", "flag"], + "unicode": "🇧ðŸ‡ī" + }, + { + "group": 9, + "hexcode": "1F1E7-1F1F6", + "label": "flag: Caribbean Netherlands", + "order": 4811, + "tags": ["BQ", "flag"], + "unicode": "🇧ðŸ‡ķ" + }, + { + "group": 9, + "hexcode": "1F1E7-1F1F7", + "label": "flag: Brazil", + "order": 4812, + "tags": ["BR", "flag"], + "unicode": "🇧🇷" + }, + { + "group": 9, + "hexcode": "1F1E7-1F1F8", + "label": "flag: Bahamas", + "order": 4813, + "tags": ["BS", "flag"], + "unicode": "🇧ðŸ‡ļ" + }, + { + "group": 9, + "hexcode": "1F1E7-1F1F9", + "label": "flag: Bhutan", + "order": 4814, + "tags": ["BT", "flag"], + "unicode": "🇧ðŸ‡đ" + }, + { + "group": 9, + "hexcode": "1F1E7-1F1FB", + "label": "flag: Bouvet Island", + "order": 4815, + "tags": ["BV", "flag"], + "unicode": "🇧ðŸ‡ŧ" + }, + { + "group": 9, + "hexcode": "1F1E7-1F1FC", + "label": "flag: Botswana", + "order": 4816, + "tags": ["BW", "flag"], + "unicode": "🇧🇞" + }, + { + "group": 9, + "hexcode": "1F1E7-1F1FE", + "label": "flag: Belarus", + "order": 4817, + "tags": ["BY", "flag"], + "unicode": "🇧ðŸ‡ū" + }, + { + "group": 9, + "hexcode": "1F1E7-1F1FF", + "label": "flag: Belize", + "order": 4818, + "tags": ["BZ", "flag"], + "unicode": "🇧ðŸ‡ŋ" + }, + { + "group": 9, + "hexcode": "1F1E8-1F1E6", + "label": "flag: Canada", + "order": 4819, + "tags": ["CA", "flag"], + "unicode": "ðŸ‡ĻðŸ‡Ķ" + }, + { + "group": 9, + "hexcode": "1F1E8-1F1E8", + "label": "flag: Cocos (Keeling) Islands", + "order": 4820, + "tags": ["CC", "flag"], + "unicode": "ðŸ‡ĻðŸ‡Ļ" + }, + { + "group": 9, + "hexcode": "1F1E8-1F1E9", + "label": "flag: Congo - Kinshasa", + "order": 4821, + "tags": ["CD", "flag"], + "unicode": "ðŸ‡ĻðŸ‡Đ" + }, + { + "group": 9, + "hexcode": "1F1E8-1F1EB", + "label": "flag: Central African Republic", + "order": 4822, + "tags": ["CF", "flag"], + "unicode": "ðŸ‡ĻðŸ‡Ŧ" + }, + { + "group": 9, + "hexcode": "1F1E8-1F1EC", + "label": "flag: Congo - Brazzaville", + "order": 4823, + "tags": ["CG", "flag"], + "unicode": "ðŸ‡Ļ🇎" + }, + { + "group": 9, + "hexcode": "1F1E8-1F1ED", + "label": "flag: Switzerland", + "order": 4824, + "tags": ["CH", "flag"], + "unicode": "ðŸ‡Ļ🇭" + }, + { + "group": 9, + "hexcode": "1F1E8-1F1EE", + "label": "flag: CÃīte d’Ivoire", + "order": 4825, + "tags": ["CI", "flag"], + "unicode": "ðŸ‡ĻðŸ‡Ū" + }, + { + "group": 9, + "hexcode": "1F1E8-1F1F0", + "label": "flag: Cook Islands", + "order": 4826, + "tags": ["CK", "flag"], + "unicode": "ðŸ‡Ļ🇰" + }, + { + "group": 9, + "hexcode": "1F1E8-1F1F1", + "label": "flag: Chile", + "order": 4827, + "tags": ["CL", "flag"], + "unicode": "ðŸ‡ĻðŸ‡ą" + }, + { + "group": 9, + "hexcode": "1F1E8-1F1F2", + "label": "flag: Cameroon", + "order": 4828, + "tags": ["CM", "flag"], + "unicode": "ðŸ‡ĻðŸ‡ē" + }, + { + "group": 9, + "hexcode": "1F1E8-1F1F3", + "label": "flag: China", + "order": 4829, + "tags": ["CN", "flag"], + "unicode": "ðŸ‡ĻðŸ‡ģ" + }, + { + "group": 9, + "hexcode": "1F1E8-1F1F4", + "label": "flag: Colombia", + "order": 4830, + "tags": ["CO", "flag"], + "unicode": "ðŸ‡ĻðŸ‡ī" + }, + { + "group": 9, + "hexcode": "1F1E8-1F1F5", + "label": "flag: Clipperton Island", + "order": 4831, + "tags": ["CP", "flag"], + "unicode": "ðŸ‡ĻðŸ‡ĩ" + }, + { + "group": 9, + "hexcode": "1F1E8-1F1F6", + "label": "flag: Sark", + "order": 4832, + "tags": ["CQ", "flag"], + "unicode": "ðŸ‡ĻðŸ‡ķ" + }, + { + "group": 9, + "hexcode": "1F1E8-1F1F7", + "label": "flag: Costa Rica", + "order": 4833, + "tags": ["CR", "flag"], + "unicode": "ðŸ‡Ļ🇷" + }, + { + "group": 9, + "hexcode": "1F1E8-1F1FA", + "label": "flag: Cuba", + "order": 4834, + "tags": ["CU", "flag"], + "unicode": "ðŸ‡Ļ🇚" + }, + { + "group": 9, + "hexcode": "1F1E8-1F1FB", + "label": "flag: Cape Verde", + "order": 4835, + "tags": ["CV", "flag"], + "unicode": "ðŸ‡ĻðŸ‡ŧ" + }, + { + "group": 9, + "hexcode": "1F1E8-1F1FC", + "label": "flag: Curaçao", + "order": 4836, + "tags": ["CW", "flag"], + "unicode": "ðŸ‡Ļ🇞" + }, + { + "group": 9, + "hexcode": "1F1E8-1F1FD", + "label": "flag: Christmas Island", + "order": 4837, + "tags": ["CX", "flag"], + "unicode": "ðŸ‡ĻðŸ‡―" + }, + { + "group": 9, + "hexcode": "1F1E8-1F1FE", + "label": "flag: Cyprus", + "order": 4838, + "tags": ["CY", "flag"], + "unicode": "ðŸ‡ĻðŸ‡ū" + }, + { + "group": 9, + "hexcode": "1F1E8-1F1FF", + "label": "flag: Czechia", + "order": 4839, + "tags": ["CZ", "flag"], + "unicode": "ðŸ‡ĻðŸ‡ŋ" + }, + { + "group": 9, + "hexcode": "1F1E9-1F1EA", + "label": "flag: Germany", + "order": 4840, + "tags": ["DE", "flag"], + "unicode": "ðŸ‡Đ🇊" + }, + { + "group": 9, + "hexcode": "1F1E9-1F1EC", + "label": "flag: Diego Garcia", + "order": 4841, + "tags": ["DG", "flag"], + "unicode": "ðŸ‡Đ🇎" + }, + { + "group": 9, + "hexcode": "1F1E9-1F1EF", + "label": "flag: Djibouti", + "order": 4842, + "tags": ["DJ", "flag"], + "unicode": "ðŸ‡ĐðŸ‡Ŋ" + }, + { + "group": 9, + "hexcode": "1F1E9-1F1F0", + "label": "flag: Denmark", + "order": 4843, + "tags": ["DK", "flag"], + "unicode": "ðŸ‡Đ🇰" + }, + { + "group": 9, + "hexcode": "1F1E9-1F1F2", + "label": "flag: Dominica", + "order": 4844, + "tags": ["DM", "flag"], + "unicode": "ðŸ‡ĐðŸ‡ē" + }, + { + "group": 9, + "hexcode": "1F1E9-1F1F4", + "label": "flag: Dominican Republic", + "order": 4845, + "tags": ["DO", "flag"], + "unicode": "ðŸ‡ĐðŸ‡ī" + }, + { + "group": 9, + "hexcode": "1F1E9-1F1FF", + "label": "flag: Algeria", + "order": 4846, + "tags": ["DZ", "flag"], + "unicode": "ðŸ‡ĐðŸ‡ŋ" + }, + { + "group": 9, + "hexcode": "1F1EA-1F1E6", + "label": "flag: Ceuta & Melilla", + "order": 4847, + "tags": ["EA", "flag"], + "unicode": "🇊ðŸ‡Ķ" + }, + { + "group": 9, + "hexcode": "1F1EA-1F1E8", + "label": "flag: Ecuador", + "order": 4848, + "tags": ["EC", "flag"], + "unicode": "🇊ðŸ‡Ļ" + }, + { + "group": 9, + "hexcode": "1F1EA-1F1EA", + "label": "flag: Estonia", + "order": 4849, + "tags": ["EE", "flag"], + "unicode": "🇊🇊" + }, + { + "group": 9, + "hexcode": "1F1EA-1F1EC", + "label": "flag: Egypt", + "order": 4850, + "tags": ["EG", "flag"], + "unicode": "🇊🇎" + }, + { + "group": 9, + "hexcode": "1F1EA-1F1ED", + "label": "flag: Western Sahara", + "order": 4851, + "tags": ["EH", "flag"], + "unicode": "🇊🇭" + }, + { + "group": 9, + "hexcode": "1F1EA-1F1F7", + "label": "flag: Eritrea", + "order": 4852, + "tags": ["ER", "flag"], + "unicode": "🇊🇷" + }, + { + "group": 9, + "hexcode": "1F1EA-1F1F8", + "label": "flag: Spain", + "order": 4853, + "tags": ["ES", "flag"], + "unicode": "🇊ðŸ‡ļ" + }, + { + "group": 9, + "hexcode": "1F1EA-1F1F9", + "label": "flag: Ethiopia", + "order": 4854, + "tags": ["ET", "flag"], + "unicode": "🇊ðŸ‡đ" + }, + { + "group": 9, + "hexcode": "1F1EA-1F1FA", + "label": "flag: European Union", + "order": 4855, + "tags": ["EU", "flag"], + "unicode": "🇊🇚" + }, + { + "group": 9, + "hexcode": "1F1EB-1F1EE", + "label": "flag: Finland", + "order": 4856, + "tags": ["FI", "flag"], + "unicode": "ðŸ‡ŦðŸ‡Ū" + }, + { + "group": 9, + "hexcode": "1F1EB-1F1EF", + "label": "flag: Fiji", + "order": 4857, + "tags": ["FJ", "flag"], + "unicode": "ðŸ‡ŦðŸ‡Ŋ" + }, + { + "group": 9, + "hexcode": "1F1EB-1F1F0", + "label": "flag: Falkland Islands", + "order": 4858, + "tags": ["FK", "flag"], + "unicode": "ðŸ‡Ŧ🇰" + }, + { + "group": 9, + "hexcode": "1F1EB-1F1F2", + "label": "flag: Micronesia", + "order": 4859, + "tags": ["FM", "flag"], + "unicode": "ðŸ‡ŦðŸ‡ē" + }, + { + "group": 9, + "hexcode": "1F1EB-1F1F4", + "label": "flag: Faroe Islands", + "order": 4860, + "tags": ["FO", "flag"], + "unicode": "ðŸ‡ŦðŸ‡ī" + }, + { + "group": 9, + "hexcode": "1F1EB-1F1F7", + "label": "flag: France", + "order": 4861, + "tags": ["FR", "flag"], + "unicode": "ðŸ‡Ŧ🇷" + }, + { + "group": 9, + "hexcode": "1F1EC-1F1E6", + "label": "flag: Gabon", + "order": 4862, + "tags": ["GA", "flag"], + "unicode": "🇎ðŸ‡Ķ" + }, + { + "group": 9, + "hexcode": "1F1EC-1F1E7", + "label": "flag: United Kingdom", + "order": 4863, + "tags": ["GB", "flag"], + "unicode": "🇎🇧" + }, + { + "group": 9, + "hexcode": "1F1EC-1F1E9", + "label": "flag: Grenada", + "order": 4864, + "tags": ["GD", "flag"], + "unicode": "🇎ðŸ‡Đ" + }, + { + "group": 9, + "hexcode": "1F1EC-1F1EA", + "label": "flag: Georgia", + "order": 4865, + "tags": ["GE", "flag"], + "unicode": "🇎🇊" + }, + { + "group": 9, + "hexcode": "1F1EC-1F1EB", + "label": "flag: French Guiana", + "order": 4866, + "tags": ["GF", "flag"], + "unicode": "🇎ðŸ‡Ŧ" + }, + { + "group": 9, + "hexcode": "1F1EC-1F1EC", + "label": "flag: Guernsey", + "order": 4867, + "tags": ["GG", "flag"], + "unicode": "🇎🇎" + }, + { + "group": 9, + "hexcode": "1F1EC-1F1ED", + "label": "flag: Ghana", + "order": 4868, + "tags": ["GH", "flag"], + "unicode": "🇎🇭" + }, + { + "group": 9, + "hexcode": "1F1EC-1F1EE", + "label": "flag: Gibraltar", + "order": 4869, + "tags": ["GI", "flag"], + "unicode": "🇎ðŸ‡Ū" + }, + { + "group": 9, + "hexcode": "1F1EC-1F1F1", + "label": "flag: Greenland", + "order": 4870, + "tags": ["GL", "flag"], + "unicode": "ðŸ‡ŽðŸ‡ą" + }, + { + "group": 9, + "hexcode": "1F1EC-1F1F2", + "label": "flag: Gambia", + "order": 4871, + "tags": ["GM", "flag"], + "unicode": "🇎ðŸ‡ē" + }, + { + "group": 9, + "hexcode": "1F1EC-1F1F3", + "label": "flag: Guinea", + "order": 4872, + "tags": ["GN", "flag"], + "unicode": "🇎ðŸ‡ģ" + }, + { + "group": 9, + "hexcode": "1F1EC-1F1F5", + "label": "flag: Guadeloupe", + "order": 4873, + "tags": ["GP", "flag"], + "unicode": "🇎ðŸ‡ĩ" + }, + { + "group": 9, + "hexcode": "1F1EC-1F1F6", + "label": "flag: Equatorial Guinea", + "order": 4874, + "tags": ["GQ", "flag"], + "unicode": "🇎ðŸ‡ķ" + }, + { + "group": 9, + "hexcode": "1F1EC-1F1F7", + "label": "flag: Greece", + "order": 4875, + "tags": ["GR", "flag"], + "unicode": "🇎🇷" + }, + { + "group": 9, + "hexcode": "1F1EC-1F1F8", + "label": "flag: South Georgia & South Sandwich Islands", + "order": 4876, + "tags": ["GS", "flag"], + "unicode": "🇎ðŸ‡ļ" + }, + { + "group": 9, + "hexcode": "1F1EC-1F1F9", + "label": "flag: Guatemala", + "order": 4877, + "tags": ["GT", "flag"], + "unicode": "🇎ðŸ‡đ" + }, + { + "group": 9, + "hexcode": "1F1EC-1F1FA", + "label": "flag: Guam", + "order": 4878, + "tags": ["GU", "flag"], + "unicode": "🇎🇚" + }, + { + "group": 9, + "hexcode": "1F1EC-1F1FC", + "label": "flag: Guinea-Bissau", + "order": 4879, + "tags": ["GW", "flag"], + "unicode": "🇎🇞" + }, + { + "group": 9, + "hexcode": "1F1EC-1F1FE", + "label": "flag: Guyana", + "order": 4880, + "tags": ["GY", "flag"], + "unicode": "🇎ðŸ‡ū" + }, + { + "group": 9, + "hexcode": "1F1ED-1F1F0", + "label": "flag: Hong Kong SAR China", + "order": 4881, + "tags": ["HK", "flag"], + "unicode": "🇭🇰" + }, + { + "group": 9, + "hexcode": "1F1ED-1F1F2", + "label": "flag: Heard & McDonald Islands", + "order": 4882, + "tags": ["HM", "flag"], + "unicode": "🇭ðŸ‡ē" + }, + { + "group": 9, + "hexcode": "1F1ED-1F1F3", + "label": "flag: Honduras", + "order": 4883, + "tags": ["HN", "flag"], + "unicode": "🇭ðŸ‡ģ" + }, + { + "group": 9, + "hexcode": "1F1ED-1F1F7", + "label": "flag: Croatia", + "order": 4884, + "tags": ["HR", "flag"], + "unicode": "🇭🇷" + }, + { + "group": 9, + "hexcode": "1F1ED-1F1F9", + "label": "flag: Haiti", + "order": 4885, + "tags": ["HT", "flag"], + "unicode": "🇭ðŸ‡đ" + }, + { + "group": 9, + "hexcode": "1F1ED-1F1FA", + "label": "flag: Hungary", + "order": 4886, + "tags": ["HU", "flag"], + "unicode": "🇭🇚" + }, + { + "group": 9, + "hexcode": "1F1EE-1F1E8", + "label": "flag: Canary Islands", + "order": 4887, + "tags": ["IC", "flag"], + "unicode": "ðŸ‡ŪðŸ‡Ļ" + }, + { + "group": 9, + "hexcode": "1F1EE-1F1E9", + "label": "flag: Indonesia", + "order": 4888, + "tags": ["ID", "flag"], + "unicode": "ðŸ‡ŪðŸ‡Đ" + }, + { + "group": 9, + "hexcode": "1F1EE-1F1EA", + "label": "flag: Ireland", + "order": 4889, + "tags": ["IE", "flag"], + "unicode": "ðŸ‡Ū🇊" + }, + { + "group": 9, + "hexcode": "1F1EE-1F1F1", + "label": "flag: Israel", + "order": 4890, + "tags": ["IL", "flag"], + "unicode": "ðŸ‡ŪðŸ‡ą" + }, + { + "group": 9, + "hexcode": "1F1EE-1F1F2", + "label": "flag: Isle of Man", + "order": 4891, + "tags": ["IM", "flag"], + "unicode": "ðŸ‡ŪðŸ‡ē" + }, + { + "group": 9, + "hexcode": "1F1EE-1F1F3", + "label": "flag: India", + "order": 4892, + "tags": ["IN", "flag"], + "unicode": "ðŸ‡ŪðŸ‡ģ" + }, + { + "group": 9, + "hexcode": "1F1EE-1F1F4", + "label": "flag: British Indian Ocean Territory", + "order": 4893, + "tags": ["IO", "flag"], + "unicode": "ðŸ‡ŪðŸ‡ī" + }, + { + "group": 9, + "hexcode": "1F1EE-1F1F6", + "label": "flag: Iraq", + "order": 4894, + "tags": ["IQ", "flag"], + "unicode": "ðŸ‡ŪðŸ‡ķ" + }, + { + "group": 9, + "hexcode": "1F1EE-1F1F7", + "label": "flag: Iran", + "order": 4895, + "tags": ["IR", "flag"], + "unicode": "ðŸ‡Ū🇷" + }, + { + "group": 9, + "hexcode": "1F1EE-1F1F8", + "label": "flag: Iceland", + "order": 4896, + "tags": ["IS", "flag"], + "unicode": "ðŸ‡ŪðŸ‡ļ" + }, + { + "group": 9, + "hexcode": "1F1EE-1F1F9", + "label": "flag: Italy", + "order": 4897, + "tags": ["IT", "flag"], + "unicode": "ðŸ‡ŪðŸ‡đ" + }, + { + "group": 9, + "hexcode": "1F1EF-1F1EA", + "label": "flag: Jersey", + "order": 4898, + "tags": ["JE", "flag"], + "unicode": "ðŸ‡Ŋ🇊" + }, + { + "group": 9, + "hexcode": "1F1EF-1F1F2", + "label": "flag: Jamaica", + "order": 4899, + "tags": ["JM", "flag"], + "unicode": "ðŸ‡ŊðŸ‡ē" + }, + { + "group": 9, + "hexcode": "1F1EF-1F1F4", + "label": "flag: Jordan", + "order": 4900, + "tags": ["JO", "flag"], + "unicode": "ðŸ‡ŊðŸ‡ī" + }, + { + "group": 9, + "hexcode": "1F1EF-1F1F5", + "label": "flag: Japan", + "order": 4901, + "tags": ["JP", "flag"], + "unicode": "ðŸ‡ŊðŸ‡ĩ" + }, + { + "group": 9, + "hexcode": "1F1F0-1F1EA", + "label": "flag: Kenya", + "order": 4902, + "tags": ["KE", "flag"], + "unicode": "🇰🇊" + }, + { + "group": 9, + "hexcode": "1F1F0-1F1EC", + "label": "flag: Kyrgyzstan", + "order": 4903, + "tags": ["KG", "flag"], + "unicode": "🇰🇎" + }, + { + "group": 9, + "hexcode": "1F1F0-1F1ED", + "label": "flag: Cambodia", + "order": 4904, + "tags": ["KH", "flag"], + "unicode": "🇰🇭" + }, + { + "group": 9, + "hexcode": "1F1F0-1F1EE", + "label": "flag: Kiribati", + "order": 4905, + "tags": ["KI", "flag"], + "unicode": "🇰ðŸ‡Ū" + }, + { + "group": 9, + "hexcode": "1F1F0-1F1F2", + "label": "flag: Comoros", + "order": 4906, + "tags": ["KM", "flag"], + "unicode": "🇰ðŸ‡ē" + }, + { + "group": 9, + "hexcode": "1F1F0-1F1F3", + "label": "flag: St. Kitts & Nevis", + "order": 4907, + "tags": ["KN", "flag"], + "unicode": "🇰ðŸ‡ģ" + }, + { + "group": 9, + "hexcode": "1F1F0-1F1F5", + "label": "flag: North Korea", + "order": 4908, + "tags": ["KP", "flag"], + "unicode": "🇰ðŸ‡ĩ" + }, + { + "group": 9, + "hexcode": "1F1F0-1F1F7", + "label": "flag: South Korea", + "order": 4909, + "tags": ["KR", "flag"], + "unicode": "🇰🇷" + }, + { + "group": 9, + "hexcode": "1F1F0-1F1FC", + "label": "flag: Kuwait", + "order": 4910, + "tags": ["KW", "flag"], + "unicode": "🇰🇞" + }, + { + "group": 9, + "hexcode": "1F1F0-1F1FE", + "label": "flag: Cayman Islands", + "order": 4911, + "tags": ["KY", "flag"], + "unicode": "🇰ðŸ‡ū" + }, + { + "group": 9, + "hexcode": "1F1F0-1F1FF", + "label": "flag: Kazakhstan", + "order": 4912, + "tags": ["KZ", "flag"], + "unicode": "🇰ðŸ‡ŋ" + }, + { + "group": 9, + "hexcode": "1F1F1-1F1E6", + "label": "flag: Laos", + "order": 4913, + "tags": ["LA", "flag"], + "unicode": "ðŸ‡ąðŸ‡Ķ" + }, + { + "group": 9, + "hexcode": "1F1F1-1F1E7", + "label": "flag: Lebanon", + "order": 4914, + "tags": ["LB", "flag"], + "unicode": "ðŸ‡ąðŸ‡§" + }, + { + "group": 9, + "hexcode": "1F1F1-1F1E8", + "label": "flag: St. Lucia", + "order": 4915, + "tags": ["LC", "flag"], + "unicode": "ðŸ‡ąðŸ‡Ļ" + }, + { + "group": 9, + "hexcode": "1F1F1-1F1EE", + "label": "flag: Liechtenstein", + "order": 4916, + "tags": ["LI", "flag"], + "unicode": "ðŸ‡ąðŸ‡Ū" + }, + { + "group": 9, + "hexcode": "1F1F1-1F1F0", + "label": "flag: Sri Lanka", + "order": 4917, + "tags": ["LK", "flag"], + "unicode": "ðŸ‡ąðŸ‡°" + }, + { + "group": 9, + "hexcode": "1F1F1-1F1F7", + "label": "flag: Liberia", + "order": 4918, + "tags": ["LR", "flag"], + "unicode": "ðŸ‡ąðŸ‡·" + }, + { + "group": 9, + "hexcode": "1F1F1-1F1F8", + "label": "flag: Lesotho", + "order": 4919, + "tags": ["LS", "flag"], + "unicode": "ðŸ‡ąðŸ‡ļ" + }, + { + "group": 9, + "hexcode": "1F1F1-1F1F9", + "label": "flag: Lithuania", + "order": 4920, + "tags": ["LT", "flag"], + "unicode": "ðŸ‡ąðŸ‡đ" + }, + { + "group": 9, + "hexcode": "1F1F1-1F1FA", + "label": "flag: Luxembourg", + "order": 4921, + "tags": ["LU", "flag"], + "unicode": "ðŸ‡ąðŸ‡š" + }, + { + "group": 9, + "hexcode": "1F1F1-1F1FB", + "label": "flag: Latvia", + "order": 4922, + "tags": ["LV", "flag"], + "unicode": "ðŸ‡ąðŸ‡ŧ" + }, + { + "group": 9, + "hexcode": "1F1F1-1F1FE", + "label": "flag: Libya", + "order": 4923, + "tags": ["LY", "flag"], + "unicode": "ðŸ‡ąðŸ‡ū" + }, + { + "group": 9, + "hexcode": "1F1F2-1F1E6", + "label": "flag: Morocco", + "order": 4924, + "tags": ["MA", "flag"], + "unicode": "ðŸ‡ēðŸ‡Ķ" + }, + { + "group": 9, + "hexcode": "1F1F2-1F1E8", + "label": "flag: Monaco", + "order": 4925, + "tags": ["MC", "flag"], + "unicode": "ðŸ‡ēðŸ‡Ļ" + }, + { + "group": 9, + "hexcode": "1F1F2-1F1E9", + "label": "flag: Moldova", + "order": 4926, + "tags": ["MD", "flag"], + "unicode": "ðŸ‡ēðŸ‡Đ" + }, + { + "group": 9, + "hexcode": "1F1F2-1F1EA", + "label": "flag: Montenegro", + "order": 4927, + "tags": ["ME", "flag"], + "unicode": "ðŸ‡ē🇊" + }, + { + "group": 9, + "hexcode": "1F1F2-1F1EB", + "label": "flag: St. Martin", + "order": 4928, + "tags": ["MF", "flag"], + "unicode": "ðŸ‡ēðŸ‡Ŧ" + }, + { + "group": 9, + "hexcode": "1F1F2-1F1EC", + "label": "flag: Madagascar", + "order": 4929, + "tags": ["MG", "flag"], + "unicode": "ðŸ‡ē🇎" + }, + { + "group": 9, + "hexcode": "1F1F2-1F1ED", + "label": "flag: Marshall Islands", + "order": 4930, + "tags": ["MH", "flag"], + "unicode": "ðŸ‡ē🇭" + }, + { + "group": 9, + "hexcode": "1F1F2-1F1F0", + "label": "flag: North Macedonia", + "order": 4931, + "tags": ["MK", "flag"], + "unicode": "ðŸ‡ē🇰" + }, + { + "group": 9, + "hexcode": "1F1F2-1F1F1", + "label": "flag: Mali", + "order": 4932, + "tags": ["ML", "flag"], + "unicode": "ðŸ‡ēðŸ‡ą" + }, + { + "group": 9, + "hexcode": "1F1F2-1F1F2", + "label": "flag: Myanmar (Burma)", + "order": 4933, + "tags": ["MM", "flag"], + "unicode": "ðŸ‡ēðŸ‡ē" + }, + { + "group": 9, + "hexcode": "1F1F2-1F1F3", + "label": "flag: Mongolia", + "order": 4934, + "tags": ["MN", "flag"], + "unicode": "ðŸ‡ēðŸ‡ģ" + }, + { + "group": 9, + "hexcode": "1F1F2-1F1F4", + "label": "flag: Macao SAR China", + "order": 4935, + "tags": ["MO", "flag"], + "unicode": "ðŸ‡ēðŸ‡ī" + }, + { + "group": 9, + "hexcode": "1F1F2-1F1F5", + "label": "flag: Northern Mariana Islands", + "order": 4936, + "tags": ["MP", "flag"], + "unicode": "ðŸ‡ēðŸ‡ĩ" + }, + { + "group": 9, + "hexcode": "1F1F2-1F1F6", + "label": "flag: Martinique", + "order": 4937, + "tags": ["MQ", "flag"], + "unicode": "ðŸ‡ēðŸ‡ķ" + }, + { + "group": 9, + "hexcode": "1F1F2-1F1F7", + "label": "flag: Mauritania", + "order": 4938, + "tags": ["MR", "flag"], + "unicode": "ðŸ‡ē🇷" + }, + { + "group": 9, + "hexcode": "1F1F2-1F1F8", + "label": "flag: Montserrat", + "order": 4939, + "tags": ["MS", "flag"], + "unicode": "ðŸ‡ēðŸ‡ļ" + }, + { + "group": 9, + "hexcode": "1F1F2-1F1F9", + "label": "flag: Malta", + "order": 4940, + "tags": ["MT", "flag"], + "unicode": "ðŸ‡ēðŸ‡đ" + }, + { + "group": 9, + "hexcode": "1F1F2-1F1FA", + "label": "flag: Mauritius", + "order": 4941, + "tags": ["MU", "flag"], + "unicode": "ðŸ‡ē🇚" + }, + { + "group": 9, + "hexcode": "1F1F2-1F1FB", + "label": "flag: Maldives", + "order": 4942, + "tags": ["MV", "flag"], + "unicode": "ðŸ‡ēðŸ‡ŧ" + }, + { + "group": 9, + "hexcode": "1F1F2-1F1FC", + "label": "flag: Malawi", + "order": 4943, + "tags": ["MW", "flag"], + "unicode": "ðŸ‡ē🇞" + }, + { + "group": 9, + "hexcode": "1F1F2-1F1FD", + "label": "flag: Mexico", + "order": 4944, + "tags": ["MX", "flag"], + "unicode": "ðŸ‡ēðŸ‡―" + }, + { + "group": 9, + "hexcode": "1F1F2-1F1FE", + "label": "flag: Malaysia", + "order": 4945, + "tags": ["MY", "flag"], + "unicode": "ðŸ‡ēðŸ‡ū" + }, + { + "group": 9, + "hexcode": "1F1F2-1F1FF", + "label": "flag: Mozambique", + "order": 4946, + "tags": ["MZ", "flag"], + "unicode": "ðŸ‡ēðŸ‡ŋ" + }, + { + "group": 9, + "hexcode": "1F1F3-1F1E6", + "label": "flag: Namibia", + "order": 4947, + "tags": ["NA", "flag"], + "unicode": "ðŸ‡ģðŸ‡Ķ" + }, + { + "group": 9, + "hexcode": "1F1F3-1F1E8", + "label": "flag: New Caledonia", + "order": 4948, + "tags": ["NC", "flag"], + "unicode": "ðŸ‡ģðŸ‡Ļ" + }, + { + "group": 9, + "hexcode": "1F1F3-1F1EA", + "label": "flag: Niger", + "order": 4949, + "tags": ["NE", "flag"], + "unicode": "ðŸ‡ģ🇊" + }, + { + "group": 9, + "hexcode": "1F1F3-1F1EB", + "label": "flag: Norfolk Island", + "order": 4950, + "tags": ["NF", "flag"], + "unicode": "ðŸ‡ģðŸ‡Ŧ" + }, + { + "group": 9, + "hexcode": "1F1F3-1F1EC", + "label": "flag: Nigeria", + "order": 4951, + "tags": ["NG", "flag"], + "unicode": "ðŸ‡ģ🇎" + }, + { + "group": 9, + "hexcode": "1F1F3-1F1EE", + "label": "flag: Nicaragua", + "order": 4952, + "tags": ["NI", "flag"], + "unicode": "ðŸ‡ģðŸ‡Ū" + }, + { + "group": 9, + "hexcode": "1F1F3-1F1F1", + "label": "flag: Netherlands", + "order": 4953, + "tags": ["NL", "flag"], + "unicode": "ðŸ‡ģðŸ‡ą" + }, + { + "group": 9, + "hexcode": "1F1F3-1F1F4", + "label": "flag: Norway", + "order": 4954, + "tags": ["NO", "flag"], + "unicode": "ðŸ‡ģðŸ‡ī" + }, + { + "group": 9, + "hexcode": "1F1F3-1F1F5", + "label": "flag: Nepal", + "order": 4955, + "tags": ["NP", "flag"], + "unicode": "ðŸ‡ģðŸ‡ĩ" + }, + { + "group": 9, + "hexcode": "1F1F3-1F1F7", + "label": "flag: Nauru", + "order": 4956, + "tags": ["NR", "flag"], + "unicode": "ðŸ‡ģ🇷" + }, + { + "group": 9, + "hexcode": "1F1F3-1F1FA", + "label": "flag: Niue", + "order": 4957, + "tags": ["NU", "flag"], + "unicode": "ðŸ‡ģ🇚" + }, + { + "group": 9, + "hexcode": "1F1F3-1F1FF", + "label": "flag: New Zealand", + "order": 4958, + "tags": ["NZ", "flag"], + "unicode": "ðŸ‡ģðŸ‡ŋ" + }, + { + "group": 9, + "hexcode": "1F1F4-1F1F2", + "label": "flag: Oman", + "order": 4959, + "tags": ["OM", "flag"], + "unicode": "ðŸ‡īðŸ‡ē" + }, + { + "group": 9, + "hexcode": "1F1F5-1F1E6", + "label": "flag: Panama", + "order": 4960, + "tags": ["PA", "flag"], + "unicode": "ðŸ‡ĩðŸ‡Ķ" + }, + { + "group": 9, + "hexcode": "1F1F5-1F1EA", + "label": "flag: Peru", + "order": 4961, + "tags": ["PE", "flag"], + "unicode": "ðŸ‡ĩ🇊" + }, + { + "group": 9, + "hexcode": "1F1F5-1F1EB", + "label": "flag: French Polynesia", + "order": 4962, + "tags": ["PF", "flag"], + "unicode": "ðŸ‡ĩðŸ‡Ŧ" + }, + { + "group": 9, + "hexcode": "1F1F5-1F1EC", + "label": "flag: Papua New Guinea", + "order": 4963, + "tags": ["PG", "flag"], + "unicode": "ðŸ‡ĩ🇎" + }, + { + "group": 9, + "hexcode": "1F1F5-1F1ED", + "label": "flag: Philippines", + "order": 4964, + "tags": ["PH", "flag"], + "unicode": "ðŸ‡ĩ🇭" + }, + { + "group": 9, + "hexcode": "1F1F5-1F1F0", + "label": "flag: Pakistan", + "order": 4965, + "tags": ["PK", "flag"], + "unicode": "ðŸ‡ĩ🇰" + }, + { + "group": 9, + "hexcode": "1F1F5-1F1F1", + "label": "flag: Poland", + "order": 4966, + "tags": ["PL", "flag"], + "unicode": "ðŸ‡ĩðŸ‡ą" + }, + { + "group": 9, + "hexcode": "1F1F5-1F1F2", + "label": "flag: St. Pierre & Miquelon", + "order": 4967, + "tags": ["PM", "flag"], + "unicode": "ðŸ‡ĩðŸ‡ē" + }, + { + "group": 9, + "hexcode": "1F1F5-1F1F3", + "label": "flag: Pitcairn Islands", + "order": 4968, + "tags": ["PN", "flag"], + "unicode": "ðŸ‡ĩðŸ‡ģ" + }, + { + "group": 9, + "hexcode": "1F1F5-1F1F7", + "label": "flag: Puerto Rico", + "order": 4969, + "tags": ["PR", "flag"], + "unicode": "ðŸ‡ĩ🇷" + }, + { + "group": 9, + "hexcode": "1F1F5-1F1F8", + "label": "flag: Palestinian Territories", + "order": 4970, + "tags": ["PS", "flag"], + "unicode": "ðŸ‡ĩðŸ‡ļ" + }, + { + "group": 9, + "hexcode": "1F1F5-1F1F9", + "label": "flag: Portugal", + "order": 4971, + "tags": ["PT", "flag"], + "unicode": "ðŸ‡ĩðŸ‡đ" + }, + { + "group": 9, + "hexcode": "1F1F5-1F1FC", + "label": "flag: Palau", + "order": 4972, + "tags": ["PW", "flag"], + "unicode": "ðŸ‡ĩ🇞" + }, + { + "group": 9, + "hexcode": "1F1F5-1F1FE", + "label": "flag: Paraguay", + "order": 4973, + "tags": ["PY", "flag"], + "unicode": "ðŸ‡ĩðŸ‡ū" + }, + { + "group": 9, + "hexcode": "1F1F6-1F1E6", + "label": "flag: Qatar", + "order": 4974, + "tags": ["QA", "flag"], + "unicode": "ðŸ‡ķðŸ‡Ķ" + }, + { + "group": 9, + "hexcode": "1F1F7-1F1EA", + "label": "flag: RÃĐunion", + "order": 4975, + "tags": ["RE", "flag"], + "unicode": "🇷🇊" + }, + { + "group": 9, + "hexcode": "1F1F7-1F1F4", + "label": "flag: Romania", + "order": 4976, + "tags": ["RO", "flag"], + "unicode": "🇷ðŸ‡ī" + }, + { + "group": 9, + "hexcode": "1F1F7-1F1F8", + "label": "flag: Serbia", + "order": 4977, + "tags": ["RS", "flag"], + "unicode": "🇷ðŸ‡ļ" + }, + { + "group": 9, + "hexcode": "1F1F7-1F1FA", + "label": "flag: Russia", + "order": 4978, + "tags": ["RU", "flag"], + "unicode": "🇷🇚" + }, + { + "group": 9, + "hexcode": "1F1F7-1F1FC", + "label": "flag: Rwanda", + "order": 4979, + "tags": ["RW", "flag"], + "unicode": "🇷🇞" + }, + { + "group": 9, + "hexcode": "1F1F8-1F1E6", + "label": "flag: Saudi Arabia", + "order": 4980, + "tags": ["SA", "flag"], + "unicode": "ðŸ‡ļðŸ‡Ķ" + }, + { + "group": 9, + "hexcode": "1F1F8-1F1E7", + "label": "flag: Solomon Islands", + "order": 4981, + "tags": ["SB", "flag"], + "unicode": "ðŸ‡ļ🇧" + }, + { + "group": 9, + "hexcode": "1F1F8-1F1E8", + "label": "flag: Seychelles", + "order": 4982, + "tags": ["SC", "flag"], + "unicode": "ðŸ‡ļðŸ‡Ļ" + }, + { + "group": 9, + "hexcode": "1F1F8-1F1E9", + "label": "flag: Sudan", + "order": 4983, + "tags": ["SD", "flag"], + "unicode": "ðŸ‡ļðŸ‡Đ" + }, + { + "group": 9, + "hexcode": "1F1F8-1F1EA", + "label": "flag: Sweden", + "order": 4984, + "tags": ["SE", "flag"], + "unicode": "ðŸ‡ļ🇊" + }, + { + "group": 9, + "hexcode": "1F1F8-1F1EC", + "label": "flag: Singapore", + "order": 4985, + "tags": ["SG", "flag"], + "unicode": "ðŸ‡ļ🇎" + }, + { + "group": 9, + "hexcode": "1F1F8-1F1ED", + "label": "flag: St. Helena", + "order": 4986, + "tags": ["SH", "flag"], + "unicode": "ðŸ‡ļ🇭" + }, + { + "group": 9, + "hexcode": "1F1F8-1F1EE", + "label": "flag: Slovenia", + "order": 4987, + "tags": ["SI", "flag"], + "unicode": "ðŸ‡ļðŸ‡Ū" + }, + { + "group": 9, + "hexcode": "1F1F8-1F1EF", + "label": "flag: Svalbard & Jan Mayen", + "order": 4988, + "tags": ["SJ", "flag"], + "unicode": "ðŸ‡ļðŸ‡Ŋ" + }, + { + "group": 9, + "hexcode": "1F1F8-1F1F0", + "label": "flag: Slovakia", + "order": 4989, + "tags": ["SK", "flag"], + "unicode": "ðŸ‡ļ🇰" + }, + { + "group": 9, + "hexcode": "1F1F8-1F1F1", + "label": "flag: Sierra Leone", + "order": 4990, + "tags": ["SL", "flag"], + "unicode": "ðŸ‡ļðŸ‡ą" + }, + { + "group": 9, + "hexcode": "1F1F8-1F1F2", + "label": "flag: San Marino", + "order": 4991, + "tags": ["SM", "flag"], + "unicode": "ðŸ‡ļðŸ‡ē" + }, + { + "group": 9, + "hexcode": "1F1F8-1F1F3", + "label": "flag: Senegal", + "order": 4992, + "tags": ["SN", "flag"], + "unicode": "ðŸ‡ļðŸ‡ģ" + }, + { + "group": 9, + "hexcode": "1F1F8-1F1F4", + "label": "flag: Somalia", + "order": 4993, + "tags": ["SO", "flag"], + "unicode": "ðŸ‡ļðŸ‡ī" + }, + { + "group": 9, + "hexcode": "1F1F8-1F1F7", + "label": "flag: Suriname", + "order": 4994, + "tags": ["SR", "flag"], + "unicode": "ðŸ‡ļ🇷" + }, + { + "group": 9, + "hexcode": "1F1F8-1F1F8", + "label": "flag: South Sudan", + "order": 4995, + "tags": ["SS", "flag"], + "unicode": "ðŸ‡ļðŸ‡ļ" + }, + { + "group": 9, + "hexcode": "1F1F8-1F1F9", + "label": "flag: SÃĢo TomÃĐ & Príncipe", + "order": 4996, + "tags": ["ST", "flag"], + "unicode": "ðŸ‡ļðŸ‡đ" + }, + { + "group": 9, + "hexcode": "1F1F8-1F1FB", + "label": "flag: El Salvador", + "order": 4997, + "tags": ["SV", "flag"], + "unicode": "ðŸ‡ļðŸ‡ŧ" + }, + { + "group": 9, + "hexcode": "1F1F8-1F1FD", + "label": "flag: Sint Maarten", + "order": 4998, + "tags": ["SX", "flag"], + "unicode": "ðŸ‡ļðŸ‡―" + }, + { + "group": 9, + "hexcode": "1F1F8-1F1FE", + "label": "flag: Syria", + "order": 4999, + "tags": ["SY", "flag"], + "unicode": "ðŸ‡ļðŸ‡ū" + }, + { + "group": 9, + "hexcode": "1F1F8-1F1FF", + "label": "flag: Eswatini", + "order": 5000, + "tags": ["SZ", "flag"], + "unicode": "ðŸ‡ļðŸ‡ŋ" + }, + { + "group": 9, + "hexcode": "1F1F9-1F1E6", + "label": "flag: Tristan da Cunha", + "order": 5001, + "tags": ["TA", "flag"], + "unicode": "ðŸ‡đðŸ‡Ķ" + }, + { + "group": 9, + "hexcode": "1F1F9-1F1E8", + "label": "flag: Turks & Caicos Islands", + "order": 5002, + "tags": ["TC", "flag"], + "unicode": "ðŸ‡đðŸ‡Ļ" + }, + { + "group": 9, + "hexcode": "1F1F9-1F1E9", + "label": "flag: Chad", + "order": 5003, + "tags": ["TD", "flag"], + "unicode": "ðŸ‡đðŸ‡Đ" + }, + { + "group": 9, + "hexcode": "1F1F9-1F1EB", + "label": "flag: French Southern Territories", + "order": 5004, + "tags": ["TF", "flag"], + "unicode": "ðŸ‡đðŸ‡Ŧ" + }, + { + "group": 9, + "hexcode": "1F1F9-1F1EC", + "label": "flag: Togo", + "order": 5005, + "tags": ["TG", "flag"], + "unicode": "ðŸ‡đ🇎" + }, + { + "group": 9, + "hexcode": "1F1F9-1F1ED", + "label": "flag: Thailand", + "order": 5006, + "tags": ["TH", "flag"], + "unicode": "ðŸ‡đ🇭" + }, + { + "group": 9, + "hexcode": "1F1F9-1F1EF", + "label": "flag: Tajikistan", + "order": 5007, + "tags": ["TJ", "flag"], + "unicode": "ðŸ‡đðŸ‡Ŋ" + }, + { + "group": 9, + "hexcode": "1F1F9-1F1F0", + "label": "flag: Tokelau", + "order": 5008, + "tags": ["TK", "flag"], + "unicode": "ðŸ‡đ🇰" + }, + { + "group": 9, + "hexcode": "1F1F9-1F1F1", + "label": "flag: Timor-Leste", + "order": 5009, + "tags": ["TL", "flag"], + "unicode": "ðŸ‡đðŸ‡ą" + }, + { + "group": 9, + "hexcode": "1F1F9-1F1F2", + "label": "flag: Turkmenistan", + "order": 5010, + "tags": ["TM", "flag"], + "unicode": "ðŸ‡đðŸ‡ē" + }, + { + "group": 9, + "hexcode": "1F1F9-1F1F3", + "label": "flag: Tunisia", + "order": 5011, + "tags": ["TN", "flag"], + "unicode": "ðŸ‡đðŸ‡ģ" + }, + { + "group": 9, + "hexcode": "1F1F9-1F1F4", + "label": "flag: Tonga", + "order": 5012, + "tags": ["TO", "flag"], + "unicode": "ðŸ‡đðŸ‡ī" + }, + { + "group": 9, + "hexcode": "1F1F9-1F1F7", + "label": "flag: TÞrkiye", + "order": 5013, + "tags": ["TR", "flag"], + "unicode": "ðŸ‡đ🇷" + }, + { + "group": 9, + "hexcode": "1F1F9-1F1F9", + "label": "flag: Trinidad & Tobago", + "order": 5014, + "tags": ["TT", "flag"], + "unicode": "ðŸ‡đðŸ‡đ" + }, + { + "group": 9, + "hexcode": "1F1F9-1F1FB", + "label": "flag: Tuvalu", + "order": 5015, + "tags": ["TV", "flag"], + "unicode": "ðŸ‡đðŸ‡ŧ" + }, + { + "group": 9, + "hexcode": "1F1F9-1F1FC", + "label": "flag: Taiwan", + "order": 5016, + "tags": ["TW", "flag"], + "unicode": "ðŸ‡đ🇞" + }, + { + "group": 9, + "hexcode": "1F1F9-1F1FF", + "label": "flag: Tanzania", + "order": 5017, + "tags": ["TZ", "flag"], + "unicode": "ðŸ‡đðŸ‡ŋ" + }, + { + "group": 9, + "hexcode": "1F1FA-1F1E6", + "label": "flag: Ukraine", + "order": 5018, + "tags": ["UA", "flag"], + "unicode": "🇚ðŸ‡Ķ" + }, + { + "group": 9, + "hexcode": "1F1FA-1F1EC", + "label": "flag: Uganda", + "order": 5019, + "tags": ["UG", "flag"], + "unicode": "🇚🇎" + }, + { + "group": 9, + "hexcode": "1F1FA-1F1F2", + "label": "flag: U.S. Outlying Islands", + "order": 5020, + "tags": ["UM", "flag"], + "unicode": "🇚ðŸ‡ē" + }, + { + "group": 9, + "hexcode": "1F1FA-1F1F3", + "label": "flag: United Nations", + "order": 5021, + "tags": ["UN", "flag"], + "unicode": "🇚ðŸ‡ģ" + }, + { + "group": 9, + "hexcode": "1F1FA-1F1F8", + "label": "flag: United States", + "order": 5022, + "tags": ["US", "flag"], + "unicode": "🇚ðŸ‡ļ" + }, + { + "group": 9, + "hexcode": "1F1FA-1F1FE", + "label": "flag: Uruguay", + "order": 5023, + "tags": ["UY", "flag"], + "unicode": "🇚ðŸ‡ū" + }, + { + "group": 9, + "hexcode": "1F1FA-1F1FF", + "label": "flag: Uzbekistan", + "order": 5024, + "tags": ["UZ", "flag"], + "unicode": "🇚ðŸ‡ŋ" + }, + { + "group": 9, + "hexcode": "1F1FB-1F1E6", + "label": "flag: Vatican City", + "order": 5025, + "tags": ["VA", "flag"], + "unicode": "ðŸ‡ŧðŸ‡Ķ" + }, + { + "group": 9, + "hexcode": "1F1FB-1F1E8", + "label": "flag: St. Vincent & Grenadines", + "order": 5026, + "tags": ["VC", "flag"], + "unicode": "ðŸ‡ŧðŸ‡Ļ" + }, + { + "group": 9, + "hexcode": "1F1FB-1F1EA", + "label": "flag: Venezuela", + "order": 5027, + "tags": ["VE", "flag"], + "unicode": "ðŸ‡ŧ🇊" + }, + { + "group": 9, + "hexcode": "1F1FB-1F1EC", + "label": "flag: British Virgin Islands", + "order": 5028, + "tags": ["VG", "flag"], + "unicode": "ðŸ‡ŧ🇎" + }, + { + "group": 9, + "hexcode": "1F1FB-1F1EE", + "label": "flag: U.S. Virgin Islands", + "order": 5029, + "tags": ["VI", "flag"], + "unicode": "ðŸ‡ŧðŸ‡Ū" + }, + { + "group": 9, + "hexcode": "1F1FB-1F1F3", + "label": "flag: Vietnam", + "order": 5030, + "tags": ["VN", "flag"], + "unicode": "ðŸ‡ŧðŸ‡ģ" + }, + { + "group": 9, + "hexcode": "1F1FB-1F1FA", + "label": "flag: Vanuatu", + "order": 5031, + "tags": ["VU", "flag"], + "unicode": "ðŸ‡ŧ🇚" + }, + { + "group": 9, + "hexcode": "1F1FC-1F1EB", + "label": "flag: Wallis & Futuna", + "order": 5032, + "tags": ["WF", "flag"], + "unicode": "🇞ðŸ‡Ŧ" + }, + { + "group": 9, + "hexcode": "1F1FC-1F1F8", + "label": "flag: Samoa", + "order": 5033, + "tags": ["WS", "flag"], + "unicode": "🇞ðŸ‡ļ" + }, + { + "group": 9, + "hexcode": "1F1FD-1F1F0", + "label": "flag: Kosovo", + "order": 5034, + "tags": ["XK", "flag"], + "unicode": "ðŸ‡―ðŸ‡°" + }, + { + "group": 9, + "hexcode": "1F1FE-1F1EA", + "label": "flag: Yemen", + "order": 5035, + "tags": ["YE", "flag"], + "unicode": "ðŸ‡ū🇊" + }, + { + "group": 9, + "hexcode": "1F1FE-1F1F9", + "label": "flag: Mayotte", + "order": 5036, + "tags": ["YT", "flag"], + "unicode": "ðŸ‡ūðŸ‡đ" + }, + { + "group": 9, + "hexcode": "1F1FF-1F1E6", + "label": "flag: South Africa", + "order": 5037, + "tags": ["ZA", "flag"], + "unicode": "ðŸ‡ŋðŸ‡Ķ" + }, + { + "group": 9, + "hexcode": "1F1FF-1F1F2", + "label": "flag: Zambia", + "order": 5038, + "tags": ["ZM", "flag"], + "unicode": "ðŸ‡ŋðŸ‡ē" + }, + { + "group": 9, + "hexcode": "1F1FF-1F1FC", + "label": "flag: Zimbabwe", + "order": 5039, + "tags": ["ZW", "flag"], + "unicode": "ðŸ‡ŋ🇞" + }, + { + "group": 9, + "hexcode": "1F3F4-E0067-E0062-E0065-E006E-E0067-E007F", + "label": "flag: England", + "order": 5040, + "tags": ["flag", "gbeng"], + "unicode": "ðŸī󠁧ó Ēó Ĩó Ū󠁧ó ŋ" + }, + { + "group": 9, + "hexcode": "1F3F4-E0067-E0062-E0073-E0063-E0074-E007F", + "label": "flag: Scotland", + "order": 5041, + "tags": ["flag", "gbsct"], + "unicode": "ðŸī󠁧ó Ēó ģó Ģó īó ŋ" + }, + { + "group": 9, + "hexcode": "1F3F4-E0067-E0062-E0077-E006C-E0073-E007F", + "label": "flag: Wales", + "order": 5042, + "tags": ["flag", "gbwls"], + "unicode": "ðŸī󠁧ó Ē󠁷󠁎ó ģó ŋ" + } + ] + } +] diff --git a/packages/frontend/component/src/ui/icon-picker/picker/emoji/emoji-picker.css.ts b/packages/frontend/component/src/ui/icon-picker/picker/emoji/emoji-picker.css.ts new file mode 100644 index 0000000000..e560f99e59 --- /dev/null +++ b/packages/frontend/component/src/ui/icon-picker/picker/emoji/emoji-picker.css.ts @@ -0,0 +1,42 @@ +import { cssVarV2 } from '@toeverything/theme/v2'; +import { style } from '@vanilla-extract/css'; + +export const skinTrigger = style({}); + +// header skin +export const skinList = style({ + display: 'flex', + flexDirection: 'row', + gap: 2, +}); +export const skinItem = style({}); + +// content +export const loadingWrapper = style({ + height: 120, + flexGrow: 1, + display: 'flex', + alignItems: 'center', + justifyContent: 'center', + fontSize: 12, + color: cssVarV2.text.secondary, +}); + +export const footer = style({ + display: 'flex', + justifyContent: 'space-between', + alignItems: 'center', + padding: '8px 16px', + borderTop: `0.5px solid ${cssVarV2.layer.insideBorder.border}`, +}); + +export const footerButton = style({}); +export const footerButtonActive = style({ + backgroundColor: cssVarV2.layer.background.hoverOverlay, +}); +export const footerIcon = style({ + color: cssVarV2.icon.secondary, +}); +export const footerIconActive = style({ + color: cssVarV2.icon.primary, +}); diff --git a/packages/frontend/component/src/ui/icon-picker/picker/emoji/emoji-picker.tsx b/packages/frontend/component/src/ui/icon-picker/picker/emoji/emoji-picker.tsx new file mode 100644 index 0000000000..ace2ffddbf --- /dev/null +++ b/packages/frontend/component/src/ui/icon-picker/picker/emoji/emoji-picker.tsx @@ -0,0 +1,332 @@ +import { RecentIcon, SearchIcon } from '@blocksuite/icons/rc'; +import { cssVarV2 } from '@toeverything/theme/v2'; +import clsx from 'clsx'; +import { + memo, + startTransition, + useCallback, + useEffect, + useRef, + useState, +} from 'react'; + +import { IconButton } from '../../../button'; +import Input from '../../../input'; +import { Loading } from '../../../loading'; +import { Menu } from '../../../menu'; +import { Scrollable } from '../../../scrollbar'; +import * as pickerStyles from '../picker.css'; +import { GROUP_ICON_MAP, type GroupName, GROUPS } from './constants'; +import rawData from './data/en.json'; +// import { emojiGroupList } from './gen-data'; +import * as styles from './emoji-picker.css'; +import type { CompactEmoji } from './type'; + +type EmojiGroup = { + name: string; + emojis: Array; +}; +const emojiGroupList = rawData as EmojiGroup[]; + +const useRecentEmojis = () => { + const [recentEmojis, setRecentEmojis] = useState>([]); + + useEffect(() => { + const recentEmojis = localStorage.getItem('recentEmojis'); + setRecentEmojis(recentEmojis ? recentEmojis.split(',') : []); + }, []); + + const add = useCallback((emoji: string) => { + setRecentEmojis(prevRecentEmojis => { + const newRecentEmojis = [ + emoji, + ...prevRecentEmojis.filter(e => e !== emoji), + ].slice(0, 10); + localStorage.setItem('recentEmojis', newRecentEmojis.join(',')); + return newRecentEmojis; + }); + }, []); + + return { + recentEmojis, + add, + }; +}; + +// Memoized individual emoji button to prevent unnecessary re-renders +const EmojiButton = memo(function EmojiButton({ + emoji, + onSelect, +}: { + emoji: string; + onSelect: (emoji: string) => void; +}) { + const handleClick = useCallback(() => { + onSelect(emoji); + }, [emoji, onSelect]); + + return ( + {emoji}} + onClick={handleClick} + /> + ); +}); + +// Memoized emoji groups to prevent unnecessary re-renders +const EmojiGroups = memo(function EmojiGroups({ + onSelect, + keyword, + skin, +}: { + onSelect: (emoji: string) => void; + keyword?: string; + skin?: number; +}) { + const [groups, setGroups] = useState([]); + + const loading = !keyword && !groups.length; + + useEffect(() => { + startTransition(() => { + if (!keyword) { + setGroups(emojiGroupList); + return; + } + + setGroups( + emojiGroupList + .map(group => ({ + ...group, + emojis: group.emojis.filter(emoji => + emoji.tags?.some(tag => tag.includes(keyword.toLowerCase())) + ), + })) + .filter(group => group.emojis.length > 0) + ); + }); + }, [keyword]); + + if (loading) { + return ( +
+ + Loading emojis... +
+ ); + } + + return groups.map(group => ( +
+
+ {group.name} +
+
+ {group.emojis.map(emoji => ( + + ))} +
+
+ )); +}); + +const skinList = [ + { unicode: '👋', value: undefined }, + { unicode: '👋ðŸŧ', value: 0 }, + { unicode: '👋🏞', value: 1 }, + { unicode: 'ðŸ‘‹ðŸ―', value: 2 }, + { unicode: '👋ðŸū', value: 3 }, + { unicode: '👋ðŸŋ', value: 4 }, +]; + +export const EmojiPicker = ({ + onSelect, +}: { + onSelect?: (emoji: string) => void; +}) => { + const scrollableRef = useRef(null); + + const [keyword, setKeyword] = useState(''); + const [activeGroupId, setActiveGroupId] = useState( + undefined + ); + const [skin, setSkin] = useState(undefined); + const { recentEmojis, add: addRecent } = useRecentEmojis(); + + const checkActiveGroup = useCallback(() => { + const scrollable = scrollableRef.current; + if (!scrollable) return; + + // get actual scrollable element + const viewport = scrollable.querySelector( + '[data-radix-scroll-area-viewport]' + ) as HTMLElement; + if (!viewport) return; + + const scrollTop = viewport.scrollTop; + + // find the first group that is at the top of the scrollable element + for (let i = emojiGroupList.length - 1; i >= 0; i--) { + const group = emojiGroupList[i]; + const groupElement = viewport.querySelector( + `[data-group-name="${group.name}"]` + ) as HTMLElement; + if (!groupElement) continue; + + // use offsetTop to get the position of the element relative to the scrollable element + const elementTop = groupElement.offsetTop; + + if (elementTop <= scrollTop + 50) { + setActiveGroupId(group.name); + return; + } + } + }, []); + + const jumpToGroup = useCallback((groupName: string) => { + const groupElement = scrollableRef.current?.querySelector( + `[data-group-name="${groupName}"]` + ) as HTMLElement; + if (!groupElement) return; + + setActiveGroupId(groupName); + groupElement.scrollIntoView({ behavior: 'smooth' }); + }, []); + + const handleEmojiSelect = useCallback( + (emoji: string) => { + addRecent(emoji); + onSelect?.(emoji); + }, + [addRecent, onSelect] + ); + + useEffect(() => { + checkActiveGroup(); + }, [checkActiveGroup]); + + return ( +
+
+ + +
+ } + placeholder="Filter..." + /> + + {skinList.map(skin => ( + {skin.unicode}} + onClick={() => setSkin(skin.value)} + /> + ))} + + } + > + + {skin !== undefined + ? skinList[skin + 1].unicode + : skinList[0].unicode} + + } + /> + + + + + {/* Recent */} + {recentEmojis.length ? ( +
+
+ Recent +
+
+ {recentEmojis.map(emoji => ( + + ))} +
+
+ ) : null} + + {/* Groups */} + +
+ +
+
+ {['Recent', ...GROUPS].map(group => { + const Icon = GROUP_ICON_MAP[group as GroupName] ?? RecentIcon; + const active = activeGroupId === group; + return ( + + } + className={clsx( + active ? styles.footerButtonActive : styles.footerButton + )} + onClick={() => jumpToGroup(group)} + /> + ); + })} +
+ + ); +}; diff --git a/packages/frontend/component/src/ui/icon-picker/picker/emoji/gen-data.ts b/packages/frontend/component/src/ui/icon-picker/picker/emoji/gen-data.ts new file mode 100644 index 0000000000..0f84989a0c --- /dev/null +++ b/packages/frontend/component/src/ui/icon-picker/picker/emoji/gen-data.ts @@ -0,0 +1,59 @@ +import compactEmojis from 'emojibase-data/en/compact.json'; + +import { type GroupName, GROUPS } from './constants'; +import type { CompactEmoji } from './type'; + +const emojiGroupObj = GROUPS.reduce( + (acc, name) => ({ + ...acc, + [name]: { + emojis: [] as CompactEmoji[], + }, + }), + {} as Record +); +compactEmojis.forEach((emoji: CompactEmoji) => { + const group = emoji.group; + if (group === undefined) return; + + switch (group) { + case 0: + case 1: + emojiGroupObj['Smileys & People'].emojis.push(emoji); + break; + case 2: + // ðŸŧðŸžðŸ―ðŸūðŸŋðŸĶ°ðŸĶąðŸĶģðŸĶē + break; + case 3: + emojiGroupObj['Animals & Nature'].emojis.push(emoji); + break; + case 4: + emojiGroupObj['Food & Drink'].emojis.push(emoji); + break; + case 5: + emojiGroupObj['Travel & Places'].emojis.push(emoji); + break; + case 6: + emojiGroupObj['Activity'].emojis.push(emoji); + break; + case 7: + emojiGroupObj['Objects'].emojis.push(emoji); + break; + case 8: + emojiGroupObj['Symbols'].emojis.push(emoji); + break; + case 9: + emojiGroupObj['Flags'].emojis.push(emoji); + break; + } +}); + +export const emojiGroupList = GROUPS.map(name => ({ + name, + emojis: emojiGroupObj[name].emojis.sort((a, b) => a.order - b.order), +})); + +// it may take 300~500ms to group and sort the emojis in runtime +// so for now we just generate the data in build time +// and save it to ./data +console.log(JSON.stringify(emojiGroupList)); diff --git a/packages/frontend/component/src/ui/icon-picker/picker/emoji/icons/activity.tsx b/packages/frontend/component/src/ui/icon-picker/picker/emoji/icons/activity.tsx new file mode 100644 index 0000000000..23d6797c21 --- /dev/null +++ b/packages/frontend/component/src/ui/icon-picker/picker/emoji/icons/activity.tsx @@ -0,0 +1,21 @@ +import type { SVGProps } from 'react'; + +export const ActivityIcon = (attrs: SVGProps) => { + return ( + + + + ); +}; diff --git a/packages/frontend/component/src/ui/icon-picker/picker/emoji/icons/animal.tsx b/packages/frontend/component/src/ui/icon-picker/picker/emoji/icons/animal.tsx new file mode 100644 index 0000000000..ae637af839 --- /dev/null +++ b/packages/frontend/component/src/ui/icon-picker/picker/emoji/icons/animal.tsx @@ -0,0 +1,21 @@ +import type { SVGProps } from 'react'; + +export const AnimalIcon = ({ ...attrs }: SVGProps) => { + return ( + + + + ); +}; diff --git a/packages/frontend/component/src/ui/icon-picker/picker/emoji/icons/flag.tsx b/packages/frontend/component/src/ui/icon-picker/picker/emoji/icons/flag.tsx new file mode 100644 index 0000000000..3c1e28049b --- /dev/null +++ b/packages/frontend/component/src/ui/icon-picker/picker/emoji/icons/flag.tsx @@ -0,0 +1,21 @@ +import type { SVGProps } from 'react'; + +export const FlagIcon = (attrs: SVGProps) => { + return ( + + + + ); +}; diff --git a/packages/frontend/component/src/ui/icon-picker/picker/emoji/icons/food.tsx b/packages/frontend/component/src/ui/icon-picker/picker/emoji/icons/food.tsx new file mode 100644 index 0000000000..84cadfceb4 --- /dev/null +++ b/packages/frontend/component/src/ui/icon-picker/picker/emoji/icons/food.tsx @@ -0,0 +1,21 @@ +import type { SVGProps } from 'react'; + +export const FoodIcon = ({ ...attrs }: SVGProps) => { + return ( + + + + ); +}; diff --git a/packages/frontend/component/src/ui/icon-picker/picker/emoji/icons/object.tsx b/packages/frontend/component/src/ui/icon-picker/picker/emoji/icons/object.tsx new file mode 100644 index 0000000000..291e4be119 --- /dev/null +++ b/packages/frontend/component/src/ui/icon-picker/picker/emoji/icons/object.tsx @@ -0,0 +1,21 @@ +import type { HTMLAttributes } from 'react'; + +export const ObjectIcon = (attrs: HTMLAttributes) => { + return ( + + + + ); +}; diff --git a/packages/frontend/component/src/ui/icon-picker/picker/emoji/icons/smile.tsx b/packages/frontend/component/src/ui/icon-picker/picker/emoji/icons/smile.tsx new file mode 100644 index 0000000000..8fdab11e9d --- /dev/null +++ b/packages/frontend/component/src/ui/icon-picker/picker/emoji/icons/smile.tsx @@ -0,0 +1,21 @@ +import type { SVGProps } from 'react'; + +export const SmileIcon = ({ ...attrs }: SVGProps) => { + return ( + + + + ); +}; diff --git a/packages/frontend/component/src/ui/icon-picker/picker/emoji/icons/symbol.tsx b/packages/frontend/component/src/ui/icon-picker/picker/emoji/icons/symbol.tsx new file mode 100644 index 0000000000..9a89f8ceb4 --- /dev/null +++ b/packages/frontend/component/src/ui/icon-picker/picker/emoji/icons/symbol.tsx @@ -0,0 +1,21 @@ +import type { HTMLAttributes } from 'react'; + +export const SymbolIcon = (attrs: HTMLAttributes) => { + return ( + + + + ); +}; diff --git a/packages/frontend/component/src/ui/icon-picker/picker/emoji/icons/travel.tsx b/packages/frontend/component/src/ui/icon-picker/picker/emoji/icons/travel.tsx new file mode 100644 index 0000000000..19b167c039 --- /dev/null +++ b/packages/frontend/component/src/ui/icon-picker/picker/emoji/icons/travel.tsx @@ -0,0 +1,21 @@ +import type { SVGProps } from 'react'; + +export const TravelIcon = (attrs: SVGProps) => { + return ( + + + + ); +}; diff --git a/packages/frontend/component/src/ui/icon-picker/picker/emoji/type.ts b/packages/frontend/component/src/ui/icon-picker/picker/emoji/type.ts new file mode 100644 index 0000000000..8668aa3ac4 --- /dev/null +++ b/packages/frontend/component/src/ui/icon-picker/picker/emoji/type.ts @@ -0,0 +1,11 @@ +export type CompactEmoji = { + label: string; + annotation?: string; + group: number; + hexcode: string; + order: number; + shortcodes: string[]; + tags: string[]; + unicode: string; + skins?: Array>; +}; diff --git a/packages/frontend/component/src/ui/icon-picker/picker/picker.css.ts b/packages/frontend/component/src/ui/icon-picker/picker/picker.css.ts new file mode 100644 index 0000000000..8c47b76c75 --- /dev/null +++ b/packages/frontend/component/src/ui/icon-picker/picker/picker.css.ts @@ -0,0 +1,69 @@ +import { cssVarV2 } from '@toeverything/theme/v2'; +import { style } from '@vanilla-extract/css'; + +export const root = style({ + height: '100%', + display: 'flex', + flexDirection: 'column', +}); + +// search + +export const searchContainer = style({ + padding: '16px 12px 8px 12px', + display: 'flex', + gap: 8, +}); + +export const searchInput = style({ + width: 0, + flexGrow: 1, + height: `32px !important`, + borderRadius: `4px !important`, + gap: `0px !important`, +}); + +// content scroll +export const scrollRoot = style({ + height: 0, + flexGrow: 1, + padding: '0px 12px', +}); + +export const scrollViewport = style({ + padding: '8px 0px', +}); + +// group +export const group = style({ + selectors: { + '&:not(:last-child)': { + marginBottom: 8, + }, + }, +}); + +export const groupName = style({ + fontSize: 12, + fontWeight: 500, + lineHeight: '18px', + color: cssVarV2.text.secondary, + height: 30, + display: 'flex', + alignItems: 'center', + padding: '0px 4px', +}); + +export const groupGrid = style({ + display: 'flex', + flexWrap: 'wrap', + justifyContent: 'space-between', + gap: 4, + + // fill the last row with empty space + '::after': { + content: '""', + flex: 'auto', + minWidth: '24px', + }, +}); diff --git a/packages/frontend/component/src/ui/icon-picker/renderer.tsx b/packages/frontend/component/src/ui/icon-picker/renderer.tsx new file mode 100644 index 0000000000..f8a93cc23d --- /dev/null +++ b/packages/frontend/component/src/ui/icon-picker/renderer.tsx @@ -0,0 +1,18 @@ +import { AffineIconRenderer } from './renderer/affine-icon'; + +export const IconRenderer = ({ + iconType, + icon, +}: { + iconType: 'emoji' | 'affine-icon'; + icon: string; +}) => { + if (iconType === 'emoji') { + return icon; + } + if (iconType === 'affine-icon') { + return ; + } + + return null; +}; diff --git a/packages/frontend/component/src/ui/icon-picker/renderer/affine-icon.tsx b/packages/frontend/component/src/ui/icon-picker/renderer/affine-icon.tsx new file mode 100644 index 0000000000..0e59476bdb --- /dev/null +++ b/packages/frontend/component/src/ui/icon-picker/renderer/affine-icon.tsx @@ -0,0 +1,19 @@ +import * as allIcons from '@blocksuite/icons/rc'; +import type { SVGProps } from 'react'; + +export const AffineIconRenderer = ({ + name, + ...props +}: { + name: string; +} & SVGProps) => { + const Icon = allIcons[ + `${name}Icon` as keyof typeof allIcons + ] as React.ComponentType>; + + if (!Icon) { + return null; + } + + return ; +}; diff --git a/packages/frontend/core/package.json b/packages/frontend/core/package.json index 2f1d20bcb6..7312a843a1 100644 --- a/packages/frontend/core/package.json +++ b/packages/frontend/core/package.json @@ -24,7 +24,7 @@ "@blocksuite/affine-components": "workspace:*", "@blocksuite/affine-shared": "workspace:*", "@blocksuite/global": "workspace:*", - "@blocksuite/icons": "^2.2.13", + "@blocksuite/icons": "^2.2.17", "@blocksuite/std": "workspace:*", "@dotlottie/player-component": "^2.7.12", "@emotion/cache": "^11.14.0", diff --git a/yarn.lock b/yarn.lock index 393e9ea5b7..dbeb6a867a 100644 --- a/yarn.lock +++ b/yarn.lock @@ -184,7 +184,7 @@ __metadata: "@affine/error": "workspace:*" "@affine/graphql": "workspace:*" "@affine/routes": "workspace:*" - "@blocksuite/icons": "npm:^2.2.12" + "@blocksuite/icons": "npm:^2.2.17" "@radix-ui/react-accordion": "npm:^1.2.2" "@radix-ui/react-alert-dialog": "npm:^1.1.3" "@radix-ui/react-aspect-ratio": "npm:^1.1.1" @@ -253,7 +253,7 @@ __metadata: "@affine/i18n": "workspace:*" "@affine/nbstore": "workspace:*" "@blocksuite/affine": "workspace:*" - "@blocksuite/icons": "npm:^2.2.12" + "@blocksuite/icons": "npm:^2.2.17" "@capacitor/android": "npm:^7.0.0" "@capacitor/app": "npm:^7.0.0" "@capacitor/cli": "npm:^7.0.0" @@ -312,7 +312,7 @@ __metadata: "@atlaskit/pragmatic-drag-and-drop": "npm:^1.4.0" "@atlaskit/pragmatic-drag-and-drop-hitbox": "npm:^1.0.3" "@blocksuite/affine": "workspace:*" - "@blocksuite/icons": "npm:^2.2.12" + "@blocksuite/icons": "npm:^2.2.17" "@chromatic-com/storybook": "npm:^4.0.0" "@emoji-mart/data": "npm:^1.2.1" "@emoji-mart/react": "npm:^1.1.1" @@ -348,6 +348,7 @@ __metadata: clsx: "npm:^2.1.1" dayjs: "npm:^1.11.13" emoji-mart: "npm:^5.6.0" + emojibase-data: "npm:^16.0.3" foxact: "npm:^0.2.45" jotai: "npm:^2.10.3" lit: "npm:^3.2.1" @@ -409,7 +410,7 @@ __metadata: "@blocksuite/affine-ext-loader": "workspace:*" "@blocksuite/affine-shared": "workspace:*" "@blocksuite/global": "workspace:*" - "@blocksuite/icons": "npm:^2.2.13" + "@blocksuite/icons": "npm:^2.2.17" "@blocksuite/std": "workspace:*" "@dotlottie/player-component": "npm:^2.7.12" "@emotion/cache": "npm:^11.14.0" @@ -687,7 +688,7 @@ __metadata: "@affine/native": "workspace:*" "@affine/nbstore": "workspace:*" "@blocksuite/affine": "workspace:*" - "@blocksuite/icons": "npm:^2.2.12" + "@blocksuite/icons": "npm:^2.2.17" "@capacitor/app": "npm:^7.0.0" "@capacitor/browser": "npm:^7.0.0" "@capacitor/cli": "npm:^7.0.0" @@ -754,7 +755,7 @@ __metadata: "@affine/i18n": "workspace:*" "@affine/nbstore": "workspace:*" "@blocksuite/affine": "workspace:*" - "@blocksuite/icons": "npm:^2.2.12" + "@blocksuite/icons": "npm:^2.2.17" "@sentry/react": "npm:^9.2.0" "@toeverything/infra": "workspace:*" "@types/react": "npm:^19.0.1" @@ -2434,7 +2435,7 @@ __metadata: "@blocksuite/affine-shared": "workspace:*" "@blocksuite/affine-widget-slash-menu": "workspace:*" "@blocksuite/global": "workspace:*" - "@blocksuite/icons": "npm:^2.2.12" + "@blocksuite/icons": "npm:^2.2.17" "@blocksuite/std": "workspace:*" "@blocksuite/store": "workspace:*" "@floating-ui/dom": "npm:^1.6.13" @@ -2462,7 +2463,7 @@ __metadata: "@blocksuite/affine-shared": "workspace:*" "@blocksuite/affine-widget-slash-menu": "workspace:*" "@blocksuite/global": "workspace:*" - "@blocksuite/icons": "npm:^2.2.12" + "@blocksuite/icons": "npm:^2.2.17" "@blocksuite/std": "workspace:*" "@blocksuite/store": "workspace:*" "@lit/context": "npm:^1.1.2" @@ -2489,7 +2490,7 @@ __metadata: "@blocksuite/affine-shared": "workspace:*" "@blocksuite/affine-widget-slash-menu": "workspace:*" "@blocksuite/global": "workspace:*" - "@blocksuite/icons": "npm:^2.2.12" + "@blocksuite/icons": "npm:^2.2.17" "@blocksuite/std": "workspace:*" "@blocksuite/store": "workspace:*" "@emoji-mart/data": "npm:^1.2.1" @@ -2522,7 +2523,7 @@ __metadata: "@blocksuite/affine-shared": "workspace:*" "@blocksuite/affine-widget-slash-menu": "workspace:*" "@blocksuite/global": "workspace:*" - "@blocksuite/icons": "npm:^2.2.12" + "@blocksuite/icons": "npm:^2.2.17" "@blocksuite/std": "workspace:*" "@blocksuite/store": "workspace:*" "@floating-ui/dom": "npm:^1.6.13" @@ -2550,7 +2551,7 @@ __metadata: "@blocksuite/affine-widget-slash-menu": "workspace:*" "@blocksuite/data-view": "workspace:*" "@blocksuite/global": "workspace:*" - "@blocksuite/icons": "npm:^2.2.12" + "@blocksuite/icons": "npm:^2.2.17" "@blocksuite/std": "workspace:*" "@blocksuite/store": "workspace:*" "@floating-ui/dom": "npm:^1.6.13" @@ -2580,7 +2581,7 @@ __metadata: "@blocksuite/affine-widget-slash-menu": "workspace:*" "@blocksuite/data-view": "workspace:*" "@blocksuite/global": "workspace:*" - "@blocksuite/icons": "npm:^2.2.12" + "@blocksuite/icons": "npm:^2.2.17" "@blocksuite/std": "workspace:*" "@blocksuite/store": "workspace:*" "@emotion/css": "npm:^11.13.5" @@ -2636,7 +2637,7 @@ __metadata: "@blocksuite/affine-shared": "workspace:*" "@blocksuite/affine-widget-edgeless-toolbar": "workspace:*" "@blocksuite/global": "workspace:*" - "@blocksuite/icons": "npm:^2.2.12" + "@blocksuite/icons": "npm:^2.2.17" "@blocksuite/std": "workspace:*" "@blocksuite/store": "workspace:*" "@floating-ui/dom": "npm:^1.6.13" @@ -2664,7 +2665,7 @@ __metadata: "@blocksuite/affine-shared": "workspace:*" "@blocksuite/affine-widget-slash-menu": "workspace:*" "@blocksuite/global": "workspace:*" - "@blocksuite/icons": "npm:^2.2.12" + "@blocksuite/icons": "npm:^2.2.17" "@blocksuite/std": "workspace:*" "@blocksuite/store": "workspace:*" "@floating-ui/dom": "npm:^1.6.13" @@ -2696,7 +2697,7 @@ __metadata: "@blocksuite/affine-shared": "workspace:*" "@blocksuite/affine-widget-slash-menu": "workspace:*" "@blocksuite/global": "workspace:*" - "@blocksuite/icons": "npm:^2.2.12" + "@blocksuite/icons": "npm:^2.2.17" "@blocksuite/std": "workspace:*" "@blocksuite/store": "workspace:*" "@floating-ui/dom": "npm:^1.6.13" @@ -2727,7 +2728,7 @@ __metadata: "@blocksuite/affine-widget-edgeless-toolbar": "workspace:*" "@blocksuite/affine-widget-frame-title": "workspace:*" "@blocksuite/global": "workspace:*" - "@blocksuite/icons": "npm:^2.2.12" + "@blocksuite/icons": "npm:^2.2.17" "@blocksuite/std": "workspace:*" "@blocksuite/store": "workspace:*" "@floating-ui/dom": "npm:^1.6.13" @@ -2756,7 +2757,7 @@ __metadata: "@blocksuite/affine-shared": "workspace:*" "@blocksuite/affine-widget-slash-menu": "workspace:*" "@blocksuite/global": "workspace:*" - "@blocksuite/icons": "npm:^2.2.12" + "@blocksuite/icons": "npm:^2.2.17" "@blocksuite/std": "workspace:*" "@blocksuite/store": "workspace:*" "@floating-ui/dom": "npm:^1.6.13" @@ -2784,7 +2785,7 @@ __metadata: "@blocksuite/affine-shared": "workspace:*" "@blocksuite/affine-widget-slash-menu": "workspace:*" "@blocksuite/global": "workspace:*" - "@blocksuite/icons": "npm:^2.2.12" + "@blocksuite/icons": "npm:^2.2.17" "@blocksuite/std": "workspace:*" "@blocksuite/store": "workspace:*" "@floating-ui/dom": "npm:^1.6.13" @@ -2814,7 +2815,7 @@ __metadata: "@blocksuite/affine-rich-text": "workspace:*" "@blocksuite/affine-shared": "workspace:*" "@blocksuite/global": "workspace:*" - "@blocksuite/icons": "npm:^2.2.12" + "@blocksuite/icons": "npm:^2.2.17" "@blocksuite/std": "workspace:*" "@blocksuite/store": "workspace:*" "@floating-ui/dom": "npm:^1.6.13" @@ -2846,7 +2847,7 @@ __metadata: "@blocksuite/affine-shared": "workspace:*" "@blocksuite/affine-widget-slash-menu": "workspace:*" "@blocksuite/global": "workspace:*" - "@blocksuite/icons": "npm:^2.2.12" + "@blocksuite/icons": "npm:^2.2.17" "@blocksuite/std": "workspace:*" "@blocksuite/store": "workspace:*" "@lit/context": "npm:^1.1.2" @@ -2921,7 +2922,7 @@ __metadata: "@blocksuite/affine-widget-edgeless-toolbar": "workspace:*" "@blocksuite/data-view": "workspace:*" "@blocksuite/global": "workspace:*" - "@blocksuite/icons": "npm:^2.2.12" + "@blocksuite/icons": "npm:^2.2.17" "@blocksuite/std": "workspace:*" "@blocksuite/store": "workspace:*" "@floating-ui/dom": "npm:^1.6.13" @@ -2953,7 +2954,7 @@ __metadata: "@blocksuite/affine-shared": "workspace:*" "@blocksuite/affine-widget-slash-menu": "workspace:*" "@blocksuite/global": "workspace:*" - "@blocksuite/icons": "npm:^2.2.12" + "@blocksuite/icons": "npm:^2.2.17" "@blocksuite/std": "workspace:*" "@blocksuite/store": "workspace:*" "@floating-ui/dom": "npm:^1.6.13" @@ -3013,7 +3014,7 @@ __metadata: "@blocksuite/affine-widget-slash-menu": "workspace:*" "@blocksuite/data-view": "workspace:*" "@blocksuite/global": "workspace:*" - "@blocksuite/icons": "npm:^2.2.12" + "@blocksuite/icons": "npm:^2.2.17" "@blocksuite/std": "workspace:*" "@blocksuite/store": "workspace:*" "@emotion/css": "npm:^11.13.5" @@ -3033,7 +3034,7 @@ __metadata: "@blocksuite/affine-model": "workspace:*" "@blocksuite/affine-shared": "workspace:*" "@blocksuite/global": "workspace:*" - "@blocksuite/icons": "npm:^2.2.12" + "@blocksuite/icons": "npm:^2.2.17" "@blocksuite/std": "workspace:*" "@blocksuite/store": "workspace:*" "@blocksuite/sync": "workspace:*" @@ -3081,7 +3082,7 @@ __metadata: "@blocksuite/affine-shared": "workspace:*" "@blocksuite/data-view": "workspace:*" "@blocksuite/global": "workspace:*" - "@blocksuite/icons": "npm:^2.2.12" + "@blocksuite/icons": "npm:^2.2.17" "@blocksuite/std": "workspace:*" "@blocksuite/store": "workspace:*" "@floating-ui/dom": "npm:^1.6.13" @@ -3106,7 +3107,7 @@ __metadata: "@blocksuite/affine-model": "workspace:*" "@blocksuite/affine-shared": "workspace:*" "@blocksuite/global": "workspace:*" - "@blocksuite/icons": "npm:^2.2.12" + "@blocksuite/icons": "npm:^2.2.17" "@blocksuite/std": "workspace:*" "@blocksuite/store": "workspace:*" "@floating-ui/dom": "npm:^1.6.13" @@ -3130,7 +3131,7 @@ __metadata: "@blocksuite/affine-rich-text": "workspace:*" "@blocksuite/affine-shared": "workspace:*" "@blocksuite/global": "workspace:*" - "@blocksuite/icons": "npm:^2.2.12" + "@blocksuite/icons": "npm:^2.2.17" "@blocksuite/std": "workspace:*" "@blocksuite/store": "workspace:*" "@floating-ui/dom": "npm:^1.6.13" @@ -3156,7 +3157,7 @@ __metadata: "@blocksuite/affine-rich-text": "workspace:*" "@blocksuite/affine-shared": "workspace:*" "@blocksuite/global": "workspace:*" - "@blocksuite/icons": "npm:^2.2.12" + "@blocksuite/icons": "npm:^2.2.17" "@blocksuite/std": "workspace:*" "@blocksuite/store": "workspace:*" "@floating-ui/dom": "npm:^1.6.13" @@ -3184,7 +3185,7 @@ __metadata: "@blocksuite/affine-rich-text": "workspace:*" "@blocksuite/affine-shared": "workspace:*" "@blocksuite/global": "workspace:*" - "@blocksuite/icons": "npm:^2.2.12" + "@blocksuite/icons": "npm:^2.2.17" "@blocksuite/std": "workspace:*" "@blocksuite/store": "workspace:*" "@floating-ui/dom": "npm:^1.6.13" @@ -3211,7 +3212,7 @@ __metadata: "@blocksuite/affine-shared": "workspace:*" "@blocksuite/affine-widget-edgeless-toolbar": "workspace:*" "@blocksuite/global": "workspace:*" - "@blocksuite/icons": "npm:^2.2.12" + "@blocksuite/icons": "npm:^2.2.17" "@blocksuite/std": "workspace:*" "@blocksuite/store": "workspace:*" "@lit/context": "npm:^1.1.2" @@ -3240,7 +3241,7 @@ __metadata: "@blocksuite/affine-shared": "workspace:*" "@blocksuite/affine-widget-edgeless-toolbar": "workspace:*" "@blocksuite/global": "workspace:*" - "@blocksuite/icons": "npm:^2.2.12" + "@blocksuite/icons": "npm:^2.2.17" "@blocksuite/std": "workspace:*" "@blocksuite/store": "workspace:*" "@lit/context": "npm:^1.1.2" @@ -3269,7 +3270,7 @@ __metadata: "@blocksuite/affine-shared": "workspace:*" "@blocksuite/affine-widget-edgeless-toolbar": "workspace:*" "@blocksuite/global": "workspace:*" - "@blocksuite/icons": "npm:^2.2.12" + "@blocksuite/icons": "npm:^2.2.17" "@blocksuite/std": "workspace:*" "@blocksuite/store": "workspace:*" "@lit/context": "npm:^1.1.2" @@ -3300,7 +3301,7 @@ __metadata: "@blocksuite/affine-shared": "workspace:*" "@blocksuite/affine-widget-edgeless-toolbar": "workspace:*" "@blocksuite/global": "workspace:*" - "@blocksuite/icons": "npm:^2.2.12" + "@blocksuite/icons": "npm:^2.2.17" "@blocksuite/std": "workspace:*" "@blocksuite/store": "workspace:*" "@lit/context": "npm:^1.1.2" @@ -3335,7 +3336,7 @@ __metadata: "@blocksuite/affine-shared": "workspace:*" "@blocksuite/affine-widget-edgeless-toolbar": "workspace:*" "@blocksuite/global": "workspace:*" - "@blocksuite/icons": "npm:^2.2.12" + "@blocksuite/icons": "npm:^2.2.17" "@blocksuite/std": "workspace:*" "@blocksuite/store": "workspace:*" "@lit/context": "npm:^1.1.2" @@ -3367,7 +3368,7 @@ __metadata: "@blocksuite/affine-shared": "workspace:*" "@blocksuite/affine-widget-edgeless-toolbar": "workspace:*" "@blocksuite/global": "workspace:*" - "@blocksuite/icons": "npm:^2.2.12" + "@blocksuite/icons": "npm:^2.2.17" "@blocksuite/std": "workspace:*" "@blocksuite/store": "workspace:*" "@lit/context": "npm:^1.1.2" @@ -3395,7 +3396,7 @@ __metadata: "@blocksuite/affine-shared": "workspace:*" "@blocksuite/affine-widget-edgeless-toolbar": "workspace:*" "@blocksuite/global": "workspace:*" - "@blocksuite/icons": "npm:^2.2.12" + "@blocksuite/icons": "npm:^2.2.17" "@blocksuite/std": "workspace:*" "@blocksuite/store": "workspace:*" "@lit/context": "npm:^1.1.2" @@ -3424,7 +3425,7 @@ __metadata: "@blocksuite/affine-shared": "workspace:*" "@blocksuite/affine-widget-edgeless-toolbar": "workspace:*" "@blocksuite/global": "workspace:*" - "@blocksuite/icons": "npm:^2.2.12" + "@blocksuite/icons": "npm:^2.2.17" "@blocksuite/std": "workspace:*" "@blocksuite/store": "workspace:*" "@lit/context": "npm:^1.1.2" @@ -3453,7 +3454,7 @@ __metadata: "@blocksuite/affine-shared": "workspace:*" "@blocksuite/affine-widget-edgeless-toolbar": "workspace:*" "@blocksuite/global": "workspace:*" - "@blocksuite/icons": "npm:^2.2.12" + "@blocksuite/icons": "npm:^2.2.17" "@blocksuite/std": "workspace:*" "@blocksuite/store": "workspace:*" "@floating-ui/dom": "npm:^1.6.13" @@ -3482,7 +3483,7 @@ __metadata: "@blocksuite/affine-shared": "workspace:*" "@blocksuite/affine-widget-edgeless-toolbar": "workspace:*" "@blocksuite/global": "workspace:*" - "@blocksuite/icons": "npm:^2.2.12" + "@blocksuite/icons": "npm:^2.2.17" "@blocksuite/std": "workspace:*" "@blocksuite/store": "workspace:*" "@lit/context": "npm:^1.1.2" @@ -3544,7 +3545,7 @@ __metadata: "@blocksuite/affine-model": "workspace:*" "@blocksuite/affine-shared": "workspace:*" "@blocksuite/global": "workspace:*" - "@blocksuite/icons": "npm:^2.2.12" + "@blocksuite/icons": "npm:^2.2.17" "@blocksuite/std": "workspace:*" "@blocksuite/store": "workspace:*" "@floating-ui/dom": "npm:^1.6.13" @@ -3575,7 +3576,7 @@ __metadata: "@blocksuite/affine-rich-text": "workspace:*" "@blocksuite/affine-shared": "workspace:*" "@blocksuite/global": "workspace:*" - "@blocksuite/icons": "npm:^2.2.12" + "@blocksuite/icons": "npm:^2.2.17" "@blocksuite/std": "workspace:*" "@blocksuite/store": "workspace:*" "@floating-ui/dom": "npm:^1.6.13" @@ -3609,7 +3610,7 @@ __metadata: "@blocksuite/affine-model": "workspace:*" "@blocksuite/affine-shared": "workspace:*" "@blocksuite/global": "workspace:*" - "@blocksuite/icons": "npm:^2.2.12" + "@blocksuite/icons": "npm:^2.2.17" "@blocksuite/std": "workspace:*" "@blocksuite/store": "workspace:*" "@floating-ui/dom": "npm:^1.6.13" @@ -3637,7 +3638,7 @@ __metadata: "@blocksuite/affine-model": "workspace:*" "@blocksuite/affine-shared": "workspace:*" "@blocksuite/global": "workspace:*" - "@blocksuite/icons": "npm:^2.2.12" + "@blocksuite/icons": "npm:^2.2.17" "@blocksuite/std": "workspace:*" "@blocksuite/store": "workspace:*" "@floating-ui/dom": "npm:^1.6.13" @@ -3672,7 +3673,7 @@ __metadata: "@blocksuite/affine-rich-text": "workspace:*" "@blocksuite/affine-shared": "workspace:*" "@blocksuite/global": "workspace:*" - "@blocksuite/icons": "npm:^2.2.12" + "@blocksuite/icons": "npm:^2.2.17" "@blocksuite/std": "workspace:*" "@blocksuite/store": "workspace:*" "@floating-ui/dom": "npm:^1.6.13" @@ -3706,7 +3707,7 @@ __metadata: "@blocksuite/affine-model": "workspace:*" "@blocksuite/affine-shared": "workspace:*" "@blocksuite/global": "workspace:*" - "@blocksuite/icons": "npm:^2.2.12" + "@blocksuite/icons": "npm:^2.2.17" "@blocksuite/std": "workspace:*" "@blocksuite/store": "workspace:*" "@floating-ui/dom": "npm:^1.6.13" @@ -3750,7 +3751,7 @@ __metadata: "@blocksuite/affine-model": "workspace:*" "@blocksuite/affine-shared": "workspace:*" "@blocksuite/global": "workspace:*" - "@blocksuite/icons": "npm:^2.2.12" + "@blocksuite/icons": "npm:^2.2.17" "@blocksuite/std": "workspace:*" "@blocksuite/store": "workspace:*" "@floating-ui/dom": "npm:^1.6.13" @@ -3775,7 +3776,7 @@ __metadata: dependencies: "@blocksuite/affine-model": "workspace:*" "@blocksuite/global": "workspace:*" - "@blocksuite/icons": "npm:^2.2.12" + "@blocksuite/icons": "npm:^2.2.17" "@blocksuite/std": "workspace:*" "@blocksuite/store": "workspace:*" "@floating-ui/dom": "npm:^1.6.13" @@ -3834,7 +3835,7 @@ __metadata: "@blocksuite/affine-model": "workspace:*" "@blocksuite/affine-shared": "workspace:*" "@blocksuite/global": "workspace:*" - "@blocksuite/icons": "npm:^2.2.12" + "@blocksuite/icons": "npm:^2.2.17" "@blocksuite/std": "workspace:*" "@blocksuite/store": "workspace:*" "@floating-ui/dom": "npm:^1.6.13" @@ -3861,7 +3862,7 @@ __metadata: "@blocksuite/affine-model": "workspace:*" "@blocksuite/affine-shared": "workspace:*" "@blocksuite/global": "workspace:*" - "@blocksuite/icons": "npm:^2.2.12" + "@blocksuite/icons": "npm:^2.2.17" "@blocksuite/std": "workspace:*" "@preact/signals-core": "npm:^1.8.0" "@toeverything/theme": "npm:^1.1.16" @@ -3881,7 +3882,7 @@ __metadata: "@blocksuite/affine-model": "workspace:*" "@blocksuite/affine-shared": "workspace:*" "@blocksuite/global": "workspace:*" - "@blocksuite/icons": "npm:^2.2.12" + "@blocksuite/icons": "npm:^2.2.17" "@blocksuite/std": "workspace:*" "@lit/context": "npm:^1.1.2" "@preact/signals-core": "npm:^1.8.0" @@ -3907,7 +3908,7 @@ __metadata: "@blocksuite/affine-model": "workspace:*" "@blocksuite/affine-shared": "workspace:*" "@blocksuite/global": "workspace:*" - "@blocksuite/icons": "npm:^2.2.12" + "@blocksuite/icons": "npm:^2.2.17" "@blocksuite/std": "workspace:*" "@lit/context": "npm:^1.1.2" "@preact/signals-core": "npm:^1.8.0" @@ -3929,7 +3930,7 @@ __metadata: "@blocksuite/affine-rich-text": "workspace:*" "@blocksuite/affine-shared": "workspace:*" "@blocksuite/global": "workspace:*" - "@blocksuite/icons": "npm:^2.2.12" + "@blocksuite/icons": "npm:^2.2.17" "@blocksuite/std": "workspace:*" "@floating-ui/dom": "npm:^1.6.13" "@lit/context": "npm:^1.1.2" @@ -3952,7 +3953,7 @@ __metadata: "@blocksuite/affine-model": "workspace:*" "@blocksuite/affine-shared": "workspace:*" "@blocksuite/global": "workspace:*" - "@blocksuite/icons": "npm:^2.2.12" + "@blocksuite/icons": "npm:^2.2.17" "@blocksuite/std": "workspace:*" "@floating-ui/dom": "npm:^1.6.13" "@preact/signals-core": "npm:^1.8.0" @@ -4011,7 +4012,7 @@ __metadata: "@blocksuite/affine-shared": "workspace:*" "@blocksuite/data-view": "workspace:*" "@blocksuite/global": "workspace:*" - "@blocksuite/icons": "npm:^2.2.12" + "@blocksuite/icons": "npm:^2.2.17" "@blocksuite/std": "workspace:*" "@blocksuite/store": "workspace:*" "@lit/context": "npm:^1.1.2" @@ -4037,7 +4038,7 @@ __metadata: "@blocksuite/affine-rich-text": "workspace:*" "@blocksuite/affine-shared": "workspace:*" "@blocksuite/global": "workspace:*" - "@blocksuite/icons": "npm:^2.2.12" + "@blocksuite/icons": "npm:^2.2.17" "@blocksuite/std": "workspace:*" "@blocksuite/store": "workspace:*" "@lit/context": "npm:^1.1.2" @@ -4064,7 +4065,7 @@ __metadata: "@blocksuite/affine-shared": "workspace:*" "@blocksuite/affine-widget-edgeless-selected-rect": "workspace:*" "@blocksuite/global": "workspace:*" - "@blocksuite/icons": "npm:^2.2.12" + "@blocksuite/icons": "npm:^2.2.17" "@blocksuite/std": "workspace:*" "@lit/context": "npm:^1.1.2" "@preact/signals-core": "npm:^1.8.0" @@ -4084,7 +4085,7 @@ __metadata: "@blocksuite/affine-model": "workspace:*" "@blocksuite/affine-shared": "workspace:*" "@blocksuite/global": "workspace:*" - "@blocksuite/icons": "npm:^2.2.12" + "@blocksuite/icons": "npm:^2.2.17" "@blocksuite/std": "workspace:*" "@blocksuite/store": "workspace:*" "@lit/context": "npm:^1.1.2" @@ -4108,7 +4109,7 @@ __metadata: "@blocksuite/affine-model": "workspace:*" "@blocksuite/affine-shared": "workspace:*" "@blocksuite/global": "workspace:*" - "@blocksuite/icons": "npm:^2.2.12" + "@blocksuite/icons": "npm:^2.2.17" "@blocksuite/std": "workspace:*" "@preact/signals-core": "npm:^1.8.0" "@toeverything/theme": "npm:^1.1.16" @@ -4144,7 +4145,7 @@ __metadata: "@blocksuite/affine-rich-text": "workspace:*" "@blocksuite/affine-shared": "workspace:*" "@blocksuite/global": "workspace:*" - "@blocksuite/icons": "npm:^2.2.12" + "@blocksuite/icons": "npm:^2.2.17" "@blocksuite/std": "workspace:*" "@blocksuite/store": "workspace:*" "@floating-ui/dom": "npm:^1.6.13" @@ -4169,7 +4170,7 @@ __metadata: "@blocksuite/affine-model": "workspace:*" "@blocksuite/affine-shared": "workspace:*" "@blocksuite/global": "workspace:*" - "@blocksuite/icons": "npm:^2.2.12" + "@blocksuite/icons": "npm:^2.2.17" "@blocksuite/std": "workspace:*" "@floating-ui/dom": "npm:^1.6.13" "@preact/signals-core": "npm:^1.8.0" @@ -4190,7 +4191,7 @@ __metadata: "@blocksuite/affine-model": "workspace:*" "@blocksuite/affine-shared": "workspace:*" "@blocksuite/global": "workspace:*" - "@blocksuite/icons": "npm:^2.2.12" + "@blocksuite/icons": "npm:^2.2.17" "@blocksuite/std": "workspace:*" "@floating-ui/dom": "npm:^1.6.13" "@preact/signals-core": "npm:^1.8.0" @@ -4299,7 +4300,7 @@ __metadata: "@blocksuite/affine-components": "workspace:*" "@blocksuite/affine-shared": "workspace:*" "@blocksuite/global": "workspace:*" - "@blocksuite/icons": "npm:^2.2.12" + "@blocksuite/icons": "npm:^2.2.17" "@blocksuite/std": "workspace:*" "@blocksuite/store": "workspace:*" "@emotion/css": "npm:^11.13.5" @@ -4333,9 +4334,9 @@ __metadata: languageName: unknown linkType: soft -"@blocksuite/icons@npm:^2.2.12, @blocksuite/icons@npm:^2.2.13": - version: 2.2.15 - resolution: "@blocksuite/icons@npm:2.2.15" +"@blocksuite/icons@npm:^2.2.17": + version: 2.2.17 + resolution: "@blocksuite/icons@npm:2.2.17" peerDependencies: "@types/react": ^18.0.25 change-case: 4.1.2 @@ -4346,7 +4347,7 @@ __metadata: optional: true react: optional: true - checksum: 10/891c646b5a1c5ee8f4e42752053a7aab7e55ed8f6f6a08e0fe9371172c92ad5b861355d017175426871a422f6364a8d18aa88a1f96aa33029bf2a48d33f70c40 + checksum: 10/a9f0f96507bb1df537479d59693f6468f230e5b18bcab9fcfb62458650ee9ccf7d0972fb21029ad9594f7f312b5f92692ad5acff9a7281bc5288351769d73409 languageName: node linkType: hard @@ -4355,7 +4356,7 @@ __metadata: resolution: "@blocksuite/integration-test@workspace:blocksuite/integration-test" dependencies: "@blocksuite/affine": "workspace:*" - "@blocksuite/icons": "npm:^2.2.12" + "@blocksuite/icons": "npm:^2.2.17" "@floating-ui/dom": "npm:^1.6.13" "@lit/context": "npm:^1.1.3" "@lottiefiles/dotlottie-wc": "npm:^0.5.0" @@ -4383,7 +4384,7 @@ __metadata: "@blocksuite/affine-model": "workspace:*" "@blocksuite/affine-shared": "workspace:*" "@blocksuite/data-view": "workspace:*" - "@blocksuite/icons": "npm:^2.2.12" + "@blocksuite/icons": "npm:^2.2.17" "@blocksuite/integration-test": "workspace:*" "@preact/signals-core": "npm:^1.8.0" "@shoelace-style/shoelace": "npm:2.20.1" @@ -20950,6 +20951,15 @@ __metadata: languageName: node linkType: hard +"emojibase-data@npm:^16.0.3": + version: 16.0.3 + resolution: "emojibase-data@npm:16.0.3" + peerDependencies: + emojibase: "*" + checksum: 10/d9cd4b961ea5bca483b857bc84e670e77c3dcbeac41ce3b672086a9256a43bc027b34d4adc9f9a2be85e2b76c85a2b5e91280b6518335432bdbd4c671eeba1ec + languageName: node + linkType: hard + "emojis-list@npm:^3.0.0": version: 3.0.0 resolution: "emojis-list@npm:3.0.0"