├── .npmignore ├── README.md ├── .eslintrc.yml ├── .github └── workflows │ └── publish-npm.yml ├── package.json ├── LICENSE.md └── src ├── emoji-searcher.js ├── emoji-db.js └── database ├── emojilist_16.0.json ├── emojilist_esq.latest.json ├── emojilist_15.0.json └── emojilist_15.1.json /.npmignore: -------------------------------------------------------------------------------- 1 | .github 2 | .eslintrc.yml 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Emoji DB 2 | 3 | [![npm](https://img.shields.io/npm/v/emoji-db?style=flat-square)](https://npmjs.com/emoji-db) 4 | [![npm downloads](https://img.shields.io/npm/dm/emoji-db?style=flat-square)](https://npmjs.com/emoji-db) 5 | 6 | Unofficial Emojipedia.org emoji data 7 | -------------------------------------------------------------------------------- /.eslintrc.yml: -------------------------------------------------------------------------------- 1 | env: 2 | commonjs: true 3 | es6: true 4 | node: true 5 | extends: 'eslint:recommended' 6 | globals: 7 | Atomics: readonly 8 | SharedArrayBuffer: readonly 9 | parserOptions: 10 | ecmaVersion: 2018 11 | rules: 12 | indent: 13 | - error 14 | - 4 15 | linebreak-style: 16 | - error 17 | - windows 18 | quotes: 19 | - error 20 | - single 21 | semi: 22 | - error 23 | - always 24 | -------------------------------------------------------------------------------- /.github/workflows/publish-npm.yml: -------------------------------------------------------------------------------- 1 | name: Release Builds 2 | 3 | on: 4 | push: 5 | tags: 6 | - "*.*.*" 7 | 8 | jobs: 9 | publish: 10 | runs-on: ubuntu-latest 11 | steps: 12 | - uses: actions/checkout@v4 13 | - uses: actions/setup-node@v3 14 | with: 15 | node-version: 20 16 | - uses: pnpm/action-setup@v4 17 | with: 18 | version: 9 19 | - run: pnpm install 20 | - run: pnpm test 21 | - uses: JS-DevTools/npm-publish@v3 22 | with: 23 | token: ${{ secrets.NPM_TOKEN }} 24 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "emoji-db", 3 | "version": "16.0.1", 4 | "description": "Unofficial Emojipedia.org emoji data", 5 | "directories": { 6 | "doc": "docs" 7 | }, 8 | "main": "src/emoji-db.js", 9 | "author": "Seiya Dev.", 10 | "license": "MIT", 11 | "homepage": "https://github.com/seiya-npm/emoji-db#README", 12 | "repository": { 13 | "type": "git", 14 | "url": "https://github.com/seiya-npm/emoji-db.git" 15 | }, 16 | "bugs": { 17 | "url": "https://github.com/seiya-npm/emoji-db/issues" 18 | }, 19 | "scripts": { 20 | "test": "echo no tests..." 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2022 Seiya Dev. 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 | -------------------------------------------------------------------------------- /src/emoji-searcher.js: -------------------------------------------------------------------------------- 1 | class EmojiSearcher { 2 | constructor(db) { 3 | let smap = {}; 4 | for (const r in db) { 5 | addSmapElement(smap, r); 6 | } 7 | this._smap = smap; 8 | } 9 | getEmojis(text) { 10 | let sp = this._smap; 11 | let lastCode = ''; 12 | let emojis = []; 13 | let root = true; 14 | let lastStart = -1; 15 | let index = 0; 16 | for (const rune of text) { 17 | const cp = rune.codePointAt(0).toString(16).padStart(4, '0'); 18 | if (cp in sp) { 19 | if (lastStart < 0) { 20 | lastStart = index; 21 | } 22 | if ('code' in sp[cp]) { 23 | lastCode = sp[cp].code; 24 | } 25 | if ('child' in sp[cp]) { 26 | sp = sp[cp].child; 27 | root = false; 28 | } 29 | else { 30 | if (lastCode != '') { 31 | emojis.push({found: lastCode, offset: lastStart, length: index-lastStart+rune.length}); 32 | lastCode = ''; 33 | } 34 | lastStart = -1; 35 | sp = this._smap; 36 | root = true; 37 | } 38 | } 39 | else { 40 | if (lastCode != '') { 41 | emojis.push({found: lastCode, offset: lastStart, length: index-lastStart}); 42 | lastCode = ''; 43 | } 44 | lastStart = -1; 45 | sp = this._smap; 46 | if (!root) { 47 | root = true; 48 | // retry search in root 49 | if (cp in sp) { 50 | if (lastStart < 0) { 51 | lastStart = index; 52 | } 53 | if ('code' in sp[cp]) { 54 | lastCode = sp[cp].code; 55 | } 56 | if ('child' in sp[cp]) { 57 | sp = sp[cp].child; 58 | root = false; 59 | } else { 60 | if (lastCode != '') { 61 | emojis.push({found: lastCode, offset: lastStart, length: index-lastStart+rune.length}); 62 | lastCode = ''; 63 | } 64 | lastStart = -1; 65 | sp = this._smap; 66 | root = true; 67 | } 68 | } 69 | } 70 | } 71 | index += rune.length; 72 | } 73 | if (lastCode != '') { 74 | emojis.push({found: lastCode, offset: lastStart, length: index-lastStart}); 75 | } 76 | emojis.forEach(e => e.emoji = text.substr(e.offset, e.length)); 77 | return emojis; 78 | } 79 | } 80 | 81 | function addSmapElement(smap, code) { 82 | let c = code.split('-'); 83 | let m = smap; 84 | for (let i = 0; i < c.length - 1; i++) { 85 | const p = c[i]; 86 | if (!(p in m)) { 87 | m[p] = {}; 88 | } 89 | if (!('child' in m[p])) { 90 | m[p].child = {}; 91 | } 92 | m = m[p].child; 93 | } 94 | let p = c[c.length - 1]; 95 | if (!(p in m)) { 96 | m[p] = {}; 97 | } 98 | m[p].code = code; 99 | } 100 | 101 | module.exports = EmojiSearcher; 102 | -------------------------------------------------------------------------------- /src/emoji-db.js: -------------------------------------------------------------------------------- 1 | const fs = require('fs'); 2 | const EmojiSearcher = require('./emoji-searcher'); 3 | 4 | function initDb({ dbDir, ignoreUnqualified, logInit }){ 5 | // default db filenames 6 | const filePrefx = 'emojilist_'; 7 | const fileSuffx = '.json'; 8 | // load files 9 | let dbFiles = fs.readdirSync(dbDir); 10 | // remove non db files 11 | dbFiles = dbFiles.filter((dbFile) => { 12 | if (!dbFile.endsWith('.json') || !dbFile.startsWith(filePrefx)) { 13 | return false; 14 | } 15 | return true; 16 | }); 17 | // make emoji db nums 18 | dbFiles = dbFiles.map((dbFile) => { 19 | return dbFile 20 | .replace(new RegExp('^'+filePrefx),'') 21 | .replace(new RegExp(fileSuffx+'$'),''); 22 | }); 23 | // sort dbs 24 | dbFiles.sort((a, b) => { 25 | a = !a.match(/nfq|esq|xdd/) ? parseFloat(a) : Infinity; 26 | b = !b.match(/nfq|esq|xdd/) ? parseFloat(b) : Infinity; 27 | return a - b; 28 | }); 29 | // log 30 | if (logInit) console.log('[LOG] Emoji versions:', dbFiles.join(', ')); 31 | // load dbs 32 | let emojiDbData = {}; 33 | if(!/[\/\\]$/.test(dbDir)){ 34 | dbDir += '/'; 35 | } 36 | for (const dbFile of dbFiles) { 37 | if(ignoreUnqualified && dbFile.match(/nfq/)){ 38 | continue; 39 | } 40 | let loadEmojiDbData = require(dbDir + filePrefx + dbFile + fileSuffx); 41 | for(let e of loadEmojiDbData){ 42 | if(dbFile.match(/xdd/) && emojiDbData[e.code]){ 43 | emojiDbData[e.code].description = e.description; 44 | } 45 | if(dbFile.match(/xdd/)){ 46 | continue; 47 | } 48 | if(emojiDbData[e.code]){ 49 | console.log('[WARN] DUBLICATE ENTRY IN DB:', dbFile, e.code); 50 | } 51 | emojiDbData[e.code] = e; 52 | } 53 | } 54 | // return db 55 | if (logInit) console.log('[LOG] EmojiDB loaded %s entries.', Object.keys(emojiDbData).length); 56 | return emojiDbData; 57 | } 58 | 59 | class EmojiDb { 60 | constructor(opts) { 61 | // reset to object 62 | if(typeof opts != 'object'){ 63 | opts = {}; 64 | } 65 | // set undefined 66 | const useDefaultDb = opts.useDefaultDb || undefined; 67 | const dbDir = opts.dbDir || undefined; 68 | const ignoreUnqualified = opts.ignoreUnqualified || undefined; 69 | const logInit = opts.logInit || undefined; 70 | // set defaults 71 | this.codePointSeparator = '-'; 72 | this.dbData = {}; 73 | // empty db 74 | if(useDefaultDb && !dbDir){ 75 | const dbDefDir = __dirname + '/database/'; 76 | this.dbData = initDb({ dbDir: dbDefDir, ignoreUnqualified, logInit }); 77 | } 78 | else if(!useDefaultDb && dbDir){ 79 | this.dbData = initDb({ dbDir, ignoreUnqualified, logInit }); 80 | } 81 | } 82 | searchFromText({ input, fixCodePoints, showData }){ 83 | let foundEmojis = new EmojiSearcher(this.dbData).getEmojis(input); 84 | if(fixCodePoints || showData){ 85 | let fixedFoundEmojis = []; 86 | for(let e of foundEmojis){ 87 | e.found = fixEmojiCodePoint(e.found, this.dbData); 88 | e.emoji = this.dbData[e.found].emoji; 89 | fixedFoundEmojis.push(e); 90 | } 91 | foundEmojis = fixedFoundEmojis; 92 | } 93 | if(showData){ 94 | const emojisData = []; 95 | for(let e of foundEmojis){ 96 | emojisData.push(this.dbData[e.found]); 97 | } 98 | return { found: foundEmojis, data: [...new Set(emojisData)] }; 99 | } 100 | else{ 101 | return foundEmojis; 102 | } 103 | } 104 | toCodePoint(emoji, separator){ 105 | let codePointArray = []; 106 | for (const textContent of emoji) { 107 | codePointArray.push(textContent.codePointAt(0).toString(16).padStart(4, '0')); 108 | } 109 | return codePointArray.join(separator || this.codePointSeparator); 110 | } 111 | fromCodePoint(codePoint, separator){ 112 | separator = separator || this.codePointSeparator; 113 | if(typeof codePoint === 'string'){ 114 | let codePointArray = codePoint.split(separator); 115 | for (let c in codePointArray) { 116 | codePointArray[c] = String.fromCodePoint(parseInt(codePointArray[c], 16)); 117 | } 118 | return codePointArray.join(''); 119 | } 120 | return String.fromCodePoint(codePoint); 121 | } 122 | toCodePointArray(emojiArray, separator){ 123 | let codePointArray = []; 124 | separator = separator || this.codePointSeparator; 125 | for (let ix = 0; ix < emojiArray.length; ix++) { 126 | codePointArray.push(this.toCodePoint(emojiArray[ix], separator)); 127 | } 128 | return codePointArray; 129 | } 130 | } 131 | 132 | function fixEmojiCodePoint(codePoint, dbData){ 133 | if(dbData[codePoint] && dbData[codePoint].qualified && dbData[dbData[codePoint].qualified]){ 134 | return dbData[codePoint].qualified; 135 | } 136 | return codePoint; 137 | } 138 | 139 | module.exports = EmojiDb; 140 | -------------------------------------------------------------------------------- /src/database/emojilist_16.0.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "category": "Emoji & People", 4 | "sub_category": "Face Sleepy", 5 | "code": "1fae9", 6 | "emoji": "🫩", 7 | "title": "Face with Bags Under Eyes", 8 | "tags": [ 9 | "bags", 10 | "bored", 11 | "exhausted", 12 | "eyes", 13 | "face", 14 | "fatigued", 15 | "late", 16 | "sleepy", 17 | "tired", 18 | "weary" 19 | ], 20 | "codepoints": [ 21 | "U+1FAE9" 22 | ], 23 | "image": { 24 | "brand": "apple", 25 | "platform": [ 26 | "Apple", 27 | "iOS 18.4" 28 | ], 29 | "source": "source/apple/419/face-with-bags-under-eyes_1fae9.png" 30 | } 31 | }, 32 | { 33 | "category": "Emoji & People", 34 | "sub_category": "Person Symbol", 35 | "code": "1fac6", 36 | "emoji": "🫆", 37 | "title": "Fingerprint", 38 | "tags": [ 39 | "clue", 40 | "crime", 41 | "detective", 42 | "fingerprint", 43 | "forensics", 44 | "identity", 45 | "mystery", 46 | "print", 47 | "safety", 48 | "trace" 49 | ], 50 | "codepoints": [ 51 | "U+1FAC6" 52 | ], 53 | "image": { 54 | "brand": "apple", 55 | "platform": [ 56 | "Apple", 57 | "iOS 18.4" 58 | ], 59 | "source": "source/apple/419/fingerprint_1fac6.png" 60 | } 61 | }, 62 | { 63 | "category": "Animals & Nature", 64 | "sub_category": "Plant Other", 65 | "code": "1fabe", 66 | "emoji": "🪾", 67 | "title": "Leafless Tree", 68 | "tags": [ 69 | "bare", 70 | "barren", 71 | "branches", 72 | "dead", 73 | "drought", 74 | "leafless", 75 | "tree", 76 | "trunk", 77 | "winter", 78 | "wood" 79 | ], 80 | "codepoints": [ 81 | "U+1FABE" 82 | ], 83 | "image": { 84 | "brand": "apple", 85 | "platform": [ 86 | "Apple", 87 | "iOS 18.4" 88 | ], 89 | "source": "source/apple/419/leafless-tree_1fabe.png" 90 | } 91 | }, 92 | { 93 | "category": "Food & Drink", 94 | "sub_category": "Food Vegetable", 95 | "code": "1fadc", 96 | "emoji": "🫜", 97 | "title": "Root Vegetable", 98 | "tags": [ 99 | "beet", 100 | "food", 101 | "garden", 102 | "radish", 103 | "root", 104 | "salad", 105 | "turnip", 106 | "vegetable", 107 | "vegetarian" 108 | ], 109 | "codepoints": [ 110 | "U+1FADC" 111 | ], 112 | "image": { 113 | "brand": "apple", 114 | "platform": [ 115 | "Apple", 116 | "iOS 18.4" 117 | ], 118 | "source": "source/apple/419/root-vegetable_1fadc.png" 119 | } 120 | }, 121 | { 122 | "category": "Objects", 123 | "sub_category": "Musical Instrument", 124 | "code": "1fa89", 125 | "emoji": "🪉", 126 | "title": "Harp", 127 | "tags": [ 128 | "cupid", 129 | "harp", 130 | "instrument", 131 | "love", 132 | "music", 133 | "orchestra" 134 | ], 135 | "codepoints": [ 136 | "U+1FA89" 137 | ], 138 | "image": { 139 | "brand": "apple", 140 | "platform": [ 141 | "Apple", 142 | "iOS 18.4" 143 | ], 144 | "source": "source/apple/419/harp_1fa89.png" 145 | } 146 | }, 147 | { 148 | "category": "Objects", 149 | "sub_category": "Tool", 150 | "code": "1fa8f", 151 | "emoji": "🪏", 152 | "title": "Shovel", 153 | "tags": [ 154 | "bury", 155 | "dig", 156 | "garden", 157 | "hole", 158 | "plant", 159 | "scoop", 160 | "shovel", 161 | "snow", 162 | "spade" 163 | ], 164 | "codepoints": [ 165 | "U+1FA8F" 166 | ], 167 | "image": { 168 | "brand": "apple", 169 | "platform": [ 170 | "Apple", 171 | "iOS 18.4" 172 | ], 173 | "source": "source/apple/419/shovel_1fa8f.png" 174 | } 175 | }, 176 | { 177 | "category": "Symbols & Flags", 178 | "sub_category": "Other Symbol", 179 | "code": "1fadf", 180 | "emoji": "🫟", 181 | "title": "Splatter", 182 | "tags": [ 183 | "drip", 184 | "holi", 185 | "ink", 186 | "liquid", 187 | "mess", 188 | "paint", 189 | "spill", 190 | "splatter", 191 | "stain" 192 | ], 193 | "codepoints": [ 194 | "U+1FADF" 195 | ], 196 | "image": { 197 | "brand": "apple", 198 | "platform": [ 199 | "Apple", 200 | "iOS 18.4" 201 | ], 202 | "source": "source/apple/419/splatter_1fadf.png" 203 | } 204 | }, 205 | { 206 | "category": "Symbols & Flags", 207 | "sub_category": "Country Flag", 208 | "code": "1f1e8-1f1f6", 209 | "emoji": "🇨🇶", 210 | "title": "Flag: Sark", 211 | "tags": [ 212 | "flag" 213 | ], 214 | "codepoints": [ 215 | "U+1F1E8", 216 | "U+1F1F6" 217 | ], 218 | "image": { 219 | "brand": "apple", 220 | "platform": [ 221 | "Apple", 222 | "iOS 18.4" 223 | ], 224 | "source": "source/apple/419/flag-sark_1f1e8-1f1f6.png" 225 | } 226 | } 227 | ] -------------------------------------------------------------------------------- /src/database/emojilist_esq.latest.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "code": "231a-fe0f", 4 | "qualified": "231a" 5 | }, 6 | { 7 | "code": "231b-fe0f", 8 | "qualified": "231b" 9 | }, 10 | { 11 | "code": "23e9-fe0f", 12 | "qualified": "23e9" 13 | }, 14 | { 15 | "code": "23ea-fe0f", 16 | "qualified": "23ea" 17 | }, 18 | { 19 | "code": "23eb-fe0f", 20 | "qualified": "23eb" 21 | }, 22 | { 23 | "code": "23ec-fe0f", 24 | "qualified": "23ec" 25 | }, 26 | { 27 | "code": "23f0-fe0f", 28 | "qualified": "23f0" 29 | }, 30 | { 31 | "code": "23f3-fe0f", 32 | "qualified": "23f3" 33 | }, 34 | { 35 | "code": "25fd-fe0f", 36 | "qualified": "25fd" 37 | }, 38 | { 39 | "code": "25fe-fe0f", 40 | "qualified": "25fe" 41 | }, 42 | { 43 | "code": "2614-fe0f", 44 | "qualified": "2614" 45 | }, 46 | { 47 | "code": "2615-fe0f", 48 | "qualified": "2615" 49 | }, 50 | { 51 | "code": "2648-fe0f", 52 | "qualified": "2648" 53 | }, 54 | { 55 | "code": "2649-fe0f", 56 | "qualified": "2649" 57 | }, 58 | { 59 | "code": "264a-fe0f", 60 | "qualified": "264a" 61 | }, 62 | { 63 | "code": "264b-fe0f", 64 | "qualified": "264b" 65 | }, 66 | { 67 | "code": "264c-fe0f", 68 | "qualified": "264c" 69 | }, 70 | { 71 | "code": "264d-fe0f", 72 | "qualified": "264d" 73 | }, 74 | { 75 | "code": "264e-fe0f", 76 | "qualified": "264e" 77 | }, 78 | { 79 | "code": "264f-fe0f", 80 | "qualified": "264f" 81 | }, 82 | { 83 | "code": "2650-fe0f", 84 | "qualified": "2650" 85 | }, 86 | { 87 | "code": "2651-fe0f", 88 | "qualified": "2651" 89 | }, 90 | { 91 | "code": "2652-fe0f", 92 | "qualified": "2652" 93 | }, 94 | { 95 | "code": "2653-fe0f", 96 | "qualified": "2653" 97 | }, 98 | { 99 | "code": "267f-fe0f", 100 | "qualified": "267f" 101 | }, 102 | { 103 | "code": "2693-fe0f", 104 | "qualified": "2693" 105 | }, 106 | { 107 | "code": "26a1-fe0f", 108 | "qualified": "26a1" 109 | }, 110 | { 111 | "code": "26aa-fe0f", 112 | "qualified": "26aa" 113 | }, 114 | { 115 | "code": "26ab-fe0f", 116 | "qualified": "26ab" 117 | }, 118 | { 119 | "code": "26bd-fe0f", 120 | "qualified": "26bd" 121 | }, 122 | { 123 | "code": "26be-fe0f", 124 | "qualified": "26be" 125 | }, 126 | { 127 | "code": "26c4-fe0f", 128 | "qualified": "26c4" 129 | }, 130 | { 131 | "code": "26c5-fe0f", 132 | "qualified": "26c5" 133 | }, 134 | { 135 | "code": "26ce-fe0f", 136 | "qualified": "26ce" 137 | }, 138 | { 139 | "code": "26d4-fe0f", 140 | "qualified": "26d4" 141 | }, 142 | { 143 | "code": "26ea-fe0f", 144 | "qualified": "26ea" 145 | }, 146 | { 147 | "code": "26f2-fe0f", 148 | "qualified": "26f2" 149 | }, 150 | { 151 | "code": "26f3-fe0f", 152 | "qualified": "26f3" 153 | }, 154 | { 155 | "code": "26f5-fe0f", 156 | "qualified": "26f5" 157 | }, 158 | { 159 | "code": "26fa-fe0f", 160 | "qualified": "26fa" 161 | }, 162 | { 163 | "code": "26fd-fe0f", 164 | "qualified": "26fd" 165 | }, 166 | { 167 | "code": "2705-fe0f", 168 | "qualified": "2705" 169 | }, 170 | { 171 | "code": "270a-fe0f", 172 | "qualified": "270a" 173 | }, 174 | { 175 | "code": "270b-fe0f", 176 | "qualified": "270b" 177 | }, 178 | { 179 | "code": "2728-fe0f", 180 | "qualified": "2728" 181 | }, 182 | { 183 | "code": "274c-fe0f", 184 | "qualified": "274c" 185 | }, 186 | { 187 | "code": "274e-fe0f", 188 | "qualified": "274e" 189 | }, 190 | { 191 | "code": "2753-fe0f", 192 | "qualified": "2753" 193 | }, 194 | { 195 | "code": "2754-fe0f", 196 | "qualified": "2754" 197 | }, 198 | { 199 | "code": "2755-fe0f", 200 | "qualified": "2755" 201 | }, 202 | { 203 | "code": "2757-fe0f", 204 | "qualified": "2757" 205 | }, 206 | { 207 | "code": "2795-fe0f", 208 | "qualified": "2795" 209 | }, 210 | { 211 | "code": "2796-fe0f", 212 | "qualified": "2796" 213 | }, 214 | { 215 | "code": "2797-fe0f", 216 | "qualified": "2797" 217 | }, 218 | { 219 | "code": "27b0-fe0f", 220 | "qualified": "27b0" 221 | }, 222 | { 223 | "code": "27bf-fe0f", 224 | "qualified": "27bf" 225 | }, 226 | { 227 | "code": "2b1b-fe0f", 228 | "qualified": "2b1b" 229 | }, 230 | { 231 | "code": "2b1c-fe0f", 232 | "qualified": "2b1c" 233 | }, 234 | { 235 | "code": "2b50-fe0f", 236 | "qualified": "2b50" 237 | }, 238 | { 239 | "code": "2b55-fe0f", 240 | "qualified": "2b55" 241 | }, 242 | { 243 | "code": "1f004-fe0f", 244 | "qualified": "1f004" 245 | }, 246 | { 247 | "code": "1f21a-fe0f", 248 | "qualified": "1f21a" 249 | }, 250 | { 251 | "code": "1f22f-fe0f", 252 | "qualified": "1f22f" 253 | }, 254 | { 255 | "code": "1f30d-fe0f", 256 | "qualified": "1f30d" 257 | }, 258 | { 259 | "code": "1f30e-fe0f", 260 | "qualified": "1f30e" 261 | }, 262 | { 263 | "code": "1f30f-fe0f", 264 | "qualified": "1f30f" 265 | }, 266 | { 267 | "code": "1f315-fe0f", 268 | "qualified": "1f315" 269 | }, 270 | { 271 | "code": "1f31c-fe0f", 272 | "qualified": "1f31c" 273 | }, 274 | { 275 | "code": "1f378-fe0f", 276 | "qualified": "1f378" 277 | }, 278 | { 279 | "code": "1f393-fe0f", 280 | "qualified": "1f393" 281 | }, 282 | { 283 | "code": "1f3a7-fe0f", 284 | "qualified": "1f3a7" 285 | }, 286 | { 287 | "code": "1f3ac-fe0f", 288 | "qualified": "1f3ac" 289 | }, 290 | { 291 | "code": "1f3ad-fe0f", 292 | "qualified": "1f3ad" 293 | }, 294 | { 295 | "code": "1f3ae-fe0f", 296 | "qualified": "1f3ae" 297 | }, 298 | { 299 | "code": "1f3c2-fe0f", 300 | "qualified": "1f3c2" 301 | }, 302 | { 303 | "code": "1f3c4-fe0f", 304 | "qualified": "1f3c4" 305 | }, 306 | { 307 | "code": "1f3c6-fe0f", 308 | "qualified": "1f3c6" 309 | }, 310 | { 311 | "code": "1f3ca-fe0f", 312 | "qualified": "1f3ca" 313 | }, 314 | { 315 | "code": "1f3e0-fe0f", 316 | "qualified": "1f3e0" 317 | }, 318 | { 319 | "code": "1f3ed-fe0f", 320 | "qualified": "1f3ed" 321 | }, 322 | { 323 | "code": "1f408-fe0f", 324 | "qualified": "1f408" 325 | }, 326 | { 327 | "code": "1f415-fe0f", 328 | "qualified": "1f415" 329 | }, 330 | { 331 | "code": "1f41f-fe0f", 332 | "qualified": "1f41f" 333 | }, 334 | { 335 | "code": "1f426-fe0f", 336 | "qualified": "1f426" 337 | }, 338 | { 339 | "code": "1f442-fe0f", 340 | "qualified": "1f442" 341 | }, 342 | { 343 | "code": "1f446-fe0f", 344 | "qualified": "1f446" 345 | }, 346 | { 347 | "code": "1f447-fe0f", 348 | "qualified": "1f447" 349 | }, 350 | { 351 | "code": "1f448-fe0f", 352 | "qualified": "1f448" 353 | }, 354 | { 355 | "code": "1f449-fe0f", 356 | "qualified": "1f449" 357 | }, 358 | { 359 | "code": "1f44d-fe0f", 360 | "qualified": "1f44d" 361 | }, 362 | { 363 | "code": "1f44e-fe0f", 364 | "qualified": "1f44e" 365 | }, 366 | { 367 | "code": "1f453-fe0f", 368 | "qualified": "1f453" 369 | }, 370 | { 371 | "code": "1f46a-fe0f", 372 | "qualified": "1f46a" 373 | }, 374 | { 375 | "code": "1f47d-fe0f", 376 | "qualified": "1f47d" 377 | }, 378 | { 379 | "code": "1f4a3-fe0f", 380 | "qualified": "1f4a3" 381 | }, 382 | { 383 | "code": "1f4b0-fe0f", 384 | "qualified": "1f4b0" 385 | }, 386 | { 387 | "code": "1f4b3-fe0f", 388 | "qualified": "1f4b3" 389 | }, 390 | { 391 | "code": "1f4bb-fe0f", 392 | "qualified": "1f4bb" 393 | }, 394 | { 395 | "code": "1f4bf-fe0f", 396 | "qualified": "1f4bf" 397 | }, 398 | { 399 | "code": "1f4cb-fe0f", 400 | "qualified": "1f4cb" 401 | }, 402 | { 403 | "code": "1f4da-fe0f", 404 | "qualified": "1f4da" 405 | }, 406 | { 407 | "code": "1f4df-fe0f", 408 | "qualified": "1f4df" 409 | }, 410 | { 411 | "code": "1f4e4-fe0f", 412 | "qualified": "1f4e4" 413 | }, 414 | { 415 | "code": "1f4e5-fe0f", 416 | "qualified": "1f4e5" 417 | }, 418 | { 419 | "code": "1f4e6-fe0f", 420 | "qualified": "1f4e6" 421 | }, 422 | { 423 | "code": "1f4ea-fe0f", 424 | "qualified": "1f4ea" 425 | }, 426 | { 427 | "code": "1f4eb-fe0f", 428 | "qualified": "1f4eb" 429 | }, 430 | { 431 | "code": "1f4ec-fe0f", 432 | "qualified": "1f4ec" 433 | }, 434 | { 435 | "code": "1f4ed-fe0f", 436 | "qualified": "1f4ed" 437 | }, 438 | { 439 | "code": "1f4f7-fe0f", 440 | "qualified": "1f4f7" 441 | }, 442 | { 443 | "code": "1f4f9-fe0f", 444 | "qualified": "1f4f9" 445 | }, 446 | { 447 | "code": "1f4fa-fe0f", 448 | "qualified": "1f4fa" 449 | }, 450 | { 451 | "code": "1f4fb-fe0f", 452 | "qualified": "1f4fb" 453 | }, 454 | { 455 | "code": "1f508-fe0f", 456 | "qualified": "1f508" 457 | }, 458 | { 459 | "code": "1f50d-fe0f", 460 | "qualified": "1f50d" 461 | }, 462 | { 463 | "code": "1f512-fe0f", 464 | "qualified": "1f512" 465 | }, 466 | { 467 | "code": "1f513-fe0f", 468 | "qualified": "1f513" 469 | }, 470 | { 471 | "code": "1f550-fe0f", 472 | "qualified": "1f550" 473 | }, 474 | { 475 | "code": "1f551-fe0f", 476 | "qualified": "1f551" 477 | }, 478 | { 479 | "code": "1f552-fe0f", 480 | "qualified": "1f552" 481 | }, 482 | { 483 | "code": "1f553-fe0f", 484 | "qualified": "1f553" 485 | }, 486 | { 487 | "code": "1f554-fe0f", 488 | "qualified": "1f554" 489 | }, 490 | { 491 | "code": "1f555-fe0f", 492 | "qualified": "1f555" 493 | }, 494 | { 495 | "code": "1f556-fe0f", 496 | "qualified": "1f556" 497 | }, 498 | { 499 | "code": "1f557-fe0f", 500 | "qualified": "1f557" 501 | }, 502 | { 503 | "code": "1f558-fe0f", 504 | "qualified": "1f558" 505 | }, 506 | { 507 | "code": "1f559-fe0f", 508 | "qualified": "1f559" 509 | }, 510 | { 511 | "code": "1f55a-fe0f", 512 | "qualified": "1f55a" 513 | }, 514 | { 515 | "code": "1f55b-fe0f", 516 | "qualified": "1f55b" 517 | }, 518 | { 519 | "code": "1f55c-fe0f", 520 | "qualified": "1f55c" 521 | }, 522 | { 523 | "code": "1f55d-fe0f", 524 | "qualified": "1f55d" 525 | }, 526 | { 527 | "code": "1f55e-fe0f", 528 | "qualified": "1f55e" 529 | }, 530 | { 531 | "code": "1f55f-fe0f", 532 | "qualified": "1f55f" 533 | }, 534 | { 535 | "code": "1f560-fe0f", 536 | "qualified": "1f560" 537 | }, 538 | { 539 | "code": "1f561-fe0f", 540 | "qualified": "1f561" 541 | }, 542 | { 543 | "code": "1f562-fe0f", 544 | "qualified": "1f562" 545 | }, 546 | { 547 | "code": "1f563-fe0f", 548 | "qualified": "1f563" 549 | }, 550 | { 551 | "code": "1f564-fe0f", 552 | "qualified": "1f564" 553 | }, 554 | { 555 | "code": "1f565-fe0f", 556 | "qualified": "1f565" 557 | }, 558 | { 559 | "code": "1f566-fe0f", 560 | "qualified": "1f566" 561 | }, 562 | { 563 | "code": "1f567-fe0f", 564 | "qualified": "1f567" 565 | }, 566 | { 567 | "code": "1f610-fe0f", 568 | "qualified": "1f610" 569 | }, 570 | { 571 | "code": "1f687-fe0f", 572 | "qualified": "1f687" 573 | }, 574 | { 575 | "code": "1f68d-fe0f", 576 | "qualified": "1f68d" 577 | }, 578 | { 579 | "code": "1f691-fe0f", 580 | "qualified": "1f691" 581 | }, 582 | { 583 | "code": "1f694-fe0f", 584 | "qualified": "1f694" 585 | }, 586 | { 587 | "code": "1f698-fe0f", 588 | "qualified": "1f698" 589 | }, 590 | { 591 | "code": "1f6ad-fe0f", 592 | "qualified": "1f6ad" 593 | }, 594 | { 595 | "code": "1f6b2-fe0f", 596 | "qualified": "1f6b2" 597 | }, 598 | { 599 | "code": "1f6b9-fe0f", 600 | "qualified": "1f6b9" 601 | }, 602 | { 603 | "code": "1f6ba-fe0f", 604 | "qualified": "1f6ba" 605 | }, 606 | { 607 | "code": "1f6bc-fe0f", 608 | "qualified": "1f6bc" 609 | } 610 | ] -------------------------------------------------------------------------------- /src/database/emojilist_15.0.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "category": "Emoji & People", 4 | "sub_category": "Face Neutral-Skeptical", 5 | "code": "1fae8", 6 | "emoji": "🫨", 7 | "title": "Shaking Face", 8 | "tags": [ 9 | "crazy", 10 | "daze", 11 | "earthquake", 12 | "face", 13 | "omg", 14 | "panic", 15 | "shaking", 16 | "shock", 17 | "surprise", 18 | "vibrate", 19 | "whoa", 20 | "wow" 21 | ], 22 | "codepoints": [ 23 | "U+1FAE8" 24 | ], 25 | "image": { 26 | "brand": "apple", 27 | "platform": [ 28 | "Apple", 29 | "iOS 18.4" 30 | ], 31 | "source": "source/apple/419/shaking-face_1fae8.png" 32 | } 33 | }, 34 | { 35 | "category": "Symbols & Flags", 36 | "sub_category": "Heart", 37 | "code": "1fa77", 38 | "emoji": "🩷", 39 | "title": "Pink Heart", 40 | "tags": [ 41 | "143", 42 | "adorable", 43 | "cute", 44 | "emotion", 45 | "heart", 46 | "ily", 47 | "like", 48 | "love", 49 | "pink", 50 | "special", 51 | "sweet" 52 | ], 53 | "codepoints": [ 54 | "U+1FA77" 55 | ], 56 | "image": { 57 | "brand": "apple", 58 | "platform": [ 59 | "Apple", 60 | "iOS 18.4" 61 | ], 62 | "source": "source/apple/419/pink-heart_1fa77.png" 63 | } 64 | }, 65 | { 66 | "category": "Symbols & Flags", 67 | "sub_category": "Heart", 68 | "code": "1fa75", 69 | "emoji": "🩵", 70 | "title": "Light Blue Heart", 71 | "tags": [ 72 | "143", 73 | "blue", 74 | "cute", 75 | "cyan", 76 | "emotion", 77 | "heart", 78 | "ily", 79 | "light", 80 | "like", 81 | "love", 82 | "sky", 83 | "special", 84 | "teal" 85 | ], 86 | "codepoints": [ 87 | "U+1FA75" 88 | ], 89 | "image": { 90 | "brand": "apple", 91 | "platform": [ 92 | "Apple", 93 | "iOS 18.4" 94 | ], 95 | "source": "source/apple/419/light-blue-heart_1fa75.png" 96 | } 97 | }, 98 | { 99 | "category": "Symbols & Flags", 100 | "sub_category": "Heart", 101 | "code": "1fa76", 102 | "emoji": "🩶", 103 | "title": "Grey Heart", 104 | "tags": [ 105 | "143", 106 | "emotion", 107 | "gray", 108 | "grey", 109 | "heart", 110 | "ily", 111 | "love", 112 | "silver", 113 | "slate", 114 | "special" 115 | ], 116 | "codepoints": [ 117 | "U+1FA76" 118 | ], 119 | "image": { 120 | "brand": "apple", 121 | "platform": [ 122 | "Apple", 123 | "iOS 18.4" 124 | ], 125 | "source": "source/apple/419/grey-heart_1fa76.png" 126 | } 127 | }, 128 | { 129 | "category": "Emoji & People", 130 | "sub_category": "Hand Fingers-Open", 131 | "code": "1faf7", 132 | "emoji": "🫷", 133 | "title": "Leftwards Pushing Hand", 134 | "tags": [ 135 | "block", 136 | "five", 137 | "halt", 138 | "hand", 139 | "high", 140 | "hold", 141 | "leftward", 142 | "leftwards", 143 | "pause", 144 | "push", 145 | "pushing", 146 | "refuse", 147 | "slap", 148 | "stop", 149 | "wait" 150 | ], 151 | "codepoints": [ 152 | "U+1FAF7" 153 | ], 154 | "image": { 155 | "brand": "apple", 156 | "platform": [ 157 | "Apple", 158 | "iOS 18.4" 159 | ], 160 | "source": "source/apple/419/leftwards-pushing-hand_1faf7.png" 161 | } 162 | }, 163 | { 164 | "category": "Emoji & People", 165 | "sub_category": "Hand Fingers-Open", 166 | "code": "1faf7-1f3fb", 167 | "emoji": "🫷🏻", 168 | "title": "Leftwards Pushing Hand: Light Skin Tone", 169 | "tags": [ 170 | "block", 171 | "five", 172 | "halt", 173 | "hand", 174 | "high", 175 | "hold", 176 | "leftward", 177 | "leftwards", 178 | "pause", 179 | "push", 180 | "pushing", 181 | "refuse", 182 | "slap", 183 | "stop", 184 | "wait" 185 | ], 186 | "codepoints": [ 187 | "U+1FAF7", 188 | "U+1F3FB" 189 | ], 190 | "parent": "1faf7", 191 | "image": { 192 | "brand": "apple", 193 | "platform": [ 194 | "Apple", 195 | "iOS 18.4" 196 | ], 197 | "source": "source/apple/419/leftwards-pushing-hand_light-skin-tone_1faf7-1f3fb_1f3fb.png" 198 | } 199 | }, 200 | { 201 | "category": "Emoji & People", 202 | "sub_category": "Hand Fingers-Open", 203 | "code": "1faf7-1f3fc", 204 | "emoji": "🫷🏼", 205 | "title": "Leftwards Pushing Hand: Medium-Light Skin Tone", 206 | "tags": [ 207 | "block", 208 | "five", 209 | "halt", 210 | "hand", 211 | "high", 212 | "hold", 213 | "leftward", 214 | "leftwards", 215 | "pause", 216 | "push", 217 | "pushing", 218 | "refuse", 219 | "slap", 220 | "stop", 221 | "wait" 222 | ], 223 | "codepoints": [ 224 | "U+1FAF7", 225 | "U+1F3FC" 226 | ], 227 | "parent": "1faf7", 228 | "image": { 229 | "brand": "apple", 230 | "platform": [ 231 | "Apple", 232 | "iOS 18.4" 233 | ], 234 | "source": "source/apple/419/leftwards-pushing-hand_medium-light-skin-tone_1faf7-1f3fc_1f3fc.png" 235 | } 236 | }, 237 | { 238 | "category": "Emoji & People", 239 | "sub_category": "Hand Fingers-Open", 240 | "code": "1faf7-1f3fd", 241 | "emoji": "🫷🏽", 242 | "title": "Leftwards Pushing Hand: Medium Skin Tone", 243 | "tags": [ 244 | "block", 245 | "five", 246 | "halt", 247 | "hand", 248 | "high", 249 | "hold", 250 | "leftward", 251 | "leftwards", 252 | "pause", 253 | "push", 254 | "pushing", 255 | "refuse", 256 | "slap", 257 | "stop", 258 | "wait" 259 | ], 260 | "codepoints": [ 261 | "U+1FAF7", 262 | "U+1F3FD" 263 | ], 264 | "parent": "1faf7", 265 | "image": { 266 | "brand": "apple", 267 | "platform": [ 268 | "Apple", 269 | "iOS 18.4" 270 | ], 271 | "source": "source/apple/419/leftwards-pushing-hand_medium-skin-tone_1faf7-1f3fd_1f3fd.png" 272 | } 273 | }, 274 | { 275 | "category": "Emoji & People", 276 | "sub_category": "Hand Fingers-Open", 277 | "code": "1faf7-1f3fe", 278 | "emoji": "🫷🏾", 279 | "title": "Leftwards Pushing Hand: Medium-Dark Skin Tone", 280 | "tags": [ 281 | "block", 282 | "five", 283 | "halt", 284 | "hand", 285 | "high", 286 | "hold", 287 | "leftward", 288 | "leftwards", 289 | "pause", 290 | "push", 291 | "pushing", 292 | "refuse", 293 | "slap", 294 | "stop", 295 | "wait" 296 | ], 297 | "codepoints": [ 298 | "U+1FAF7", 299 | "U+1F3FE" 300 | ], 301 | "parent": "1faf7", 302 | "image": { 303 | "brand": "apple", 304 | "platform": [ 305 | "Apple", 306 | "iOS 18.4" 307 | ], 308 | "source": "source/apple/419/leftwards-pushing-hand_medium-dark-skin-tone_1faf7-1f3fe_1f3fe.png" 309 | } 310 | }, 311 | { 312 | "category": "Emoji & People", 313 | "sub_category": "Hand Fingers-Open", 314 | "code": "1faf7-1f3ff", 315 | "emoji": "🫷🏿", 316 | "title": "Leftwards Pushing Hand: Dark Skin Tone", 317 | "tags": [ 318 | "block", 319 | "five", 320 | "halt", 321 | "hand", 322 | "high", 323 | "hold", 324 | "leftward", 325 | "leftwards", 326 | "pause", 327 | "push", 328 | "pushing", 329 | "refuse", 330 | "slap", 331 | "stop", 332 | "wait" 333 | ], 334 | "codepoints": [ 335 | "U+1FAF7", 336 | "U+1F3FF" 337 | ], 338 | "parent": "1faf7", 339 | "image": { 340 | "brand": "apple", 341 | "platform": [ 342 | "Apple", 343 | "iOS 18.4" 344 | ], 345 | "source": "source/apple/419/leftwards-pushing-hand_dark-skin-tone_1faf7-1f3ff_1f3ff.png" 346 | } 347 | }, 348 | { 349 | "category": "Emoji & People", 350 | "sub_category": "Hand Fingers-Open", 351 | "code": "1faf8", 352 | "emoji": "🫸", 353 | "title": "Rightwards Pushing Hand", 354 | "tags": [ 355 | "block", 356 | "five", 357 | "halt", 358 | "hand", 359 | "high", 360 | "hold", 361 | "pause", 362 | "push", 363 | "pushing", 364 | "refuse", 365 | "rightward", 366 | "rightwards", 367 | "slap", 368 | "stop", 369 | "wait" 370 | ], 371 | "codepoints": [ 372 | "U+1FAF8" 373 | ], 374 | "image": { 375 | "brand": "apple", 376 | "platform": [ 377 | "Apple", 378 | "iOS 18.4" 379 | ], 380 | "source": "source/apple/419/rightwards-pushing-hand_1faf8.png" 381 | } 382 | }, 383 | { 384 | "category": "Emoji & People", 385 | "sub_category": "Hand Fingers-Open", 386 | "code": "1faf8-1f3fb", 387 | "emoji": "🫸🏻", 388 | "title": "Rightwards Pushing Hand: Light Skin Tone", 389 | "tags": [ 390 | "block", 391 | "five", 392 | "halt", 393 | "hand", 394 | "high", 395 | "hold", 396 | "pause", 397 | "push", 398 | "pushing", 399 | "refuse", 400 | "rightward", 401 | "rightwards", 402 | "slap", 403 | "stop", 404 | "wait" 405 | ], 406 | "codepoints": [ 407 | "U+1FAF8", 408 | "U+1F3FB" 409 | ], 410 | "parent": "1faf8", 411 | "image": { 412 | "brand": "apple", 413 | "platform": [ 414 | "Apple", 415 | "iOS 18.4" 416 | ], 417 | "source": "source/apple/419/rightwards-pushing-hand_light-skin-tone_1faf8-1f3fb_1f3fb.png" 418 | } 419 | }, 420 | { 421 | "category": "Emoji & People", 422 | "sub_category": "Hand Fingers-Open", 423 | "code": "1faf8-1f3fc", 424 | "emoji": "🫸🏼", 425 | "title": "Rightwards Pushing Hand: Medium-Light Skin Tone", 426 | "tags": [ 427 | "block", 428 | "five", 429 | "halt", 430 | "hand", 431 | "high", 432 | "hold", 433 | "pause", 434 | "push", 435 | "pushing", 436 | "refuse", 437 | "rightward", 438 | "rightwards", 439 | "slap", 440 | "stop", 441 | "wait" 442 | ], 443 | "codepoints": [ 444 | "U+1FAF8", 445 | "U+1F3FC" 446 | ], 447 | "parent": "1faf8", 448 | "image": { 449 | "brand": "apple", 450 | "platform": [ 451 | "Apple", 452 | "iOS 18.4" 453 | ], 454 | "source": "source/apple/419/rightwards-pushing-hand_medium-light-skin-tone_1faf8-1f3fc_1f3fc.png" 455 | } 456 | }, 457 | { 458 | "category": "Emoji & People", 459 | "sub_category": "Hand Fingers-Open", 460 | "code": "1faf8-1f3fd", 461 | "emoji": "🫸🏽", 462 | "title": "Rightwards Pushing Hand: Medium Skin Tone", 463 | "tags": [ 464 | "block", 465 | "five", 466 | "halt", 467 | "hand", 468 | "high", 469 | "hold", 470 | "pause", 471 | "push", 472 | "pushing", 473 | "refuse", 474 | "rightward", 475 | "rightwards", 476 | "slap", 477 | "stop", 478 | "wait" 479 | ], 480 | "codepoints": [ 481 | "U+1FAF8", 482 | "U+1F3FD" 483 | ], 484 | "parent": "1faf8", 485 | "image": { 486 | "brand": "apple", 487 | "platform": [ 488 | "Apple", 489 | "iOS 18.4" 490 | ], 491 | "source": "source/apple/419/rightwards-pushing-hand_medium-skin-tone_1faf8-1f3fd_1f3fd.png" 492 | } 493 | }, 494 | { 495 | "category": "Emoji & People", 496 | "sub_category": "Hand Fingers-Open", 497 | "code": "1faf8-1f3fe", 498 | "emoji": "🫸🏾", 499 | "title": "Rightwards Pushing Hand: Medium-Dark Skin Tone", 500 | "tags": [ 501 | "block", 502 | "five", 503 | "halt", 504 | "hand", 505 | "high", 506 | "hold", 507 | "pause", 508 | "push", 509 | "pushing", 510 | "refuse", 511 | "rightward", 512 | "rightwards", 513 | "slap", 514 | "stop", 515 | "wait" 516 | ], 517 | "codepoints": [ 518 | "U+1FAF8", 519 | "U+1F3FE" 520 | ], 521 | "parent": "1faf8", 522 | "image": { 523 | "brand": "apple", 524 | "platform": [ 525 | "Apple", 526 | "iOS 18.4" 527 | ], 528 | "source": "source/apple/419/rightwards-pushing-hand_medium-dark-skin-tone_1faf8-1f3fe_1f3fe.png" 529 | } 530 | }, 531 | { 532 | "category": "Emoji & People", 533 | "sub_category": "Hand Fingers-Open", 534 | "code": "1faf8-1f3ff", 535 | "emoji": "🫸🏿", 536 | "title": "Rightwards Pushing Hand: Dark Skin Tone", 537 | "tags": [ 538 | "block", 539 | "five", 540 | "halt", 541 | "hand", 542 | "high", 543 | "hold", 544 | "pause", 545 | "push", 546 | "pushing", 547 | "refuse", 548 | "rightward", 549 | "rightwards", 550 | "slap", 551 | "stop", 552 | "wait" 553 | ], 554 | "codepoints": [ 555 | "U+1FAF8", 556 | "U+1F3FF" 557 | ], 558 | "parent": "1faf8", 559 | "image": { 560 | "brand": "apple", 561 | "platform": [ 562 | "Apple", 563 | "iOS 18.4" 564 | ], 565 | "source": "source/apple/419/rightwards-pushing-hand_dark-skin-tone_1faf8-1f3ff_1f3ff.png" 566 | } 567 | }, 568 | { 569 | "category": "Animals & Nature", 570 | "sub_category": "Animal Mammal", 571 | "code": "1face", 572 | "emoji": "🫎", 573 | "title": "Moose", 574 | "tags": [ 575 | "alces", 576 | "animal", 577 | "antlers", 578 | "elk", 579 | "mammal", 580 | "moose" 581 | ], 582 | "codepoints": [ 583 | "U+1FACE" 584 | ], 585 | "image": { 586 | "brand": "apple", 587 | "platform": [ 588 | "Apple", 589 | "iOS 18.4" 590 | ], 591 | "source": "source/apple/419/moose_1face.png" 592 | } 593 | }, 594 | { 595 | "category": "Animals & Nature", 596 | "sub_category": "Animal Mammal", 597 | "code": "1facf", 598 | "emoji": "🫏", 599 | "title": "Donkey", 600 | "tags": [ 601 | "animal", 602 | "ass", 603 | "burro", 604 | "donkey", 605 | "hinny", 606 | "mammal", 607 | "mule", 608 | "stubborn" 609 | ], 610 | "codepoints": [ 611 | "U+1FACF" 612 | ], 613 | "image": { 614 | "brand": "apple", 615 | "platform": [ 616 | "Apple", 617 | "iOS 18.4" 618 | ], 619 | "source": "source/apple/419/donkey_1facf.png" 620 | } 621 | }, 622 | { 623 | "category": "Animals & Nature", 624 | "sub_category": "Animal Bird", 625 | "code": "1fabd", 626 | "emoji": "🪽", 627 | "title": "Wing", 628 | "tags": [ 629 | "angelic", 630 | "ascend", 631 | "aviation", 632 | "bird", 633 | "fly", 634 | "flying", 635 | "heavenly", 636 | "mythology", 637 | "soar", 638 | "wing" 639 | ], 640 | "codepoints": [ 641 | "U+1FABD" 642 | ], 643 | "image": { 644 | "brand": "apple", 645 | "platform": [ 646 | "Apple", 647 | "iOS 18.4" 648 | ], 649 | "source": "source/apple/419/wing_1fabd.png" 650 | } 651 | }, 652 | { 653 | "category": "Animals & Nature", 654 | "sub_category": "Animal Bird", 655 | "code": "1f426-200d-2b1b", 656 | "emoji": "🐦‍⬛", 657 | "title": "Black Bird", 658 | "tags": [ 659 | "animal", 660 | "beak", 661 | "bird", 662 | "black", 663 | "caw", 664 | "corvid", 665 | "crow", 666 | "ornithology", 667 | "raven", 668 | "rook" 669 | ], 670 | "codepoints": [ 671 | "U+1F426", 672 | "U+200D", 673 | "U+2B1B" 674 | ], 675 | "image": { 676 | "brand": "apple", 677 | "platform": [ 678 | "Apple", 679 | "iOS 18.4" 680 | ], 681 | "source": "source/apple/419/black-bird_1f426-200d-2b1b.png" 682 | } 683 | }, 684 | { 685 | "category": "Animals & Nature", 686 | "sub_category": "Animal Bird", 687 | "code": "1fabf", 688 | "emoji": "🪿", 689 | "title": "Goose", 690 | "tags": [ 691 | "animal", 692 | "bird", 693 | "duck", 694 | "flock", 695 | "fowl", 696 | "gaggle", 697 | "gander", 698 | "geese", 699 | "goose", 700 | "honk", 701 | "ornithology", 702 | "silly" 703 | ], 704 | "codepoints": [ 705 | "U+1FABF" 706 | ], 707 | "image": { 708 | "brand": "apple", 709 | "platform": [ 710 | "Apple", 711 | "iOS 18.4" 712 | ], 713 | "source": "source/apple/419/goose_1fabf.png" 714 | } 715 | }, 716 | { 717 | "category": "Animals & Nature", 718 | "sub_category": "Animal Marine", 719 | "code": "1fabc", 720 | "emoji": "🪼", 721 | "title": "Jellyfish", 722 | "tags": [ 723 | "animal", 724 | "aquarium", 725 | "burn", 726 | "invertebrate", 727 | "jelly", 728 | "jellyfish", 729 | "life", 730 | "marine", 731 | "ocean", 732 | "ouch", 733 | "plankton", 734 | "sea", 735 | "sting", 736 | "stinger", 737 | "tentacles" 738 | ], 739 | "codepoints": [ 740 | "U+1FABC" 741 | ], 742 | "image": { 743 | "brand": "apple", 744 | "platform": [ 745 | "Apple", 746 | "iOS 18.4" 747 | ], 748 | "source": "source/apple/419/jellyfish_1fabc.png" 749 | } 750 | }, 751 | { 752 | "category": "Animals & Nature", 753 | "sub_category": "Plant Flower", 754 | "code": "1fabb", 755 | "emoji": "🪻", 756 | "title": "Hyacinth", 757 | "tags": [ 758 | "bloom", 759 | "bluebonnet", 760 | "flower", 761 | "hyacinth", 762 | "indigo", 763 | "lavender", 764 | "lilac", 765 | "lupine", 766 | "plant", 767 | "purple", 768 | "shrub", 769 | "snapdragon", 770 | "spring", 771 | "violet" 772 | ], 773 | "codepoints": [ 774 | "U+1FABB" 775 | ], 776 | "image": { 777 | "brand": "apple", 778 | "platform": [ 779 | "Apple", 780 | "iOS 18.4" 781 | ], 782 | "source": "source/apple/419/hyacinth_1fabb.png" 783 | } 784 | }, 785 | { 786 | "category": "Food & Drink", 787 | "sub_category": "Food Vegetable", 788 | "code": "1fada", 789 | "emoji": "🫚", 790 | "title": "Ginger Root", 791 | "tags": [ 792 | "beer", 793 | "ginger", 794 | "health", 795 | "herb", 796 | "natural", 797 | "root", 798 | "spice" 799 | ], 800 | "codepoints": [ 801 | "U+1FADA" 802 | ], 803 | "image": { 804 | "brand": "apple", 805 | "platform": [ 806 | "Apple", 807 | "iOS 18.4" 808 | ], 809 | "source": "source/apple/419/ginger_1fada.png" 810 | } 811 | }, 812 | { 813 | "category": "Food & Drink", 814 | "sub_category": "Food Vegetable", 815 | "code": "1fadb", 816 | "emoji": "🫛", 817 | "title": "Pea Pod", 818 | "tags": [ 819 | "beans", 820 | "beanstalk", 821 | "edamame", 822 | "legume", 823 | "pea", 824 | "pod", 825 | "soybean", 826 | "vegetable", 827 | "veggie" 828 | ], 829 | "codepoints": [ 830 | "U+1FADB" 831 | ], 832 | "image": { 833 | "brand": "apple", 834 | "platform": [ 835 | "Apple", 836 | "iOS 18.4" 837 | ], 838 | "source": "source/apple/419/pea-pod_1fadb.png" 839 | } 840 | }, 841 | { 842 | "category": "Objects", 843 | "sub_category": "Clothing", 844 | "code": "1faad", 845 | "emoji": "🪭", 846 | "title": "Folding Hand Fan", 847 | "tags": [ 848 | "clack", 849 | "clap", 850 | "cool", 851 | "cooling", 852 | "dance", 853 | "fan", 854 | "flirt", 855 | "flutter", 856 | "folding", 857 | "hand", 858 | "hot", 859 | "shy" 860 | ], 861 | "codepoints": [ 862 | "U+1FAAD" 863 | ], 864 | "image": { 865 | "brand": "apple", 866 | "platform": [ 867 | "Apple", 868 | "iOS 18.4" 869 | ], 870 | "source": "source/apple/419/folding-hand-fan_1faad.png" 871 | } 872 | }, 873 | { 874 | "category": "Objects", 875 | "sub_category": "Clothing", 876 | "code": "1faae", 877 | "emoji": "🪮", 878 | "title": "Hair Pick", 879 | "tags": [ 880 | "Afro", 881 | "comb", 882 | "groom", 883 | "hair", 884 | "pick" 885 | ], 886 | "codepoints": [ 887 | "U+1FAAE" 888 | ], 889 | "image": { 890 | "brand": "apple", 891 | "platform": [ 892 | "Apple", 893 | "iOS 18.4" 894 | ], 895 | "source": "source/apple/419/hair-pick_1faae.png" 896 | } 897 | }, 898 | { 899 | "category": "Objects", 900 | "sub_category": "Musical Instrument", 901 | "code": "1fa87", 902 | "emoji": "🪇", 903 | "title": "Maracas", 904 | "tags": [ 905 | "cha", 906 | "dance", 907 | "instrument", 908 | "maracas", 909 | "music", 910 | "party", 911 | "percussion", 912 | "rattle", 913 | "shake", 914 | "shaker" 915 | ], 916 | "codepoints": [ 917 | "U+1FA87" 918 | ], 919 | "image": { 920 | "brand": "apple", 921 | "platform": [ 922 | "Apple", 923 | "iOS 18.4" 924 | ], 925 | "source": "source/apple/419/maracas_1fa87.png" 926 | } 927 | }, 928 | { 929 | "category": "Objects", 930 | "sub_category": "Musical Instrument", 931 | "code": "1fa88", 932 | "emoji": "🪈", 933 | "title": "Flute", 934 | "tags": [ 935 | "band", 936 | "fife", 937 | "flautist", 938 | "flute", 939 | "instrument", 940 | "marching", 941 | "music", 942 | "orchestra", 943 | "piccolo", 944 | "pipe", 945 | "recorder", 946 | "woodwind" 947 | ], 948 | "codepoints": [ 949 | "U+1FA88" 950 | ], 951 | "image": { 952 | "brand": "apple", 953 | "platform": [ 954 | "Apple", 955 | "iOS 18.4" 956 | ], 957 | "source": "source/apple/419/flute_1fa88.png" 958 | } 959 | }, 960 | { 961 | "category": "Symbols & Flags", 962 | "sub_category": "Religion", 963 | "code": "1faaf", 964 | "emoji": "🪯", 965 | "title": "Khanda", 966 | "tags": [ 967 | "Deg", 968 | "Fateh", 969 | "Khalsa", 970 | "Khanda", 971 | "religion", 972 | "Sikh", 973 | "Sikhism", 974 | "Tegh" 975 | ], 976 | "codepoints": [ 977 | "U+1FAAF" 978 | ], 979 | "image": { 980 | "brand": "apple", 981 | "platform": [ 982 | "Apple", 983 | "iOS 18.4" 984 | ], 985 | "source": "source/apple/419/khanda_1faaf.png" 986 | } 987 | }, 988 | { 989 | "category": "Symbols & Flags", 990 | "sub_category": "Av Symbol", 991 | "code": "1f6dc", 992 | "emoji": "🛜", 993 | "title": "Wireless", 994 | "tags": [ 995 | "broadband", 996 | "computer", 997 | "connectivity", 998 | "hotspot", 999 | "internet", 1000 | "network", 1001 | "router", 1002 | "smartphone", 1003 | "wi-fi", 1004 | "wifi", 1005 | "wireless", 1006 | "wlan" 1007 | ], 1008 | "codepoints": [ 1009 | "U+1F6DC" 1010 | ], 1011 | "image": { 1012 | "brand": "apple", 1013 | "platform": [ 1014 | "Apple", 1015 | "iOS 18.4" 1016 | ], 1017 | "source": "source/apple/419/wireless_1f6dc.png" 1018 | } 1019 | } 1020 | ] -------------------------------------------------------------------------------- /src/database/emojilist_15.1.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "category": "Emoji & People", 4 | "sub_category": "Face Neutral-Skeptical", 5 | "code": "1f642-200d-2194-fe0f", 6 | "emoji": "🙂‍↔️", 7 | "title": "Head Shaking Horizontally", 8 | "tags": [ 9 | "head", 10 | "horizontally", 11 | "no", 12 | "shake", 13 | "shaking" 14 | ], 15 | "codepoints": [ 16 | "U+1F642", 17 | "U+200D", 18 | "U+2194", 19 | "U+FE0F" 20 | ], 21 | "image": { 22 | "brand": "apple", 23 | "platform": [ 24 | "Apple", 25 | "iOS 18.4" 26 | ], 27 | "source": "source/apple/419/head-shaking-horizontally_1f642-200d-2194-fe0f.png" 28 | } 29 | }, 30 | { 31 | "category": "Emoji & People", 32 | "sub_category": "Face Neutral-Skeptical", 33 | "code": "1f642-200d-2195-fe0f", 34 | "emoji": "🙂‍↕️", 35 | "title": "Head Shaking Vertically", 36 | "tags": [ 37 | "head", 38 | "nod", 39 | "shaking", 40 | "vertically", 41 | "yes" 42 | ], 43 | "codepoints": [ 44 | "U+1F642", 45 | "U+200D", 46 | "U+2195", 47 | "U+FE0F" 48 | ], 49 | "image": { 50 | "brand": "apple", 51 | "platform": [ 52 | "Apple", 53 | "iOS 18.4" 54 | ], 55 | "source": "source/apple/419/head-shaking-vertically_1f642-200d-2195-fe0f.png" 56 | } 57 | }, 58 | { 59 | "category": "Emoji & People", 60 | "sub_category": "Person Activity", 61 | "code": "1f6b6-200d-27a1-fe0f", 62 | "emoji": "🚶‍➡️", 63 | "title": "Person Walking: Facing Right", 64 | "tags": [ 65 | "amble", 66 | "gait", 67 | "hike", 68 | "man", 69 | "pace", 70 | "pedestrian", 71 | "person", 72 | "stride", 73 | "stroll", 74 | "walk", 75 | "walking" 76 | ], 77 | "codepoints": [ 78 | "U+1F6B6", 79 | "U+200D", 80 | "U+27A1", 81 | "U+FE0F" 82 | ], 83 | "image": { 84 | "brand": "apple", 85 | "platform": [ 86 | "Apple", 87 | "iOS 18.4" 88 | ], 89 | "source": "source/apple/419/person_walking_facing_right_1f6b6-200d-27a1-fe0f.png" 90 | } 91 | }, 92 | { 93 | "category": "Emoji & People", 94 | "sub_category": "Person Activity", 95 | "code": "1f6b6-1f3fb-200d-27a1-fe0f", 96 | "emoji": "🚶🏻‍➡️", 97 | "title": "Person Walking: Light Skin Tone, Facing Right", 98 | "tags": [ 99 | "amble", 100 | "gait", 101 | "hike", 102 | "man", 103 | "pace", 104 | "pedestrian", 105 | "person", 106 | "stride", 107 | "stroll", 108 | "walk", 109 | "walking" 110 | ], 111 | "codepoints": [ 112 | "U+1F6B6", 113 | "U+1F3FB", 114 | "U+200D", 115 | "U+27A1", 116 | "U+FE0F" 117 | ], 118 | "parent": "1f6b6-200d-27a1-fe0f", 119 | "image": { 120 | "brand": "apple", 121 | "platform": [ 122 | "Apple", 123 | "iOS 18.4" 124 | ], 125 | "source": "source/apple/419/person_walking_facing_right_light_skin_tone_1f6b6-1f3fb-200d-27a1-fe0f.png" 126 | } 127 | }, 128 | { 129 | "category": "Emoji & People", 130 | "sub_category": "Person Activity", 131 | "code": "1f6b6-1f3fc-200d-27a1-fe0f", 132 | "emoji": "🚶🏼‍➡️", 133 | "title": "Person Walking: Medium-Light Skin Tone, Facing Right", 134 | "tags": [ 135 | "amble", 136 | "gait", 137 | "hike", 138 | "man", 139 | "pace", 140 | "pedestrian", 141 | "person", 142 | "stride", 143 | "stroll", 144 | "walk", 145 | "walking" 146 | ], 147 | "codepoints": [ 148 | "U+1F6B6", 149 | "U+1F3FC", 150 | "U+200D", 151 | "U+27A1", 152 | "U+FE0F" 153 | ], 154 | "parent": "1f6b6-200d-27a1-fe0f", 155 | "image": { 156 | "brand": "apple", 157 | "platform": [ 158 | "Apple", 159 | "iOS 18.4" 160 | ], 161 | "source": "source/apple/419/person_walking_facing_right_medium-light_skin_tone_1f6b6-1f3fc-200d-27a1-fe0f.png" 162 | } 163 | }, 164 | { 165 | "category": "Emoji & People", 166 | "sub_category": "Person Activity", 167 | "code": "1f6b6-1f3fd-200d-27a1-fe0f", 168 | "emoji": "🚶🏽‍➡️", 169 | "title": "Person Walking: Medium Skin Tone, Facing Right", 170 | "tags": [ 171 | "amble", 172 | "gait", 173 | "hike", 174 | "man", 175 | "pace", 176 | "pedestrian", 177 | "person", 178 | "stride", 179 | "stroll", 180 | "walk", 181 | "walking" 182 | ], 183 | "codepoints": [ 184 | "U+1F6B6", 185 | "U+1F3FD", 186 | "U+200D", 187 | "U+27A1", 188 | "U+FE0F" 189 | ], 190 | "parent": "1f6b6-200d-27a1-fe0f", 191 | "image": { 192 | "brand": "apple", 193 | "platform": [ 194 | "Apple", 195 | "iOS 18.4" 196 | ], 197 | "source": "source/apple/419/person_walking_facing_right_medium_skin_tone_1f6b6-1f3fd-200d-27a1-fe0f.png" 198 | } 199 | }, 200 | { 201 | "category": "Emoji & People", 202 | "sub_category": "Person Activity", 203 | "code": "1f6b6-1f3fe-200d-27a1-fe0f", 204 | "emoji": "🚶🏾‍➡️", 205 | "title": "Person Walking: Medium-Dark Skin Tone, Facing Right", 206 | "tags": [ 207 | "amble", 208 | "gait", 209 | "hike", 210 | "man", 211 | "pace", 212 | "pedestrian", 213 | "person", 214 | "stride", 215 | "stroll", 216 | "walk", 217 | "walking" 218 | ], 219 | "codepoints": [ 220 | "U+1F6B6", 221 | "U+1F3FE", 222 | "U+200D", 223 | "U+27A1", 224 | "U+FE0F" 225 | ], 226 | "parent": "1f6b6-200d-27a1-fe0f", 227 | "image": { 228 | "brand": "apple", 229 | "platform": [ 230 | "Apple", 231 | "iOS 18.4" 232 | ], 233 | "source": "source/apple/419/person_walking_facing_right_medium-dark_skin_tone_1f6b6-1f3fe-200d-27a1-fe0f.png" 234 | } 235 | }, 236 | { 237 | "category": "Emoji & People", 238 | "sub_category": "Person Activity", 239 | "code": "1f6b6-1f3ff-200d-27a1-fe0f", 240 | "emoji": "🚶🏿‍➡️", 241 | "title": "Person Walking: Dark Skin Tone, Facing Right", 242 | "tags": [ 243 | "amble", 244 | "gait", 245 | "hike", 246 | "man", 247 | "pace", 248 | "pedestrian", 249 | "person", 250 | "stride", 251 | "stroll", 252 | "walk", 253 | "walking" 254 | ], 255 | "codepoints": [ 256 | "U+1F6B6", 257 | "U+1F3FF", 258 | "U+200D", 259 | "U+27A1", 260 | "U+FE0F" 261 | ], 262 | "parent": "1f6b6-200d-27a1-fe0f", 263 | "image": { 264 | "brand": "apple", 265 | "platform": [ 266 | "Apple", 267 | "iOS 18.4" 268 | ], 269 | "source": "source/apple/419/person_walking_facing_right_dark_skin_tone_1f6b6-1f3ff-200d-27a1-fe0f.png" 270 | } 271 | }, 272 | { 273 | "category": "Emoji & People", 274 | "sub_category": "Person Activity", 275 | "code": "1f6b6-200d-2640-fe0f-200d-27a1-fe0f", 276 | "emoji": "🚶‍♀️‍➡️", 277 | "title": "Woman Walking: Facing Right", 278 | "tags": [ 279 | "amble", 280 | "gait", 281 | "hike", 282 | "man", 283 | "pace", 284 | "pedestrian", 285 | "stride", 286 | "stroll", 287 | "walk", 288 | "walking", 289 | "woman" 290 | ], 291 | "codepoints": [ 292 | "U+1F6B6", 293 | "U+200D", 294 | "U+2640", 295 | "U+FE0F", 296 | "U+200D", 297 | "U+27A1", 298 | "U+FE0F" 299 | ], 300 | "image": { 301 | "brand": "apple", 302 | "platform": [ 303 | "Apple", 304 | "iOS 18.4" 305 | ], 306 | "source": "source/apple/419/woman_walking_facing_right_1f6b6-200d-2640-fe0f-200d-27a1-fe0f.png" 307 | } 308 | }, 309 | { 310 | "category": "Emoji & People", 311 | "sub_category": "Person Activity", 312 | "code": "1f6b6-1f3fb-200d-2640-fe0f-200d-27a1-fe0f", 313 | "emoji": "🚶🏻‍♀️‍➡️", 314 | "title": "Woman Walking: Light Skin Tone, Facing Right", 315 | "tags": [ 316 | "amble", 317 | "gait", 318 | "hike", 319 | "man", 320 | "pace", 321 | "pedestrian", 322 | "stride", 323 | "stroll", 324 | "walk", 325 | "walking", 326 | "woman" 327 | ], 328 | "codepoints": [ 329 | "U+1F6B6", 330 | "U+1F3FB", 331 | "U+200D", 332 | "U+2640", 333 | "U+FE0F", 334 | "U+200D", 335 | "U+27A1", 336 | "U+FE0F" 337 | ], 338 | "parent": "1f6b6-200d-2640-fe0f-200d-27a1-fe0f", 339 | "image": { 340 | "brand": "apple", 341 | "platform": [ 342 | "Apple", 343 | "iOS 18.4" 344 | ], 345 | "source": "source/apple/419/woman_walking_facing_right_light_skin_tone_1f6b6-1f3fb-200d-2640-fe0f-200d-27a1-fe0f.png" 346 | } 347 | }, 348 | { 349 | "category": "Emoji & People", 350 | "sub_category": "Person Activity", 351 | "code": "1f6b6-1f3fc-200d-2640-fe0f-200d-27a1-fe0f", 352 | "emoji": "🚶🏼‍♀️‍➡️", 353 | "title": "Woman Walking: Medium-Light Skin Tone, Facing Right", 354 | "tags": [ 355 | "amble", 356 | "gait", 357 | "hike", 358 | "man", 359 | "pace", 360 | "pedestrian", 361 | "stride", 362 | "stroll", 363 | "walk", 364 | "walking", 365 | "woman" 366 | ], 367 | "codepoints": [ 368 | "U+1F6B6", 369 | "U+1F3FC", 370 | "U+200D", 371 | "U+2640", 372 | "U+FE0F", 373 | "U+200D", 374 | "U+27A1", 375 | "U+FE0F" 376 | ], 377 | "parent": "1f6b6-200d-2640-fe0f-200d-27a1-fe0f", 378 | "image": { 379 | "brand": "apple", 380 | "platform": [ 381 | "Apple", 382 | "iOS 18.4" 383 | ], 384 | "source": "source/apple/419/woman_walking_facing_right_medium-light_skin_tone_1f6b6-1f3fc-200d-2640-fe0f-200d-27a1-fe0f.png" 385 | } 386 | }, 387 | { 388 | "category": "Emoji & People", 389 | "sub_category": "Person Activity", 390 | "code": "1f6b6-1f3fd-200d-2640-fe0f-200d-27a1-fe0f", 391 | "emoji": "🚶🏽‍♀️‍➡️", 392 | "title": "Woman Walking: Medium Skin Tone, Facing Right", 393 | "tags": [ 394 | "amble", 395 | "gait", 396 | "hike", 397 | "man", 398 | "pace", 399 | "pedestrian", 400 | "stride", 401 | "stroll", 402 | "walk", 403 | "walking", 404 | "woman" 405 | ], 406 | "codepoints": [ 407 | "U+1F6B6", 408 | "U+1F3FD", 409 | "U+200D", 410 | "U+2640", 411 | "U+FE0F", 412 | "U+200D", 413 | "U+27A1", 414 | "U+FE0F" 415 | ], 416 | "parent": "1f6b6-200d-2640-fe0f-200d-27a1-fe0f", 417 | "image": { 418 | "brand": "apple", 419 | "platform": [ 420 | "Apple", 421 | "iOS 18.4" 422 | ], 423 | "source": "source/apple/419/woman_walking_facing_right_medium_skin_tone_1f6b6-1f3fd-200d-2640-fe0f-200d-27a1-fe0f.png" 424 | } 425 | }, 426 | { 427 | "category": "Emoji & People", 428 | "sub_category": "Person Activity", 429 | "code": "1f6b6-1f3fe-200d-2640-fe0f-200d-27a1-fe0f", 430 | "emoji": "🚶🏾‍♀️‍➡️", 431 | "title": "Woman Walking: Medium-Dark Skin Tone, Facing Right", 432 | "tags": [ 433 | "amble", 434 | "gait", 435 | "hike", 436 | "man", 437 | "pace", 438 | "pedestrian", 439 | "stride", 440 | "stroll", 441 | "walk", 442 | "walking", 443 | "woman" 444 | ], 445 | "codepoints": [ 446 | "U+1F6B6", 447 | "U+1F3FE", 448 | "U+200D", 449 | "U+2640", 450 | "U+FE0F", 451 | "U+200D", 452 | "U+27A1", 453 | "U+FE0F" 454 | ], 455 | "parent": "1f6b6-200d-2640-fe0f-200d-27a1-fe0f", 456 | "image": { 457 | "brand": "apple", 458 | "platform": [ 459 | "Apple", 460 | "iOS 18.4" 461 | ], 462 | "source": "source/apple/419/woman_walking_facing_right_medium-dark_skin_tone_1f6b6-1f3fe-200d-2640-fe0f-200d-27a1-fe0f.png" 463 | } 464 | }, 465 | { 466 | "category": "Emoji & People", 467 | "sub_category": "Person Activity", 468 | "code": "1f6b6-1f3ff-200d-2640-fe0f-200d-27a1-fe0f", 469 | "emoji": "🚶🏿‍♀️‍➡️", 470 | "title": "Woman Walking: Dark Skin Tone, Facing Right", 471 | "tags": [ 472 | "amble", 473 | "gait", 474 | "hike", 475 | "man", 476 | "pace", 477 | "pedestrian", 478 | "stride", 479 | "stroll", 480 | "walk", 481 | "walking", 482 | "woman" 483 | ], 484 | "codepoints": [ 485 | "U+1F6B6", 486 | "U+1F3FF", 487 | "U+200D", 488 | "U+2640", 489 | "U+FE0F", 490 | "U+200D", 491 | "U+27A1", 492 | "U+FE0F" 493 | ], 494 | "parent": "1f6b6-200d-2640-fe0f-200d-27a1-fe0f", 495 | "image": { 496 | "brand": "apple", 497 | "platform": [ 498 | "Apple", 499 | "iOS 18.4" 500 | ], 501 | "source": "source/apple/419/woman_walking_facing_right_dark_skin_tone_1f6b6-1f3ff-200d-2640-fe0f-200d-27a1-fe0f.png" 502 | } 503 | }, 504 | { 505 | "category": "Emoji & People", 506 | "sub_category": "Person Activity", 507 | "code": "1f6b6-200d-2642-fe0f-200d-27a1-fe0f", 508 | "emoji": "🚶‍♂️‍➡️", 509 | "title": "Man Walking: Facing Right", 510 | "tags": [ 511 | "amble", 512 | "gait", 513 | "hike", 514 | "man", 515 | "pace", 516 | "pedestrian", 517 | "stride", 518 | "stroll", 519 | "walk", 520 | "walking" 521 | ], 522 | "codepoints": [ 523 | "U+1F6B6", 524 | "U+200D", 525 | "U+2642", 526 | "U+FE0F", 527 | "U+200D", 528 | "U+27A1", 529 | "U+FE0F" 530 | ], 531 | "image": { 532 | "brand": "apple", 533 | "platform": [ 534 | "Apple", 535 | "iOS 18.4" 536 | ], 537 | "source": "source/apple/419/man_walking_facing_right_1f6b6-200d-2642-fe0f-200d-27a1-fe0f.png" 538 | } 539 | }, 540 | { 541 | "category": "Emoji & People", 542 | "sub_category": "Person Activity", 543 | "code": "1f6b6-1f3fb-200d-2642-fe0f-200d-27a1-fe0f", 544 | "emoji": "🚶🏻‍♂️‍➡️", 545 | "title": "Man Walking: Light Skin Tone, Facing Right", 546 | "tags": [ 547 | "amble", 548 | "gait", 549 | "hike", 550 | "man", 551 | "pace", 552 | "pedestrian", 553 | "stride", 554 | "stroll", 555 | "walk", 556 | "walking" 557 | ], 558 | "codepoints": [ 559 | "U+1F6B6", 560 | "U+1F3FB", 561 | "U+200D", 562 | "U+2642", 563 | "U+FE0F", 564 | "U+200D", 565 | "U+27A1", 566 | "U+FE0F" 567 | ], 568 | "parent": "1f6b6-200d-2642-fe0f-200d-27a1-fe0f", 569 | "image": { 570 | "brand": "apple", 571 | "platform": [ 572 | "Apple", 573 | "iOS 18.4" 574 | ], 575 | "source": "source/apple/419/man_walking_facing_right_light_skin_tone_1f6b6-1f3fb-200d-2642-fe0f-200d-27a1-fe0f.png" 576 | } 577 | }, 578 | { 579 | "category": "Emoji & People", 580 | "sub_category": "Person Activity", 581 | "code": "1f6b6-1f3fc-200d-2642-fe0f-200d-27a1-fe0f", 582 | "emoji": "🚶🏼‍♂️‍➡️", 583 | "title": "Man Walking: Medium-Light Skin Tone, Facing Right", 584 | "tags": [ 585 | "amble", 586 | "gait", 587 | "hike", 588 | "man", 589 | "pace", 590 | "pedestrian", 591 | "stride", 592 | "stroll", 593 | "walk", 594 | "walking" 595 | ], 596 | "codepoints": [ 597 | "U+1F6B6", 598 | "U+1F3FC", 599 | "U+200D", 600 | "U+2642", 601 | "U+FE0F", 602 | "U+200D", 603 | "U+27A1", 604 | "U+FE0F" 605 | ], 606 | "parent": "1f6b6-200d-2642-fe0f-200d-27a1-fe0f", 607 | "image": { 608 | "brand": "apple", 609 | "platform": [ 610 | "Apple", 611 | "iOS 18.4" 612 | ], 613 | "source": "source/apple/419/man_walking_facing_right_medium-light_skin_tone_1f6b6-1f3fc-200d-2642-fe0f-200d-27a1-fe0f.png" 614 | } 615 | }, 616 | { 617 | "category": "Emoji & People", 618 | "sub_category": "Person Activity", 619 | "code": "1f6b6-1f3fd-200d-2642-fe0f-200d-27a1-fe0f", 620 | "emoji": "🚶🏽‍♂️‍➡️", 621 | "title": "Man Walking: Medium Skin Tone, Facing Right", 622 | "tags": [ 623 | "amble", 624 | "gait", 625 | "hike", 626 | "man", 627 | "pace", 628 | "pedestrian", 629 | "stride", 630 | "stroll", 631 | "walk", 632 | "walking" 633 | ], 634 | "codepoints": [ 635 | "U+1F6B6", 636 | "U+1F3FD", 637 | "U+200D", 638 | "U+2642", 639 | "U+FE0F", 640 | "U+200D", 641 | "U+27A1", 642 | "U+FE0F" 643 | ], 644 | "parent": "1f6b6-200d-2642-fe0f-200d-27a1-fe0f", 645 | "image": { 646 | "brand": "apple", 647 | "platform": [ 648 | "Apple", 649 | "iOS 18.4" 650 | ], 651 | "source": "source/apple/419/man_walking_facing_right_medium_skin_tone_1f6b6-1f3fd-200d-2642-fe0f-200d-27a1-fe0f.png" 652 | } 653 | }, 654 | { 655 | "category": "Emoji & People", 656 | "sub_category": "Person Activity", 657 | "code": "1f6b6-1f3fe-200d-2642-fe0f-200d-27a1-fe0f", 658 | "emoji": "🚶🏾‍♂️‍➡️", 659 | "title": "Man Walking: Medium-Dark Skin Tone, Facing Right", 660 | "tags": [ 661 | "amble", 662 | "gait", 663 | "hike", 664 | "man", 665 | "pace", 666 | "pedestrian", 667 | "stride", 668 | "stroll", 669 | "walk", 670 | "walking" 671 | ], 672 | "codepoints": [ 673 | "U+1F6B6", 674 | "U+1F3FE", 675 | "U+200D", 676 | "U+2642", 677 | "U+FE0F", 678 | "U+200D", 679 | "U+27A1", 680 | "U+FE0F" 681 | ], 682 | "parent": "1f6b6-200d-2642-fe0f-200d-27a1-fe0f", 683 | "image": { 684 | "brand": "apple", 685 | "platform": [ 686 | "Apple", 687 | "iOS 18.4" 688 | ], 689 | "source": "source/apple/419/man_walking_facing_right_medium-dark_skin_tone_1f6b6-1f3fe-200d-2642-fe0f-200d-27a1-fe0f.png" 690 | } 691 | }, 692 | { 693 | "category": "Emoji & People", 694 | "sub_category": "Person Activity", 695 | "code": "1f6b6-1f3ff-200d-2642-fe0f-200d-27a1-fe0f", 696 | "emoji": "🚶🏿‍♂️‍➡️", 697 | "title": "Man Walking: Dark Skin Tone, Facing Right", 698 | "tags": [ 699 | "amble", 700 | "gait", 701 | "hike", 702 | "man", 703 | "pace", 704 | "pedestrian", 705 | "stride", 706 | "stroll", 707 | "walk", 708 | "walking" 709 | ], 710 | "codepoints": [ 711 | "U+1F6B6", 712 | "U+1F3FF", 713 | "U+200D", 714 | "U+2642", 715 | "U+FE0F", 716 | "U+200D", 717 | "U+27A1", 718 | "U+FE0F" 719 | ], 720 | "parent": "1f6b6-200d-2642-fe0f-200d-27a1-fe0f", 721 | "image": { 722 | "brand": "apple", 723 | "platform": [ 724 | "Apple", 725 | "iOS 18.4" 726 | ], 727 | "source": "source/apple/419/man_walking_facing_right_dark_skin_tone_1f6b6-1f3ff-200d-2642-fe0f-200d-27a1-fe0f.png" 728 | } 729 | }, 730 | { 731 | "category": "Emoji & People", 732 | "sub_category": "Person Activity", 733 | "code": "1f9ce-200d-27a1-fe0f", 734 | "emoji": "🧎‍➡️", 735 | "title": "Person Kneeling: Facing Right", 736 | "tags": [ 737 | "kneel", 738 | "kneeling", 739 | "knees", 740 | "person" 741 | ], 742 | "codepoints": [ 743 | "U+1F9CE", 744 | "U+200D", 745 | "U+27A1", 746 | "U+FE0F" 747 | ], 748 | "image": { 749 | "brand": "apple", 750 | "platform": [ 751 | "Apple", 752 | "iOS 18.4" 753 | ], 754 | "source": "source/apple/419/person_kneeling_facing_right_1f9ce-200d-27a1-fe0f.png" 755 | } 756 | }, 757 | { 758 | "category": "Emoji & People", 759 | "sub_category": "Person Activity", 760 | "code": "1f9ce-1f3fb-200d-27a1-fe0f", 761 | "emoji": "🧎🏻‍➡️", 762 | "title": "Person Kneeling: Light Skin Tone, Facing Right", 763 | "tags": [ 764 | "kneel", 765 | "kneeling", 766 | "knees", 767 | "person" 768 | ], 769 | "codepoints": [ 770 | "U+1F9CE", 771 | "U+1F3FB", 772 | "U+200D", 773 | "U+27A1", 774 | "U+FE0F" 775 | ], 776 | "parent": "1f9ce-200d-27a1-fe0f", 777 | "image": { 778 | "brand": "apple", 779 | "platform": [ 780 | "Apple", 781 | "iOS 18.4" 782 | ], 783 | "source": "source/apple/419/person_kneeling_facing_right_light_skin_tone_1f9ce-1f3fb-200d-27a1-fe0f.png" 784 | } 785 | }, 786 | { 787 | "category": "Emoji & People", 788 | "sub_category": "Person Activity", 789 | "code": "1f9ce-1f3fc-200d-27a1-fe0f", 790 | "emoji": "🧎🏼‍➡️", 791 | "title": "Person Kneeling: Medium-Light Skin Tone, Facing Right", 792 | "tags": [ 793 | "kneel", 794 | "kneeling", 795 | "knees", 796 | "person" 797 | ], 798 | "codepoints": [ 799 | "U+1F9CE", 800 | "U+1F3FC", 801 | "U+200D", 802 | "U+27A1", 803 | "U+FE0F" 804 | ], 805 | "parent": "1f9ce-200d-27a1-fe0f", 806 | "image": { 807 | "brand": "apple", 808 | "platform": [ 809 | "Apple", 810 | "iOS 18.4" 811 | ], 812 | "source": "source/apple/419/person_kneeling_facing_right_medium-light_skin_tone_1f9ce-1f3fc-200d-27a1-fe0f.png" 813 | } 814 | }, 815 | { 816 | "category": "Emoji & People", 817 | "sub_category": "Person Activity", 818 | "code": "1f9ce-1f3fd-200d-27a1-fe0f", 819 | "emoji": "🧎🏽‍➡️", 820 | "title": "Person Kneeling: Medium Skin Tone, Facing Right", 821 | "tags": [ 822 | "kneel", 823 | "kneeling", 824 | "knees", 825 | "person" 826 | ], 827 | "codepoints": [ 828 | "U+1F9CE", 829 | "U+1F3FD", 830 | "U+200D", 831 | "U+27A1", 832 | "U+FE0F" 833 | ], 834 | "parent": "1f9ce-200d-27a1-fe0f", 835 | "image": { 836 | "brand": "apple", 837 | "platform": [ 838 | "Apple", 839 | "iOS 18.4" 840 | ], 841 | "source": "source/apple/419/person_kneeling_facing_right_medium_skin_tone_1f9ce-1f3fd-200d-27a1-fe0f.png" 842 | } 843 | }, 844 | { 845 | "category": "Emoji & People", 846 | "sub_category": "Person Activity", 847 | "code": "1f9ce-1f3fe-200d-27a1-fe0f", 848 | "emoji": "🧎🏾‍➡️", 849 | "title": "Person Kneeling: Medium-Dark Skin Tone, Facing Right", 850 | "tags": [ 851 | "kneel", 852 | "kneeling", 853 | "knees", 854 | "person" 855 | ], 856 | "codepoints": [ 857 | "U+1F9CE", 858 | "U+1F3FE", 859 | "U+200D", 860 | "U+27A1", 861 | "U+FE0F" 862 | ], 863 | "parent": "1f9ce-200d-27a1-fe0f", 864 | "image": { 865 | "brand": "apple", 866 | "platform": [ 867 | "Apple", 868 | "iOS 18.4" 869 | ], 870 | "source": "source/apple/419/person_kneeling_facing_right_medium-dark_skin_tone_1f9ce-1f3fe-200d-27a1-fe0f.png" 871 | } 872 | }, 873 | { 874 | "category": "Emoji & People", 875 | "sub_category": "Person Activity", 876 | "code": "1f9ce-1f3ff-200d-27a1-fe0f", 877 | "emoji": "🧎🏿‍➡️", 878 | "title": "Person Kneeling: Dark Skin Tone, Facing Right", 879 | "tags": [ 880 | "kneel", 881 | "kneeling", 882 | "knees", 883 | "person" 884 | ], 885 | "codepoints": [ 886 | "U+1F9CE", 887 | "U+1F3FF", 888 | "U+200D", 889 | "U+27A1", 890 | "U+FE0F" 891 | ], 892 | "parent": "1f9ce-200d-27a1-fe0f", 893 | "image": { 894 | "brand": "apple", 895 | "platform": [ 896 | "Apple", 897 | "iOS 18.4" 898 | ], 899 | "source": "source/apple/419/person_kneeling_facing_right_dark_skin_tone_1f9ce-1f3ff-200d-27a1-fe0f.png" 900 | } 901 | }, 902 | { 903 | "category": "Emoji & People", 904 | "sub_category": "Person Activity", 905 | "code": "1f9ce-200d-2640-fe0f-200d-27a1-fe0f", 906 | "emoji": "🧎‍♀️‍➡️", 907 | "title": "Woman Kneeling: Facing Right", 908 | "tags": [ 909 | "kneel", 910 | "kneeling", 911 | "knees", 912 | "woman" 913 | ], 914 | "codepoints": [ 915 | "U+1F9CE", 916 | "U+200D", 917 | "U+2640", 918 | "U+FE0F", 919 | "U+200D", 920 | "U+27A1", 921 | "U+FE0F" 922 | ], 923 | "image": { 924 | "brand": "apple", 925 | "platform": [ 926 | "Apple", 927 | "iOS 18.4" 928 | ], 929 | "source": "source/apple/419/woman_kneeling_facing_right_1f9ce-200d-2640-fe0f-200d-27a1-fe0f.png" 930 | } 931 | }, 932 | { 933 | "category": "Emoji & People", 934 | "sub_category": "Person Activity", 935 | "code": "1f9ce-1f3fb-200d-2640-fe0f-200d-27a1-fe0f", 936 | "emoji": "🧎🏻‍♀️‍➡️", 937 | "title": "Woman Kneeling: Light Skin Tone, Facing Right", 938 | "tags": [ 939 | "kneel", 940 | "kneeling", 941 | "knees", 942 | "woman" 943 | ], 944 | "codepoints": [ 945 | "U+1F9CE", 946 | "U+1F3FB", 947 | "U+200D", 948 | "U+2640", 949 | "U+FE0F", 950 | "U+200D", 951 | "U+27A1", 952 | "U+FE0F" 953 | ], 954 | "parent": "1f9ce-200d-2640-fe0f-200d-27a1-fe0f", 955 | "image": { 956 | "brand": "apple", 957 | "platform": [ 958 | "Apple", 959 | "iOS 18.4" 960 | ], 961 | "source": "source/apple/419/woman_kneeling_facing_right_light_skin_tone_1f9ce-1f3fb-200d-2640-fe0f-200d-27a1-fe0f.png" 962 | } 963 | }, 964 | { 965 | "category": "Emoji & People", 966 | "sub_category": "Person Activity", 967 | "code": "1f9ce-1f3fc-200d-2640-fe0f-200d-27a1-fe0f", 968 | "emoji": "🧎🏼‍♀️‍➡️", 969 | "title": "Woman Kneeling: Medium-Light Skin Tone, Facing Right", 970 | "tags": [ 971 | "kneel", 972 | "kneeling", 973 | "knees", 974 | "woman" 975 | ], 976 | "codepoints": [ 977 | "U+1F9CE", 978 | "U+1F3FC", 979 | "U+200D", 980 | "U+2640", 981 | "U+FE0F", 982 | "U+200D", 983 | "U+27A1", 984 | "U+FE0F" 985 | ], 986 | "parent": "1f9ce-200d-2640-fe0f-200d-27a1-fe0f", 987 | "image": { 988 | "brand": "apple", 989 | "platform": [ 990 | "Apple", 991 | "iOS 18.4" 992 | ], 993 | "source": "source/apple/419/woman_kneeling_facing_right_medium-light_skin_tone_1f9ce-1f3fc-200d-2640-fe0f-200d-27a1-fe0f.png" 994 | } 995 | }, 996 | { 997 | "category": "Emoji & People", 998 | "sub_category": "Person Activity", 999 | "code": "1f9ce-1f3fd-200d-2640-fe0f-200d-27a1-fe0f", 1000 | "emoji": "🧎🏽‍♀️‍➡️", 1001 | "title": "Woman Kneeling: Medium Skin Tone, Facing Right", 1002 | "tags": [ 1003 | "kneel", 1004 | "kneeling", 1005 | "knees", 1006 | "woman" 1007 | ], 1008 | "codepoints": [ 1009 | "U+1F9CE", 1010 | "U+1F3FD", 1011 | "U+200D", 1012 | "U+2640", 1013 | "U+FE0F", 1014 | "U+200D", 1015 | "U+27A1", 1016 | "U+FE0F" 1017 | ], 1018 | "parent": "1f9ce-200d-2640-fe0f-200d-27a1-fe0f", 1019 | "image": { 1020 | "brand": "apple", 1021 | "platform": [ 1022 | "Apple", 1023 | "iOS 18.4" 1024 | ], 1025 | "source": "source/apple/419/woman_kneeling_facing_right_medium_skin_tone_1f9ce-1f3fd-200d-2640-fe0f-200d-27a1-fe0f.png" 1026 | } 1027 | }, 1028 | { 1029 | "category": "Emoji & People", 1030 | "sub_category": "Person Activity", 1031 | "code": "1f9ce-1f3fe-200d-2640-fe0f-200d-27a1-fe0f", 1032 | "emoji": "🧎🏾‍♀️‍➡️", 1033 | "title": "Woman Kneeling: Medium-Dark Skin Tone, Facing Right", 1034 | "tags": [ 1035 | "kneel", 1036 | "kneeling", 1037 | "knees", 1038 | "woman" 1039 | ], 1040 | "codepoints": [ 1041 | "U+1F9CE", 1042 | "U+1F3FE", 1043 | "U+200D", 1044 | "U+2640", 1045 | "U+FE0F", 1046 | "U+200D", 1047 | "U+27A1", 1048 | "U+FE0F" 1049 | ], 1050 | "parent": "1f9ce-200d-2640-fe0f-200d-27a1-fe0f", 1051 | "image": { 1052 | "brand": "apple", 1053 | "platform": [ 1054 | "Apple", 1055 | "iOS 18.4" 1056 | ], 1057 | "source": "source/apple/419/woman_kneeling_facing_right_medium-dark_skin_tone_1f9ce-1f3fe-200d-2640-fe0f-200d-27a1-fe0f.png" 1058 | } 1059 | }, 1060 | { 1061 | "category": "Emoji & People", 1062 | "sub_category": "Person Activity", 1063 | "code": "1f9ce-1f3ff-200d-2640-fe0f-200d-27a1-fe0f", 1064 | "emoji": "🧎🏿‍♀️‍➡️", 1065 | "title": "Woman Kneeling: Dark Skin Tone, Facing Right", 1066 | "tags": [ 1067 | "kneel", 1068 | "kneeling", 1069 | "knees", 1070 | "woman" 1071 | ], 1072 | "codepoints": [ 1073 | "U+1F9CE", 1074 | "U+1F3FF", 1075 | "U+200D", 1076 | "U+2640", 1077 | "U+FE0F", 1078 | "U+200D", 1079 | "U+27A1", 1080 | "U+FE0F" 1081 | ], 1082 | "parent": "1f9ce-200d-2640-fe0f-200d-27a1-fe0f", 1083 | "image": { 1084 | "brand": "apple", 1085 | "platform": [ 1086 | "Apple", 1087 | "iOS 18.4" 1088 | ], 1089 | "source": "source/apple/419/woman_kneeling_facing_right_dark_skin_tone_1f9ce-1f3ff-200d-2640-fe0f-200d-27a1-fe0f.png" 1090 | } 1091 | }, 1092 | { 1093 | "category": "Emoji & People", 1094 | "sub_category": "Person Activity", 1095 | "code": "1f9ce-200d-2642-fe0f-200d-27a1-fe0f", 1096 | "emoji": "🧎‍♂️‍➡️", 1097 | "title": "Man Kneeling: Facing Right", 1098 | "tags": [ 1099 | "kneel", 1100 | "kneeling", 1101 | "knees", 1102 | "man" 1103 | ], 1104 | "codepoints": [ 1105 | "U+1F9CE", 1106 | "U+200D", 1107 | "U+2642", 1108 | "U+FE0F", 1109 | "U+200D", 1110 | "U+27A1", 1111 | "U+FE0F" 1112 | ], 1113 | "image": { 1114 | "brand": "apple", 1115 | "platform": [ 1116 | "Apple", 1117 | "iOS 18.4" 1118 | ], 1119 | "source": "source/apple/419/man_kneeling_facing_right_1f9ce-200d-2642-fe0f-200d-27a1-fe0f.png" 1120 | } 1121 | }, 1122 | { 1123 | "category": "Emoji & People", 1124 | "sub_category": "Person Activity", 1125 | "code": "1f9ce-1f3fb-200d-2642-fe0f-200d-27a1-fe0f", 1126 | "emoji": "🧎🏻‍♂️‍➡️", 1127 | "title": "Man Kneeling: Light Skin Tone, Facing Right", 1128 | "tags": [ 1129 | "kneel", 1130 | "kneeling", 1131 | "knees", 1132 | "man" 1133 | ], 1134 | "codepoints": [ 1135 | "U+1F9CE", 1136 | "U+1F3FB", 1137 | "U+200D", 1138 | "U+2642", 1139 | "U+FE0F", 1140 | "U+200D", 1141 | "U+27A1", 1142 | "U+FE0F" 1143 | ], 1144 | "parent": "1f9ce-200d-2642-fe0f-200d-27a1-fe0f", 1145 | "image": { 1146 | "brand": "apple", 1147 | "platform": [ 1148 | "Apple", 1149 | "iOS 18.4" 1150 | ], 1151 | "source": "source/apple/419/man_kneeling_facing_right_light_skin_tone_1f9ce-1f3fb-200d-2642-fe0f-200d-27a1-fe0f.png" 1152 | } 1153 | }, 1154 | { 1155 | "category": "Emoji & People", 1156 | "sub_category": "Person Activity", 1157 | "code": "1f9ce-1f3fc-200d-2642-fe0f-200d-27a1-fe0f", 1158 | "emoji": "🧎🏼‍♂️‍➡️", 1159 | "title": "Man Kneeling: Medium-Light Skin Tone, Facing Right", 1160 | "tags": [ 1161 | "kneel", 1162 | "kneeling", 1163 | "knees", 1164 | "man" 1165 | ], 1166 | "codepoints": [ 1167 | "U+1F9CE", 1168 | "U+1F3FC", 1169 | "U+200D", 1170 | "U+2642", 1171 | "U+FE0F", 1172 | "U+200D", 1173 | "U+27A1", 1174 | "U+FE0F" 1175 | ], 1176 | "parent": "1f9ce-200d-2642-fe0f-200d-27a1-fe0f", 1177 | "image": { 1178 | "brand": "apple", 1179 | "platform": [ 1180 | "Apple", 1181 | "iOS 18.4" 1182 | ], 1183 | "source": "source/apple/419/man_kneeling_facing_right_medium-light_skin_tone_1f9ce-1f3fc-200d-2642-fe0f-200d-27a1-fe0f.png" 1184 | } 1185 | }, 1186 | { 1187 | "category": "Emoji & People", 1188 | "sub_category": "Person Activity", 1189 | "code": "1f9ce-1f3fd-200d-2642-fe0f-200d-27a1-fe0f", 1190 | "emoji": "🧎🏽‍♂️‍➡️", 1191 | "title": "Man Kneeling: Medium Skin Tone, Facing Right", 1192 | "tags": [ 1193 | "kneel", 1194 | "kneeling", 1195 | "knees", 1196 | "man" 1197 | ], 1198 | "codepoints": [ 1199 | "U+1F9CE", 1200 | "U+1F3FD", 1201 | "U+200D", 1202 | "U+2642", 1203 | "U+FE0F", 1204 | "U+200D", 1205 | "U+27A1", 1206 | "U+FE0F" 1207 | ], 1208 | "parent": "1f9ce-200d-2642-fe0f-200d-27a1-fe0f", 1209 | "image": { 1210 | "brand": "apple", 1211 | "platform": [ 1212 | "Apple", 1213 | "iOS 18.4" 1214 | ], 1215 | "source": "source/apple/419/man_kneeling_facing_right_medium_skin_tone_1f9ce-1f3fd-200d-2642-fe0f-200d-27a1-fe0f.png" 1216 | } 1217 | }, 1218 | { 1219 | "category": "Emoji & People", 1220 | "sub_category": "Person Activity", 1221 | "code": "1f9ce-1f3fe-200d-2642-fe0f-200d-27a1-fe0f", 1222 | "emoji": "🧎🏾‍♂️‍➡️", 1223 | "title": "Man Kneeling: Medium-Dark Skin Tone, Facing Right", 1224 | "tags": [ 1225 | "kneel", 1226 | "kneeling", 1227 | "knees", 1228 | "man" 1229 | ], 1230 | "codepoints": [ 1231 | "U+1F9CE", 1232 | "U+1F3FE", 1233 | "U+200D", 1234 | "U+2642", 1235 | "U+FE0F", 1236 | "U+200D", 1237 | "U+27A1", 1238 | "U+FE0F" 1239 | ], 1240 | "parent": "1f9ce-200d-2642-fe0f-200d-27a1-fe0f", 1241 | "image": { 1242 | "brand": "apple", 1243 | "platform": [ 1244 | "Apple", 1245 | "iOS 18.4" 1246 | ], 1247 | "source": "source/apple/419/man_kneeling_facing_right_medium-dark_skin_tone_1f9ce-1f3fe-200d-2642-fe0f-200d-27a1-fe0f.png" 1248 | } 1249 | }, 1250 | { 1251 | "category": "Emoji & People", 1252 | "sub_category": "Person Activity", 1253 | "code": "1f9ce-1f3ff-200d-2642-fe0f-200d-27a1-fe0f", 1254 | "emoji": "🧎🏿‍♂️‍➡️", 1255 | "title": "Man Kneeling: Dark Skin Tone, Facing Right", 1256 | "tags": [ 1257 | "kneel", 1258 | "kneeling", 1259 | "knees", 1260 | "man" 1261 | ], 1262 | "codepoints": [ 1263 | "U+1F9CE", 1264 | "U+1F3FF", 1265 | "U+200D", 1266 | "U+2642", 1267 | "U+FE0F", 1268 | "U+200D", 1269 | "U+27A1", 1270 | "U+FE0F" 1271 | ], 1272 | "parent": "1f9ce-200d-2642-fe0f-200d-27a1-fe0f", 1273 | "image": { 1274 | "brand": "apple", 1275 | "platform": [ 1276 | "Apple", 1277 | "iOS 18.4" 1278 | ], 1279 | "source": "source/apple/419/man_kneeling_facing_right_dark_skin_tone_1f9ce-1f3ff-200d-2642-fe0f-200d-27a1-fe0f.png" 1280 | } 1281 | }, 1282 | { 1283 | "category": "Emoji & People", 1284 | "sub_category": "Person Activity", 1285 | "code": "1f9d1-200d-1f9af-200d-27a1-fe0f", 1286 | "emoji": "🧑‍🦯‍➡️", 1287 | "title": "Person with White Cane: Facing Right", 1288 | "tags": [ 1289 | "accessibility", 1290 | "blind", 1291 | "cane", 1292 | "person", 1293 | "probing", 1294 | "white" 1295 | ], 1296 | "codepoints": [ 1297 | "U+1F9D1", 1298 | "U+200D", 1299 | "U+1F9AF", 1300 | "U+200D", 1301 | "U+27A1", 1302 | "U+FE0F" 1303 | ], 1304 | "image": { 1305 | "brand": "apple", 1306 | "platform": [ 1307 | "Apple", 1308 | "iOS 18.4" 1309 | ], 1310 | "source": "source/apple/419/person_with_white_cane_facing_right_1f9d1-200d-1f9af-200d-27a1-fe0f.png" 1311 | } 1312 | }, 1313 | { 1314 | "category": "Emoji & People", 1315 | "sub_category": "Person Activity", 1316 | "code": "1f9d1-1f3fb-200d-1f9af-200d-27a1-fe0f", 1317 | "emoji": "🧑🏻‍🦯‍➡️", 1318 | "title": "Person with White Cane: Light Skin Tone, Facing Right", 1319 | "tags": [ 1320 | "accessibility", 1321 | "blind", 1322 | "cane", 1323 | "person", 1324 | "probing", 1325 | "white" 1326 | ], 1327 | "codepoints": [ 1328 | "U+1F9D1", 1329 | "U+1F3FB", 1330 | "U+200D", 1331 | "U+1F9AF", 1332 | "U+200D", 1333 | "U+27A1", 1334 | "U+FE0F" 1335 | ], 1336 | "parent": "1f9d1-200d-1f9af-200d-27a1-fe0f", 1337 | "image": { 1338 | "brand": "apple", 1339 | "platform": [ 1340 | "Apple", 1341 | "iOS 18.4" 1342 | ], 1343 | "source": "source/apple/419/person_with_white_cane_facing_right_light_skin_tone_1f9d1-1f3fb-200d-1f9af-200d-27a1-fe0f.png" 1344 | } 1345 | }, 1346 | { 1347 | "category": "Emoji & People", 1348 | "sub_category": "Person Activity", 1349 | "code": "1f9d1-1f3fc-200d-1f9af-200d-27a1-fe0f", 1350 | "emoji": "🧑🏼‍🦯‍➡️", 1351 | "title": "Person with White Cane: Medium-Light Skin Tone, Facing Right", 1352 | "tags": [ 1353 | "accessibility", 1354 | "blind", 1355 | "cane", 1356 | "person", 1357 | "probing", 1358 | "white" 1359 | ], 1360 | "codepoints": [ 1361 | "U+1F9D1", 1362 | "U+1F3FC", 1363 | "U+200D", 1364 | "U+1F9AF", 1365 | "U+200D", 1366 | "U+27A1", 1367 | "U+FE0F" 1368 | ], 1369 | "parent": "1f9d1-200d-1f9af-200d-27a1-fe0f", 1370 | "image": { 1371 | "brand": "apple", 1372 | "platform": [ 1373 | "Apple", 1374 | "iOS 18.4" 1375 | ], 1376 | "source": "source/apple/419/person_with_white_cane_facing_right_medium-light_skin_tone_1f9d1-1f3fc-200d-1f9af-200d-27a1-fe0f.png" 1377 | } 1378 | }, 1379 | { 1380 | "category": "Emoji & People", 1381 | "sub_category": "Person Activity", 1382 | "code": "1f9d1-1f3fd-200d-1f9af-200d-27a1-fe0f", 1383 | "emoji": "🧑🏽‍🦯‍➡️", 1384 | "title": "Person with White Cane: Medium Skin Tone, Facing Right", 1385 | "tags": [ 1386 | "accessibility", 1387 | "blind", 1388 | "cane", 1389 | "person", 1390 | "probing", 1391 | "white" 1392 | ], 1393 | "codepoints": [ 1394 | "U+1F9D1", 1395 | "U+1F3FD", 1396 | "U+200D", 1397 | "U+1F9AF", 1398 | "U+200D", 1399 | "U+27A1", 1400 | "U+FE0F" 1401 | ], 1402 | "parent": "1f9d1-200d-1f9af-200d-27a1-fe0f", 1403 | "image": { 1404 | "brand": "apple", 1405 | "platform": [ 1406 | "Apple", 1407 | "iOS 18.4" 1408 | ], 1409 | "source": "source/apple/419/person_with_white_cane_facing_right_medium_skin_tone_1f9d1-1f3fd-200d-1f9af-200d-27a1-fe0f.png" 1410 | } 1411 | }, 1412 | { 1413 | "category": "Emoji & People", 1414 | "sub_category": "Person Activity", 1415 | "code": "1f9d1-1f3fe-200d-1f9af-200d-27a1-fe0f", 1416 | "emoji": "🧑🏾‍🦯‍➡️", 1417 | "title": "Person with White Cane: Medium-Dark Skin Tone, Facing Right", 1418 | "tags": [ 1419 | "accessibility", 1420 | "blind", 1421 | "cane", 1422 | "person", 1423 | "probing", 1424 | "white" 1425 | ], 1426 | "codepoints": [ 1427 | "U+1F9D1", 1428 | "U+1F3FE", 1429 | "U+200D", 1430 | "U+1F9AF", 1431 | "U+200D", 1432 | "U+27A1", 1433 | "U+FE0F" 1434 | ], 1435 | "parent": "1f9d1-200d-1f9af-200d-27a1-fe0f", 1436 | "image": { 1437 | "brand": "apple", 1438 | "platform": [ 1439 | "Apple", 1440 | "iOS 18.4" 1441 | ], 1442 | "source": "source/apple/419/person_with_white_cane_facing_right_medium-dark_skin_tone_1f9d1-1f3fe-200d-1f9af-200d-27a1-fe0f.png" 1443 | } 1444 | }, 1445 | { 1446 | "category": "Emoji & People", 1447 | "sub_category": "Person Activity", 1448 | "code": "1f9d1-1f3ff-200d-1f9af-200d-27a1-fe0f", 1449 | "emoji": "🧑🏿‍🦯‍➡️", 1450 | "title": "Person with White Cane: Dark Skin Tone, Facing Right", 1451 | "tags": [ 1452 | "accessibility", 1453 | "blind", 1454 | "cane", 1455 | "person", 1456 | "probing", 1457 | "white" 1458 | ], 1459 | "codepoints": [ 1460 | "U+1F9D1", 1461 | "U+1F3FF", 1462 | "U+200D", 1463 | "U+1F9AF", 1464 | "U+200D", 1465 | "U+27A1", 1466 | "U+FE0F" 1467 | ], 1468 | "parent": "1f9d1-200d-1f9af-200d-27a1-fe0f", 1469 | "image": { 1470 | "brand": "apple", 1471 | "platform": [ 1472 | "Apple", 1473 | "iOS 18.4" 1474 | ], 1475 | "source": "source/apple/419/person_with_white_cane_facing_right_dark_skin_tone_1f9d1-1f3ff-200d-1f9af-200d-27a1-fe0f.png" 1476 | } 1477 | }, 1478 | { 1479 | "category": "Emoji & People", 1480 | "sub_category": "Person Activity", 1481 | "code": "1f468-200d-1f9af-200d-27a1-fe0f", 1482 | "emoji": "👨‍🦯‍➡️", 1483 | "title": "Man with White Cane: Facing Right", 1484 | "tags": [ 1485 | "accessibility", 1486 | "blind", 1487 | "cane", 1488 | "man", 1489 | "probing", 1490 | "white" 1491 | ], 1492 | "codepoints": [ 1493 | "U+1F468", 1494 | "U+200D", 1495 | "U+1F9AF", 1496 | "U+200D", 1497 | "U+27A1", 1498 | "U+FE0F" 1499 | ], 1500 | "image": { 1501 | "brand": "apple", 1502 | "platform": [ 1503 | "Apple", 1504 | "iOS 18.4" 1505 | ], 1506 | "source": "source/apple/419/man_with_white_cane_facing_right_1f468-200d-1f9af-200d-27a1-fe0f.png" 1507 | } 1508 | }, 1509 | { 1510 | "category": "Emoji & People", 1511 | "sub_category": "Person Activity", 1512 | "code": "1f468-1f3fb-200d-1f9af-200d-27a1-fe0f", 1513 | "emoji": "👨🏻‍🦯‍➡️", 1514 | "title": "Man with White Cane: Light Skin Tone, Facing Right", 1515 | "tags": [ 1516 | "accessibility", 1517 | "blind", 1518 | "cane", 1519 | "man", 1520 | "probing", 1521 | "white" 1522 | ], 1523 | "codepoints": [ 1524 | "U+1F468", 1525 | "U+1F3FB", 1526 | "U+200D", 1527 | "U+1F9AF", 1528 | "U+200D", 1529 | "U+27A1", 1530 | "U+FE0F" 1531 | ], 1532 | "parent": "1f468-200d-1f9af-200d-27a1-fe0f", 1533 | "image": { 1534 | "brand": "apple", 1535 | "platform": [ 1536 | "Apple", 1537 | "iOS 18.4" 1538 | ], 1539 | "source": "source/apple/419/man_with_white_cane_facing_right_light_skin_tone_1f468-1f3fb-200d-1f9af-200d-27a1-fe0f.png" 1540 | } 1541 | }, 1542 | { 1543 | "category": "Emoji & People", 1544 | "sub_category": "Person Activity", 1545 | "code": "1f468-1f3fc-200d-1f9af-200d-27a1-fe0f", 1546 | "emoji": "👨🏼‍🦯‍➡️", 1547 | "title": "Man with White Cane: Medium-Light Skin Tone, Facing Right", 1548 | "tags": [ 1549 | "accessibility", 1550 | "blind", 1551 | "cane", 1552 | "man", 1553 | "probing", 1554 | "white" 1555 | ], 1556 | "codepoints": [ 1557 | "U+1F468", 1558 | "U+1F3FC", 1559 | "U+200D", 1560 | "U+1F9AF", 1561 | "U+200D", 1562 | "U+27A1", 1563 | "U+FE0F" 1564 | ], 1565 | "parent": "1f468-200d-1f9af-200d-27a1-fe0f", 1566 | "image": { 1567 | "brand": "apple", 1568 | "platform": [ 1569 | "Apple", 1570 | "iOS 18.4" 1571 | ], 1572 | "source": "source/apple/419/man_with_white_cane_facing_right_medium-light_skin_tone_1f468-1f3fc-200d-1f9af-200d-27a1-fe0f.png" 1573 | } 1574 | }, 1575 | { 1576 | "category": "Emoji & People", 1577 | "sub_category": "Person Activity", 1578 | "code": "1f468-1f3fd-200d-1f9af-200d-27a1-fe0f", 1579 | "emoji": "👨🏽‍🦯‍➡️", 1580 | "title": "Man with White Cane: Medium Skin Tone, Facing Right", 1581 | "tags": [ 1582 | "accessibility", 1583 | "blind", 1584 | "cane", 1585 | "man", 1586 | "probing", 1587 | "white" 1588 | ], 1589 | "codepoints": [ 1590 | "U+1F468", 1591 | "U+1F3FD", 1592 | "U+200D", 1593 | "U+1F9AF", 1594 | "U+200D", 1595 | "U+27A1", 1596 | "U+FE0F" 1597 | ], 1598 | "parent": "1f468-200d-1f9af-200d-27a1-fe0f", 1599 | "image": { 1600 | "brand": "apple", 1601 | "platform": [ 1602 | "Apple", 1603 | "iOS 18.4" 1604 | ], 1605 | "source": "source/apple/419/man_with_white_cane_facing_right_medium_skin_tone_1f468-1f3fd-200d-1f9af-200d-27a1-fe0f.png" 1606 | } 1607 | }, 1608 | { 1609 | "category": "Emoji & People", 1610 | "sub_category": "Person Activity", 1611 | "code": "1f468-1f3fe-200d-1f9af-200d-27a1-fe0f", 1612 | "emoji": "👨🏾‍🦯‍➡️", 1613 | "title": "Man with White Cane: Medium-Dark Skin Tone, Facing Right", 1614 | "tags": [ 1615 | "accessibility", 1616 | "blind", 1617 | "cane", 1618 | "man", 1619 | "probing", 1620 | "white" 1621 | ], 1622 | "codepoints": [ 1623 | "U+1F468", 1624 | "U+1F3FE", 1625 | "U+200D", 1626 | "U+1F9AF", 1627 | "U+200D", 1628 | "U+27A1", 1629 | "U+FE0F" 1630 | ], 1631 | "parent": "1f468-200d-1f9af-200d-27a1-fe0f", 1632 | "image": { 1633 | "brand": "apple", 1634 | "platform": [ 1635 | "Apple", 1636 | "iOS 18.4" 1637 | ], 1638 | "source": "source/apple/419/man_with_white_cane_facing_right_medium-dark_skin_tone_1f468-1f3fe-200d-1f9af-200d-27a1-fe0f.png" 1639 | } 1640 | }, 1641 | { 1642 | "category": "Emoji & People", 1643 | "sub_category": "Person Activity", 1644 | "code": "1f468-1f3ff-200d-1f9af-200d-27a1-fe0f", 1645 | "emoji": "👨🏿‍🦯‍➡️", 1646 | "title": "Man with White Cane: Dark Skin Tone, Facing Right", 1647 | "tags": [ 1648 | "accessibility", 1649 | "blind", 1650 | "cane", 1651 | "man", 1652 | "probing", 1653 | "white" 1654 | ], 1655 | "codepoints": [ 1656 | "U+1F468", 1657 | "U+1F3FF", 1658 | "U+200D", 1659 | "U+1F9AF", 1660 | "U+200D", 1661 | "U+27A1", 1662 | "U+FE0F" 1663 | ], 1664 | "parent": "1f468-200d-1f9af-200d-27a1-fe0f", 1665 | "image": { 1666 | "brand": "apple", 1667 | "platform": [ 1668 | "Apple", 1669 | "iOS 18.4" 1670 | ], 1671 | "source": "source/apple/419/man_with_white_cane_facing_right_dark_skin_tone_1f468-1f3ff-200d-1f9af-200d-27a1-fe0f.png" 1672 | } 1673 | }, 1674 | { 1675 | "category": "Emoji & People", 1676 | "sub_category": "Person Activity", 1677 | "code": "1f469-200d-1f9af-200d-27a1-fe0f", 1678 | "emoji": "👩‍🦯‍➡️", 1679 | "title": "Woman with White Cane: Facing Right", 1680 | "tags": [ 1681 | "accessibility", 1682 | "blind", 1683 | "cane", 1684 | "probing", 1685 | "white", 1686 | "woman" 1687 | ], 1688 | "codepoints": [ 1689 | "U+1F469", 1690 | "U+200D", 1691 | "U+1F9AF", 1692 | "U+200D", 1693 | "U+27A1", 1694 | "U+FE0F" 1695 | ], 1696 | "image": { 1697 | "brand": "apple", 1698 | "platform": [ 1699 | "Apple", 1700 | "iOS 18.4" 1701 | ], 1702 | "source": "source/apple/419/woman_with_white_cane_facing_right_1f469-200d-1f9af-200d-27a1-fe0f.png" 1703 | } 1704 | }, 1705 | { 1706 | "category": "Emoji & People", 1707 | "sub_category": "Person Activity", 1708 | "code": "1f469-1f3fb-200d-1f9af-200d-27a1-fe0f", 1709 | "emoji": "👩🏻‍🦯‍➡️", 1710 | "title": "Woman with White Cane: Light Skin Tone, Facing Right", 1711 | "tags": [ 1712 | "accessibility", 1713 | "blind", 1714 | "cane", 1715 | "probing", 1716 | "white", 1717 | "woman" 1718 | ], 1719 | "codepoints": [ 1720 | "U+1F469", 1721 | "U+1F3FB", 1722 | "U+200D", 1723 | "U+1F9AF", 1724 | "U+200D", 1725 | "U+27A1", 1726 | "U+FE0F" 1727 | ], 1728 | "parent": "1f469-200d-1f9af-200d-27a1-fe0f", 1729 | "image": { 1730 | "brand": "apple", 1731 | "platform": [ 1732 | "Apple", 1733 | "iOS 18.4" 1734 | ], 1735 | "source": "source/apple/419/woman_with_white_cane_facing_right_light_skin_tone_1f469-1f3fb-200d-1f9af-200d-27a1-fe0f.png" 1736 | } 1737 | }, 1738 | { 1739 | "category": "Emoji & People", 1740 | "sub_category": "Person Activity", 1741 | "code": "1f469-1f3fc-200d-1f9af-200d-27a1-fe0f", 1742 | "emoji": "👩🏼‍🦯‍➡️", 1743 | "title": "Woman with White Cane: Medium-Light Skin Tone, Facing Right", 1744 | "tags": [ 1745 | "accessibility", 1746 | "blind", 1747 | "cane", 1748 | "probing", 1749 | "white", 1750 | "woman" 1751 | ], 1752 | "codepoints": [ 1753 | "U+1F469", 1754 | "U+1F3FC", 1755 | "U+200D", 1756 | "U+1F9AF", 1757 | "U+200D", 1758 | "U+27A1", 1759 | "U+FE0F" 1760 | ], 1761 | "parent": "1f469-200d-1f9af-200d-27a1-fe0f", 1762 | "image": { 1763 | "brand": "apple", 1764 | "platform": [ 1765 | "Apple", 1766 | "iOS 18.4" 1767 | ], 1768 | "source": "source/apple/419/woman_with_white_cane_facing_right_medium-light_skin_tone_1f469-1f3fc-200d-1f9af-200d-27a1-fe0f.png" 1769 | } 1770 | }, 1771 | { 1772 | "category": "Emoji & People", 1773 | "sub_category": "Person Activity", 1774 | "code": "1f469-1f3fd-200d-1f9af-200d-27a1-fe0f", 1775 | "emoji": "👩🏽‍🦯‍➡️", 1776 | "title": "Woman with White Cane: Medium Skin Tone, Facing Right", 1777 | "tags": [ 1778 | "accessibility", 1779 | "blind", 1780 | "cane", 1781 | "probing", 1782 | "white", 1783 | "woman" 1784 | ], 1785 | "codepoints": [ 1786 | "U+1F469", 1787 | "U+1F3FD", 1788 | "U+200D", 1789 | "U+1F9AF", 1790 | "U+200D", 1791 | "U+27A1", 1792 | "U+FE0F" 1793 | ], 1794 | "parent": "1f469-200d-1f9af-200d-27a1-fe0f", 1795 | "image": { 1796 | "brand": "apple", 1797 | "platform": [ 1798 | "Apple", 1799 | "iOS 18.4" 1800 | ], 1801 | "source": "source/apple/419/woman_with_white_cane_facing_right_medium_skin_tone_1f469-1f3fd-200d-1f9af-200d-27a1-fe0f.png" 1802 | } 1803 | }, 1804 | { 1805 | "category": "Emoji & People", 1806 | "sub_category": "Person Activity", 1807 | "code": "1f469-1f3fe-200d-1f9af-200d-27a1-fe0f", 1808 | "emoji": "👩🏾‍🦯‍➡️", 1809 | "title": "Woman with White Cane: Medium-Dark Skin Tone, Facing Right", 1810 | "tags": [ 1811 | "accessibility", 1812 | "blind", 1813 | "cane", 1814 | "probing", 1815 | "white", 1816 | "woman" 1817 | ], 1818 | "codepoints": [ 1819 | "U+1F469", 1820 | "U+1F3FE", 1821 | "U+200D", 1822 | "U+1F9AF", 1823 | "U+200D", 1824 | "U+27A1", 1825 | "U+FE0F" 1826 | ], 1827 | "parent": "1f469-200d-1f9af-200d-27a1-fe0f", 1828 | "image": { 1829 | "brand": "apple", 1830 | "platform": [ 1831 | "Apple", 1832 | "iOS 18.4" 1833 | ], 1834 | "source": "source/apple/419/woman_with_white_cane_facing_right_medium-dark_skin_tone_1f469-1f3fe-200d-1f9af-200d-27a1-fe0f.png" 1835 | } 1836 | }, 1837 | { 1838 | "category": "Emoji & People", 1839 | "sub_category": "Person Activity", 1840 | "code": "1f469-1f3ff-200d-1f9af-200d-27a1-fe0f", 1841 | "emoji": "👩🏿‍🦯‍➡️", 1842 | "title": "Woman with White Cane: Dark Skin Tone, Facing Right", 1843 | "tags": [ 1844 | "accessibility", 1845 | "blind", 1846 | "cane", 1847 | "probing", 1848 | "white", 1849 | "woman" 1850 | ], 1851 | "codepoints": [ 1852 | "U+1F469", 1853 | "U+1F3FF", 1854 | "U+200D", 1855 | "U+1F9AF", 1856 | "U+200D", 1857 | "U+27A1", 1858 | "U+FE0F" 1859 | ], 1860 | "parent": "1f469-200d-1f9af-200d-27a1-fe0f", 1861 | "image": { 1862 | "brand": "apple", 1863 | "platform": [ 1864 | "Apple", 1865 | "iOS 18.4" 1866 | ], 1867 | "source": "source/apple/419/woman_with_white_cane_facing_right_dark_skin_tone_1f469-1f3ff-200d-1f9af-200d-27a1-fe0f.png" 1868 | } 1869 | }, 1870 | { 1871 | "category": "Emoji & People", 1872 | "sub_category": "Person Activity", 1873 | "code": "1f9d1-200d-1f9bc-200d-27a1-fe0f", 1874 | "emoji": "🧑‍🦼‍➡️", 1875 | "title": "Person in Motorized Wheelchair: Facing Right", 1876 | "tags": [ 1877 | "accessibility", 1878 | "motorized", 1879 | "person", 1880 | "wheelchair" 1881 | ], 1882 | "codepoints": [ 1883 | "U+1F9D1", 1884 | "U+200D", 1885 | "U+1F9BC", 1886 | "U+200D", 1887 | "U+27A1", 1888 | "U+FE0F" 1889 | ], 1890 | "image": { 1891 | "brand": "apple", 1892 | "platform": [ 1893 | "Apple", 1894 | "iOS 18.4" 1895 | ], 1896 | "source": "source/apple/419/person_in_motorized_wheelchair_facing_right_1f9d1-200d-1f9bc-200d-27a1-fe0f.png" 1897 | } 1898 | }, 1899 | { 1900 | "category": "Emoji & People", 1901 | "sub_category": "Person Activity", 1902 | "code": "1f9d1-1f3fb-200d-1f9bc-200d-27a1-fe0f", 1903 | "emoji": "🧑🏻‍🦼‍➡️", 1904 | "title": "Person in Motorized Wheelchair: Light Skin Tone, Facing Right", 1905 | "tags": [ 1906 | "accessibility", 1907 | "motorized", 1908 | "person", 1909 | "wheelchair" 1910 | ], 1911 | "codepoints": [ 1912 | "U+1F9D1", 1913 | "U+1F3FB", 1914 | "U+200D", 1915 | "U+1F9BC", 1916 | "U+200D", 1917 | "U+27A1", 1918 | "U+FE0F" 1919 | ], 1920 | "parent": "1f9d1-200d-1f9bc-200d-27a1-fe0f", 1921 | "image": { 1922 | "brand": "apple", 1923 | "platform": [ 1924 | "Apple", 1925 | "iOS 18.4" 1926 | ], 1927 | "source": "source/apple/419/person_in_motorized_wheelchair_facing_right_light_skin_tone_1f9d1-1f3fb-200d-1f9bc-200d-27a1-fe0f.png" 1928 | } 1929 | }, 1930 | { 1931 | "category": "Emoji & People", 1932 | "sub_category": "Person Activity", 1933 | "code": "1f9d1-1f3fc-200d-1f9bc-200d-27a1-fe0f", 1934 | "emoji": "🧑🏼‍🦼‍➡️", 1935 | "title": "Person in Motorized Wheelchair: Medium-Light Skin Tone, Facing Right", 1936 | "tags": [ 1937 | "accessibility", 1938 | "motorized", 1939 | "person", 1940 | "wheelchair" 1941 | ], 1942 | "codepoints": [ 1943 | "U+1F9D1", 1944 | "U+1F3FC", 1945 | "U+200D", 1946 | "U+1F9BC", 1947 | "U+200D", 1948 | "U+27A1", 1949 | "U+FE0F" 1950 | ], 1951 | "parent": "1f9d1-200d-1f9bc-200d-27a1-fe0f", 1952 | "image": { 1953 | "brand": "apple", 1954 | "platform": [ 1955 | "Apple", 1956 | "iOS 18.4" 1957 | ], 1958 | "source": "source/apple/419/person_in_motorized_wheelchair_facing_right_medium-light_skin_tone_1f9d1-1f3fc-200d-1f9bc-200d-27a1-fe0f.png" 1959 | } 1960 | }, 1961 | { 1962 | "category": "Emoji & People", 1963 | "sub_category": "Person Activity", 1964 | "code": "1f9d1-1f3fd-200d-1f9bc-200d-27a1-fe0f", 1965 | "emoji": "🧑🏽‍🦼‍➡️", 1966 | "title": "Person in Motorized Wheelchair: Medium Skin Tone, Facing Right", 1967 | "tags": [ 1968 | "accessibility", 1969 | "motorized", 1970 | "person", 1971 | "wheelchair" 1972 | ], 1973 | "codepoints": [ 1974 | "U+1F9D1", 1975 | "U+1F3FD", 1976 | "U+200D", 1977 | "U+1F9BC", 1978 | "U+200D", 1979 | "U+27A1", 1980 | "U+FE0F" 1981 | ], 1982 | "parent": "1f9d1-200d-1f9bc-200d-27a1-fe0f", 1983 | "image": { 1984 | "brand": "apple", 1985 | "platform": [ 1986 | "Apple", 1987 | "iOS 18.4" 1988 | ], 1989 | "source": "source/apple/419/person_in_motorized_wheelchair_facing_right_medium_skin_tone_1f9d1-1f3fd-200d-1f9bc-200d-27a1-fe0f.png" 1990 | } 1991 | }, 1992 | { 1993 | "category": "Emoji & People", 1994 | "sub_category": "Person Activity", 1995 | "code": "1f9d1-1f3fe-200d-1f9bc-200d-27a1-fe0f", 1996 | "emoji": "🧑🏾‍🦼‍➡️", 1997 | "title": "Person in Motorized Wheelchair: Medium-Dark Skin Tone, Facing Right", 1998 | "tags": [ 1999 | "accessibility", 2000 | "motorized", 2001 | "person", 2002 | "wheelchair" 2003 | ], 2004 | "codepoints": [ 2005 | "U+1F9D1", 2006 | "U+1F3FE", 2007 | "U+200D", 2008 | "U+1F9BC", 2009 | "U+200D", 2010 | "U+27A1", 2011 | "U+FE0F" 2012 | ], 2013 | "parent": "1f9d1-200d-1f9bc-200d-27a1-fe0f", 2014 | "image": { 2015 | "brand": "apple", 2016 | "platform": [ 2017 | "Apple", 2018 | "iOS 18.4" 2019 | ], 2020 | "source": "source/apple/419/person_in_motorized_wheelchair_facing_right_medium-dark_skin_tone_1f9d1-1f3fe-200d-1f9bc-200d-27a1-fe0f.png" 2021 | } 2022 | }, 2023 | { 2024 | "category": "Emoji & People", 2025 | "sub_category": "Person Activity", 2026 | "code": "1f9d1-1f3ff-200d-1f9bc-200d-27a1-fe0f", 2027 | "emoji": "🧑🏿‍🦼‍➡️", 2028 | "title": "Person in Motorized Wheelchair: Dark Skin Tone, Facing Right", 2029 | "tags": [ 2030 | "accessibility", 2031 | "motorized", 2032 | "person", 2033 | "wheelchair" 2034 | ], 2035 | "codepoints": [ 2036 | "U+1F9D1", 2037 | "U+1F3FF", 2038 | "U+200D", 2039 | "U+1F9BC", 2040 | "U+200D", 2041 | "U+27A1", 2042 | "U+FE0F" 2043 | ], 2044 | "parent": "1f9d1-200d-1f9bc-200d-27a1-fe0f", 2045 | "image": { 2046 | "brand": "apple", 2047 | "platform": [ 2048 | "Apple", 2049 | "iOS 18.4" 2050 | ], 2051 | "source": "source/apple/419/person_in_motorized_wheelchair_facing_right_dark_skin_tone_1f9d1-1f3ff-200d-1f9bc-200d-27a1-fe0f.png" 2052 | } 2053 | }, 2054 | { 2055 | "category": "Emoji & People", 2056 | "sub_category": "Person Activity", 2057 | "code": "1f468-200d-1f9bc-200d-27a1-fe0f", 2058 | "emoji": "👨‍🦼‍➡️", 2059 | "title": "Man in Motorized Wheelchair: Facing Right", 2060 | "tags": [ 2061 | "accessibility", 2062 | "man", 2063 | "motorized", 2064 | "wheelchair" 2065 | ], 2066 | "codepoints": [ 2067 | "U+1F468", 2068 | "U+200D", 2069 | "U+1F9BC", 2070 | "U+200D", 2071 | "U+27A1", 2072 | "U+FE0F" 2073 | ], 2074 | "image": { 2075 | "brand": "apple", 2076 | "platform": [ 2077 | "Apple", 2078 | "iOS 18.4" 2079 | ], 2080 | "source": "source/apple/419/man_in_motorized_wheelchair_facing_right_1f468-200d-1f9bc-200d-27a1-fe0f.png" 2081 | } 2082 | }, 2083 | { 2084 | "category": "Emoji & People", 2085 | "sub_category": "Person Activity", 2086 | "code": "1f468-1f3fb-200d-1f9bc-200d-27a1-fe0f", 2087 | "emoji": "👨🏻‍🦼‍➡️", 2088 | "title": "Man in Motorized Wheelchair: Light Skin Tone, Facing Right", 2089 | "tags": [ 2090 | "accessibility", 2091 | "man", 2092 | "motorized", 2093 | "wheelchair" 2094 | ], 2095 | "codepoints": [ 2096 | "U+1F468", 2097 | "U+1F3FB", 2098 | "U+200D", 2099 | "U+1F9BC", 2100 | "U+200D", 2101 | "U+27A1", 2102 | "U+FE0F" 2103 | ], 2104 | "parent": "1f468-200d-1f9bc-200d-27a1-fe0f", 2105 | "image": { 2106 | "brand": "apple", 2107 | "platform": [ 2108 | "Apple", 2109 | "iOS 18.4" 2110 | ], 2111 | "source": "source/apple/419/man_in_motorized_wheelchair_facing_right_light_skin_tone_1f468-1f3fb-200d-1f9bc-200d-27a1-fe0f.png" 2112 | } 2113 | }, 2114 | { 2115 | "category": "Emoji & People", 2116 | "sub_category": "Person Activity", 2117 | "code": "1f468-1f3fc-200d-1f9bc-200d-27a1-fe0f", 2118 | "emoji": "👨🏼‍🦼‍➡️", 2119 | "title": "Man in Motorized Wheelchair: Medium-Light Skin Tone, Facing Right", 2120 | "tags": [ 2121 | "accessibility", 2122 | "man", 2123 | "motorized", 2124 | "wheelchair" 2125 | ], 2126 | "codepoints": [ 2127 | "U+1F468", 2128 | "U+1F3FC", 2129 | "U+200D", 2130 | "U+1F9BC", 2131 | "U+200D", 2132 | "U+27A1", 2133 | "U+FE0F" 2134 | ], 2135 | "parent": "1f468-200d-1f9bc-200d-27a1-fe0f", 2136 | "image": { 2137 | "brand": "apple", 2138 | "platform": [ 2139 | "Apple", 2140 | "iOS 18.4" 2141 | ], 2142 | "source": "source/apple/419/man_in_motorized_wheelchair_facing_right_medium-light_skin_tone_1f468-1f3fc-200d-1f9bc-200d-27a1-fe0f.png" 2143 | } 2144 | }, 2145 | { 2146 | "category": "Emoji & People", 2147 | "sub_category": "Person Activity", 2148 | "code": "1f468-1f3fd-200d-1f9bc-200d-27a1-fe0f", 2149 | "emoji": "👨🏽‍🦼‍➡️", 2150 | "title": "Man in Motorized Wheelchair: Medium Skin Tone, Facing Right", 2151 | "tags": [ 2152 | "accessibility", 2153 | "man", 2154 | "motorized", 2155 | "wheelchair" 2156 | ], 2157 | "codepoints": [ 2158 | "U+1F468", 2159 | "U+1F3FD", 2160 | "U+200D", 2161 | "U+1F9BC", 2162 | "U+200D", 2163 | "U+27A1", 2164 | "U+FE0F" 2165 | ], 2166 | "parent": "1f468-200d-1f9bc-200d-27a1-fe0f", 2167 | "image": { 2168 | "brand": "apple", 2169 | "platform": [ 2170 | "Apple", 2171 | "iOS 18.4" 2172 | ], 2173 | "source": "source/apple/419/man_in_motorized_wheelchair_facing_right_medium_skin_tone_1f468-1f3fd-200d-1f9bc-200d-27a1-fe0f.png" 2174 | } 2175 | }, 2176 | { 2177 | "category": "Emoji & People", 2178 | "sub_category": "Person Activity", 2179 | "code": "1f468-1f3fe-200d-1f9bc-200d-27a1-fe0f", 2180 | "emoji": "👨🏾‍🦼‍➡️", 2181 | "title": "Man in Motorized Wheelchair: Medium-Dark Skin Tone, Facing Right", 2182 | "tags": [ 2183 | "accessibility", 2184 | "man", 2185 | "motorized", 2186 | "wheelchair" 2187 | ], 2188 | "codepoints": [ 2189 | "U+1F468", 2190 | "U+1F3FE", 2191 | "U+200D", 2192 | "U+1F9BC", 2193 | "U+200D", 2194 | "U+27A1", 2195 | "U+FE0F" 2196 | ], 2197 | "parent": "1f468-200d-1f9bc-200d-27a1-fe0f", 2198 | "image": { 2199 | "brand": "apple", 2200 | "platform": [ 2201 | "Apple", 2202 | "iOS 18.4" 2203 | ], 2204 | "source": "source/apple/419/man_in_motorized_wheelchair_facing_right_medium-dark_skin_tone_1f468-1f3fe-200d-1f9bc-200d-27a1-fe0f.png" 2205 | } 2206 | }, 2207 | { 2208 | "category": "Emoji & People", 2209 | "sub_category": "Person Activity", 2210 | "code": "1f468-1f3ff-200d-1f9bc-200d-27a1-fe0f", 2211 | "emoji": "👨🏿‍🦼‍➡️", 2212 | "title": "Man in Motorized Wheelchair: Dark Skin Tone, Facing Right", 2213 | "tags": [ 2214 | "accessibility", 2215 | "man", 2216 | "motorized", 2217 | "wheelchair" 2218 | ], 2219 | "codepoints": [ 2220 | "U+1F468", 2221 | "U+1F3FF", 2222 | "U+200D", 2223 | "U+1F9BC", 2224 | "U+200D", 2225 | "U+27A1", 2226 | "U+FE0F" 2227 | ], 2228 | "parent": "1f468-200d-1f9bc-200d-27a1-fe0f", 2229 | "image": { 2230 | "brand": "apple", 2231 | "platform": [ 2232 | "Apple", 2233 | "iOS 18.4" 2234 | ], 2235 | "source": "source/apple/419/man_in_motorized_wheelchair_facing_right_dark_skin_tone_1f468-1f3ff-200d-1f9bc-200d-27a1-fe0f.png" 2236 | } 2237 | }, 2238 | { 2239 | "category": "Emoji & People", 2240 | "sub_category": "Person Activity", 2241 | "code": "1f469-200d-1f9bc-200d-27a1-fe0f", 2242 | "emoji": "👩‍🦼‍➡️", 2243 | "title": "Woman in Motorized Wheelchair: Facing Right", 2244 | "tags": [ 2245 | "accessibility", 2246 | "motorized", 2247 | "wheelchair", 2248 | "woman" 2249 | ], 2250 | "codepoints": [ 2251 | "U+1F469", 2252 | "U+200D", 2253 | "U+1F9BC", 2254 | "U+200D", 2255 | "U+27A1", 2256 | "U+FE0F" 2257 | ], 2258 | "image": { 2259 | "brand": "apple", 2260 | "platform": [ 2261 | "Apple", 2262 | "iOS 18.4" 2263 | ], 2264 | "source": "source/apple/419/woman_in_motorized_wheelchair_facing_right_1f469-200d-1f9bc-200d-27a1-fe0f.png" 2265 | } 2266 | }, 2267 | { 2268 | "category": "Emoji & People", 2269 | "sub_category": "Person Activity", 2270 | "code": "1f469-1f3fb-200d-1f9bc-200d-27a1-fe0f", 2271 | "emoji": "👩🏻‍🦼‍➡️", 2272 | "title": "Woman in Motorized Wheelchair: Light Skin Tone, Facing Right", 2273 | "tags": [ 2274 | "accessibility", 2275 | "motorized", 2276 | "wheelchair", 2277 | "woman" 2278 | ], 2279 | "codepoints": [ 2280 | "U+1F469", 2281 | "U+1F3FB", 2282 | "U+200D", 2283 | "U+1F9BC", 2284 | "U+200D", 2285 | "U+27A1", 2286 | "U+FE0F" 2287 | ], 2288 | "parent": "1f469-200d-1f9bc-200d-27a1-fe0f", 2289 | "image": { 2290 | "brand": "apple", 2291 | "platform": [ 2292 | "Apple", 2293 | "iOS 18.4" 2294 | ], 2295 | "source": "source/apple/419/woman_in_motorized_wheelchair_facing_right_light_skin_tone_1f469-1f3fb-200d-1f9bc-200d-27a1-fe0f.png" 2296 | } 2297 | }, 2298 | { 2299 | "category": "Emoji & People", 2300 | "sub_category": "Person Activity", 2301 | "code": "1f469-1f3fc-200d-1f9bc-200d-27a1-fe0f", 2302 | "emoji": "👩🏼‍🦼‍➡️", 2303 | "title": "Woman in Motorized Wheelchair: Medium-Light Skin Tone, Facing Right", 2304 | "tags": [ 2305 | "accessibility", 2306 | "motorized", 2307 | "wheelchair", 2308 | "woman" 2309 | ], 2310 | "codepoints": [ 2311 | "U+1F469", 2312 | "U+1F3FC", 2313 | "U+200D", 2314 | "U+1F9BC", 2315 | "U+200D", 2316 | "U+27A1", 2317 | "U+FE0F" 2318 | ], 2319 | "parent": "1f469-200d-1f9bc-200d-27a1-fe0f", 2320 | "image": { 2321 | "brand": "apple", 2322 | "platform": [ 2323 | "Apple", 2324 | "iOS 18.4" 2325 | ], 2326 | "source": "source/apple/419/woman_in_motorized_wheelchair_facing_right_medium-light_skin_tone_1f469-1f3fc-200d-1f9bc-200d-27a1-fe0f.png" 2327 | } 2328 | }, 2329 | { 2330 | "category": "Emoji & People", 2331 | "sub_category": "Person Activity", 2332 | "code": "1f469-1f3fd-200d-1f9bc-200d-27a1-fe0f", 2333 | "emoji": "👩🏽‍🦼‍➡️", 2334 | "title": "Woman in Motorized Wheelchair: Medium Skin Tone, Facing Right", 2335 | "tags": [ 2336 | "accessibility", 2337 | "motorized", 2338 | "wheelchair", 2339 | "woman" 2340 | ], 2341 | "codepoints": [ 2342 | "U+1F469", 2343 | "U+1F3FD", 2344 | "U+200D", 2345 | "U+1F9BC", 2346 | "U+200D", 2347 | "U+27A1", 2348 | "U+FE0F" 2349 | ], 2350 | "parent": "1f469-200d-1f9bc-200d-27a1-fe0f", 2351 | "image": { 2352 | "brand": "apple", 2353 | "platform": [ 2354 | "Apple", 2355 | "iOS 18.4" 2356 | ], 2357 | "source": "source/apple/419/woman_in_motorized_wheelchair_facing_right_medium_skin_tone_1f469-1f3fd-200d-1f9bc-200d-27a1-fe0f.png" 2358 | } 2359 | }, 2360 | { 2361 | "category": "Emoji & People", 2362 | "sub_category": "Person Activity", 2363 | "code": "1f469-1f3fe-200d-1f9bc-200d-27a1-fe0f", 2364 | "emoji": "👩🏾‍🦼‍➡️", 2365 | "title": "Woman in Motorized Wheelchair: Medium-Dark Skin Tone, Facing Right", 2366 | "tags": [ 2367 | "accessibility", 2368 | "motorized", 2369 | "wheelchair", 2370 | "woman" 2371 | ], 2372 | "codepoints": [ 2373 | "U+1F469", 2374 | "U+1F3FE", 2375 | "U+200D", 2376 | "U+1F9BC", 2377 | "U+200D", 2378 | "U+27A1", 2379 | "U+FE0F" 2380 | ], 2381 | "parent": "1f469-200d-1f9bc-200d-27a1-fe0f", 2382 | "image": { 2383 | "brand": "apple", 2384 | "platform": [ 2385 | "Apple", 2386 | "iOS 18.4" 2387 | ], 2388 | "source": "source/apple/419/woman_in_motorized_wheelchair_facing_right_medium-dark_skin_tone_1f469-1f3fe-200d-1f9bc-200d-27a1-fe0f.png" 2389 | } 2390 | }, 2391 | { 2392 | "category": "Emoji & People", 2393 | "sub_category": "Person Activity", 2394 | "code": "1f469-1f3ff-200d-1f9bc-200d-27a1-fe0f", 2395 | "emoji": "👩🏿‍🦼‍➡️", 2396 | "title": "Woman in Motorized Wheelchair: Dark Skin Tone, Facing Right", 2397 | "tags": [ 2398 | "accessibility", 2399 | "motorized", 2400 | "wheelchair", 2401 | "woman" 2402 | ], 2403 | "codepoints": [ 2404 | "U+1F469", 2405 | "U+1F3FF", 2406 | "U+200D", 2407 | "U+1F9BC", 2408 | "U+200D", 2409 | "U+27A1", 2410 | "U+FE0F" 2411 | ], 2412 | "parent": "1f469-200d-1f9bc-200d-27a1-fe0f", 2413 | "image": { 2414 | "brand": "apple", 2415 | "platform": [ 2416 | "Apple", 2417 | "iOS 18.4" 2418 | ], 2419 | "source": "source/apple/419/woman_in_motorized_wheelchair_facing_right_dark_skin_tone_1f469-1f3ff-200d-1f9bc-200d-27a1-fe0f.png" 2420 | } 2421 | }, 2422 | { 2423 | "category": "Emoji & People", 2424 | "sub_category": "Person Activity", 2425 | "code": "1f9d1-200d-1f9bd-200d-27a1-fe0f", 2426 | "emoji": "🧑‍🦽‍➡️", 2427 | "title": "Person in Manual Wheelchair: Facing Right", 2428 | "tags": [ 2429 | "accessibility", 2430 | "manual", 2431 | "person", 2432 | "wheelchair" 2433 | ], 2434 | "codepoints": [ 2435 | "U+1F9D1", 2436 | "U+200D", 2437 | "U+1F9BD", 2438 | "U+200D", 2439 | "U+27A1", 2440 | "U+FE0F" 2441 | ], 2442 | "image": { 2443 | "brand": "apple", 2444 | "platform": [ 2445 | "Apple", 2446 | "iOS 18.4" 2447 | ], 2448 | "source": "source/apple/419/person_in_manual_wheelchair_facing_right_1f9d1-200d-1f9bd-200d-27a1-fe0f.png" 2449 | } 2450 | }, 2451 | { 2452 | "category": "Emoji & People", 2453 | "sub_category": "Person Activity", 2454 | "code": "1f9d1-1f3fb-200d-1f9bd-200d-27a1-fe0f", 2455 | "emoji": "🧑🏻‍🦽‍➡️", 2456 | "title": "Person in Manual Wheelchair: Light Skin Tone, Facing Right", 2457 | "tags": [ 2458 | "accessibility", 2459 | "manual", 2460 | "person", 2461 | "wheelchair" 2462 | ], 2463 | "codepoints": [ 2464 | "U+1F9D1", 2465 | "U+1F3FB", 2466 | "U+200D", 2467 | "U+1F9BD", 2468 | "U+200D", 2469 | "U+27A1", 2470 | "U+FE0F" 2471 | ], 2472 | "parent": "1f9d1-200d-1f9bd-200d-27a1-fe0f", 2473 | "image": { 2474 | "brand": "apple", 2475 | "platform": [ 2476 | "Apple", 2477 | "iOS 18.4" 2478 | ], 2479 | "source": "source/apple/419/person_in_manual_wheelchair_facing_right_light_skin_tone_1f9d1-1f3fb-200d-1f9bd-200d-27a1-fe0f.png" 2480 | } 2481 | }, 2482 | { 2483 | "category": "Emoji & People", 2484 | "sub_category": "Person Activity", 2485 | "code": "1f9d1-1f3fc-200d-1f9bd-200d-27a1-fe0f", 2486 | "emoji": "🧑🏼‍🦽‍➡️", 2487 | "title": "Person in Manual Wheelchair: Medium-Light Skin Tone, Facing Right", 2488 | "tags": [ 2489 | "accessibility", 2490 | "manual", 2491 | "person", 2492 | "wheelchair" 2493 | ], 2494 | "codepoints": [ 2495 | "U+1F9D1", 2496 | "U+1F3FC", 2497 | "U+200D", 2498 | "U+1F9BD", 2499 | "U+200D", 2500 | "U+27A1", 2501 | "U+FE0F" 2502 | ], 2503 | "parent": "1f9d1-200d-1f9bd-200d-27a1-fe0f", 2504 | "image": { 2505 | "brand": "apple", 2506 | "platform": [ 2507 | "Apple", 2508 | "iOS 18.4" 2509 | ], 2510 | "source": "source/apple/419/person_in_manual_wheelchair_facing_right_medium-light_skin_tone_1f9d1-1f3fc-200d-1f9bd-200d-27a1-fe0f.png" 2511 | } 2512 | }, 2513 | { 2514 | "category": "Emoji & People", 2515 | "sub_category": "Person Activity", 2516 | "code": "1f9d1-1f3fd-200d-1f9bd-200d-27a1-fe0f", 2517 | "emoji": "🧑🏽‍🦽‍➡️", 2518 | "title": "Person in Manual Wheelchair: Medium Skin Tone, Facing Right", 2519 | "tags": [ 2520 | "accessibility", 2521 | "manual", 2522 | "person", 2523 | "wheelchair" 2524 | ], 2525 | "codepoints": [ 2526 | "U+1F9D1", 2527 | "U+1F3FD", 2528 | "U+200D", 2529 | "U+1F9BD", 2530 | "U+200D", 2531 | "U+27A1", 2532 | "U+FE0F" 2533 | ], 2534 | "parent": "1f9d1-200d-1f9bd-200d-27a1-fe0f", 2535 | "image": { 2536 | "brand": "apple", 2537 | "platform": [ 2538 | "Apple", 2539 | "iOS 18.4" 2540 | ], 2541 | "source": "source/apple/419/person_in_manual_wheelchair_facing_right_medium_skin_tone_1f9d1-1f3fd-200d-1f9bd-200d-27a1-fe0f.png" 2542 | } 2543 | }, 2544 | { 2545 | "category": "Emoji & People", 2546 | "sub_category": "Person Activity", 2547 | "code": "1f9d1-1f3fe-200d-1f9bd-200d-27a1-fe0f", 2548 | "emoji": "🧑🏾‍🦽‍➡️", 2549 | "title": "Person in Manual Wheelchair: Medium-Dark Skin Tone, Facing Right", 2550 | "tags": [ 2551 | "accessibility", 2552 | "manual", 2553 | "person", 2554 | "wheelchair" 2555 | ], 2556 | "codepoints": [ 2557 | "U+1F9D1", 2558 | "U+1F3FE", 2559 | "U+200D", 2560 | "U+1F9BD", 2561 | "U+200D", 2562 | "U+27A1", 2563 | "U+FE0F" 2564 | ], 2565 | "parent": "1f9d1-200d-1f9bd-200d-27a1-fe0f", 2566 | "image": { 2567 | "brand": "apple", 2568 | "platform": [ 2569 | "Apple", 2570 | "iOS 18.4" 2571 | ], 2572 | "source": "source/apple/419/person_in_manual_wheelchair_facing_right_medium-dark_skin_tone_1f9d1-1f3fe-200d-1f9bd-200d-27a1-fe0f.png" 2573 | } 2574 | }, 2575 | { 2576 | "category": "Emoji & People", 2577 | "sub_category": "Person Activity", 2578 | "code": "1f9d1-1f3ff-200d-1f9bd-200d-27a1-fe0f", 2579 | "emoji": "🧑🏿‍🦽‍➡️", 2580 | "title": "Person in Manual Wheelchair: Dark Skin Tone, Facing Right", 2581 | "tags": [ 2582 | "accessibility", 2583 | "manual", 2584 | "person", 2585 | "wheelchair" 2586 | ], 2587 | "codepoints": [ 2588 | "U+1F9D1", 2589 | "U+1F3FF", 2590 | "U+200D", 2591 | "U+1F9BD", 2592 | "U+200D", 2593 | "U+27A1", 2594 | "U+FE0F" 2595 | ], 2596 | "parent": "1f9d1-200d-1f9bd-200d-27a1-fe0f", 2597 | "image": { 2598 | "brand": "apple", 2599 | "platform": [ 2600 | "Apple", 2601 | "iOS 18.4" 2602 | ], 2603 | "source": "source/apple/419/person_in_manual_wheelchair_facing_right_dark_skin_tone_1f9d1-1f3ff-200d-1f9bd-200d-27a1-fe0f.png" 2604 | } 2605 | }, 2606 | { 2607 | "category": "Emoji & People", 2608 | "sub_category": "Person Activity", 2609 | "code": "1f468-200d-1f9bd-200d-27a1-fe0f", 2610 | "emoji": "👨‍🦽‍➡️", 2611 | "title": "Man in Manual Wheelchair: Facing Right", 2612 | "tags": [ 2613 | "accessibility", 2614 | "man", 2615 | "manual", 2616 | "wheelchair" 2617 | ], 2618 | "codepoints": [ 2619 | "U+1F468", 2620 | "U+200D", 2621 | "U+1F9BD", 2622 | "U+200D", 2623 | "U+27A1", 2624 | "U+FE0F" 2625 | ], 2626 | "image": { 2627 | "brand": "apple", 2628 | "platform": [ 2629 | "Apple", 2630 | "iOS 18.4" 2631 | ], 2632 | "source": "source/apple/419/man_in_manual_wheelchair_facing_right_1f468-200d-1f9bd-200d-27a1-fe0f.png" 2633 | } 2634 | }, 2635 | { 2636 | "category": "Emoji & People", 2637 | "sub_category": "Person Activity", 2638 | "code": "1f468-1f3fb-200d-1f9bd-200d-27a1-fe0f", 2639 | "emoji": "👨🏻‍🦽‍➡️", 2640 | "title": "Man in Manual Wheelchair: Light Skin Tone, Facing Right", 2641 | "tags": [ 2642 | "accessibility", 2643 | "man", 2644 | "manual", 2645 | "wheelchair" 2646 | ], 2647 | "codepoints": [ 2648 | "U+1F468", 2649 | "U+1F3FB", 2650 | "U+200D", 2651 | "U+1F9BD", 2652 | "U+200D", 2653 | "U+27A1", 2654 | "U+FE0F" 2655 | ], 2656 | "parent": "1f468-200d-1f9bd-200d-27a1-fe0f", 2657 | "image": { 2658 | "brand": "apple", 2659 | "platform": [ 2660 | "Apple", 2661 | "iOS 18.4" 2662 | ], 2663 | "source": "source/apple/419/man_in_manual_wheelchair_facing_right_light_skin_tone_1f468-1f3fb-200d-1f9bd-200d-27a1-fe0f.png" 2664 | } 2665 | }, 2666 | { 2667 | "category": "Emoji & People", 2668 | "sub_category": "Person Activity", 2669 | "code": "1f468-1f3fc-200d-1f9bd-200d-27a1-fe0f", 2670 | "emoji": "👨🏼‍🦽‍➡️", 2671 | "title": "Man in Manual Wheelchair: Medium-Light Skin Tone, Facing Right", 2672 | "tags": [ 2673 | "accessibility", 2674 | "man", 2675 | "manual", 2676 | "wheelchair" 2677 | ], 2678 | "codepoints": [ 2679 | "U+1F468", 2680 | "U+1F3FC", 2681 | "U+200D", 2682 | "U+1F9BD", 2683 | "U+200D", 2684 | "U+27A1", 2685 | "U+FE0F" 2686 | ], 2687 | "parent": "1f468-200d-1f9bd-200d-27a1-fe0f", 2688 | "image": { 2689 | "brand": "apple", 2690 | "platform": [ 2691 | "Apple", 2692 | "iOS 18.4" 2693 | ], 2694 | "source": "source/apple/419/man_in_manual_wheelchair_facing_right_medium-light_skin_tone_1f468-1f3fc-200d-1f9bd-200d-27a1-fe0f.png" 2695 | } 2696 | }, 2697 | { 2698 | "category": "Emoji & People", 2699 | "sub_category": "Person Activity", 2700 | "code": "1f468-1f3fd-200d-1f9bd-200d-27a1-fe0f", 2701 | "emoji": "👨🏽‍🦽‍➡️", 2702 | "title": "Man in Manual Wheelchair: Medium Skin Tone, Facing Right", 2703 | "tags": [ 2704 | "accessibility", 2705 | "man", 2706 | "manual", 2707 | "wheelchair" 2708 | ], 2709 | "codepoints": [ 2710 | "U+1F468", 2711 | "U+1F3FD", 2712 | "U+200D", 2713 | "U+1F9BD", 2714 | "U+200D", 2715 | "U+27A1", 2716 | "U+FE0F" 2717 | ], 2718 | "parent": "1f468-200d-1f9bd-200d-27a1-fe0f", 2719 | "image": { 2720 | "brand": "apple", 2721 | "platform": [ 2722 | "Apple", 2723 | "iOS 18.4" 2724 | ], 2725 | "source": "source/apple/419/man_in_manual_wheelchair_facing_right_medium_skin_tone_1f468-1f3fd-200d-1f9bd-200d-27a1-fe0f.png" 2726 | } 2727 | }, 2728 | { 2729 | "category": "Emoji & People", 2730 | "sub_category": "Person Activity", 2731 | "code": "1f468-1f3fe-200d-1f9bd-200d-27a1-fe0f", 2732 | "emoji": "👨🏾‍🦽‍➡️", 2733 | "title": "Man in Manual Wheelchair: Medium-Dark Skin Tone, Facing Right", 2734 | "tags": [ 2735 | "accessibility", 2736 | "man", 2737 | "manual", 2738 | "wheelchair" 2739 | ], 2740 | "codepoints": [ 2741 | "U+1F468", 2742 | "U+1F3FE", 2743 | "U+200D", 2744 | "U+1F9BD", 2745 | "U+200D", 2746 | "U+27A1", 2747 | "U+FE0F" 2748 | ], 2749 | "parent": "1f468-200d-1f9bd-200d-27a1-fe0f", 2750 | "image": { 2751 | "brand": "apple", 2752 | "platform": [ 2753 | "Apple", 2754 | "iOS 18.4" 2755 | ], 2756 | "source": "source/apple/419/man_in_manual_wheelchair_facing_right_medium-dark_skin_tone_1f468-1f3fe-200d-1f9bd-200d-27a1-fe0f.png" 2757 | } 2758 | }, 2759 | { 2760 | "category": "Emoji & People", 2761 | "sub_category": "Person Activity", 2762 | "code": "1f468-1f3ff-200d-1f9bd-200d-27a1-fe0f", 2763 | "emoji": "👨🏿‍🦽‍➡️", 2764 | "title": "Man in Manual Wheelchair: Dark Skin Tone, Facing Right", 2765 | "tags": [ 2766 | "accessibility", 2767 | "man", 2768 | "manual", 2769 | "wheelchair" 2770 | ], 2771 | "codepoints": [ 2772 | "U+1F468", 2773 | "U+1F3FF", 2774 | "U+200D", 2775 | "U+1F9BD", 2776 | "U+200D", 2777 | "U+27A1", 2778 | "U+FE0F" 2779 | ], 2780 | "parent": "1f468-200d-1f9bd-200d-27a1-fe0f", 2781 | "image": { 2782 | "brand": "apple", 2783 | "platform": [ 2784 | "Apple", 2785 | "iOS 18.4" 2786 | ], 2787 | "source": "source/apple/419/man_in_manual_wheelchair_facing_right_dark_skin_tone_1f468-1f3ff-200d-1f9bd-200d-27a1-fe0f.png" 2788 | } 2789 | }, 2790 | { 2791 | "category": "Emoji & People", 2792 | "sub_category": "Person Activity", 2793 | "code": "1f469-200d-1f9bd-200d-27a1-fe0f", 2794 | "emoji": "👩‍🦽‍➡️", 2795 | "title": "Woman in Manual Wheelchair: Facing Right", 2796 | "tags": [ 2797 | "accessibility", 2798 | "manual", 2799 | "wheelchair", 2800 | "woman" 2801 | ], 2802 | "codepoints": [ 2803 | "U+1F469", 2804 | "U+200D", 2805 | "U+1F9BD", 2806 | "U+200D", 2807 | "U+27A1", 2808 | "U+FE0F" 2809 | ], 2810 | "image": { 2811 | "brand": "apple", 2812 | "platform": [ 2813 | "Apple", 2814 | "iOS 18.4" 2815 | ], 2816 | "source": "source/apple/419/woman_in_manual_wheelchair_facing_right_1f469-200d-1f9bd-200d-27a1-fe0f.png" 2817 | } 2818 | }, 2819 | { 2820 | "category": "Emoji & People", 2821 | "sub_category": "Person Activity", 2822 | "code": "1f469-1f3fb-200d-1f9bd-200d-27a1-fe0f", 2823 | "emoji": "👩🏻‍🦽‍➡️", 2824 | "title": "Woman in Manual Wheelchair: Light Skin Tone, Facing Right", 2825 | "tags": [ 2826 | "accessibility", 2827 | "manual", 2828 | "wheelchair", 2829 | "woman" 2830 | ], 2831 | "codepoints": [ 2832 | "U+1F469", 2833 | "U+1F3FB", 2834 | "U+200D", 2835 | "U+1F9BD", 2836 | "U+200D", 2837 | "U+27A1", 2838 | "U+FE0F" 2839 | ], 2840 | "parent": "1f469-200d-1f9bd-200d-27a1-fe0f", 2841 | "image": { 2842 | "brand": "apple", 2843 | "platform": [ 2844 | "Apple", 2845 | "iOS 18.4" 2846 | ], 2847 | "source": "source/apple/419/woman_in_manual_wheelchair_facing_right_light_skin_tone_1f469-1f3fb-200d-1f9bd-200d-27a1-fe0f.png" 2848 | } 2849 | }, 2850 | { 2851 | "category": "Emoji & People", 2852 | "sub_category": "Person Activity", 2853 | "code": "1f469-1f3fc-200d-1f9bd-200d-27a1-fe0f", 2854 | "emoji": "👩🏼‍🦽‍➡️", 2855 | "title": "Woman in Manual Wheelchair: Medium-Light Skin Tone, Facing Right", 2856 | "tags": [ 2857 | "accessibility", 2858 | "manual", 2859 | "wheelchair", 2860 | "woman" 2861 | ], 2862 | "codepoints": [ 2863 | "U+1F469", 2864 | "U+1F3FC", 2865 | "U+200D", 2866 | "U+1F9BD", 2867 | "U+200D", 2868 | "U+27A1", 2869 | "U+FE0F" 2870 | ], 2871 | "parent": "1f469-200d-1f9bd-200d-27a1-fe0f", 2872 | "image": { 2873 | "brand": "apple", 2874 | "platform": [ 2875 | "Apple", 2876 | "iOS 18.4" 2877 | ], 2878 | "source": "source/apple/419/woman_in_manual_wheelchair_facing_right_medium-light_skin_tone_1f469-1f3fc-200d-1f9bd-200d-27a1-fe0f.png" 2879 | } 2880 | }, 2881 | { 2882 | "category": "Emoji & People", 2883 | "sub_category": "Person Activity", 2884 | "code": "1f469-1f3fd-200d-1f9bd-200d-27a1-fe0f", 2885 | "emoji": "👩🏽‍🦽‍➡️", 2886 | "title": "Woman in Manual Wheelchair: Medium Skin Tone, Facing Right", 2887 | "tags": [ 2888 | "accessibility", 2889 | "manual", 2890 | "wheelchair", 2891 | "woman" 2892 | ], 2893 | "codepoints": [ 2894 | "U+1F469", 2895 | "U+1F3FD", 2896 | "U+200D", 2897 | "U+1F9BD", 2898 | "U+200D", 2899 | "U+27A1", 2900 | "U+FE0F" 2901 | ], 2902 | "parent": "1f469-200d-1f9bd-200d-27a1-fe0f", 2903 | "image": { 2904 | "brand": "apple", 2905 | "platform": [ 2906 | "Apple", 2907 | "iOS 18.4" 2908 | ], 2909 | "source": "source/apple/419/woman_in_manual_wheelchair_facing_right_medium_skin_tone_1f469-1f3fd-200d-1f9bd-200d-27a1-fe0f.png" 2910 | } 2911 | }, 2912 | { 2913 | "category": "Emoji & People", 2914 | "sub_category": "Person Activity", 2915 | "code": "1f469-1f3fe-200d-1f9bd-200d-27a1-fe0f", 2916 | "emoji": "👩🏾‍🦽‍➡️", 2917 | "title": "Woman in Manual Wheelchair: Medium-Dark Skin Tone, Facing Right", 2918 | "tags": [ 2919 | "accessibility", 2920 | "manual", 2921 | "wheelchair", 2922 | "woman" 2923 | ], 2924 | "codepoints": [ 2925 | "U+1F469", 2926 | "U+1F3FE", 2927 | "U+200D", 2928 | "U+1F9BD", 2929 | "U+200D", 2930 | "U+27A1", 2931 | "U+FE0F" 2932 | ], 2933 | "parent": "1f469-200d-1f9bd-200d-27a1-fe0f", 2934 | "image": { 2935 | "brand": "apple", 2936 | "platform": [ 2937 | "Apple", 2938 | "iOS 18.4" 2939 | ], 2940 | "source": "source/apple/419/woman_in_manual_wheelchair_facing_right_medium-dark_skin_tone_1f469-1f3fe-200d-1f9bd-200d-27a1-fe0f.png" 2941 | } 2942 | }, 2943 | { 2944 | "category": "Emoji & People", 2945 | "sub_category": "Person Activity", 2946 | "code": "1f469-1f3ff-200d-1f9bd-200d-27a1-fe0f", 2947 | "emoji": "👩🏿‍🦽‍➡️", 2948 | "title": "Woman in Manual Wheelchair: Dark Skin Tone, Facing Right", 2949 | "tags": [ 2950 | "accessibility", 2951 | "manual", 2952 | "wheelchair", 2953 | "woman" 2954 | ], 2955 | "codepoints": [ 2956 | "U+1F469", 2957 | "U+1F3FF", 2958 | "U+200D", 2959 | "U+1F9BD", 2960 | "U+200D", 2961 | "U+27A1", 2962 | "U+FE0F" 2963 | ], 2964 | "parent": "1f469-200d-1f9bd-200d-27a1-fe0f", 2965 | "image": { 2966 | "brand": "apple", 2967 | "platform": [ 2968 | "Apple", 2969 | "iOS 18.4" 2970 | ], 2971 | "source": "source/apple/419/woman_in_manual_wheelchair_facing_right_dark_skin_tone_1f469-1f3ff-200d-1f9bd-200d-27a1-fe0f.png" 2972 | } 2973 | }, 2974 | { 2975 | "category": "Emoji & People", 2976 | "sub_category": "Person Activity", 2977 | "code": "1f3c3-200d-27a1-fe0f", 2978 | "emoji": "🏃‍➡️", 2979 | "title": "Person Running: Facing Right", 2980 | "tags": [ 2981 | "fast", 2982 | "hurry", 2983 | "marathon", 2984 | "move", 2985 | "person", 2986 | "quick", 2987 | "race", 2988 | "racing", 2989 | "run", 2990 | "rush", 2991 | "speed" 2992 | ], 2993 | "codepoints": [ 2994 | "U+1F3C3", 2995 | "U+200D", 2996 | "U+27A1", 2997 | "U+FE0F" 2998 | ], 2999 | "image": { 3000 | "brand": "apple", 3001 | "platform": [ 3002 | "Apple", 3003 | "iOS 18.4" 3004 | ], 3005 | "source": "source/apple/419/person_running_facing_right_1f3c3-200d-27a1-fe0f.png" 3006 | } 3007 | }, 3008 | { 3009 | "category": "Emoji & People", 3010 | "sub_category": "Person Activity", 3011 | "code": "1f3c3-1f3fb-200d-27a1-fe0f", 3012 | "emoji": "🏃🏻‍➡️", 3013 | "title": "Person Running: Light Skin Tone, Facing Right", 3014 | "tags": [ 3015 | "fast", 3016 | "hurry", 3017 | "marathon", 3018 | "move", 3019 | "person", 3020 | "quick", 3021 | "race", 3022 | "racing", 3023 | "run", 3024 | "rush", 3025 | "speed" 3026 | ], 3027 | "codepoints": [ 3028 | "U+1F3C3", 3029 | "U+1F3FB", 3030 | "U+200D", 3031 | "U+27A1", 3032 | "U+FE0F" 3033 | ], 3034 | "parent": "1f3c3-200d-27a1-fe0f", 3035 | "image": { 3036 | "brand": "apple", 3037 | "platform": [ 3038 | "Apple", 3039 | "iOS 18.4" 3040 | ], 3041 | "source": "source/apple/419/person_running_facing_right_light_skin_tonet_1f3c3-1f3fb-200d-27a1-fe0f.png" 3042 | } 3043 | }, 3044 | { 3045 | "category": "Emoji & People", 3046 | "sub_category": "Person Activity", 3047 | "code": "1f3c3-1f3fc-200d-27a1-fe0f", 3048 | "emoji": "🏃🏼‍➡️", 3049 | "title": "Person Running: Medium-Light Skin Tone, Facing Right", 3050 | "tags": [ 3051 | "fast", 3052 | "hurry", 3053 | "marathon", 3054 | "move", 3055 | "person", 3056 | "quick", 3057 | "race", 3058 | "racing", 3059 | "run", 3060 | "rush", 3061 | "speed" 3062 | ], 3063 | "codepoints": [ 3064 | "U+1F3C3", 3065 | "U+1F3FC", 3066 | "U+200D", 3067 | "U+27A1", 3068 | "U+FE0F" 3069 | ], 3070 | "parent": "1f3c3-200d-27a1-fe0f", 3071 | "image": { 3072 | "brand": "apple", 3073 | "platform": [ 3074 | "Apple", 3075 | "iOS 18.4" 3076 | ], 3077 | "source": "source/apple/419/person_running_facing_right_medium-light_skin_tone_1f3c3-1f3fc-200d-27a1-fe0f.png" 3078 | } 3079 | }, 3080 | { 3081 | "category": "Emoji & People", 3082 | "sub_category": "Person Activity", 3083 | "code": "1f3c3-1f3fd-200d-27a1-fe0f", 3084 | "emoji": "🏃🏽‍➡️", 3085 | "title": "Person Running: Medium Skin Tone, Facing Right", 3086 | "tags": [ 3087 | "fast", 3088 | "hurry", 3089 | "marathon", 3090 | "move", 3091 | "person", 3092 | "quick", 3093 | "race", 3094 | "racing", 3095 | "run", 3096 | "rush", 3097 | "speed" 3098 | ], 3099 | "codepoints": [ 3100 | "U+1F3C3", 3101 | "U+1F3FD", 3102 | "U+200D", 3103 | "U+27A1", 3104 | "U+FE0F" 3105 | ], 3106 | "parent": "1f3c3-200d-27a1-fe0f", 3107 | "image": { 3108 | "brand": "apple", 3109 | "platform": [ 3110 | "Apple", 3111 | "iOS 18.4" 3112 | ], 3113 | "source": "source/apple/419/person_running_facing_right_medium_skin_tone_1f3c3-1f3fd-200d-27a1-fe0f.png" 3114 | } 3115 | }, 3116 | { 3117 | "category": "Emoji & People", 3118 | "sub_category": "Person Activity", 3119 | "code": "1f3c3-1f3fe-200d-27a1-fe0f", 3120 | "emoji": "🏃🏾‍➡️", 3121 | "title": "Person Running: Medium-Dark Skin Tone, Facing Right", 3122 | "tags": [ 3123 | "fast", 3124 | "hurry", 3125 | "marathon", 3126 | "move", 3127 | "person", 3128 | "quick", 3129 | "race", 3130 | "racing", 3131 | "run", 3132 | "rush", 3133 | "speed" 3134 | ], 3135 | "codepoints": [ 3136 | "U+1F3C3", 3137 | "U+1F3FE", 3138 | "U+200D", 3139 | "U+27A1", 3140 | "U+FE0F" 3141 | ], 3142 | "parent": "1f3c3-200d-27a1-fe0f", 3143 | "image": { 3144 | "brand": "apple", 3145 | "platform": [ 3146 | "Apple", 3147 | "iOS 18.4" 3148 | ], 3149 | "source": "source/apple/419/person_running_facing_right_medium-dark_skin_tone_1f3c3-1f3fe-200d-27a1-fe0f.png" 3150 | } 3151 | }, 3152 | { 3153 | "category": "Emoji & People", 3154 | "sub_category": "Person Activity", 3155 | "code": "1f3c3-1f3ff-200d-27a1-fe0f", 3156 | "emoji": "🏃🏿‍➡️", 3157 | "title": "Person Running: Dark Skin Tone, Facing Right", 3158 | "tags": [ 3159 | "fast", 3160 | "hurry", 3161 | "marathon", 3162 | "move", 3163 | "person", 3164 | "quick", 3165 | "race", 3166 | "racing", 3167 | "run", 3168 | "rush", 3169 | "speed" 3170 | ], 3171 | "codepoints": [ 3172 | "U+1F3C3", 3173 | "U+1F3FF", 3174 | "U+200D", 3175 | "U+27A1", 3176 | "U+FE0F" 3177 | ], 3178 | "parent": "1f3c3-200d-27a1-fe0f", 3179 | "image": { 3180 | "brand": "apple", 3181 | "platform": [ 3182 | "Apple", 3183 | "iOS 18.4" 3184 | ], 3185 | "source": "source/apple/419/person_running_facing_right_dark_skin_tone_1f3c3-1f3ff-200d-27a1-fe0f.png" 3186 | } 3187 | }, 3188 | { 3189 | "category": "Emoji & People", 3190 | "sub_category": "Person Activity", 3191 | "code": "1f3c3-200d-2640-fe0f-200d-27a1-fe0f", 3192 | "emoji": "🏃‍♀️‍➡️", 3193 | "title": "Woman Running: Facing Right", 3194 | "tags": [ 3195 | "fast", 3196 | "hurry", 3197 | "marathon", 3198 | "move", 3199 | "quick", 3200 | "race", 3201 | "racing", 3202 | "run", 3203 | "rush", 3204 | "speed", 3205 | "woman" 3206 | ], 3207 | "codepoints": [ 3208 | "U+1F3C3", 3209 | "U+200D", 3210 | "U+2640", 3211 | "U+FE0F", 3212 | "U+200D", 3213 | "U+27A1", 3214 | "U+FE0F" 3215 | ], 3216 | "image": { 3217 | "brand": "apple", 3218 | "platform": [ 3219 | "Apple", 3220 | "iOS 18.4" 3221 | ], 3222 | "source": "source/apple/419/woman_running_facing_right_1f3c3-200d-2640-fe0f-200d-27a1-fe0f.png" 3223 | } 3224 | }, 3225 | { 3226 | "category": "Emoji & People", 3227 | "sub_category": "Person Activity", 3228 | "code": "1f3c3-1f3fb-200d-2640-fe0f-200d-27a1-fe0f", 3229 | "emoji": "🏃🏻‍♀️‍➡️", 3230 | "title": "Woman Running: Light Skin Tone, Facing Right", 3231 | "tags": [ 3232 | "fast", 3233 | "hurry", 3234 | "marathon", 3235 | "move", 3236 | "quick", 3237 | "race", 3238 | "racing", 3239 | "run", 3240 | "rush", 3241 | "speed", 3242 | "woman" 3243 | ], 3244 | "codepoints": [ 3245 | "U+1F3C3", 3246 | "U+1F3FB", 3247 | "U+200D", 3248 | "U+2640", 3249 | "U+FE0F", 3250 | "U+200D", 3251 | "U+27A1", 3252 | "U+FE0F" 3253 | ], 3254 | "parent": "1f3c3-200d-2640-fe0f-200d-27a1-fe0f", 3255 | "image": { 3256 | "brand": "apple", 3257 | "platform": [ 3258 | "Apple", 3259 | "iOS 18.4" 3260 | ], 3261 | "source": "source/apple/419/woman_running_facing_right_light_skin_tone_1f3c3-1f3fb-200d-2640-fe0f-200d-27a1-fe0f.png" 3262 | } 3263 | }, 3264 | { 3265 | "category": "Emoji & People", 3266 | "sub_category": "Person Activity", 3267 | "code": "1f3c3-1f3fc-200d-2640-fe0f-200d-27a1-fe0f", 3268 | "emoji": "🏃🏼‍♀️‍➡️", 3269 | "title": "Woman Running: Medium-Light Skin Tone, Facing Right", 3270 | "tags": [ 3271 | "fast", 3272 | "hurry", 3273 | "marathon", 3274 | "move", 3275 | "quick", 3276 | "race", 3277 | "racing", 3278 | "run", 3279 | "rush", 3280 | "speed", 3281 | "woman" 3282 | ], 3283 | "codepoints": [ 3284 | "U+1F3C3", 3285 | "U+1F3FC", 3286 | "U+200D", 3287 | "U+2640", 3288 | "U+FE0F", 3289 | "U+200D", 3290 | "U+27A1", 3291 | "U+FE0F" 3292 | ], 3293 | "parent": "1f3c3-200d-2640-fe0f-200d-27a1-fe0f", 3294 | "image": { 3295 | "brand": "apple", 3296 | "platform": [ 3297 | "Apple", 3298 | "iOS 18.4" 3299 | ], 3300 | "source": "source/apple/419/woman_running_facing_right_medium-light_skin_tone_1f3c3-1f3fc-200d-2640-fe0f-200d-27a1-fe0f.png" 3301 | } 3302 | }, 3303 | { 3304 | "category": "Emoji & People", 3305 | "sub_category": "Person Activity", 3306 | "code": "1f3c3-1f3fd-200d-2640-fe0f-200d-27a1-fe0f", 3307 | "emoji": "🏃🏽‍♀️‍➡️", 3308 | "title": "Woman Running: Medium Skin Tone, Facing Right", 3309 | "tags": [ 3310 | "fast", 3311 | "hurry", 3312 | "marathon", 3313 | "move", 3314 | "quick", 3315 | "race", 3316 | "racing", 3317 | "run", 3318 | "rush", 3319 | "speed", 3320 | "woman" 3321 | ], 3322 | "codepoints": [ 3323 | "U+1F3C3", 3324 | "U+1F3FD", 3325 | "U+200D", 3326 | "U+2640", 3327 | "U+FE0F", 3328 | "U+200D", 3329 | "U+27A1", 3330 | "U+FE0F" 3331 | ], 3332 | "parent": "1f3c3-200d-2640-fe0f-200d-27a1-fe0f", 3333 | "image": { 3334 | "brand": "apple", 3335 | "platform": [ 3336 | "Apple", 3337 | "iOS 18.4" 3338 | ], 3339 | "source": "source/apple/419/woman_running_facing_right_medium_skin_tone_1f3c3-1f3fd-200d-2640-fe0f-200d-27a1-fe0f.png" 3340 | } 3341 | }, 3342 | { 3343 | "category": "Emoji & People", 3344 | "sub_category": "Person Activity", 3345 | "code": "1f3c3-1f3fe-200d-2640-fe0f-200d-27a1-fe0f", 3346 | "emoji": "🏃🏾‍♀️‍➡️", 3347 | "title": "Woman Running: Medium-Dark Skin Tone, Facing Right", 3348 | "tags": [ 3349 | "fast", 3350 | "hurry", 3351 | "marathon", 3352 | "move", 3353 | "quick", 3354 | "race", 3355 | "racing", 3356 | "run", 3357 | "rush", 3358 | "speed", 3359 | "woman" 3360 | ], 3361 | "codepoints": [ 3362 | "U+1F3C3", 3363 | "U+1F3FE", 3364 | "U+200D", 3365 | "U+2640", 3366 | "U+FE0F", 3367 | "U+200D", 3368 | "U+27A1", 3369 | "U+FE0F" 3370 | ], 3371 | "parent": "1f3c3-200d-2640-fe0f-200d-27a1-fe0f", 3372 | "image": { 3373 | "brand": "apple", 3374 | "platform": [ 3375 | "Apple", 3376 | "iOS 18.4" 3377 | ], 3378 | "source": "source/apple/419/woman_running_facing_right_medium-dark_skin_tone_1f3c3-1f3fe-200d-2640-fe0f-200d-27a1-fe0f.png" 3379 | } 3380 | }, 3381 | { 3382 | "category": "Emoji & People", 3383 | "sub_category": "Person Activity", 3384 | "code": "1f3c3-1f3ff-200d-2640-fe0f-200d-27a1-fe0f", 3385 | "emoji": "🏃🏿‍♀️‍➡️", 3386 | "title": "Woman Running: Dark Skin Tone, Facing Right", 3387 | "tags": [ 3388 | "fast", 3389 | "hurry", 3390 | "marathon", 3391 | "move", 3392 | "quick", 3393 | "race", 3394 | "racing", 3395 | "run", 3396 | "rush", 3397 | "speed", 3398 | "woman" 3399 | ], 3400 | "codepoints": [ 3401 | "U+1F3C3", 3402 | "U+1F3FF", 3403 | "U+200D", 3404 | "U+2640", 3405 | "U+FE0F", 3406 | "U+200D", 3407 | "U+27A1", 3408 | "U+FE0F" 3409 | ], 3410 | "parent": "1f3c3-200d-2640-fe0f-200d-27a1-fe0f", 3411 | "image": { 3412 | "brand": "apple", 3413 | "platform": [ 3414 | "Apple", 3415 | "iOS 18.4" 3416 | ], 3417 | "source": "source/apple/419/woman_running_facing_right_dark_skin_tone_1f3c3-1f3ff-200d-2640-fe0f-200d-27a1-fe0f.png" 3418 | } 3419 | }, 3420 | { 3421 | "category": "Emoji & People", 3422 | "sub_category": "Person Activity", 3423 | "code": "1f3c3-200d-2642-fe0f-200d-27a1-fe0f", 3424 | "emoji": "🏃‍♂️‍➡️", 3425 | "title": "Man Running: Facing Right", 3426 | "tags": [ 3427 | "fast", 3428 | "hurry", 3429 | "man", 3430 | "marathon", 3431 | "move", 3432 | "quick", 3433 | "race", 3434 | "racing", 3435 | "run", 3436 | "rush", 3437 | "speed" 3438 | ], 3439 | "codepoints": [ 3440 | "U+1F3C3", 3441 | "U+200D", 3442 | "U+2642", 3443 | "U+FE0F", 3444 | "U+200D", 3445 | "U+27A1", 3446 | "U+FE0F" 3447 | ], 3448 | "image": { 3449 | "brand": "apple", 3450 | "platform": [ 3451 | "Apple", 3452 | "iOS 18.4" 3453 | ], 3454 | "source": "source/apple/419/man_running_facing_right_1f3c3-200d-2642-fe0f-200d-27a1-fe0f.png" 3455 | } 3456 | }, 3457 | { 3458 | "category": "Emoji & People", 3459 | "sub_category": "Person Activity", 3460 | "code": "1f3c3-1f3fb-200d-2642-fe0f-200d-27a1-fe0f", 3461 | "emoji": "🏃🏻‍♂️‍➡️", 3462 | "title": "Man Running: Light Skin Tone, Facing Right", 3463 | "tags": [ 3464 | "fast", 3465 | "hurry", 3466 | "man", 3467 | "marathon", 3468 | "move", 3469 | "quick", 3470 | "race", 3471 | "racing", 3472 | "run", 3473 | "rush", 3474 | "speed" 3475 | ], 3476 | "codepoints": [ 3477 | "U+1F3C3", 3478 | "U+1F3FB", 3479 | "U+200D", 3480 | "U+2642", 3481 | "U+FE0F", 3482 | "U+200D", 3483 | "U+27A1", 3484 | "U+FE0F" 3485 | ], 3486 | "parent": "1f3c3-200d-2642-fe0f-200d-27a1-fe0f", 3487 | "image": { 3488 | "brand": "apple", 3489 | "platform": [ 3490 | "Apple", 3491 | "iOS 18.4" 3492 | ], 3493 | "source": "source/apple/419/man_running_facing_right_light_skin_tone_1f3c3-1f3fb-200d-2642-fe0f-200d-27a1-fe0f.png" 3494 | } 3495 | }, 3496 | { 3497 | "category": "Emoji & People", 3498 | "sub_category": "Person Activity", 3499 | "code": "1f3c3-1f3fc-200d-2642-fe0f-200d-27a1-fe0f", 3500 | "emoji": "🏃🏼‍♂️‍➡️", 3501 | "title": "Man Running: Medium-Light Skin Tone, Facing Right", 3502 | "tags": [ 3503 | "fast", 3504 | "hurry", 3505 | "man", 3506 | "marathon", 3507 | "move", 3508 | "quick", 3509 | "race", 3510 | "racing", 3511 | "run", 3512 | "rush", 3513 | "speed" 3514 | ], 3515 | "codepoints": [ 3516 | "U+1F3C3", 3517 | "U+1F3FC", 3518 | "U+200D", 3519 | "U+2642", 3520 | "U+FE0F", 3521 | "U+200D", 3522 | "U+27A1", 3523 | "U+FE0F" 3524 | ], 3525 | "parent": "1f3c3-200d-2642-fe0f-200d-27a1-fe0f", 3526 | "image": { 3527 | "brand": "apple", 3528 | "platform": [ 3529 | "Apple", 3530 | "iOS 18.4" 3531 | ], 3532 | "source": "source/apple/419/man_running_facing_right_medium-light_skin_tone_1f3c3-1f3fc-200d-2642-fe0f-200d-27a1-fe0f.png" 3533 | } 3534 | }, 3535 | { 3536 | "category": "Emoji & People", 3537 | "sub_category": "Person Activity", 3538 | "code": "1f3c3-1f3fd-200d-2642-fe0f-200d-27a1-fe0f", 3539 | "emoji": "🏃🏽‍♂️‍➡️", 3540 | "title": "Man Running: Medium Skin Tone, Facing Right", 3541 | "tags": [ 3542 | "fast", 3543 | "hurry", 3544 | "man", 3545 | "marathon", 3546 | "move", 3547 | "quick", 3548 | "race", 3549 | "racing", 3550 | "run", 3551 | "rush", 3552 | "speed" 3553 | ], 3554 | "codepoints": [ 3555 | "U+1F3C3", 3556 | "U+1F3FD", 3557 | "U+200D", 3558 | "U+2642", 3559 | "U+FE0F", 3560 | "U+200D", 3561 | "U+27A1", 3562 | "U+FE0F" 3563 | ], 3564 | "parent": "1f3c3-200d-2642-fe0f-200d-27a1-fe0f", 3565 | "image": { 3566 | "brand": "apple", 3567 | "platform": [ 3568 | "Apple", 3569 | "iOS 18.4" 3570 | ], 3571 | "source": "source/apple/419/man_running_facing_right_medium_skin_tone_1f3c3-1f3fd-200d-2642-fe0f-200d-27a1-fe0f.png" 3572 | } 3573 | }, 3574 | { 3575 | "category": "Emoji & People", 3576 | "sub_category": "Person Activity", 3577 | "code": "1f3c3-1f3fe-200d-2642-fe0f-200d-27a1-fe0f", 3578 | "emoji": "🏃🏾‍♂️‍➡️", 3579 | "title": "Man Running: Medium-Dark Skin Tone, Facing Right", 3580 | "tags": [ 3581 | "fast", 3582 | "hurry", 3583 | "man", 3584 | "marathon", 3585 | "move", 3586 | "quick", 3587 | "race", 3588 | "racing", 3589 | "run", 3590 | "rush", 3591 | "speed" 3592 | ], 3593 | "codepoints": [ 3594 | "U+1F3C3", 3595 | "U+1F3FE", 3596 | "U+200D", 3597 | "U+2642", 3598 | "U+FE0F", 3599 | "U+200D", 3600 | "U+27A1", 3601 | "U+FE0F" 3602 | ], 3603 | "parent": "1f3c3-200d-2642-fe0f-200d-27a1-fe0f", 3604 | "image": { 3605 | "brand": "apple", 3606 | "platform": [ 3607 | "Apple", 3608 | "iOS 18.4" 3609 | ], 3610 | "source": "source/apple/419/man_running_facing_right_medium-dark_skin_tone_1f3c3-1f3fe-200d-2642-fe0f-200d-27a1-fe0f.png" 3611 | } 3612 | }, 3613 | { 3614 | "category": "Emoji & People", 3615 | "sub_category": "Person Activity", 3616 | "code": "1f3c3-1f3ff-200d-2642-fe0f-200d-27a1-fe0f", 3617 | "emoji": "🏃🏿‍♂️‍➡️", 3618 | "title": "Man Running: Dark Skin Tone, Facing Right", 3619 | "tags": [ 3620 | "fast", 3621 | "hurry", 3622 | "man", 3623 | "marathon", 3624 | "move", 3625 | "quick", 3626 | "race", 3627 | "racing", 3628 | "run", 3629 | "rush", 3630 | "speed" 3631 | ], 3632 | "codepoints": [ 3633 | "U+1F3C3", 3634 | "U+1F3FF", 3635 | "U+200D", 3636 | "U+2642", 3637 | "U+FE0F", 3638 | "U+200D", 3639 | "U+27A1", 3640 | "U+FE0F" 3641 | ], 3642 | "parent": "1f3c3-200d-2642-fe0f-200d-27a1-fe0f", 3643 | "image": { 3644 | "brand": "apple", 3645 | "platform": [ 3646 | "Apple", 3647 | "iOS 18.4" 3648 | ], 3649 | "source": "source/apple/419/man_running_facing_right_dark_skin_tone_1f3c3-1f3ff-200d-2642-fe0f-200d-27a1-fe0f.png" 3650 | } 3651 | }, 3652 | { 3653 | "category": "Emoji & People", 3654 | "sub_category": "Person Symbol", 3655 | "code": "1f9d1-200d-1f9d1-200d-1f9d2", 3656 | "emoji": "🧑‍🧑‍🧒", 3657 | "title": "Family: Adult, Adult, Child", 3658 | "tags": [ 3659 | "adult", 3660 | "child", 3661 | "family" 3662 | ], 3663 | "codepoints": [ 3664 | "U+1F9D1", 3665 | "U+200D", 3666 | "U+1F9D1", 3667 | "U+200D", 3668 | "U+1F9D2" 3669 | ], 3670 | "image": { 3671 | "brand": "apple", 3672 | "platform": [ 3673 | "Apple", 3674 | "iOS 18.4" 3675 | ], 3676 | "source": "source/apple/419/family-adult-adult-child_1f9d1-200d-1f9d1-200d-1f9d2.png" 3677 | } 3678 | }, 3679 | { 3680 | "category": "Emoji & People", 3681 | "sub_category": "Person Symbol", 3682 | "code": "1f9d1-200d-1f9d1-200d-1f9d2-200d-1f9d2", 3683 | "emoji": "🧑‍🧑‍🧒‍🧒", 3684 | "title": "Family: Adult, Adult, Child, Child", 3685 | "tags": [ 3686 | "adult", 3687 | "child", 3688 | "family" 3689 | ], 3690 | "codepoints": [ 3691 | "U+1F9D1", 3692 | "U+200D", 3693 | "U+1F9D1", 3694 | "U+200D", 3695 | "U+1F9D2", 3696 | "U+200D", 3697 | "U+1F9D2" 3698 | ], 3699 | "image": { 3700 | "brand": "apple", 3701 | "platform": [ 3702 | "Apple", 3703 | "iOS 18.4" 3704 | ], 3705 | "source": "source/apple/419/family-adult-adult-child-child_1f9d1-200d-1f9d1-200d-1f9d2-200d-1f9d2.png" 3706 | } 3707 | }, 3708 | { 3709 | "category": "Emoji & People", 3710 | "sub_category": "Person Symbol", 3711 | "code": "1f9d1-200d-1f9d2", 3712 | "emoji": "🧑‍🧒", 3713 | "title": "Family: Adult, Child", 3714 | "tags": [ 3715 | "adult", 3716 | "child", 3717 | "family" 3718 | ], 3719 | "codepoints": [ 3720 | "U+1F9D1", 3721 | "U+200D", 3722 | "U+1F9D2" 3723 | ], 3724 | "image": { 3725 | "brand": "apple", 3726 | "platform": [ 3727 | "Apple", 3728 | "iOS 18.4" 3729 | ], 3730 | "source": "source/apple/419/family-adult-child_1f9d1-200d-1f9d2.png" 3731 | } 3732 | }, 3733 | { 3734 | "category": "Emoji & People", 3735 | "sub_category": "Person Symbol", 3736 | "code": "1f9d1-200d-1f9d2-200d-1f9d2", 3737 | "emoji": "🧑‍🧒‍🧒", 3738 | "title": "Family: Adult, Child, Child", 3739 | "tags": [ 3740 | "adult", 3741 | "child", 3742 | "family" 3743 | ], 3744 | "codepoints": [ 3745 | "U+1F9D1", 3746 | "U+200D", 3747 | "U+1F9D2", 3748 | "U+200D", 3749 | "U+1F9D2" 3750 | ], 3751 | "image": { 3752 | "brand": "apple", 3753 | "platform": [ 3754 | "Apple", 3755 | "iOS 18.4" 3756 | ], 3757 | "source": "source/apple/419/family-adult-child-child_1f9d1-200d-1f9d2-200d-1f9d2.png" 3758 | } 3759 | }, 3760 | { 3761 | "category": "Animals & Nature", 3762 | "sub_category": "Animal Bird", 3763 | "code": "1f426-200d-1f525", 3764 | "emoji": "🐦‍🔥", 3765 | "title": "Phoenix", 3766 | "tags": [ 3767 | "ascend", 3768 | "ascension", 3769 | "emerge", 3770 | "fantasy", 3771 | "firebird", 3772 | "glory", 3773 | "immortal", 3774 | "phoenix", 3775 | "rebirth", 3776 | "reincarnation", 3777 | "reinvent", 3778 | "renewal", 3779 | "revival", 3780 | "revive", 3781 | "rise", 3782 | "transform" 3783 | ], 3784 | "codepoints": [ 3785 | "U+1F426", 3786 | "U+200D", 3787 | "U+1F525" 3788 | ], 3789 | "image": { 3790 | "brand": "apple", 3791 | "platform": [ 3792 | "Apple", 3793 | "iOS 18.4" 3794 | ], 3795 | "source": "source/apple/419/phoenix-bird_1f426-200d-1f525.png" 3796 | } 3797 | }, 3798 | { 3799 | "category": "Food & Drink", 3800 | "sub_category": "Food Fruit", 3801 | "code": "1f34b-200d-1f7e9", 3802 | "emoji": "🍋‍🟩", 3803 | "title": "Lime", 3804 | "tags": [ 3805 | "acidity", 3806 | "citrus", 3807 | "cocktail", 3808 | "fruit", 3809 | "garnish", 3810 | "key", 3811 | "lime", 3812 | "margarita", 3813 | "mojito", 3814 | "refreshing", 3815 | "salsa", 3816 | "sour", 3817 | "tangy", 3818 | "tequila", 3819 | "tropical", 3820 | "zest" 3821 | ], 3822 | "codepoints": [ 3823 | "U+1F34B", 3824 | "U+200D", 3825 | "U+1F7E9" 3826 | ], 3827 | "image": { 3828 | "brand": "apple", 3829 | "platform": [ 3830 | "Apple", 3831 | "iOS 18.4" 3832 | ], 3833 | "source": "source/apple/419/lime_1f34b-200d-1f7e9.png" 3834 | } 3835 | }, 3836 | { 3837 | "category": "Food & Drink", 3838 | "sub_category": "Food Vegetable", 3839 | "code": "1f344-200d-1f7eb", 3840 | "emoji": "🍄‍🟫", 3841 | "title": "Brown Mushroom", 3842 | "tags": [ 3843 | "food", 3844 | "fungi", 3845 | "fungus", 3846 | "mushroom", 3847 | "nature", 3848 | "pizza", 3849 | "portobello", 3850 | "shiitake", 3851 | "shroom", 3852 | "spore", 3853 | "sprout", 3854 | "toppings", 3855 | "truffle", 3856 | "vegetable", 3857 | "vegetarian", 3858 | "veggie" 3859 | ], 3860 | "codepoints": [ 3861 | "U+1F344", 3862 | "U+200D", 3863 | "U+1F7EB" 3864 | ], 3865 | "image": { 3866 | "brand": "apple", 3867 | "platform": [ 3868 | "Apple", 3869 | "iOS 18.4" 3870 | ], 3871 | "source": "source/apple/419/brown-mushroom_1f344-200d-1f7eb.png" 3872 | } 3873 | }, 3874 | { 3875 | "category": "Objects", 3876 | "sub_category": "Tool", 3877 | "code": "26d3-fe0f-200d-1f4a5", 3878 | "emoji": "⛓️‍💥", 3879 | "title": "Broken Chain", 3880 | "tags": [ 3881 | "break", 3882 | "breaking", 3883 | "broken", 3884 | "chain", 3885 | "cuffs", 3886 | "freedom" 3887 | ], 3888 | "codepoints": [ 3889 | "U+26D3", 3890 | "U+FE0F", 3891 | "U+200D", 3892 | "U+1F4A5" 3893 | ], 3894 | "image": { 3895 | "brand": "apple", 3896 | "platform": [ 3897 | "Apple", 3898 | "iOS 18.4" 3899 | ], 3900 | "source": "source/apple/419/broken-chain_26d3-fe0f-200d-1f4a5.png" 3901 | } 3902 | } 3903 | ] --------------------------------------------------------------------------------