reactjs-tiptap-editor-pro 0.2.29 â 0.2.31
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +5 -58
- package/src/components/ActionButton.tsx +103 -0
- package/src/components/ActionMenuButton.tsx +76 -0
- package/src/components/BubbleMenu.tsx +93 -0
- package/src/components/CharactorCount.tsx +50 -0
- package/src/components/ColorPicker.tsx +272 -0
- package/src/components/RichTextEditor.tsx +212 -0
- package/src/components/SizeSetter/SizeSetter.tsx +102 -0
- package/src/components/Toolbar.tsx +108 -0
- package/src/components/icons/Activity.tsx +19 -0
- package/src/components/icons/Animas.tsx +24 -0
- package/src/components/icons/AspectRatio.tsx +13 -0
- package/src/components/icons/Blockquote.tsx +17 -0
- package/src/components/icons/ColumnAddLeft.tsx +7 -0
- package/src/components/icons/ColumnAddRight.tsx +7 -0
- package/src/components/icons/DeleteColumn.tsx +26 -0
- package/src/components/icons/DeleteRow.tsx +26 -0
- package/src/components/icons/Direction.tsx +7 -0
- package/src/components/icons/Excalidraw.tsx +7 -0
- package/src/components/icons/ExportPdf.tsx +8 -0
- package/src/components/icons/ExportWord.tsx +24 -0
- package/src/components/icons/FileWordOutline.tsx +13 -0
- package/src/components/icons/Flag.tsx +19 -0
- package/src/components/icons/Food.tsx +20 -0
- package/src/components/icons/GIfIcon.tsx +10 -0
- package/src/components/icons/Icon.tsx +30 -0
- package/src/components/icons/ImportWord.tsx +23 -0
- package/src/components/icons/LeftToRight.tsx +7 -0
- package/src/components/icons/LineHeight.tsx +13 -0
- package/src/components/icons/MenuDown.tsx +24 -0
- package/src/components/icons/Mermaid.tsx +13 -0
- package/src/components/icons/NoFill.tsx +7 -0
- package/src/components/icons/Object.tsx +24 -0
- package/src/components/icons/RightToLeft.tsx +7 -0
- package/src/components/icons/SizeL.tsx +9 -0
- package/src/components/icons/SizeM.tsx +13 -0
- package/src/components/icons/SizeS.tsx +13 -0
- package/src/components/icons/Symbol.tsx +19 -0
- package/src/components/icons/Travel.tsx +24 -0
- package/src/components/icons/Twitter.tsx +7 -0
- package/src/components/icons/icons.ts +212 -0
- package/src/components/icons/index.ts +12 -0
- package/src/components/index.ts +9 -0
- package/src/components/menus/bubble.ts +395 -0
- package/src/components/menus/components/BubbleMenuContent.tsx +15 -0
- package/src/components/menus/components/BubbleMenuDrawer.tsx +128 -0
- package/src/components/menus/components/BubbleMenuExcalidraw.tsx +91 -0
- package/src/components/menus/components/BubbleMenuIframe.tsx +143 -0
- package/src/components/menus/components/BubbleMenuKatex.tsx +136 -0
- package/src/components/menus/components/BubbleMenuLink.tsx +99 -0
- package/src/components/menus/components/BubbleMenuMedia.tsx +235 -0
- package/src/components/menus/components/BubbleMenuMermaid.tsx +128 -0
- package/src/components/menus/components/BubbleMenuText.tsx +102 -0
- package/src/components/menus/components/BubbleMenuTwitter.tsx +91 -0
- package/src/components/menus/components/ColumnsBubbleMenu.tsx +59 -0
- package/src/components/menus/components/ContentMenu.tsx +396 -0
- package/src/components/menus/components/TableBubbleMenu.tsx +362 -0
- package/src/components/menus/index.ts +7 -0
- package/src/components/ui/button.tsx +56 -0
- package/src/components/ui/checkbox.tsx +30 -0
- package/src/components/ui/dialog.tsx +128 -0
- package/src/components/ui/dropdown-menu.tsx +203 -0
- package/src/components/ui/emoji-picker.tsx +166 -0
- package/src/components/ui/index.ts +14 -0
- package/src/components/ui/input.tsx +25 -0
- package/src/components/ui/label.tsx +26 -0
- package/src/components/ui/popover.tsx +31 -0
- package/src/components/ui/select.tsx +162 -0
- package/src/components/ui/separator.tsx +31 -0
- package/src/components/ui/switch.tsx +29 -0
- package/src/components/ui/tabs.tsx +55 -0
- package/src/components/ui/textarea.tsx +24 -0
- package/src/components/ui/toast.tsx +129 -0
- package/src/components/ui/toaster.tsx +44 -0
- package/src/components/ui/toggle.tsx +45 -0
- package/src/components/ui/tooltip.tsx +30 -0
- package/src/components/ui/use-toast.ts +197 -0
- package/src/constants/index.ts +223 -0
- package/src/constants/resetCSS.ts +139 -0
- package/src/extension-bundle.ts +2 -0
- package/src/extensions/Attachment/Attachment.ts +144 -0
- package/src/extensions/Attachment/components/NodeViewAttachment/FileIcon.tsx +69 -0
- package/src/extensions/Attachment/components/NodeViewAttachment/FileIconString.ts +28 -0
- package/src/extensions/Attachment/components/NodeViewAttachment/NodeViewAttachment.tsx +155 -0
- package/src/extensions/Attachment/components/NodeViewAttachment/index.module.scss +23 -0
- package/src/extensions/Attachment/index.ts +1 -0
- package/src/extensions/BaseKit.ts +253 -0
- package/src/extensions/Blockquote/Blockquote.ts +31 -0
- package/src/extensions/Blockquote/index.ts +1 -0
- package/src/extensions/Bold/Bold.ts +26 -0
- package/src/extensions/Bold/index.ts +1 -0
- package/src/extensions/BulletList/BulletList.ts +28 -0
- package/src/extensions/BulletList/index.ts +1 -0
- package/src/extensions/Clear/Clear.ts +24 -0
- package/src/extensions/Clear/index.ts +1 -0
- package/src/extensions/Code/Code.ts +26 -0
- package/src/extensions/Code/index.ts +1 -0
- package/src/extensions/CodeBlock/CodeBlock.ts +54 -0
- package/src/extensions/CodeBlock/components/CodeBlockActiveButton.tsx +66 -0
- package/src/extensions/CodeBlock/components/NodeViewCodeBlock/NodeViewCodeBlock.tsx +89 -0
- package/src/extensions/CodeBlock/components/NodeViewCodeBlock/index.module.scss +81 -0
- package/src/extensions/CodeBlock/highlighter.ts +132 -0
- package/src/extensions/CodeBlock/index.ts +1 -0
- package/src/extensions/CodeBlock/shiki-plugin.ts +213 -0
- package/src/extensions/Color/Color.ts +52 -0
- package/src/extensions/Color/components/ColorActionButton.tsx +104 -0
- package/src/extensions/Color/index.ts +1 -0
- package/src/extensions/Document/Document.ts +8 -0
- package/src/extensions/Document/index.ts +1 -0
- package/src/extensions/Drawer/Drawer.ts +177 -0
- package/src/extensions/Drawer/components/ControlDrawer/ControlDrawer.module.scss +85 -0
- package/src/extensions/Drawer/components/ControlDrawer/ControlDrawer.tsx +598 -0
- package/src/extensions/Drawer/components/ControlDrawer/icon.tsx +500 -0
- package/src/extensions/Drawer/components/DrawerActiveButton.tsx +239 -0
- package/src/extensions/Drawer/components/EditDrawerBlock.tsx +238 -0
- package/src/extensions/Drawer/components/NodeViewDrawer/NodeViewDrawer.tsx +260 -0
- package/src/extensions/Drawer/index.ts +1 -0
- package/src/extensions/Emoji/Emoji.ts +146 -0
- package/src/extensions/Emoji/components/EmojiList/EmojiList.tsx +103 -0
- package/src/extensions/Emoji/components/EmojiList/emojis.ts +1858 -0
- package/src/extensions/Emoji/components/EmojiPicker/EmojiPicker.tsx +61 -0
- package/src/extensions/Emoji/index.ts +1 -0
- package/src/extensions/Excalidraw/Excalidraw.ts +123 -0
- package/src/extensions/Excalidraw/components/ExcalidrawActiveButton.tsx +138 -0
- package/src/extensions/Excalidraw/components/NodeViewExcalidraw/NodeViewExcalidraw.tsx +178 -0
- package/src/extensions/Excalidraw/components/NodeViewExcalidraw/index.module.scss +43 -0
- package/src/extensions/Excalidraw/index.ts +1 -0
- package/src/extensions/ExportPdf/ExportPdf.ts +25 -0
- package/src/extensions/ExportPdf/index.ts +1 -0
- package/src/extensions/ExportWord/ExportWord.ts +87 -0
- package/src/extensions/ExportWord/index.ts +1 -0
- package/src/extensions/FontFamily/FontFamily.ts +64 -0
- package/src/extensions/FontFamily/components/FontFamilyButton.tsx +97 -0
- package/src/extensions/FontFamily/index.ts +1 -0
- package/src/extensions/FontSize/FontSize.ts +119 -0
- package/src/extensions/FontSize/components/FontSizeMenuButton.tsx +84 -0
- package/src/extensions/FontSize/index.ts +1 -0
- package/src/extensions/FormatPainter/FormatPainter.ts +121 -0
- package/src/extensions/FormatPainter/index.ts +1 -0
- package/src/extensions/Heading/Heading.ts +57 -0
- package/src/extensions/Heading/components/HeadingButton.tsx +96 -0
- package/src/extensions/Heading/index.ts +1 -0
- package/src/extensions/Highlight/Highlight.ts +36 -0
- package/src/extensions/Highlight/components/HighlightActionButton.tsx +108 -0
- package/src/extensions/Highlight/index.ts +1 -0
- package/src/extensions/History/History.ts +39 -0
- package/src/extensions/History/components/HistoryActionButton.tsx +74 -0
- package/src/extensions/History/index.ts +1 -0
- package/src/extensions/HorizontalRule/HorizontalRule.ts +42 -0
- package/src/extensions/HorizontalRule/index.ts +1 -0
- package/src/extensions/Iframe/Iframe.ts +140 -0
- package/src/extensions/Iframe/components/IframeNodeView.tsx +92 -0
- package/src/extensions/Iframe/components/index.module.scss +40 -0
- package/src/extensions/Iframe/embed.ts +487 -0
- package/src/extensions/Iframe/index.ts +1 -0
- package/src/extensions/Image/Image.ts +303 -0
- package/src/extensions/Image/components/ActionImageButton.tsx +186 -0
- package/src/extensions/Image/components/ImageCropper.tsx +198 -0
- package/src/extensions/Image/components/ImageView.tsx +271 -0
- package/src/extensions/Image/index.ts +1 -0
- package/src/extensions/Image/store.ts +15 -0
- package/src/extensions/ImageGif/ImageGif.ts +176 -0
- package/src/extensions/ImageGif/components/ImageGifActionButton.tsx +138 -0
- package/src/extensions/ImageGif/components/ImageGifView.tsx +260 -0
- package/src/extensions/ImageGif/index.ts +1 -0
- package/src/extensions/ImportWord/ImportWord.ts +52 -0
- package/src/extensions/ImportWord/components/ImportWordButton.tsx +151 -0
- package/src/extensions/ImportWord/index.ts +1 -0
- package/src/extensions/Indent/Indent.ts +110 -0
- package/src/extensions/Indent/index.ts +1 -0
- package/src/extensions/Italic/Italic.ts +29 -0
- package/src/extensions/Italic/index.ts +1 -0
- package/src/extensions/Katex/Katex.ts +109 -0
- package/src/extensions/Katex/components/KatexActiveButton.tsx +117 -0
- package/src/extensions/Katex/components/KatexWrapper.tsx +53 -0
- package/src/extensions/Katex/index.ts +1 -0
- package/src/extensions/LineHeight/LineHeight.ts +76 -0
- package/src/extensions/LineHeight/components/LineHeightDropdown.tsx +93 -0
- package/src/extensions/LineHeight/index.ts +1 -0
- package/src/extensions/Link/Link.ts +92 -0
- package/src/extensions/Link/components/LinkEditBlock.tsx +110 -0
- package/src/extensions/Link/components/LinkEditPopover.tsx +46 -0
- package/src/extensions/Link/components/LinkViewBlock.tsx +54 -0
- package/src/extensions/Link/index.ts +1 -0
- package/src/extensions/ListItem/ListItem.ts +1 -0
- package/src/extensions/ListItem/index.ts +1 -0
- package/src/extensions/Mention/Mention.ts +100 -0
- package/src/extensions/Mention/components/NodeViewMentionList/NodeViewMentionList.tsx +94 -0
- package/src/extensions/Mention/components/NodeViewMentionList/index.module.scss +38 -0
- package/src/extensions/Mention/index.ts +1 -0
- package/src/extensions/Mermaid/Mermaid.ts +177 -0
- package/src/extensions/Mermaid/components/EditMermaidBlock.tsx +155 -0
- package/src/extensions/Mermaid/components/MermaidActiveButton.tsx +151 -0
- package/src/extensions/Mermaid/components/NodeViewMermaid/NodeViewMermaid.tsx +260 -0
- package/src/extensions/Mermaid/index.ts +1 -0
- package/src/extensions/MoreMark/MoreMark.ts +102 -0
- package/src/extensions/MoreMark/components/ActionMoreButton.tsx +97 -0
- package/src/extensions/MoreMark/index.ts +1 -0
- package/src/extensions/MultiColumn/Column.ts +36 -0
- package/src/extensions/MultiColumn/MultiColumn.ts +111 -0
- package/src/extensions/MultiColumn/components/ColumnActionButton.ts +22 -0
- package/src/extensions/MultiColumn/index.ts +3 -0
- package/src/extensions/OrderedList/OrderedList.ts +28 -0
- package/src/extensions/OrderedList/index.ts +1 -0
- package/src/extensions/SearchAndReplace/SearchAndReplace.ts +395 -0
- package/src/extensions/SearchAndReplace/components/SearchAndReplaceButton.tsx +190 -0
- package/src/extensions/SearchAndReplace/index.ts +1 -0
- package/src/extensions/Selection/Selection.ts +32 -0
- package/src/extensions/Selection/index.ts +1 -0
- package/src/extensions/SlashCommand/SlashCommand.ts +255 -0
- package/src/extensions/SlashCommand/components/CommandsList.tsx +180 -0
- package/src/extensions/SlashCommand/groups.ts +183 -0
- package/src/extensions/SlashCommand/index.ts +1 -0
- package/src/extensions/SlashCommand/types.ts +24 -0
- package/src/extensions/Strike/Strike.ts +26 -0
- package/src/extensions/Strike/index.ts +1 -0
- package/src/extensions/Subscript/Subscript.ts +88 -0
- package/src/extensions/Subscript/index.ts +1 -0
- package/src/extensions/Table/Cell.ts +131 -0
- package/src/extensions/Table/Header.ts +93 -0
- package/src/extensions/Table/Row.ts +8 -0
- package/src/extensions/Table/Table.ts +60 -0
- package/src/extensions/Table/cell-background.ts +112 -0
- package/src/extensions/Table/components/CreateTablePopover.tsx +132 -0
- package/src/extensions/Table/components/TableActionButton.tsx +42 -0
- package/src/extensions/Table/index.ts +6 -0
- package/src/extensions/Table/utils.ts +352 -0
- package/src/extensions/TableOfContent/TableOfContent.ts +124 -0
- package/src/extensions/TableOfContent/components/NodeViewTableOfContent.tsx +116 -0
- package/src/extensions/TableOfContent/components/TableOfContentActionButton.tsx +27 -0
- package/src/extensions/TableOfContent/components/index.module.scss +40 -0
- package/src/extensions/TableOfContent/index.ts +1 -0
- package/src/extensions/TaskList/TaskList.ts +46 -0
- package/src/extensions/TaskList/index.ts +1 -0
- package/src/extensions/TextAlign/TextAlign.ts +68 -0
- package/src/extensions/TextAlign/components/TextAlignMenuButton.tsx +103 -0
- package/src/extensions/TextAlign/index.ts +1 -0
- package/src/extensions/TextBubble/TextBubble.ts +22 -0
- package/src/extensions/TextBubble/components/TextDropdown.tsx +146 -0
- package/src/extensions/TextBubble/index.ts +1 -0
- package/src/extensions/TextDirection/TextDirection.ts +97 -0
- package/src/extensions/TextDirection/components/TextDirectionButton.tsx +103 -0
- package/src/extensions/TextDirection/index.ts +1 -0
- package/src/extensions/TrailingNode/TrailingNode.ts +71 -0
- package/src/extensions/TrailingNode/index.ts +1 -0
- package/src/extensions/Twitter/Twitter.ts +161 -0
- package/src/extensions/Twitter/components/FormEditLinkTwitter.tsx +68 -0
- package/src/extensions/Twitter/components/NodeViewTweet.tsx +30 -0
- package/src/extensions/Twitter/components/TwitterActiveButton.tsx +41 -0
- package/src/extensions/Twitter/index.ts +1 -0
- package/src/extensions/UnderLine/Underline.ts +30 -0
- package/src/extensions/UnderLine/index.ts +1 -0
- package/src/extensions/Video/Video.ts +204 -0
- package/src/extensions/Video/components/ActiveVideoButton.tsx +191 -0
- package/src/extensions/Video/index.ts +1 -0
- package/src/extensions/Video/store.ts +15 -0
- package/src/extensions/index.ts +122 -0
- package/src/hooks/useActive.tsx +24 -0
- package/src/hooks/useAttributes.tsx +45 -0
- package/src/hooks/useCopy.tsx +20 -0
- package/src/hooks/useEditorState.tsx +23 -0
- package/src/hooks/useExtension.tsx +29 -0
- package/src/index.ts +8 -0
- package/src/lib/utils.ts +7 -0
- package/src/locale-bundle.ts +3 -0
- package/src/locales/en.ts +173 -0
- package/src/locales/hu.ts +173 -0
- package/src/locales/index.tsx +163 -0
- package/src/locales/pt-br.ts +173 -0
- package/src/locales/vi.ts +173 -0
- package/src/locales/zh-cn.ts +173 -0
- package/src/plugins/DragHandle/index.ts +375 -0
- package/src/plugins/DragHandle/range.ts +114 -0
- package/src/plugins/DragHandle/utils.ts +80 -0
- package/src/plugins/image-upload.ts +160 -0
- package/src/store/ProviderRichText.tsx +53 -0
- package/src/store/editableEditor.ts +15 -0
- package/src/store/fast-context.tsx +70 -0
- package/src/store/store.ts +35 -0
- package/src/styles/ProseMirror.scss +176 -0
- package/src/styles/columns.scss +23 -0
- package/src/styles/editor.scss +411 -0
- package/src/styles/global.scss +87 -0
- package/src/styles/index.scss +5 -0
- package/src/styles/mention.scss +6 -0
- package/src/theme/theme.ts +15 -0
- package/src/types.ts +271 -0
- package/src/utils/_event.ts +55 -0
- package/src/utils/color.ts +67 -0
- package/src/utils/columns.ts +142 -0
- package/src/utils/customEvents/customEvents.ts +18 -0
- package/src/utils/customEvents/events.constant.ts +11 -0
- package/src/utils/delete-node.ts +46 -0
- package/src/utils/dom-dataset.ts +121 -0
- package/src/utils/download.ts +17 -0
- package/src/utils/dynamicCSS.ts +192 -0
- package/src/utils/editor-container-size.ts +28 -0
- package/src/utils/file.ts +112 -0
- package/src/utils/getRenderContainer.ts +41 -0
- package/src/utils/indent.ts +99 -0
- package/src/utils/is-mobile.ts +57 -0
- package/src/utils/json.ts +18 -0
- package/src/utils/line-height.ts +109 -0
- package/src/utils/lru-cache.ts +145 -0
- package/src/utils/mitt.ts +114 -0
- package/src/utils/node.ts +92 -0
- package/src/utils/pdf.ts +72 -0
- package/src/utils/plateform.ts +49 -0
- package/src/utils/shortId.ts +5 -0
- package/src/utils/storage.ts +18 -0
- package/src/utils/utils.ts +71 -0
- package/src/vite-env.d.ts +3 -0
- package/lib/RichTextEditor-BwbqJLnA.cjs +0 -141
- package/lib/RichTextEditor-iGJ6-rbq.js +0 -8833
- package/lib/extension-bundle.cjs +0 -33
- package/lib/extension-bundle.d.cts +0 -947
- package/lib/extension-bundle.d.ts +0 -947
- package/lib/extension-bundle.js +0 -5755
- package/lib/index-DV-nXpU1.cjs +0 -1
- package/lib/index-M6H3FoBi.js +0 -1147
- package/lib/index.cjs +0 -1
- package/lib/index.d.cts +0 -513
- package/lib/index.d.ts +0 -513
- package/lib/index.js +0 -16
- package/lib/locale-bundle.cjs +0 -1
- package/lib/locale-bundle.d.cts +0 -1140
- package/lib/locale-bundle.d.ts +0 -1140
- package/lib/locale-bundle.js +0 -9
- package/lib/style.css +0 -1
- package/lib/tiptap-DkWHMWDt.js +0 -6061
- package/lib/tiptap-gBG-1T-V.cjs +0 -116
- package/lib/vendor-BJ0Yf78E.cjs +0 -8114
- package/lib/vendor-Cpa6z-M0.js +0 -67575
|
@@ -0,0 +1,1858 @@
|
|
|
1
|
+
export const namesToEmoji = {
|
|
2
|
+
'100': 'đŻ',
|
|
3
|
+
'1234': 'đ˘',
|
|
4
|
+
'grinning': 'đ',
|
|
5
|
+
'smiley': 'đ',
|
|
6
|
+
'smile': 'đ',
|
|
7
|
+
'grin': 'đ',
|
|
8
|
+
'laughing': 'đ',
|
|
9
|
+
'satisfied': 'đ',
|
|
10
|
+
'sweat_smile': 'đ
',
|
|
11
|
+
'rofl': 'đ¤Ł',
|
|
12
|
+
'joy': 'đ',
|
|
13
|
+
'slightly_smiling_face': 'đ',
|
|
14
|
+
'upside_down_face': 'đ',
|
|
15
|
+
'wink': 'đ',
|
|
16
|
+
'blush': 'đ',
|
|
17
|
+
'innocent': 'đ',
|
|
18
|
+
'smiling_face_with_three_hearts': 'đĽ°',
|
|
19
|
+
'heart_eyes': 'đ',
|
|
20
|
+
'star_struck': 'đ¤Š',
|
|
21
|
+
'kissing_heart': 'đ',
|
|
22
|
+
'kissing': 'đ',
|
|
23
|
+
'relaxed': 'âşď¸',
|
|
24
|
+
'kissing_closed_eyes': 'đ',
|
|
25
|
+
'kissing_smiling_eyes': 'đ',
|
|
26
|
+
'smiling_face_with_tear': 'đĽ˛',
|
|
27
|
+
'yum': 'đ',
|
|
28
|
+
'stuck_out_tongue': 'đ',
|
|
29
|
+
'stuck_out_tongue_winking_eye': 'đ',
|
|
30
|
+
'zany_face': 'đ¤Ş',
|
|
31
|
+
'stuck_out_tongue_closed_eyes': 'đ',
|
|
32
|
+
'money_mouth_face': 'đ¤',
|
|
33
|
+
'hugs': 'đ¤',
|
|
34
|
+
'hand_over_mouth': 'đ¤',
|
|
35
|
+
'shushing_face': 'đ¤Ť',
|
|
36
|
+
'thinking': 'đ¤',
|
|
37
|
+
'zipper_mouth_face': 'đ¤',
|
|
38
|
+
'raised_eyebrow': 'đ¤¨',
|
|
39
|
+
'neutral_face': 'đ',
|
|
40
|
+
'expressionless': 'đ',
|
|
41
|
+
'no_mouth': 'đś',
|
|
42
|
+
'smirk': 'đ',
|
|
43
|
+
'unamused': 'đ',
|
|
44
|
+
'roll_eyes': 'đ',
|
|
45
|
+
'grimacing': 'đŹ',
|
|
46
|
+
'lying_face': 'đ¤Ľ',
|
|
47
|
+
'relieved': 'đ',
|
|
48
|
+
'pensive': 'đ',
|
|
49
|
+
'sleepy': 'đŞ',
|
|
50
|
+
'drooling_face': 'đ¤¤',
|
|
51
|
+
'sleeping': 'đ´',
|
|
52
|
+
'mask': 'đˇ',
|
|
53
|
+
'face_with_thermometer': 'đ¤',
|
|
54
|
+
'face_with_head_bandage': 'đ¤',
|
|
55
|
+
'nauseated_face': 'đ¤˘',
|
|
56
|
+
'vomiting_face': 'đ¤Ž',
|
|
57
|
+
'sneezing_face': 'đ¤§',
|
|
58
|
+
'hot_face': 'đĽľ',
|
|
59
|
+
'cold_face': 'đĽś',
|
|
60
|
+
'woozy_face': 'đĽ´',
|
|
61
|
+
'dizzy_face': 'đľ',
|
|
62
|
+
'exploding_head': 'đ¤Ż',
|
|
63
|
+
'cowboy_hat_face': 'đ¤ ',
|
|
64
|
+
'partying_face': 'đĽł',
|
|
65
|
+
'disguised_face': 'đĽ¸',
|
|
66
|
+
'sunglasses': 'đ',
|
|
67
|
+
'nerd_face': 'đ¤',
|
|
68
|
+
'monocle_face': 'đ§',
|
|
69
|
+
'confused': 'đ',
|
|
70
|
+
'worried': 'đ',
|
|
71
|
+
'slightly_frowning_face': 'đ',
|
|
72
|
+
'frowning_face': 'âšď¸',
|
|
73
|
+
'open_mouth': 'đŽ',
|
|
74
|
+
'hushed': 'đŻ',
|
|
75
|
+
'astonished': 'đ˛',
|
|
76
|
+
'flushed': 'đł',
|
|
77
|
+
'pleading_face': 'đĽş',
|
|
78
|
+
'frowning': 'đŚ',
|
|
79
|
+
'anguished': 'đ§',
|
|
80
|
+
'fearful': 'đ¨',
|
|
81
|
+
'cold_sweat': 'đ°',
|
|
82
|
+
'disappointed_relieved': 'đĽ',
|
|
83
|
+
'cry': 'đ˘',
|
|
84
|
+
'sob': 'đ',
|
|
85
|
+
'scream': 'đą',
|
|
86
|
+
'confounded': 'đ',
|
|
87
|
+
'persevere': 'đŁ',
|
|
88
|
+
'disappointed': 'đ',
|
|
89
|
+
'sweat': 'đ',
|
|
90
|
+
'weary': 'đŠ',
|
|
91
|
+
'tired_face': 'đŤ',
|
|
92
|
+
'yawning_face': 'đĽą',
|
|
93
|
+
'triumph': 'đ¤',
|
|
94
|
+
'rage': 'đĄ',
|
|
95
|
+
'pout': 'đĄ',
|
|
96
|
+
'angry': 'đ ',
|
|
97
|
+
'cursing_face': 'đ¤Ź',
|
|
98
|
+
'smiling_imp': 'đ',
|
|
99
|
+
'imp': 'đż',
|
|
100
|
+
'skull': 'đ',
|
|
101
|
+
'skull_and_crossbones': 'â ď¸',
|
|
102
|
+
'hankey': 'đŠ',
|
|
103
|
+
'poop': 'đŠ',
|
|
104
|
+
'shit': 'đŠ',
|
|
105
|
+
'clown_face': 'đ¤Ą',
|
|
106
|
+
'japanese_ogre': 'đš',
|
|
107
|
+
'japanese_goblin': 'đş',
|
|
108
|
+
'ghost': 'đť',
|
|
109
|
+
'alien': 'đ˝',
|
|
110
|
+
'space_invader': 'đž',
|
|
111
|
+
'robot': 'đ¤',
|
|
112
|
+
'smiley_cat': 'đş',
|
|
113
|
+
'smile_cat': 'đ¸',
|
|
114
|
+
'joy_cat': 'đš',
|
|
115
|
+
'heart_eyes_cat': 'đť',
|
|
116
|
+
'smirk_cat': 'đź',
|
|
117
|
+
'kissing_cat': 'đ˝',
|
|
118
|
+
'scream_cat': 'đ',
|
|
119
|
+
'crying_cat_face': 'đż',
|
|
120
|
+
'pouting_cat': 'đž',
|
|
121
|
+
'see_no_evil': 'đ',
|
|
122
|
+
'hear_no_evil': 'đ',
|
|
123
|
+
'speak_no_evil': 'đ',
|
|
124
|
+
'kiss': 'đ',
|
|
125
|
+
'love_letter': 'đ',
|
|
126
|
+
'cupid': 'đ',
|
|
127
|
+
'gift_heart': 'đ',
|
|
128
|
+
'sparkling_heart': 'đ',
|
|
129
|
+
'heartpulse': 'đ',
|
|
130
|
+
'heartbeat': 'đ',
|
|
131
|
+
'revolving_hearts': 'đ',
|
|
132
|
+
'two_hearts': 'đ',
|
|
133
|
+
'heart_decoration': 'đ',
|
|
134
|
+
'heavy_heart_exclamation': 'âŁď¸',
|
|
135
|
+
'broken_heart': 'đ',
|
|
136
|
+
'heart': 'â¤ď¸',
|
|
137
|
+
'orange_heart': 'đ§Ą',
|
|
138
|
+
'yellow_heart': 'đ',
|
|
139
|
+
'green_heart': 'đ',
|
|
140
|
+
'blue_heart': 'đ',
|
|
141
|
+
'purple_heart': 'đ',
|
|
142
|
+
'brown_heart': 'đ¤',
|
|
143
|
+
'black_heart': 'đ¤',
|
|
144
|
+
'white_heart': 'đ¤',
|
|
145
|
+
'anger': 'đ˘',
|
|
146
|
+
'boom': 'đĽ',
|
|
147
|
+
'collision': 'đĽ',
|
|
148
|
+
'dizzy': 'đŤ',
|
|
149
|
+
'sweat_drops': 'đŚ',
|
|
150
|
+
'dash': 'đ¨',
|
|
151
|
+
'hole': 'đłď¸',
|
|
152
|
+
'bomb': 'đŁ',
|
|
153
|
+
'speech_balloon': 'đŹ',
|
|
154
|
+
'eye_speech_bubble': 'đď¸âđ¨ď¸',
|
|
155
|
+
'left_speech_bubble': 'đ¨ď¸',
|
|
156
|
+
'right_anger_bubble': 'đŻď¸',
|
|
157
|
+
'thought_balloon': 'đ',
|
|
158
|
+
'zzz': 'đ¤',
|
|
159
|
+
'wave': 'đ',
|
|
160
|
+
'raised_back_of_hand': 'đ¤',
|
|
161
|
+
'raised_hand_with_fingers_splayed': 'đď¸',
|
|
162
|
+
'hand': 'â',
|
|
163
|
+
'raised_hand': 'â',
|
|
164
|
+
'vulcan_salute': 'đ',
|
|
165
|
+
'ok_hand': 'đ',
|
|
166
|
+
'pinched_fingers': 'đ¤',
|
|
167
|
+
'pinching_hand': 'đ¤',
|
|
168
|
+
'v': 'âď¸',
|
|
169
|
+
'crossed_fingers': 'đ¤',
|
|
170
|
+
'love_you_gesture': 'đ¤',
|
|
171
|
+
'metal': 'đ¤',
|
|
172
|
+
'call_me_hand': 'đ¤',
|
|
173
|
+
'point_left': 'đ',
|
|
174
|
+
'point_right': 'đ',
|
|
175
|
+
'point_up_2': 'đ',
|
|
176
|
+
'middle_finger': 'đ',
|
|
177
|
+
'fu': 'đ',
|
|
178
|
+
'point_down': 'đ',
|
|
179
|
+
'point_up': 'âď¸',
|
|
180
|
+
'+1': 'đ',
|
|
181
|
+
'thumbsup': 'đ',
|
|
182
|
+
'-1': 'đ',
|
|
183
|
+
'thumbsdown': 'đ',
|
|
184
|
+
'fist_raised': 'â',
|
|
185
|
+
'fist': 'â',
|
|
186
|
+
'fist_oncoming': 'đ',
|
|
187
|
+
'facepunch': 'đ',
|
|
188
|
+
'punch': 'đ',
|
|
189
|
+
'fist_left': 'đ¤',
|
|
190
|
+
'fist_right': 'đ¤',
|
|
191
|
+
'clap': 'đ',
|
|
192
|
+
'raised_hands': 'đ',
|
|
193
|
+
'open_hands': 'đ',
|
|
194
|
+
'palms_up_together': 'đ¤˛',
|
|
195
|
+
'handshake': 'đ¤',
|
|
196
|
+
'pray': 'đ',
|
|
197
|
+
'writing_hand': 'âď¸',
|
|
198
|
+
'nail_care': 'đ
',
|
|
199
|
+
'selfie': 'đ¤ł',
|
|
200
|
+
'muscle': 'đŞ',
|
|
201
|
+
'mechanical_arm': 'đŚž',
|
|
202
|
+
'mechanical_leg': 'đŚż',
|
|
203
|
+
'leg': 'đŚľ',
|
|
204
|
+
'foot': 'đŚś',
|
|
205
|
+
'ear': 'đ',
|
|
206
|
+
'ear_with_hearing_aid': 'đŚť',
|
|
207
|
+
'nose': 'đ',
|
|
208
|
+
'brain': 'đ§ ',
|
|
209
|
+
'anatomical_heart': 'đŤ',
|
|
210
|
+
'lungs': 'đŤ',
|
|
211
|
+
'tooth': 'đڎ',
|
|
212
|
+
'bone': 'đŚ´',
|
|
213
|
+
'eyes': 'đ',
|
|
214
|
+
'eye': 'đď¸',
|
|
215
|
+
'tongue': 'đ
',
|
|
216
|
+
'lips': 'đ',
|
|
217
|
+
'baby': 'đś',
|
|
218
|
+
'child': 'đ§',
|
|
219
|
+
'boy': 'đŚ',
|
|
220
|
+
'girl': 'đ§',
|
|
221
|
+
'adult': 'đ§',
|
|
222
|
+
'blond_haired_person': 'đą',
|
|
223
|
+
'man': 'đ¨',
|
|
224
|
+
'bearded_person': 'đ§',
|
|
225
|
+
'red_haired_man': 'đ¨âđڰ',
|
|
226
|
+
'curly_haired_man': 'đ¨âđŚą',
|
|
227
|
+
'white_haired_man': 'đ¨âđŚł',
|
|
228
|
+
'bald_man': 'đ¨âđڞ',
|
|
229
|
+
'woman': 'đŠ',
|
|
230
|
+
'red_haired_woman': 'đŠâđڰ',
|
|
231
|
+
'person_red_hair': 'đ§âđڰ',
|
|
232
|
+
'curly_haired_woman': 'đŠâđŚą',
|
|
233
|
+
'person_curly_hair': 'đ§âđŚą',
|
|
234
|
+
'white_haired_woman': 'đŠâđŚł',
|
|
235
|
+
'person_white_hair': 'đ§âđŚł',
|
|
236
|
+
'bald_woman': 'đŠâđڞ',
|
|
237
|
+
'person_bald': 'đ§âđڞ',
|
|
238
|
+
'blond_haired_woman': 'đąââď¸',
|
|
239
|
+
'blonde_woman': 'đąââď¸',
|
|
240
|
+
'blond_haired_man': 'đąââď¸',
|
|
241
|
+
'older_adult': 'đ§',
|
|
242
|
+
'older_man': 'đ´',
|
|
243
|
+
'older_woman': 'đľ',
|
|
244
|
+
'frowning_person': 'đ',
|
|
245
|
+
'frowning_man': 'đââď¸',
|
|
246
|
+
'frowning_woman': 'đââď¸',
|
|
247
|
+
'pouting_face': 'đ',
|
|
248
|
+
'pouting_man': 'đââď¸',
|
|
249
|
+
'pouting_woman': 'đââď¸',
|
|
250
|
+
'no_good': 'đ
',
|
|
251
|
+
'no_good_man': 'đ
ââď¸',
|
|
252
|
+
'ng_man': 'đ
ââď¸',
|
|
253
|
+
'no_good_woman': 'đ
ââď¸',
|
|
254
|
+
'ng_woman': 'đ
ââď¸',
|
|
255
|
+
'ok_person': 'đ',
|
|
256
|
+
'ok_man': 'đââď¸',
|
|
257
|
+
'ok_woman': 'đââď¸',
|
|
258
|
+
'tipping_hand_person': 'đ',
|
|
259
|
+
'information_desk_person': 'đ',
|
|
260
|
+
'tipping_hand_man': 'đââď¸',
|
|
261
|
+
'sassy_man': 'đââď¸',
|
|
262
|
+
'tipping_hand_woman': 'đââď¸',
|
|
263
|
+
'sassy_woman': 'đââď¸',
|
|
264
|
+
'raising_hand': 'đ',
|
|
265
|
+
'raising_hand_man': 'đââď¸',
|
|
266
|
+
'raising_hand_woman': 'đââď¸',
|
|
267
|
+
'deaf_person': 'đ§',
|
|
268
|
+
'deaf_man': 'đ§ââď¸',
|
|
269
|
+
'deaf_woman': 'đ§ââď¸',
|
|
270
|
+
'bow': 'đ',
|
|
271
|
+
'bowing_man': 'đââď¸',
|
|
272
|
+
'bowing_woman': 'đââď¸',
|
|
273
|
+
'facepalm': 'đ¤Ś',
|
|
274
|
+
'man_facepalming': 'đ¤Śââď¸',
|
|
275
|
+
'woman_facepalming': 'đ¤Śââď¸',
|
|
276
|
+
'shrug': 'đ¤ˇ',
|
|
277
|
+
'man_shrugging': 'đ¤ˇââď¸',
|
|
278
|
+
'woman_shrugging': 'đ¤ˇââď¸',
|
|
279
|
+
'health_worker': 'đ§ââď¸',
|
|
280
|
+
'man_health_worker': 'đ¨ââď¸',
|
|
281
|
+
'woman_health_worker': 'đŠââď¸',
|
|
282
|
+
'student': 'đ§âđ',
|
|
283
|
+
'man_student': 'đ¨âđ',
|
|
284
|
+
'woman_student': 'đŠâđ',
|
|
285
|
+
'teacher': 'đ§âđŤ',
|
|
286
|
+
'man_teacher': 'đ¨âđŤ',
|
|
287
|
+
'woman_teacher': 'đŠâđŤ',
|
|
288
|
+
'judge': 'đ§ââď¸',
|
|
289
|
+
'man_judge': 'đ¨ââď¸',
|
|
290
|
+
'woman_judge': 'đŠââď¸',
|
|
291
|
+
'farmer': 'đ§âđž',
|
|
292
|
+
'man_farmer': 'đ¨âđž',
|
|
293
|
+
'woman_farmer': 'đŠâđž',
|
|
294
|
+
'cook': 'đ§âđł',
|
|
295
|
+
'man_cook': 'đ¨âđł',
|
|
296
|
+
'woman_cook': 'đŠâđł',
|
|
297
|
+
'mechanic': 'đ§âđ§',
|
|
298
|
+
'man_mechanic': 'đ¨âđ§',
|
|
299
|
+
'woman_mechanic': 'đŠâđ§',
|
|
300
|
+
'factory_worker': 'đ§âđ',
|
|
301
|
+
'man_factory_worker': 'đ¨âđ',
|
|
302
|
+
'woman_factory_worker': 'đŠâđ',
|
|
303
|
+
'office_worker': 'đ§âđź',
|
|
304
|
+
'man_office_worker': 'đ¨âđź',
|
|
305
|
+
'woman_office_worker': 'đŠâđź',
|
|
306
|
+
'scientist': 'đ§âđŹ',
|
|
307
|
+
'man_scientist': 'đ¨âđŹ',
|
|
308
|
+
'woman_scientist': 'đŠâđŹ',
|
|
309
|
+
'technologist': 'đ§âđť',
|
|
310
|
+
'man_technologist': 'đ¨âđť',
|
|
311
|
+
'woman_technologist': 'đŠâđť',
|
|
312
|
+
'singer': 'đ§âđ¤',
|
|
313
|
+
'man_singer': 'đ¨âđ¤',
|
|
314
|
+
'woman_singer': 'đŠâđ¤',
|
|
315
|
+
'artist': 'đ§âđ¨',
|
|
316
|
+
'man_artist': 'đ¨âđ¨',
|
|
317
|
+
'woman_artist': 'đŠâđ¨',
|
|
318
|
+
'pilot': 'đ§ââď¸',
|
|
319
|
+
'man_pilot': 'đ¨ââď¸',
|
|
320
|
+
'woman_pilot': 'đŠââď¸',
|
|
321
|
+
'astronaut': 'đ§âđ',
|
|
322
|
+
'man_astronaut': 'đ¨âđ',
|
|
323
|
+
'woman_astronaut': 'đŠâđ',
|
|
324
|
+
'firefighter': 'đ§âđ',
|
|
325
|
+
'man_firefighter': 'đ¨âđ',
|
|
326
|
+
'woman_firefighter': 'đŠâđ',
|
|
327
|
+
'police_officer': 'đŽ',
|
|
328
|
+
'cop': 'đŽ',
|
|
329
|
+
'policeman': 'đŽââď¸',
|
|
330
|
+
'policewoman': 'đŽââď¸',
|
|
331
|
+
'detective': 'đľď¸',
|
|
332
|
+
'male_detective': 'đľď¸ââď¸',
|
|
333
|
+
'female_detective': 'đľď¸ââď¸',
|
|
334
|
+
'guard': 'đ',
|
|
335
|
+
'guardsman': 'đââď¸',
|
|
336
|
+
'guardswoman': 'đââď¸',
|
|
337
|
+
'ninja': 'đĽˇ',
|
|
338
|
+
'construction_worker': 'đˇ',
|
|
339
|
+
'construction_worker_man': 'đˇââď¸',
|
|
340
|
+
'construction_worker_woman': 'đˇââď¸',
|
|
341
|
+
'prince': 'đ¤´',
|
|
342
|
+
'princess': 'đ¸',
|
|
343
|
+
'person_with_turban': 'đł',
|
|
344
|
+
'man_with_turban': 'đłââď¸',
|
|
345
|
+
'woman_with_turban': 'đłââď¸',
|
|
346
|
+
'man_with_gua_pi_mao': 'đ˛',
|
|
347
|
+
'woman_with_headscarf': 'đ§',
|
|
348
|
+
'person_in_tuxedo': 'đ¤ľ',
|
|
349
|
+
'man_in_tuxedo': 'đ¤ľââď¸',
|
|
350
|
+
'woman_in_tuxedo': 'đ¤ľââď¸',
|
|
351
|
+
'person_with_veil': 'đ°',
|
|
352
|
+
'man_with_veil': 'đ°ââď¸',
|
|
353
|
+
'woman_with_veil': 'đ°ââď¸',
|
|
354
|
+
'bride_with_veil': 'đ°ââď¸',
|
|
355
|
+
'pregnant_woman': 'đ¤°',
|
|
356
|
+
'breast_feeding': 'đ¤ą',
|
|
357
|
+
'woman_feeding_baby': 'đŠâđź',
|
|
358
|
+
'man_feeding_baby': 'đ¨âđź',
|
|
359
|
+
'person_feeding_baby': 'đ§âđź',
|
|
360
|
+
'angel': 'đź',
|
|
361
|
+
'santa': 'đ
',
|
|
362
|
+
'mrs_claus': 'đ¤ś',
|
|
363
|
+
'mx_claus': 'đ§âđ',
|
|
364
|
+
'superhero': 'đڏ',
|
|
365
|
+
'superhero_man': 'đڏââď¸',
|
|
366
|
+
'superhero_woman': 'đڏââď¸',
|
|
367
|
+
'supervillain': 'đŚš',
|
|
368
|
+
'supervillain_man': 'đŚšââď¸',
|
|
369
|
+
'supervillain_woman': 'đŚšââď¸',
|
|
370
|
+
'mage': 'đ§',
|
|
371
|
+
'mage_man': 'đ§ââď¸',
|
|
372
|
+
'mage_woman': 'đ§ââď¸',
|
|
373
|
+
'fairy': 'đ§',
|
|
374
|
+
'fairy_man': 'đ§ââď¸',
|
|
375
|
+
'fairy_woman': 'đ§ââď¸',
|
|
376
|
+
'vampire': 'đ§',
|
|
377
|
+
'vampire_man': 'đ§ââď¸',
|
|
378
|
+
'vampire_woman': 'đ§ââď¸',
|
|
379
|
+
'merperson': 'đ§',
|
|
380
|
+
'merman': 'đ§ââď¸',
|
|
381
|
+
'mermaid': 'đ§ââď¸',
|
|
382
|
+
'elf': 'đ§',
|
|
383
|
+
'elf_man': 'đ§ââď¸',
|
|
384
|
+
'elf_woman': 'đ§ââď¸',
|
|
385
|
+
'genie': 'đ§',
|
|
386
|
+
'genie_man': 'đ§ââď¸',
|
|
387
|
+
'genie_woman': 'đ§ââď¸',
|
|
388
|
+
'zombie': 'đ§',
|
|
389
|
+
'zombie_man': 'đ§ââď¸',
|
|
390
|
+
'zombie_woman': 'đ§ââď¸',
|
|
391
|
+
'massage': 'đ',
|
|
392
|
+
'massage_man': 'đââď¸',
|
|
393
|
+
'massage_woman': 'đââď¸',
|
|
394
|
+
'haircut': 'đ',
|
|
395
|
+
'haircut_man': 'đââď¸',
|
|
396
|
+
'haircut_woman': 'đââď¸',
|
|
397
|
+
'walking': 'đś',
|
|
398
|
+
'walking_man': 'đśââď¸',
|
|
399
|
+
'walking_woman': 'đśââď¸',
|
|
400
|
+
'standing_person': 'đ§',
|
|
401
|
+
'standing_man': 'đ§ââď¸',
|
|
402
|
+
'standing_woman': 'đ§ââď¸',
|
|
403
|
+
'kneeling_person': 'đ§',
|
|
404
|
+
'kneeling_man': 'đ§ââď¸',
|
|
405
|
+
'kneeling_woman': 'đ§ââď¸',
|
|
406
|
+
'person_with_probing_cane': 'đ§âđŚŻ',
|
|
407
|
+
'man_with_probing_cane': 'đ¨âđŚŻ',
|
|
408
|
+
'woman_with_probing_cane': 'đŠâđŚŻ',
|
|
409
|
+
'person_in_motorized_wheelchair': 'đ§âđŚź',
|
|
410
|
+
'man_in_motorized_wheelchair': 'đ¨âđŚź',
|
|
411
|
+
'woman_in_motorized_wheelchair': 'đŠâđŚź',
|
|
412
|
+
'person_in_manual_wheelchair': 'đ§âđŚ˝',
|
|
413
|
+
'man_in_manual_wheelchair': 'đ¨âđŚ˝',
|
|
414
|
+
'woman_in_manual_wheelchair': 'đŠâđŚ˝',
|
|
415
|
+
'runner': 'đ',
|
|
416
|
+
'running': 'đ',
|
|
417
|
+
'running_man': 'đââď¸',
|
|
418
|
+
'running_woman': 'đââď¸',
|
|
419
|
+
'woman_dancing': 'đ',
|
|
420
|
+
'dancer': 'đ',
|
|
421
|
+
'man_dancing': 'đş',
|
|
422
|
+
'business_suit_levitating': 'đ´ď¸',
|
|
423
|
+
'dancers': 'đŻ',
|
|
424
|
+
'dancing_men': 'đŻââď¸',
|
|
425
|
+
'dancing_women': 'đŻââď¸',
|
|
426
|
+
'sauna_person': 'đ§',
|
|
427
|
+
'sauna_man': 'đ§ââď¸',
|
|
428
|
+
'sauna_woman': 'đ§ââď¸',
|
|
429
|
+
'climbing': 'đ§',
|
|
430
|
+
'climbing_man': 'đ§ââď¸',
|
|
431
|
+
'climbing_woman': 'đ§ââď¸',
|
|
432
|
+
'person_fencing': 'đ¤ş',
|
|
433
|
+
'horse_racing': 'đ',
|
|
434
|
+
'skier': 'âˇď¸',
|
|
435
|
+
'snowboarder': 'đ',
|
|
436
|
+
'golfing': 'đď¸',
|
|
437
|
+
'golfing_man': 'đď¸ââď¸',
|
|
438
|
+
'golfing_woman': 'đď¸ââď¸',
|
|
439
|
+
'surfer': 'đ',
|
|
440
|
+
'surfing_man': 'đââď¸',
|
|
441
|
+
'surfing_woman': 'đââď¸',
|
|
442
|
+
'rowboat': 'đŁ',
|
|
443
|
+
'rowing_man': 'đŁââď¸',
|
|
444
|
+
'rowing_woman': 'đŁââď¸',
|
|
445
|
+
'swimmer': 'đ',
|
|
446
|
+
'swimming_man': 'đââď¸',
|
|
447
|
+
'swimming_woman': 'đââď¸',
|
|
448
|
+
'bouncing_ball_person': 'âšď¸',
|
|
449
|
+
'bouncing_ball_man': 'âšď¸ââď¸',
|
|
450
|
+
'basketball_man': 'âšď¸ââď¸',
|
|
451
|
+
'bouncing_ball_woman': 'âšď¸ââď¸',
|
|
452
|
+
'basketball_woman': 'âšď¸ââď¸',
|
|
453
|
+
'weight_lifting': 'đď¸',
|
|
454
|
+
'weight_lifting_man': 'đď¸ââď¸',
|
|
455
|
+
'weight_lifting_woman': 'đď¸ââď¸',
|
|
456
|
+
'bicyclist': 'đ´',
|
|
457
|
+
'biking_man': 'đ´ââď¸',
|
|
458
|
+
'biking_woman': 'đ´ââď¸',
|
|
459
|
+
'mountain_bicyclist': 'đľ',
|
|
460
|
+
'mountain_biking_man': 'đľââď¸',
|
|
461
|
+
'mountain_biking_woman': 'đľââď¸',
|
|
462
|
+
'cartwheeling': 'đ¤¸',
|
|
463
|
+
'man_cartwheeling': 'đ¤¸ââď¸',
|
|
464
|
+
'woman_cartwheeling': 'đ¤¸ââď¸',
|
|
465
|
+
'wrestling': 'đ¤ź',
|
|
466
|
+
'men_wrestling': 'đ¤źââď¸',
|
|
467
|
+
'women_wrestling': 'đ¤źââď¸',
|
|
468
|
+
'water_polo': 'đ¤˝',
|
|
469
|
+
'man_playing_water_polo': 'đ¤˝ââď¸',
|
|
470
|
+
'woman_playing_water_polo': 'đ¤˝ââď¸',
|
|
471
|
+
'handball_person': 'đ¤ž',
|
|
472
|
+
'man_playing_handball': 'đ¤žââď¸',
|
|
473
|
+
'woman_playing_handball': 'đ¤žââď¸',
|
|
474
|
+
'juggling_person': 'đ¤š',
|
|
475
|
+
'man_juggling': 'đ¤šââď¸',
|
|
476
|
+
'woman_juggling': 'đ¤šââď¸',
|
|
477
|
+
'lotus_position': 'đ§',
|
|
478
|
+
'lotus_position_man': 'đ§ââď¸',
|
|
479
|
+
'lotus_position_woman': 'đ§ââď¸',
|
|
480
|
+
'bath': 'đ',
|
|
481
|
+
'sleeping_bed': 'đ',
|
|
482
|
+
'people_holding_hands': 'đ§âđ¤âđ§',
|
|
483
|
+
'two_women_holding_hands': 'đ',
|
|
484
|
+
'couple': 'đŤ',
|
|
485
|
+
'two_men_holding_hands': 'đŹ',
|
|
486
|
+
'couplekiss': 'đ',
|
|
487
|
+
'couplekiss_man_woman': 'đŠââ¤ď¸âđâđ¨',
|
|
488
|
+
'couplekiss_man_man': 'đ¨ââ¤ď¸âđâđ¨',
|
|
489
|
+
'couplekiss_woman_woman': 'đŠââ¤ď¸âđâđŠ',
|
|
490
|
+
'couple_with_heart': 'đ',
|
|
491
|
+
'couple_with_heart_woman_man': 'đŠââ¤ď¸âđ¨',
|
|
492
|
+
'couple_with_heart_man_man': 'đ¨ââ¤ď¸âđ¨',
|
|
493
|
+
'couple_with_heart_woman_woman': 'đŠââ¤ď¸âđŠ',
|
|
494
|
+
'family': 'đŞ',
|
|
495
|
+
'family_man_woman_boy': 'đ¨âđŠâđŚ',
|
|
496
|
+
'family_man_woman_girl': 'đ¨âđŠâđ§',
|
|
497
|
+
'family_man_woman_girl_boy': 'đ¨âđŠâđ§âđŚ',
|
|
498
|
+
'family_man_woman_boy_boy': 'đ¨âđŠâđŚâđŚ',
|
|
499
|
+
'family_man_woman_girl_girl': 'đ¨âđŠâđ§âđ§',
|
|
500
|
+
'family_man_man_boy': 'đ¨âđ¨âđŚ',
|
|
501
|
+
'family_man_man_girl': 'đ¨âđ¨âđ§',
|
|
502
|
+
'family_man_man_girl_boy': 'đ¨âđ¨âđ§âđŚ',
|
|
503
|
+
'family_man_man_boy_boy': 'đ¨âđ¨âđŚâđŚ',
|
|
504
|
+
'family_man_man_girl_girl': 'đ¨âđ¨âđ§âđ§',
|
|
505
|
+
'family_woman_woman_boy': 'đŠâđŠâđŚ',
|
|
506
|
+
'family_woman_woman_girl': 'đŠâđŠâđ§',
|
|
507
|
+
'family_woman_woman_girl_boy': 'đŠâđŠâđ§âđŚ',
|
|
508
|
+
'family_woman_woman_boy_boy': 'đŠâđŠâđŚâđŚ',
|
|
509
|
+
'family_woman_woman_girl_girl': 'đŠâđŠâđ§âđ§',
|
|
510
|
+
'family_man_boy': 'đ¨âđŚ',
|
|
511
|
+
'family_man_boy_boy': 'đ¨âđŚâđŚ',
|
|
512
|
+
'family_man_girl': 'đ¨âđ§',
|
|
513
|
+
'family_man_girl_boy': 'đ¨âđ§âđŚ',
|
|
514
|
+
'family_man_girl_girl': 'đ¨âđ§âđ§',
|
|
515
|
+
'family_woman_boy': 'đŠâđŚ',
|
|
516
|
+
'family_woman_boy_boy': 'đŠâđŚâđŚ',
|
|
517
|
+
'family_woman_girl': 'đŠâđ§',
|
|
518
|
+
'family_woman_girl_boy': 'đŠâđ§âđŚ',
|
|
519
|
+
'family_woman_girl_girl': 'đŠâđ§âđ§',
|
|
520
|
+
'speaking_head': 'đŁď¸',
|
|
521
|
+
'bust_in_silhouette': 'đ¤',
|
|
522
|
+
'busts_in_silhouette': 'đĽ',
|
|
523
|
+
'people_hugging': 'đŤ',
|
|
524
|
+
'footprints': 'đŁ',
|
|
525
|
+
'monkey_face': 'đľ',
|
|
526
|
+
'monkey': 'đ',
|
|
527
|
+
'gorilla': 'đŚ',
|
|
528
|
+
'orangutan': 'đڧ',
|
|
529
|
+
'dog': 'đś',
|
|
530
|
+
'dog2': 'đ',
|
|
531
|
+
'guide_dog': 'đŚŽ',
|
|
532
|
+
'service_dog': 'đâđŚş',
|
|
533
|
+
'poodle': 'đŠ',
|
|
534
|
+
'wolf': 'đş',
|
|
535
|
+
'fox_face': 'đŚ',
|
|
536
|
+
'raccoon': 'đŚ',
|
|
537
|
+
'cat': 'đą',
|
|
538
|
+
'cat2': 'đ',
|
|
539
|
+
'black_cat': 'đââŹ',
|
|
540
|
+
'lion': 'đŚ',
|
|
541
|
+
'tiger': 'đŻ',
|
|
542
|
+
'tiger2': 'đ
',
|
|
543
|
+
'leopard': 'đ',
|
|
544
|
+
'horse': 'đ´',
|
|
545
|
+
'racehorse': 'đ',
|
|
546
|
+
'unicorn': 'đŚ',
|
|
547
|
+
'zebra': 'đŚ',
|
|
548
|
+
'deer': 'đŚ',
|
|
549
|
+
'bison': 'đŚŹ',
|
|
550
|
+
'cow': 'đŽ',
|
|
551
|
+
'ox': 'đ',
|
|
552
|
+
'water_buffalo': 'đ',
|
|
553
|
+
'cow2': 'đ',
|
|
554
|
+
'pig': 'đˇ',
|
|
555
|
+
'pig2': 'đ',
|
|
556
|
+
'boar': 'đ',
|
|
557
|
+
'pig_nose': 'đ˝',
|
|
558
|
+
'ram': 'đ',
|
|
559
|
+
'sheep': 'đ',
|
|
560
|
+
'goat': 'đ',
|
|
561
|
+
'dromedary_camel': 'đŞ',
|
|
562
|
+
'camel': 'đŤ',
|
|
563
|
+
'llama': 'đŚ',
|
|
564
|
+
'giraffe': 'đŚ',
|
|
565
|
+
'elephant': 'đ',
|
|
566
|
+
'mammoth': 'đŚŁ',
|
|
567
|
+
'rhinoceros': 'đŚ',
|
|
568
|
+
'hippopotamus': 'đŚ',
|
|
569
|
+
'mouse': 'đ',
|
|
570
|
+
'mouse2': 'đ',
|
|
571
|
+
'rat': 'đ',
|
|
572
|
+
'hamster': 'đš',
|
|
573
|
+
'rabbit': 'đ°',
|
|
574
|
+
'rabbit2': 'đ',
|
|
575
|
+
'chipmunk': 'đżď¸',
|
|
576
|
+
'beaver': 'đŚŤ',
|
|
577
|
+
'hedgehog': 'đŚ',
|
|
578
|
+
'bat': 'đŚ',
|
|
579
|
+
'bear': 'đť',
|
|
580
|
+
'polar_bear': 'đťââď¸',
|
|
581
|
+
'koala': 'đ¨',
|
|
582
|
+
'panda_face': 'đź',
|
|
583
|
+
'sloth': 'đŚĽ',
|
|
584
|
+
'otter': 'đŚŚ',
|
|
585
|
+
'skunk': 'đڍ',
|
|
586
|
+
'kangaroo': 'đŚ',
|
|
587
|
+
'badger': 'đŚĄ',
|
|
588
|
+
'feet': 'đž',
|
|
589
|
+
'paw_prints': 'đž',
|
|
590
|
+
'turkey': 'đŚ',
|
|
591
|
+
'chicken': 'đ',
|
|
592
|
+
'rooster': 'đ',
|
|
593
|
+
'hatching_chick': 'đŁ',
|
|
594
|
+
'baby_chick': 'đ¤',
|
|
595
|
+
'hatched_chick': 'đĽ',
|
|
596
|
+
'bird': 'đŚ',
|
|
597
|
+
'penguin': 'đ§',
|
|
598
|
+
'dove': 'đď¸',
|
|
599
|
+
'eagle': 'đŚ
',
|
|
600
|
+
'duck': 'đŚ',
|
|
601
|
+
'swan': 'đŚ˘',
|
|
602
|
+
'owl': 'đŚ',
|
|
603
|
+
'dodo': 'đڤ',
|
|
604
|
+
'feather': 'đŞś',
|
|
605
|
+
'flamingo': 'đŚŠ',
|
|
606
|
+
'peacock': 'đŚ',
|
|
607
|
+
'parrot': 'đŚ',
|
|
608
|
+
'frog': 'đ¸',
|
|
609
|
+
'crocodile': 'đ',
|
|
610
|
+
'turtle': 'đ˘',
|
|
611
|
+
'lizard': 'đŚ',
|
|
612
|
+
'snake': 'đ',
|
|
613
|
+
'dragon_face': 'đ˛',
|
|
614
|
+
'dragon': 'đ',
|
|
615
|
+
'sauropod': 'đŚ',
|
|
616
|
+
't-rex': 'đŚ',
|
|
617
|
+
'whale': 'đł',
|
|
618
|
+
'whale2': 'đ',
|
|
619
|
+
'dolphin': 'đŹ',
|
|
620
|
+
'flipper': 'đŹ',
|
|
621
|
+
'seal': 'đŚ',
|
|
622
|
+
'fish': 'đ',
|
|
623
|
+
'tropical_fish': 'đ ',
|
|
624
|
+
'blowfish': 'đĄ',
|
|
625
|
+
'shark': 'đŚ',
|
|
626
|
+
'octopus': 'đ',
|
|
627
|
+
'shell': 'đ',
|
|
628
|
+
'snail': 'đ',
|
|
629
|
+
'butterfly': 'đŚ',
|
|
630
|
+
'bug': 'đ',
|
|
631
|
+
'ant': 'đ',
|
|
632
|
+
'bee': 'đ',
|
|
633
|
+
'honeybee': 'đ',
|
|
634
|
+
'beetle': 'đŞ˛',
|
|
635
|
+
'lady_beetle': 'đ',
|
|
636
|
+
'cricket': 'đŚ',
|
|
637
|
+
'cockroach': 'đŞł',
|
|
638
|
+
'spider': 'đˇď¸',
|
|
639
|
+
'spider_web': 'đ¸ď¸',
|
|
640
|
+
'scorpion': 'đŚ',
|
|
641
|
+
'mosquito': 'đŚ',
|
|
642
|
+
'fly': 'đް',
|
|
643
|
+
'worm': 'đŞą',
|
|
644
|
+
'microbe': 'đŚ ',
|
|
645
|
+
'bouquet': 'đ',
|
|
646
|
+
'cherry_blossom': 'đ¸',
|
|
647
|
+
'white_flower': 'đŽ',
|
|
648
|
+
'rosette': 'đľď¸',
|
|
649
|
+
'rose': 'đš',
|
|
650
|
+
'wilted_flower': 'đĽ',
|
|
651
|
+
'hibiscus': 'đş',
|
|
652
|
+
'sunflower': 'đť',
|
|
653
|
+
'blossom': 'đź',
|
|
654
|
+
'tulip': 'đˇ',
|
|
655
|
+
'seedling': 'đą',
|
|
656
|
+
'potted_plant': 'đŞ´',
|
|
657
|
+
'evergreen_tree': 'đ˛',
|
|
658
|
+
'deciduous_tree': 'đł',
|
|
659
|
+
'palm_tree': 'đ´',
|
|
660
|
+
'cactus': 'đľ',
|
|
661
|
+
'ear_of_rice': 'đž',
|
|
662
|
+
'herb': 'đż',
|
|
663
|
+
'shamrock': 'âď¸',
|
|
664
|
+
'four_leaf_clover': 'đ',
|
|
665
|
+
'maple_leaf': 'đ',
|
|
666
|
+
'fallen_leaf': 'đ',
|
|
667
|
+
'leaves': 'đ',
|
|
668
|
+
'grapes': 'đ',
|
|
669
|
+
'melon': 'đ',
|
|
670
|
+
'watermelon': 'đ',
|
|
671
|
+
'tangerine': 'đ',
|
|
672
|
+
'orange': 'đ',
|
|
673
|
+
'mandarin': 'đ',
|
|
674
|
+
'lemon': 'đ',
|
|
675
|
+
'banana': 'đ',
|
|
676
|
+
'pineapple': 'đ',
|
|
677
|
+
'mango': 'đĽ',
|
|
678
|
+
'apple': 'đ',
|
|
679
|
+
'green_apple': 'đ',
|
|
680
|
+
'pear': 'đ',
|
|
681
|
+
'peach': 'đ',
|
|
682
|
+
'cherries': 'đ',
|
|
683
|
+
'strawberry': 'đ',
|
|
684
|
+
'blueberries': 'đŤ',
|
|
685
|
+
'kiwi_fruit': 'đĽ',
|
|
686
|
+
'tomato': 'đ
',
|
|
687
|
+
'olive': 'đŤ',
|
|
688
|
+
'coconut': 'đĽĽ',
|
|
689
|
+
'avocado': 'đĽ',
|
|
690
|
+
'eggplant': 'đ',
|
|
691
|
+
'potato': 'đĽ',
|
|
692
|
+
'carrot': 'đĽ',
|
|
693
|
+
'corn': 'đ˝',
|
|
694
|
+
'hot_pepper': 'đśď¸',
|
|
695
|
+
'bell_pepper': 'đŤ',
|
|
696
|
+
'cucumber': 'đĽ',
|
|
697
|
+
'leafy_green': 'đĽŹ',
|
|
698
|
+
'broccoli': 'đĽŚ',
|
|
699
|
+
'garlic': 'đ§',
|
|
700
|
+
'onion': 'đ§
',
|
|
701
|
+
'mushroom': 'đ',
|
|
702
|
+
'peanuts': 'đĽ',
|
|
703
|
+
'chestnut': 'đ°',
|
|
704
|
+
'bread': 'đ',
|
|
705
|
+
'croissant': 'đĽ',
|
|
706
|
+
'baguette_bread': 'đĽ',
|
|
707
|
+
'flatbread': 'đŤ',
|
|
708
|
+
'pretzel': 'đĽ¨',
|
|
709
|
+
'bagel': 'đĽŻ',
|
|
710
|
+
'pancakes': 'đĽ',
|
|
711
|
+
'waffle': 'đ§',
|
|
712
|
+
'cheese': 'đ§',
|
|
713
|
+
'meat_on_bone': 'đ',
|
|
714
|
+
'poultry_leg': 'đ',
|
|
715
|
+
'cut_of_meat': 'đĽŠ',
|
|
716
|
+
'bacon': 'đĽ',
|
|
717
|
+
'hamburger': 'đ',
|
|
718
|
+
'fries': 'đ',
|
|
719
|
+
'pizza': 'đ',
|
|
720
|
+
'hotdog': 'đ',
|
|
721
|
+
'sandwich': 'đĽŞ',
|
|
722
|
+
'taco': 'đŽ',
|
|
723
|
+
'burrito': 'đŻ',
|
|
724
|
+
'tamale': 'đŤ',
|
|
725
|
+
'stuffed_flatbread': 'đĽ',
|
|
726
|
+
'falafel': 'đ§',
|
|
727
|
+
'egg': 'đĽ',
|
|
728
|
+
'fried_egg': 'đł',
|
|
729
|
+
'shallow_pan_of_food': 'đĽ',
|
|
730
|
+
'stew': 'đ˛',
|
|
731
|
+
'fondue': 'đŤ',
|
|
732
|
+
'bowl_with_spoon': 'đĽŁ',
|
|
733
|
+
'green_salad': 'đĽ',
|
|
734
|
+
'popcorn': 'đż',
|
|
735
|
+
'butter': 'đ§',
|
|
736
|
+
'salt': 'đ§',
|
|
737
|
+
'canned_food': 'đĽŤ',
|
|
738
|
+
'bento': 'đą',
|
|
739
|
+
'rice_cracker': 'đ',
|
|
740
|
+
'rice_ball': 'đ',
|
|
741
|
+
'rice': 'đ',
|
|
742
|
+
'curry': 'đ',
|
|
743
|
+
'ramen': 'đ',
|
|
744
|
+
'spaghetti': 'đ',
|
|
745
|
+
'sweet_potato': 'đ ',
|
|
746
|
+
'oden': 'đ˘',
|
|
747
|
+
'sushi': 'đŁ',
|
|
748
|
+
'fried_shrimp': 'đ¤',
|
|
749
|
+
'fish_cake': 'đĽ',
|
|
750
|
+
'moon_cake': 'đĽŽ',
|
|
751
|
+
'dango': 'đĄ',
|
|
752
|
+
'dumpling': 'đĽ',
|
|
753
|
+
'fortune_cookie': 'đĽ ',
|
|
754
|
+
'takeout_box': 'đĽĄ',
|
|
755
|
+
'crab': 'đŚ',
|
|
756
|
+
'lobster': 'đŚ',
|
|
757
|
+
'shrimp': 'đŚ',
|
|
758
|
+
'squid': 'đŚ',
|
|
759
|
+
'oyster': 'đŚŞ',
|
|
760
|
+
'icecream': 'đŚ',
|
|
761
|
+
'shaved_ice': 'đ§',
|
|
762
|
+
'ice_cream': 'đ¨',
|
|
763
|
+
'doughnut': 'đŠ',
|
|
764
|
+
'cookie': 'đŞ',
|
|
765
|
+
'birthday': 'đ',
|
|
766
|
+
'cake': 'đ°',
|
|
767
|
+
'cupcake': 'đ§',
|
|
768
|
+
'pie': 'đĽ§',
|
|
769
|
+
'chocolate_bar': 'đŤ',
|
|
770
|
+
'candy': 'đŹ',
|
|
771
|
+
'lollipop': 'đ',
|
|
772
|
+
'custard': 'đŽ',
|
|
773
|
+
'honey_pot': 'đŻ',
|
|
774
|
+
'baby_bottle': 'đź',
|
|
775
|
+
'milk_glass': 'đĽ',
|
|
776
|
+
'coffee': 'â',
|
|
777
|
+
'teapot': 'đŤ',
|
|
778
|
+
'tea': 'đľ',
|
|
779
|
+
'sake': 'đś',
|
|
780
|
+
'champagne': 'đž',
|
|
781
|
+
'wine_glass': 'đˇ',
|
|
782
|
+
'cocktail': 'đ¸',
|
|
783
|
+
'tropical_drink': 'đš',
|
|
784
|
+
'beer': 'đş',
|
|
785
|
+
'beers': 'đť',
|
|
786
|
+
'clinking_glasses': 'đĽ',
|
|
787
|
+
'tumbler_glass': 'đĽ',
|
|
788
|
+
'cup_with_straw': 'đĽ¤',
|
|
789
|
+
'bubble_tea': 'đ§',
|
|
790
|
+
'beverage_box': 'đ§',
|
|
791
|
+
'mate': 'đ§',
|
|
792
|
+
'ice_cube': 'đ§',
|
|
793
|
+
'chopsticks': 'đĽ˘',
|
|
794
|
+
'plate_with_cutlery': 'đ˝ď¸',
|
|
795
|
+
'fork_and_knife': 'đ´',
|
|
796
|
+
'spoon': 'đĽ',
|
|
797
|
+
'hocho': 'đŞ',
|
|
798
|
+
'knife': 'đŞ',
|
|
799
|
+
'amphora': 'đş',
|
|
800
|
+
'earth_africa': 'đ',
|
|
801
|
+
'earth_americas': 'đ',
|
|
802
|
+
'earth_asia': 'đ',
|
|
803
|
+
'globe_with_meridians': 'đ',
|
|
804
|
+
'world_map': 'đşď¸',
|
|
805
|
+
'japan': 'đž',
|
|
806
|
+
'compass': 'đ§',
|
|
807
|
+
'mountain_snow': 'đď¸',
|
|
808
|
+
'mountain': 'â°ď¸',
|
|
809
|
+
'volcano': 'đ',
|
|
810
|
+
'mount_fuji': 'đť',
|
|
811
|
+
'camping': 'đď¸',
|
|
812
|
+
'beach_umbrella': 'đď¸',
|
|
813
|
+
'desert': 'đď¸',
|
|
814
|
+
'desert_island': 'đď¸',
|
|
815
|
+
'national_park': 'đď¸',
|
|
816
|
+
'stadium': 'đď¸',
|
|
817
|
+
'classical_building': 'đď¸',
|
|
818
|
+
'building_construction': 'đď¸',
|
|
819
|
+
'bricks': 'đ§ą',
|
|
820
|
+
'rock': 'đި',
|
|
821
|
+
'wood': 'đŞľ',
|
|
822
|
+
'hut': 'đ',
|
|
823
|
+
'houses': 'đď¸',
|
|
824
|
+
'derelict_house': 'đď¸',
|
|
825
|
+
'house': 'đ ',
|
|
826
|
+
'house_with_garden': 'đĄ',
|
|
827
|
+
'office': 'đ˘',
|
|
828
|
+
'post_office': 'đŁ',
|
|
829
|
+
'european_post_office': 'đ¤',
|
|
830
|
+
'hospital': 'đĽ',
|
|
831
|
+
'bank': 'đŚ',
|
|
832
|
+
'hotel': 'đ¨',
|
|
833
|
+
'love_hotel': 'đŠ',
|
|
834
|
+
'convenience_store': 'đŞ',
|
|
835
|
+
'school': 'đŤ',
|
|
836
|
+
'department_store': 'đŹ',
|
|
837
|
+
'factory': 'đ',
|
|
838
|
+
'japanese_castle': 'đŻ',
|
|
839
|
+
'european_castle': 'đ°',
|
|
840
|
+
'wedding': 'đ',
|
|
841
|
+
'tokyo_tower': 'đź',
|
|
842
|
+
'statue_of_liberty': 'đ˝',
|
|
843
|
+
'church': 'âŞ',
|
|
844
|
+
'mosque': 'đ',
|
|
845
|
+
'hindu_temple': 'đ',
|
|
846
|
+
'synagogue': 'đ',
|
|
847
|
+
'shinto_shrine': 'âŠď¸',
|
|
848
|
+
'kaaba': 'đ',
|
|
849
|
+
'fountain': 'â˛',
|
|
850
|
+
'tent': 'âş',
|
|
851
|
+
'foggy': 'đ',
|
|
852
|
+
'night_with_stars': 'đ',
|
|
853
|
+
'cityscape': 'đď¸',
|
|
854
|
+
'sunrise_over_mountains': 'đ',
|
|
855
|
+
'sunrise': 'đ
',
|
|
856
|
+
'city_sunset': 'đ',
|
|
857
|
+
'city_sunrise': 'đ',
|
|
858
|
+
'bridge_at_night': 'đ',
|
|
859
|
+
'hotsprings': 'â¨ď¸',
|
|
860
|
+
'carousel_horse': 'đ ',
|
|
861
|
+
'ferris_wheel': 'đĄ',
|
|
862
|
+
'roller_coaster': 'đ˘',
|
|
863
|
+
'barber': 'đ',
|
|
864
|
+
'circus_tent': 'đŞ',
|
|
865
|
+
'steam_locomotive': 'đ',
|
|
866
|
+
'railway_car': 'đ',
|
|
867
|
+
'bullettrain_side': 'đ',
|
|
868
|
+
'bullettrain_front': 'đ
',
|
|
869
|
+
'train2': 'đ',
|
|
870
|
+
'metro': 'đ',
|
|
871
|
+
'light_rail': 'đ',
|
|
872
|
+
'station': 'đ',
|
|
873
|
+
'tram': 'đ',
|
|
874
|
+
'monorail': 'đ',
|
|
875
|
+
'mountain_railway': 'đ',
|
|
876
|
+
'train': 'đ',
|
|
877
|
+
'bus': 'đ',
|
|
878
|
+
'oncoming_bus': 'đ',
|
|
879
|
+
'trolleybus': 'đ',
|
|
880
|
+
'minibus': 'đ',
|
|
881
|
+
'ambulance': 'đ',
|
|
882
|
+
'fire_engine': 'đ',
|
|
883
|
+
'police_car': 'đ',
|
|
884
|
+
'oncoming_police_car': 'đ',
|
|
885
|
+
'taxi': 'đ',
|
|
886
|
+
'oncoming_taxi': 'đ',
|
|
887
|
+
'car': 'đ',
|
|
888
|
+
'red_car': 'đ',
|
|
889
|
+
'oncoming_automobile': 'đ',
|
|
890
|
+
'blue_car': 'đ',
|
|
891
|
+
'pickup_truck': 'đť',
|
|
892
|
+
'truck': 'đ',
|
|
893
|
+
'articulated_lorry': 'đ',
|
|
894
|
+
'tractor': 'đ',
|
|
895
|
+
'racing_car': 'đď¸',
|
|
896
|
+
'motorcycle': 'đď¸',
|
|
897
|
+
'motor_scooter': 'đľ',
|
|
898
|
+
'manual_wheelchair': 'đŚ˝',
|
|
899
|
+
'motorized_wheelchair': 'đŚź',
|
|
900
|
+
'auto_rickshaw': 'đş',
|
|
901
|
+
'bike': 'đ˛',
|
|
902
|
+
'kick_scooter': 'đ´',
|
|
903
|
+
'skateboard': 'đš',
|
|
904
|
+
'roller_skate': 'đź',
|
|
905
|
+
'busstop': 'đ',
|
|
906
|
+
'motorway': 'đŁď¸',
|
|
907
|
+
'railway_track': 'đ¤ď¸',
|
|
908
|
+
'oil_drum': 'đ˘ď¸',
|
|
909
|
+
'fuelpump': 'â˝',
|
|
910
|
+
'rotating_light': 'đ¨',
|
|
911
|
+
'traffic_light': 'đĽ',
|
|
912
|
+
'vertical_traffic_light': 'đŚ',
|
|
913
|
+
'stop_sign': 'đ',
|
|
914
|
+
'construction': 'đ§',
|
|
915
|
+
'anchor': 'â',
|
|
916
|
+
'boat': 'âľ',
|
|
917
|
+
'sailboat': 'âľ',
|
|
918
|
+
'canoe': 'đś',
|
|
919
|
+
'speedboat': 'đ¤',
|
|
920
|
+
'passenger_ship': 'đłď¸',
|
|
921
|
+
'ferry': 'â´ď¸',
|
|
922
|
+
'motor_boat': 'đĽď¸',
|
|
923
|
+
'ship': 'đ˘',
|
|
924
|
+
'airplane': 'âď¸',
|
|
925
|
+
'small_airplane': 'đŠď¸',
|
|
926
|
+
'flight_departure': 'đŤ',
|
|
927
|
+
'flight_arrival': 'đŹ',
|
|
928
|
+
'parachute': 'đŞ',
|
|
929
|
+
'seat': 'đş',
|
|
930
|
+
'helicopter': 'đ',
|
|
931
|
+
'suspension_railway': 'đ',
|
|
932
|
+
'mountain_cableway': 'đ ',
|
|
933
|
+
'aerial_tramway': 'đĄ',
|
|
934
|
+
'artificial_satellite': 'đ°ď¸',
|
|
935
|
+
'rocket': 'đ',
|
|
936
|
+
'flying_saucer': 'đ¸',
|
|
937
|
+
'bellhop_bell': 'đď¸',
|
|
938
|
+
'luggage': 'đ§ł',
|
|
939
|
+
'hourglass': 'â',
|
|
940
|
+
'hourglass_flowing_sand': 'âł',
|
|
941
|
+
'watch': 'â',
|
|
942
|
+
'alarm_clock': 'â°',
|
|
943
|
+
'stopwatch': 'âąď¸',
|
|
944
|
+
'timer_clock': 'â˛ď¸',
|
|
945
|
+
'mantelpiece_clock': 'đ°ď¸',
|
|
946
|
+
'clock12': 'đ',
|
|
947
|
+
'clock1230': 'đ§',
|
|
948
|
+
'clock1': 'đ',
|
|
949
|
+
'clock130': 'đ',
|
|
950
|
+
'clock2': 'đ',
|
|
951
|
+
'clock230': 'đ',
|
|
952
|
+
'clock3': 'đ',
|
|
953
|
+
'clock330': 'đ',
|
|
954
|
+
'clock4': 'đ',
|
|
955
|
+
'clock430': 'đ',
|
|
956
|
+
'clock5': 'đ',
|
|
957
|
+
'clock530': 'đ ',
|
|
958
|
+
'clock6': 'đ',
|
|
959
|
+
'clock630': 'đĄ',
|
|
960
|
+
'clock7': 'đ',
|
|
961
|
+
'clock730': 'đ˘',
|
|
962
|
+
'clock8': 'đ',
|
|
963
|
+
'clock830': 'đŁ',
|
|
964
|
+
'clock9': 'đ',
|
|
965
|
+
'clock930': 'đ¤',
|
|
966
|
+
'clock10': 'đ',
|
|
967
|
+
'clock1030': 'đĽ',
|
|
968
|
+
'clock11': 'đ',
|
|
969
|
+
'clock1130': 'đŚ',
|
|
970
|
+
'new_moon': 'đ',
|
|
971
|
+
'waxing_crescent_moon': 'đ',
|
|
972
|
+
'first_quarter_moon': 'đ',
|
|
973
|
+
'moon': 'đ',
|
|
974
|
+
'waxing_gibbous_moon': 'đ',
|
|
975
|
+
'full_moon': 'đ',
|
|
976
|
+
'waning_gibbous_moon': 'đ',
|
|
977
|
+
'last_quarter_moon': 'đ',
|
|
978
|
+
'waning_crescent_moon': 'đ',
|
|
979
|
+
'crescent_moon': 'đ',
|
|
980
|
+
'new_moon_with_face': 'đ',
|
|
981
|
+
'first_quarter_moon_with_face': 'đ',
|
|
982
|
+
'last_quarter_moon_with_face': 'đ',
|
|
983
|
+
'thermometer': 'đĄď¸',
|
|
984
|
+
'sunny': 'âď¸',
|
|
985
|
+
'full_moon_with_face': 'đ',
|
|
986
|
+
'sun_with_face': 'đ',
|
|
987
|
+
'ringed_planet': 'đŞ',
|
|
988
|
+
'star': 'â',
|
|
989
|
+
'star2': 'đ',
|
|
990
|
+
'stars': 'đ ',
|
|
991
|
+
'milky_way': 'đ',
|
|
992
|
+
'cloud': 'âď¸',
|
|
993
|
+
'partly_sunny': 'â
',
|
|
994
|
+
'cloud_with_lightning_and_rain': 'âď¸',
|
|
995
|
+
'sun_behind_small_cloud': 'đ¤ď¸',
|
|
996
|
+
'sun_behind_large_cloud': 'đĽď¸',
|
|
997
|
+
'sun_behind_rain_cloud': 'đŚď¸',
|
|
998
|
+
'cloud_with_rain': 'đ§ď¸',
|
|
999
|
+
'cloud_with_snow': 'đ¨ď¸',
|
|
1000
|
+
'cloud_with_lightning': 'đŠď¸',
|
|
1001
|
+
'tornado': 'đŞď¸',
|
|
1002
|
+
'fog': 'đŤď¸',
|
|
1003
|
+
'wind_face': 'đŹď¸',
|
|
1004
|
+
'cyclone': 'đ',
|
|
1005
|
+
'rainbow': 'đ',
|
|
1006
|
+
'closed_umbrella': 'đ',
|
|
1007
|
+
'open_umbrella': 'âď¸',
|
|
1008
|
+
'umbrella': 'â',
|
|
1009
|
+
'parasol_on_ground': 'âąď¸',
|
|
1010
|
+
'zap': 'âĄ',
|
|
1011
|
+
'snowflake': 'âď¸',
|
|
1012
|
+
'snowman_with_snow': 'âď¸',
|
|
1013
|
+
'snowman': 'â',
|
|
1014
|
+
'comet': 'âď¸',
|
|
1015
|
+
'fire': 'đĽ',
|
|
1016
|
+
'droplet': 'đ§',
|
|
1017
|
+
'ocean': 'đ',
|
|
1018
|
+
'jack_o_lantern': 'đ',
|
|
1019
|
+
'christmas_tree': 'đ',
|
|
1020
|
+
'fireworks': 'đ',
|
|
1021
|
+
'sparkler': 'đ',
|
|
1022
|
+
'firecracker': 'đ§¨',
|
|
1023
|
+
'sparkles': 'â¨',
|
|
1024
|
+
'balloon': 'đ',
|
|
1025
|
+
'tada': 'đ',
|
|
1026
|
+
'confetti_ball': 'đ',
|
|
1027
|
+
'tanabata_tree': 'đ',
|
|
1028
|
+
'bamboo': 'đ',
|
|
1029
|
+
'dolls': 'đ',
|
|
1030
|
+
'flags': 'đ',
|
|
1031
|
+
'wind_chime': 'đ',
|
|
1032
|
+
'rice_scene': 'đ',
|
|
1033
|
+
'red_envelope': 'đ§§',
|
|
1034
|
+
'ribbon': 'đ',
|
|
1035
|
+
'gift': 'đ',
|
|
1036
|
+
'reminder_ribbon': 'đď¸',
|
|
1037
|
+
'tickets': 'đď¸',
|
|
1038
|
+
'ticket': 'đŤ',
|
|
1039
|
+
'medal_military': 'đď¸',
|
|
1040
|
+
'trophy': 'đ',
|
|
1041
|
+
'medal_sports': 'đ
',
|
|
1042
|
+
'1st_place_medal': 'đĽ',
|
|
1043
|
+
'2nd_place_medal': 'đĽ',
|
|
1044
|
+
'3rd_place_medal': 'đĽ',
|
|
1045
|
+
'soccer': 'â˝',
|
|
1046
|
+
'baseball': 'âž',
|
|
1047
|
+
'softball': 'đĽ',
|
|
1048
|
+
'basketball': 'đ',
|
|
1049
|
+
'volleyball': 'đ',
|
|
1050
|
+
'football': 'đ',
|
|
1051
|
+
'rugby_football': 'đ',
|
|
1052
|
+
'tennis': 'đž',
|
|
1053
|
+
'flying_disc': 'đĽ',
|
|
1054
|
+
'bowling': 'đł',
|
|
1055
|
+
'cricket_game': 'đ',
|
|
1056
|
+
'field_hockey': 'đ',
|
|
1057
|
+
'ice_hockey': 'đ',
|
|
1058
|
+
'lacrosse': 'đĽ',
|
|
1059
|
+
'ping_pong': 'đ',
|
|
1060
|
+
'badminton': 'đ¸',
|
|
1061
|
+
'boxing_glove': 'đĽ',
|
|
1062
|
+
'martial_arts_uniform': 'đĽ',
|
|
1063
|
+
'goal_net': 'đĽ
',
|
|
1064
|
+
'golf': 'âł',
|
|
1065
|
+
'ice_skate': 'â¸ď¸',
|
|
1066
|
+
'fishing_pole_and_fish': 'đŁ',
|
|
1067
|
+
'diving_mask': 'đ¤ż',
|
|
1068
|
+
'running_shirt_with_sash': 'đ˝',
|
|
1069
|
+
'ski': 'đż',
|
|
1070
|
+
'sled': 'đˇ',
|
|
1071
|
+
'curling_stone': 'đĽ',
|
|
1072
|
+
'dart': 'đŻ',
|
|
1073
|
+
'yo_yo': 'đŞ',
|
|
1074
|
+
'kite': 'đŞ',
|
|
1075
|
+
'8ball': 'đą',
|
|
1076
|
+
'crystal_ball': 'đŽ',
|
|
1077
|
+
'magic_wand': 'đŞ',
|
|
1078
|
+
'nazar_amulet': 'đ§ż',
|
|
1079
|
+
'video_game': 'đŽ',
|
|
1080
|
+
'joystick': 'đšď¸',
|
|
1081
|
+
'slot_machine': 'đ°',
|
|
1082
|
+
'game_die': 'đ˛',
|
|
1083
|
+
'jigsaw': 'đ§Š',
|
|
1084
|
+
'teddy_bear': 'đ§¸',
|
|
1085
|
+
'pinata': 'đŞ
',
|
|
1086
|
+
'nesting_dolls': 'đŞ',
|
|
1087
|
+
'spades': 'â ď¸',
|
|
1088
|
+
'hearts': 'âĽď¸',
|
|
1089
|
+
'diamonds': 'âŚď¸',
|
|
1090
|
+
'clubs': 'âŁď¸',
|
|
1091
|
+
'chess_pawn': 'âď¸',
|
|
1092
|
+
'black_joker': 'đ',
|
|
1093
|
+
'mahjong': 'đ',
|
|
1094
|
+
'flower_playing_cards': 'đ´',
|
|
1095
|
+
'performing_arts': 'đ',
|
|
1096
|
+
'framed_picture': 'đźď¸',
|
|
1097
|
+
'art': 'đ¨',
|
|
1098
|
+
'thread': 'đ§ľ',
|
|
1099
|
+
'sewing_needle': 'đŞĄ',
|
|
1100
|
+
'yarn': 'đ§ś',
|
|
1101
|
+
'knot': 'đŞ˘',
|
|
1102
|
+
'eyeglasses': 'đ',
|
|
1103
|
+
'dark_sunglasses': 'đśď¸',
|
|
1104
|
+
'goggles': 'đĽ˝',
|
|
1105
|
+
'lab_coat': 'đĽź',
|
|
1106
|
+
'safety_vest': 'đŚş',
|
|
1107
|
+
'necktie': 'đ',
|
|
1108
|
+
'shirt': 'đ',
|
|
1109
|
+
'tshirt': 'đ',
|
|
1110
|
+
'jeans': 'đ',
|
|
1111
|
+
'scarf': 'đ§Ł',
|
|
1112
|
+
'gloves': 'đ§¤',
|
|
1113
|
+
'coat': 'đ§Ľ',
|
|
1114
|
+
'socks': 'đ§Ś',
|
|
1115
|
+
'dress': 'đ',
|
|
1116
|
+
'kimono': 'đ',
|
|
1117
|
+
'sari': 'đĽť',
|
|
1118
|
+
'one_piece_swimsuit': 'đŠą',
|
|
1119
|
+
'swim_brief': 'đО',
|
|
1120
|
+
'shorts': 'đŠł',
|
|
1121
|
+
'bikini': 'đ',
|
|
1122
|
+
'womans_clothes': 'đ',
|
|
1123
|
+
'purse': 'đ',
|
|
1124
|
+
'handbag': 'đ',
|
|
1125
|
+
'pouch': 'đ',
|
|
1126
|
+
'shopping': 'đď¸',
|
|
1127
|
+
'school_satchel': 'đ',
|
|
1128
|
+
'thong_sandal': 'đŠ´',
|
|
1129
|
+
'mans_shoe': 'đ',
|
|
1130
|
+
'shoe': 'đ',
|
|
1131
|
+
'athletic_shoe': 'đ',
|
|
1132
|
+
'hiking_boot': 'đĽž',
|
|
1133
|
+
'flat_shoe': 'đĽż',
|
|
1134
|
+
'high_heel': 'đ ',
|
|
1135
|
+
'sandal': 'đĄ',
|
|
1136
|
+
'ballet_shoes': 'đа',
|
|
1137
|
+
'boot': 'đ˘',
|
|
1138
|
+
'crown': 'đ',
|
|
1139
|
+
'womans_hat': 'đ',
|
|
1140
|
+
'tophat': 'đŠ',
|
|
1141
|
+
'mortar_board': 'đ',
|
|
1142
|
+
'billed_cap': 'đ§˘',
|
|
1143
|
+
'military_helmet': 'đŞ',
|
|
1144
|
+
'rescue_worker_helmet': 'âď¸',
|
|
1145
|
+
'prayer_beads': 'đż',
|
|
1146
|
+
'lipstick': 'đ',
|
|
1147
|
+
'ring': 'đ',
|
|
1148
|
+
'gem': 'đ',
|
|
1149
|
+
'mute': 'đ',
|
|
1150
|
+
'speaker': 'đ',
|
|
1151
|
+
'sound': 'đ',
|
|
1152
|
+
'loud_sound': 'đ',
|
|
1153
|
+
'loudspeaker': 'đ˘',
|
|
1154
|
+
'mega': 'đŁ',
|
|
1155
|
+
'postal_horn': 'đŻ',
|
|
1156
|
+
'bell': 'đ',
|
|
1157
|
+
'no_bell': 'đ',
|
|
1158
|
+
'musical_score': 'đź',
|
|
1159
|
+
'musical_note': 'đľ',
|
|
1160
|
+
'notes': 'đś',
|
|
1161
|
+
'studio_microphone': 'đď¸',
|
|
1162
|
+
'level_slider': 'đď¸',
|
|
1163
|
+
'control_knobs': 'đď¸',
|
|
1164
|
+
'microphone': 'đ¤',
|
|
1165
|
+
'headphones': 'đ§',
|
|
1166
|
+
'radio': 'đť',
|
|
1167
|
+
'saxophone': 'đˇ',
|
|
1168
|
+
'accordion': 'đŞ',
|
|
1169
|
+
'guitar': 'đ¸',
|
|
1170
|
+
'musical_keyboard': 'đš',
|
|
1171
|
+
'trumpet': 'đş',
|
|
1172
|
+
'violin': 'đť',
|
|
1173
|
+
'banjo': 'đŞ',
|
|
1174
|
+
'drum': 'đĽ',
|
|
1175
|
+
'long_drum': 'đŞ',
|
|
1176
|
+
'iphone': 'đą',
|
|
1177
|
+
'calling': 'đ˛',
|
|
1178
|
+
'phone': 'âď¸',
|
|
1179
|
+
'telephone': 'âď¸',
|
|
1180
|
+
'telephone_receiver': 'đ',
|
|
1181
|
+
'pager': 'đ',
|
|
1182
|
+
'fax': 'đ ',
|
|
1183
|
+
'battery': 'đ',
|
|
1184
|
+
'electric_plug': 'đ',
|
|
1185
|
+
'computer': 'đť',
|
|
1186
|
+
'desktop_computer': 'đĽď¸',
|
|
1187
|
+
'printer': 'đ¨ď¸',
|
|
1188
|
+
'keyboard': 'â¨ď¸',
|
|
1189
|
+
'computer_mouse': 'đąď¸',
|
|
1190
|
+
'trackball': 'đ˛ď¸',
|
|
1191
|
+
'minidisc': 'đ˝',
|
|
1192
|
+
'floppy_disk': 'đž',
|
|
1193
|
+
'cd': 'đż',
|
|
1194
|
+
'dvd': 'đ',
|
|
1195
|
+
'abacus': 'đ§Ž',
|
|
1196
|
+
'movie_camera': 'đĽ',
|
|
1197
|
+
'film_strip': 'đď¸',
|
|
1198
|
+
'film_projector': 'đ˝ď¸',
|
|
1199
|
+
'clapper': 'đŹ',
|
|
1200
|
+
'tv': 'đş',
|
|
1201
|
+
'camera': 'đˇ',
|
|
1202
|
+
'camera_flash': 'đ¸',
|
|
1203
|
+
'video_camera': 'đš',
|
|
1204
|
+
'vhs': 'đź',
|
|
1205
|
+
'mag': 'đ',
|
|
1206
|
+
'mag_right': 'đ',
|
|
1207
|
+
'candle': 'đŻď¸',
|
|
1208
|
+
'bulb': 'đĄ',
|
|
1209
|
+
'flashlight': 'đŚ',
|
|
1210
|
+
'izakaya_lantern': 'đŽ',
|
|
1211
|
+
'lantern': 'đŽ',
|
|
1212
|
+
'diya_lamp': 'đŞ',
|
|
1213
|
+
'notebook_with_decorative_cover': 'đ',
|
|
1214
|
+
'closed_book': 'đ',
|
|
1215
|
+
'book': 'đ',
|
|
1216
|
+
'open_book': 'đ',
|
|
1217
|
+
'green_book': 'đ',
|
|
1218
|
+
'blue_book': 'đ',
|
|
1219
|
+
'orange_book': 'đ',
|
|
1220
|
+
'books': 'đ',
|
|
1221
|
+
'notebook': 'đ',
|
|
1222
|
+
'ledger': 'đ',
|
|
1223
|
+
'page_with_curl': 'đ',
|
|
1224
|
+
'scroll': 'đ',
|
|
1225
|
+
'page_facing_up': 'đ',
|
|
1226
|
+
'newspaper': 'đ°',
|
|
1227
|
+
'newspaper_roll': 'đď¸',
|
|
1228
|
+
'bookmark_tabs': 'đ',
|
|
1229
|
+
'bookmark': 'đ',
|
|
1230
|
+
'label': 'đˇď¸',
|
|
1231
|
+
'moneybag': 'đ°',
|
|
1232
|
+
'coin': 'đŞ',
|
|
1233
|
+
'yen': 'đ´',
|
|
1234
|
+
'dollar': 'đľ',
|
|
1235
|
+
'euro': 'đś',
|
|
1236
|
+
'pound': 'đˇ',
|
|
1237
|
+
'money_with_wings': 'đ¸',
|
|
1238
|
+
'credit_card': 'đł',
|
|
1239
|
+
'receipt': 'đ§ž',
|
|
1240
|
+
'chart': 'đš',
|
|
1241
|
+
'envelope': 'âď¸',
|
|
1242
|
+
'email': 'đ§',
|
|
1243
|
+
'e-mail': 'đ§',
|
|
1244
|
+
'incoming_envelope': 'đ¨',
|
|
1245
|
+
'envelope_with_arrow': 'đŠ',
|
|
1246
|
+
'outbox_tray': 'đ¤',
|
|
1247
|
+
'inbox_tray': 'đĽ',
|
|
1248
|
+
'package': 'đŚ',
|
|
1249
|
+
'mailbox': 'đŤ',
|
|
1250
|
+
'mailbox_closed': 'đŞ',
|
|
1251
|
+
'mailbox_with_mail': 'đŹ',
|
|
1252
|
+
'mailbox_with_no_mail': 'đ',
|
|
1253
|
+
'postbox': 'đŽ',
|
|
1254
|
+
'ballot_box': 'đłď¸',
|
|
1255
|
+
'pencil2': 'âď¸',
|
|
1256
|
+
'black_nib': 'âď¸',
|
|
1257
|
+
'fountain_pen': 'đď¸',
|
|
1258
|
+
'pen': 'đď¸',
|
|
1259
|
+
'paintbrush': 'đď¸',
|
|
1260
|
+
'crayon': 'đď¸',
|
|
1261
|
+
'memo': 'đ',
|
|
1262
|
+
'pencil': 'đ',
|
|
1263
|
+
'briefcase': 'đź',
|
|
1264
|
+
'file_folder': 'đ',
|
|
1265
|
+
'open_file_folder': 'đ',
|
|
1266
|
+
'card_index_dividers': 'đď¸',
|
|
1267
|
+
'date': 'đ
',
|
|
1268
|
+
'calendar': 'đ',
|
|
1269
|
+
'spiral_notepad': 'đď¸',
|
|
1270
|
+
'spiral_calendar': 'đď¸',
|
|
1271
|
+
'card_index': 'đ',
|
|
1272
|
+
'chart_with_upwards_trend': 'đ',
|
|
1273
|
+
'chart_with_downwards_trend': 'đ',
|
|
1274
|
+
'bar_chart': 'đ',
|
|
1275
|
+
'clipboard': 'đ',
|
|
1276
|
+
'pushpin': 'đ',
|
|
1277
|
+
'round_pushpin': 'đ',
|
|
1278
|
+
'paperclip': 'đ',
|
|
1279
|
+
'paperclips': 'đď¸',
|
|
1280
|
+
'straight_ruler': 'đ',
|
|
1281
|
+
'triangular_ruler': 'đ',
|
|
1282
|
+
'scissors': 'âď¸',
|
|
1283
|
+
'card_file_box': 'đď¸',
|
|
1284
|
+
'file_cabinet': 'đď¸',
|
|
1285
|
+
'wastebasket': 'đď¸',
|
|
1286
|
+
'lock': 'đ',
|
|
1287
|
+
'unlock': 'đ',
|
|
1288
|
+
'lock_with_ink_pen': 'đ',
|
|
1289
|
+
'closed_lock_with_key': 'đ',
|
|
1290
|
+
'key': 'đ',
|
|
1291
|
+
'old_key': 'đď¸',
|
|
1292
|
+
'hammer': 'đ¨',
|
|
1293
|
+
'axe': 'đŞ',
|
|
1294
|
+
'pick': 'âď¸',
|
|
1295
|
+
'hammer_and_pick': 'âď¸',
|
|
1296
|
+
'hammer_and_wrench': 'đ ď¸',
|
|
1297
|
+
'dagger': 'đĄď¸',
|
|
1298
|
+
'crossed_swords': 'âď¸',
|
|
1299
|
+
'gun': 'đŤ',
|
|
1300
|
+
'boomerang': 'đŞ',
|
|
1301
|
+
'bow_and_arrow': 'đš',
|
|
1302
|
+
'shield': 'đĄď¸',
|
|
1303
|
+
'carpentry_saw': 'đŞ',
|
|
1304
|
+
'wrench': 'đ§',
|
|
1305
|
+
'screwdriver': 'đŞ',
|
|
1306
|
+
'nut_and_bolt': 'đŠ',
|
|
1307
|
+
'gear': 'âď¸',
|
|
1308
|
+
'clamp': 'đď¸',
|
|
1309
|
+
'balance_scale': 'âď¸',
|
|
1310
|
+
'probing_cane': 'đŚŻ',
|
|
1311
|
+
'link': 'đ',
|
|
1312
|
+
'chains': 'âď¸',
|
|
1313
|
+
'hook': 'đŞ',
|
|
1314
|
+
'toolbox': 'đ§°',
|
|
1315
|
+
'magnet': 'đ§˛',
|
|
1316
|
+
'ladder': 'đŞ',
|
|
1317
|
+
'alembic': 'âď¸',
|
|
1318
|
+
'test_tube': 'đ§Ş',
|
|
1319
|
+
'petri_dish': 'đ§Ť',
|
|
1320
|
+
'dna': 'đ§Ź',
|
|
1321
|
+
'microscope': 'đŹ',
|
|
1322
|
+
'telescope': 'đ',
|
|
1323
|
+
'satellite': 'đĄ',
|
|
1324
|
+
'syringe': 'đ',
|
|
1325
|
+
'drop_of_blood': 'đЏ',
|
|
1326
|
+
'pill': 'đ',
|
|
1327
|
+
'adhesive_bandage': 'đŠš',
|
|
1328
|
+
'stethoscope': 'đŠş',
|
|
1329
|
+
'door': 'đŞ',
|
|
1330
|
+
'elevator': 'đ',
|
|
1331
|
+
'mirror': 'đŞ',
|
|
1332
|
+
'window': 'đŞ',
|
|
1333
|
+
'bed': 'đď¸',
|
|
1334
|
+
'couch_and_lamp': 'đď¸',
|
|
1335
|
+
'chair': 'đŞ',
|
|
1336
|
+
'toilet': 'đ˝',
|
|
1337
|
+
'plunger': 'đŞ ',
|
|
1338
|
+
'shower': 'đż',
|
|
1339
|
+
'bathtub': 'đ',
|
|
1340
|
+
'mouse_trap': 'đޤ',
|
|
1341
|
+
'razor': 'đŞ',
|
|
1342
|
+
'lotion_bottle': 'đ§´',
|
|
1343
|
+
'safety_pin': 'đ§ˇ',
|
|
1344
|
+
'broom': 'đ§š',
|
|
1345
|
+
'basket': 'đ§ş',
|
|
1346
|
+
'roll_of_paper': 'đ§ť',
|
|
1347
|
+
'bucket': 'đŞŁ',
|
|
1348
|
+
'soap': 'đ§ź',
|
|
1349
|
+
'toothbrush': 'đŞĽ',
|
|
1350
|
+
'sponge': 'đ§˝',
|
|
1351
|
+
'fire_extinguisher': 'đ§Ż',
|
|
1352
|
+
'shopping_cart': 'đ',
|
|
1353
|
+
'smoking': 'đŹ',
|
|
1354
|
+
'coffin': 'â°ď¸',
|
|
1355
|
+
'headstone': 'đŞŚ',
|
|
1356
|
+
'funeral_urn': 'âąď¸',
|
|
1357
|
+
'moyai': 'đż',
|
|
1358
|
+
'placard': 'đާ',
|
|
1359
|
+
'atm': 'đ§',
|
|
1360
|
+
'put_litter_in_its_place': 'đŽ',
|
|
1361
|
+
'potable_water': 'đ°',
|
|
1362
|
+
'wheelchair': 'âż',
|
|
1363
|
+
'mens': 'đš',
|
|
1364
|
+
'womens': 'đş',
|
|
1365
|
+
'restroom': 'đť',
|
|
1366
|
+
'baby_symbol': 'đź',
|
|
1367
|
+
'wc': 'đž',
|
|
1368
|
+
'passport_control': 'đ',
|
|
1369
|
+
'customs': 'đ',
|
|
1370
|
+
'baggage_claim': 'đ',
|
|
1371
|
+
'left_luggage': 'đ
',
|
|
1372
|
+
'warning': 'â ď¸',
|
|
1373
|
+
'children_crossing': 'đ¸',
|
|
1374
|
+
'no_entry': 'â',
|
|
1375
|
+
'no_entry_sign': 'đŤ',
|
|
1376
|
+
'no_bicycles': 'đł',
|
|
1377
|
+
'no_smoking': 'đ',
|
|
1378
|
+
'do_not_litter': 'đŻ',
|
|
1379
|
+
'non-potable_water': 'đą',
|
|
1380
|
+
'no_pedestrians': 'đˇ',
|
|
1381
|
+
'no_mobile_phones': 'đľ',
|
|
1382
|
+
'underage': 'đ',
|
|
1383
|
+
'radioactive': 'â˘ď¸',
|
|
1384
|
+
'biohazard': 'âŁď¸',
|
|
1385
|
+
'arrow_up': 'âŹď¸',
|
|
1386
|
+
'arrow_upper_right': 'âď¸',
|
|
1387
|
+
'arrow_right': 'âĄď¸',
|
|
1388
|
+
'arrow_lower_right': 'âď¸',
|
|
1389
|
+
'arrow_down': 'âŹď¸',
|
|
1390
|
+
'arrow_lower_left': 'âď¸',
|
|
1391
|
+
'arrow_left': 'âŹ
ď¸',
|
|
1392
|
+
'arrow_upper_left': 'âď¸',
|
|
1393
|
+
'arrow_up_down': 'âď¸',
|
|
1394
|
+
'left_right_arrow': 'âď¸',
|
|
1395
|
+
'leftwards_arrow_with_hook': 'âŠď¸',
|
|
1396
|
+
'arrow_right_hook': 'âŞď¸',
|
|
1397
|
+
'arrow_heading_up': '⤴ď¸',
|
|
1398
|
+
'arrow_heading_down': '⤾ď¸',
|
|
1399
|
+
'arrows_clockwise': 'đ',
|
|
1400
|
+
'arrows_counterclockwise': 'đ',
|
|
1401
|
+
'back': 'đ',
|
|
1402
|
+
'end': 'đ',
|
|
1403
|
+
'on': 'đ',
|
|
1404
|
+
'soon': 'đ',
|
|
1405
|
+
'top': 'đ',
|
|
1406
|
+
'place_of_worship': 'đ',
|
|
1407
|
+
'atom_symbol': 'âď¸',
|
|
1408
|
+
'om': 'đď¸',
|
|
1409
|
+
'star_of_david': 'âĄď¸',
|
|
1410
|
+
'wheel_of_dharma': 'â¸ď¸',
|
|
1411
|
+
'yin_yang': 'âŻď¸',
|
|
1412
|
+
'latin_cross': 'âď¸',
|
|
1413
|
+
'orthodox_cross': 'âŚď¸',
|
|
1414
|
+
'star_and_crescent': 'âŞď¸',
|
|
1415
|
+
'peace_symbol': 'âŽď¸',
|
|
1416
|
+
'menorah': 'đ',
|
|
1417
|
+
'six_pointed_star': 'đŻ',
|
|
1418
|
+
'aries': 'â',
|
|
1419
|
+
'taurus': 'â',
|
|
1420
|
+
'gemini': 'â',
|
|
1421
|
+
'cancer': 'â',
|
|
1422
|
+
'leo': 'â',
|
|
1423
|
+
'virgo': 'â',
|
|
1424
|
+
'libra': 'â',
|
|
1425
|
+
'scorpius': 'â',
|
|
1426
|
+
'sagittarius': 'â',
|
|
1427
|
+
'capricorn': 'â',
|
|
1428
|
+
'aquarius': 'â',
|
|
1429
|
+
'pisces': 'â',
|
|
1430
|
+
'ophiuchus': 'â',
|
|
1431
|
+
'twisted_rightwards_arrows': 'đ',
|
|
1432
|
+
'repeat': 'đ',
|
|
1433
|
+
'repeat_one': 'đ',
|
|
1434
|
+
'arrow_forward': 'âśď¸',
|
|
1435
|
+
'fast_forward': 'âŠ',
|
|
1436
|
+
'next_track_button': 'âď¸',
|
|
1437
|
+
'play_or_pause_button': 'âŻď¸',
|
|
1438
|
+
'arrow_backward': 'âď¸',
|
|
1439
|
+
'rewind': 'âŞ',
|
|
1440
|
+
'previous_track_button': 'âŽď¸',
|
|
1441
|
+
'arrow_up_small': 'đź',
|
|
1442
|
+
'arrow_double_up': 'âŤ',
|
|
1443
|
+
'arrow_down_small': 'đ˝',
|
|
1444
|
+
'arrow_double_down': 'âŹ',
|
|
1445
|
+
'pause_button': 'â¸ď¸',
|
|
1446
|
+
'stop_button': 'âšď¸',
|
|
1447
|
+
'record_button': 'âşď¸',
|
|
1448
|
+
'eject_button': 'âď¸',
|
|
1449
|
+
'cinema': 'đŚ',
|
|
1450
|
+
'low_brightness': 'đ
',
|
|
1451
|
+
'high_brightness': 'đ',
|
|
1452
|
+
'signal_strength': 'đś',
|
|
1453
|
+
'vibration_mode': 'đł',
|
|
1454
|
+
'mobile_phone_off': 'đ´',
|
|
1455
|
+
'female_sign': 'âď¸',
|
|
1456
|
+
'male_sign': 'âď¸',
|
|
1457
|
+
'transgender_symbol': 'â§ď¸',
|
|
1458
|
+
'heavy_multiplication_x': 'âď¸',
|
|
1459
|
+
'heavy_plus_sign': 'â',
|
|
1460
|
+
'heavy_minus_sign': 'â',
|
|
1461
|
+
'heavy_division_sign': 'â',
|
|
1462
|
+
'infinity': 'âžď¸',
|
|
1463
|
+
'bangbang': 'âźď¸',
|
|
1464
|
+
'interrobang': 'âď¸',
|
|
1465
|
+
'question': 'â',
|
|
1466
|
+
'grey_question': 'â',
|
|
1467
|
+
'grey_exclamation': 'â',
|
|
1468
|
+
'exclamation': 'â',
|
|
1469
|
+
'heavy_exclamation_mark': 'â',
|
|
1470
|
+
'wavy_dash': 'ă°ď¸',
|
|
1471
|
+
'currency_exchange': 'đą',
|
|
1472
|
+
'heavy_dollar_sign': 'đ˛',
|
|
1473
|
+
'medical_symbol': 'âď¸',
|
|
1474
|
+
'recycle': 'âťď¸',
|
|
1475
|
+
'fleur_de_lis': 'âď¸',
|
|
1476
|
+
'trident': 'đą',
|
|
1477
|
+
'name_badge': 'đ',
|
|
1478
|
+
'beginner': 'đ°',
|
|
1479
|
+
'o': 'â',
|
|
1480
|
+
'white_check_mark': 'â
',
|
|
1481
|
+
'ballot_box_with_check': 'âď¸',
|
|
1482
|
+
'heavy_check_mark': 'âď¸',
|
|
1483
|
+
'x': 'â',
|
|
1484
|
+
'negative_squared_cross_mark': 'â',
|
|
1485
|
+
'curly_loop': 'â°',
|
|
1486
|
+
'loop': 'âż',
|
|
1487
|
+
'part_alternation_mark': 'ă˝ď¸',
|
|
1488
|
+
'eight_spoked_asterisk': 'âłď¸',
|
|
1489
|
+
'eight_pointed_black_star': 'â´ď¸',
|
|
1490
|
+
'sparkle': 'âď¸',
|
|
1491
|
+
'copyright': 'Šď¸',
|
|
1492
|
+
'registered': 'ÂŽď¸',
|
|
1493
|
+
'tm': 'â˘ď¸',
|
|
1494
|
+
'hash': '#ď¸âŁ',
|
|
1495
|
+
'asterisk': '*ď¸âŁ',
|
|
1496
|
+
'zero': '0ď¸âŁ',
|
|
1497
|
+
'one': '1ď¸âŁ',
|
|
1498
|
+
'two': '2ď¸âŁ',
|
|
1499
|
+
'three': '3ď¸âŁ',
|
|
1500
|
+
'four': '4ď¸âŁ',
|
|
1501
|
+
'five': '5ď¸âŁ',
|
|
1502
|
+
'six': '6ď¸âŁ',
|
|
1503
|
+
'seven': '7ď¸âŁ',
|
|
1504
|
+
'eight': '8ď¸âŁ',
|
|
1505
|
+
'nine': '9ď¸âŁ',
|
|
1506
|
+
'keycap_ten': 'đ',
|
|
1507
|
+
'capital_abcd': 'đ ',
|
|
1508
|
+
'abcd': 'đĄ',
|
|
1509
|
+
'symbols': 'đŁ',
|
|
1510
|
+
'abc': 'đ¤',
|
|
1511
|
+
'a': 'đ
°ď¸',
|
|
1512
|
+
'ab': 'đ',
|
|
1513
|
+
'b': 'đ
ąď¸',
|
|
1514
|
+
'cl': 'đ',
|
|
1515
|
+
'cool': 'đ',
|
|
1516
|
+
'free': 'đ',
|
|
1517
|
+
'information_source': 'âšď¸',
|
|
1518
|
+
'id': 'đ',
|
|
1519
|
+
'm': 'âď¸',
|
|
1520
|
+
'new': 'đ',
|
|
1521
|
+
'ng': 'đ',
|
|
1522
|
+
'o2': 'đ
žď¸',
|
|
1523
|
+
'ok': 'đ',
|
|
1524
|
+
'parking': 'đ
żď¸',
|
|
1525
|
+
'sos': 'đ',
|
|
1526
|
+
'up': 'đ',
|
|
1527
|
+
'vs': 'đ',
|
|
1528
|
+
'koko': 'đ',
|
|
1529
|
+
'sa': 'đď¸',
|
|
1530
|
+
'ideograph_advantage': 'đ',
|
|
1531
|
+
'accept': 'đ',
|
|
1532
|
+
'congratulations': 'ăď¸',
|
|
1533
|
+
'secret': 'ăď¸',
|
|
1534
|
+
'u6e80': 'đľ',
|
|
1535
|
+
'red_circle': 'đ´',
|
|
1536
|
+
'orange_circle': 'đ ',
|
|
1537
|
+
'yellow_circle': 'đĄ',
|
|
1538
|
+
'green_circle': 'đ˘',
|
|
1539
|
+
'large_blue_circle': 'đľ',
|
|
1540
|
+
'purple_circle': 'đŁ',
|
|
1541
|
+
'brown_circle': 'đ¤',
|
|
1542
|
+
'black_circle': 'âŤ',
|
|
1543
|
+
'white_circle': 'âŞ',
|
|
1544
|
+
'red_square': 'đĽ',
|
|
1545
|
+
'orange_square': 'đ§',
|
|
1546
|
+
'yellow_square': 'đ¨',
|
|
1547
|
+
'green_square': 'đŠ',
|
|
1548
|
+
'blue_square': 'đŚ',
|
|
1549
|
+
'purple_square': 'đŞ',
|
|
1550
|
+
'brown_square': 'đŤ',
|
|
1551
|
+
'black_large_square': 'âŹ',
|
|
1552
|
+
'white_large_square': 'âŹ',
|
|
1553
|
+
'black_medium_square': 'âźď¸',
|
|
1554
|
+
'white_medium_square': 'âťď¸',
|
|
1555
|
+
'black_medium_small_square': 'âž',
|
|
1556
|
+
'white_medium_small_square': 'â˝',
|
|
1557
|
+
'black_small_square': 'âŞď¸',
|
|
1558
|
+
'white_small_square': 'âŤď¸',
|
|
1559
|
+
'large_orange_diamond': 'đś',
|
|
1560
|
+
'large_blue_diamond': 'đˇ',
|
|
1561
|
+
'small_orange_diamond': 'đ¸',
|
|
1562
|
+
'small_blue_diamond': 'đš',
|
|
1563
|
+
'small_red_triangle': 'đş',
|
|
1564
|
+
'small_red_triangle_down': 'đť',
|
|
1565
|
+
'diamond_shape_with_a_dot_inside': 'đ ',
|
|
1566
|
+
'radio_button': 'đ',
|
|
1567
|
+
'white_square_button': 'đł',
|
|
1568
|
+
'black_square_button': 'đ˛',
|
|
1569
|
+
'checkered_flag': 'đ',
|
|
1570
|
+
'triangular_flag_on_post': 'đŠ',
|
|
1571
|
+
'crossed_flags': 'đ',
|
|
1572
|
+
'black_flag': 'đ´',
|
|
1573
|
+
'white_flag': 'đłď¸',
|
|
1574
|
+
'rainbow_flag': 'đłď¸âđ',
|
|
1575
|
+
'transgender_flag': 'đłď¸ââ§ď¸',
|
|
1576
|
+
'pirate_flag': 'đ´ââ ď¸',
|
|
1577
|
+
'ascension_island': 'đŚđ¨',
|
|
1578
|
+
'andorra': 'đŚđŠ',
|
|
1579
|
+
'united_arab_emirates': 'đŚđŞ',
|
|
1580
|
+
'afghanistan': 'đŚđŤ',
|
|
1581
|
+
'antigua_barbuda': 'đŚđŹ',
|
|
1582
|
+
'anguilla': 'đŚđŽ',
|
|
1583
|
+
'albania': 'đŚđą',
|
|
1584
|
+
'armenia': 'đŚđ˛',
|
|
1585
|
+
'angola': 'đŚđ´',
|
|
1586
|
+
'antarctica': 'đŚđś',
|
|
1587
|
+
'argentina': 'đŚđˇ',
|
|
1588
|
+
'american_samoa': 'đŚđ¸',
|
|
1589
|
+
'austria': 'đŚđš',
|
|
1590
|
+
'australia': 'đŚđş',
|
|
1591
|
+
'aruba': 'đŚđź',
|
|
1592
|
+
'aland_islands': 'đŚđ˝',
|
|
1593
|
+
'azerbaijan': 'đŚđż',
|
|
1594
|
+
'bosnia_herzegovina': 'đ§đŚ',
|
|
1595
|
+
'barbados': 'đ§đ§',
|
|
1596
|
+
'bangladesh': 'đ§đŠ',
|
|
1597
|
+
'belgium': 'đ§đŞ',
|
|
1598
|
+
'burkina_faso': 'đ§đŤ',
|
|
1599
|
+
'bulgaria': 'đ§đŹ',
|
|
1600
|
+
'bahrain': 'đ§đ',
|
|
1601
|
+
'burundi': 'đ§đŽ',
|
|
1602
|
+
'benin': 'đ§đŻ',
|
|
1603
|
+
'st_barthelemy': 'đ§đą',
|
|
1604
|
+
'bermuda': 'đ§đ˛',
|
|
1605
|
+
'brunei': 'đ§đł',
|
|
1606
|
+
'bolivia': 'đ§đ´',
|
|
1607
|
+
'caribbean_netherlands': 'đ§đś',
|
|
1608
|
+
'brazil': 'đ§đˇ',
|
|
1609
|
+
'bahamas': 'đ§đ¸',
|
|
1610
|
+
'bhutan': 'đ§đš',
|
|
1611
|
+
'bouvet_island': 'đ§đť',
|
|
1612
|
+
'botswana': 'đ§đź',
|
|
1613
|
+
'belarus': 'đ§đž',
|
|
1614
|
+
'belize': 'đ§đż',
|
|
1615
|
+
'canada': 'đ¨đŚ',
|
|
1616
|
+
'cocos_islands': 'đ¨đ¨',
|
|
1617
|
+
'congo_kinshasa': 'đ¨đŠ',
|
|
1618
|
+
'central_african_republic': 'đ¨đŤ',
|
|
1619
|
+
'congo_brazzaville': 'đ¨đŹ',
|
|
1620
|
+
'switzerland': 'đ¨đ',
|
|
1621
|
+
'cote_divoire': 'đ¨đŽ',
|
|
1622
|
+
'cook_islands': 'đ¨đ°',
|
|
1623
|
+
'chile': 'đ¨đą',
|
|
1624
|
+
'cameroon': 'đ¨đ˛',
|
|
1625
|
+
'cn': 'đ¨đł',
|
|
1626
|
+
'colombia': 'đ¨đ´',
|
|
1627
|
+
'clipperton_island': 'đ¨đľ',
|
|
1628
|
+
'costa_rica': 'đ¨đˇ',
|
|
1629
|
+
'cuba': 'đ¨đş',
|
|
1630
|
+
'cape_verde': 'đ¨đť',
|
|
1631
|
+
'curacao': 'đ¨đź',
|
|
1632
|
+
'christmas_island': 'đ¨đ˝',
|
|
1633
|
+
'cyprus': 'đ¨đž',
|
|
1634
|
+
'czech_republic': 'đ¨đż',
|
|
1635
|
+
'de': 'đŠđŞ',
|
|
1636
|
+
'diego_garcia': 'đŠđŹ',
|
|
1637
|
+
'djibouti': 'đŠđŻ',
|
|
1638
|
+
'denmark': 'đŠđ°',
|
|
1639
|
+
'dominica': 'đŠđ˛',
|
|
1640
|
+
'dominican_republic': 'đŠđ´',
|
|
1641
|
+
'algeria': 'đŠđż',
|
|
1642
|
+
'ceuta_melilla': 'đŞđŚ',
|
|
1643
|
+
'ecuador': 'đŞđ¨',
|
|
1644
|
+
'estonia': 'đŞđŞ',
|
|
1645
|
+
'egypt': 'đŞđŹ',
|
|
1646
|
+
'western_sahara': 'đŞđ',
|
|
1647
|
+
'eritrea': 'đŞđˇ',
|
|
1648
|
+
'es': 'đŞđ¸',
|
|
1649
|
+
'ethiopia': 'đŞđš',
|
|
1650
|
+
'eu': 'đŞđş',
|
|
1651
|
+
'european_union': 'đŞđş',
|
|
1652
|
+
'finland': 'đŤđŽ',
|
|
1653
|
+
'fiji': 'đŤđŻ',
|
|
1654
|
+
'falkland_islands': 'đŤđ°',
|
|
1655
|
+
'micronesia': 'đŤđ˛',
|
|
1656
|
+
'faroe_islands': 'đŤđ´',
|
|
1657
|
+
'fr': 'đŤđˇ',
|
|
1658
|
+
'gabon': 'đŹđŚ',
|
|
1659
|
+
'gb': 'đŹđ§',
|
|
1660
|
+
'uk': 'đŹđ§',
|
|
1661
|
+
'grenada': 'đŹđŠ',
|
|
1662
|
+
'georgia': 'đŹđŞ',
|
|
1663
|
+
'french_guiana': 'đŹđŤ',
|
|
1664
|
+
'guernsey': 'đŹđŹ',
|
|
1665
|
+
'ghana': 'đŹđ',
|
|
1666
|
+
'gibraltar': 'đŹđŽ',
|
|
1667
|
+
'greenland': 'đŹđą',
|
|
1668
|
+
'gambia': 'đŹđ˛',
|
|
1669
|
+
'guinea': 'đŹđł',
|
|
1670
|
+
'guadeloupe': 'đŹđľ',
|
|
1671
|
+
'equatorial_guinea': 'đŹđś',
|
|
1672
|
+
'greece': 'đŹđˇ',
|
|
1673
|
+
'south_georgia_south_sandwich_islands': 'đŹđ¸',
|
|
1674
|
+
'guatemala': 'đŹđš',
|
|
1675
|
+
'guam': 'đŹđş',
|
|
1676
|
+
'guinea_bissau': 'đŹđź',
|
|
1677
|
+
'guyana': 'đŹđž',
|
|
1678
|
+
'hong_kong': 'đđ°',
|
|
1679
|
+
'heard_mcdonald_islands': 'đđ˛',
|
|
1680
|
+
'honduras': 'đđł',
|
|
1681
|
+
'croatia': 'đđˇ',
|
|
1682
|
+
'haiti': 'đđš',
|
|
1683
|
+
'hungary': 'đđş',
|
|
1684
|
+
'canary_islands': 'đŽđ¨',
|
|
1685
|
+
'indonesia': 'đŽđŠ',
|
|
1686
|
+
'ireland': 'đŽđŞ',
|
|
1687
|
+
'israel': 'đŽđą',
|
|
1688
|
+
'isle_of_man': 'đŽđ˛',
|
|
1689
|
+
'india': 'đŽđł',
|
|
1690
|
+
'british_indian_ocean_territory': 'đŽđ´',
|
|
1691
|
+
'iraq': 'đŽđś',
|
|
1692
|
+
'iran': 'đŽđˇ',
|
|
1693
|
+
'iceland': 'đŽđ¸',
|
|
1694
|
+
'it': 'đŽđš',
|
|
1695
|
+
'jersey': 'đŻđŞ',
|
|
1696
|
+
'jamaica': 'đŻđ˛',
|
|
1697
|
+
'jordan': 'đŻđ´',
|
|
1698
|
+
'jp': 'đŻđľ',
|
|
1699
|
+
'kenya': 'đ°đŞ',
|
|
1700
|
+
'kyrgyzstan': 'đ°đŹ',
|
|
1701
|
+
'cambodia': 'đ°đ',
|
|
1702
|
+
'kiribati': 'đ°đŽ',
|
|
1703
|
+
'comoros': 'đ°đ˛',
|
|
1704
|
+
'st_kitts_nevis': 'đ°đł',
|
|
1705
|
+
'north_korea': 'đ°đľ',
|
|
1706
|
+
'kr': 'đ°đˇ',
|
|
1707
|
+
'kuwait': 'đ°đź',
|
|
1708
|
+
'cayman_islands': 'đ°đž',
|
|
1709
|
+
'kazakhstan': 'đ°đż',
|
|
1710
|
+
'laos': 'đąđŚ',
|
|
1711
|
+
'lebanon': 'đąđ§',
|
|
1712
|
+
'st_lucia': 'đąđ¨',
|
|
1713
|
+
'liechtenstein': 'đąđŽ',
|
|
1714
|
+
'sri_lanka': 'đąđ°',
|
|
1715
|
+
'liberia': 'đąđˇ',
|
|
1716
|
+
'lesotho': 'đąđ¸',
|
|
1717
|
+
'lithuania': 'đąđš',
|
|
1718
|
+
'luxembourg': 'đąđş',
|
|
1719
|
+
'latvia': 'đąđť',
|
|
1720
|
+
'libya': 'đąđž',
|
|
1721
|
+
'morocco': 'đ˛đŚ',
|
|
1722
|
+
'monaco': 'đ˛đ¨',
|
|
1723
|
+
'moldova': 'đ˛đŠ',
|
|
1724
|
+
'montenegro': 'đ˛đŞ',
|
|
1725
|
+
'st_martin': 'đ˛đŤ',
|
|
1726
|
+
'madagascar': 'đ˛đŹ',
|
|
1727
|
+
'marshall_islands': 'đ˛đ',
|
|
1728
|
+
'macedonia': 'đ˛đ°',
|
|
1729
|
+
'mali': 'đ˛đą',
|
|
1730
|
+
'myanmar': 'đ˛đ˛',
|
|
1731
|
+
'mongolia': 'đ˛đł',
|
|
1732
|
+
'macau': 'đ˛đ´',
|
|
1733
|
+
'northern_mariana_islands': 'đ˛đľ',
|
|
1734
|
+
'martinique': 'đ˛đś',
|
|
1735
|
+
'mauritania': 'đ˛đˇ',
|
|
1736
|
+
'montserrat': 'đ˛đ¸',
|
|
1737
|
+
'malta': 'đ˛đš',
|
|
1738
|
+
'mauritius': 'đ˛đş',
|
|
1739
|
+
'maldives': 'đ˛đť',
|
|
1740
|
+
'malawi': 'đ˛đź',
|
|
1741
|
+
'mexico': 'đ˛đ˝',
|
|
1742
|
+
'malaysia': 'đ˛đž',
|
|
1743
|
+
'mozambique': 'đ˛đż',
|
|
1744
|
+
'namibia': 'đłđŚ',
|
|
1745
|
+
'new_caledonia': 'đłđ¨',
|
|
1746
|
+
'niger': 'đłđŞ',
|
|
1747
|
+
'norfolk_island': 'đłđŤ',
|
|
1748
|
+
'nigeria': 'đłđŹ',
|
|
1749
|
+
'nicaragua': 'đłđŽ',
|
|
1750
|
+
'netherlands': 'đłđą',
|
|
1751
|
+
'norway': 'đłđ´',
|
|
1752
|
+
'nepal': 'đłđľ',
|
|
1753
|
+
'nauru': 'đłđˇ',
|
|
1754
|
+
'niue': 'đłđş',
|
|
1755
|
+
'new_zealand': 'đłđż',
|
|
1756
|
+
'oman': 'đ´đ˛',
|
|
1757
|
+
'panama': 'đľđŚ',
|
|
1758
|
+
'peru': 'đľđŞ',
|
|
1759
|
+
'french_polynesia': 'đľđŤ',
|
|
1760
|
+
'papua_new_guinea': 'đľđŹ',
|
|
1761
|
+
'philippines': 'đľđ',
|
|
1762
|
+
'pakistan': 'đľđ°',
|
|
1763
|
+
'poland': 'đľđą',
|
|
1764
|
+
'st_pierre_miquelon': 'đľđ˛',
|
|
1765
|
+
'pitcairn_islands': 'đľđł',
|
|
1766
|
+
'puerto_rico': 'đľđˇ',
|
|
1767
|
+
'palestinian_territories': 'đľđ¸',
|
|
1768
|
+
'portugal': 'đľđš',
|
|
1769
|
+
'palau': 'đľđź',
|
|
1770
|
+
'paraguay': 'đľđž',
|
|
1771
|
+
'qatar': 'đśđŚ',
|
|
1772
|
+
'reunion': 'đˇđŞ',
|
|
1773
|
+
'romania': 'đˇđ´',
|
|
1774
|
+
'serbia': 'đˇđ¸',
|
|
1775
|
+
'ru': 'đˇđş',
|
|
1776
|
+
'rwanda': 'đˇđź',
|
|
1777
|
+
'saudi_arabia': 'đ¸đŚ',
|
|
1778
|
+
'solomon_islands': 'đ¸đ§',
|
|
1779
|
+
'seychelles': 'đ¸đ¨',
|
|
1780
|
+
'sudan': 'đ¸đŠ',
|
|
1781
|
+
'sweden': 'đ¸đŞ',
|
|
1782
|
+
'singapore': 'đ¸đŹ',
|
|
1783
|
+
'st_helena': 'đ¸đ',
|
|
1784
|
+
'slovenia': 'đ¸đŽ',
|
|
1785
|
+
'svalbard_jan_mayen': 'đ¸đŻ',
|
|
1786
|
+
'slovakia': 'đ¸đ°',
|
|
1787
|
+
'sierra_leone': 'đ¸đą',
|
|
1788
|
+
'san_marino': 'đ¸đ˛',
|
|
1789
|
+
'senegal': 'đ¸đł',
|
|
1790
|
+
'somalia': 'đ¸đ´',
|
|
1791
|
+
'suriname': 'đ¸đˇ',
|
|
1792
|
+
'south_sudan': 'đ¸đ¸',
|
|
1793
|
+
'sao_tome_principe': 'đ¸đš',
|
|
1794
|
+
'el_salvador': 'đ¸đť',
|
|
1795
|
+
'sint_maarten': 'đ¸đ˝',
|
|
1796
|
+
'syria': 'đ¸đž',
|
|
1797
|
+
'swaziland': 'đ¸đż',
|
|
1798
|
+
'tristan_da_cunha': 'đšđŚ',
|
|
1799
|
+
'turks_caicos_islands': 'đšđ¨',
|
|
1800
|
+
'chad': 'đšđŠ',
|
|
1801
|
+
'french_southern_territories': 'đšđŤ',
|
|
1802
|
+
'togo': 'đšđŹ',
|
|
1803
|
+
'thailand': 'đšđ',
|
|
1804
|
+
'tajikistan': 'đšđŻ',
|
|
1805
|
+
'tokelau': 'đšđ°',
|
|
1806
|
+
'timor_leste': 'đšđą',
|
|
1807
|
+
'turkmenistan': 'đšđ˛',
|
|
1808
|
+
'tunisia': 'đšđł',
|
|
1809
|
+
'tonga': 'đšđ´',
|
|
1810
|
+
'tr': 'đšđˇ',
|
|
1811
|
+
'trinidad_tobago': 'đšđš',
|
|
1812
|
+
'tuvalu': 'đšđť',
|
|
1813
|
+
'taiwan': 'đšđź',
|
|
1814
|
+
'tanzania': 'đšđż',
|
|
1815
|
+
'ukraine': 'đşđŚ',
|
|
1816
|
+
'uganda': 'đşđŹ',
|
|
1817
|
+
'us_outlying_islands': 'đşđ˛',
|
|
1818
|
+
'united_nations': 'đşđł',
|
|
1819
|
+
'us': 'đşđ¸',
|
|
1820
|
+
'uruguay': 'đşđž',
|
|
1821
|
+
'uzbekistan': 'đşđż',
|
|
1822
|
+
'vatican_city': 'đťđŚ',
|
|
1823
|
+
'st_vincent_grenadines': 'đťđ¨',
|
|
1824
|
+
'venezuela': 'đťđŞ',
|
|
1825
|
+
'british_virgin_islands': 'đťđŹ',
|
|
1826
|
+
'us_virgin_islands': 'đťđŽ',
|
|
1827
|
+
'vietnam': 'đťđł',
|
|
1828
|
+
'vanuatu': 'đťđş',
|
|
1829
|
+
'wallis_futuna': 'đźđŤ',
|
|
1830
|
+
'samoa': 'đźđ¸',
|
|
1831
|
+
'kosovo': 'đ˝đ°',
|
|
1832
|
+
'yemen': 'đžđŞ',
|
|
1833
|
+
'mayotte': 'đžđš',
|
|
1834
|
+
'south_africa': 'đżđŚ',
|
|
1835
|
+
'zambia': 'đżđ˛',
|
|
1836
|
+
'zimbabwe': 'đżđź',
|
|
1837
|
+
'england': 'đ´ó §ó ˘ó Ľó Žó §ó ż',
|
|
1838
|
+
'scotland': 'đ´ó §ó ˘ó łó Łó ´ó ż',
|
|
1839
|
+
'wales': 'đ´ó §ó ˘ó ˇó Źó łó ż',
|
|
1840
|
+
} as any;
|
|
1841
|
+
|
|
1842
|
+
export const emojisToName = Object.keys(namesToEmoji).reduce((accu: any, name: any) => {
|
|
1843
|
+
const emoji = namesToEmoji[name];
|
|
1844
|
+
accu[emoji] = name;
|
|
1845
|
+
return accu;
|
|
1846
|
+
}, {});
|
|
1847
|
+
|
|
1848
|
+
export const names = Object.keys(namesToEmoji).map(key => key);
|
|
1849
|
+
export const emojis = Object.keys(namesToEmoji).map(key => namesToEmoji[key]);
|
|
1850
|
+
|
|
1851
|
+
export function emojiSearch(query: any) {
|
|
1852
|
+
return names
|
|
1853
|
+
.filter(name => name.startsWith(query))
|
|
1854
|
+
.map(name => ({
|
|
1855
|
+
name,
|
|
1856
|
+
emoji: namesToEmoji[name],
|
|
1857
|
+
}));
|
|
1858
|
+
}
|