├── .gitignore ├── .prettierignore ├── .prettierrc.yml ├── .editorconfig ├── tsconfig.json ├── scripts ├── generate.ts ├── markdown.ts └── fetch.ts ├── .github ├── actions │ └── setup │ │ └── action.yml └── workflows │ ├── test.yml │ └── update.yml ├── package.json ├── LICENSE ├── pnpm-lock.yaml └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | /.vscode/ 2 | /node_modules/ 3 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | /pnpm-lock.yaml 2 | /README.md 3 | -------------------------------------------------------------------------------- /.prettierrc.yml: -------------------------------------------------------------------------------- 1 | arrowParens: avoid 2 | semi: false 3 | singleQuote: true 4 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | indent_style = space 5 | indent_size = 2 6 | end_of_line = lf 7 | insert_final_newline = true 8 | trim_trailing_whitespace = true 9 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "include": ["scripts/**/*"], 3 | "compilerOptions": { 4 | "strict": true, 5 | "target": "ES2021", 6 | "lib": ["ES2021", "DOM"], 7 | "module": "Node16", 8 | "moduleResolution": "Node16", 9 | "skipLibCheck": true, 10 | "resolveJsonModule": true 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /scripts/generate.ts: -------------------------------------------------------------------------------- 1 | import { getCategorizeGithubEmojiIds } from './fetch.js' 2 | import { generateCheatSheet } from './markdown.js' 3 | 4 | export async function generate() { 5 | return generateCheatSheet(await getCategorizeGithubEmojiIds()) 6 | } 7 | 8 | if (process.argv[2] === 'run') { 9 | console.log(await generate()) 10 | } 11 | -------------------------------------------------------------------------------- /.github/actions/setup/action.yml: -------------------------------------------------------------------------------- 1 | name: setup 2 | description: setup 3 | runs: 4 | using: composite 5 | steps: 6 | - uses: pnpm/action-setup@v2 7 | - uses: actions/setup-node@v3 8 | with: 9 | cache: pnpm 10 | node-version: '18' 11 | registry-url: 'https://registry.npmjs.org' 12 | - run: pnpm install 13 | shell: bash 14 | -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- 1 | on: 2 | push: 3 | branches: 4 | - master 5 | pull_request: 6 | branches: 7 | - master 8 | 9 | jobs: 10 | lint: 11 | runs-on: ubuntu-latest 12 | steps: 13 | - uses: actions/checkout@v3 14 | - uses: ./.github/actions/setup 15 | - run: pnpm run lint 16 | check: 17 | runs-on: ubuntu-latest 18 | steps: 19 | - uses: actions/checkout@v3 20 | - uses: ./.github/actions/setup 21 | - run: pnpm run check 22 | test: 23 | runs-on: ubuntu-latest 24 | steps: 25 | - uses: actions/checkout@v3 26 | - uses: ./.github/actions/setup 27 | - run: pnpm run test 28 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "emoji-cheat-sheet", 3 | "type": "module", 4 | "version": "0.0.0-dev", 5 | "private": true, 6 | "repository": "ikatyang/emoji-cheat-sheet", 7 | "homepage": "https://github.com/ikatyang/emoji-cheat-sheet#readme", 8 | "author": { 9 | "name": "Ika", 10 | "email": "ikatyang@gmail.com", 11 | "url": "https://github.com/ikatyang" 12 | }, 13 | "license": "MIT", 14 | "scripts": { 15 | "lint": "prettier --check .", 16 | "check": "tsc --noEmit", 17 | "test": "vitest", 18 | "generate": "vite-node ./scripts/generate.ts -- run > ./README.md" 19 | }, 20 | "devDependencies": { 21 | "jest-playback": "4.0.0", 22 | "prettier": "3.0.0", 23 | "typescript": "5.1.6", 24 | "vite": "4.5.2", 25 | "vite-node": "0.33.0", 26 | "vitest": "0.33.0" 27 | }, 28 | "engines": { 29 | "node": ">=18" 30 | }, 31 | "packageManager": "pnpm@8.6.6" 32 | } 33 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) Ika (https://github.com/ikatyang) 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /.github/workflows/update.yml: -------------------------------------------------------------------------------- 1 | name: Up to Date 2 | 3 | on: 4 | schedule: 5 | - cron: '0 0 * * *' 6 | 7 | jobs: 8 | update: 9 | name: Update 10 | runs-on: ubuntu-latest 11 | steps: 12 | - uses: actions/checkout@v3 13 | - uses: ./.github/actions/setup 14 | - run: pnpm run generate 15 | 16 | - name: Push New Cheat Sheet to Updated Branch 17 | run: | 18 | git diff --name-only --exit-code && exit 0 19 | git add README.md 20 | git config --global user.name "github-actions[bot]" 21 | git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com" 22 | git commit -m "docs(readme): update emoji-cheat-sheet" 23 | git push -qf "https://${{ secrets.GITHUB_TOKEN }}@github.com/${{ github.repository }}.git" HEAD:github-actions-auto-update 24 | 25 | - name: Create PR from Updated Branch 26 | uses: actions/github-script@v2 27 | with: 28 | github-token: ${{secrets.GITHUB_TOKEN}} 29 | script: | 30 | const {owner, repo} = context.repo 31 | const branch = 'github-actions-auto-update' 32 | const head = `${owner}:${branch}` 33 | const title = 'docs(readme): update emoji-cheat-sheet' 34 | const branchesResult = await github.repos.listBranches({ owner, repo }) 35 | if (branchesResult.status !== 200 || !branchesResult.data.find(({ name }) => name === branch)) { 36 | return 37 | } 38 | const prsResult = await github.pulls.list({ owner, repo, head, state: 'open' }) 39 | if (prsResult.status === 200 && prsResult.data.length === 0) { 40 | try { 41 | await github.pulls.create({ owner, repo, head, title, base: 'master' }) 42 | } catch (error) { 43 | console.error(error) 44 | } 45 | } 46 | -------------------------------------------------------------------------------- /scripts/markdown.ts: -------------------------------------------------------------------------------- 1 | import { name as repoName, repository } from '../package.json' 2 | 3 | const RESOURCE_1 = '[GitHub Emoji API](https://api.github.com/emojis)' 4 | const RESOURCE_2 = 5 | '[Unicode Full Emoji List](https://unicode.org/emoji/charts/full-emoji-list.html)' 6 | 7 | const COLUMNS = 2 8 | 9 | const TOC_NAME = 'Table of Contents' 10 | 11 | type GithubEmojiIds = Array 12 | 13 | export function generateCheatSheet(categorizedGithubEmojiIds: { 14 | [category: string]: { [subCategory: string]: GithubEmojiIds } 15 | }) { 16 | const lineTexts = [] 17 | 18 | lineTexts.push(`# ${repoName}`) 19 | lineTexts.push('') 20 | 21 | lineTexts.push( 22 | `[![Up to Date](https://github.com/${repository}/workflows/Up%20to%20Date/badge.svg)](https://github.com/${repository}/actions?query=workflow%3A%22Up+to+Date%22)`, 23 | ) 24 | lineTexts.push('') 25 | 26 | lineTexts.push( 27 | `This cheat sheet is automatically generated from ${RESOURCE_1} and ${RESOURCE_2}.`, 28 | ) 29 | lineTexts.push('') 30 | 31 | const categories = Object.keys(categorizedGithubEmojiIds) 32 | 33 | lineTexts.push(`## ${TOC_NAME}`) 34 | lineTexts.push('') 35 | lineTexts.push(...generateToc(categories)) 36 | lineTexts.push('') 37 | 38 | for (const category of categories) { 39 | lineTexts.push(`### ${category}`) 40 | lineTexts.push('') 41 | 42 | const subCategorizedGithubEmojiIds = categorizedGithubEmojiIds[category] 43 | const subCategories = Object.keys(subCategorizedGithubEmojiIds) 44 | if (subCategories.length > 1) { 45 | lineTexts.push(...generateToc(subCategories)) 46 | lineTexts.push('') 47 | } 48 | 49 | for (const subCategory of subCategories) { 50 | if (subCategory) { 51 | lineTexts.push(`#### ${subCategory}`) 52 | lineTexts.push('') 53 | } 54 | 55 | lineTexts.push( 56 | ...generateTable( 57 | subCategorizedGithubEmojiIds[subCategory], 58 | `[top](#${getHeaderId(category)})`, 59 | `[top](#${getHeaderId(TOC_NAME)})`, 60 | ), 61 | ) 62 | lineTexts.push('') 63 | } 64 | } 65 | 66 | return lineTexts.join('\n') 67 | } 68 | 69 | function generateToc(headers: string[]) { 70 | return headers.map(header => `- [${header}](#${getHeaderId(header)})`) 71 | } 72 | 73 | function getHeaderId(header: string) { 74 | return header 75 | .toLowerCase() 76 | .replace(/ /g, '-') 77 | .replace(/[^a-z0-9-]/g, '') 78 | } 79 | 80 | function generateTable( 81 | githubEmojiIds: GithubEmojiIds, 82 | leftText: string, 83 | rightText: string, 84 | ) { 85 | const lineTexts = [] 86 | 87 | let header = '' 88 | let delimiter = '' 89 | 90 | header += '| ' 91 | delimiter += '| - ' 92 | for (let i = 0; i < COLUMNS && i < githubEmojiIds.length; i++) { 93 | header += `| ico | shortcode ` 94 | delimiter += '| :-: | - ' 95 | } 96 | header += '| |' 97 | delimiter += '| - |' 98 | 99 | lineTexts.push(header, delimiter) 100 | 101 | for (let i = 0; i < githubEmojiIds.length; i += COLUMNS) { 102 | let lineText = `| ${leftText} ` 103 | for (let j = 0; j < COLUMNS; j++) { 104 | if (i + j < githubEmojiIds.length) { 105 | const emojiIds = githubEmojiIds[i + j] 106 | const emojiId = emojiIds[0] 107 | lineText += `| :${emojiId}: | \`:${emojiId}:\` ` 108 | for (let k = 1; k < emojiIds.length; k++) { 109 | lineText += `
\`:${emojiIds[k]}:\` ` 110 | } 111 | } else if (githubEmojiIds.length > COLUMNS) { 112 | lineText += '| | ' 113 | } 114 | } 115 | lineText += `| ${rightText} |` 116 | lineTexts.push(lineText) 117 | } 118 | 119 | return lineTexts 120 | } 121 | -------------------------------------------------------------------------------- /scripts/fetch.ts: -------------------------------------------------------------------------------- 1 | type EmojiLiteral = string 2 | 3 | async function getGithubEmojiIdMap(): Promise<{ 4 | [githubEmojiId: string]: EmojiLiteral | [string] 5 | }> { 6 | return Object.fromEntries( 7 | Object.entries( 8 | await fetchJson<{ [id: string]: string }>( 9 | 'https://api.github.com/emojis', 10 | { 11 | headers: { 12 | 'User-Agent': 'https://github.com/ikatyang/emoji-cheat-sheet', 13 | }, 14 | }, 15 | ), 16 | ).map(([id, url]) => [ 17 | id, 18 | url.includes('/unicode/') 19 | ? getLast(url.split('/')) 20 | .split('.png')[0] 21 | .split('-') 22 | .map(codePointText => 23 | String.fromCodePoint(Number.parseInt(codePointText, 16)), 24 | ) 25 | .join('') 26 | : [getLast(url.split('/')).split('.png')[0]], // github's custom emoji 27 | ]), 28 | ) 29 | } 30 | 31 | async function getUnicodeEmojiCategoryIterator() { 32 | return getUnicodeEmojiCategoryIteratorFromText( 33 | await fetchText('https://unicode.org/emoji/charts/full-emoji-list.txt'), 34 | ) 35 | } 36 | 37 | function* getUnicodeEmojiCategoryIteratorFromText(text: string) { 38 | const lines = text.split('\n') 39 | for (const line of lines) { 40 | if (line.startsWith('@@')) { 41 | const value = line.substring(2) 42 | yield { type: 'category', value } 43 | } else if (line.startsWith('@')) { 44 | const value = line.substring(1) 45 | yield { type: 'subcategory', value } 46 | } else if (line.length) { 47 | const value = line 48 | .split('\t')[0] 49 | .split(' ') 50 | .map(_ => String.fromCodePoint(parseInt(_, 16))) 51 | .join('') 52 | yield { type: 'emoji', value } 53 | } 54 | } 55 | } 56 | 57 | export async function getCategorizeGithubEmojiIds() { 58 | const githubEmojiIdMap = await getGithubEmojiIdMap() 59 | const emojiLiteralToGithubEmojiIdsMap: { 60 | [emojiLiteral: string]: string[] 61 | } = {} 62 | const githubSpecificEmojiUriToGithubEmojiIdsMap: { 63 | [githubSpecificEmojiUri: string]: string[] 64 | } = {} 65 | for (const [emojiId, emojiLiteral] of Object.entries(githubEmojiIdMap)) { 66 | if (Array.isArray(emojiLiteral)) { 67 | const [uri] = emojiLiteral 68 | if (!githubSpecificEmojiUriToGithubEmojiIdsMap[uri]) { 69 | githubSpecificEmojiUriToGithubEmojiIdsMap[uri] = [] 70 | } 71 | githubSpecificEmojiUriToGithubEmojiIdsMap[uri].push(emojiId) 72 | delete githubEmojiIdMap[emojiId] 73 | continue 74 | } 75 | if (!emojiLiteralToGithubEmojiIdsMap[emojiLiteral]) { 76 | emojiLiteralToGithubEmojiIdsMap[emojiLiteral] = [] 77 | } 78 | emojiLiteralToGithubEmojiIdsMap[emojiLiteral].push(emojiId) 79 | } 80 | const categorizedEmojiIds: { 81 | [category: string]: { [subcategory: string]: Array } 82 | } = {} 83 | const categoryStack = [] 84 | for (const { type, value } of await getUnicodeEmojiCategoryIterator()) { 85 | switch (type) { 86 | case 'category': { 87 | while (categoryStack.length) categoryStack.pop() 88 | const title = toTitleCase(value) 89 | categoryStack.push(title) 90 | categorizedEmojiIds[title] = {} 91 | break 92 | } 93 | case 'subcategory': { 94 | if (categoryStack.length > 1) categoryStack.pop() 95 | const title = toTitleCase(value) 96 | categoryStack.push(title) 97 | categorizedEmojiIds[categoryStack[0]][title] = [] 98 | break 99 | } 100 | case 'emoji': { 101 | const key = value.replace(/[\ufe00-\ufe0f\u200d]/g, '') 102 | if (key in emojiLiteralToGithubEmojiIdsMap) { 103 | const githubEmojiIds = emojiLiteralToGithubEmojiIdsMap[key] 104 | const [category, subcategory] = categoryStack 105 | categorizedEmojiIds[category][subcategory].push(githubEmojiIds) 106 | for (const githubEmojiId of githubEmojiIds) { 107 | delete githubEmojiIdMap[githubEmojiId] 108 | } 109 | } 110 | break 111 | } 112 | default: 113 | throw new Error(`Unexpected type ${JSON.stringify(type)}`) 114 | } 115 | } 116 | if (Object.keys(githubEmojiIdMap).length) { 117 | throw new Error(`Uncategorized emoji(s) found.`) 118 | } 119 | for (const category of Object.keys(categorizedEmojiIds)) { 120 | const subCategorizedEmojiIds = categorizedEmojiIds[category] 121 | const subcategories = Object.keys(subCategorizedEmojiIds) 122 | for (const subcategory of subcategories) { 123 | if (subCategorizedEmojiIds[subcategory].length === 0) { 124 | delete subCategorizedEmojiIds[subcategory] 125 | } 126 | } 127 | if (Object.keys(subCategorizedEmojiIds).length === 0) { 128 | delete categorizedEmojiIds[category] 129 | } 130 | } 131 | if (Object.keys(githubSpecificEmojiUriToGithubEmojiIdsMap).length) { 132 | categorizedEmojiIds['GitHub Custom Emoji'] = { 133 | '': Object.entries(githubSpecificEmojiUriToGithubEmojiIdsMap).map( 134 | ([, v]) => v, 135 | ), 136 | } 137 | } 138 | return categorizedEmojiIds 139 | } 140 | 141 | function toTitleCase(text: string) { 142 | return text 143 | .replace(/-/g, ' ') 144 | .replace(/\s+/g, ' ') 145 | .replace(/[a-zA-Z]+/g, word => word[0].toUpperCase() + word.slice(1)) 146 | } 147 | 148 | function getLast(array: T[]) { 149 | return array[array.length - 1] 150 | } 151 | 152 | async function fetchJson(url: string, init?: RequestInit) { 153 | const response = await fetch(url, init) 154 | return (await response.json()) as T 155 | } 156 | 157 | async function fetchText(url: string, init?: RequestInit) { 158 | const response = await fetch(url, init) 159 | return await response.text() 160 | } 161 | -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- 1 | lockfileVersion: '6.0' 2 | 3 | settings: 4 | autoInstallPeers: true 5 | excludeLinksFromLockfile: false 6 | 7 | devDependencies: 8 | jest-playback: 9 | specifier: 4.0.0 10 | version: 4.0.0 11 | prettier: 12 | specifier: 3.0.0 13 | version: 3.0.0 14 | typescript: 15 | specifier: 5.1.6 16 | version: 5.1.6 17 | vite: 18 | specifier: 4.5.2 19 | version: 4.5.2(@types/node@20.4.3) 20 | vite-node: 21 | specifier: 0.33.0 22 | version: 0.33.0(@types/node@20.4.3) 23 | vitest: 24 | specifier: 0.33.0 25 | version: 0.33.0 26 | 27 | packages: 28 | 29 | /@esbuild/android-arm64@0.18.15: 30 | resolution: {integrity: sha512-NI/gnWcMl2kXt1HJKOn2H69SYn4YNheKo6NZt1hyfKWdMbaGadxjZIkcj4Gjk/WPxnbFXs9/3HjGHaknCqjrww==} 31 | engines: {node: '>=12'} 32 | cpu: [arm64] 33 | os: [android] 34 | requiresBuild: true 35 | dev: true 36 | optional: true 37 | 38 | /@esbuild/android-arm@0.18.15: 39 | resolution: {integrity: sha512-wlkQBWb79/jeEEoRmrxt/yhn5T1lU236OCNpnfRzaCJHZ/5gf82uYx1qmADTBWE0AR/v7FiozE1auk2riyQd3w==} 40 | engines: {node: '>=12'} 41 | cpu: [arm] 42 | os: [android] 43 | requiresBuild: true 44 | dev: true 45 | optional: true 46 | 47 | /@esbuild/android-x64@0.18.15: 48 | resolution: {integrity: sha512-FM9NQamSaEm/IZIhegF76aiLnng1kEsZl2eve/emxDeReVfRuRNmvT28l6hoFD9TsCxpK+i4v8LPpEj74T7yjA==} 49 | engines: {node: '>=12'} 50 | cpu: [x64] 51 | os: [android] 52 | requiresBuild: true 53 | dev: true 54 | optional: true 55 | 56 | /@esbuild/darwin-arm64@0.18.15: 57 | resolution: {integrity: sha512-XmrFwEOYauKte9QjS6hz60FpOCnw4zaPAb7XV7O4lx1r39XjJhTN7ZpXqJh4sN6q60zbP6QwAVVA8N/wUyBH/w==} 58 | engines: {node: '>=12'} 59 | cpu: [arm64] 60 | os: [darwin] 61 | requiresBuild: true 62 | dev: true 63 | optional: true 64 | 65 | /@esbuild/darwin-x64@0.18.15: 66 | resolution: {integrity: sha512-bMqBmpw1e//7Fh5GLetSZaeo9zSC4/CMtrVFdj+bqKPGJuKyfNJ5Nf2m3LknKZTS+Q4oyPiON+v3eaJ59sLB5A==} 67 | engines: {node: '>=12'} 68 | cpu: [x64] 69 | os: [darwin] 70 | requiresBuild: true 71 | dev: true 72 | optional: true 73 | 74 | /@esbuild/freebsd-arm64@0.18.15: 75 | resolution: {integrity: sha512-LoTK5N3bOmNI9zVLCeTgnk5Rk0WdUTrr9dyDAQGVMrNTh9EAPuNwSTCgaKOKiDpverOa0htPcO9NwslSE5xuLA==} 76 | engines: {node: '>=12'} 77 | cpu: [arm64] 78 | os: [freebsd] 79 | requiresBuild: true 80 | dev: true 81 | optional: true 82 | 83 | /@esbuild/freebsd-x64@0.18.15: 84 | resolution: {integrity: sha512-62jX5n30VzgrjAjOk5orYeHFq6sqjvsIj1QesXvn5OZtdt5Gdj0vUNJy9NIpjfdNdqr76jjtzBJKf+h2uzYuTQ==} 85 | engines: {node: '>=12'} 86 | cpu: [x64] 87 | os: [freebsd] 88 | requiresBuild: true 89 | dev: true 90 | optional: true 91 | 92 | /@esbuild/linux-arm64@0.18.15: 93 | resolution: {integrity: sha512-BWncQeuWDgYv0jTNzJjaNgleduV4tMbQjmk/zpPh/lUdMcNEAxy+jvneDJ6RJkrqloG7tB9S9rCrtfk/kuplsQ==} 94 | engines: {node: '>=12'} 95 | cpu: [arm64] 96 | os: [linux] 97 | requiresBuild: true 98 | dev: true 99 | optional: true 100 | 101 | /@esbuild/linux-arm@0.18.15: 102 | resolution: {integrity: sha512-dT4URUv6ir45ZkBqhwZwyFV6cH61k8MttIwhThp2BGiVtagYvCToF+Bggyx2VI57RG4Fbt21f9TmXaYx0DeUJg==} 103 | engines: {node: '>=12'} 104 | cpu: [arm] 105 | os: [linux] 106 | requiresBuild: true 107 | dev: true 108 | optional: true 109 | 110 | /@esbuild/linux-ia32@0.18.15: 111 | resolution: {integrity: sha512-JPXORvgHRHITqfms1dWT/GbEY89u848dC08o0yK3fNskhp0t2TuNUnsrrSgOdH28ceb1hJuwyr8R/1RnyPwocw==} 112 | engines: {node: '>=12'} 113 | cpu: [ia32] 114 | os: [linux] 115 | requiresBuild: true 116 | dev: true 117 | optional: true 118 | 119 | /@esbuild/linux-loong64@0.18.15: 120 | resolution: {integrity: sha512-kArPI0DopjJCEplsVj/H+2Qgzz7vdFSacHNsgoAKpPS6W/Ndh8Oe24HRDQ5QCu4jHgN6XOtfFfLpRx3TXv/mEg==} 121 | engines: {node: '>=12'} 122 | cpu: [loong64] 123 | os: [linux] 124 | requiresBuild: true 125 | dev: true 126 | optional: true 127 | 128 | /@esbuild/linux-mips64el@0.18.15: 129 | resolution: {integrity: sha512-b/tmngUfO02E00c1XnNTw/0DmloKjb6XQeqxaYuzGwHe0fHVgx5/D6CWi+XH1DvkszjBUkK9BX7n1ARTOst59w==} 130 | engines: {node: '>=12'} 131 | cpu: [mips64el] 132 | os: [linux] 133 | requiresBuild: true 134 | dev: true 135 | optional: true 136 | 137 | /@esbuild/linux-ppc64@0.18.15: 138 | resolution: {integrity: sha512-KXPY69MWw79QJkyvUYb2ex/OgnN/8N/Aw5UDPlgoRtoEfcBqfeLodPr42UojV3NdkoO4u10NXQdamWm1YEzSKw==} 139 | engines: {node: '>=12'} 140 | cpu: [ppc64] 141 | os: [linux] 142 | requiresBuild: true 143 | dev: true 144 | optional: true 145 | 146 | /@esbuild/linux-riscv64@0.18.15: 147 | resolution: {integrity: sha512-komK3NEAeeGRnvFEjX1SfVg6EmkfIi5aKzevdvJqMydYr9N+pRQK0PGJXk+bhoPZwOUgLO4l99FZmLGk/L1jWg==} 148 | engines: {node: '>=12'} 149 | cpu: [riscv64] 150 | os: [linux] 151 | requiresBuild: true 152 | dev: true 153 | optional: true 154 | 155 | /@esbuild/linux-s390x@0.18.15: 156 | resolution: {integrity: sha512-632T5Ts6gQ2WiMLWRRyeflPAm44u2E/s/TJvn+BP6M5mnHSk93cieaypj3VSMYO2ePTCRqAFXtuYi1yv8uZJNA==} 157 | engines: {node: '>=12'} 158 | cpu: [s390x] 159 | os: [linux] 160 | requiresBuild: true 161 | dev: true 162 | optional: true 163 | 164 | /@esbuild/linux-x64@0.18.15: 165 | resolution: {integrity: sha512-MsHtX0NgvRHsoOtYkuxyk4Vkmvk3PLRWfA4okK7c+6dT0Fu4SUqXAr9y4Q3d8vUf1VWWb6YutpL4XNe400iQ1g==} 166 | engines: {node: '>=12'} 167 | cpu: [x64] 168 | os: [linux] 169 | requiresBuild: true 170 | dev: true 171 | optional: true 172 | 173 | /@esbuild/netbsd-x64@0.18.15: 174 | resolution: {integrity: sha512-djST6s+jQiwxMIVQ5rlt24JFIAr4uwUnzceuFL7BQT4CbrRtqBPueS4GjXSiIpmwVri1Icj/9pFRJ7/aScvT+A==} 175 | engines: {node: '>=12'} 176 | cpu: [x64] 177 | os: [netbsd] 178 | requiresBuild: true 179 | dev: true 180 | optional: true 181 | 182 | /@esbuild/openbsd-x64@0.18.15: 183 | resolution: {integrity: sha512-naeRhUIvhsgeounjkF5mvrNAVMGAm6EJWiabskeE5yOeBbLp7T89tAEw0j5Jm/CZAwyLe3c67zyCWH6fsBLCpw==} 184 | engines: {node: '>=12'} 185 | cpu: [x64] 186 | os: [openbsd] 187 | requiresBuild: true 188 | dev: true 189 | optional: true 190 | 191 | /@esbuild/sunos-x64@0.18.15: 192 | resolution: {integrity: sha512-qkT2+WxyKbNIKV1AEhI8QiSIgTHMcRctzSaa/I3kVgMS5dl3fOeoqkb7pW76KwxHoriImhx7Mg3TwN/auMDsyQ==} 193 | engines: {node: '>=12'} 194 | cpu: [x64] 195 | os: [sunos] 196 | requiresBuild: true 197 | dev: true 198 | optional: true 199 | 200 | /@esbuild/win32-arm64@0.18.15: 201 | resolution: {integrity: sha512-HC4/feP+pB2Vb+cMPUjAnFyERs+HJN7E6KaeBlFdBv799MhD+aPJlfi/yk36SED58J9TPwI8MAcVpJgej4ud0A==} 202 | engines: {node: '>=12'} 203 | cpu: [arm64] 204 | os: [win32] 205 | requiresBuild: true 206 | dev: true 207 | optional: true 208 | 209 | /@esbuild/win32-ia32@0.18.15: 210 | resolution: {integrity: sha512-ovjwoRXI+gf52EVF60u9sSDj7myPixPxqzD5CmkEUmvs+W9Xd0iqISVBQn8xcx4ciIaIVlWCuTbYDOXOnOL44Q==} 211 | engines: {node: '>=12'} 212 | cpu: [ia32] 213 | os: [win32] 214 | requiresBuild: true 215 | dev: true 216 | optional: true 217 | 218 | /@esbuild/win32-x64@0.18.15: 219 | resolution: {integrity: sha512-imUxH9a3WJARyAvrG7srLyiK73XdX83NXQkjKvQ+7vPh3ZxoLrzvPkQKKw2DwZ+RV2ZB6vBfNHP8XScAmQC3aA==} 220 | engines: {node: '>=12'} 221 | cpu: [x64] 222 | os: [win32] 223 | requiresBuild: true 224 | dev: true 225 | optional: true 226 | 227 | /@jest/schemas@29.6.0: 228 | resolution: {integrity: sha512-rxLjXyJBTL4LQeJW3aKo0M/+GkCOXsO+8i9Iu7eDb6KwtP65ayoDsitrdPBtujxQ88k4wI2FNYfa6TOGwSn6cQ==} 229 | engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} 230 | dependencies: 231 | '@sinclair/typebox': 0.27.8 232 | dev: true 233 | 234 | /@jridgewell/sourcemap-codec@1.4.15: 235 | resolution: {integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==} 236 | dev: true 237 | 238 | /@mswjs/interceptors@0.23.0: 239 | resolution: {integrity: sha512-JytvDa7pBbxXvCTXBYQs+0eE6MqxpqH/H4peRNY6zVAlvJ6d/hAWLHAef1D9lWN4zuIigN0VkakGOAUrX7FWLg==} 240 | engines: {node: '>=18'} 241 | dependencies: 242 | '@open-draft/deferred-promise': 2.1.0 243 | '@open-draft/logger': 0.3.0 244 | '@open-draft/until': 2.1.0 245 | headers-polyfill: 3.1.2 246 | outvariant: 1.4.0 247 | strict-event-emitter: 0.5.0 248 | dev: true 249 | 250 | /@open-draft/deferred-promise@2.1.0: 251 | resolution: {integrity: sha512-Rzd5JrXZX8zErHzgcGyngh4fmEbSHqTETdGj9rXtejlqMIgXFlyKBA7Jn1Xp0Ls0M0Y22+xHcWiEzbmdWl0BOA==} 252 | dev: true 253 | 254 | /@open-draft/logger@0.3.0: 255 | resolution: {integrity: sha512-X2g45fzhxH238HKO4xbSr7+wBS8Fvw6ixhTDuvLd5mqh6bJJCFAPwU9mPDxbcrRtfxv4u5IHCEH77BmxvXmmxQ==} 256 | dependencies: 257 | is-node-process: 1.2.0 258 | outvariant: 1.4.0 259 | dev: true 260 | 261 | /@open-draft/until@2.1.0: 262 | resolution: {integrity: sha512-U69T3ItWHvLwGg5eJ0n3I62nWuE6ilHlmz7zM0npLBRvPRd7e6NYmg54vvRtP5mZG7kZqZCFVdsTWo7BPtBujg==} 263 | dev: true 264 | 265 | /@sinclair/typebox@0.27.8: 266 | resolution: {integrity: sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==} 267 | dev: true 268 | 269 | /@types/chai-subset@1.3.3: 270 | resolution: {integrity: sha512-frBecisrNGz+F4T6bcc+NLeolfiojh5FxW2klu669+8BARtyQv2C/GkNW6FUodVe4BroGMP/wER/YDGc7rEllw==} 271 | dependencies: 272 | '@types/chai': 4.3.5 273 | dev: true 274 | 275 | /@types/chai@4.3.5: 276 | resolution: {integrity: sha512-mEo1sAde+UCE6b2hxn332f1g1E8WfYRu6p5SvTKr2ZKC1f7gFJXk4h5PyGP9Dt6gCaG8y8XhwnXWC6Iy2cmBng==} 277 | dev: true 278 | 279 | /@types/node@20.4.3: 280 | resolution: {integrity: sha512-Yu3+r4Mn/iY6Mf0aihncZQ1qOjOUrCiodbHHY1hds5O+7BbKp9t+Li7zLO13zO8j9L2C6euz8xsYQP0rjGvVXw==} 281 | dev: true 282 | 283 | /@vitest/expect@0.33.0: 284 | resolution: {integrity: sha512-sVNf+Gla3mhTCxNJx+wJLDPp/WcstOe0Ksqz4Vec51MmgMth/ia0MGFEkIZmVGeTL5HtjYR4Wl/ZxBxBXZJTzQ==} 285 | dependencies: 286 | '@vitest/spy': 0.33.0 287 | '@vitest/utils': 0.33.0 288 | chai: 4.3.7 289 | dev: true 290 | 291 | /@vitest/runner@0.33.0: 292 | resolution: {integrity: sha512-UPfACnmCB6HKRHTlcgCoBh6ppl6fDn+J/xR8dTufWiKt/74Y9bHci5CKB8tESSV82zKYtkBJo9whU3mNvfaisg==} 293 | dependencies: 294 | '@vitest/utils': 0.33.0 295 | p-limit: 4.0.0 296 | pathe: 1.1.1 297 | dev: true 298 | 299 | /@vitest/snapshot@0.33.0: 300 | resolution: {integrity: sha512-tJjrl//qAHbyHajpFvr8Wsk8DIOODEebTu7pgBrP07iOepR5jYkLFiqLq2Ltxv+r0uptUb4izv1J8XBOwKkVYA==} 301 | dependencies: 302 | magic-string: 0.30.1 303 | pathe: 1.1.1 304 | pretty-format: 29.6.1 305 | dev: true 306 | 307 | /@vitest/spy@0.33.0: 308 | resolution: {integrity: sha512-Kv+yZ4hnH1WdiAkPUQTpRxW8kGtH8VRTnus7ZTGovFYM1ZezJpvGtb9nPIjPnptHbsyIAxYZsEpVPYgtpjGnrg==} 309 | dependencies: 310 | tinyspy: 2.1.1 311 | dev: true 312 | 313 | /@vitest/utils@0.33.0: 314 | resolution: {integrity: sha512-pF1w22ic965sv+EN6uoePkAOTkAPWM03Ri/jXNyMIKBb/XHLDPfhLvf/Fa9g0YECevAIz56oVYXhodLvLQ/awA==} 315 | dependencies: 316 | diff-sequences: 29.4.3 317 | loupe: 2.3.6 318 | pretty-format: 29.6.1 319 | dev: true 320 | 321 | /acorn-walk@8.2.0: 322 | resolution: {integrity: sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==} 323 | engines: {node: '>=0.4.0'} 324 | dev: true 325 | 326 | /acorn@8.10.0: 327 | resolution: {integrity: sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw==} 328 | engines: {node: '>=0.4.0'} 329 | hasBin: true 330 | dev: true 331 | 332 | /ansi-styles@5.2.0: 333 | resolution: {integrity: sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==} 334 | engines: {node: '>=10'} 335 | dev: true 336 | 337 | /assertion-error@1.1.0: 338 | resolution: {integrity: sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw==} 339 | dev: true 340 | 341 | /cac@6.7.14: 342 | resolution: {integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==} 343 | engines: {node: '>=8'} 344 | dev: true 345 | 346 | /chai@4.3.7: 347 | resolution: {integrity: sha512-HLnAzZ2iupm25PlN0xFreAlBA5zaBSv3og0DdeGA4Ar6h6rJ3A0rolRUKJhSF2V10GZKDgWF/VmAEsNWjCRB+A==} 348 | engines: {node: '>=4'} 349 | dependencies: 350 | assertion-error: 1.1.0 351 | check-error: 1.0.2 352 | deep-eql: 4.1.3 353 | get-func-name: 2.0.0 354 | loupe: 2.3.6 355 | pathval: 1.1.1 356 | type-detect: 4.0.8 357 | dev: true 358 | 359 | /check-error@1.0.2: 360 | resolution: {integrity: sha512-BrgHpW9NURQgzoNyjfq0Wu6VFO6D7IZEmJNdtgNqpzGG8RuNFHt2jQxWlAs4HMe119chBnv+34syEZtc6IhLtA==} 361 | dev: true 362 | 363 | /debug@4.3.4: 364 | resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==} 365 | engines: {node: '>=6.0'} 366 | peerDependencies: 367 | supports-color: '*' 368 | peerDependenciesMeta: 369 | supports-color: 370 | optional: true 371 | dependencies: 372 | ms: 2.1.2 373 | dev: true 374 | 375 | /deep-eql@4.1.3: 376 | resolution: {integrity: sha512-WaEtAOpRA1MQ0eohqZjpGD8zdI0Ovsm8mmFhaDN8dvDZzyoUMcYDnf5Y6iu7HTXxf8JDS23qWa4a+hKCDyOPzw==} 377 | engines: {node: '>=6'} 378 | dependencies: 379 | type-detect: 4.0.8 380 | dev: true 381 | 382 | /diff-sequences@29.4.3: 383 | resolution: {integrity: sha512-ofrBgwpPhCD85kMKtE9RYFFq6OC1A89oW2vvgWZNCwxrUpRUILopY7lsYyMDSjc8g6U6aiO0Qubg6r4Wgt5ZnA==} 384 | engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} 385 | dev: true 386 | 387 | /esbuild@0.18.15: 388 | resolution: {integrity: sha512-3WOOLhrvuTGPRzQPU6waSDWrDTnQriia72McWcn6UCi43GhCHrXH4S59hKMeez+IITmdUuUyvbU9JIp+t3xlPQ==} 389 | engines: {node: '>=12'} 390 | hasBin: true 391 | requiresBuild: true 392 | optionalDependencies: 393 | '@esbuild/android-arm': 0.18.15 394 | '@esbuild/android-arm64': 0.18.15 395 | '@esbuild/android-x64': 0.18.15 396 | '@esbuild/darwin-arm64': 0.18.15 397 | '@esbuild/darwin-x64': 0.18.15 398 | '@esbuild/freebsd-arm64': 0.18.15 399 | '@esbuild/freebsd-x64': 0.18.15 400 | '@esbuild/linux-arm': 0.18.15 401 | '@esbuild/linux-arm64': 0.18.15 402 | '@esbuild/linux-ia32': 0.18.15 403 | '@esbuild/linux-loong64': 0.18.15 404 | '@esbuild/linux-mips64el': 0.18.15 405 | '@esbuild/linux-ppc64': 0.18.15 406 | '@esbuild/linux-riscv64': 0.18.15 407 | '@esbuild/linux-s390x': 0.18.15 408 | '@esbuild/linux-x64': 0.18.15 409 | '@esbuild/netbsd-x64': 0.18.15 410 | '@esbuild/openbsd-x64': 0.18.15 411 | '@esbuild/sunos-x64': 0.18.15 412 | '@esbuild/win32-arm64': 0.18.15 413 | '@esbuild/win32-ia32': 0.18.15 414 | '@esbuild/win32-x64': 0.18.15 415 | dev: true 416 | 417 | /fsevents@2.3.2: 418 | resolution: {integrity: sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==} 419 | engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} 420 | os: [darwin] 421 | requiresBuild: true 422 | dev: true 423 | optional: true 424 | 425 | /get-func-name@2.0.0: 426 | resolution: {integrity: sha512-Hm0ixYtaSZ/V7C8FJrtZIuBBI+iSgL+1Aq82zSu8VQNB4S3Gk8e7Qs3VwBDJAhmRZcFqkl3tQu36g/Foh5I5ig==} 427 | dev: true 428 | 429 | /headers-polyfill@3.1.2: 430 | resolution: {integrity: sha512-tWCK4biJ6hcLqTviLXVR9DTRfYGQMXEIUj3gwJ2rZ5wO/at3XtkI4g8mCvFdUF9l1KMBNCfmNAdnahm1cgavQA==} 431 | dev: true 432 | 433 | /is-node-process@1.2.0: 434 | resolution: {integrity: sha512-Vg4o6/fqPxIjtxgUH5QLJhwZ7gW5diGCVlXpuUfELC62CuxM1iHcRe51f2W1FDy04Ai4KJkagKjx3XaqyfRKXw==} 435 | dev: true 436 | 437 | /jest-playback@4.0.0: 438 | resolution: {integrity: sha512-Nolhk72NYSo9JOBOrOb7GNlyaV/pVumX6sEFDSMuEn17jxCjimzsYmNTl7Je2ICRbLdA+u5SgB1v9L8M3SbBTw==} 439 | engines: {node: '>=18'} 440 | dependencies: 441 | '@mswjs/interceptors': 0.23.0 442 | jest-snapshot-serializer-raw: 2.0.0 443 | mime-types: 2.1.35 444 | dev: true 445 | 446 | /jest-snapshot-serializer-raw@2.0.0: 447 | resolution: {integrity: sha512-E/gWFBAltOPQVAvafH/zYkob3G/TqL/DFG3fHurinwLcFRkz6kASjuihyJJ6zoizlLUNaiOdS3v5ZflTvifpBA==} 448 | engines: {node: '>=16'} 449 | dev: true 450 | 451 | /jsonc-parser@3.2.0: 452 | resolution: {integrity: sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==} 453 | dev: true 454 | 455 | /local-pkg@0.4.3: 456 | resolution: {integrity: sha512-SFppqq5p42fe2qcZQqqEOiVRXl+WCP1MdT6k7BDEW1j++sp5fIY+/fdRQitvKgB5BrBcmrs5m/L0v2FrU5MY1g==} 457 | engines: {node: '>=14'} 458 | dev: true 459 | 460 | /loupe@2.3.6: 461 | resolution: {integrity: sha512-RaPMZKiMy8/JruncMU5Bt6na1eftNoo++R4Y+N2FrxkDVTrGvcyzFTsaGif4QTeKESheMGegbhw6iUAq+5A8zA==} 462 | dependencies: 463 | get-func-name: 2.0.0 464 | dev: true 465 | 466 | /magic-string@0.30.1: 467 | resolution: {integrity: sha512-mbVKXPmS0z0G4XqFDCTllmDQ6coZzn94aMlb0o/A4HEHJCKcanlDZwYJgwnkmgD3jyWhUgj9VsPrfd972yPffA==} 468 | engines: {node: '>=12'} 469 | dependencies: 470 | '@jridgewell/sourcemap-codec': 1.4.15 471 | dev: true 472 | 473 | /mime-db@1.52.0: 474 | resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==} 475 | engines: {node: '>= 0.6'} 476 | dev: true 477 | 478 | /mime-types@2.1.35: 479 | resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==} 480 | engines: {node: '>= 0.6'} 481 | dependencies: 482 | mime-db: 1.52.0 483 | dev: true 484 | 485 | /mlly@1.4.0: 486 | resolution: {integrity: sha512-ua8PAThnTwpprIaU47EPeZ/bPUVp2QYBbWMphUQpVdBI3Lgqzm5KZQ45Agm3YJedHXaIHl6pBGabaLSUPPSptg==} 487 | dependencies: 488 | acorn: 8.10.0 489 | pathe: 1.1.1 490 | pkg-types: 1.0.3 491 | ufo: 1.1.2 492 | dev: true 493 | 494 | /ms@2.1.2: 495 | resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==} 496 | dev: true 497 | 498 | /nanoid@3.3.6: 499 | resolution: {integrity: sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==} 500 | engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} 501 | hasBin: true 502 | dev: true 503 | 504 | /outvariant@1.4.0: 505 | resolution: {integrity: sha512-AlWY719RF02ujitly7Kk/0QlV+pXGFDHrHf9O2OKqyqgBieaPOIeuSkL8sRK6j2WK+/ZAURq2kZsY0d8JapUiw==} 506 | dev: true 507 | 508 | /p-limit@4.0.0: 509 | resolution: {integrity: sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ==} 510 | engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} 511 | dependencies: 512 | yocto-queue: 1.0.0 513 | dev: true 514 | 515 | /pathe@1.1.1: 516 | resolution: {integrity: sha512-d+RQGp0MAYTIaDBIMmOfMwz3E+LOZnxx1HZd5R18mmCZY0QBlK0LDZfPc8FW8Ed2DlvsuE6PRjroDY+wg4+j/Q==} 517 | dev: true 518 | 519 | /pathval@1.1.1: 520 | resolution: {integrity: sha512-Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ==} 521 | dev: true 522 | 523 | /picocolors@1.0.0: 524 | resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==} 525 | dev: true 526 | 527 | /pkg-types@1.0.3: 528 | resolution: {integrity: sha512-nN7pYi0AQqJnoLPC9eHFQ8AcyaixBUOwvqc5TDnIKCMEE6I0y8P7OKA7fPexsXGCGxQDl/cmrLAp26LhcwxZ4A==} 529 | dependencies: 530 | jsonc-parser: 3.2.0 531 | mlly: 1.4.0 532 | pathe: 1.1.1 533 | dev: true 534 | 535 | /postcss@8.4.31: 536 | resolution: {integrity: sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==} 537 | engines: {node: ^10 || ^12 || >=14} 538 | dependencies: 539 | nanoid: 3.3.6 540 | picocolors: 1.0.0 541 | source-map-js: 1.0.2 542 | dev: true 543 | 544 | /prettier@3.0.0: 545 | resolution: {integrity: sha512-zBf5eHpwHOGPC47h0zrPyNn+eAEIdEzfywMoYn2XPi0P44Zp0tSq64rq0xAREh4auw2cJZHo9QUob+NqCQky4g==} 546 | engines: {node: '>=14'} 547 | hasBin: true 548 | dev: true 549 | 550 | /pretty-format@29.6.1: 551 | resolution: {integrity: sha512-7jRj+yXO0W7e4/tSJKoR7HRIHLPPjtNaUGG2xxKQnGvPNRkgWcQ0AZX6P4KBRJN4FcTBWb3sa7DVUJmocYuoog==} 552 | engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} 553 | dependencies: 554 | '@jest/schemas': 29.6.0 555 | ansi-styles: 5.2.0 556 | react-is: 18.2.0 557 | dev: true 558 | 559 | /react-is@18.2.0: 560 | resolution: {integrity: sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==} 561 | dev: true 562 | 563 | /rollup@3.29.4: 564 | resolution: {integrity: sha512-oWzmBZwvYrU0iJHtDmhsm662rC15FRXmcjCk1xD771dFDx5jJ02ufAQQTn0etB2emNk4J9EZg/yWKpsn9BWGRw==} 565 | engines: {node: '>=14.18.0', npm: '>=8.0.0'} 566 | hasBin: true 567 | optionalDependencies: 568 | fsevents: 2.3.2 569 | dev: true 570 | 571 | /siginfo@2.0.0: 572 | resolution: {integrity: sha512-ybx0WO1/8bSBLEWXZvEd7gMW3Sn3JFlW3TvX1nREbDLRNQNaeNN8WK0meBwPdAaOI7TtRRRJn/Es1zhrrCHu7g==} 573 | dev: true 574 | 575 | /source-map-js@1.0.2: 576 | resolution: {integrity: sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==} 577 | engines: {node: '>=0.10.0'} 578 | dev: true 579 | 580 | /stackback@0.0.2: 581 | resolution: {integrity: sha512-1XMJE5fQo1jGH6Y/7ebnwPOBEkIEnT4QF32d5R1+VXdXveM0IBMJt8zfaxX1P3QhVwrYe+576+jkANtSS2mBbw==} 582 | dev: true 583 | 584 | /std-env@3.3.3: 585 | resolution: {integrity: sha512-Rz6yejtVyWnVjC1RFvNmYL10kgjC49EOghxWn0RFqlCHGFpQx+Xe7yW3I4ceK1SGrWIGMjD5Kbue8W/udkbMJg==} 586 | dev: true 587 | 588 | /strict-event-emitter@0.5.0: 589 | resolution: {integrity: sha512-sqnMpVJLSB3daNO6FcvsEk4Mq5IJeAwDeH80DP1S8+pgxrF6yZnE1+VeapesGled7nEcIkz1Ax87HzaIy+02kA==} 590 | dev: true 591 | 592 | /strip-literal@1.0.1: 593 | resolution: {integrity: sha512-QZTsipNpa2Ppr6v1AmJHESqJ3Uz247MUS0OjrnnZjFAvEoWqxuyFuXn2xLgMtRnijJShAa1HL0gtJyUs7u7n3Q==} 594 | dependencies: 595 | acorn: 8.10.0 596 | dev: true 597 | 598 | /tinybench@2.5.0: 599 | resolution: {integrity: sha512-kRwSG8Zx4tjF9ZiyH4bhaebu+EDz1BOx9hOigYHlUW4xxI/wKIUQUqo018UlU4ar6ATPBsaMrdbKZ+tmPdohFA==} 600 | dev: true 601 | 602 | /tinypool@0.6.0: 603 | resolution: {integrity: sha512-FdswUUo5SxRizcBc6b1GSuLpLjisa8N8qMyYoP3rl+bym+QauhtJP5bvZY1ytt8krKGmMLYIRl36HBZfeAoqhQ==} 604 | engines: {node: '>=14.0.0'} 605 | dev: true 606 | 607 | /tinyspy@2.1.1: 608 | resolution: {integrity: sha512-XPJL2uSzcOyBMky6OFrusqWlzfFrXtE0hPuMgW8A2HmaqrPo4ZQHRN/V0QXN3FSjKxpsbRrFc5LI7KOwBsT1/w==} 609 | engines: {node: '>=14.0.0'} 610 | dev: true 611 | 612 | /type-detect@4.0.8: 613 | resolution: {integrity: sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==} 614 | engines: {node: '>=4'} 615 | dev: true 616 | 617 | /typescript@5.1.6: 618 | resolution: {integrity: sha512-zaWCozRZ6DLEWAWFrVDz1H6FVXzUSfTy5FUMWsQlU8Ym5JP9eO4xkTIROFCQvhQf61z6O/G6ugw3SgAnvvm+HA==} 619 | engines: {node: '>=14.17'} 620 | hasBin: true 621 | dev: true 622 | 623 | /ufo@1.1.2: 624 | resolution: {integrity: sha512-TrY6DsjTQQgyS3E3dBaOXf0TpPD8u9FVrVYmKVegJuFw51n/YB9XPt+U6ydzFG5ZIN7+DIjPbNmXoBj9esYhgQ==} 625 | dev: true 626 | 627 | /vite-node@0.33.0(@types/node@20.4.3): 628 | resolution: {integrity: sha512-19FpHYbwWWxDr73ruNahC+vtEdza52kA90Qb3La98yZ0xULqV8A5JLNPUff0f5zID4984tW7l3DH2przTJUZSw==} 629 | engines: {node: '>=v14.18.0'} 630 | hasBin: true 631 | dependencies: 632 | cac: 6.7.14 633 | debug: 4.3.4 634 | mlly: 1.4.0 635 | pathe: 1.1.1 636 | picocolors: 1.0.0 637 | vite: 4.5.2(@types/node@20.4.3) 638 | transitivePeerDependencies: 639 | - '@types/node' 640 | - less 641 | - lightningcss 642 | - sass 643 | - stylus 644 | - sugarss 645 | - supports-color 646 | - terser 647 | dev: true 648 | 649 | /vite@4.5.2(@types/node@20.4.3): 650 | resolution: {integrity: sha512-tBCZBNSBbHQkaGyhGCDUGqeo2ph8Fstyp6FMSvTtsXeZSPpSMGlviAOav2hxVTqFcx8Hj/twtWKsMJXNY0xI8w==} 651 | engines: {node: ^14.18.0 || >=16.0.0} 652 | hasBin: true 653 | peerDependencies: 654 | '@types/node': '>= 14' 655 | less: '*' 656 | lightningcss: ^1.21.0 657 | sass: '*' 658 | stylus: '*' 659 | sugarss: '*' 660 | terser: ^5.4.0 661 | peerDependenciesMeta: 662 | '@types/node': 663 | optional: true 664 | less: 665 | optional: true 666 | lightningcss: 667 | optional: true 668 | sass: 669 | optional: true 670 | stylus: 671 | optional: true 672 | sugarss: 673 | optional: true 674 | terser: 675 | optional: true 676 | dependencies: 677 | '@types/node': 20.4.3 678 | esbuild: 0.18.15 679 | postcss: 8.4.31 680 | rollup: 3.29.4 681 | optionalDependencies: 682 | fsevents: 2.3.2 683 | dev: true 684 | 685 | /vitest@0.33.0: 686 | resolution: {integrity: sha512-1CxaugJ50xskkQ0e969R/hW47za4YXDUfWJDxip1hwbnhUjYolpfUn2AMOulqG/Dtd9WYAtkHmM/m3yKVrEejQ==} 687 | engines: {node: '>=v14.18.0'} 688 | hasBin: true 689 | peerDependencies: 690 | '@edge-runtime/vm': '*' 691 | '@vitest/browser': '*' 692 | '@vitest/ui': '*' 693 | happy-dom: '*' 694 | jsdom: '*' 695 | playwright: '*' 696 | safaridriver: '*' 697 | webdriverio: '*' 698 | peerDependenciesMeta: 699 | '@edge-runtime/vm': 700 | optional: true 701 | '@vitest/browser': 702 | optional: true 703 | '@vitest/ui': 704 | optional: true 705 | happy-dom: 706 | optional: true 707 | jsdom: 708 | optional: true 709 | playwright: 710 | optional: true 711 | safaridriver: 712 | optional: true 713 | webdriverio: 714 | optional: true 715 | dependencies: 716 | '@types/chai': 4.3.5 717 | '@types/chai-subset': 1.3.3 718 | '@types/node': 20.4.3 719 | '@vitest/expect': 0.33.0 720 | '@vitest/runner': 0.33.0 721 | '@vitest/snapshot': 0.33.0 722 | '@vitest/spy': 0.33.0 723 | '@vitest/utils': 0.33.0 724 | acorn: 8.10.0 725 | acorn-walk: 8.2.0 726 | cac: 6.7.14 727 | chai: 4.3.7 728 | debug: 4.3.4 729 | local-pkg: 0.4.3 730 | magic-string: 0.30.1 731 | pathe: 1.1.1 732 | picocolors: 1.0.0 733 | std-env: 3.3.3 734 | strip-literal: 1.0.1 735 | tinybench: 2.5.0 736 | tinypool: 0.6.0 737 | vite: 4.5.2(@types/node@20.4.3) 738 | vite-node: 0.33.0(@types/node@20.4.3) 739 | why-is-node-running: 2.2.2 740 | transitivePeerDependencies: 741 | - less 742 | - lightningcss 743 | - sass 744 | - stylus 745 | - sugarss 746 | - supports-color 747 | - terser 748 | dev: true 749 | 750 | /why-is-node-running@2.2.2: 751 | resolution: {integrity: sha512-6tSwToZxTOcotxHeA+qGCq1mVzKR3CwcJGmVcY+QE8SHy6TnpFnh8PAvPNHYr7EcuVeG0QSMxtYCuO1ta/G/oA==} 752 | engines: {node: '>=8'} 753 | hasBin: true 754 | dependencies: 755 | siginfo: 2.0.0 756 | stackback: 0.0.2 757 | dev: true 758 | 759 | /yocto-queue@1.0.0: 760 | resolution: {integrity: sha512-9bnSc/HEW2uRy67wc+T8UwauLuPJVn28jb+GtJY16iiKWyvmYJRXVT4UamsAEGQfPohgr2q4Tq0sQbQlxTfi1g==} 761 | engines: {node: '>=12.20'} 762 | dev: true 763 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # emoji-cheat-sheet 2 | 3 | [![Up to Date](https://github.com/ikatyang/emoji-cheat-sheet/workflows/Up%20to%20Date/badge.svg)](https://github.com/ikatyang/emoji-cheat-sheet/actions?query=workflow%3A%22Up+to+Date%22) 4 | 5 | This cheat sheet is automatically generated from [GitHub Emoji API](https://api.github.com/emojis) and [Unicode Full Emoji List](https://unicode.org/emoji/charts/full-emoji-list.html). 6 | 7 | ## Table of Contents 8 | 9 | - [Smileys & Emotion](#smileys--emotion) 10 | - [People & Body](#people--body) 11 | - [Animals & Nature](#animals--nature) 12 | - [Food & Drink](#food--drink) 13 | - [Travel & Places](#travel--places) 14 | - [Activities](#activities) 15 | - [Objects](#objects) 16 | - [Symbols](#symbols) 17 | - [Flags](#flags) 18 | - [GitHub Custom Emoji](#github-custom-emoji) 19 | 20 | ### Smileys & Emotion 21 | 22 | - [Face Smiling](#face-smiling) 23 | - [Face Affection](#face-affection) 24 | - [Face Tongue](#face-tongue) 25 | - [Face Hand](#face-hand) 26 | - [Face Neutral Skeptical](#face-neutral-skeptical) 27 | - [Face Sleepy](#face-sleepy) 28 | - [Face Unwell](#face-unwell) 29 | - [Face Hat](#face-hat) 30 | - [Face Glasses](#face-glasses) 31 | - [Face Concerned](#face-concerned) 32 | - [Face Negative](#face-negative) 33 | - [Face Costume](#face-costume) 34 | - [Cat Face](#cat-face) 35 | - [Monkey Face](#monkey-face) 36 | - [Heart](#heart) 37 | - [Emotion](#emotion) 38 | 39 | #### Face Smiling 40 | 41 | | | ico | shortcode | ico | shortcode | | 42 | | - | :-: | - | :-: | - | - | 43 | | [top](#smileys--emotion) | :grinning: | `:grinning:` | :smiley: | `:smiley:` | [top](#table-of-contents) | 44 | | [top](#smileys--emotion) | :smile: | `:smile:` | :grin: | `:grin:` | [top](#table-of-contents) | 45 | | [top](#smileys--emotion) | :laughing: | `:laughing:`
`:satisfied:` | :sweat_smile: | `:sweat_smile:` | [top](#table-of-contents) | 46 | | [top](#smileys--emotion) | :rofl: | `:rofl:` | :joy: | `:joy:` | [top](#table-of-contents) | 47 | | [top](#smileys--emotion) | :slightly_smiling_face: | `:slightly_smiling_face:` | :upside_down_face: | `:upside_down_face:` | [top](#table-of-contents) | 48 | | [top](#smileys--emotion) | :wink: | `:wink:` | :blush: | `:blush:` | [top](#table-of-contents) | 49 | | [top](#smileys--emotion) | :innocent: | `:innocent:` | | | [top](#table-of-contents) | 50 | 51 | #### Face Affection 52 | 53 | | | ico | shortcode | ico | shortcode | | 54 | | - | :-: | - | :-: | - | - | 55 | | [top](#smileys--emotion) | :smiling_face_with_three_hearts: | `:smiling_face_with_three_hearts:` | :heart_eyes: | `:heart_eyes:` | [top](#table-of-contents) | 56 | | [top](#smileys--emotion) | :star_struck: | `:star_struck:` | :kissing_heart: | `:kissing_heart:` | [top](#table-of-contents) | 57 | | [top](#smileys--emotion) | :kissing: | `:kissing:` | :relaxed: | `:relaxed:` | [top](#table-of-contents) | 58 | | [top](#smileys--emotion) | :kissing_closed_eyes: | `:kissing_closed_eyes:` | :kissing_smiling_eyes: | `:kissing_smiling_eyes:` | [top](#table-of-contents) | 59 | | [top](#smileys--emotion) | :smiling_face_with_tear: | `:smiling_face_with_tear:` | | | [top](#table-of-contents) | 60 | 61 | #### Face Tongue 62 | 63 | | | ico | shortcode | ico | shortcode | | 64 | | - | :-: | - | :-: | - | - | 65 | | [top](#smileys--emotion) | :yum: | `:yum:` | :stuck_out_tongue: | `:stuck_out_tongue:` | [top](#table-of-contents) | 66 | | [top](#smileys--emotion) | :stuck_out_tongue_winking_eye: | `:stuck_out_tongue_winking_eye:` | :zany_face: | `:zany_face:` | [top](#table-of-contents) | 67 | | [top](#smileys--emotion) | :stuck_out_tongue_closed_eyes: | `:stuck_out_tongue_closed_eyes:` | :money_mouth_face: | `:money_mouth_face:` | [top](#table-of-contents) | 68 | 69 | #### Face Hand 70 | 71 | | | ico | shortcode | ico | shortcode | | 72 | | - | :-: | - | :-: | - | - | 73 | | [top](#smileys--emotion) | :hugs: | `:hugs:` | :hand_over_mouth: | `:hand_over_mouth:` | [top](#table-of-contents) | 74 | | [top](#smileys--emotion) | :shushing_face: | `:shushing_face:` | :thinking: | `:thinking:` | [top](#table-of-contents) | 75 | 76 | #### Face Neutral Skeptical 77 | 78 | | | ico | shortcode | ico | shortcode | | 79 | | - | :-: | - | :-: | - | - | 80 | | [top](#smileys--emotion) | :zipper_mouth_face: | `:zipper_mouth_face:` | :raised_eyebrow: | `:raised_eyebrow:` | [top](#table-of-contents) | 81 | | [top](#smileys--emotion) | :neutral_face: | `:neutral_face:` | :expressionless: | `:expressionless:` | [top](#table-of-contents) | 82 | | [top](#smileys--emotion) | :no_mouth: | `:no_mouth:` | :face_in_clouds: | `:face_in_clouds:` | [top](#table-of-contents) | 83 | | [top](#smileys--emotion) | :smirk: | `:smirk:` | :unamused: | `:unamused:` | [top](#table-of-contents) | 84 | | [top](#smileys--emotion) | :roll_eyes: | `:roll_eyes:` | :grimacing: | `:grimacing:` | [top](#table-of-contents) | 85 | | [top](#smileys--emotion) | :face_exhaling: | `:face_exhaling:` | :lying_face: | `:lying_face:` | [top](#table-of-contents) | 86 | 87 | #### Face Sleepy 88 | 89 | | | ico | shortcode | ico | shortcode | | 90 | | - | :-: | - | :-: | - | - | 91 | | [top](#smileys--emotion) | :relieved: | `:relieved:` | :pensive: | `:pensive:` | [top](#table-of-contents) | 92 | | [top](#smileys--emotion) | :sleepy: | `:sleepy:` | :drooling_face: | `:drooling_face:` | [top](#table-of-contents) | 93 | | [top](#smileys--emotion) | :sleeping: | `:sleeping:` | | | [top](#table-of-contents) | 94 | 95 | #### Face Unwell 96 | 97 | | | ico | shortcode | ico | shortcode | | 98 | | - | :-: | - | :-: | - | - | 99 | | [top](#smileys--emotion) | :mask: | `:mask:` | :face_with_thermometer: | `:face_with_thermometer:` | [top](#table-of-contents) | 100 | | [top](#smileys--emotion) | :face_with_head_bandage: | `:face_with_head_bandage:` | :nauseated_face: | `:nauseated_face:` | [top](#table-of-contents) | 101 | | [top](#smileys--emotion) | :vomiting_face: | `:vomiting_face:` | :sneezing_face: | `:sneezing_face:` | [top](#table-of-contents) | 102 | | [top](#smileys--emotion) | :hot_face: | `:hot_face:` | :cold_face: | `:cold_face:` | [top](#table-of-contents) | 103 | | [top](#smileys--emotion) | :woozy_face: | `:woozy_face:` | :dizzy_face: | `:dizzy_face:` | [top](#table-of-contents) | 104 | | [top](#smileys--emotion) | :face_with_spiral_eyes: | `:face_with_spiral_eyes:` | :exploding_head: | `:exploding_head:` | [top](#table-of-contents) | 105 | 106 | #### Face Hat 107 | 108 | | | ico | shortcode | ico | shortcode | | 109 | | - | :-: | - | :-: | - | - | 110 | | [top](#smileys--emotion) | :cowboy_hat_face: | `:cowboy_hat_face:` | :partying_face: | `:partying_face:` | [top](#table-of-contents) | 111 | | [top](#smileys--emotion) | :disguised_face: | `:disguised_face:` | | | [top](#table-of-contents) | 112 | 113 | #### Face Glasses 114 | 115 | | | ico | shortcode | ico | shortcode | | 116 | | - | :-: | - | :-: | - | - | 117 | | [top](#smileys--emotion) | :sunglasses: | `:sunglasses:` | :nerd_face: | `:nerd_face:` | [top](#table-of-contents) | 118 | | [top](#smileys--emotion) | :monocle_face: | `:monocle_face:` | | | [top](#table-of-contents) | 119 | 120 | #### Face Concerned 121 | 122 | | | ico | shortcode | ico | shortcode | | 123 | | - | :-: | - | :-: | - | - | 124 | | [top](#smileys--emotion) | :confused: | `:confused:` | :worried: | `:worried:` | [top](#table-of-contents) | 125 | | [top](#smileys--emotion) | :slightly_frowning_face: | `:slightly_frowning_face:` | :frowning_face: | `:frowning_face:` | [top](#table-of-contents) | 126 | | [top](#smileys--emotion) | :open_mouth: | `:open_mouth:` | :hushed: | `:hushed:` | [top](#table-of-contents) | 127 | | [top](#smileys--emotion) | :astonished: | `:astonished:` | :flushed: | `:flushed:` | [top](#table-of-contents) | 128 | | [top](#smileys--emotion) | :pleading_face: | `:pleading_face:` | :frowning: | `:frowning:` | [top](#table-of-contents) | 129 | | [top](#smileys--emotion) | :anguished: | `:anguished:` | :fearful: | `:fearful:` | [top](#table-of-contents) | 130 | | [top](#smileys--emotion) | :cold_sweat: | `:cold_sweat:` | :disappointed_relieved: | `:disappointed_relieved:` | [top](#table-of-contents) | 131 | | [top](#smileys--emotion) | :cry: | `:cry:` | :sob: | `:sob:` | [top](#table-of-contents) | 132 | | [top](#smileys--emotion) | :scream: | `:scream:` | :confounded: | `:confounded:` | [top](#table-of-contents) | 133 | | [top](#smileys--emotion) | :persevere: | `:persevere:` | :disappointed: | `:disappointed:` | [top](#table-of-contents) | 134 | | [top](#smileys--emotion) | :sweat: | `:sweat:` | :weary: | `:weary:` | [top](#table-of-contents) | 135 | | [top](#smileys--emotion) | :tired_face: | `:tired_face:` | :yawning_face: | `:yawning_face:` | [top](#table-of-contents) | 136 | 137 | #### Face Negative 138 | 139 | | | ico | shortcode | ico | shortcode | | 140 | | - | :-: | - | :-: | - | - | 141 | | [top](#smileys--emotion) | :triumph: | `:triumph:` | :pout: | `:pout:`
`:rage:` | [top](#table-of-contents) | 142 | | [top](#smileys--emotion) | :angry: | `:angry:` | :cursing_face: | `:cursing_face:` | [top](#table-of-contents) | 143 | | [top](#smileys--emotion) | :smiling_imp: | `:smiling_imp:` | :imp: | `:imp:` | [top](#table-of-contents) | 144 | | [top](#smileys--emotion) | :skull: | `:skull:` | :skull_and_crossbones: | `:skull_and_crossbones:` | [top](#table-of-contents) | 145 | 146 | #### Face Costume 147 | 148 | | | ico | shortcode | ico | shortcode | | 149 | | - | :-: | - | :-: | - | - | 150 | | [top](#smileys--emotion) | :hankey: | `:hankey:`
`:poop:`
`:shit:` | :clown_face: | `:clown_face:` | [top](#table-of-contents) | 151 | | [top](#smileys--emotion) | :japanese_ogre: | `:japanese_ogre:` | :japanese_goblin: | `:japanese_goblin:` | [top](#table-of-contents) | 152 | | [top](#smileys--emotion) | :ghost: | `:ghost:` | :alien: | `:alien:` | [top](#table-of-contents) | 153 | | [top](#smileys--emotion) | :space_invader: | `:space_invader:` | :robot: | `:robot:` | [top](#table-of-contents) | 154 | 155 | #### Cat Face 156 | 157 | | | ico | shortcode | ico | shortcode | | 158 | | - | :-: | - | :-: | - | - | 159 | | [top](#smileys--emotion) | :smiley_cat: | `:smiley_cat:` | :smile_cat: | `:smile_cat:` | [top](#table-of-contents) | 160 | | [top](#smileys--emotion) | :joy_cat: | `:joy_cat:` | :heart_eyes_cat: | `:heart_eyes_cat:` | [top](#table-of-contents) | 161 | | [top](#smileys--emotion) | :smirk_cat: | `:smirk_cat:` | :kissing_cat: | `:kissing_cat:` | [top](#table-of-contents) | 162 | | [top](#smileys--emotion) | :scream_cat: | `:scream_cat:` | :crying_cat_face: | `:crying_cat_face:` | [top](#table-of-contents) | 163 | | [top](#smileys--emotion) | :pouting_cat: | `:pouting_cat:` | | | [top](#table-of-contents) | 164 | 165 | #### Monkey Face 166 | 167 | | | ico | shortcode | ico | shortcode | | 168 | | - | :-: | - | :-: | - | - | 169 | | [top](#smileys--emotion) | :see_no_evil: | `:see_no_evil:` | :hear_no_evil: | `:hear_no_evil:` | [top](#table-of-contents) | 170 | | [top](#smileys--emotion) | :speak_no_evil: | `:speak_no_evil:` | | | [top](#table-of-contents) | 171 | 172 | #### Heart 173 | 174 | | | ico | shortcode | ico | shortcode | | 175 | | - | :-: | - | :-: | - | - | 176 | | [top](#smileys--emotion) | :love_letter: | `:love_letter:` | :cupid: | `:cupid:` | [top](#table-of-contents) | 177 | | [top](#smileys--emotion) | :gift_heart: | `:gift_heart:` | :sparkling_heart: | `:sparkling_heart:` | [top](#table-of-contents) | 178 | | [top](#smileys--emotion) | :heartpulse: | `:heartpulse:` | :heartbeat: | `:heartbeat:` | [top](#table-of-contents) | 179 | | [top](#smileys--emotion) | :revolving_hearts: | `:revolving_hearts:` | :two_hearts: | `:two_hearts:` | [top](#table-of-contents) | 180 | | [top](#smileys--emotion) | :heart_decoration: | `:heart_decoration:` | :heavy_heart_exclamation: | `:heavy_heart_exclamation:` | [top](#table-of-contents) | 181 | | [top](#smileys--emotion) | :broken_heart: | `:broken_heart:` | :heart_on_fire: | `:heart_on_fire:` | [top](#table-of-contents) | 182 | | [top](#smileys--emotion) | :mending_heart: | `:mending_heart:` | :heart: | `:heart:` | [top](#table-of-contents) | 183 | | [top](#smileys--emotion) | :orange_heart: | `:orange_heart:` | :yellow_heart: | `:yellow_heart:` | [top](#table-of-contents) | 184 | | [top](#smileys--emotion) | :green_heart: | `:green_heart:` | :blue_heart: | `:blue_heart:` | [top](#table-of-contents) | 185 | | [top](#smileys--emotion) | :purple_heart: | `:purple_heart:` | :brown_heart: | `:brown_heart:` | [top](#table-of-contents) | 186 | | [top](#smileys--emotion) | :black_heart: | `:black_heart:` | :white_heart: | `:white_heart:` | [top](#table-of-contents) | 187 | 188 | #### Emotion 189 | 190 | | | ico | shortcode | ico | shortcode | | 191 | | - | :-: | - | :-: | - | - | 192 | | [top](#smileys--emotion) | :kiss: | `:kiss:` | :100: | `:100:` | [top](#table-of-contents) | 193 | | [top](#smileys--emotion) | :anger: | `:anger:` | :boom: | `:boom:`
`:collision:` | [top](#table-of-contents) | 194 | | [top](#smileys--emotion) | :dizzy: | `:dizzy:` | :sweat_drops: | `:sweat_drops:` | [top](#table-of-contents) | 195 | | [top](#smileys--emotion) | :dash: | `:dash:` | :hole: | `:hole:` | [top](#table-of-contents) | 196 | | [top](#smileys--emotion) | :speech_balloon: | `:speech_balloon:` | :eye_speech_bubble: | `:eye_speech_bubble:` | [top](#table-of-contents) | 197 | | [top](#smileys--emotion) | :left_speech_bubble: | `:left_speech_bubble:` | :right_anger_bubble: | `:right_anger_bubble:` | [top](#table-of-contents) | 198 | | [top](#smileys--emotion) | :thought_balloon: | `:thought_balloon:` | :zzz: | `:zzz:` | [top](#table-of-contents) | 199 | 200 | ### People & Body 201 | 202 | - [Hand Fingers Open](#hand-fingers-open) 203 | - [Hand Fingers Partial](#hand-fingers-partial) 204 | - [Hand Single Finger](#hand-single-finger) 205 | - [Hand Fingers Closed](#hand-fingers-closed) 206 | - [Hands](#hands) 207 | - [Hand Prop](#hand-prop) 208 | - [Body Parts](#body-parts) 209 | - [Person](#person) 210 | - [Person Gesture](#person-gesture) 211 | - [Person Role](#person-role) 212 | - [Person Fantasy](#person-fantasy) 213 | - [Person Activity](#person-activity) 214 | - [Person Sport](#person-sport) 215 | - [Person Resting](#person-resting) 216 | - [Family](#family) 217 | - [Person Symbol](#person-symbol) 218 | 219 | #### Hand Fingers Open 220 | 221 | | | ico | shortcode | ico | shortcode | | 222 | | - | :-: | - | :-: | - | - | 223 | | [top](#people--body) | :wave: | `:wave:` | :raised_back_of_hand: | `:raised_back_of_hand:` | [top](#table-of-contents) | 224 | | [top](#people--body) | :raised_hand_with_fingers_splayed: | `:raised_hand_with_fingers_splayed:` | :hand: | `:hand:`
`:raised_hand:` | [top](#table-of-contents) | 225 | | [top](#people--body) | :vulcan_salute: | `:vulcan_salute:` | | | [top](#table-of-contents) | 226 | 227 | #### Hand Fingers Partial 228 | 229 | | | ico | shortcode | ico | shortcode | | 230 | | - | :-: | - | :-: | - | - | 231 | | [top](#people--body) | :ok_hand: | `:ok_hand:` | :pinched_fingers: | `:pinched_fingers:` | [top](#table-of-contents) | 232 | | [top](#people--body) | :pinching_hand: | `:pinching_hand:` | :v: | `:v:` | [top](#table-of-contents) | 233 | | [top](#people--body) | :crossed_fingers: | `:crossed_fingers:` | :love_you_gesture: | `:love_you_gesture:` | [top](#table-of-contents) | 234 | | [top](#people--body) | :metal: | `:metal:` | :call_me_hand: | `:call_me_hand:` | [top](#table-of-contents) | 235 | 236 | #### Hand Single Finger 237 | 238 | | | ico | shortcode | ico | shortcode | | 239 | | - | :-: | - | :-: | - | - | 240 | | [top](#people--body) | :point_left: | `:point_left:` | :point_right: | `:point_right:` | [top](#table-of-contents) | 241 | | [top](#people--body) | :point_up_2: | `:point_up_2:` | :fu: | `:fu:`
`:middle_finger:` | [top](#table-of-contents) | 242 | | [top](#people--body) | :point_down: | `:point_down:` | :point_up: | `:point_up:` | [top](#table-of-contents) | 243 | 244 | #### Hand Fingers Closed 245 | 246 | | | ico | shortcode | ico | shortcode | | 247 | | - | :-: | - | :-: | - | - | 248 | | [top](#people--body) | :+1: | `:+1:`
`:thumbsup:` | :-1: | `:-1:`
`:thumbsdown:` | [top](#table-of-contents) | 249 | | [top](#people--body) | :fist: | `:fist:`
`:fist_raised:` | :facepunch: | `:facepunch:`
`:fist_oncoming:`
`:punch:` | [top](#table-of-contents) | 250 | | [top](#people--body) | :fist_left: | `:fist_left:` | :fist_right: | `:fist_right:` | [top](#table-of-contents) | 251 | 252 | #### Hands 253 | 254 | | | ico | shortcode | ico | shortcode | | 255 | | - | :-: | - | :-: | - | - | 256 | | [top](#people--body) | :clap: | `:clap:` | :raised_hands: | `:raised_hands:` | [top](#table-of-contents) | 257 | | [top](#people--body) | :open_hands: | `:open_hands:` | :palms_up_together: | `:palms_up_together:` | [top](#table-of-contents) | 258 | | [top](#people--body) | :handshake: | `:handshake:` | :pray: | `:pray:` | [top](#table-of-contents) | 259 | 260 | #### Hand Prop 261 | 262 | | | ico | shortcode | ico | shortcode | | 263 | | - | :-: | - | :-: | - | - | 264 | | [top](#people--body) | :writing_hand: | `:writing_hand:` | :nail_care: | `:nail_care:` | [top](#table-of-contents) | 265 | | [top](#people--body) | :selfie: | `:selfie:` | | | [top](#table-of-contents) | 266 | 267 | #### Body Parts 268 | 269 | | | ico | shortcode | ico | shortcode | | 270 | | - | :-: | - | :-: | - | - | 271 | | [top](#people--body) | :muscle: | `:muscle:` | :mechanical_arm: | `:mechanical_arm:` | [top](#table-of-contents) | 272 | | [top](#people--body) | :mechanical_leg: | `:mechanical_leg:` | :leg: | `:leg:` | [top](#table-of-contents) | 273 | | [top](#people--body) | :foot: | `:foot:` | :ear: | `:ear:` | [top](#table-of-contents) | 274 | | [top](#people--body) | :ear_with_hearing_aid: | `:ear_with_hearing_aid:` | :nose: | `:nose:` | [top](#table-of-contents) | 275 | | [top](#people--body) | :brain: | `:brain:` | :anatomical_heart: | `:anatomical_heart:` | [top](#table-of-contents) | 276 | | [top](#people--body) | :lungs: | `:lungs:` | :tooth: | `:tooth:` | [top](#table-of-contents) | 277 | | [top](#people--body) | :bone: | `:bone:` | :eyes: | `:eyes:` | [top](#table-of-contents) | 278 | | [top](#people--body) | :eye: | `:eye:` | :tongue: | `:tongue:` | [top](#table-of-contents) | 279 | | [top](#people--body) | :lips: | `:lips:` | | | [top](#table-of-contents) | 280 | 281 | #### Person 282 | 283 | | | ico | shortcode | ico | shortcode | | 284 | | - | :-: | - | :-: | - | - | 285 | | [top](#people--body) | :baby: | `:baby:` | :child: | `:child:` | [top](#table-of-contents) | 286 | | [top](#people--body) | :boy: | `:boy:` | :girl: | `:girl:` | [top](#table-of-contents) | 287 | | [top](#people--body) | :adult: | `:adult:` | :blond_haired_person: | `:blond_haired_person:` | [top](#table-of-contents) | 288 | | [top](#people--body) | :man: | `:man:` | :bearded_person: | `:bearded_person:` | [top](#table-of-contents) | 289 | | [top](#people--body) | :man_beard: | `:man_beard:` | :woman_beard: | `:woman_beard:` | [top](#table-of-contents) | 290 | | [top](#people--body) | :red_haired_man: | `:red_haired_man:` | :curly_haired_man: | `:curly_haired_man:` | [top](#table-of-contents) | 291 | | [top](#people--body) | :white_haired_man: | `:white_haired_man:` | :bald_man: | `:bald_man:` | [top](#table-of-contents) | 292 | | [top](#people--body) | :woman: | `:woman:` | :red_haired_woman: | `:red_haired_woman:` | [top](#table-of-contents) | 293 | | [top](#people--body) | :person_red_hair: | `:person_red_hair:` | :curly_haired_woman: | `:curly_haired_woman:` | [top](#table-of-contents) | 294 | | [top](#people--body) | :person_curly_hair: | `:person_curly_hair:` | :white_haired_woman: | `:white_haired_woman:` | [top](#table-of-contents) | 295 | | [top](#people--body) | :person_white_hair: | `:person_white_hair:` | :bald_woman: | `:bald_woman:` | [top](#table-of-contents) | 296 | | [top](#people--body) | :person_bald: | `:person_bald:` | :blond_haired_woman: | `:blond_haired_woman:`
`:blonde_woman:` | [top](#table-of-contents) | 297 | | [top](#people--body) | :blond_haired_man: | `:blond_haired_man:` | :older_adult: | `:older_adult:` | [top](#table-of-contents) | 298 | | [top](#people--body) | :older_man: | `:older_man:` | :older_woman: | `:older_woman:` | [top](#table-of-contents) | 299 | 300 | #### Person Gesture 301 | 302 | | | ico | shortcode | ico | shortcode | | 303 | | - | :-: | - | :-: | - | - | 304 | | [top](#people--body) | :frowning_person: | `:frowning_person:` | :frowning_man: | `:frowning_man:` | [top](#table-of-contents) | 305 | | [top](#people--body) | :frowning_woman: | `:frowning_woman:` | :pouting_face: | `:pouting_face:` | [top](#table-of-contents) | 306 | | [top](#people--body) | :pouting_man: | `:pouting_man:` | :pouting_woman: | `:pouting_woman:` | [top](#table-of-contents) | 307 | | [top](#people--body) | :no_good: | `:no_good:` | :ng_man: | `:ng_man:`
`:no_good_man:` | [top](#table-of-contents) | 308 | | [top](#people--body) | :ng_woman: | `:ng_woman:`
`:no_good_woman:` | :ok_person: | `:ok_person:` | [top](#table-of-contents) | 309 | | [top](#people--body) | :ok_man: | `:ok_man:` | :ok_woman: | `:ok_woman:` | [top](#table-of-contents) | 310 | | [top](#people--body) | :information_desk_person: | `:information_desk_person:`
`:tipping_hand_person:` | :sassy_man: | `:sassy_man:`
`:tipping_hand_man:` | [top](#table-of-contents) | 311 | | [top](#people--body) | :sassy_woman: | `:sassy_woman:`
`:tipping_hand_woman:` | :raising_hand: | `:raising_hand:` | [top](#table-of-contents) | 312 | | [top](#people--body) | :raising_hand_man: | `:raising_hand_man:` | :raising_hand_woman: | `:raising_hand_woman:` | [top](#table-of-contents) | 313 | | [top](#people--body) | :deaf_person: | `:deaf_person:` | :deaf_man: | `:deaf_man:` | [top](#table-of-contents) | 314 | | [top](#people--body) | :deaf_woman: | `:deaf_woman:` | :bow: | `:bow:` | [top](#table-of-contents) | 315 | | [top](#people--body) | :bowing_man: | `:bowing_man:` | :bowing_woman: | `:bowing_woman:` | [top](#table-of-contents) | 316 | | [top](#people--body) | :facepalm: | `:facepalm:` | :man_facepalming: | `:man_facepalming:` | [top](#table-of-contents) | 317 | | [top](#people--body) | :woman_facepalming: | `:woman_facepalming:` | :shrug: | `:shrug:` | [top](#table-of-contents) | 318 | | [top](#people--body) | :man_shrugging: | `:man_shrugging:` | :woman_shrugging: | `:woman_shrugging:` | [top](#table-of-contents) | 319 | 320 | #### Person Role 321 | 322 | | | ico | shortcode | ico | shortcode | | 323 | | - | :-: | - | :-: | - | - | 324 | | [top](#people--body) | :health_worker: | `:health_worker:` | :man_health_worker: | `:man_health_worker:` | [top](#table-of-contents) | 325 | | [top](#people--body) | :woman_health_worker: | `:woman_health_worker:` | :student: | `:student:` | [top](#table-of-contents) | 326 | | [top](#people--body) | :man_student: | `:man_student:` | :woman_student: | `:woman_student:` | [top](#table-of-contents) | 327 | | [top](#people--body) | :teacher: | `:teacher:` | :man_teacher: | `:man_teacher:` | [top](#table-of-contents) | 328 | | [top](#people--body) | :woman_teacher: | `:woman_teacher:` | :judge: | `:judge:` | [top](#table-of-contents) | 329 | | [top](#people--body) | :man_judge: | `:man_judge:` | :woman_judge: | `:woman_judge:` | [top](#table-of-contents) | 330 | | [top](#people--body) | :farmer: | `:farmer:` | :man_farmer: | `:man_farmer:` | [top](#table-of-contents) | 331 | | [top](#people--body) | :woman_farmer: | `:woman_farmer:` | :cook: | `:cook:` | [top](#table-of-contents) | 332 | | [top](#people--body) | :man_cook: | `:man_cook:` | :woman_cook: | `:woman_cook:` | [top](#table-of-contents) | 333 | | [top](#people--body) | :mechanic: | `:mechanic:` | :man_mechanic: | `:man_mechanic:` | [top](#table-of-contents) | 334 | | [top](#people--body) | :woman_mechanic: | `:woman_mechanic:` | :factory_worker: | `:factory_worker:` | [top](#table-of-contents) | 335 | | [top](#people--body) | :man_factory_worker: | `:man_factory_worker:` | :woman_factory_worker: | `:woman_factory_worker:` | [top](#table-of-contents) | 336 | | [top](#people--body) | :office_worker: | `:office_worker:` | :man_office_worker: | `:man_office_worker:` | [top](#table-of-contents) | 337 | | [top](#people--body) | :woman_office_worker: | `:woman_office_worker:` | :scientist: | `:scientist:` | [top](#table-of-contents) | 338 | | [top](#people--body) | :man_scientist: | `:man_scientist:` | :woman_scientist: | `:woman_scientist:` | [top](#table-of-contents) | 339 | | [top](#people--body) | :technologist: | `:technologist:` | :man_technologist: | `:man_technologist:` | [top](#table-of-contents) | 340 | | [top](#people--body) | :woman_technologist: | `:woman_technologist:` | :singer: | `:singer:` | [top](#table-of-contents) | 341 | | [top](#people--body) | :man_singer: | `:man_singer:` | :woman_singer: | `:woman_singer:` | [top](#table-of-contents) | 342 | | [top](#people--body) | :artist: | `:artist:` | :man_artist: | `:man_artist:` | [top](#table-of-contents) | 343 | | [top](#people--body) | :woman_artist: | `:woman_artist:` | :pilot: | `:pilot:` | [top](#table-of-contents) | 344 | | [top](#people--body) | :man_pilot: | `:man_pilot:` | :woman_pilot: | `:woman_pilot:` | [top](#table-of-contents) | 345 | | [top](#people--body) | :astronaut: | `:astronaut:` | :man_astronaut: | `:man_astronaut:` | [top](#table-of-contents) | 346 | | [top](#people--body) | :woman_astronaut: | `:woman_astronaut:` | :firefighter: | `:firefighter:` | [top](#table-of-contents) | 347 | | [top](#people--body) | :man_firefighter: | `:man_firefighter:` | :woman_firefighter: | `:woman_firefighter:` | [top](#table-of-contents) | 348 | | [top](#people--body) | :cop: | `:cop:`
`:police_officer:` | :policeman: | `:policeman:` | [top](#table-of-contents) | 349 | | [top](#people--body) | :policewoman: | `:policewoman:` | :detective: | `:detective:` | [top](#table-of-contents) | 350 | | [top](#people--body) | :male_detective: | `:male_detective:` | :female_detective: | `:female_detective:` | [top](#table-of-contents) | 351 | | [top](#people--body) | :guard: | `:guard:` | :guardsman: | `:guardsman:` | [top](#table-of-contents) | 352 | | [top](#people--body) | :guardswoman: | `:guardswoman:` | :ninja: | `:ninja:` | [top](#table-of-contents) | 353 | | [top](#people--body) | :construction_worker: | `:construction_worker:` | :construction_worker_man: | `:construction_worker_man:` | [top](#table-of-contents) | 354 | | [top](#people--body) | :construction_worker_woman: | `:construction_worker_woman:` | :prince: | `:prince:` | [top](#table-of-contents) | 355 | | [top](#people--body) | :princess: | `:princess:` | :person_with_turban: | `:person_with_turban:` | [top](#table-of-contents) | 356 | | [top](#people--body) | :man_with_turban: | `:man_with_turban:` | :woman_with_turban: | `:woman_with_turban:` | [top](#table-of-contents) | 357 | | [top](#people--body) | :man_with_gua_pi_mao: | `:man_with_gua_pi_mao:` | :woman_with_headscarf: | `:woman_with_headscarf:` | [top](#table-of-contents) | 358 | | [top](#people--body) | :person_in_tuxedo: | `:person_in_tuxedo:` | :man_in_tuxedo: | `:man_in_tuxedo:` | [top](#table-of-contents) | 359 | | [top](#people--body) | :woman_in_tuxedo: | `:woman_in_tuxedo:` | :person_with_veil: | `:person_with_veil:` | [top](#table-of-contents) | 360 | | [top](#people--body) | :man_with_veil: | `:man_with_veil:` | :bride_with_veil: | `:bride_with_veil:`
`:woman_with_veil:` | [top](#table-of-contents) | 361 | | [top](#people--body) | :pregnant_woman: | `:pregnant_woman:` | :breast_feeding: | `:breast_feeding:` | [top](#table-of-contents) | 362 | | [top](#people--body) | :woman_feeding_baby: | `:woman_feeding_baby:` | :man_feeding_baby: | `:man_feeding_baby:` | [top](#table-of-contents) | 363 | | [top](#people--body) | :person_feeding_baby: | `:person_feeding_baby:` | | | [top](#table-of-contents) | 364 | 365 | #### Person Fantasy 366 | 367 | | | ico | shortcode | ico | shortcode | | 368 | | - | :-: | - | :-: | - | - | 369 | | [top](#people--body) | :angel: | `:angel:` | :santa: | `:santa:` | [top](#table-of-contents) | 370 | | [top](#people--body) | :mrs_claus: | `:mrs_claus:` | :mx_claus: | `:mx_claus:` | [top](#table-of-contents) | 371 | | [top](#people--body) | :superhero: | `:superhero:` | :superhero_man: | `:superhero_man:` | [top](#table-of-contents) | 372 | | [top](#people--body) | :superhero_woman: | `:superhero_woman:` | :supervillain: | `:supervillain:` | [top](#table-of-contents) | 373 | | [top](#people--body) | :supervillain_man: | `:supervillain_man:` | :supervillain_woman: | `:supervillain_woman:` | [top](#table-of-contents) | 374 | | [top](#people--body) | :mage: | `:mage:` | :mage_man: | `:mage_man:` | [top](#table-of-contents) | 375 | | [top](#people--body) | :mage_woman: | `:mage_woman:` | :fairy: | `:fairy:` | [top](#table-of-contents) | 376 | | [top](#people--body) | :fairy_man: | `:fairy_man:` | :fairy_woman: | `:fairy_woman:` | [top](#table-of-contents) | 377 | | [top](#people--body) | :vampire: | `:vampire:` | :vampire_man: | `:vampire_man:` | [top](#table-of-contents) | 378 | | [top](#people--body) | :vampire_woman: | `:vampire_woman:` | :merperson: | `:merperson:` | [top](#table-of-contents) | 379 | | [top](#people--body) | :merman: | `:merman:` | :mermaid: | `:mermaid:` | [top](#table-of-contents) | 380 | | [top](#people--body) | :elf: | `:elf:` | :elf_man: | `:elf_man:` | [top](#table-of-contents) | 381 | | [top](#people--body) | :elf_woman: | `:elf_woman:` | :genie: | `:genie:` | [top](#table-of-contents) | 382 | | [top](#people--body) | :genie_man: | `:genie_man:` | :genie_woman: | `:genie_woman:` | [top](#table-of-contents) | 383 | | [top](#people--body) | :zombie: | `:zombie:` | :zombie_man: | `:zombie_man:` | [top](#table-of-contents) | 384 | | [top](#people--body) | :zombie_woman: | `:zombie_woman:` | | | [top](#table-of-contents) | 385 | 386 | #### Person Activity 387 | 388 | | | ico | shortcode | ico | shortcode | | 389 | | - | :-: | - | :-: | - | - | 390 | | [top](#people--body) | :massage: | `:massage:` | :massage_man: | `:massage_man:` | [top](#table-of-contents) | 391 | | [top](#people--body) | :massage_woman: | `:massage_woman:` | :haircut: | `:haircut:` | [top](#table-of-contents) | 392 | | [top](#people--body) | :haircut_man: | `:haircut_man:` | :haircut_woman: | `:haircut_woman:` | [top](#table-of-contents) | 393 | | [top](#people--body) | :walking: | `:walking:` | :walking_man: | `:walking_man:` | [top](#table-of-contents) | 394 | | [top](#people--body) | :walking_woman: | `:walking_woman:` | :standing_person: | `:standing_person:` | [top](#table-of-contents) | 395 | | [top](#people--body) | :standing_man: | `:standing_man:` | :standing_woman: | `:standing_woman:` | [top](#table-of-contents) | 396 | | [top](#people--body) | :kneeling_person: | `:kneeling_person:` | :kneeling_man: | `:kneeling_man:` | [top](#table-of-contents) | 397 | | [top](#people--body) | :kneeling_woman: | `:kneeling_woman:` | :person_with_probing_cane: | `:person_with_probing_cane:` | [top](#table-of-contents) | 398 | | [top](#people--body) | :man_with_probing_cane: | `:man_with_probing_cane:` | :woman_with_probing_cane: | `:woman_with_probing_cane:` | [top](#table-of-contents) | 399 | | [top](#people--body) | :person_in_motorized_wheelchair: | `:person_in_motorized_wheelchair:` | :man_in_motorized_wheelchair: | `:man_in_motorized_wheelchair:` | [top](#table-of-contents) | 400 | | [top](#people--body) | :woman_in_motorized_wheelchair: | `:woman_in_motorized_wheelchair:` | :person_in_manual_wheelchair: | `:person_in_manual_wheelchair:` | [top](#table-of-contents) | 401 | | [top](#people--body) | :man_in_manual_wheelchair: | `:man_in_manual_wheelchair:` | :woman_in_manual_wheelchair: | `:woman_in_manual_wheelchair:` | [top](#table-of-contents) | 402 | | [top](#people--body) | :runner: | `:runner:`
`:running:` | :running_man: | `:running_man:` | [top](#table-of-contents) | 403 | | [top](#people--body) | :running_woman: | `:running_woman:` | :dancer: | `:dancer:`
`:woman_dancing:` | [top](#table-of-contents) | 404 | | [top](#people--body) | :man_dancing: | `:man_dancing:` | :business_suit_levitating: | `:business_suit_levitating:` | [top](#table-of-contents) | 405 | | [top](#people--body) | :dancers: | `:dancers:` | :dancing_men: | `:dancing_men:` | [top](#table-of-contents) | 406 | | [top](#people--body) | :dancing_women: | `:dancing_women:` | :sauna_person: | `:sauna_person:` | [top](#table-of-contents) | 407 | | [top](#people--body) | :sauna_man: | `:sauna_man:` | :sauna_woman: | `:sauna_woman:` | [top](#table-of-contents) | 408 | | [top](#people--body) | :climbing: | `:climbing:` | :climbing_man: | `:climbing_man:` | [top](#table-of-contents) | 409 | | [top](#people--body) | :climbing_woman: | `:climbing_woman:` | | | [top](#table-of-contents) | 410 | 411 | #### Person Sport 412 | 413 | | | ico | shortcode | ico | shortcode | | 414 | | - | :-: | - | :-: | - | - | 415 | | [top](#people--body) | :person_fencing: | `:person_fencing:` | :horse_racing: | `:horse_racing:` | [top](#table-of-contents) | 416 | | [top](#people--body) | :skier: | `:skier:` | :snowboarder: | `:snowboarder:` | [top](#table-of-contents) | 417 | | [top](#people--body) | :golfing: | `:golfing:` | :golfing_man: | `:golfing_man:` | [top](#table-of-contents) | 418 | | [top](#people--body) | :golfing_woman: | `:golfing_woman:` | :surfer: | `:surfer:` | [top](#table-of-contents) | 419 | | [top](#people--body) | :surfing_man: | `:surfing_man:` | :surfing_woman: | `:surfing_woman:` | [top](#table-of-contents) | 420 | | [top](#people--body) | :rowboat: | `:rowboat:` | :rowing_man: | `:rowing_man:` | [top](#table-of-contents) | 421 | | [top](#people--body) | :rowing_woman: | `:rowing_woman:` | :swimmer: | `:swimmer:` | [top](#table-of-contents) | 422 | | [top](#people--body) | :swimming_man: | `:swimming_man:` | :swimming_woman: | `:swimming_woman:` | [top](#table-of-contents) | 423 | | [top](#people--body) | :bouncing_ball_person: | `:bouncing_ball_person:` | :basketball_man: | `:basketball_man:`
`:bouncing_ball_man:` | [top](#table-of-contents) | 424 | | [top](#people--body) | :basketball_woman: | `:basketball_woman:`
`:bouncing_ball_woman:` | :weight_lifting: | `:weight_lifting:` | [top](#table-of-contents) | 425 | | [top](#people--body) | :weight_lifting_man: | `:weight_lifting_man:` | :weight_lifting_woman: | `:weight_lifting_woman:` | [top](#table-of-contents) | 426 | | [top](#people--body) | :bicyclist: | `:bicyclist:` | :biking_man: | `:biking_man:` | [top](#table-of-contents) | 427 | | [top](#people--body) | :biking_woman: | `:biking_woman:` | :mountain_bicyclist: | `:mountain_bicyclist:` | [top](#table-of-contents) | 428 | | [top](#people--body) | :mountain_biking_man: | `:mountain_biking_man:` | :mountain_biking_woman: | `:mountain_biking_woman:` | [top](#table-of-contents) | 429 | | [top](#people--body) | :cartwheeling: | `:cartwheeling:` | :man_cartwheeling: | `:man_cartwheeling:` | [top](#table-of-contents) | 430 | | [top](#people--body) | :woman_cartwheeling: | `:woman_cartwheeling:` | :wrestling: | `:wrestling:` | [top](#table-of-contents) | 431 | | [top](#people--body) | :men_wrestling: | `:men_wrestling:` | :women_wrestling: | `:women_wrestling:` | [top](#table-of-contents) | 432 | | [top](#people--body) | :water_polo: | `:water_polo:` | :man_playing_water_polo: | `:man_playing_water_polo:` | [top](#table-of-contents) | 433 | | [top](#people--body) | :woman_playing_water_polo: | `:woman_playing_water_polo:` | :handball_person: | `:handball_person:` | [top](#table-of-contents) | 434 | | [top](#people--body) | :man_playing_handball: | `:man_playing_handball:` | :woman_playing_handball: | `:woman_playing_handball:` | [top](#table-of-contents) | 435 | | [top](#people--body) | :juggling_person: | `:juggling_person:` | :man_juggling: | `:man_juggling:` | [top](#table-of-contents) | 436 | | [top](#people--body) | :woman_juggling: | `:woman_juggling:` | | | [top](#table-of-contents) | 437 | 438 | #### Person Resting 439 | 440 | | | ico | shortcode | ico | shortcode | | 441 | | - | :-: | - | :-: | - | - | 442 | | [top](#people--body) | :lotus_position: | `:lotus_position:` | :lotus_position_man: | `:lotus_position_man:` | [top](#table-of-contents) | 443 | | [top](#people--body) | :lotus_position_woman: | `:lotus_position_woman:` | :bath: | `:bath:` | [top](#table-of-contents) | 444 | | [top](#people--body) | :sleeping_bed: | `:sleeping_bed:` | | | [top](#table-of-contents) | 445 | 446 | #### Family 447 | 448 | | | ico | shortcode | ico | shortcode | | 449 | | - | :-: | - | :-: | - | - | 450 | | [top](#people--body) | :people_holding_hands: | `:people_holding_hands:` | :two_women_holding_hands: | `:two_women_holding_hands:` | [top](#table-of-contents) | 451 | | [top](#people--body) | :couple: | `:couple:` | :two_men_holding_hands: | `:two_men_holding_hands:` | [top](#table-of-contents) | 452 | | [top](#people--body) | :couplekiss: | `:couplekiss:` | :couplekiss_man_woman: | `:couplekiss_man_woman:` | [top](#table-of-contents) | 453 | | [top](#people--body) | :couplekiss_man_man: | `:couplekiss_man_man:` | :couplekiss_woman_woman: | `:couplekiss_woman_woman:` | [top](#table-of-contents) | 454 | | [top](#people--body) | :couple_with_heart: | `:couple_with_heart:` | :couple_with_heart_woman_man: | `:couple_with_heart_woman_man:` | [top](#table-of-contents) | 455 | | [top](#people--body) | :couple_with_heart_man_man: | `:couple_with_heart_man_man:` | :couple_with_heart_woman_woman: | `:couple_with_heart_woman_woman:` | [top](#table-of-contents) | 456 | | [top](#people--body) | :family_man_woman_boy: | `:family_man_woman_boy:` | :family_man_woman_girl: | `:family_man_woman_girl:` | [top](#table-of-contents) | 457 | | [top](#people--body) | :family_man_woman_girl_boy: | `:family_man_woman_girl_boy:` | :family_man_woman_boy_boy: | `:family_man_woman_boy_boy:` | [top](#table-of-contents) | 458 | | [top](#people--body) | :family_man_woman_girl_girl: | `:family_man_woman_girl_girl:` | :family_man_man_boy: | `:family_man_man_boy:` | [top](#table-of-contents) | 459 | | [top](#people--body) | :family_man_man_girl: | `:family_man_man_girl:` | :family_man_man_girl_boy: | `:family_man_man_girl_boy:` | [top](#table-of-contents) | 460 | | [top](#people--body) | :family_man_man_boy_boy: | `:family_man_man_boy_boy:` | :family_man_man_girl_girl: | `:family_man_man_girl_girl:` | [top](#table-of-contents) | 461 | | [top](#people--body) | :family_woman_woman_boy: | `:family_woman_woman_boy:` | :family_woman_woman_girl: | `:family_woman_woman_girl:` | [top](#table-of-contents) | 462 | | [top](#people--body) | :family_woman_woman_girl_boy: | `:family_woman_woman_girl_boy:` | :family_woman_woman_boy_boy: | `:family_woman_woman_boy_boy:` | [top](#table-of-contents) | 463 | | [top](#people--body) | :family_woman_woman_girl_girl: | `:family_woman_woman_girl_girl:` | :family_man_boy: | `:family_man_boy:` | [top](#table-of-contents) | 464 | | [top](#people--body) | :family_man_boy_boy: | `:family_man_boy_boy:` | :family_man_girl: | `:family_man_girl:` | [top](#table-of-contents) | 465 | | [top](#people--body) | :family_man_girl_boy: | `:family_man_girl_boy:` | :family_man_girl_girl: | `:family_man_girl_girl:` | [top](#table-of-contents) | 466 | | [top](#people--body) | :family_woman_boy: | `:family_woman_boy:` | :family_woman_boy_boy: | `:family_woman_boy_boy:` | [top](#table-of-contents) | 467 | | [top](#people--body) | :family_woman_girl: | `:family_woman_girl:` | :family_woman_girl_boy: | `:family_woman_girl_boy:` | [top](#table-of-contents) | 468 | | [top](#people--body) | :family_woman_girl_girl: | `:family_woman_girl_girl:` | | | [top](#table-of-contents) | 469 | 470 | #### Person Symbol 471 | 472 | | | ico | shortcode | ico | shortcode | | 473 | | - | :-: | - | :-: | - | - | 474 | | [top](#people--body) | :speaking_head: | `:speaking_head:` | :bust_in_silhouette: | `:bust_in_silhouette:` | [top](#table-of-contents) | 475 | | [top](#people--body) | :busts_in_silhouette: | `:busts_in_silhouette:` | :people_hugging: | `:people_hugging:` | [top](#table-of-contents) | 476 | | [top](#people--body) | :family: | `:family:` | :footprints: | `:footprints:` | [top](#table-of-contents) | 477 | 478 | ### Animals & Nature 479 | 480 | - [Animal Mammal](#animal-mammal) 481 | - [Animal Bird](#animal-bird) 482 | - [Animal Amphibian](#animal-amphibian) 483 | - [Animal Reptile](#animal-reptile) 484 | - [Animal Marine](#animal-marine) 485 | - [Animal Bug](#animal-bug) 486 | - [Plant Flower](#plant-flower) 487 | - [Plant Other](#plant-other) 488 | 489 | #### Animal Mammal 490 | 491 | | | ico | shortcode | ico | shortcode | | 492 | | - | :-: | - | :-: | - | - | 493 | | [top](#animals--nature) | :monkey_face: | `:monkey_face:` | :monkey: | `:monkey:` | [top](#table-of-contents) | 494 | | [top](#animals--nature) | :gorilla: | `:gorilla:` | :orangutan: | `:orangutan:` | [top](#table-of-contents) | 495 | | [top](#animals--nature) | :dog: | `:dog:` | :dog2: | `:dog2:` | [top](#table-of-contents) | 496 | | [top](#animals--nature) | :guide_dog: | `:guide_dog:` | :service_dog: | `:service_dog:` | [top](#table-of-contents) | 497 | | [top](#animals--nature) | :poodle: | `:poodle:` | :wolf: | `:wolf:` | [top](#table-of-contents) | 498 | | [top](#animals--nature) | :fox_face: | `:fox_face:` | :raccoon: | `:raccoon:` | [top](#table-of-contents) | 499 | | [top](#animals--nature) | :cat: | `:cat:` | :cat2: | `:cat2:` | [top](#table-of-contents) | 500 | | [top](#animals--nature) | :black_cat: | `:black_cat:` | :lion: | `:lion:` | [top](#table-of-contents) | 501 | | [top](#animals--nature) | :tiger: | `:tiger:` | :tiger2: | `:tiger2:` | [top](#table-of-contents) | 502 | | [top](#animals--nature) | :leopard: | `:leopard:` | :horse: | `:horse:` | [top](#table-of-contents) | 503 | | [top](#animals--nature) | :racehorse: | `:racehorse:` | :unicorn: | `:unicorn:` | [top](#table-of-contents) | 504 | | [top](#animals--nature) | :zebra: | `:zebra:` | :deer: | `:deer:` | [top](#table-of-contents) | 505 | | [top](#animals--nature) | :bison: | `:bison:` | :cow: | `:cow:` | [top](#table-of-contents) | 506 | | [top](#animals--nature) | :ox: | `:ox:` | :water_buffalo: | `:water_buffalo:` | [top](#table-of-contents) | 507 | | [top](#animals--nature) | :cow2: | `:cow2:` | :pig: | `:pig:` | [top](#table-of-contents) | 508 | | [top](#animals--nature) | :pig2: | `:pig2:` | :boar: | `:boar:` | [top](#table-of-contents) | 509 | | [top](#animals--nature) | :pig_nose: | `:pig_nose:` | :ram: | `:ram:` | [top](#table-of-contents) | 510 | | [top](#animals--nature) | :sheep: | `:sheep:` | :goat: | `:goat:` | [top](#table-of-contents) | 511 | | [top](#animals--nature) | :dromedary_camel: | `:dromedary_camel:` | :camel: | `:camel:` | [top](#table-of-contents) | 512 | | [top](#animals--nature) | :llama: | `:llama:` | :giraffe: | `:giraffe:` | [top](#table-of-contents) | 513 | | [top](#animals--nature) | :elephant: | `:elephant:` | :mammoth: | `:mammoth:` | [top](#table-of-contents) | 514 | | [top](#animals--nature) | :rhinoceros: | `:rhinoceros:` | :hippopotamus: | `:hippopotamus:` | [top](#table-of-contents) | 515 | | [top](#animals--nature) | :mouse: | `:mouse:` | :mouse2: | `:mouse2:` | [top](#table-of-contents) | 516 | | [top](#animals--nature) | :rat: | `:rat:` | :hamster: | `:hamster:` | [top](#table-of-contents) | 517 | | [top](#animals--nature) | :rabbit: | `:rabbit:` | :rabbit2: | `:rabbit2:` | [top](#table-of-contents) | 518 | | [top](#animals--nature) | :chipmunk: | `:chipmunk:` | :beaver: | `:beaver:` | [top](#table-of-contents) | 519 | | [top](#animals--nature) | :hedgehog: | `:hedgehog:` | :bat: | `:bat:` | [top](#table-of-contents) | 520 | | [top](#animals--nature) | :bear: | `:bear:` | :polar_bear: | `:polar_bear:` | [top](#table-of-contents) | 521 | | [top](#animals--nature) | :koala: | `:koala:` | :panda_face: | `:panda_face:` | [top](#table-of-contents) | 522 | | [top](#animals--nature) | :sloth: | `:sloth:` | :otter: | `:otter:` | [top](#table-of-contents) | 523 | | [top](#animals--nature) | :skunk: | `:skunk:` | :kangaroo: | `:kangaroo:` | [top](#table-of-contents) | 524 | | [top](#animals--nature) | :badger: | `:badger:` | :feet: | `:feet:`
`:paw_prints:` | [top](#table-of-contents) | 525 | 526 | #### Animal Bird 527 | 528 | | | ico | shortcode | ico | shortcode | | 529 | | - | :-: | - | :-: | - | - | 530 | | [top](#animals--nature) | :turkey: | `:turkey:` | :chicken: | `:chicken:` | [top](#table-of-contents) | 531 | | [top](#animals--nature) | :rooster: | `:rooster:` | :hatching_chick: | `:hatching_chick:` | [top](#table-of-contents) | 532 | | [top](#animals--nature) | :baby_chick: | `:baby_chick:` | :hatched_chick: | `:hatched_chick:` | [top](#table-of-contents) | 533 | | [top](#animals--nature) | :bird: | `:bird:` | :penguin: | `:penguin:` | [top](#table-of-contents) | 534 | | [top](#animals--nature) | :dove: | `:dove:` | :eagle: | `:eagle:` | [top](#table-of-contents) | 535 | | [top](#animals--nature) | :duck: | `:duck:` | :swan: | `:swan:` | [top](#table-of-contents) | 536 | | [top](#animals--nature) | :owl: | `:owl:` | :dodo: | `:dodo:` | [top](#table-of-contents) | 537 | | [top](#animals--nature) | :feather: | `:feather:` | :flamingo: | `:flamingo:` | [top](#table-of-contents) | 538 | | [top](#animals--nature) | :peacock: | `:peacock:` | :parrot: | `:parrot:` | [top](#table-of-contents) | 539 | 540 | #### Animal Amphibian 541 | 542 | | | ico | shortcode | | 543 | | - | :-: | - | - | 544 | | [top](#animals--nature) | :frog: | `:frog:` | [top](#table-of-contents) | 545 | 546 | #### Animal Reptile 547 | 548 | | | ico | shortcode | ico | shortcode | | 549 | | - | :-: | - | :-: | - | - | 550 | | [top](#animals--nature) | :crocodile: | `:crocodile:` | :turtle: | `:turtle:` | [top](#table-of-contents) | 551 | | [top](#animals--nature) | :lizard: | `:lizard:` | :snake: | `:snake:` | [top](#table-of-contents) | 552 | | [top](#animals--nature) | :dragon_face: | `:dragon_face:` | :dragon: | `:dragon:` | [top](#table-of-contents) | 553 | | [top](#animals--nature) | :sauropod: | `:sauropod:` | :t-rex: | `:t-rex:` | [top](#table-of-contents) | 554 | 555 | #### Animal Marine 556 | 557 | | | ico | shortcode | ico | shortcode | | 558 | | - | :-: | - | :-: | - | - | 559 | | [top](#animals--nature) | :whale: | `:whale:` | :whale2: | `:whale2:` | [top](#table-of-contents) | 560 | | [top](#animals--nature) | :dolphin: | `:dolphin:`
`:flipper:` | :seal: | `:seal:` | [top](#table-of-contents) | 561 | | [top](#animals--nature) | :fish: | `:fish:` | :tropical_fish: | `:tropical_fish:` | [top](#table-of-contents) | 562 | | [top](#animals--nature) | :blowfish: | `:blowfish:` | :shark: | `:shark:` | [top](#table-of-contents) | 563 | | [top](#animals--nature) | :octopus: | `:octopus:` | :shell: | `:shell:` | [top](#table-of-contents) | 564 | 565 | #### Animal Bug 566 | 567 | | | ico | shortcode | ico | shortcode | | 568 | | - | :-: | - | :-: | - | - | 569 | | [top](#animals--nature) | :snail: | `:snail:` | :butterfly: | `:butterfly:` | [top](#table-of-contents) | 570 | | [top](#animals--nature) | :bug: | `:bug:` | :ant: | `:ant:` | [top](#table-of-contents) | 571 | | [top](#animals--nature) | :bee: | `:bee:`
`:honeybee:` | :beetle: | `:beetle:` | [top](#table-of-contents) | 572 | | [top](#animals--nature) | :lady_beetle: | `:lady_beetle:` | :cricket: | `:cricket:` | [top](#table-of-contents) | 573 | | [top](#animals--nature) | :cockroach: | `:cockroach:` | :spider: | `:spider:` | [top](#table-of-contents) | 574 | | [top](#animals--nature) | :spider_web: | `:spider_web:` | :scorpion: | `:scorpion:` | [top](#table-of-contents) | 575 | | [top](#animals--nature) | :mosquito: | `:mosquito:` | :fly: | `:fly:` | [top](#table-of-contents) | 576 | | [top](#animals--nature) | :worm: | `:worm:` | :microbe: | `:microbe:` | [top](#table-of-contents) | 577 | 578 | #### Plant Flower 579 | 580 | | | ico | shortcode | ico | shortcode | | 581 | | - | :-: | - | :-: | - | - | 582 | | [top](#animals--nature) | :bouquet: | `:bouquet:` | :cherry_blossom: | `:cherry_blossom:` | [top](#table-of-contents) | 583 | | [top](#animals--nature) | :white_flower: | `:white_flower:` | :rosette: | `:rosette:` | [top](#table-of-contents) | 584 | | [top](#animals--nature) | :rose: | `:rose:` | :wilted_flower: | `:wilted_flower:` | [top](#table-of-contents) | 585 | | [top](#animals--nature) | :hibiscus: | `:hibiscus:` | :sunflower: | `:sunflower:` | [top](#table-of-contents) | 586 | | [top](#animals--nature) | :blossom: | `:blossom:` | :tulip: | `:tulip:` | [top](#table-of-contents) | 587 | 588 | #### Plant Other 589 | 590 | | | ico | shortcode | ico | shortcode | | 591 | | - | :-: | - | :-: | - | - | 592 | | [top](#animals--nature) | :seedling: | `:seedling:` | :potted_plant: | `:potted_plant:` | [top](#table-of-contents) | 593 | | [top](#animals--nature) | :evergreen_tree: | `:evergreen_tree:` | :deciduous_tree: | `:deciduous_tree:` | [top](#table-of-contents) | 594 | | [top](#animals--nature) | :palm_tree: | `:palm_tree:` | :cactus: | `:cactus:` | [top](#table-of-contents) | 595 | | [top](#animals--nature) | :ear_of_rice: | `:ear_of_rice:` | :herb: | `:herb:` | [top](#table-of-contents) | 596 | | [top](#animals--nature) | :shamrock: | `:shamrock:` | :four_leaf_clover: | `:four_leaf_clover:` | [top](#table-of-contents) | 597 | | [top](#animals--nature) | :maple_leaf: | `:maple_leaf:` | :fallen_leaf: | `:fallen_leaf:` | [top](#table-of-contents) | 598 | | [top](#animals--nature) | :leaves: | `:leaves:` | :mushroom: | `:mushroom:` | [top](#table-of-contents) | 599 | 600 | ### Food & Drink 601 | 602 | - [Food Fruit](#food-fruit) 603 | - [Food Vegetable](#food-vegetable) 604 | - [Food Prepared](#food-prepared) 605 | - [Food Asian](#food-asian) 606 | - [Food Marine](#food-marine) 607 | - [Food Sweet](#food-sweet) 608 | - [Drink](#drink) 609 | - [Dishware](#dishware) 610 | 611 | #### Food Fruit 612 | 613 | | | ico | shortcode | ico | shortcode | | 614 | | - | :-: | - | :-: | - | - | 615 | | [top](#food--drink) | :grapes: | `:grapes:` | :melon: | `:melon:` | [top](#table-of-contents) | 616 | | [top](#food--drink) | :watermelon: | `:watermelon:` | :mandarin: | `:mandarin:`
`:orange:`
`:tangerine:` | [top](#table-of-contents) | 617 | | [top](#food--drink) | :lemon: | `:lemon:` | :banana: | `:banana:` | [top](#table-of-contents) | 618 | | [top](#food--drink) | :pineapple: | `:pineapple:` | :mango: | `:mango:` | [top](#table-of-contents) | 619 | | [top](#food--drink) | :apple: | `:apple:` | :green_apple: | `:green_apple:` | [top](#table-of-contents) | 620 | | [top](#food--drink) | :pear: | `:pear:` | :peach: | `:peach:` | [top](#table-of-contents) | 621 | | [top](#food--drink) | :cherries: | `:cherries:` | :strawberry: | `:strawberry:` | [top](#table-of-contents) | 622 | | [top](#food--drink) | :blueberries: | `:blueberries:` | :kiwi_fruit: | `:kiwi_fruit:` | [top](#table-of-contents) | 623 | | [top](#food--drink) | :tomato: | `:tomato:` | :olive: | `:olive:` | [top](#table-of-contents) | 624 | | [top](#food--drink) | :coconut: | `:coconut:` | | | [top](#table-of-contents) | 625 | 626 | #### Food Vegetable 627 | 628 | | | ico | shortcode | ico | shortcode | | 629 | | - | :-: | - | :-: | - | - | 630 | | [top](#food--drink) | :avocado: | `:avocado:` | :eggplant: | `:eggplant:` | [top](#table-of-contents) | 631 | | [top](#food--drink) | :potato: | `:potato:` | :carrot: | `:carrot:` | [top](#table-of-contents) | 632 | | [top](#food--drink) | :corn: | `:corn:` | :hot_pepper: | `:hot_pepper:` | [top](#table-of-contents) | 633 | | [top](#food--drink) | :bell_pepper: | `:bell_pepper:` | :cucumber: | `:cucumber:` | [top](#table-of-contents) | 634 | | [top](#food--drink) | :leafy_green: | `:leafy_green:` | :broccoli: | `:broccoli:` | [top](#table-of-contents) | 635 | | [top](#food--drink) | :garlic: | `:garlic:` | :onion: | `:onion:` | [top](#table-of-contents) | 636 | | [top](#food--drink) | :peanuts: | `:peanuts:` | :chestnut: | `:chestnut:` | [top](#table-of-contents) | 637 | 638 | #### Food Prepared 639 | 640 | | | ico | shortcode | ico | shortcode | | 641 | | - | :-: | - | :-: | - | - | 642 | | [top](#food--drink) | :bread: | `:bread:` | :croissant: | `:croissant:` | [top](#table-of-contents) | 643 | | [top](#food--drink) | :baguette_bread: | `:baguette_bread:` | :flatbread: | `:flatbread:` | [top](#table-of-contents) | 644 | | [top](#food--drink) | :pretzel: | `:pretzel:` | :bagel: | `:bagel:` | [top](#table-of-contents) | 645 | | [top](#food--drink) | :pancakes: | `:pancakes:` | :waffle: | `:waffle:` | [top](#table-of-contents) | 646 | | [top](#food--drink) | :cheese: | `:cheese:` | :meat_on_bone: | `:meat_on_bone:` | [top](#table-of-contents) | 647 | | [top](#food--drink) | :poultry_leg: | `:poultry_leg:` | :cut_of_meat: | `:cut_of_meat:` | [top](#table-of-contents) | 648 | | [top](#food--drink) | :bacon: | `:bacon:` | :hamburger: | `:hamburger:` | [top](#table-of-contents) | 649 | | [top](#food--drink) | :fries: | `:fries:` | :pizza: | `:pizza:` | [top](#table-of-contents) | 650 | | [top](#food--drink) | :hotdog: | `:hotdog:` | :sandwich: | `:sandwich:` | [top](#table-of-contents) | 651 | | [top](#food--drink) | :taco: | `:taco:` | :burrito: | `:burrito:` | [top](#table-of-contents) | 652 | | [top](#food--drink) | :tamale: | `:tamale:` | :stuffed_flatbread: | `:stuffed_flatbread:` | [top](#table-of-contents) | 653 | | [top](#food--drink) | :falafel: | `:falafel:` | :egg: | `:egg:` | [top](#table-of-contents) | 654 | | [top](#food--drink) | :fried_egg: | `:fried_egg:` | :shallow_pan_of_food: | `:shallow_pan_of_food:` | [top](#table-of-contents) | 655 | | [top](#food--drink) | :stew: | `:stew:` | :fondue: | `:fondue:` | [top](#table-of-contents) | 656 | | [top](#food--drink) | :bowl_with_spoon: | `:bowl_with_spoon:` | :green_salad: | `:green_salad:` | [top](#table-of-contents) | 657 | | [top](#food--drink) | :popcorn: | `:popcorn:` | :butter: | `:butter:` | [top](#table-of-contents) | 658 | | [top](#food--drink) | :salt: | `:salt:` | :canned_food: | `:canned_food:` | [top](#table-of-contents) | 659 | 660 | #### Food Asian 661 | 662 | | | ico | shortcode | ico | shortcode | | 663 | | - | :-: | - | :-: | - | - | 664 | | [top](#food--drink) | :bento: | `:bento:` | :rice_cracker: | `:rice_cracker:` | [top](#table-of-contents) | 665 | | [top](#food--drink) | :rice_ball: | `:rice_ball:` | :rice: | `:rice:` | [top](#table-of-contents) | 666 | | [top](#food--drink) | :curry: | `:curry:` | :ramen: | `:ramen:` | [top](#table-of-contents) | 667 | | [top](#food--drink) | :spaghetti: | `:spaghetti:` | :sweet_potato: | `:sweet_potato:` | [top](#table-of-contents) | 668 | | [top](#food--drink) | :oden: | `:oden:` | :sushi: | `:sushi:` | [top](#table-of-contents) | 669 | | [top](#food--drink) | :fried_shrimp: | `:fried_shrimp:` | :fish_cake: | `:fish_cake:` | [top](#table-of-contents) | 670 | | [top](#food--drink) | :moon_cake: | `:moon_cake:` | :dango: | `:dango:` | [top](#table-of-contents) | 671 | | [top](#food--drink) | :dumpling: | `:dumpling:` | :fortune_cookie: | `:fortune_cookie:` | [top](#table-of-contents) | 672 | | [top](#food--drink) | :takeout_box: | `:takeout_box:` | | | [top](#table-of-contents) | 673 | 674 | #### Food Marine 675 | 676 | | | ico | shortcode | ico | shortcode | | 677 | | - | :-: | - | :-: | - | - | 678 | | [top](#food--drink) | :crab: | `:crab:` | :lobster: | `:lobster:` | [top](#table-of-contents) | 679 | | [top](#food--drink) | :shrimp: | `:shrimp:` | :squid: | `:squid:` | [top](#table-of-contents) | 680 | | [top](#food--drink) | :oyster: | `:oyster:` | | | [top](#table-of-contents) | 681 | 682 | #### Food Sweet 683 | 684 | | | ico | shortcode | ico | shortcode | | 685 | | - | :-: | - | :-: | - | - | 686 | | [top](#food--drink) | :icecream: | `:icecream:` | :shaved_ice: | `:shaved_ice:` | [top](#table-of-contents) | 687 | | [top](#food--drink) | :ice_cream: | `:ice_cream:` | :doughnut: | `:doughnut:` | [top](#table-of-contents) | 688 | | [top](#food--drink) | :cookie: | `:cookie:` | :birthday: | `:birthday:` | [top](#table-of-contents) | 689 | | [top](#food--drink) | :cake: | `:cake:` | :cupcake: | `:cupcake:` | [top](#table-of-contents) | 690 | | [top](#food--drink) | :pie: | `:pie:` | :chocolate_bar: | `:chocolate_bar:` | [top](#table-of-contents) | 691 | | [top](#food--drink) | :candy: | `:candy:` | :lollipop: | `:lollipop:` | [top](#table-of-contents) | 692 | | [top](#food--drink) | :custard: | `:custard:` | :honey_pot: | `:honey_pot:` | [top](#table-of-contents) | 693 | 694 | #### Drink 695 | 696 | | | ico | shortcode | ico | shortcode | | 697 | | - | :-: | - | :-: | - | - | 698 | | [top](#food--drink) | :baby_bottle: | `:baby_bottle:` | :milk_glass: | `:milk_glass:` | [top](#table-of-contents) | 699 | | [top](#food--drink) | :coffee: | `:coffee:` | :teapot: | `:teapot:` | [top](#table-of-contents) | 700 | | [top](#food--drink) | :tea: | `:tea:` | :sake: | `:sake:` | [top](#table-of-contents) | 701 | | [top](#food--drink) | :champagne: | `:champagne:` | :wine_glass: | `:wine_glass:` | [top](#table-of-contents) | 702 | | [top](#food--drink) | :cocktail: | `:cocktail:` | :tropical_drink: | `:tropical_drink:` | [top](#table-of-contents) | 703 | | [top](#food--drink) | :beer: | `:beer:` | :beers: | `:beers:` | [top](#table-of-contents) | 704 | | [top](#food--drink) | :clinking_glasses: | `:clinking_glasses:` | :tumbler_glass: | `:tumbler_glass:` | [top](#table-of-contents) | 705 | | [top](#food--drink) | :cup_with_straw: | `:cup_with_straw:` | :bubble_tea: | `:bubble_tea:` | [top](#table-of-contents) | 706 | | [top](#food--drink) | :beverage_box: | `:beverage_box:` | :mate: | `:mate:` | [top](#table-of-contents) | 707 | | [top](#food--drink) | :ice_cube: | `:ice_cube:` | | | [top](#table-of-contents) | 708 | 709 | #### Dishware 710 | 711 | | | ico | shortcode | ico | shortcode | | 712 | | - | :-: | - | :-: | - | - | 713 | | [top](#food--drink) | :chopsticks: | `:chopsticks:` | :plate_with_cutlery: | `:plate_with_cutlery:` | [top](#table-of-contents) | 714 | | [top](#food--drink) | :fork_and_knife: | `:fork_and_knife:` | :spoon: | `:spoon:` | [top](#table-of-contents) | 715 | | [top](#food--drink) | :hocho: | `:hocho:`
`:knife:` | :amphora: | `:amphora:` | [top](#table-of-contents) | 716 | 717 | ### Travel & Places 718 | 719 | - [Place Map](#place-map) 720 | - [Place Geographic](#place-geographic) 721 | - [Place Building](#place-building) 722 | - [Place Religious](#place-religious) 723 | - [Place Other](#place-other) 724 | - [Transport Ground](#transport-ground) 725 | - [Transport Water](#transport-water) 726 | - [Transport Air](#transport-air) 727 | - [Hotel](#hotel) 728 | - [Time](#time) 729 | - [Sky & Weather](#sky--weather) 730 | 731 | #### Place Map 732 | 733 | | | ico | shortcode | ico | shortcode | | 734 | | - | :-: | - | :-: | - | - | 735 | | [top](#travel--places) | :earth_africa: | `:earth_africa:` | :earth_americas: | `:earth_americas:` | [top](#table-of-contents) | 736 | | [top](#travel--places) | :earth_asia: | `:earth_asia:` | :globe_with_meridians: | `:globe_with_meridians:` | [top](#table-of-contents) | 737 | | [top](#travel--places) | :world_map: | `:world_map:` | :japan: | `:japan:` | [top](#table-of-contents) | 738 | | [top](#travel--places) | :compass: | `:compass:` | | | [top](#table-of-contents) | 739 | 740 | #### Place Geographic 741 | 742 | | | ico | shortcode | ico | shortcode | | 743 | | - | :-: | - | :-: | - | - | 744 | | [top](#travel--places) | :mountain_snow: | `:mountain_snow:` | :mountain: | `:mountain:` | [top](#table-of-contents) | 745 | | [top](#travel--places) | :volcano: | `:volcano:` | :mount_fuji: | `:mount_fuji:` | [top](#table-of-contents) | 746 | | [top](#travel--places) | :camping: | `:camping:` | :beach_umbrella: | `:beach_umbrella:` | [top](#table-of-contents) | 747 | | [top](#travel--places) | :desert: | `:desert:` | :desert_island: | `:desert_island:` | [top](#table-of-contents) | 748 | | [top](#travel--places) | :national_park: | `:national_park:` | | | [top](#table-of-contents) | 749 | 750 | #### Place Building 751 | 752 | | | ico | shortcode | ico | shortcode | | 753 | | - | :-: | - | :-: | - | - | 754 | | [top](#travel--places) | :stadium: | `:stadium:` | :classical_building: | `:classical_building:` | [top](#table-of-contents) | 755 | | [top](#travel--places) | :building_construction: | `:building_construction:` | :bricks: | `:bricks:` | [top](#table-of-contents) | 756 | | [top](#travel--places) | :rock: | `:rock:` | :wood: | `:wood:` | [top](#table-of-contents) | 757 | | [top](#travel--places) | :hut: | `:hut:` | :houses: | `:houses:` | [top](#table-of-contents) | 758 | | [top](#travel--places) | :derelict_house: | `:derelict_house:` | :house: | `:house:` | [top](#table-of-contents) | 759 | | [top](#travel--places) | :house_with_garden: | `:house_with_garden:` | :office: | `:office:` | [top](#table-of-contents) | 760 | | [top](#travel--places) | :post_office: | `:post_office:` | :european_post_office: | `:european_post_office:` | [top](#table-of-contents) | 761 | | [top](#travel--places) | :hospital: | `:hospital:` | :bank: | `:bank:` | [top](#table-of-contents) | 762 | | [top](#travel--places) | :hotel: | `:hotel:` | :love_hotel: | `:love_hotel:` | [top](#table-of-contents) | 763 | | [top](#travel--places) | :convenience_store: | `:convenience_store:` | :school: | `:school:` | [top](#table-of-contents) | 764 | | [top](#travel--places) | :department_store: | `:department_store:` | :factory: | `:factory:` | [top](#table-of-contents) | 765 | | [top](#travel--places) | :japanese_castle: | `:japanese_castle:` | :european_castle: | `:european_castle:` | [top](#table-of-contents) | 766 | | [top](#travel--places) | :wedding: | `:wedding:` | :tokyo_tower: | `:tokyo_tower:` | [top](#table-of-contents) | 767 | | [top](#travel--places) | :statue_of_liberty: | `:statue_of_liberty:` | | | [top](#table-of-contents) | 768 | 769 | #### Place Religious 770 | 771 | | | ico | shortcode | ico | shortcode | | 772 | | - | :-: | - | :-: | - | - | 773 | | [top](#travel--places) | :church: | `:church:` | :mosque: | `:mosque:` | [top](#table-of-contents) | 774 | | [top](#travel--places) | :hindu_temple: | `:hindu_temple:` | :synagogue: | `:synagogue:` | [top](#table-of-contents) | 775 | | [top](#travel--places) | :shinto_shrine: | `:shinto_shrine:` | :kaaba: | `:kaaba:` | [top](#table-of-contents) | 776 | 777 | #### Place Other 778 | 779 | | | ico | shortcode | ico | shortcode | | 780 | | - | :-: | - | :-: | - | - | 781 | | [top](#travel--places) | :fountain: | `:fountain:` | :tent: | `:tent:` | [top](#table-of-contents) | 782 | | [top](#travel--places) | :foggy: | `:foggy:` | :night_with_stars: | `:night_with_stars:` | [top](#table-of-contents) | 783 | | [top](#travel--places) | :cityscape: | `:cityscape:` | :sunrise_over_mountains: | `:sunrise_over_mountains:` | [top](#table-of-contents) | 784 | | [top](#travel--places) | :sunrise: | `:sunrise:` | :city_sunset: | `:city_sunset:` | [top](#table-of-contents) | 785 | | [top](#travel--places) | :city_sunrise: | `:city_sunrise:` | :bridge_at_night: | `:bridge_at_night:` | [top](#table-of-contents) | 786 | | [top](#travel--places) | :hotsprings: | `:hotsprings:` | :carousel_horse: | `:carousel_horse:` | [top](#table-of-contents) | 787 | | [top](#travel--places) | :ferris_wheel: | `:ferris_wheel:` | :roller_coaster: | `:roller_coaster:` | [top](#table-of-contents) | 788 | | [top](#travel--places) | :barber: | `:barber:` | :circus_tent: | `:circus_tent:` | [top](#table-of-contents) | 789 | 790 | #### Transport Ground 791 | 792 | | | ico | shortcode | ico | shortcode | | 793 | | - | :-: | - | :-: | - | - | 794 | | [top](#travel--places) | :steam_locomotive: | `:steam_locomotive:` | :railway_car: | `:railway_car:` | [top](#table-of-contents) | 795 | | [top](#travel--places) | :bullettrain_side: | `:bullettrain_side:` | :bullettrain_front: | `:bullettrain_front:` | [top](#table-of-contents) | 796 | | [top](#travel--places) | :train2: | `:train2:` | :metro: | `:metro:` | [top](#table-of-contents) | 797 | | [top](#travel--places) | :light_rail: | `:light_rail:` | :station: | `:station:` | [top](#table-of-contents) | 798 | | [top](#travel--places) | :tram: | `:tram:` | :monorail: | `:monorail:` | [top](#table-of-contents) | 799 | | [top](#travel--places) | :mountain_railway: | `:mountain_railway:` | :train: | `:train:` | [top](#table-of-contents) | 800 | | [top](#travel--places) | :bus: | `:bus:` | :oncoming_bus: | `:oncoming_bus:` | [top](#table-of-contents) | 801 | | [top](#travel--places) | :trolleybus: | `:trolleybus:` | :minibus: | `:minibus:` | [top](#table-of-contents) | 802 | | [top](#travel--places) | :ambulance: | `:ambulance:` | :fire_engine: | `:fire_engine:` | [top](#table-of-contents) | 803 | | [top](#travel--places) | :police_car: | `:police_car:` | :oncoming_police_car: | `:oncoming_police_car:` | [top](#table-of-contents) | 804 | | [top](#travel--places) | :taxi: | `:taxi:` | :oncoming_taxi: | `:oncoming_taxi:` | [top](#table-of-contents) | 805 | | [top](#travel--places) | :car: | `:car:`
`:red_car:` | :oncoming_automobile: | `:oncoming_automobile:` | [top](#table-of-contents) | 806 | | [top](#travel--places) | :blue_car: | `:blue_car:` | :pickup_truck: | `:pickup_truck:` | [top](#table-of-contents) | 807 | | [top](#travel--places) | :truck: | `:truck:` | :articulated_lorry: | `:articulated_lorry:` | [top](#table-of-contents) | 808 | | [top](#travel--places) | :tractor: | `:tractor:` | :racing_car: | `:racing_car:` | [top](#table-of-contents) | 809 | | [top](#travel--places) | :motorcycle: | `:motorcycle:` | :motor_scooter: | `:motor_scooter:` | [top](#table-of-contents) | 810 | | [top](#travel--places) | :manual_wheelchair: | `:manual_wheelchair:` | :motorized_wheelchair: | `:motorized_wheelchair:` | [top](#table-of-contents) | 811 | | [top](#travel--places) | :auto_rickshaw: | `:auto_rickshaw:` | :bike: | `:bike:` | [top](#table-of-contents) | 812 | | [top](#travel--places) | :kick_scooter: | `:kick_scooter:` | :skateboard: | `:skateboard:` | [top](#table-of-contents) | 813 | | [top](#travel--places) | :roller_skate: | `:roller_skate:` | :busstop: | `:busstop:` | [top](#table-of-contents) | 814 | | [top](#travel--places) | :motorway: | `:motorway:` | :railway_track: | `:railway_track:` | [top](#table-of-contents) | 815 | | [top](#travel--places) | :oil_drum: | `:oil_drum:` | :fuelpump: | `:fuelpump:` | [top](#table-of-contents) | 816 | | [top](#travel--places) | :rotating_light: | `:rotating_light:` | :traffic_light: | `:traffic_light:` | [top](#table-of-contents) | 817 | | [top](#travel--places) | :vertical_traffic_light: | `:vertical_traffic_light:` | :stop_sign: | `:stop_sign:` | [top](#table-of-contents) | 818 | | [top](#travel--places) | :construction: | `:construction:` | | | [top](#table-of-contents) | 819 | 820 | #### Transport Water 821 | 822 | | | ico | shortcode | ico | shortcode | | 823 | | - | :-: | - | :-: | - | - | 824 | | [top](#travel--places) | :anchor: | `:anchor:` | :boat: | `:boat:`
`:sailboat:` | [top](#table-of-contents) | 825 | | [top](#travel--places) | :canoe: | `:canoe:` | :speedboat: | `:speedboat:` | [top](#table-of-contents) | 826 | | [top](#travel--places) | :passenger_ship: | `:passenger_ship:` | :ferry: | `:ferry:` | [top](#table-of-contents) | 827 | | [top](#travel--places) | :motor_boat: | `:motor_boat:` | :ship: | `:ship:` | [top](#table-of-contents) | 828 | 829 | #### Transport Air 830 | 831 | | | ico | shortcode | ico | shortcode | | 832 | | - | :-: | - | :-: | - | - | 833 | | [top](#travel--places) | :airplane: | `:airplane:` | :small_airplane: | `:small_airplane:` | [top](#table-of-contents) | 834 | | [top](#travel--places) | :flight_departure: | `:flight_departure:` | :flight_arrival: | `:flight_arrival:` | [top](#table-of-contents) | 835 | | [top](#travel--places) | :parachute: | `:parachute:` | :seat: | `:seat:` | [top](#table-of-contents) | 836 | | [top](#travel--places) | :helicopter: | `:helicopter:` | :suspension_railway: | `:suspension_railway:` | [top](#table-of-contents) | 837 | | [top](#travel--places) | :mountain_cableway: | `:mountain_cableway:` | :aerial_tramway: | `:aerial_tramway:` | [top](#table-of-contents) | 838 | | [top](#travel--places) | :artificial_satellite: | `:artificial_satellite:` | :rocket: | `:rocket:` | [top](#table-of-contents) | 839 | | [top](#travel--places) | :flying_saucer: | `:flying_saucer:` | | | [top](#table-of-contents) | 840 | 841 | #### Hotel 842 | 843 | | | ico | shortcode | ico | shortcode | | 844 | | - | :-: | - | :-: | - | - | 845 | | [top](#travel--places) | :bellhop_bell: | `:bellhop_bell:` | :luggage: | `:luggage:` | [top](#table-of-contents) | 846 | 847 | #### Time 848 | 849 | | | ico | shortcode | ico | shortcode | | 850 | | - | :-: | - | :-: | - | - | 851 | | [top](#travel--places) | :hourglass: | `:hourglass:` | :hourglass_flowing_sand: | `:hourglass_flowing_sand:` | [top](#table-of-contents) | 852 | | [top](#travel--places) | :watch: | `:watch:` | :alarm_clock: | `:alarm_clock:` | [top](#table-of-contents) | 853 | | [top](#travel--places) | :stopwatch: | `:stopwatch:` | :timer_clock: | `:timer_clock:` | [top](#table-of-contents) | 854 | | [top](#travel--places) | :mantelpiece_clock: | `:mantelpiece_clock:` | :clock12: | `:clock12:` | [top](#table-of-contents) | 855 | | [top](#travel--places) | :clock1230: | `:clock1230:` | :clock1: | `:clock1:` | [top](#table-of-contents) | 856 | | [top](#travel--places) | :clock130: | `:clock130:` | :clock2: | `:clock2:` | [top](#table-of-contents) | 857 | | [top](#travel--places) | :clock230: | `:clock230:` | :clock3: | `:clock3:` | [top](#table-of-contents) | 858 | | [top](#travel--places) | :clock330: | `:clock330:` | :clock4: | `:clock4:` | [top](#table-of-contents) | 859 | | [top](#travel--places) | :clock430: | `:clock430:` | :clock5: | `:clock5:` | [top](#table-of-contents) | 860 | | [top](#travel--places) | :clock530: | `:clock530:` | :clock6: | `:clock6:` | [top](#table-of-contents) | 861 | | [top](#travel--places) | :clock630: | `:clock630:` | :clock7: | `:clock7:` | [top](#table-of-contents) | 862 | | [top](#travel--places) | :clock730: | `:clock730:` | :clock8: | `:clock8:` | [top](#table-of-contents) | 863 | | [top](#travel--places) | :clock830: | `:clock830:` | :clock9: | `:clock9:` | [top](#table-of-contents) | 864 | | [top](#travel--places) | :clock930: | `:clock930:` | :clock10: | `:clock10:` | [top](#table-of-contents) | 865 | | [top](#travel--places) | :clock1030: | `:clock1030:` | :clock11: | `:clock11:` | [top](#table-of-contents) | 866 | | [top](#travel--places) | :clock1130: | `:clock1130:` | | | [top](#table-of-contents) | 867 | 868 | #### Sky & Weather 869 | 870 | | | ico | shortcode | ico | shortcode | | 871 | | - | :-: | - | :-: | - | - | 872 | | [top](#travel--places) | :new_moon: | `:new_moon:` | :waxing_crescent_moon: | `:waxing_crescent_moon:` | [top](#table-of-contents) | 873 | | [top](#travel--places) | :first_quarter_moon: | `:first_quarter_moon:` | :moon: | `:moon:`
`:waxing_gibbous_moon:` | [top](#table-of-contents) | 874 | | [top](#travel--places) | :full_moon: | `:full_moon:` | :waning_gibbous_moon: | `:waning_gibbous_moon:` | [top](#table-of-contents) | 875 | | [top](#travel--places) | :last_quarter_moon: | `:last_quarter_moon:` | :waning_crescent_moon: | `:waning_crescent_moon:` | [top](#table-of-contents) | 876 | | [top](#travel--places) | :crescent_moon: | `:crescent_moon:` | :new_moon_with_face: | `:new_moon_with_face:` | [top](#table-of-contents) | 877 | | [top](#travel--places) | :first_quarter_moon_with_face: | `:first_quarter_moon_with_face:` | :last_quarter_moon_with_face: | `:last_quarter_moon_with_face:` | [top](#table-of-contents) | 878 | | [top](#travel--places) | :thermometer: | `:thermometer:` | :sunny: | `:sunny:` | [top](#table-of-contents) | 879 | | [top](#travel--places) | :full_moon_with_face: | `:full_moon_with_face:` | :sun_with_face: | `:sun_with_face:` | [top](#table-of-contents) | 880 | | [top](#travel--places) | :ringed_planet: | `:ringed_planet:` | :star: | `:star:` | [top](#table-of-contents) | 881 | | [top](#travel--places) | :star2: | `:star2:` | :stars: | `:stars:` | [top](#table-of-contents) | 882 | | [top](#travel--places) | :milky_way: | `:milky_way:` | :cloud: | `:cloud:` | [top](#table-of-contents) | 883 | | [top](#travel--places) | :partly_sunny: | `:partly_sunny:` | :cloud_with_lightning_and_rain: | `:cloud_with_lightning_and_rain:` | [top](#table-of-contents) | 884 | | [top](#travel--places) | :sun_behind_small_cloud: | `:sun_behind_small_cloud:` | :sun_behind_large_cloud: | `:sun_behind_large_cloud:` | [top](#table-of-contents) | 885 | | [top](#travel--places) | :sun_behind_rain_cloud: | `:sun_behind_rain_cloud:` | :cloud_with_rain: | `:cloud_with_rain:` | [top](#table-of-contents) | 886 | | [top](#travel--places) | :cloud_with_snow: | `:cloud_with_snow:` | :cloud_with_lightning: | `:cloud_with_lightning:` | [top](#table-of-contents) | 887 | | [top](#travel--places) | :tornado: | `:tornado:` | :fog: | `:fog:` | [top](#table-of-contents) | 888 | | [top](#travel--places) | :wind_face: | `:wind_face:` | :cyclone: | `:cyclone:` | [top](#table-of-contents) | 889 | | [top](#travel--places) | :rainbow: | `:rainbow:` | :closed_umbrella: | `:closed_umbrella:` | [top](#table-of-contents) | 890 | | [top](#travel--places) | :open_umbrella: | `:open_umbrella:` | :umbrella: | `:umbrella:` | [top](#table-of-contents) | 891 | | [top](#travel--places) | :parasol_on_ground: | `:parasol_on_ground:` | :zap: | `:zap:` | [top](#table-of-contents) | 892 | | [top](#travel--places) | :snowflake: | `:snowflake:` | :snowman_with_snow: | `:snowman_with_snow:` | [top](#table-of-contents) | 893 | | [top](#travel--places) | :snowman: | `:snowman:` | :comet: | `:comet:` | [top](#table-of-contents) | 894 | | [top](#travel--places) | :fire: | `:fire:` | :droplet: | `:droplet:` | [top](#table-of-contents) | 895 | | [top](#travel--places) | :ocean: | `:ocean:` | | | [top](#table-of-contents) | 896 | 897 | ### Activities 898 | 899 | - [Event](#event) 900 | - [Award Medal](#award-medal) 901 | - [Sport](#sport) 902 | - [Game](#game) 903 | - [Arts & Crafts](#arts--crafts) 904 | 905 | #### Event 906 | 907 | | | ico | shortcode | ico | shortcode | | 908 | | - | :-: | - | :-: | - | - | 909 | | [top](#activities) | :jack_o_lantern: | `:jack_o_lantern:` | :christmas_tree: | `:christmas_tree:` | [top](#table-of-contents) | 910 | | [top](#activities) | :fireworks: | `:fireworks:` | :sparkler: | `:sparkler:` | [top](#table-of-contents) | 911 | | [top](#activities) | :firecracker: | `:firecracker:` | :sparkles: | `:sparkles:` | [top](#table-of-contents) | 912 | | [top](#activities) | :balloon: | `:balloon:` | :tada: | `:tada:` | [top](#table-of-contents) | 913 | | [top](#activities) | :confetti_ball: | `:confetti_ball:` | :tanabata_tree: | `:tanabata_tree:` | [top](#table-of-contents) | 914 | | [top](#activities) | :bamboo: | `:bamboo:` | :dolls: | `:dolls:` | [top](#table-of-contents) | 915 | | [top](#activities) | :flags: | `:flags:` | :wind_chime: | `:wind_chime:` | [top](#table-of-contents) | 916 | | [top](#activities) | :rice_scene: | `:rice_scene:` | :red_envelope: | `:red_envelope:` | [top](#table-of-contents) | 917 | | [top](#activities) | :ribbon: | `:ribbon:` | :gift: | `:gift:` | [top](#table-of-contents) | 918 | | [top](#activities) | :reminder_ribbon: | `:reminder_ribbon:` | :tickets: | `:tickets:` | [top](#table-of-contents) | 919 | | [top](#activities) | :ticket: | `:ticket:` | | | [top](#table-of-contents) | 920 | 921 | #### Award Medal 922 | 923 | | | ico | shortcode | ico | shortcode | | 924 | | - | :-: | - | :-: | - | - | 925 | | [top](#activities) | :medal_military: | `:medal_military:` | :trophy: | `:trophy:` | [top](#table-of-contents) | 926 | | [top](#activities) | :medal_sports: | `:medal_sports:` | :1st_place_medal: | `:1st_place_medal:` | [top](#table-of-contents) | 927 | | [top](#activities) | :2nd_place_medal: | `:2nd_place_medal:` | :3rd_place_medal: | `:3rd_place_medal:` | [top](#table-of-contents) | 928 | 929 | #### Sport 930 | 931 | | | ico | shortcode | ico | shortcode | | 932 | | - | :-: | - | :-: | - | - | 933 | | [top](#activities) | :soccer: | `:soccer:` | :baseball: | `:baseball:` | [top](#table-of-contents) | 934 | | [top](#activities) | :softball: | `:softball:` | :basketball: | `:basketball:` | [top](#table-of-contents) | 935 | | [top](#activities) | :volleyball: | `:volleyball:` | :football: | `:football:` | [top](#table-of-contents) | 936 | | [top](#activities) | :rugby_football: | `:rugby_football:` | :tennis: | `:tennis:` | [top](#table-of-contents) | 937 | | [top](#activities) | :flying_disc: | `:flying_disc:` | :bowling: | `:bowling:` | [top](#table-of-contents) | 938 | | [top](#activities) | :cricket_game: | `:cricket_game:` | :field_hockey: | `:field_hockey:` | [top](#table-of-contents) | 939 | | [top](#activities) | :ice_hockey: | `:ice_hockey:` | :lacrosse: | `:lacrosse:` | [top](#table-of-contents) | 940 | | [top](#activities) | :ping_pong: | `:ping_pong:` | :badminton: | `:badminton:` | [top](#table-of-contents) | 941 | | [top](#activities) | :boxing_glove: | `:boxing_glove:` | :martial_arts_uniform: | `:martial_arts_uniform:` | [top](#table-of-contents) | 942 | | [top](#activities) | :goal_net: | `:goal_net:` | :golf: | `:golf:` | [top](#table-of-contents) | 943 | | [top](#activities) | :ice_skate: | `:ice_skate:` | :fishing_pole_and_fish: | `:fishing_pole_and_fish:` | [top](#table-of-contents) | 944 | | [top](#activities) | :diving_mask: | `:diving_mask:` | :running_shirt_with_sash: | `:running_shirt_with_sash:` | [top](#table-of-contents) | 945 | | [top](#activities) | :ski: | `:ski:` | :sled: | `:sled:` | [top](#table-of-contents) | 946 | | [top](#activities) | :curling_stone: | `:curling_stone:` | | | [top](#table-of-contents) | 947 | 948 | #### Game 949 | 950 | | | ico | shortcode | ico | shortcode | | 951 | | - | :-: | - | :-: | - | - | 952 | | [top](#activities) | :dart: | `:dart:` | :yo_yo: | `:yo_yo:` | [top](#table-of-contents) | 953 | | [top](#activities) | :kite: | `:kite:` | :gun: | `:gun:` | [top](#table-of-contents) | 954 | | [top](#activities) | :8ball: | `:8ball:` | :crystal_ball: | `:crystal_ball:` | [top](#table-of-contents) | 955 | | [top](#activities) | :magic_wand: | `:magic_wand:` | :video_game: | `:video_game:` | [top](#table-of-contents) | 956 | | [top](#activities) | :joystick: | `:joystick:` | :slot_machine: | `:slot_machine:` | [top](#table-of-contents) | 957 | | [top](#activities) | :game_die: | `:game_die:` | :jigsaw: | `:jigsaw:` | [top](#table-of-contents) | 958 | | [top](#activities) | :teddy_bear: | `:teddy_bear:` | :pinata: | `:pinata:` | [top](#table-of-contents) | 959 | | [top](#activities) | :nesting_dolls: | `:nesting_dolls:` | :spades: | `:spades:` | [top](#table-of-contents) | 960 | | [top](#activities) | :hearts: | `:hearts:` | :diamonds: | `:diamonds:` | [top](#table-of-contents) | 961 | | [top](#activities) | :clubs: | `:clubs:` | :chess_pawn: | `:chess_pawn:` | [top](#table-of-contents) | 962 | | [top](#activities) | :black_joker: | `:black_joker:` | :mahjong: | `:mahjong:` | [top](#table-of-contents) | 963 | | [top](#activities) | :flower_playing_cards: | `:flower_playing_cards:` | | | [top](#table-of-contents) | 964 | 965 | #### Arts & Crafts 966 | 967 | | | ico | shortcode | ico | shortcode | | 968 | | - | :-: | - | :-: | - | - | 969 | | [top](#activities) | :performing_arts: | `:performing_arts:` | :framed_picture: | `:framed_picture:` | [top](#table-of-contents) | 970 | | [top](#activities) | :art: | `:art:` | :thread: | `:thread:` | [top](#table-of-contents) | 971 | | [top](#activities) | :sewing_needle: | `:sewing_needle:` | :yarn: | `:yarn:` | [top](#table-of-contents) | 972 | | [top](#activities) | :knot: | `:knot:` | | | [top](#table-of-contents) | 973 | 974 | ### Objects 975 | 976 | - [Clothing](#clothing) 977 | - [Sound](#sound) 978 | - [Music](#music) 979 | - [Musical Instrument](#musical-instrument) 980 | - [Phone](#phone) 981 | - [Computer](#computer) 982 | - [Light & Video](#light--video) 983 | - [Book Paper](#book-paper) 984 | - [Money](#money) 985 | - [Mail](#mail) 986 | - [Writing](#writing) 987 | - [Office](#office) 988 | - [Lock](#lock) 989 | - [Tool](#tool) 990 | - [Science](#science) 991 | - [Medical](#medical) 992 | - [Household](#household) 993 | - [Other Object](#other-object) 994 | 995 | #### Clothing 996 | 997 | | | ico | shortcode | ico | shortcode | | 998 | | - | :-: | - | :-: | - | - | 999 | | [top](#objects) | :eyeglasses: | `:eyeglasses:` | :dark_sunglasses: | `:dark_sunglasses:` | [top](#table-of-contents) | 1000 | | [top](#objects) | :goggles: | `:goggles:` | :lab_coat: | `:lab_coat:` | [top](#table-of-contents) | 1001 | | [top](#objects) | :safety_vest: | `:safety_vest:` | :necktie: | `:necktie:` | [top](#table-of-contents) | 1002 | | [top](#objects) | :shirt: | `:shirt:`
`:tshirt:` | :jeans: | `:jeans:` | [top](#table-of-contents) | 1003 | | [top](#objects) | :scarf: | `:scarf:` | :gloves: | `:gloves:` | [top](#table-of-contents) | 1004 | | [top](#objects) | :coat: | `:coat:` | :socks: | `:socks:` | [top](#table-of-contents) | 1005 | | [top](#objects) | :dress: | `:dress:` | :kimono: | `:kimono:` | [top](#table-of-contents) | 1006 | | [top](#objects) | :sari: | `:sari:` | :one_piece_swimsuit: | `:one_piece_swimsuit:` | [top](#table-of-contents) | 1007 | | [top](#objects) | :swim_brief: | `:swim_brief:` | :shorts: | `:shorts:` | [top](#table-of-contents) | 1008 | | [top](#objects) | :bikini: | `:bikini:` | :womans_clothes: | `:womans_clothes:` | [top](#table-of-contents) | 1009 | | [top](#objects) | :purse: | `:purse:` | :handbag: | `:handbag:` | [top](#table-of-contents) | 1010 | | [top](#objects) | :pouch: | `:pouch:` | :shopping: | `:shopping:` | [top](#table-of-contents) | 1011 | | [top](#objects) | :school_satchel: | `:school_satchel:` | :thong_sandal: | `:thong_sandal:` | [top](#table-of-contents) | 1012 | | [top](#objects) | :mans_shoe: | `:mans_shoe:`
`:shoe:` | :athletic_shoe: | `:athletic_shoe:` | [top](#table-of-contents) | 1013 | | [top](#objects) | :hiking_boot: | `:hiking_boot:` | :flat_shoe: | `:flat_shoe:` | [top](#table-of-contents) | 1014 | | [top](#objects) | :high_heel: | `:high_heel:` | :sandal: | `:sandal:` | [top](#table-of-contents) | 1015 | | [top](#objects) | :ballet_shoes: | `:ballet_shoes:` | :boot: | `:boot:` | [top](#table-of-contents) | 1016 | | [top](#objects) | :crown: | `:crown:` | :womans_hat: | `:womans_hat:` | [top](#table-of-contents) | 1017 | | [top](#objects) | :tophat: | `:tophat:` | :mortar_board: | `:mortar_board:` | [top](#table-of-contents) | 1018 | | [top](#objects) | :billed_cap: | `:billed_cap:` | :military_helmet: | `:military_helmet:` | [top](#table-of-contents) | 1019 | | [top](#objects) | :rescue_worker_helmet: | `:rescue_worker_helmet:` | :prayer_beads: | `:prayer_beads:` | [top](#table-of-contents) | 1020 | | [top](#objects) | :lipstick: | `:lipstick:` | :ring: | `:ring:` | [top](#table-of-contents) | 1021 | | [top](#objects) | :gem: | `:gem:` | | | [top](#table-of-contents) | 1022 | 1023 | #### Sound 1024 | 1025 | | | ico | shortcode | ico | shortcode | | 1026 | | - | :-: | - | :-: | - | - | 1027 | | [top](#objects) | :mute: | `:mute:` | :speaker: | `:speaker:` | [top](#table-of-contents) | 1028 | | [top](#objects) | :sound: | `:sound:` | :loud_sound: | `:loud_sound:` | [top](#table-of-contents) | 1029 | | [top](#objects) | :loudspeaker: | `:loudspeaker:` | :mega: | `:mega:` | [top](#table-of-contents) | 1030 | | [top](#objects) | :postal_horn: | `:postal_horn:` | :bell: | `:bell:` | [top](#table-of-contents) | 1031 | | [top](#objects) | :no_bell: | `:no_bell:` | | | [top](#table-of-contents) | 1032 | 1033 | #### Music 1034 | 1035 | | | ico | shortcode | ico | shortcode | | 1036 | | - | :-: | - | :-: | - | - | 1037 | | [top](#objects) | :musical_score: | `:musical_score:` | :musical_note: | `:musical_note:` | [top](#table-of-contents) | 1038 | | [top](#objects) | :notes: | `:notes:` | :studio_microphone: | `:studio_microphone:` | [top](#table-of-contents) | 1039 | | [top](#objects) | :level_slider: | `:level_slider:` | :control_knobs: | `:control_knobs:` | [top](#table-of-contents) | 1040 | | [top](#objects) | :microphone: | `:microphone:` | :headphones: | `:headphones:` | [top](#table-of-contents) | 1041 | | [top](#objects) | :radio: | `:radio:` | | | [top](#table-of-contents) | 1042 | 1043 | #### Musical Instrument 1044 | 1045 | | | ico | shortcode | ico | shortcode | | 1046 | | - | :-: | - | :-: | - | - | 1047 | | [top](#objects) | :saxophone: | `:saxophone:` | :accordion: | `:accordion:` | [top](#table-of-contents) | 1048 | | [top](#objects) | :guitar: | `:guitar:` | :musical_keyboard: | `:musical_keyboard:` | [top](#table-of-contents) | 1049 | | [top](#objects) | :trumpet: | `:trumpet:` | :violin: | `:violin:` | [top](#table-of-contents) | 1050 | | [top](#objects) | :banjo: | `:banjo:` | :drum: | `:drum:` | [top](#table-of-contents) | 1051 | | [top](#objects) | :long_drum: | `:long_drum:` | | | [top](#table-of-contents) | 1052 | 1053 | #### Phone 1054 | 1055 | | | ico | shortcode | ico | shortcode | | 1056 | | - | :-: | - | :-: | - | - | 1057 | | [top](#objects) | :iphone: | `:iphone:` | :calling: | `:calling:` | [top](#table-of-contents) | 1058 | | [top](#objects) | :phone: | `:phone:`
`:telephone:` | :telephone_receiver: | `:telephone_receiver:` | [top](#table-of-contents) | 1059 | | [top](#objects) | :pager: | `:pager:` | :fax: | `:fax:` | [top](#table-of-contents) | 1060 | 1061 | #### Computer 1062 | 1063 | | | ico | shortcode | ico | shortcode | | 1064 | | - | :-: | - | :-: | - | - | 1065 | | [top](#objects) | :battery: | `:battery:` | :electric_plug: | `:electric_plug:` | [top](#table-of-contents) | 1066 | | [top](#objects) | :computer: | `:computer:` | :desktop_computer: | `:desktop_computer:` | [top](#table-of-contents) | 1067 | | [top](#objects) | :printer: | `:printer:` | :keyboard: | `:keyboard:` | [top](#table-of-contents) | 1068 | | [top](#objects) | :computer_mouse: | `:computer_mouse:` | :trackball: | `:trackball:` | [top](#table-of-contents) | 1069 | | [top](#objects) | :minidisc: | `:minidisc:` | :floppy_disk: | `:floppy_disk:` | [top](#table-of-contents) | 1070 | | [top](#objects) | :cd: | `:cd:` | :dvd: | `:dvd:` | [top](#table-of-contents) | 1071 | | [top](#objects) | :abacus: | `:abacus:` | | | [top](#table-of-contents) | 1072 | 1073 | #### Light & Video 1074 | 1075 | | | ico | shortcode | ico | shortcode | | 1076 | | - | :-: | - | :-: | - | - | 1077 | | [top](#objects) | :movie_camera: | `:movie_camera:` | :film_strip: | `:film_strip:` | [top](#table-of-contents) | 1078 | | [top](#objects) | :film_projector: | `:film_projector:` | :clapper: | `:clapper:` | [top](#table-of-contents) | 1079 | | [top](#objects) | :tv: | `:tv:` | :camera: | `:camera:` | [top](#table-of-contents) | 1080 | | [top](#objects) | :camera_flash: | `:camera_flash:` | :video_camera: | `:video_camera:` | [top](#table-of-contents) | 1081 | | [top](#objects) | :vhs: | `:vhs:` | :mag: | `:mag:` | [top](#table-of-contents) | 1082 | | [top](#objects) | :mag_right: | `:mag_right:` | :candle: | `:candle:` | [top](#table-of-contents) | 1083 | | [top](#objects) | :bulb: | `:bulb:` | :flashlight: | `:flashlight:` | [top](#table-of-contents) | 1084 | | [top](#objects) | :izakaya_lantern: | `:izakaya_lantern:`
`:lantern:` | :diya_lamp: | `:diya_lamp:` | [top](#table-of-contents) | 1085 | 1086 | #### Book Paper 1087 | 1088 | | | ico | shortcode | ico | shortcode | | 1089 | | - | :-: | - | :-: | - | - | 1090 | | [top](#objects) | :notebook_with_decorative_cover: | `:notebook_with_decorative_cover:` | :closed_book: | `:closed_book:` | [top](#table-of-contents) | 1091 | | [top](#objects) | :book: | `:book:`
`:open_book:` | :green_book: | `:green_book:` | [top](#table-of-contents) | 1092 | | [top](#objects) | :blue_book: | `:blue_book:` | :orange_book: | `:orange_book:` | [top](#table-of-contents) | 1093 | | [top](#objects) | :books: | `:books:` | :notebook: | `:notebook:` | [top](#table-of-contents) | 1094 | | [top](#objects) | :ledger: | `:ledger:` | :page_with_curl: | `:page_with_curl:` | [top](#table-of-contents) | 1095 | | [top](#objects) | :scroll: | `:scroll:` | :page_facing_up: | `:page_facing_up:` | [top](#table-of-contents) | 1096 | | [top](#objects) | :newspaper: | `:newspaper:` | :newspaper_roll: | `:newspaper_roll:` | [top](#table-of-contents) | 1097 | | [top](#objects) | :bookmark_tabs: | `:bookmark_tabs:` | :bookmark: | `:bookmark:` | [top](#table-of-contents) | 1098 | | [top](#objects) | :label: | `:label:` | | | [top](#table-of-contents) | 1099 | 1100 | #### Money 1101 | 1102 | | | ico | shortcode | ico | shortcode | | 1103 | | - | :-: | - | :-: | - | - | 1104 | | [top](#objects) | :moneybag: | `:moneybag:` | :coin: | `:coin:` | [top](#table-of-contents) | 1105 | | [top](#objects) | :yen: | `:yen:` | :dollar: | `:dollar:` | [top](#table-of-contents) | 1106 | | [top](#objects) | :euro: | `:euro:` | :pound: | `:pound:` | [top](#table-of-contents) | 1107 | | [top](#objects) | :money_with_wings: | `:money_with_wings:` | :credit_card: | `:credit_card:` | [top](#table-of-contents) | 1108 | | [top](#objects) | :receipt: | `:receipt:` | :chart: | `:chart:` | [top](#table-of-contents) | 1109 | 1110 | #### Mail 1111 | 1112 | | | ico | shortcode | ico | shortcode | | 1113 | | - | :-: | - | :-: | - | - | 1114 | | [top](#objects) | :envelope: | `:envelope:` | :e-mail: | `:e-mail:`
`:email:` | [top](#table-of-contents) | 1115 | | [top](#objects) | :incoming_envelope: | `:incoming_envelope:` | :envelope_with_arrow: | `:envelope_with_arrow:` | [top](#table-of-contents) | 1116 | | [top](#objects) | :outbox_tray: | `:outbox_tray:` | :inbox_tray: | `:inbox_tray:` | [top](#table-of-contents) | 1117 | | [top](#objects) | :package: | `:package:` | :mailbox: | `:mailbox:` | [top](#table-of-contents) | 1118 | | [top](#objects) | :mailbox_closed: | `:mailbox_closed:` | :mailbox_with_mail: | `:mailbox_with_mail:` | [top](#table-of-contents) | 1119 | | [top](#objects) | :mailbox_with_no_mail: | `:mailbox_with_no_mail:` | :postbox: | `:postbox:` | [top](#table-of-contents) | 1120 | | [top](#objects) | :ballot_box: | `:ballot_box:` | | | [top](#table-of-contents) | 1121 | 1122 | #### Writing 1123 | 1124 | | | ico | shortcode | ico | shortcode | | 1125 | | - | :-: | - | :-: | - | - | 1126 | | [top](#objects) | :pencil2: | `:pencil2:` | :black_nib: | `:black_nib:` | [top](#table-of-contents) | 1127 | | [top](#objects) | :fountain_pen: | `:fountain_pen:` | :pen: | `:pen:` | [top](#table-of-contents) | 1128 | | [top](#objects) | :paintbrush: | `:paintbrush:` | :crayon: | `:crayon:` | [top](#table-of-contents) | 1129 | | [top](#objects) | :memo: | `:memo:`
`:pencil:` | | | [top](#table-of-contents) | 1130 | 1131 | #### Office 1132 | 1133 | | | ico | shortcode | ico | shortcode | | 1134 | | - | :-: | - | :-: | - | - | 1135 | | [top](#objects) | :briefcase: | `:briefcase:` | :file_folder: | `:file_folder:` | [top](#table-of-contents) | 1136 | | [top](#objects) | :open_file_folder: | `:open_file_folder:` | :card_index_dividers: | `:card_index_dividers:` | [top](#table-of-contents) | 1137 | | [top](#objects) | :date: | `:date:` | :calendar: | `:calendar:` | [top](#table-of-contents) | 1138 | | [top](#objects) | :spiral_notepad: | `:spiral_notepad:` | :spiral_calendar: | `:spiral_calendar:` | [top](#table-of-contents) | 1139 | | [top](#objects) | :card_index: | `:card_index:` | :chart_with_upwards_trend: | `:chart_with_upwards_trend:` | [top](#table-of-contents) | 1140 | | [top](#objects) | :chart_with_downwards_trend: | `:chart_with_downwards_trend:` | :bar_chart: | `:bar_chart:` | [top](#table-of-contents) | 1141 | | [top](#objects) | :clipboard: | `:clipboard:` | :pushpin: | `:pushpin:` | [top](#table-of-contents) | 1142 | | [top](#objects) | :round_pushpin: | `:round_pushpin:` | :paperclip: | `:paperclip:` | [top](#table-of-contents) | 1143 | | [top](#objects) | :paperclips: | `:paperclips:` | :straight_ruler: | `:straight_ruler:` | [top](#table-of-contents) | 1144 | | [top](#objects) | :triangular_ruler: | `:triangular_ruler:` | :scissors: | `:scissors:` | [top](#table-of-contents) | 1145 | | [top](#objects) | :card_file_box: | `:card_file_box:` | :file_cabinet: | `:file_cabinet:` | [top](#table-of-contents) | 1146 | | [top](#objects) | :wastebasket: | `:wastebasket:` | | | [top](#table-of-contents) | 1147 | 1148 | #### Lock 1149 | 1150 | | | ico | shortcode | ico | shortcode | | 1151 | | - | :-: | - | :-: | - | - | 1152 | | [top](#objects) | :lock: | `:lock:` | :unlock: | `:unlock:` | [top](#table-of-contents) | 1153 | | [top](#objects) | :lock_with_ink_pen: | `:lock_with_ink_pen:` | :closed_lock_with_key: | `:closed_lock_with_key:` | [top](#table-of-contents) | 1154 | | [top](#objects) | :key: | `:key:` | :old_key: | `:old_key:` | [top](#table-of-contents) | 1155 | 1156 | #### Tool 1157 | 1158 | | | ico | shortcode | ico | shortcode | | 1159 | | - | :-: | - | :-: | - | - | 1160 | | [top](#objects) | :hammer: | `:hammer:` | :axe: | `:axe:` | [top](#table-of-contents) | 1161 | | [top](#objects) | :pick: | `:pick:` | :hammer_and_pick: | `:hammer_and_pick:` | [top](#table-of-contents) | 1162 | | [top](#objects) | :hammer_and_wrench: | `:hammer_and_wrench:` | :dagger: | `:dagger:` | [top](#table-of-contents) | 1163 | | [top](#objects) | :crossed_swords: | `:crossed_swords:` | :bomb: | `:bomb:` | [top](#table-of-contents) | 1164 | | [top](#objects) | :boomerang: | `:boomerang:` | :bow_and_arrow: | `:bow_and_arrow:` | [top](#table-of-contents) | 1165 | | [top](#objects) | :shield: | `:shield:` | :carpentry_saw: | `:carpentry_saw:` | [top](#table-of-contents) | 1166 | | [top](#objects) | :wrench: | `:wrench:` | :screwdriver: | `:screwdriver:` | [top](#table-of-contents) | 1167 | | [top](#objects) | :nut_and_bolt: | `:nut_and_bolt:` | :gear: | `:gear:` | [top](#table-of-contents) | 1168 | | [top](#objects) | :clamp: | `:clamp:` | :balance_scale: | `:balance_scale:` | [top](#table-of-contents) | 1169 | | [top](#objects) | :probing_cane: | `:probing_cane:` | :link: | `:link:` | [top](#table-of-contents) | 1170 | | [top](#objects) | :chains: | `:chains:` | :hook: | `:hook:` | [top](#table-of-contents) | 1171 | | [top](#objects) | :toolbox: | `:toolbox:` | :magnet: | `:magnet:` | [top](#table-of-contents) | 1172 | | [top](#objects) | :ladder: | `:ladder:` | | | [top](#table-of-contents) | 1173 | 1174 | #### Science 1175 | 1176 | | | ico | shortcode | ico | shortcode | | 1177 | | - | :-: | - | :-: | - | - | 1178 | | [top](#objects) | :alembic: | `:alembic:` | :test_tube: | `:test_tube:` | [top](#table-of-contents) | 1179 | | [top](#objects) | :petri_dish: | `:petri_dish:` | :dna: | `:dna:` | [top](#table-of-contents) | 1180 | | [top](#objects) | :microscope: | `:microscope:` | :telescope: | `:telescope:` | [top](#table-of-contents) | 1181 | | [top](#objects) | :satellite: | `:satellite:` | | | [top](#table-of-contents) | 1182 | 1183 | #### Medical 1184 | 1185 | | | ico | shortcode | ico | shortcode | | 1186 | | - | :-: | - | :-: | - | - | 1187 | | [top](#objects) | :syringe: | `:syringe:` | :drop_of_blood: | `:drop_of_blood:` | [top](#table-of-contents) | 1188 | | [top](#objects) | :pill: | `:pill:` | :adhesive_bandage: | `:adhesive_bandage:` | [top](#table-of-contents) | 1189 | | [top](#objects) | :stethoscope: | `:stethoscope:` | | | [top](#table-of-contents) | 1190 | 1191 | #### Household 1192 | 1193 | | | ico | shortcode | ico | shortcode | | 1194 | | - | :-: | - | :-: | - | - | 1195 | | [top](#objects) | :door: | `:door:` | :elevator: | `:elevator:` | [top](#table-of-contents) | 1196 | | [top](#objects) | :mirror: | `:mirror:` | :window: | `:window:` | [top](#table-of-contents) | 1197 | | [top](#objects) | :bed: | `:bed:` | :couch_and_lamp: | `:couch_and_lamp:` | [top](#table-of-contents) | 1198 | | [top](#objects) | :chair: | `:chair:` | :toilet: | `:toilet:` | [top](#table-of-contents) | 1199 | | [top](#objects) | :plunger: | `:plunger:` | :shower: | `:shower:` | [top](#table-of-contents) | 1200 | | [top](#objects) | :bathtub: | `:bathtub:` | :mouse_trap: | `:mouse_trap:` | [top](#table-of-contents) | 1201 | | [top](#objects) | :razor: | `:razor:` | :lotion_bottle: | `:lotion_bottle:` | [top](#table-of-contents) | 1202 | | [top](#objects) | :safety_pin: | `:safety_pin:` | :broom: | `:broom:` | [top](#table-of-contents) | 1203 | | [top](#objects) | :basket: | `:basket:` | :roll_of_paper: | `:roll_of_paper:` | [top](#table-of-contents) | 1204 | | [top](#objects) | :bucket: | `:bucket:` | :soap: | `:soap:` | [top](#table-of-contents) | 1205 | | [top](#objects) | :toothbrush: | `:toothbrush:` | :sponge: | `:sponge:` | [top](#table-of-contents) | 1206 | | [top](#objects) | :fire_extinguisher: | `:fire_extinguisher:` | :shopping_cart: | `:shopping_cart:` | [top](#table-of-contents) | 1207 | 1208 | #### Other Object 1209 | 1210 | | | ico | shortcode | ico | shortcode | | 1211 | | - | :-: | - | :-: | - | - | 1212 | | [top](#objects) | :smoking: | `:smoking:` | :coffin: | `:coffin:` | [top](#table-of-contents) | 1213 | | [top](#objects) | :headstone: | `:headstone:` | :funeral_urn: | `:funeral_urn:` | [top](#table-of-contents) | 1214 | | [top](#objects) | :nazar_amulet: | `:nazar_amulet:` | :moyai: | `:moyai:` | [top](#table-of-contents) | 1215 | | [top](#objects) | :placard: | `:placard:` | | | [top](#table-of-contents) | 1216 | 1217 | ### Symbols 1218 | 1219 | - [Transport Sign](#transport-sign) 1220 | - [Warning](#warning) 1221 | - [Arrow](#arrow) 1222 | - [Religion](#religion) 1223 | - [Zodiac](#zodiac) 1224 | - [Av Symbol](#av-symbol) 1225 | - [Gender](#gender) 1226 | - [Math](#math) 1227 | - [Punctuation](#punctuation) 1228 | - [Currency](#currency) 1229 | - [Other Symbol](#other-symbol) 1230 | - [Keycap](#keycap) 1231 | - [Alphanum](#alphanum) 1232 | - [Geometric](#geometric) 1233 | 1234 | #### Transport Sign 1235 | 1236 | | | ico | shortcode | ico | shortcode | | 1237 | | - | :-: | - | :-: | - | - | 1238 | | [top](#symbols) | :atm: | `:atm:` | :put_litter_in_its_place: | `:put_litter_in_its_place:` | [top](#table-of-contents) | 1239 | | [top](#symbols) | :potable_water: | `:potable_water:` | :wheelchair: | `:wheelchair:` | [top](#table-of-contents) | 1240 | | [top](#symbols) | :mens: | `:mens:` | :womens: | `:womens:` | [top](#table-of-contents) | 1241 | | [top](#symbols) | :restroom: | `:restroom:` | :baby_symbol: | `:baby_symbol:` | [top](#table-of-contents) | 1242 | | [top](#symbols) | :wc: | `:wc:` | :passport_control: | `:passport_control:` | [top](#table-of-contents) | 1243 | | [top](#symbols) | :customs: | `:customs:` | :baggage_claim: | `:baggage_claim:` | [top](#table-of-contents) | 1244 | | [top](#symbols) | :left_luggage: | `:left_luggage:` | | | [top](#table-of-contents) | 1245 | 1246 | #### Warning 1247 | 1248 | | | ico | shortcode | ico | shortcode | | 1249 | | - | :-: | - | :-: | - | - | 1250 | | [top](#symbols) | :warning: | `:warning:` | :children_crossing: | `:children_crossing:` | [top](#table-of-contents) | 1251 | | [top](#symbols) | :no_entry: | `:no_entry:` | :no_entry_sign: | `:no_entry_sign:` | [top](#table-of-contents) | 1252 | | [top](#symbols) | :no_bicycles: | `:no_bicycles:` | :no_smoking: | `:no_smoking:` | [top](#table-of-contents) | 1253 | | [top](#symbols) | :do_not_litter: | `:do_not_litter:` | :non-potable_water: | `:non-potable_water:` | [top](#table-of-contents) | 1254 | | [top](#symbols) | :no_pedestrians: | `:no_pedestrians:` | :no_mobile_phones: | `:no_mobile_phones:` | [top](#table-of-contents) | 1255 | | [top](#symbols) | :underage: | `:underage:` | :radioactive: | `:radioactive:` | [top](#table-of-contents) | 1256 | | [top](#symbols) | :biohazard: | `:biohazard:` | | | [top](#table-of-contents) | 1257 | 1258 | #### Arrow 1259 | 1260 | | | ico | shortcode | ico | shortcode | | 1261 | | - | :-: | - | :-: | - | - | 1262 | | [top](#symbols) | :arrow_up: | `:arrow_up:` | :arrow_upper_right: | `:arrow_upper_right:` | [top](#table-of-contents) | 1263 | | [top](#symbols) | :arrow_right: | `:arrow_right:` | :arrow_lower_right: | `:arrow_lower_right:` | [top](#table-of-contents) | 1264 | | [top](#symbols) | :arrow_down: | `:arrow_down:` | :arrow_lower_left: | `:arrow_lower_left:` | [top](#table-of-contents) | 1265 | | [top](#symbols) | :arrow_left: | `:arrow_left:` | :arrow_upper_left: | `:arrow_upper_left:` | [top](#table-of-contents) | 1266 | | [top](#symbols) | :arrow_up_down: | `:arrow_up_down:` | :left_right_arrow: | `:left_right_arrow:` | [top](#table-of-contents) | 1267 | | [top](#symbols) | :leftwards_arrow_with_hook: | `:leftwards_arrow_with_hook:` | :arrow_right_hook: | `:arrow_right_hook:` | [top](#table-of-contents) | 1268 | | [top](#symbols) | :arrow_heading_up: | `:arrow_heading_up:` | :arrow_heading_down: | `:arrow_heading_down:` | [top](#table-of-contents) | 1269 | | [top](#symbols) | :arrows_clockwise: | `:arrows_clockwise:` | :arrows_counterclockwise: | `:arrows_counterclockwise:` | [top](#table-of-contents) | 1270 | | [top](#symbols) | :back: | `:back:` | :end: | `:end:` | [top](#table-of-contents) | 1271 | | [top](#symbols) | :on: | `:on:` | :soon: | `:soon:` | [top](#table-of-contents) | 1272 | | [top](#symbols) | :top: | `:top:` | | | [top](#table-of-contents) | 1273 | 1274 | #### Religion 1275 | 1276 | | | ico | shortcode | ico | shortcode | | 1277 | | - | :-: | - | :-: | - | - | 1278 | | [top](#symbols) | :place_of_worship: | `:place_of_worship:` | :atom_symbol: | `:atom_symbol:` | [top](#table-of-contents) | 1279 | | [top](#symbols) | :om: | `:om:` | :star_of_david: | `:star_of_david:` | [top](#table-of-contents) | 1280 | | [top](#symbols) | :wheel_of_dharma: | `:wheel_of_dharma:` | :yin_yang: | `:yin_yang:` | [top](#table-of-contents) | 1281 | | [top](#symbols) | :latin_cross: | `:latin_cross:` | :orthodox_cross: | `:orthodox_cross:` | [top](#table-of-contents) | 1282 | | [top](#symbols) | :star_and_crescent: | `:star_and_crescent:` | :peace_symbol: | `:peace_symbol:` | [top](#table-of-contents) | 1283 | | [top](#symbols) | :menorah: | `:menorah:` | :six_pointed_star: | `:six_pointed_star:` | [top](#table-of-contents) | 1284 | 1285 | #### Zodiac 1286 | 1287 | | | ico | shortcode | ico | shortcode | | 1288 | | - | :-: | - | :-: | - | - | 1289 | | [top](#symbols) | :aries: | `:aries:` | :taurus: | `:taurus:` | [top](#table-of-contents) | 1290 | | [top](#symbols) | :gemini: | `:gemini:` | :cancer: | `:cancer:` | [top](#table-of-contents) | 1291 | | [top](#symbols) | :leo: | `:leo:` | :virgo: | `:virgo:` | [top](#table-of-contents) | 1292 | | [top](#symbols) | :libra: | `:libra:` | :scorpius: | `:scorpius:` | [top](#table-of-contents) | 1293 | | [top](#symbols) | :sagittarius: | `:sagittarius:` | :capricorn: | `:capricorn:` | [top](#table-of-contents) | 1294 | | [top](#symbols) | :aquarius: | `:aquarius:` | :pisces: | `:pisces:` | [top](#table-of-contents) | 1295 | | [top](#symbols) | :ophiuchus: | `:ophiuchus:` | | | [top](#table-of-contents) | 1296 | 1297 | #### Av Symbol 1298 | 1299 | | | ico | shortcode | ico | shortcode | | 1300 | | - | :-: | - | :-: | - | - | 1301 | | [top](#symbols) | :twisted_rightwards_arrows: | `:twisted_rightwards_arrows:` | :repeat: | `:repeat:` | [top](#table-of-contents) | 1302 | | [top](#symbols) | :repeat_one: | `:repeat_one:` | :arrow_forward: | `:arrow_forward:` | [top](#table-of-contents) | 1303 | | [top](#symbols) | :fast_forward: | `:fast_forward:` | :next_track_button: | `:next_track_button:` | [top](#table-of-contents) | 1304 | | [top](#symbols) | :play_or_pause_button: | `:play_or_pause_button:` | :arrow_backward: | `:arrow_backward:` | [top](#table-of-contents) | 1305 | | [top](#symbols) | :rewind: | `:rewind:` | :previous_track_button: | `:previous_track_button:` | [top](#table-of-contents) | 1306 | | [top](#symbols) | :arrow_up_small: | `:arrow_up_small:` | :arrow_double_up: | `:arrow_double_up:` | [top](#table-of-contents) | 1307 | | [top](#symbols) | :arrow_down_small: | `:arrow_down_small:` | :arrow_double_down: | `:arrow_double_down:` | [top](#table-of-contents) | 1308 | | [top](#symbols) | :pause_button: | `:pause_button:` | :stop_button: | `:stop_button:` | [top](#table-of-contents) | 1309 | | [top](#symbols) | :record_button: | `:record_button:` | :eject_button: | `:eject_button:` | [top](#table-of-contents) | 1310 | | [top](#symbols) | :cinema: | `:cinema:` | :low_brightness: | `:low_brightness:` | [top](#table-of-contents) | 1311 | | [top](#symbols) | :high_brightness: | `:high_brightness:` | :signal_strength: | `:signal_strength:` | [top](#table-of-contents) | 1312 | | [top](#symbols) | :vibration_mode: | `:vibration_mode:` | :mobile_phone_off: | `:mobile_phone_off:` | [top](#table-of-contents) | 1313 | 1314 | #### Gender 1315 | 1316 | | | ico | shortcode | ico | shortcode | | 1317 | | - | :-: | - | :-: | - | - | 1318 | | [top](#symbols) | :female_sign: | `:female_sign:` | :male_sign: | `:male_sign:` | [top](#table-of-contents) | 1319 | | [top](#symbols) | :transgender_symbol: | `:transgender_symbol:` | | | [top](#table-of-contents) | 1320 | 1321 | #### Math 1322 | 1323 | | | ico | shortcode | ico | shortcode | | 1324 | | - | :-: | - | :-: | - | - | 1325 | | [top](#symbols) | :heavy_multiplication_x: | `:heavy_multiplication_x:` | :heavy_plus_sign: | `:heavy_plus_sign:` | [top](#table-of-contents) | 1326 | | [top](#symbols) | :heavy_minus_sign: | `:heavy_minus_sign:` | :heavy_division_sign: | `:heavy_division_sign:` | [top](#table-of-contents) | 1327 | | [top](#symbols) | :infinity: | `:infinity:` | | | [top](#table-of-contents) | 1328 | 1329 | #### Punctuation 1330 | 1331 | | | ico | shortcode | ico | shortcode | | 1332 | | - | :-: | - | :-: | - | - | 1333 | | [top](#symbols) | :bangbang: | `:bangbang:` | :interrobang: | `:interrobang:` | [top](#table-of-contents) | 1334 | | [top](#symbols) | :question: | `:question:` | :grey_question: | `:grey_question:` | [top](#table-of-contents) | 1335 | | [top](#symbols) | :grey_exclamation: | `:grey_exclamation:` | :exclamation: | `:exclamation:`
`:heavy_exclamation_mark:` | [top](#table-of-contents) | 1336 | | [top](#symbols) | :wavy_dash: | `:wavy_dash:` | | | [top](#table-of-contents) | 1337 | 1338 | #### Currency 1339 | 1340 | | | ico | shortcode | ico | shortcode | | 1341 | | - | :-: | - | :-: | - | - | 1342 | | [top](#symbols) | :currency_exchange: | `:currency_exchange:` | :heavy_dollar_sign: | `:heavy_dollar_sign:` | [top](#table-of-contents) | 1343 | 1344 | #### Other Symbol 1345 | 1346 | | | ico | shortcode | ico | shortcode | | 1347 | | - | :-: | - | :-: | - | - | 1348 | | [top](#symbols) | :medical_symbol: | `:medical_symbol:` | :recycle: | `:recycle:` | [top](#table-of-contents) | 1349 | | [top](#symbols) | :fleur_de_lis: | `:fleur_de_lis:` | :trident: | `:trident:` | [top](#table-of-contents) | 1350 | | [top](#symbols) | :name_badge: | `:name_badge:` | :beginner: | `:beginner:` | [top](#table-of-contents) | 1351 | | [top](#symbols) | :o: | `:o:` | :white_check_mark: | `:white_check_mark:` | [top](#table-of-contents) | 1352 | | [top](#symbols) | :ballot_box_with_check: | `:ballot_box_with_check:` | :heavy_check_mark: | `:heavy_check_mark:` | [top](#table-of-contents) | 1353 | | [top](#symbols) | :x: | `:x:` | :negative_squared_cross_mark: | `:negative_squared_cross_mark:` | [top](#table-of-contents) | 1354 | | [top](#symbols) | :curly_loop: | `:curly_loop:` | :loop: | `:loop:` | [top](#table-of-contents) | 1355 | | [top](#symbols) | :part_alternation_mark: | `:part_alternation_mark:` | :eight_spoked_asterisk: | `:eight_spoked_asterisk:` | [top](#table-of-contents) | 1356 | | [top](#symbols) | :eight_pointed_black_star: | `:eight_pointed_black_star:` | :sparkle: | `:sparkle:` | [top](#table-of-contents) | 1357 | | [top](#symbols) | :copyright: | `:copyright:` | :registered: | `:registered:` | [top](#table-of-contents) | 1358 | | [top](#symbols) | :tm: | `:tm:` | | | [top](#table-of-contents) | 1359 | 1360 | #### Keycap 1361 | 1362 | | | ico | shortcode | ico | shortcode | | 1363 | | - | :-: | - | :-: | - | - | 1364 | | [top](#symbols) | :hash: | `:hash:` | :asterisk: | `:asterisk:` | [top](#table-of-contents) | 1365 | | [top](#symbols) | :zero: | `:zero:` | :one: | `:one:` | [top](#table-of-contents) | 1366 | | [top](#symbols) | :two: | `:two:` | :three: | `:three:` | [top](#table-of-contents) | 1367 | | [top](#symbols) | :four: | `:four:` | :five: | `:five:` | [top](#table-of-contents) | 1368 | | [top](#symbols) | :six: | `:six:` | :seven: | `:seven:` | [top](#table-of-contents) | 1369 | | [top](#symbols) | :eight: | `:eight:` | :nine: | `:nine:` | [top](#table-of-contents) | 1370 | | [top](#symbols) | :keycap_ten: | `:keycap_ten:` | | | [top](#table-of-contents) | 1371 | 1372 | #### Alphanum 1373 | 1374 | | | ico | shortcode | ico | shortcode | | 1375 | | - | :-: | - | :-: | - | - | 1376 | | [top](#symbols) | :capital_abcd: | `:capital_abcd:` | :abcd: | `:abcd:` | [top](#table-of-contents) | 1377 | | [top](#symbols) | :1234: | `:1234:` | :symbols: | `:symbols:` | [top](#table-of-contents) | 1378 | | [top](#symbols) | :abc: | `:abc:` | :a: | `:a:` | [top](#table-of-contents) | 1379 | | [top](#symbols) | :ab: | `:ab:` | :b: | `:b:` | [top](#table-of-contents) | 1380 | | [top](#symbols) | :cl: | `:cl:` | :cool: | `:cool:` | [top](#table-of-contents) | 1381 | | [top](#symbols) | :free: | `:free:` | :information_source: | `:information_source:` | [top](#table-of-contents) | 1382 | | [top](#symbols) | :id: | `:id:` | :m: | `:m:` | [top](#table-of-contents) | 1383 | | [top](#symbols) | :new: | `:new:` | :ng: | `:ng:` | [top](#table-of-contents) | 1384 | | [top](#symbols) | :o2: | `:o2:` | :ok: | `:ok:` | [top](#table-of-contents) | 1385 | | [top](#symbols) | :parking: | `:parking:` | :sos: | `:sos:` | [top](#table-of-contents) | 1386 | | [top](#symbols) | :up: | `:up:` | :vs: | `:vs:` | [top](#table-of-contents) | 1387 | | [top](#symbols) | :koko: | `:koko:` | :sa: | `:sa:` | [top](#table-of-contents) | 1388 | | [top](#symbols) | :u6708: | `:u6708:` | :u6709: | `:u6709:` | [top](#table-of-contents) | 1389 | | [top](#symbols) | :u6307: | `:u6307:` | :ideograph_advantage: | `:ideograph_advantage:` | [top](#table-of-contents) | 1390 | | [top](#symbols) | :u5272: | `:u5272:` | :u7121: | `:u7121:` | [top](#table-of-contents) | 1391 | | [top](#symbols) | :u7981: | `:u7981:` | :accept: | `:accept:` | [top](#table-of-contents) | 1392 | | [top](#symbols) | :u7533: | `:u7533:` | :u5408: | `:u5408:` | [top](#table-of-contents) | 1393 | | [top](#symbols) | :u7a7a: | `:u7a7a:` | :congratulations: | `:congratulations:` | [top](#table-of-contents) | 1394 | | [top](#symbols) | :secret: | `:secret:` | :u55b6: | `:u55b6:` | [top](#table-of-contents) | 1395 | | [top](#symbols) | :u6e80: | `:u6e80:` | | | [top](#table-of-contents) | 1396 | 1397 | #### Geometric 1398 | 1399 | | | ico | shortcode | ico | shortcode | | 1400 | | - | :-: | - | :-: | - | - | 1401 | | [top](#symbols) | :red_circle: | `:red_circle:` | :orange_circle: | `:orange_circle:` | [top](#table-of-contents) | 1402 | | [top](#symbols) | :yellow_circle: | `:yellow_circle:` | :green_circle: | `:green_circle:` | [top](#table-of-contents) | 1403 | | [top](#symbols) | :large_blue_circle: | `:large_blue_circle:` | :purple_circle: | `:purple_circle:` | [top](#table-of-contents) | 1404 | | [top](#symbols) | :brown_circle: | `:brown_circle:` | :black_circle: | `:black_circle:` | [top](#table-of-contents) | 1405 | | [top](#symbols) | :white_circle: | `:white_circle:` | :red_square: | `:red_square:` | [top](#table-of-contents) | 1406 | | [top](#symbols) | :orange_square: | `:orange_square:` | :yellow_square: | `:yellow_square:` | [top](#table-of-contents) | 1407 | | [top](#symbols) | :green_square: | `:green_square:` | :blue_square: | `:blue_square:` | [top](#table-of-contents) | 1408 | | [top](#symbols) | :purple_square: | `:purple_square:` | :brown_square: | `:brown_square:` | [top](#table-of-contents) | 1409 | | [top](#symbols) | :black_large_square: | `:black_large_square:` | :white_large_square: | `:white_large_square:` | [top](#table-of-contents) | 1410 | | [top](#symbols) | :black_medium_square: | `:black_medium_square:` | :white_medium_square: | `:white_medium_square:` | [top](#table-of-contents) | 1411 | | [top](#symbols) | :black_medium_small_square: | `:black_medium_small_square:` | :white_medium_small_square: | `:white_medium_small_square:` | [top](#table-of-contents) | 1412 | | [top](#symbols) | :black_small_square: | `:black_small_square:` | :white_small_square: | `:white_small_square:` | [top](#table-of-contents) | 1413 | | [top](#symbols) | :large_orange_diamond: | `:large_orange_diamond:` | :large_blue_diamond: | `:large_blue_diamond:` | [top](#table-of-contents) | 1414 | | [top](#symbols) | :small_orange_diamond: | `:small_orange_diamond:` | :small_blue_diamond: | `:small_blue_diamond:` | [top](#table-of-contents) | 1415 | | [top](#symbols) | :small_red_triangle: | `:small_red_triangle:` | :small_red_triangle_down: | `:small_red_triangle_down:` | [top](#table-of-contents) | 1416 | | [top](#symbols) | :diamond_shape_with_a_dot_inside: | `:diamond_shape_with_a_dot_inside:` | :radio_button: | `:radio_button:` | [top](#table-of-contents) | 1417 | | [top](#symbols) | :white_square_button: | `:white_square_button:` | :black_square_button: | `:black_square_button:` | [top](#table-of-contents) | 1418 | 1419 | ### Flags 1420 | 1421 | - [Flag](#flag) 1422 | - [Country Flag](#country-flag) 1423 | - [Subdivision Flag](#subdivision-flag) 1424 | 1425 | #### Flag 1426 | 1427 | | | ico | shortcode | ico | shortcode | | 1428 | | - | :-: | - | :-: | - | - | 1429 | | [top](#flags) | :checkered_flag: | `:checkered_flag:` | :triangular_flag_on_post: | `:triangular_flag_on_post:` | [top](#table-of-contents) | 1430 | | [top](#flags) | :crossed_flags: | `:crossed_flags:` | :black_flag: | `:black_flag:` | [top](#table-of-contents) | 1431 | | [top](#flags) | :white_flag: | `:white_flag:` | :rainbow_flag: | `:rainbow_flag:` | [top](#table-of-contents) | 1432 | | [top](#flags) | :transgender_flag: | `:transgender_flag:` | :pirate_flag: | `:pirate_flag:` | [top](#table-of-contents) | 1433 | 1434 | #### Country Flag 1435 | 1436 | | | ico | shortcode | ico | shortcode | | 1437 | | - | :-: | - | :-: | - | - | 1438 | | [top](#flags) | :ascension_island: | `:ascension_island:` | :andorra: | `:andorra:` | [top](#table-of-contents) | 1439 | | [top](#flags) | :united_arab_emirates: | `:united_arab_emirates:` | :afghanistan: | `:afghanistan:` | [top](#table-of-contents) | 1440 | | [top](#flags) | :antigua_barbuda: | `:antigua_barbuda:` | :anguilla: | `:anguilla:` | [top](#table-of-contents) | 1441 | | [top](#flags) | :albania: | `:albania:` | :armenia: | `:armenia:` | [top](#table-of-contents) | 1442 | | [top](#flags) | :angola: | `:angola:` | :antarctica: | `:antarctica:` | [top](#table-of-contents) | 1443 | | [top](#flags) | :argentina: | `:argentina:` | :american_samoa: | `:american_samoa:` | [top](#table-of-contents) | 1444 | | [top](#flags) | :austria: | `:austria:` | :australia: | `:australia:` | [top](#table-of-contents) | 1445 | | [top](#flags) | :aruba: | `:aruba:` | :aland_islands: | `:aland_islands:` | [top](#table-of-contents) | 1446 | | [top](#flags) | :azerbaijan: | `:azerbaijan:` | :bosnia_herzegovina: | `:bosnia_herzegovina:` | [top](#table-of-contents) | 1447 | | [top](#flags) | :barbados: | `:barbados:` | :bangladesh: | `:bangladesh:` | [top](#table-of-contents) | 1448 | | [top](#flags) | :belgium: | `:belgium:` | :burkina_faso: | `:burkina_faso:` | [top](#table-of-contents) | 1449 | | [top](#flags) | :bulgaria: | `:bulgaria:` | :bahrain: | `:bahrain:` | [top](#table-of-contents) | 1450 | | [top](#flags) | :burundi: | `:burundi:` | :benin: | `:benin:` | [top](#table-of-contents) | 1451 | | [top](#flags) | :st_barthelemy: | `:st_barthelemy:` | :bermuda: | `:bermuda:` | [top](#table-of-contents) | 1452 | | [top](#flags) | :brunei: | `:brunei:` | :bolivia: | `:bolivia:` | [top](#table-of-contents) | 1453 | | [top](#flags) | :caribbean_netherlands: | `:caribbean_netherlands:` | :brazil: | `:brazil:` | [top](#table-of-contents) | 1454 | | [top](#flags) | :bahamas: | `:bahamas:` | :bhutan: | `:bhutan:` | [top](#table-of-contents) | 1455 | | [top](#flags) | :bouvet_island: | `:bouvet_island:` | :botswana: | `:botswana:` | [top](#table-of-contents) | 1456 | | [top](#flags) | :belarus: | `:belarus:` | :belize: | `:belize:` | [top](#table-of-contents) | 1457 | | [top](#flags) | :canada: | `:canada:` | :cocos_islands: | `:cocos_islands:` | [top](#table-of-contents) | 1458 | | [top](#flags) | :congo_kinshasa: | `:congo_kinshasa:` | :central_african_republic: | `:central_african_republic:` | [top](#table-of-contents) | 1459 | | [top](#flags) | :congo_brazzaville: | `:congo_brazzaville:` | :switzerland: | `:switzerland:` | [top](#table-of-contents) | 1460 | | [top](#flags) | :cote_divoire: | `:cote_divoire:` | :cook_islands: | `:cook_islands:` | [top](#table-of-contents) | 1461 | | [top](#flags) | :chile: | `:chile:` | :cameroon: | `:cameroon:` | [top](#table-of-contents) | 1462 | | [top](#flags) | :cn: | `:cn:` | :colombia: | `:colombia:` | [top](#table-of-contents) | 1463 | | [top](#flags) | :clipperton_island: | `:clipperton_island:` | :costa_rica: | `:costa_rica:` | [top](#table-of-contents) | 1464 | | [top](#flags) | :cuba: | `:cuba:` | :cape_verde: | `:cape_verde:` | [top](#table-of-contents) | 1465 | | [top](#flags) | :curacao: | `:curacao:` | :christmas_island: | `:christmas_island:` | [top](#table-of-contents) | 1466 | | [top](#flags) | :cyprus: | `:cyprus:` | :czech_republic: | `:czech_republic:` | [top](#table-of-contents) | 1467 | | [top](#flags) | :de: | `:de:` | :diego_garcia: | `:diego_garcia:` | [top](#table-of-contents) | 1468 | | [top](#flags) | :djibouti: | `:djibouti:` | :denmark: | `:denmark:` | [top](#table-of-contents) | 1469 | | [top](#flags) | :dominica: | `:dominica:` | :dominican_republic: | `:dominican_republic:` | [top](#table-of-contents) | 1470 | | [top](#flags) | :algeria: | `:algeria:` | :ceuta_melilla: | `:ceuta_melilla:` | [top](#table-of-contents) | 1471 | | [top](#flags) | :ecuador: | `:ecuador:` | :estonia: | `:estonia:` | [top](#table-of-contents) | 1472 | | [top](#flags) | :egypt: | `:egypt:` | :western_sahara: | `:western_sahara:` | [top](#table-of-contents) | 1473 | | [top](#flags) | :eritrea: | `:eritrea:` | :es: | `:es:` | [top](#table-of-contents) | 1474 | | [top](#flags) | :ethiopia: | `:ethiopia:` | :eu: | `:eu:`
`:european_union:` | [top](#table-of-contents) | 1475 | | [top](#flags) | :finland: | `:finland:` | :fiji: | `:fiji:` | [top](#table-of-contents) | 1476 | | [top](#flags) | :falkland_islands: | `:falkland_islands:` | :micronesia: | `:micronesia:` | [top](#table-of-contents) | 1477 | | [top](#flags) | :faroe_islands: | `:faroe_islands:` | :fr: | `:fr:` | [top](#table-of-contents) | 1478 | | [top](#flags) | :gabon: | `:gabon:` | :gb: | `:gb:`
`:uk:` | [top](#table-of-contents) | 1479 | | [top](#flags) | :grenada: | `:grenada:` | :georgia: | `:georgia:` | [top](#table-of-contents) | 1480 | | [top](#flags) | :french_guiana: | `:french_guiana:` | :guernsey: | `:guernsey:` | [top](#table-of-contents) | 1481 | | [top](#flags) | :ghana: | `:ghana:` | :gibraltar: | `:gibraltar:` | [top](#table-of-contents) | 1482 | | [top](#flags) | :greenland: | `:greenland:` | :gambia: | `:gambia:` | [top](#table-of-contents) | 1483 | | [top](#flags) | :guinea: | `:guinea:` | :guadeloupe: | `:guadeloupe:` | [top](#table-of-contents) | 1484 | | [top](#flags) | :equatorial_guinea: | `:equatorial_guinea:` | :greece: | `:greece:` | [top](#table-of-contents) | 1485 | | [top](#flags) | :south_georgia_south_sandwich_islands: | `:south_georgia_south_sandwich_islands:` | :guatemala: | `:guatemala:` | [top](#table-of-contents) | 1486 | | [top](#flags) | :guam: | `:guam:` | :guinea_bissau: | `:guinea_bissau:` | [top](#table-of-contents) | 1487 | | [top](#flags) | :guyana: | `:guyana:` | :hong_kong: | `:hong_kong:` | [top](#table-of-contents) | 1488 | | [top](#flags) | :heard_mcdonald_islands: | `:heard_mcdonald_islands:` | :honduras: | `:honduras:` | [top](#table-of-contents) | 1489 | | [top](#flags) | :croatia: | `:croatia:` | :haiti: | `:haiti:` | [top](#table-of-contents) | 1490 | | [top](#flags) | :hungary: | `:hungary:` | :canary_islands: | `:canary_islands:` | [top](#table-of-contents) | 1491 | | [top](#flags) | :indonesia: | `:indonesia:` | :ireland: | `:ireland:` | [top](#table-of-contents) | 1492 | | [top](#flags) | :israel: | `:israel:` | :isle_of_man: | `:isle_of_man:` | [top](#table-of-contents) | 1493 | | [top](#flags) | :india: | `:india:` | :british_indian_ocean_territory: | `:british_indian_ocean_territory:` | [top](#table-of-contents) | 1494 | | [top](#flags) | :iraq: | `:iraq:` | :iran: | `:iran:` | [top](#table-of-contents) | 1495 | | [top](#flags) | :iceland: | `:iceland:` | :it: | `:it:` | [top](#table-of-contents) | 1496 | | [top](#flags) | :jersey: | `:jersey:` | :jamaica: | `:jamaica:` | [top](#table-of-contents) | 1497 | | [top](#flags) | :jordan: | `:jordan:` | :jp: | `:jp:` | [top](#table-of-contents) | 1498 | | [top](#flags) | :kenya: | `:kenya:` | :kyrgyzstan: | `:kyrgyzstan:` | [top](#table-of-contents) | 1499 | | [top](#flags) | :cambodia: | `:cambodia:` | :kiribati: | `:kiribati:` | [top](#table-of-contents) | 1500 | | [top](#flags) | :comoros: | `:comoros:` | :st_kitts_nevis: | `:st_kitts_nevis:` | [top](#table-of-contents) | 1501 | | [top](#flags) | :north_korea: | `:north_korea:` | :kr: | `:kr:` | [top](#table-of-contents) | 1502 | | [top](#flags) | :kuwait: | `:kuwait:` | :cayman_islands: | `:cayman_islands:` | [top](#table-of-contents) | 1503 | | [top](#flags) | :kazakhstan: | `:kazakhstan:` | :laos: | `:laos:` | [top](#table-of-contents) | 1504 | | [top](#flags) | :lebanon: | `:lebanon:` | :st_lucia: | `:st_lucia:` | [top](#table-of-contents) | 1505 | | [top](#flags) | :liechtenstein: | `:liechtenstein:` | :sri_lanka: | `:sri_lanka:` | [top](#table-of-contents) | 1506 | | [top](#flags) | :liberia: | `:liberia:` | :lesotho: | `:lesotho:` | [top](#table-of-contents) | 1507 | | [top](#flags) | :lithuania: | `:lithuania:` | :luxembourg: | `:luxembourg:` | [top](#table-of-contents) | 1508 | | [top](#flags) | :latvia: | `:latvia:` | :libya: | `:libya:` | [top](#table-of-contents) | 1509 | | [top](#flags) | :morocco: | `:morocco:` | :monaco: | `:monaco:` | [top](#table-of-contents) | 1510 | | [top](#flags) | :moldova: | `:moldova:` | :montenegro: | `:montenegro:` | [top](#table-of-contents) | 1511 | | [top](#flags) | :st_martin: | `:st_martin:` | :madagascar: | `:madagascar:` | [top](#table-of-contents) | 1512 | | [top](#flags) | :marshall_islands: | `:marshall_islands:` | :macedonia: | `:macedonia:` | [top](#table-of-contents) | 1513 | | [top](#flags) | :mali: | `:mali:` | :myanmar: | `:myanmar:` | [top](#table-of-contents) | 1514 | | [top](#flags) | :mongolia: | `:mongolia:` | :macau: | `:macau:` | [top](#table-of-contents) | 1515 | | [top](#flags) | :northern_mariana_islands: | `:northern_mariana_islands:` | :martinique: | `:martinique:` | [top](#table-of-contents) | 1516 | | [top](#flags) | :mauritania: | `:mauritania:` | :montserrat: | `:montserrat:` | [top](#table-of-contents) | 1517 | | [top](#flags) | :malta: | `:malta:` | :mauritius: | `:mauritius:` | [top](#table-of-contents) | 1518 | | [top](#flags) | :maldives: | `:maldives:` | :malawi: | `:malawi:` | [top](#table-of-contents) | 1519 | | [top](#flags) | :mexico: | `:mexico:` | :malaysia: | `:malaysia:` | [top](#table-of-contents) | 1520 | | [top](#flags) | :mozambique: | `:mozambique:` | :namibia: | `:namibia:` | [top](#table-of-contents) | 1521 | | [top](#flags) | :new_caledonia: | `:new_caledonia:` | :niger: | `:niger:` | [top](#table-of-contents) | 1522 | | [top](#flags) | :norfolk_island: | `:norfolk_island:` | :nigeria: | `:nigeria:` | [top](#table-of-contents) | 1523 | | [top](#flags) | :nicaragua: | `:nicaragua:` | :netherlands: | `:netherlands:` | [top](#table-of-contents) | 1524 | | [top](#flags) | :norway: | `:norway:` | :nepal: | `:nepal:` | [top](#table-of-contents) | 1525 | | [top](#flags) | :nauru: | `:nauru:` | :niue: | `:niue:` | [top](#table-of-contents) | 1526 | | [top](#flags) | :new_zealand: | `:new_zealand:` | :oman: | `:oman:` | [top](#table-of-contents) | 1527 | | [top](#flags) | :panama: | `:panama:` | :peru: | `:peru:` | [top](#table-of-contents) | 1528 | | [top](#flags) | :french_polynesia: | `:french_polynesia:` | :papua_new_guinea: | `:papua_new_guinea:` | [top](#table-of-contents) | 1529 | | [top](#flags) | :philippines: | `:philippines:` | :pakistan: | `:pakistan:` | [top](#table-of-contents) | 1530 | | [top](#flags) | :poland: | `:poland:` | :st_pierre_miquelon: | `:st_pierre_miquelon:` | [top](#table-of-contents) | 1531 | | [top](#flags) | :pitcairn_islands: | `:pitcairn_islands:` | :puerto_rico: | `:puerto_rico:` | [top](#table-of-contents) | 1532 | | [top](#flags) | :palestinian_territories: | `:palestinian_territories:` | :portugal: | `:portugal:` | [top](#table-of-contents) | 1533 | | [top](#flags) | :palau: | `:palau:` | :paraguay: | `:paraguay:` | [top](#table-of-contents) | 1534 | | [top](#flags) | :qatar: | `:qatar:` | :reunion: | `:reunion:` | [top](#table-of-contents) | 1535 | | [top](#flags) | :romania: | `:romania:` | :serbia: | `:serbia:` | [top](#table-of-contents) | 1536 | | [top](#flags) | :ru: | `:ru:` | :rwanda: | `:rwanda:` | [top](#table-of-contents) | 1537 | | [top](#flags) | :saudi_arabia: | `:saudi_arabia:` | :solomon_islands: | `:solomon_islands:` | [top](#table-of-contents) | 1538 | | [top](#flags) | :seychelles: | `:seychelles:` | :sudan: | `:sudan:` | [top](#table-of-contents) | 1539 | | [top](#flags) | :sweden: | `:sweden:` | :singapore: | `:singapore:` | [top](#table-of-contents) | 1540 | | [top](#flags) | :st_helena: | `:st_helena:` | :slovenia: | `:slovenia:` | [top](#table-of-contents) | 1541 | | [top](#flags) | :svalbard_jan_mayen: | `:svalbard_jan_mayen:` | :slovakia: | `:slovakia:` | [top](#table-of-contents) | 1542 | | [top](#flags) | :sierra_leone: | `:sierra_leone:` | :san_marino: | `:san_marino:` | [top](#table-of-contents) | 1543 | | [top](#flags) | :senegal: | `:senegal:` | :somalia: | `:somalia:` | [top](#table-of-contents) | 1544 | | [top](#flags) | :suriname: | `:suriname:` | :south_sudan: | `:south_sudan:` | [top](#table-of-contents) | 1545 | | [top](#flags) | :sao_tome_principe: | `:sao_tome_principe:` | :el_salvador: | `:el_salvador:` | [top](#table-of-contents) | 1546 | | [top](#flags) | :sint_maarten: | `:sint_maarten:` | :syria: | `:syria:` | [top](#table-of-contents) | 1547 | | [top](#flags) | :swaziland: | `:swaziland:` | :tristan_da_cunha: | `:tristan_da_cunha:` | [top](#table-of-contents) | 1548 | | [top](#flags) | :turks_caicos_islands: | `:turks_caicos_islands:` | :chad: | `:chad:` | [top](#table-of-contents) | 1549 | | [top](#flags) | :french_southern_territories: | `:french_southern_territories:` | :togo: | `:togo:` | [top](#table-of-contents) | 1550 | | [top](#flags) | :thailand: | `:thailand:` | :tajikistan: | `:tajikistan:` | [top](#table-of-contents) | 1551 | | [top](#flags) | :tokelau: | `:tokelau:` | :timor_leste: | `:timor_leste:` | [top](#table-of-contents) | 1552 | | [top](#flags) | :turkmenistan: | `:turkmenistan:` | :tunisia: | `:tunisia:` | [top](#table-of-contents) | 1553 | | [top](#flags) | :tonga: | `:tonga:` | :tr: | `:tr:` | [top](#table-of-contents) | 1554 | | [top](#flags) | :trinidad_tobago: | `:trinidad_tobago:` | :tuvalu: | `:tuvalu:` | [top](#table-of-contents) | 1555 | | [top](#flags) | :taiwan: | `:taiwan:` | :tanzania: | `:tanzania:` | [top](#table-of-contents) | 1556 | | [top](#flags) | :ukraine: | `:ukraine:` | :uganda: | `:uganda:` | [top](#table-of-contents) | 1557 | | [top](#flags) | :us_outlying_islands: | `:us_outlying_islands:` | :united_nations: | `:united_nations:` | [top](#table-of-contents) | 1558 | | [top](#flags) | :us: | `:us:` | :uruguay: | `:uruguay:` | [top](#table-of-contents) | 1559 | | [top](#flags) | :uzbekistan: | `:uzbekistan:` | :vatican_city: | `:vatican_city:` | [top](#table-of-contents) | 1560 | | [top](#flags) | :st_vincent_grenadines: | `:st_vincent_grenadines:` | :venezuela: | `:venezuela:` | [top](#table-of-contents) | 1561 | | [top](#flags) | :british_virgin_islands: | `:british_virgin_islands:` | :us_virgin_islands: | `:us_virgin_islands:` | [top](#table-of-contents) | 1562 | | [top](#flags) | :vietnam: | `:vietnam:` | :vanuatu: | `:vanuatu:` | [top](#table-of-contents) | 1563 | | [top](#flags) | :wallis_futuna: | `:wallis_futuna:` | :samoa: | `:samoa:` | [top](#table-of-contents) | 1564 | | [top](#flags) | :kosovo: | `:kosovo:` | :yemen: | `:yemen:` | [top](#table-of-contents) | 1565 | | [top](#flags) | :mayotte: | `:mayotte:` | :south_africa: | `:south_africa:` | [top](#table-of-contents) | 1566 | | [top](#flags) | :zambia: | `:zambia:` | :zimbabwe: | `:zimbabwe:` | [top](#table-of-contents) | 1567 | 1568 | #### Subdivision Flag 1569 | 1570 | | | ico | shortcode | ico | shortcode | | 1571 | | - | :-: | - | :-: | - | - | 1572 | | [top](#flags) | :england: | `:england:` | :scotland: | `:scotland:` | [top](#table-of-contents) | 1573 | | [top](#flags) | :wales: | `:wales:` | | | [top](#table-of-contents) | 1574 | 1575 | ### GitHub Custom Emoji 1576 | 1577 | | | ico | shortcode | ico | shortcode | | 1578 | | - | :-: | - | :-: | - | - | 1579 | | [top](#github-custom-emoji) | :accessibility: | `:accessibility:` | :atom: | `:atom:` | [top](#table-of-contents) | 1580 | | [top](#github-custom-emoji) | :basecamp: | `:basecamp:` | :basecampy: | `:basecampy:` | [top](#table-of-contents) | 1581 | | [top](#github-custom-emoji) | :bowtie: | `:bowtie:` | :dependabot: | `:dependabot:` | [top](#table-of-contents) | 1582 | | [top](#github-custom-emoji) | :electron: | `:electron:` | :feelsgood: | `:feelsgood:` | [top](#table-of-contents) | 1583 | | [top](#github-custom-emoji) | :finnadie: | `:finnadie:` | :fishsticks: | `:fishsticks:` | [top](#table-of-contents) | 1584 | | [top](#github-custom-emoji) | :goberserk: | `:goberserk:` | :godmode: | `:godmode:` | [top](#table-of-contents) | 1585 | | [top](#github-custom-emoji) | :hurtrealbad: | `:hurtrealbad:` | :neckbeard: | `:neckbeard:` | [top](#table-of-contents) | 1586 | | [top](#github-custom-emoji) | :octocat: | `:octocat:` | :rage1: | `:rage1:` | [top](#table-of-contents) | 1587 | | [top](#github-custom-emoji) | :rage2: | `:rage2:` | :rage3: | `:rage3:` | [top](#table-of-contents) | 1588 | | [top](#github-custom-emoji) | :rage4: | `:rage4:` | :shipit: | `:shipit:` | [top](#table-of-contents) | 1589 | | [top](#github-custom-emoji) | :suspect: | `:suspect:` | :trollface: | `:trollface:` | [top](#table-of-contents) | 1590 | 1591 | --------------------------------------------------------------------------------