colorful rat Ratfactor.com > Dave's Repos

faceclick

A lightweight Emoji picker popup library with labels and keyword search.
git clone http://ratfactor.com/repos/faceclick/faceclick.git

faceclick/faceclick.js

Download raw file: faceclick.js

1 // Faceclick Emoji Picker Library 2 // http://ratfactor.com/faceclick 3 FC = { 4 selected_group_range: null, 5 list_container: null, 6 callback: null, 7 el_box: null, 8 el_list: null, 9 el_filters: null, 10 group_clears_search: true, 11 search_clears_group: true, 12 close_on_pick: true, 13 close_on_clickaway: true, 14 }; 15 FC.popup = function(x, y, callback){ 16 FC.callback = callback; 17 18 if(!FC.el_box){ 19 // Main popup box 20 FC.el_box = document.createElement("div"); 21 FC.el_box.id = 'fc_popup'; 22 FC.el_box.style.position = 'absolute'; 23 24 // Filter box 25 FC.el_filters = document.createElement("div"); 26 FC.el_filters.id = 'fc_filters'; 27 FC.el_box.appendChild(FC.el_filters); 28 29 // Group filters 30 FC.draw_group_filters(); 31 32 // Text search filter 33 FC.search_box = document.createElement("input"); 34 FC.search_box.type = "text"; 35 FC.search_box.placeholder = "Search..."; 36 FC.search_box.addEventListener('input',function(){ 37 if(FC.search_clears_group){ 38 FC.clear_group_filters(); 39 FC.selected_group_range = null; 40 } 41 FC.populate_list(); 42 }); 43 FC.el_filters.appendChild(FC.search_box); 44 45 // Emoji list placeholder 46 FC.el_list = document.createElement("div"); 47 FC.el_list.id = 'fc_list_scrollbox'; 48 FC.el_box.appendChild(FC.el_list); 49 50 document.body.appendChild(FC.el_box); 51 } 52 else if(FC.el_box.style.display !== 'none'){ 53 // The popup exists and it is visible, so we want 54 // to toggle it closed rather than re-open. 55 FC.close(); 56 return; 57 } 58 59 FC.el_box.style.display = 'initial'; 60 FC.el_box.style.left = x+'px'; 61 FC.el_box.style.top = y+'px'; 62 FC.populate_list(); 63 FC.search_box.focus(); 64 65 // Fun fact: The click that opened the popup continues to 66 // propagate up the DOM, so adding an event listener now 67 // actually catches that click. Simple/silly fix: Wait. 68 if(FC.close_on_clickaway){ 69 setTimeout(function(){ 70 document.addEventListener('click', FC.clickaway); 71 }, 1); // 1 millisecond 72 } 73 }; 74 FC.draw_group_filters = function(){ 75 var group_els = []; 76 FC.data.groups.forEach(function(g){ 77 var el = document.createElement("a"); 78 el.href = "#"; 79 el.title = g.title; 80 el.textContent = g.emoji; 81 el.addEventListener('click', function(e){ 82 if(FC.group_clears_search){ 83 FC.search_box.value = ""; 84 } 85 FC.clear_group_filters(); 86 e.preventDefault(); 87 el.classList.add('selected'); 88 FC.selected_group_range = g.range; 89 FC.populate_list(); 90 }); 91 group_els.push(el); 92 FC.el_filters.appendChild(el); 93 }); 94 95 // Use closure to create a filter clear function 96 FC.clear_group_filters = function(){ 97 group_els.forEach(function(els){ 98 els.classList.remove('selected'); 99 }); 100 }; 101 }; 102 FC.group = function(e){ 103 console.log(e); 104 e.target.classList.add('selected'); 105 }; 106 FC.clickaway = function(e){ 107 // Close when you click outside the popup 108 // (DOM closest() finds ancestor.) 109 if(!e.target.closest('#fc_popup')){ 110 FC.close(); 111 } 112 }; 113 FC.attach = function(click, insert){ 114 var el_click = (typeof click === 'object') ? click : 115 document.getElementById(click); 116 var el_insert = (typeof insert === 'object') ? insert : 117 document.getElementById(insert); 118 var callback = function(c){FC.insert(el_insert, c);}; 119 if(!el_click){alert("Faceclick could not find id '"+click_id+"'.");} 120 if(!el_insert){alert("Faceclick could not find id '"+insert_id+"'.");} 121 el_click.addEventListener("click", function(){ 122 FC.attach_popup(el_click, callback); 123 }); 124 }; 125 FC.attach_cb = function(el_click, callback){ 126 el_click.addEventListener("click", function(){ 127 FC.attach_popup(el_click, callback); 128 }); 129 }; 130 FC.attach_popup = function(element, callback){ 131 FC.popup( 132 element.getBoundingClientRect().right + window.scrollX + 5, 133 element.getBoundingClientRect().top + window.scrollY, 134 callback 135 ); 136 }; 137 FC.insert = function(element, insert_txt){ 138 var start = element.selectionStart; 139 var end = element.selectionEnd; 140 element.setRangeText(insert_txt, start, end, 'end'); 141 142 if(FC.close_on_pick){ 143 // close popup, return focus to element 144 FC.close(); 145 element.focus(); 146 } 147 }; 148 FC.close = function(){ 149 FC.el_box.style.display = 'none'; 150 document.removeEventListener('click', FC.clickaway); 151 } 152 FC.populate_list = function(){ 153 var list_html = `<ul id="fc_emoji_list">`; 154 155 var gr = FC.selected_group_range; 156 var min = gr ? gr[0] : 0; 157 var max = gr ? gr[1] : FC.data.emoji.length-1; 158 var search_text = FC.search_box.value; 159 160 FC.data.emoji.forEach(function(emoji, i){ 161 if(i < min || i > max){ return; } // filter group 162 if(emoji.tags.indexOf(search_text) === -1){ return; } 163 list_html += `<li><a href="#" title="${emoji.label}">${emoji.glyph}</a></li>` 164 }); 165 list_html += "</ul>"; 166 FC.el_list.innerHTML = list_html; 167 168 FC.el_list.querySelectorAll('a').forEach( function(elem){ 169 var emoji = elem.textContent; 170 171 if(typeof FC.callback === 'function'){ 172 elem.addEventListener("click", function(e){ 173 e.preventDefault(); 174 FC.callback(emoji); 175 }); 176 }else{ 177 console.warn("FC.populate_list() not given a callback function."); 178 } 179 }); 180 }; 181 window.addEventListener('load', function(){ 182 // Split words string into array 183 var words = FC.data.words.split(' '); 184 185 // Replaces '$42' with word at index 42 186 function idx2txt(wlist){ 187 wlist.forEach(function(w,i){ 188 if(w[0] === '$'){ 189 var idx = w.substring(1); 190 wlist[i] = words[idx]; 191 } 192 }); 193 return wlist; 194 } 195 196 // From: ['X','$1 $2','foo $3'] 197 // To: {glyph:'X', label: 'big dog', tags: 'foo bar big dog'} 198 FC.data.emoji.forEach(function(e, i){ 199 var glyph = e[0]; 200 var label = e[1]; 201 var tags = e[2]; 202 label = idx2txt(label.split(' ')).join(' '); 203 tags = idx2txt(tags.split(' ')).join(' '); 204 205 // Write expanded object in place of original 206 FC.data.emoji[i] = { 207 glyph: glyph, 208 label: label, 209 tags: tags + ' ' + label, 210 }; 211 }); 212 }); 213 FC.data = { 214 groups: [ 215 {"title":"People","emoji":"๐Ÿ˜€","range":[0,279]}, 216 {"title":"Natural","emoji":"๐ŸŒด","range":[280,548]}, 217 {"title":"Activity","emoji":"๐Ÿงญ","range":[549,843]}, 218 {"title":"Things","emoji":"๐Ÿ“ป๏ธ","range":[844,1283]} 219 ], 220 words: 'face animal with food button arrow heart tool love clothing time zodiac' 221 +' celebration fantasy smile geometric game hand smiling space square fruit tale' 222 +' fairytale fairy weather plant bird sweet romance clock building eyes mark white' 223 +' emotion dating religion drink moon ornithology sport person open clothes money' 224 +' restaurant cloud communication dessert sound sign prohibited comic cold mouth' 225 +' happy horoscope music shopping oโ€™clock vehicle travel ball accessibility' 226 +' anniversary forbidden date xoxo circle card insect nature light farm couple' 227 +' computer right water blue unhappy feels closed railway breakfast double woman' 228 +' star gesture beach hands party night grinning education entertainment direction' 229 +' flower ocean together down black creature monster good small large flirt triangle' 230 +' telephone shoe dress diamond video weapon babe baby finger left symbol green' 231 +' punctuation sick dead raised whatever kiss excited teeth toilet currency paper' 232 +' instrument suit rain train school bank home vegetable science people index stop' 233 +' fast orange heavy letter halloween body angry scared medicine doctor tired shade' 234 +' secret kisses crying bathroom email cash mobile cell cross hotel mountain' 235 +' drinking glass movie garden tropical milk bestie magic christmas adult phone' 236 +' camera done balloon bubble mail monkey purple scary celebrate birthday quiet' 237 +' hungry kissing tear sweat awesome input mailbox postbox banknote bill dollar' 238 +' reading library book shoes bathing flag medal drive electric umbrella world' 239 +' drinks booze alcohol beverage stick japanese cooking crescent bread bell leaf' 240 +' rice tree house fish bear desert animals bunny office lady young kick oncoming rock' 241 +' pointing fingers backhand boom brown yellow exclamation ears anger surprised' 242 +' bright nose mask awkward what surprise yolo tongue hearts nervous laugh type)' 243 +' (blood latin curving intercardinal cardinal checked restroom lavatory hammer' 244 +' math file e-mail chart graph billion film cinema disk musical speaker womanโ€™s' 245 +' dressed place gold envelope behind medium quarter airplane aeroplane boat ship' 246 +' traffic truck trolleybus tram judaism jewish globe earth knife club bottle candy' 247 +' pastry meat cheese mouse relationship woman, mwah twins friends ring snow racing' 248 +' horse trident siren folklore police worker wise child hear fist high morning' 249 +' valentine death horns evil upset anxious rich fancy glasses partying shocked' 250 +' dizzy sleepy peace bored over full outlined adorbs nice', 251 emoji: [ 252 ['๐Ÿ˜€','$93 $0','cheerful cheery $56 $256 $345 $14 $18 $128'], 253 ['๐Ÿ˜ƒ','$93 $0 $2 big $32','$193 $56 $55 $43 $14 $18 $128 yay'], 254 ['๐Ÿ˜„','$93 $0 $2 $18 $32','$56 $256 lol $55 $43 $14'], 255 ['๐Ÿ˜','beaming $0 $2 $18 $32','grin $93 $56 $345 $14 $128'], 256 ['๐Ÿ˜†','$93 squinting $0','$82 $32 haha hahaha $56 $256 lol $55 $43 rofl $14 $18'], 257 ['๐Ÿ˜…','$93 $0 $2 $192','$54 dejected $127 $55 $255 $43 $14 $18 stress stressed'], 258 ['๐Ÿคฃ','rolling on the floor laughing','$158 $0 funny haha $56 hehe hilarious joy lmao lol rofl roflmao $191'], 259 ['๐Ÿ˜‚','$0 $2 tears of joy','$158 $81 funny haha $56 hehe hilarious $256 lmao lol rofl roflmao'], 260 ['๐Ÿ™‚','slightly $18 $0','$56 $14'],['๐Ÿ™ƒ','upside-down $0','hehe $14'], 261 ['๐Ÿ˜‰','winking $0','$107 heartbreaker sexy slide tease winks'], 262 ['๐Ÿ˜Š','$18 $0 $2 $18 $32','blush glad satisfied $14'], 263 ['๐Ÿ˜‡','$18 $0 $2 halo','angel angelic angels blessed $24 $23 $13 $56 innocent peaceful $14 spirit $22'], 264 ['๐Ÿฅฐ','$18 $0 $2 $254','3 adore crush ily $8 $29 $14 you'], 265 ['๐Ÿ˜','$18 $0 $2 heart-eyes','143 bae $81 $254 ily $157 $8 $29 romantic $14 $68'], 266 ['๐Ÿคฉ','star-struck','$127 $32 $0 $93 $14 starry-eyed wow'], 267 ['๐Ÿ˜˜','$0 blowing a $126','$344 bae $107 $6 ily $8 lover miss muah romantic smooch $68 you'], 268 ['๐Ÿ˜—','$190 $0','143 $67 $36 $107 ily $8 smooch smooches $68 you'], 269 ['โ˜บ๏ธ','$18 $0','$56 $343 relaxed $14'], 270 ['๐Ÿ˜š','$190 $0 $2 $82 $32','143 bae blush $67 $36 $107 ily $157 smooches $68'], 271 ['๐Ÿ˜™','$190 $0 $2 $18 $32','143 $82 $67 $36 $107 ily $157 $8 $92 $14'], 272 ['๐Ÿฅฒ','$18 $0 $2 $191','glad grateful $56 joy pain proud relieved $14 smiley touched'], 273 ['๐Ÿ˜‹','$0 savoring $3','delicious eat $342 $189 $14 $18 tasty um yum yummy'], 274 ['๐Ÿ˜›','$0 $2 $253','$193 cool $345 $91 stuck-out $28'], 275 ['๐Ÿ˜œ','winking $0 $2 $253','crazy epic eye funny joke loopy nutty $91 stuck-out wacky weirdo $252'], 276 ['๐Ÿคช','zany $0','crazy eye $32 goofy $106 $105'], 277 ['๐Ÿ˜','squinting $0 $2 $253','$82 eye $32 gross horrible omg stuck-out taste $125 $252'], 278 ['๐Ÿค‘','money-mouth $0','paid'],['๐Ÿค—','$18 $0 $2 $43 $90','hug hugging'], 279 ['๐Ÿคญ','$0 $2 $17 $341 $55','giggle giggling oops realization $156 shock sudden $251 whoops'], 280 ['๐Ÿคซ','shushing $0','$188 shh'], 281 ['๐Ÿค”','thinking $0','chin consider hmm ponder pondering wondering'], 282 ['๐Ÿค','zipper-mouth $0','keep $188 $156 shut'], 283 ['๐Ÿคจ','$0 $2 $124 eyebrow','disapproval disbelief distrust emoji hmm mild skeptic skeptical skepticism $251 $250'], 284 ['๐Ÿ˜๏ธ','neutral $0','$249 blank deadpan expressionless fine jealous meh oh $155 straight unamused $80 unimpressed $125'], 285 ['๐Ÿ˜‘','expressionless $0','$249 $123 fine inexpressive jealous meh not oh omg straight uh $80 unimpressed $125'], 286 ['๐Ÿ˜ถ','$0 without $55','$249 blank expressionless mouthless mute $188 $156 silence silent speechless'], 287 ['๐Ÿ˜','smirking $0','boss dapper $107 homie kidding leer $155 slick sly smug snicker suave suspicious swag'], 288 ['๐Ÿ˜’','unamused $0','... $340 fine jealous jel jelly pissed smh ugh uhh $80 weird $125'], 289 ['๐Ÿ™„','$0 $2 rolling $32','eyeroll $155 ugh $125'], 290 ['๐Ÿ˜ฌ','grimacing $0','awk $249 dentist grimace $93 $14 $18'], 291 ['๐Ÿคฅ','lying $0','liar lie pinocchio'], 292 ['๐Ÿ˜Œ','relieved $0','calm $339 relief zen'], 293 ['๐Ÿ˜”','pensive $0','awful $340 dejected died disappointed losing lost sad sucks'], 294 ['๐Ÿ˜ช','$338 $0','$158 $104 $92 sad sleeping $154'],['๐Ÿคค','drooling $0',''], 295 ['๐Ÿ˜ด','sleeping $0','bed bedtime $104 goodnight nap $92 $154 $125 yawn zzz'], 296 ['๐Ÿ˜ท','$0 $2 medical $248','$54 dentist dermatologist $153 dr germs $152 $122'], 297 ['๐Ÿค’','$0 $2 thermometer','ill $122'], 298 ['๐Ÿค•','$0 $2 head-bandage','hurt injury ouch'], 299 ['๐Ÿคข','nauseated $0','gross nasty $122 vomit'], 300 ['๐Ÿคฎ','$0 vomiting','barf ew gross puke $122 spew throw up'], 301 ['๐Ÿคง','sneezing $0','fever flu gesundheit $122 sneeze'], 302 ['๐Ÿฅต','hot $0','dying feverish heat panting red-faced stroke sweating $253'], 303 ['๐Ÿฅถ','$54 $0','$79 blue-faced freezing frostbite icicles subzero $128'], 304 ['๐Ÿฅด','woozy $0','$337 drunk $32 intoxicated $55 tipsy uneven wavy'], 305 ['๐Ÿ˜ต','$0 $2 crossed-out $32','$123 $337 $81 knocked $122 $154'], 306 ['๐Ÿคฏ','exploding head','blown explode mind mindblown no $336 way'], 307 ['๐Ÿค ','cowboy hat $0','cowgirl'], 308 ['๐Ÿฅณ','$335 $0','bday $187 $186 $12 $127 $56 hat hooray horn'], 309 ['๐Ÿฅธ','disguised $0','eyebrow $334 incognito moustache mustache $247 $42 spy tache tash'], 310 ['๐Ÿ˜Ž','$18 $0 $2 sunglasses','$193 $89 $246 bro chilling cool rad relaxed shades slay $14 style swag win'], 311 ['๐Ÿค“','nerd $0','brainy clever expert geek gifted $334 intelligent smart'], 312 ['๐Ÿง','$0 $2 monocle','classy $333 $332 stuffy wealthy'], 313 ['๐Ÿ˜•','confused $0','befuddled confusing dunno frown hm meh not sad sorry sure'], 314 ['๐Ÿ˜Ÿ','worried $0','$331 butterflies nerves $255 sad stress stressed $245 worry'], 315 ['๐Ÿ™','slightly frowning $0','sad'],['โ˜น๏ธ','frowning $0','sad'], 316 ['๐Ÿ˜ฎ','$0 $2 $43 $55','believe forgot omg $336 $245 sympathy unbelievable unreal whoa wow you'], 317 ['๐Ÿ˜ฏ','hushed $0','epic omg stunned $245 whoa woah'], 318 ['๐Ÿ˜ฒ','astonished $0','cost no omg $336 totally way'], 319 ['๐Ÿ˜ณ','flushed $0','amazed $249 crazy dazed $123 disbelief embarrassed geez heat hot impressed jeez $250 wow'], 320 ['๐Ÿฅบ','pleading $0','begging big $32 mercy not please pretty puppy sad why'], 321 ['๐Ÿ˜ฆ','frowning $0 $2 $43 $55','caught guard $151 $185 $251 $250 wow'], 322 ['๐Ÿ˜ง','anguished $0','forgot $151 $185 stressed $251 $80 $250 wow'], 323 ['๐Ÿ˜จ','fearful $0','afraid $331 blame $151 worried'], 324 ['๐Ÿ˜ฐ','$331 $0 $2 $192','$79 $54 eek $55 $255 $43 rushed $151 yikes'], 325 ['๐Ÿ˜ฅ','sad but relieved $0','$331 call close complicated disappointed not $192 $10 whew'], 326 ['๐Ÿ˜ข','$158 $0','awful $81 miss sad $191 triste $80'], 327 ['๐Ÿ˜ญ','loudly $158 $0','bawling sad sob $191 tears $80'], 328 ['๐Ÿ˜ฑ','$0 screaming in fear','epic fearful munch $151 screamer $336 $245 woah'], 329 ['๐Ÿ˜–','confounded $0','annoyed confused cringe distraught $81 frustrated mad sad'], 330 ['๐Ÿ˜ฃ','persevering $0','concentrate concentration focus headache persevere'], 331 ['๐Ÿ˜ž','disappointed $0','awful blame dejected fail losing sad $80'], 332 ['๐Ÿ˜“','downcast $0 $2 $192','close $54 $81 headache $255 sad $151 yikes'], 333 ['๐Ÿ˜ฉ','weary $0','$158 fail $81 $189 mad nooo sad $338 $154 $80'], 334 ['๐Ÿ˜ซ','$154 $0','cost $81 nap sad sneeze'], 335 ['๐Ÿฅฑ','yawning $0','bedtime $340 goodnight nap $92 sleep $338 $154 $125 zzz'], 336 ['๐Ÿ˜ค','$0 $2 steam from $247','$244 $150 $81 fume fuming furious fury mad triumph $80 won'], 337 ['๐Ÿ˜ก','enraged $0','$244 $150 $81 mad maddening pouting red $155 $80 $330'], 338 ['๐Ÿ˜ ','$150 $0','$244 blame $81 frustrated mad maddening rage $155 $80 $330'], 339 ['๐Ÿคฌ','$0 $2 symbols on $55','censor cursing cussing mad pissed swearing'], 340 ['๐Ÿ˜ˆ','$18 $0 $2 $328','demon devil $329 $24 $23 $13 $184 $155 $14 $22'], 341 ['๐Ÿ‘ฟ','$150 $0 $2 $328','demon devil $329 $24 $23 $13 imp mischievous $184 $155 $22'], 342 ['๐Ÿ’€','skull','$149 $123 $327 $0 $24 $23 iโ€™m lmao $103 $22 $252'], 343 ['โ˜ ๏ธ','skull and crossbones','$123 $327 $0 $103'], 344 ['๐Ÿ’ฉ','pile of poo','bs $53 doo dung $0 fml $103 poop smelly smh stink stinks stinky turd'], 345 ['๐Ÿคก','clown $0',''],['๐Ÿ‘น','ogre','$102 devil $0 $24 $23 $13 $248 $103 $185 $22'], 346 ['๐Ÿ‘บ','goblin','$150 $102 $0 $24 $23 $13 $248 mean $103 $22'], 347 ['๐Ÿ‘ป','ghost','boo $102 $127 $0 $24 $23 $13 $148 haunting $103 $185 silly $22'], 348 ['๐Ÿ‘ฝ๏ธ','alien','$102 extraterrestrial $0 $24 $23 $13 $103 $19 $22 ufo'], 349 ['๐Ÿ‘พ','alien $103','$102 extraterrestrial $0 $24 $23 $13 $16 gamer games pixelated $19 $22 ufo'], 350 ['๐Ÿค–','robot','$0 $103'],['๐Ÿ˜บ','$93 cat','$1 $0 $55 $43 $14 $18'], 351 ['๐Ÿ˜ธ','$93 cat $2 $18 $32','$1 $0 $14'], 352 ['๐Ÿ˜น','cat $2 tears of joy','$1 $0 $256 laughing lol'], 353 ['๐Ÿ˜ป','$18 cat $2 heart-eyes','$1 $0 $8 $14'], 354 ['๐Ÿ˜ผ','cat $2 wry $14','$1 $0 ironic'],['๐Ÿ˜ฝ','$190 cat','$1 $82 eye $32 $0'], 355 ['๐Ÿ™€','weary cat','$1 $0 oh $245'],['๐Ÿ˜ฟ','$158 cat','$1 $0 sad $191'], 356 ['๐Ÿ˜พ','pouting cat','$1 $0'], 357 ['๐Ÿ™ˆ','see-no-evil $183','embarrassed $0 $66 forgot $88 hide omg $52 $151 $156 smh watch'], 358 ['๐Ÿ™‰','hear-no-evil $183','$1 $243 $0 $66 $88 listen not $52 $156 shh tmi'], 359 ['๐Ÿ™Š','speak-no-evil $183','$1 $0 $66 $88 not oops $52 $188 $156 stealth'], 360 ['๐Ÿ’Œ','$8 $147','$6 $182 $29 $326'], 361 ['๐Ÿ’˜','$6 $2 $5','143 $344 cupid $67 $35 ily $8 $29 $326'], 362 ['๐Ÿ’','$6 $2 ribbon','143 $65 $35 ily $157 $326 $68'], 363 ['๐Ÿ’–','sparkling $6','143 $35 $127 $104 ily $157 $325 $92 sparkle $68'], 364 ['๐Ÿ’—','growing $6','143 $35 $127 heartpulse ily $157 muah $255 pulse $68'], 365 ['๐Ÿ’“','beating $6','143 cardio $35 heartbeat ily $8 pulsating pulse'], 366 ['๐Ÿ’ž','revolving $254','143 $344 $65 $35'], 367 ['๐Ÿ’•','two $254','143 $65 $67 $36 $35 ily $157 $8 loving $68'], 368 ['๐Ÿ’Ÿ','$6 decoration','143 $35 hearth $184 $34'], 369 ['โฃ๏ธ','$6 $242','$146 $33 $121'], 370 ['๐Ÿ’”','broken $6','break crushed $35 heartbroken lonely sad'], 371 ['โค๏ธ','red $6','$35 $8'],['๐Ÿงก','$145 $6','143'], 372 ['๐Ÿ’›','$241 $6','143 cardiac $35 ily $8'], 373 ['๐Ÿ’š','$120 $6','143 $35 ily $8 romantic'],['๐Ÿ’™','$79 $6','143 $35 ily $8 $29'], 374 ['๐Ÿ’œ','$184 $6','143 bestest $35 ily $8'],['๐ŸคŽ','$240 $6','143'], 375 ['๐Ÿ–ค','$101 $6','$329 wicked'],['๐Ÿค','$34 $6','143'], 376 ['๐Ÿ’‹','$126 $33','$36 $35 $6 $190 lips $29 sexy'], 377 ['๐Ÿ’ฏ','hundred points','100 a+ agree clearly definitely faithful fleek $342 keep perfect score true truth yup'], 378 ['๐Ÿ’ข','$244 $119','$150 $53 mad $330'], 379 ['๐Ÿ’ฅ','collision','bomb $239 collide $53 explode'], 380 ['๐Ÿ’ซ','$337','$53 shining shooting $87 stars'], 381 ['๐Ÿ’ฆ','$192 droplets','$53 drip drops splashing squirt $78 wet work workout'], 382 ['๐Ÿ’จ','dashing away','$47 $53 fart $144 go gone gotta running smoke'], 383 ['๐Ÿ•ณ๏ธ','hole',''], 384 ['๐Ÿ’ฌ','speech $180','$181 $53 dialog message sms talk text typing'], 385 ['๐Ÿ‘๏ธโ€๐Ÿ—จ๏ธ','eye in speech $181','$180 witness'], 386 ['๐Ÿ—จ๏ธ','$118 speech $181','$180 dialog'],['๐Ÿ—ฏ๏ธ','$77 $244 $181','$150 $180 mad'], 387 ['๐Ÿ’ญ','thought $180','$181 cartoon $47 $53 daydream decisions dream idea invent invention realize think thoughts wonder'], 388 ['๐Ÿ’ค','ZZZ','$53 $104 goodnight $92 sleep sleeping $338 $154 zzz'], 389 ['๐Ÿ‘‹','waving $17','bye cya g2g greetings gtg hello hey hi later outtie ttfn ttyl wave yo you'], 390 ['๐Ÿคš','$124 back of $17','$238'],['๐Ÿ–๏ธ','$17 $2 $237 splayed','$124 $143'], 391 ['โœ‹๏ธ','$124 $17','5 five $324 $143'],['๐Ÿ––','vulcan salute','$117 $17 $90'], 392 ['๐Ÿ‘Œ','OK $17','$193 bet dope fleek fosho got gotcha legit ok okay pinch rad sure $28 three'], 393 ['๐ŸคŒ','pinched $237','$88 $17 hold huh interrogation patience relax sarcastic ugh $250 zip'], 394 ['๐Ÿค','pinching $17','amount bit $237 little $105 sort'], 395 ['โœŒ๏ธ','victory $17','$339'],['๐Ÿคž','crossed $237','$17 luck'], 396 ['๐ŸคŸ','love-you $88','$237 $17 ily three'], 397 ['๐Ÿค˜','$51 of the $328','$117 $17 rock-on'], 398 ['๐Ÿค™','call me $17','hang loose shaka'],['๐Ÿ‘ˆ๏ธ','$238 $142 $236 $118','$117'], 399 ['๐Ÿ‘‰๏ธ','$238 $142 $236 $77','$117'],['๐Ÿ‘†๏ธ','$238 $142 $236 up','$117'], 400 ['๐Ÿ–•','middle $117','$17'],['๐Ÿ‘‡๏ธ','$238 $142 $236 $100','$117'], 401 ['โ˜๏ธ','$142 $236 up','$117 $17 this'],['๐Ÿ‘๏ธ','thumbs up','+1 $104 $17 like yes'], 402 ['๐Ÿ‘Ž๏ธ','thumbs $100','-1 bad dislike $104 $17 no nope'], 403 ['โœŠ๏ธ','$124 $323','clenched $17 punch solidarity'], 404 ['๐Ÿ‘Š','$234 $323','absolutely agree $239 bro bruh bump clenched correct $17 knuckle pound punch $235 ttyl'], 405 ['๐Ÿค›','left-facing $323','leftwards'],['๐Ÿคœ','right-facing $323','rightwards'], 406 ['๐Ÿ‘','clapping $90','applause approval $193 congrats congratulations $127 $104 great homie job $345 prayed well yay'], 407 ['๐Ÿ™Œ','raising $90','$12 $88 hooray praise $124'], 408 ['๐Ÿ‘','$43 $90','hug jazz swerve'], 409 ['๐Ÿคฒ','palms up $99','cupped dua $90 pray prayer wish'], 410 ['๐Ÿค','handshake','agreement deal meeting'], 411 ['๐Ÿ™','folded $90','appreciate ask beg blessed bow cmon five $88 $324 please pray thanks thx'], 412 ['โœ๏ธ','writing $17','write'], 413 ['๐Ÿ’…','nail polish','$340 care cosmetics $179 makeup manicure $125'], 414 ['๐Ÿคณ','selfie','$178 $177'], 415 ['๐Ÿ’ช','flexed biceps','arm beast bench bodybuilder bro curls gains gym jacked muscle press ripped strong weightlift'], 416 ['๐Ÿฆพ','mechanical arm','$64 prosthetic'],['๐Ÿฆฟ','mechanical leg','$64 prosthetic'], 417 ['๐Ÿฆต','leg','bent foot $233 knee limb'],['๐Ÿฆถ','foot','ankle feet $233 stomp'], 418 ['๐Ÿ‘‚๏ธ','ear','$149 $243 $322 hearing listen listening $50'], 419 ['๐Ÿฆป','ear $2 hearing aid','$64 hard'], 420 ['๐Ÿ‘ƒ','$247','$149 noses nosey odor smell smells'], 421 ['๐Ÿง ','brain','intelligent smart'], 422 ['๐Ÿซ€','anatomical $6','beat cardiology heartbeat organ pulse real red'], 423 ['๐Ÿซ','lungs','breath breathe exhalation inhalation organ respiration'], 424 ['๐Ÿฆท','tooth','dentist pearly $128 $34'], 425 ['๐Ÿฆด','bone','bones dog skeleton wishbone'], 426 ['๐Ÿ‘€','$32','$149 $0 googly look looking omg peep see seeing'], 427 ['๐Ÿ‘๏ธ','eye','1 $149 one'],['๐Ÿ‘…','$253','$149 lick slurp'], 428 ['๐Ÿ‘„','$55','beauty $149 $126 $190 lips lipstick'], 429 ['๐Ÿ‘ถ','$116','babies children goo infant newborn pregnant $232'], 430 ['๐Ÿง’','$321','bright-eyed grandchild kid $232 younger'], 431 ['๐Ÿ‘ฆ','boy','bright-eyed $321 grandson kid son $232 younger'], 432 ['๐Ÿ‘ง','girl','bright-eyed $321 daughter granddaughter kid virgo $232 younger $11'], 433 ['๐Ÿง‘','$42','$176'],['๐Ÿ‘จ','man','$176 bro'],['๐Ÿ‘ฉ','$86','$176 $231'], 434 ['๐Ÿง“','older $42','$176 elderly grandparent $320'], 435 ['๐Ÿ‘ด','old man','$176 bald elderly gramps grandfather grandpa $320'], 436 ['๐Ÿ‘ต','old $86','$176 elderly grandma grandmother granny $231 $320'], 437 ['๐Ÿง','deaf $42','$64 ear $88 $322'],['๐Ÿงโ€โ™‚๏ธ','deaf man','$64 ear $88 $322'], 438 ['๐Ÿงโ€โ™€๏ธ','deaf $86','$64 ear $88 $322'], 439 ['๐Ÿง‘โ€โš•๏ธ','health $319','$153 healthcare nurse therapist'], 440 ['๐Ÿง‘โ€๐ŸŽ“','student','graduate'],['๐Ÿง‘โ€๐Ÿซ','teacher','instructor lecturer professor'], 441 ['๐Ÿง‘โ€โš–๏ธ','judge','justice law scales'],['๐Ÿง‘โ€๐ŸŒพ','farmer','gardener rancher'], 442 ['๐Ÿง‘โ€๐Ÿณ','cook','chef'],['๐Ÿง‘โ€๐Ÿ”ง','mechanic','electrician plumber tradesperson'], 443 ['๐Ÿง‘โ€๐Ÿญ','factory $319','assembly industrial'], 444 ['๐Ÿง‘โ€๐Ÿ’ผ','$230 $319','architect business manager white-collar'], 445 ['๐Ÿง‘โ€๐Ÿ”ฌ','scientist','biologist chemist engineer mathematician physicist'], 446 ['๐Ÿง‘โ€๐Ÿ’ป','technologist','coder $76 developer inventor software'], 447 ['๐Ÿง‘โ€๐ŸŽค','singer','actor entertainer $235 rockstar $87'], 448 ['๐Ÿง‘โ€๐ŸŽจ','artist','palette'],['๐Ÿง‘โ€โœˆ๏ธ','pilot','plane'], 449 ['๐Ÿง‘โ€๐Ÿš€','astronaut','rocket $19'],['๐Ÿง‘โ€๐Ÿš’','firefighter','firetruck'], 450 ['๐Ÿ‘ฎ','$318 officer','apprehend arrest citation cop law $341 pulled undercover'], 451 ['๐Ÿ•ต๏ธ','detective','sleuth spy'],['๐Ÿ’‚','guard','buckingham helmet london palace'], 452 ['๐Ÿฅท','ninja','assassin fight fighter hidden $42 $156 skills sly soldier stealth war'], 453 ['๐Ÿ‘ท','construction $319','build fix hardhat hat man $42 rebuild remodel repair'], 454 ['๐Ÿคด','prince','crown $24 $23 $13 king royal royalty $22'], 455 ['๐Ÿ‘ธ','princess','crown $24 $23 $13 queen royal royalty $22'], 456 ['๐Ÿคฐ','pregnant $86',''],['๐Ÿคฑ','breast-feeding','$116 mom mother nursing $86'], 457 ['๐Ÿ‘ผ','$116 angel','church $0 $24 $23 $13 $22'], 458 ['๐ŸŽ…','Santa Claus','$12 $175 claus $24 $13 father holiday merry santa $22 xmas'], 459 ['๐Ÿคถ','Mrs. Claus','$12 $175 claus $24 $13 holiday merry mother mrs santa $22 xmas'], 460 ['๐Ÿง‘โ€๐ŸŽ„','Mx Claus','$12 $175 claus $24 $13 holiday merry mx santa $22 xmas'], 461 ['๐Ÿฆธ','superhero','$104 superpower'], 462 ['๐Ÿฆน','supervillain','bad criminal $329 superpower'], 463 ['๐Ÿง™','mage','$13 $174 play sorcerer sorceress sorcery spell summon witch wizard'], 464 ['๐Ÿงš','$24','$23 $13 myth $42 pixie $22 wings'], 465 ['๐Ÿง›','vampire','blood dracula fangs $148 $185 supernatural $128 undead'], 466 ['๐Ÿงœ','merperson','$102 $23 $317 $98 sea $316 $315'], 467 ['๐Ÿงœโ€โ™‚๏ธ','merman','$102 $23 $317 neptune $98 poseidon sea $316 $315 triton'], 468 ['๐Ÿงœโ€โ™€๏ธ','mermaid','$102 $23 $317 merwoman $98 sea $316 $315'], 469 ['๐Ÿง','elf','elves enchantment $13 $317 $174 magical myth'], 470 ['๐Ÿงž','genie','djinn $13 jinn lamp myth rub wishes'], 471 ['๐ŸงŸ','zombie','apocalypse $123 $148 horror $185 undead walking'], 472 ['๐Ÿ‘ฏ','$141 $2 $229 $243','$173 bff counterpart dancer $85 identical pair $91 $335 soulmate twin twinsies'], 473 ['๐Ÿ‘ฏโ€โ™‚๏ธ','men $2 $229 $243','$173 bff counterpart dancer $85 identical pair $91 $335 $141 soulmate twin twinsies'], 474 ['๐Ÿ‘ฏโ€โ™€๏ธ','women $2 $229 $243','$173 bff counterpart dancer $85 identical pair $91 $335 $141 soulmate twin twinsies'], 475 ['๐Ÿ‡','$314 $313','jockey racehorse riding $41'],['โ›ท๏ธ','skier','$312'], 476 ['๐Ÿ‚๏ธ','snowboarder','ski $41'], 477 ['๐Ÿคผ','$141 wrestling','combat duel grapple $311 tournament wrestle'], 478 ['๐Ÿคผโ€โ™‚๏ธ','men wrestling','combat duel grapple $311 tournament wrestle'], 479 ['๐Ÿคผโ€โ™€๏ธ','women wrestling','combat duel grapple $311 tournament wrestle'], 480 ['๐Ÿง‘โ€๐Ÿคโ€๐Ÿง‘','$141 holding $90','bae $173 bff $75 $36 $107 $310 $309'], 481 ['๐Ÿ‘ญ','women holding $90','bae $173 bff $75 $36 $107 $310 girls sisters $309'], 482 ['๐Ÿ‘ฌ','men holding $90','bae $173 bff boys brothers $75 $36 $107 $310 $309'], 483 ['๐Ÿ’','$126','$65 $115 bae $75 $67 $36 $6 $8 $308 $42 $29 $99 $68'], 484 ['๐Ÿ‘ฉโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ','kiss: $307 man','$65 $115 bae $75 $67 $36 $6 $8 $308 $42 $29 $99 $68'], 485 ['๐Ÿ‘จโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ','kiss: man, man','$65 $115 bae $75 $67 $36 $6 $8 $308 $42 $29 $99 $68'], 486 ['๐Ÿ‘ฉโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ','kiss: $307 $86','$65 $115 bae $75 $67 $36 $6 $8 $308 $42 $29 $99 $68'], 487 ['๐Ÿ’‘','$75 $2 $6','$65 $115 bae $36 $126 $8 $42 $306 $29 $99 you'], 488 ['๐Ÿ‘ฉโ€โค๏ธโ€๐Ÿ‘จ','$75 $2 heart: $307 man','$65 $115 bae $36 $126 $8 $42 $306 $29 $99 you'], 489 ['๐Ÿ‘จโ€โค๏ธโ€๐Ÿ‘จ','$75 $2 heart: man, man','$65 $115 bae $36 $126 $8 $42 $306 $29 $99 you'], 490 ['๐Ÿ‘ฉโ€โค๏ธโ€๐Ÿ‘ฉ','$75 $2 heart: $307 $86','$65 $115 bae $36 $126 $8 $42 $306 $29 $99 you'], 491 ['๐Ÿ—ฃ๏ธ','speaking head','$0 silhouette'], 492 ['๐Ÿ‘ค','bust in silhouette','mysterious shadow'], 493 ['๐Ÿ‘ฅ','busts in silhouette','bff everyone friend $310 $141'], 494 ['๐Ÿซ‚','$141 hugging','comfort embrace farewell friendship goodbye hello $8 thanks'], 495 ['๐Ÿ‘ช๏ธ','family','$321'],['๐Ÿ‘ฃ','footprints','barefoot $9 omw walk'], 496 ['๐Ÿต','$183 $0','$1 banana'],['๐Ÿ’','$183','$1 banana'],['๐Ÿฆ','gorilla','$1'], 497 ['๐Ÿฆง','orangutan','$1 ape $183'],['๐Ÿถ','dog $0','$344 $1 pet puppies puppy'], 498 ['๐Ÿ•๏ธ','dog','$1 $228 dogs pet'],['๐Ÿฆฎ','guide dog','$64 $1 blind'], 499 ['๐Ÿ•โ€๐Ÿฆบ','service dog','$64 $1 assistance'],['๐Ÿฉ','poodle','$1 dog fluffy'], 500 ['๐Ÿบ','wolf','$1 $0'],['๐ŸฆŠ','fox','$1 $0'],['๐Ÿฆ','raccoon','$1 curious sly'], 501 ['๐Ÿฑ','cat $0','$1 kitten kitty pet'],['๐Ÿˆ๏ธ','cat','$1 $228 cats kitten pet'], 502 ['๐Ÿˆโ€โฌ›','$101 cat','$1 feline $148 meow unlucky'], 503 ['๐Ÿฆ','lion','alpha $1 $0 leo mane order rawr roar safari strong $11'], 504 ['๐Ÿฏ','tiger $0','$1 big cat predator'],['๐Ÿ…','tiger','$1 big cat predator zoo'], 505 ['๐Ÿ†','leopard','$1 big cat predator zoo'], 506 ['๐Ÿด','$314 $0','$1 dressage equine $74 horses'], 507 ['๐ŸŽ','$314','$1 equestrian $74 racehorse $313'],['๐Ÿฆ„','unicorn','$0'], 508 ['๐Ÿฆ“','zebra','$1 stripe'],['๐ŸฆŒ','deer','$1'], 509 ['๐Ÿฆฌ','bison','$1 buffalo herd wisent'],['๐Ÿฎ','cow $0','$1 $74 $172 moo'], 510 ['๐Ÿ‚','ox','$1 $228 bull $74 taurus $11'],['๐Ÿƒ','$78 buffalo','$1 zoo'], 511 ['๐Ÿ„','cow','$1 $228 $74 $172 moo'],['๐Ÿท','pig $0','$1 bacon $74 pork'], 512 ['๐Ÿ–','pig','$1 bacon $74 pork sow'],['๐Ÿ—','boar','$1 pig'], 513 ['๐Ÿฝ','pig $247','$1 $0 $74 smell snout'], 514 ['๐Ÿ','ram','$1 aries $328 male sheep $11 zoo'], 515 ['๐Ÿ‘','ewe','$1 baa $74 female fluffy lamb sheep wool'], 516 ['๐Ÿ','goat','$1 capricorn $74 $172 $11'], 517 ['๐Ÿช','camel','$1 $227 dromedary hump one'], 518 ['๐Ÿซ','two-hump camel','$1 bactrian $227'], 519 ['๐Ÿฆ™','llama','alpaca $1 guanaco vicuรฑa wool'],['๐Ÿฆ’','giraffe','$1 spots'], 520 ['๐Ÿ˜','elephant','$1'],['๐Ÿฆฃ','mammoth','$1 extinction $106 tusk wooly'], 521 ['๐Ÿฆ','rhinoceros','$1'],['๐Ÿฆ›','hippopotamus','$1'],['๐Ÿญ','$305 $0','$1'], 522 ['๐Ÿ','$305','$1 $228'],['๐Ÿ€','rat','$1'],['๐Ÿน','hamster','$1 $0 pet'], 523 ['๐Ÿฐ','rabbit $0','$1 $229 pet'],['๐Ÿ‡','rabbit','$1 $229 pet'], 524 ['๐Ÿฟ๏ธ','chipmunk','$1 squirrel'],['๐Ÿฆซ','beaver','$1 dam $128'], 525 ['๐Ÿฆ”','hedgehog','$1 spiny'],['๐Ÿฆ‡','bat','$1 vampire'], 526 ['๐Ÿป','$226','$1 $0 grizzly growl honey'],['๐Ÿปโ€โ„๏ธ','polar $226','$1 arctic $34'], 527 ['๐Ÿจ','koala','$1 australia $226 $100 $0 marsupial under'], 528 ['๐Ÿผ','panda','$1 bamboo $0'],['๐Ÿฆฅ','sloth','lazy slow'], 529 ['๐Ÿฆฆ','otter','$1 fishing playful'],['๐Ÿฆจ','skunk','$1 stink'], 530 ['๐Ÿฆ˜','kangaroo','$1 joey jump marsupial'],['๐Ÿฆก','badger','$1 honey pester'], 531 ['๐Ÿพ','paw prints','feet paws'],['๐Ÿฆƒ','turkey','$27 gobble thanksgiving'], 532 ['๐Ÿ”','chicken','$1 $27 $40'],['๐Ÿ“','rooster','$1 $27 $40'], 533 ['๐Ÿฃ','hatching chick','$1 $116 $27 egg'],['๐Ÿค','$116 chick','$1 $27 $40'], 534 ['๐Ÿฅ','front-facing $116 chick','$1 $27 newborn $40'],['๐Ÿฆ๏ธ','$27','$1 $40'], 535 ['๐Ÿง','penguin','$1 antarctica $27 $40'],['๐Ÿ•Š๏ธ','dove','$27 fly $40 $339'], 536 ['๐Ÿฆ…','eagle','$1 $27 $40'],['๐Ÿฆ†','duck','$1 $27 $40'], 537 ['๐Ÿฆข','swan','$1 $27 cygnet duckling $40 ugly'],['๐Ÿฆ‰','owl','$1 $27 $40 $320'], 538 ['๐Ÿฆค','dodo','$1 $27 extinction $106 $40'], 539 ['๐Ÿชถ','feather','$27 flight $73 plumage'], 540 ['๐Ÿฆฉ','flamingo','$1 $27 flamboyant $40 $171'], 541 ['๐Ÿฆš','peacock','$1 $27 colorful $40 ostentatious peahen pretty proud'], 542 ['๐Ÿฆœ','parrot','$1 $27 $40 pirate talk'],['๐Ÿธ','frog','$1 $0'], 543 ['๐ŸŠ','crocodile','$1 zoo'],['๐Ÿข','turtle','$1 terrapin tortoise'], 544 ['๐ŸฆŽ','lizard','$1 reptile'],['๐Ÿ','snake','$1 bearer ophiuchus serpent $11'], 545 ['๐Ÿฒ','dragon $0','$1 $24 $23 $22'],['๐Ÿ‰','dragon','$1 $24 $23 knights $22'], 546 ['๐Ÿฆ•','sauropod','brachiosaurus brontosaurus dinosaur diplodocus'], 547 ['๐Ÿฆ–','T-Rex','dinosaur rex t t-rex tyrannosaurus'], 548 ['๐Ÿณ','spouting whale','$1 $89 $0 $98'],['๐Ÿ‹','whale','$1 $89 $98'], 549 ['๐Ÿฌ','dolphin','$1 $89 flipper $98'],['๐Ÿฆญ','seal','$1 lion $98'], 550 ['๐ŸŸ๏ธ','$225','$1 dinner fishes fishing pisces $11'], 551 ['๐Ÿ ','$171 $225','$1 fishes'],['๐Ÿก','blowfish','$1'],['๐Ÿฆˆ','shark','$1 $225'], 552 ['๐Ÿ™','octopus','$1 $102 $98'],['๐Ÿš','spiral shell','$1 $89 conch sea'], 553 ['๐Ÿฆ€','crab','cancer $11'],['๐Ÿฆž','lobster','$1 bisque claws seafood'], 554 ['๐Ÿฆ','shrimp','$3 shellfish $105'],['๐Ÿฆ‘','squid','$1 $3 mollusk'], 555 ['๐Ÿฆช','oyster','diving pearl'],['๐ŸŒ','snail','$1 escargot $170 $72 slug'], 556 ['๐Ÿฆ‹','butterfly','$71 pretty'],['๐Ÿ›','bug','$1 $170 $71'], 557 ['๐Ÿœ','ant','$1 $170 $71'],['๐Ÿ','honeybee','$1 bumblebee $71 $72 spring'], 558 ['๐Ÿชฒ','beetle','$1 bug $71'], 559 ['๐Ÿž','$231 beetle','$1 $170 $71 ladybird ladybug $72'], 560 ['๐Ÿฆ—','cricket','$1 bug grasshopper $71 orthoptera'], 561 ['๐Ÿชณ','cockroach','$1 $71 pest'],['๐Ÿ•ท๏ธ','spider','$1 $71'],['๐Ÿ•ธ๏ธ','spider web',''], 562 ['๐Ÿฆ‚','scorpion','scorpius $11'], 563 ['๐ŸฆŸ','mosquito','bite disease fever $71 malaria pest virus'], 564 ['๐Ÿชฐ','fly','$1 disease $71 maggot pest rotting'], 565 ['๐Ÿชฑ','worm','$1 annelid earthworm parasite'], 566 ['๐Ÿฆ ','microbe','amoeba bacteria $140 virus'], 567 ['๐Ÿ’','bouquet','$65 $187 $67 $97 $8 $26 $29'], 568 ['๐ŸŒธ','cherry blossom','$97 $26 spring springtime'],['๐Ÿ’ฎ','$34 $97',''], 569 ['๐Ÿต๏ธ','rosette','$26'],['๐ŸŒน','rose','beauty elegant $97 $8 $26 red $326'], 570 ['๐Ÿฅ€','wilted $97','dying'],['๐ŸŒบ','hibiscus','$97 $26'], 571 ['๐ŸŒป','sunflower','outdoors $26'],['๐ŸŒผ','blossom','buttercup dandelion $97 $26'], 572 ['๐ŸŒท','tulip','blossom $97 growth $26'], 573 ['๐ŸŒฑ','seedling','$26 sapling sprout $232'], 574 ['๐Ÿชด','potted $26','decor grow $224 nurturing'], 575 ['๐ŸŒฒ','evergreen $223','$175 forest pine'], 576 ['๐ŸŒณ','deciduous $223','forest $120 habitat shedding'], 577 ['๐ŸŒด','palm $223','$89 $26 $171'],['๐ŸŒต','cactus','$227 drought $72 $26'], 578 ['๐ŸŒพ','sheaf of $222','ear grain grains $26'],['๐ŸŒฟ','herb','$221 $26'], 579 ['โ˜˜๏ธ','shamrock','irish $26'], 580 ['๐Ÿ€','four $221 clover','4 four-leaf irish lucky $26'], 581 ['๐Ÿ','maple $221','falling'],['๐Ÿ‚','fallen $221','autumn falling'], 582 ['๐Ÿƒ','$221 fluttering in wind','blow'],['๐Ÿ„','mushroom','fungus toadstool'], 583 ['๐Ÿ‡','grapes','dionysus $21'],['๐Ÿˆ','melon','cantaloupe $21'], 584 ['๐Ÿ‰','watermelon','$21'], 585 ['๐ŸŠ','tangerine','c citrus $21 nectarine $145 vitamin'], 586 ['๐Ÿ‹','lemon','citrus $21 sour'],['๐ŸŒ','banana','$21 potassium'], 587 ['๐Ÿ','pineapple','colada $21 pina $171'],['๐Ÿฅญ','mango','$3 $21 $171'], 588 ['๐ŸŽ','red apple','diet $3 $21 health ripe'],['๐Ÿ','$120 apple','$21'], 589 ['๐Ÿ','pear','$21'],['๐Ÿ‘','peach','$21'], 590 ['๐Ÿ’','cherries','berries cherry $21 red'],['๐Ÿ“','strawberry','$21'], 591 ['๐Ÿซ','blueberries','berry bilberry blueberry $3 $21'],['๐Ÿฅ','kiwi $21','$3'], 592 ['๐Ÿ…','tomato','$3 $21 $139'],['๐Ÿซ’','olive','$3'], 593 ['๐Ÿฅฅ','coconut','colada palm piรฑa'],['๐Ÿฅ‘','avocado','$3 $21'], 594 ['๐Ÿ†','eggplant','aubergine $139'],['๐Ÿฅ”','potato','$3 $139'], 595 ['๐Ÿฅ•','carrot','$3 $139'],['๐ŸŒฝ','ear of corn','crops $74 maize maze'], 596 ['๐ŸŒถ๏ธ','hot pepper',''],['๐Ÿซ‘','$220 pepper','capsicum $3 $139'], 597 ['๐Ÿฅ’','cucumber','$3 pickle $139'], 598 ['๐Ÿฅฌ','leafy $120','bok burgers cabbage choy kale lettuce salad'], 599 ['๐Ÿฅฆ','broccoli','cabbage wild'],['๐Ÿง„','garlic','flavoring'], 600 ['๐Ÿง…','onion','flavoring'],['๐Ÿฅœ','peanuts','$3 $139'], 601 ['๐ŸŒฐ','chestnut','almond $26'], 602 ['๐Ÿž','$219','carbs $3 grain loaf $46 toast wheat'], 603 ['๐Ÿฅ','croissant','$219 $84 $218 $3 french roll'], 604 ['๐Ÿฅ–','baguette $219','$3 french'], 605 ['๐Ÿซ“','flatbread','arepa $3 gordita lavash naan pita'], 606 ['๐Ÿฅจ','pretzel','convoluted twisted'],['๐Ÿฅฏ','bagel','bakery $219 $84 schmear'], 607 ['๐Ÿฅž','pancakes','$84 crรชpe $3 hotcake'],['๐Ÿง‡','waffle','$84 indecisive iron'], 608 ['๐Ÿง€','$304 wedge',''],['๐Ÿ–','$303 on bone',''], 609 ['๐Ÿ—','poultry leg','bone chicken drumstick $189 turkey'], 610 ['๐Ÿฅฉ','cut of $303','chop lambchop porkchop red steak'], 611 ['๐Ÿฅ“','bacon','$84 $3 $303'],['๐Ÿ”','hamburger','eat $144 $3 $189'], 612 ['๐ŸŸ','french fries','$144 $3'],['๐Ÿ•','pizza','$304 $3 $189 pepperoni slice'], 613 ['๐ŸŒญ','hot dog','frankfurter hotdog sausage'],['๐Ÿฅช','sandwich','$219'], 614 ['๐ŸŒฎ','taco','mexican'],['๐ŸŒฏ','burrito','mexican wrap'], 615 ['๐Ÿซ”','tamale','$3 mexican pamonha wrapped'], 616 ['๐Ÿฅ™','stuffed flatbread','falafel $3 gyro kebab'], 617 ['๐Ÿง†','falafel','chickpea meatball'],['๐Ÿฅš','egg','$84 $3'], 618 ['๐Ÿณ','$217','$84 easy egg fry frying $341 pan $46 side sunny up'], 619 ['๐Ÿฅ˜','shallow pan of $3','casserole paella'],['๐Ÿฒ','pot of $3','soup stew'], 620 ['๐Ÿซ•','fondue','$304 chocolate $3 melted pot ski'], 621 ['๐Ÿฅฃ','bowl $2 spoon','$84 cereal congee oatmeal porridge'], 622 ['๐Ÿฅ—','$120 salad','$3'],['๐Ÿฟ','popcorn','$169'],['๐Ÿงˆ','butter','dairy'], 623 ['๐Ÿง‚','salt','condiment flavor mad salty shaker taste $330'], 624 ['๐Ÿฅซ','canned $3',''],['๐Ÿฑ','bento box','$3'],['๐Ÿ˜','$222 cracker','$3'], 625 ['๐Ÿ™','$222 $63','$3 $216'],['๐Ÿš','cooked $222','$3'],['๐Ÿ›','curry $222','$3'], 626 ['๐Ÿœ','steaming bowl','chopsticks $3 noodle pho ramen soup'], 627 ['๐Ÿ','spaghetti','$3 meatballs pasta $46'],['๐Ÿ ','roasted $28 potato','$3'], 628 ['๐Ÿข','oden','$3 kebab $46 seafood skewer $215'],['๐Ÿฃ','sushi','$3'], 629 ['๐Ÿค','fried shrimp','prawn tempura'],['๐Ÿฅ','$225 cake $2 swirl','$3 $302 $46'], 630 ['๐Ÿฅฎ','$39 cake','autumn festival yuรจbวng'], 631 ['๐Ÿก','dango','$49 $216 skewer $215 $28'], 632 ['๐ŸฅŸ','dumpling','empanada gyลza jiaozi pierogi potsticker'], 633 ['๐Ÿฅ ','fortune cookie','prophecy'], 634 ['๐Ÿฅก','takeout box','chopsticks delivery $3 oyster pail'], 635 ['๐Ÿฆ','soft ice cream','$49 $3 icecream $46 serve $28'], 636 ['๐Ÿง','shaved ice','$49 $46 $28'],['๐Ÿจ','ice cream','$49 $3 $46 $28'], 637 ['๐Ÿฉ','doughnut','$84 $49 donut $3 $28'],['๐Ÿช','cookie','chip chocolate $49 $28'], 638 ['๐ŸŽ‚','$187 cake','bday $12 $49 $56 $302 $28'], 639 ['๐Ÿฐ','shortcake','$49 $302 slice $28'], 640 ['๐Ÿง','cupcake','bakery $49 sprinkles sugar $28 treat'], 641 ['๐Ÿฅง','pie','apple filling $21 $303 $302 pumpkin slice'], 642 ['๐Ÿซ','chocolate bar','$301 $49 $148 $28 tooth'], 643 ['๐Ÿฌ','$301','cavities $49 $148 $46 $28 tooth wrapper'], 644 ['๐Ÿญ','lollipop','$301 $49 $3 $46 $28'],['๐Ÿฎ','custard','$49 pudding $28'], 645 ['๐Ÿฏ','honey pot','barrel $226 $3 honeypot jar $28'], 646 ['๐Ÿผ','$116 $300','babies birth born $38 infant $172 newborn'], 647 ['๐Ÿฅ›','$168 of $172','$38'], 648 ['โ˜•๏ธ','hot $214','cafe caffeine chai coffee $38 $325 steaming tea'], 649 ['๐Ÿซ–','teapot','brew $38 $3'],['๐Ÿต','teacup without handle','$214 $38 oolong'], 650 ['๐Ÿถ','sake','bar $214 $300 cup $38 $46'],['๐Ÿพ','$300 $2 popping cork','bar $38'], 651 ['๐Ÿท','wine $168','$213 bar $214 $212 $299 $38 $167 $211 $46'], 652 ['๐Ÿธ๏ธ','cocktail $168','$213 bar $212 $299 $38 $167 $211 mad martini men'], 653 ['๐Ÿน','$171 $38','$213 bar $212 $299 cocktail $167 $211 drunk mai $91 tai tropics'], 654 ['๐Ÿบ','beer mug','$213 ale bar $212 $38 $167 $211 octoberfest oktoberfest pint stein summer'], 655 ['๐Ÿป','clinking beer mugs','$213 bar $212 bottoms cheers $167 $211'], 656 ['๐Ÿฅ‚','clinking $334','$186 $38'], 657 ['๐Ÿฅƒ','tumbler $168','liquor scotch shot whiskey whisky'], 658 ['๐Ÿฅค','cup $2 straw','$38 juice malt soda soft $78'], 659 ['๐Ÿง‹','$181 tea','boba $3 $172 pearl'],['๐Ÿงƒ','$214 box','juice straw $28'], 660 ['๐Ÿง‰','mate','$38'],['๐ŸงŠ','ice','$54 cube iceberg'], 661 ['๐Ÿฅข','chopsticks','hashi jeotgarak kuaizi'], 662 ['๐Ÿฝ๏ธ','fork and $298 $2 plate','$217 dinner eat'], 663 ['๐Ÿด','fork and $298','$84 breaky $217 cutlery delicious dinner eat feed $3 $189 lunch $46 yum yummy'], 664 ['๐Ÿฅ„','spoon','eat tableware'],['๐Ÿ”ช','kitchen $298','chef $217 hocho $7 $114'], 665 ['๐Ÿบ','amphora','aquarius $217 $38 jug $7 $114 $11'], 666 ['๐ŸŒ๏ธ','$296 showing Europe-Africa','africa $297 europe europe-africa $210'], 667 ['๐ŸŒŽ๏ธ','$296 showing Americas','americas $297 $210'], 668 ['๐ŸŒ๏ธ','$296 showing Asia-Australia','asia asia-australia australia $297 $210'], 669 ['๐ŸŒ','$296 $2 meridians','$297 internet web $210 worldwide'], 670 ['๐Ÿ—บ๏ธ','$210 map',''],['๐Ÿ—พ','map of Japan','japan'], 671 ['๐Ÿงญ','compass','$96 magnetic navigation orienteering'], 672 ['๐Ÿ”๏ธ','snow-capped $166','$54'],['โ›ฐ๏ธ','$166',''], 673 ['๐ŸŒ‹','volcano','eruption $166 $72'],['๐Ÿ—ป','mount fuji','$166 $72'], 674 ['๐Ÿ•๏ธ','camping',''],['๐Ÿ–๏ธ','$89 $2 $209',''],['๐Ÿœ๏ธ','$227',''], 675 ['๐Ÿ๏ธ','$227 island',''],['๐Ÿž๏ธ','national park',''],['๐ŸŸ๏ธ','stadium',''], 676 ['๐Ÿ›๏ธ','classical $31',''],['๐Ÿ—๏ธ','$31 construction','crane'], 677 ['๐Ÿงฑ','brick','bricks clay mortar wall'], 678 ['๐Ÿชจ','$235','boulder $146 solid stone tough'],['๐Ÿชต','wood','log lumber timber'], 679 ['๐Ÿ›–','hut','$138 $224 roundhouse shelter yurt'],['๐Ÿ˜๏ธ','houses',''], 680 ['๐Ÿš๏ธ','derelict $224','$138'], 681 ['๐Ÿ ๏ธ','$224','$31 country $6 $138 ranch settle simple suburban suburbia where'], 682 ['๐Ÿก','$224 $2 $170','$31 country $6 $138 ranch settle simple suburban suburbia where'], 683 ['๐Ÿข','$230 $31','city cubical job'],['๐Ÿค','post $230','$31 european'], 684 ['๐Ÿฅ','hospital','$31 $153 $152'],['๐Ÿฆ','$137','$31'],['๐Ÿจ','$165','$31'], 685 ['๐Ÿฉ','$8 $165','$31'],['๐Ÿช','convenience store','24 $31 hours'], 686 ['๐Ÿซ','$136','$31'],['๐Ÿฌ','department store','$31'],['๐Ÿญ๏ธ','factory','$31'], 687 ['๐Ÿฐ','castle','$31 european'],['๐Ÿ’’','wedding','chapel hitched nuptials $29'], 688 ['๐Ÿ—ผ','Tokyo tower','tokyo'], 689 ['๐Ÿ—ฝ','Statue of Liberty','liberty new ny nyc statue york'], 690 ['โ›ช๏ธ','church','bless chapel christian $164 $37'], 691 ['๐Ÿ•Œ','mosque','islam masjid muslim $37'],['๐Ÿ›•','hindu temple',''], 692 ['๐Ÿ•','synagogue','jew $295 $294 $37 temple'],['โ›ฉ๏ธ','shinto shrine','$37'], 693 ['๐Ÿ•‹','kaaba','hajj islam muslim $37 umrah'],['โ›ฒ๏ธ','fountain',''], 694 ['โ›บ๏ธ','tent','camping'],['๐ŸŒ','foggy',''],['๐ŸŒƒ','$92 $2 stars',''], 695 ['๐Ÿ™๏ธ','cityscape',''],['๐ŸŒ„','sunrise $341 mountains','$325'], 696 ['๐ŸŒ…','sunrise','$325 $72'], 697 ['๐ŸŒ†','cityscape at dusk','$31 evening landscape sun sunset'], 698 ['๐ŸŒ‡','sunset','$31 dusk'],['๐ŸŒ‰','bridge at $92',''], 699 ['โ™จ๏ธ','hot springs','hotsprings steaming'],['๐ŸŽ ','carousel $314','$95'], 700 ['๐ŸŽก','ferris wheel','amusement park theme'], 701 ['๐ŸŽข','roller coaster','amusement park theme'], 702 ['๐Ÿ’ˆ','barber pole','cut fresh haircut shave'],['๐ŸŽช','circus tent',''], 703 ['๐Ÿš‚','locomotive','caboose engine $83 steam $135 trains $62'], 704 ['๐Ÿšƒ','$83 car','$208 $135 $293 $62 $292'], 705 ['๐Ÿš„','high-speed $135','$83 shinkansen'], 706 ['๐Ÿš…','bullet $135','high-speed $247 $83 shinkansen speed $62'], 707 ['๐Ÿš†','$135','arrived choo $83'],['๐Ÿš‡๏ธ','metro','subway $62'], 708 ['๐Ÿšˆ','$73 rail','arrived monorail $83'],['๐Ÿš‰','station','$83 $135'], 709 ['๐ŸšŠ','$293','$292'],['๐Ÿš','monorail','$61'],['๐Ÿšž','$166 $83','car trip'], 710 ['๐Ÿš‹','$293 car','bus trolley $292'],['๐ŸšŒ','bus','$136 $61'], 711 ['๐Ÿš๏ธ','$234 bus','cars'],['๐ŸšŽ','$292','$293'],['๐Ÿš','minibus','$207 van $61'], 712 ['๐Ÿš‘๏ธ','ambulance','emergency $61'],['๐Ÿš’','fire engine','$291'], 713 ['๐Ÿš“','$318 car','5โ€“0 cops patrol'],['๐Ÿš”๏ธ','$234 $318 car',''], 714 ['๐Ÿš•','taxi','cab cabbie car $207 $61 $241'], 715 ['๐Ÿš–','$234 taxi','cab cabbie cars drove hail $241'], 716 ['๐Ÿš—','automobile','car driving $61'], 717 ['๐Ÿš˜๏ธ','$234 automobile','car cars drove $61'], 718 ['๐Ÿš™','$41 utility $61','car $207 recreational sportutility'], 719 ['๐Ÿ›ป','pickup $291','automobile car flatbed pick-up transportation'], 720 ['๐Ÿšš','delivery $291','car $207 $61'], 721 ['๐Ÿš›','articulated lorry','car $207 move semi $291 $61'],['๐Ÿšœ','tractor','$61'], 722 ['๐ŸŽ๏ธ','$313 car','zoom'],['๐Ÿ๏ธ','motorcycle','$313'],['๐Ÿ›ต','motor scooter',''], 723 ['๐Ÿฆฝ','manual wheelchair','$64'],['๐Ÿฆผ','motorized wheelchair','$64'], 724 ['๐Ÿ›บ','auto rickshaw','tuk'], 725 ['๐Ÿšฒ๏ธ','bicycle','bike class cycling cyclist gang ride spin spinning'], 726 ['๐Ÿ›ด','$233 scooter',''],['๐Ÿ›น','skateboard','skater wheels'], 727 ['๐Ÿ›ผ','roller skate','blades skates $41'],['๐Ÿš','bus $143','busstop'], 728 ['๐Ÿ›ฃ๏ธ','motorway','highway road'],['๐Ÿ›ค๏ธ','$83 track','$135'],['๐Ÿ›ข๏ธ','oil drum',''], 729 ['โ›ฝ๏ธ','fuel pump','diesel fuelpump gas gasoline station'], 730 ['๐Ÿšจ','$318 car $73','alarm alert beacon emergency revolving $316'], 731 ['๐Ÿšฅ','horizontal $290 $73','intersection signal $143 stoplight'], 732 ['๐Ÿšฆ','vertical $290 $73','drove intersection signal $143 stoplight'], 733 ['๐Ÿ›‘','$143 $51','octagonal'],['๐Ÿšง','construction','barrier'], 734 ['โš“๏ธ','anchor','$289 $7'],['โ›ต๏ธ','sailboat','resort sailing sea yacht'], 735 ['๐Ÿ›ถ','canoe','$288'], 736 ['๐Ÿšค','speedboat','billionaire lake luxury millionaire summer $62'], 737 ['๐Ÿ›ณ๏ธ','passenger $289',''],['โ›ด๏ธ','ferry','$288 passenger'], 738 ['๐Ÿ›ฅ๏ธ','motor $288','motorboat'],['๐Ÿšข','$289','$288 passenger $62'], 739 ['โœˆ๏ธ','$286','$287 fly flying jet $62'],['๐Ÿ›ฉ๏ธ','$105 $286','$287'], 740 ['๐Ÿ›ซ','$286 departure','$287 check-in departures'], 741 ['๐Ÿ›ฌ','$286 arrival','$287 arrivals arriving landing'], 742 ['๐Ÿช‚','parachute','hang-glide parasail skydive'],['๐Ÿ’บ','seat','chair'], 743 ['๐Ÿš','helicopter','roflcopter $62 $61'],['๐ŸšŸ','suspension $83',''], 744 ['๐Ÿš ','$166 cableway','gondola lift ski'], 745 ['๐Ÿšก','aerial tramway','cable car gondola ropeway'],['๐Ÿ›ฐ๏ธ','satellite','$19'], 746 ['๐Ÿš€','rocket','launch rockets $19 $62'], 747 ['๐Ÿ›ธ','flying saucer','aliens extra terrestrial ufo'], 748 ['๐Ÿ›Ž๏ธ','bellhop $220','$165'],['๐Ÿงณ','luggage','bag packing roller suitcase $62'], 749 ['โŒ›๏ธ','hourglass $179','sand $10 timer'], 750 ['โณ๏ธ','hourglass not $179','flowing hours sand timer waiting $252'], 751 ['โŒš๏ธ','watch','$30 $10'],['โฐ๏ธ','alarm $30','hours hrs late $10 waiting'], 752 ['โฑ๏ธ','stopwatch','$30 $10'],['โฒ๏ธ','timer $30',''], 753 ['๐Ÿ•ฐ๏ธ','mantelpiece $30','$10'],['๐Ÿ•›๏ธ','twelve $60','12 12:00 $10'], 754 ['๐Ÿ•ง๏ธ','twelve-thirty','12 12:30 30 $30 $10'],['๐Ÿ•๏ธ','one $60','1 1:00 $10'], 755 ['๐Ÿ•œ๏ธ','one-thirty','1 1:30 30 $30 $10'],['๐Ÿ•‘๏ธ','two $60','2 2:00 $10'], 756 ['๐Ÿ•๏ธ','two-thirty','2 2:30 30 $30 $10'],['๐Ÿ•’๏ธ','three $60','3 3:00 $10'], 757 ['๐Ÿ•ž๏ธ','three-thirty','3 30 3:30 $30 $10'],['๐Ÿ•“๏ธ','four $60','4 4:00 $10'], 758 ['๐Ÿ•Ÿ๏ธ','four-thirty','30 4 4:30 $30 $10'],['๐Ÿ•”๏ธ','five $60','5 5:00 $10'], 759 ['๐Ÿ• ๏ธ','five-thirty','30 5 5:30 $30 $10'],['๐Ÿ••๏ธ','six $60','6 6:00 $10'], 760 ['๐Ÿ•ก๏ธ','six-thirty','30 6 6:30 $30'],['๐Ÿ•–๏ธ','seven $60','0 7 7:00'], 761 ['๐Ÿ•ข๏ธ','seven-thirty','30 7 7:30 $30'],['๐Ÿ•—๏ธ','eight $60','8 8:00 $10'], 762 ['๐Ÿ•ฃ๏ธ','eight-thirty','30 8 8:30 $30 $10'],['๐Ÿ•˜๏ธ','nine $60','9 9:00 $10'], 763 ['๐Ÿ•ค๏ธ','nine-thirty','30 9 9:30 $30 $10'],['๐Ÿ•™๏ธ','ten $60','0 10 10:00'], 764 ['๐Ÿ•ฅ๏ธ','ten-thirty','10 10:30 30 $30 $10'],['๐Ÿ•š๏ธ','eleven $60','11 11:00 $10'], 765 ['๐Ÿ•ฆ๏ธ','eleven-thirty','11 11:30 30 $30 $10'],['๐ŸŒ‘','new $39','dark $19'], 766 ['๐ŸŒ’','waxing $218 $39','dreams $19'],['๐ŸŒ“','first $285 $39','$19'], 767 ['๐ŸŒ”','waxing gibbous $39','$19'],['๐ŸŒ•๏ธ','$342 $39','$19'], 768 ['๐ŸŒ–','waning gibbous $39','$19'],['๐ŸŒ—','last $285 $39','$19'], 769 ['๐ŸŒ˜','waning $218 $39','$19'],['๐ŸŒ™','$218 $39','ramadan $19'], 770 ['๐ŸŒš','new $39 $0','$19'],['๐ŸŒ›','first $285 $39 $0','$19'], 771 ['๐ŸŒœ๏ธ','last $285 $39 $0','dreams'],['๐ŸŒก๏ธ','thermometer','$25'], 772 ['โ˜€๏ธ','sun','$246 rays $19 sunny $25'],['๐ŸŒ','$342 $39 $0','$246'], 773 ['๐ŸŒž','sun $2 $0','$89 $246 day heat shine sunny sunshine $25'], 774 ['๐Ÿช','ringed planet','saturn saturnine'], 775 ['โญ๏ธ','$87','astronomy $284 stars $34'], 776 ['๐ŸŒŸ','glowing $87','glittery $92 shining sparkle'], 777 ['๐ŸŒ ','shooting $87','falling $92 $19'],['๐ŸŒŒ','milky way','$19'], 778 ['โ˜๏ธ','$47','$25'],['โ›…๏ธ','sun $283 $47','cloudy $25'], 779 ['โ›ˆ๏ธ','$47 $2 lightning and $134','thunder thunderstorm'], 780 ['๐ŸŒค๏ธ','sun $283 $105 $47','$25'],['๐ŸŒฅ๏ธ','sun $283 $106 $47','$25'], 781 ['๐ŸŒฆ๏ธ','sun $283 $134 $47','$25'],['๐ŸŒง๏ธ','$47 $2 $134','$25'], 782 ['๐ŸŒจ๏ธ','$47 $2 $312','$54 $25'],['๐ŸŒฉ๏ธ','$47 $2 lightning','$25'], 783 ['๐ŸŒช๏ธ','tornado','$47 $25 whirlwind'],['๐ŸŒซ๏ธ','fog','$47 $25'], 784 ['๐ŸŒฌ๏ธ','wind $0','blow $47'], 785 ['๐ŸŒ€','cyclone','$337 hurricane twister typhoon $25'], 786 ['๐ŸŒˆ','rainbow','gay genderqueer glbt glbtq lesbian lgbt lgbtq lgbtqia $72 pride queer trans transgender $25'], 787 ['๐ŸŒ‚','$82 $209','$9 $134'],['โ˜‚๏ธ','$209','$9 $134'], 788 ['โ˜”๏ธ','$209 $2 $134 drops','$9 $25'],['โ›ฑ๏ธ','$209 on ground','$134 sun'], 789 ['โšก๏ธ','$324 voltage','danger $208 electricity lightning $72 thunder thunderbolt zap'], 790 ['โ„๏ธ','snowflake','$54 $25'],['โ˜ƒ๏ธ','snowman','$54'],['โ˜„๏ธ','comet','$19'], 791 ['๐Ÿ”ฅ','fire','af burn flame hot lit litaf $7'], 792 ['๐Ÿ’ง','droplet','$54 $53 $72 sad $192 $191 $78 $25'], 793 ['๐ŸŒŠ','$78 wave','$72 $98 surf surfer surfing'], 794 ['๐ŸŽƒ','jack-o-lantern','$12 $148 pumpkin'],['๐ŸŽ„','Christmas $223','$12 $175'], 795 ['๐ŸŽ†','fireworks','$239 $12 $95 $252'],['๐ŸŽ‡','sparkler','$239 $12 fireworks'], 796 ['๐Ÿงจ','firecracker','dynamite explosive fireworks $73 pop popping spark'], 797 ['โœจ๏ธ','sparkles','* $174 $87'],['๐ŸŽˆ','$180','$187 $186 $12'], 798 ['๐ŸŽ‰','$91 popper','$193 $187 $186 $12 $127 hooray tada woohoo'], 799 ['๐ŸŽŠ','confetti $63','$186 $12 $91 woohoo'], 800 ['๐ŸŽ‹','tanabata $223','banner $12 $216'], 801 ['๐ŸŽ','pine decoration','bamboo $12 $216 $26'],['๐ŸŽ','carp streamer','$12'], 802 ['๐ŸŽ','wind chime','$220 $12'],['๐ŸŽ‘','$39 viewing ceremony','$12'], 803 ['๐Ÿงง','red $282','gift $104 hรณngbฤo lai luck $45 see'],['๐ŸŽ€','ribbon','$12'], 804 ['๐ŸŽ','wrapped gift','$187 bow box $12 $175 present $251'], 805 ['๐ŸŽ—๏ธ','reminder ribbon','$12'],['๐ŸŽŸ๏ธ','admission tickets',''], 806 ['๐ŸŽซ','ticket','admission stub'],['๐ŸŽ–๏ธ','military $206','award $12'], 807 ['๐Ÿ†๏ธ','trophy','champion champs prize slay $41 victory win winning'], 808 ['๐Ÿ…','sports $206','award $281 winner'],['๐Ÿฅ‡','1st $280 $206','first $281'], 809 ['๐Ÿฅˆ','2nd $280 $206','second silver'],['๐Ÿฅ‰','3rd $280 $206','bronze third'], 810 ['โšฝ๏ธ','soccer $63','football futbol $41'],['โšพ๏ธ','baseball','$41'], 811 ['๐ŸฅŽ','softball','glove sports underarm'],['๐Ÿ€','basketball','hoop $41'], 812 ['๐Ÿ','volleyball','$16'],['๐Ÿˆ','american football','bowl $41 super'], 813 ['๐Ÿ‰','rugby football','$41'],['๐ŸŽพ','tennis','$63 racquet $41'], 814 ['๐Ÿฅ','flying disc','ultimate'],['๐ŸŽณ','bowling','$63 $16 $41 strike'], 815 ['๐Ÿ','cricket $16','$63 bat'],['๐Ÿ‘','field hockey','$63 $16 $215'], 816 ['๐Ÿ’','ice hockey','$16 puck $215'],['๐Ÿฅ','lacrosse','$63 goal sports $215'], 817 ['๐Ÿ“','ping pong','$63 bat $16 paddle pingpong table tennis'], 818 ['๐Ÿธ','badminton','birdie $16 racquet shuttlecock'],['๐ŸฅŠ','boxing glove',''], 819 ['๐Ÿฅ‹','martial arts uniform','judo karate taekwondo'],['๐Ÿฅ…','goal net',''], 820 ['โ›ณ๏ธ','$205 in hole','golf $41'],['โ›ธ๏ธ','ice skate','skating'], 821 ['๐ŸŽฃ','fishing pole','$95 $41'],['๐Ÿคฟ','diving $248','scuba snorkeling'], 822 ['๐ŸŽฝ','running shirt','athletics sash'],['๐ŸŽฟ','skis','$312 $41'], 823 ['๐Ÿ›ท','sled','luge sledge sleigh $312 toboggan'], 824 ['๐ŸฅŒ','curling stone','$16 $235'], 825 ['๐ŸŽฏ','bullseye','dart direct $95 $16 hit target'],['๐Ÿช€','yo-yo','fluctuate toy'], 826 ['๐Ÿช','kite','fly soar'],['๐Ÿ”ซ','$78 pistol','gun handgun revolver $7 $114'], 827 ['๐ŸŽฑ','pool 8 $63','8ball billiard eight $16'], 828 ['๐Ÿ”ฎ','crystal $63','$24 $23 $13 fortune future $174 $22 $7'], 829 ['๐Ÿช„','$174 wand','magician witch wizard'],['๐ŸŽฎ๏ธ','$113 $16','controller $95'], 830 ['๐Ÿ•น๏ธ','joystick','$16 $113 videogame'], 831 ['๐ŸŽฐ','slot machine','casino gamble gambling $16 slots'], 832 ['๐ŸŽฒ','$16 die','dice $95'],['๐Ÿงฉ','puzzle piece','clue interlocking jigsaw'], 833 ['๐Ÿงธ','teddy $226','plaything plush stuffed toy'], 834 ['๐Ÿช…','piรฑata','$301 $186 $12 cinco de festive mayo $91 pinada pinata'], 835 ['๐Ÿช†','nesting dolls','babooshka baboushka babushka matryoshka russia'], 836 ['โ™ ๏ธ','spade $133','$70 $16'],['โ™ฅ๏ธ','$6 $133','$70 $35 $16 $254'], 837 ['โ™ฆ๏ธ','$112 $133','$70 $16'],['โ™ฃ๏ธ','$299 $133','$70 clubs $16'], 838 ['โ™Ÿ๏ธ','chess pawn','dupe expendable'],['๐Ÿƒ','joker','$70 $16 wildcard'], 839 ['๐Ÿ€„๏ธ','mahjong red dragon','$16'],['๐ŸŽด','$97 playing cards','$16 $216'], 840 ['๐ŸŽญ๏ธ','performing arts','actor actress $95 $248 theater theatre thespian'], 841 ['๐Ÿ–ผ๏ธ','framed picture','art museum painting'], 842 ['๐ŸŽจ','artist palette','artsy arty colorful creative $95 museum painter painting'], 843 ['๐Ÿงต','thread','needle sewing spool string'], 844 ['๐Ÿชก','sewing needle','embroidery stitches sutures tailoring thread'], 845 ['๐Ÿงถ','yarn','$63 crochet knit'], 846 ['๐Ÿชข','knot','cord rope tangled tie twine twist'], 847 ['๐Ÿ‘“๏ธ','$334','$9 eye eyeglasses eyewear'], 848 ['๐Ÿ•ถ๏ธ','sunglasses','dark eye eyewear'], 849 ['๐Ÿฅฝ','goggles','dive eye protection scuba swimming welding'], 850 ['๐Ÿฅผ','lab coat','$44 $153 dr experiment jacket scientist $34'], 851 ['๐Ÿฆบ','safety vest','emergency'],['๐Ÿ‘”','necktie','$9 employed serious shirt'], 852 ['๐Ÿ‘•','t-shirt','$79 casual $44 $9 collar $279 $59 tshirt weekend'], 853 ['๐Ÿ‘–','jeans','$79 casual $44 $9 denim $279 pants $59 trousers weekend'], 854 ['๐Ÿงฃ','scarf','bundle $54 neck up'],['๐Ÿงค','gloves','$17'], 855 ['๐Ÿงฅ','coat','brr bundle $54 jacket up'],['๐Ÿงฆ','socks','stocking'], 856 ['๐Ÿ‘—','$111','$44 $9 $279 $333 $59'],['๐Ÿ‘˜','kimono','$9 comfortable'], 857 ['๐Ÿฅป','sari','$9 $111'],['๐Ÿฉฑ','one-piece swimsuit','$204'], 858 ['๐Ÿฉฒ','briefs','$204 one-piece $133 swimsuit underwear'], 859 ['๐Ÿฉณ','shorts','$204 pants $133 swimsuit underwear'], 860 ['๐Ÿ‘™','bikini','$204 $89 $9 pool $133 swim'], 861 ['๐Ÿ‘š','$278 $44','blouse $9 collar $111 $279 $231 shirt $59'], 862 ['๐Ÿ‘›','purse','$44 $9 coin $111 $333 handbag $59'], 863 ['๐Ÿ‘œ','handbag','$44 $9 $111 $231 purse $59'], 864 ['๐Ÿ‘','clutch bag','$44 $9 $111 handbag pouch purse'],['๐Ÿ›๏ธ','$59 bags','$165'], 865 ['๐ŸŽ’','backpack','backpacking bag bookbag $94 rucksack satchel $136'], 866 ['๐Ÿฉด','thong sandal','$89 flip flop sandals $110 thongs zลri'], 867 ['๐Ÿ‘ž','manโ€™s $110','$240 $44 $9 feet foot $233 $203 $59'], 868 ['๐Ÿ‘Ÿ','running $110','athletic $44 $9 $144 $233 $203 $59 sneaker tennis'], 869 ['๐Ÿฅพ','hiking boot','backpacking $240 camping outdoors $110'], 870 ['๐Ÿฅฟ','flat $110','ballet comfy flats slip-on slipper'], 871 ['๐Ÿ‘ ','high-heeled $110','$44 $9 $111 fashion heels $203 $59 stiletto $86'], 872 ['๐Ÿ‘ก','$278 sandal','$9 $110'],['๐Ÿฉฐ','ballet $203','dance'], 873 ['๐Ÿ‘ข','$278 boot','$44 $9 $111 $110 $203 $59'], 874 ['๐Ÿ‘‘','crown','$9 family king medieval queen royal royalty win'], 875 ['๐Ÿ‘’','$278 hat','$44 $9 $170 hats $91'], 876 ['๐ŸŽฉ','top hat','$44 $9 $333 formal $174 tophat'], 877 ['๐ŸŽ“๏ธ','graduation cap','$12 $9 $94 hat scholar'], 878 ['๐Ÿงข','billed cap','baseball bent dad hat'], 879 ['๐Ÿช–','military helmet','army soldier war warrior'], 880 ['โ›‘๏ธ','rescue workerโ€™s helmet','aid $164 $0 hat'], 881 ['๐Ÿ“ฟ','prayer beads','$9 necklace $37'],['๐Ÿ’„','lipstick','cosmetics $67 makeup'], 882 ['๐Ÿ’','$311','$112 engaged engagement married $29 shiny sparkling wedding'], 883 ['๐Ÿ’Ž','gem stone','$112 engagement jewel $45 $29 wedding'], 884 ['๐Ÿ”‡','muted $277','$188 silent $50'],['๐Ÿ”ˆ๏ธ','$277 low volume','soft $50'], 885 ['๐Ÿ”‰','$277 $284 volume','$50'],['๐Ÿ”Š','$277 $324 volume','loud $58 $50'], 886 ['๐Ÿ“ข','loudspeaker','address $48 public $50'],['๐Ÿ“ฃ','megaphone','cheering $50'], 887 ['๐Ÿ“ฏ','postal horn',''],['๐Ÿ””','$220','break church $50'], 888 ['๐Ÿ”•','$220 $2 slash','$66 mute no not $52 $188 silent $50'], 889 ['๐ŸŽผ','$276 score','note'],['๐ŸŽต','$276 note','$50'],['๐ŸŽถ','$276 notes','$50'], 890 ['๐ŸŽ™๏ธ','studio microphone','$58'],['๐ŸŽš๏ธ','level slider','$58'], 891 ['๐ŸŽ›๏ธ','control knobs','$58'],['๐ŸŽค','microphone','karaoke $58 sing $50'], 892 ['๐ŸŽง๏ธ','headphone','earbud $50'],['๐Ÿ“ป๏ธ','radio','$95 tbt $113'], 893 ['๐ŸŽท','saxophone','$132 $58'], 894 ['๐Ÿช—','accordion','box concertina $132 $58 squeeze squeezebox'], 895 ['๐ŸŽธ','guitar','$132 $58 strat'],['๐ŸŽน','$276 keyboard','$132 piano'], 896 ['๐ŸŽบ','trumpet','$132 $58'],['๐ŸŽป','violin','$132 $58'], 897 ['๐Ÿช•','banjo','$58 stringed'],['๐Ÿฅ','drum','drumsticks $58'], 898 ['๐Ÿช˜','long drum','beat conga $132 rhythm'],['๐Ÿ“ฑ','$162 $177','$163 $48 $109'], 899 ['๐Ÿ“ฒ','$162 $177 $2 $5','build call $163 $48 receive $109'],['โ˜Ž๏ธ','$109',''], 900 ['๐Ÿ“ž','$109 receiver','$48 voip'],['๐Ÿ“Ÿ๏ธ','pager','$48'],['๐Ÿ“ ','fax machine','$48'], 901 ['๐Ÿ”‹','battery',''],['๐Ÿ”Œ','$208 plug','electricity'], 902 ['๐Ÿ’ป๏ธ','laptop','$76 $230 pc personal'],['๐Ÿ–ฅ๏ธ','desktop $76','monitor'], 903 ['๐Ÿ–จ๏ธ','printer','$76'],['โŒจ๏ธ','keyboard','$76'],['๐Ÿ–ฑ๏ธ','$76 $305',''], 904 ['๐Ÿ–ฒ๏ธ','trackball','$76'],['๐Ÿ’ฝ','$76 $275','minidisk optical'], 905 ['๐Ÿ’พ','floppy $275','$76'],['๐Ÿ’ฟ๏ธ','optical $275','blu-ray cd $76 dvd'], 906 ['๐Ÿ“€','dvd','blu-ray cd $76 $275 optical'], 907 ['๐Ÿงฎ','abacus','calculation calculator'], 908 ['๐ŸŽฅ','$169 $178','bollywood $274 $273 hollywood record'], 909 ['๐ŸŽž๏ธ','$273 frames','$274 $169'],['๐Ÿ“ฝ๏ธ','$273 projector','$274 $169 $113'], 910 ['๐ŸŽฌ๏ธ','clapper board','action $169'],['๐Ÿ“บ๏ธ','television','tv $113'], 911 ['๐Ÿ“ท๏ธ','$178','photo selfie snap tbt trip $113'],['๐Ÿ“ธ','$178 $2 flash','$113'], 912 ['๐Ÿ“น๏ธ','$113 $178','camcorder tbt'], 913 ['๐Ÿ“ผ','videocassette','old $136 tape vcr vhs'], 914 ['๐Ÿ”๏ธ','magnifying $168 tilted $118','lab left-pointing $140 search $7'], 915 ['๐Ÿ”Ž','magnifying $168 tilted $77','contact lab right-pointing $140 search $7'], 916 ['๐Ÿ•ฏ๏ธ','candle','$73'],['๐Ÿ’ก','$73 bulb','$53 $208 idea'], 917 ['๐Ÿ”ฆ','flashlight','$208 $7 torch'],['๐Ÿฎ','red $131 lantern','bar $73 $46'], 918 ['๐Ÿช”','diya lamp','$73 oil'], 919 ['๐Ÿ“”','notebook $2 decorative cover','decorated $94 $136 writing'], 920 ['๐Ÿ“•','$82 $202','$94'],['๐Ÿ“–','$43 $202','$94 $13 knowledge $201 novels $200'], 921 ['๐Ÿ“—','$120 $202','$94 $13 $201 $200'],['๐Ÿ“˜','$79 $202','$94 $13 $201 $200'], 922 ['๐Ÿ“™','$145 $202','$94 $13 $201 $200'], 923 ['๐Ÿ“š๏ธ','books','$94 $13 knowledge $201 novels $200 $136 study'], 924 ['๐Ÿ““','notebook',''],['๐Ÿ“’','ledger','notebook'], 925 ['๐Ÿ“ƒ','page $2 curl','document $131'],['๐Ÿ“œ','scroll','$131'], 926 ['๐Ÿ“„','page facing up','document $131'],['๐Ÿ“ฐ','newspaper','$48'], 927 ['๐Ÿ—ž๏ธ','rolled-up newspaper',''],['๐Ÿ“‘','bookmark tabs','marker'], 928 ['๐Ÿ”–','bookmark',''],['๐Ÿท๏ธ','label','tag'], 929 ['๐Ÿ’ฐ๏ธ','$45 bag','$137 bet $272 $161 cost $199 $281 million moneybag paid paying pot $332 win'], 930 ['๐Ÿช™','coin','$199 euro $281 metal $45 $332 silver treasure'], 931 ['๐Ÿ’ด','yen $197','$198 $130 $45'],['๐Ÿ’ต','$199 $197','$198 $130 $45'], 932 ['๐Ÿ’ถ','euro $197','100 $198 $130 $45 $332'], 933 ['๐Ÿ’ท','pound $197','$198 $272 $161 $130 $45 pounds'], 934 ['๐Ÿ’ธ','$45 $2 wings','$137 $197 $198 $272 $161 $199 fly million note pay'], 935 ['๐Ÿ’ณ๏ธ','credit $70','$137 $161 charge $45 pay'], 936 ['๐Ÿงพ','receipt','accounting bookkeeping evidence invoice proof'], 937 ['๐Ÿ’น','$270 increasing $2 yen','$137 $130 $271 growth market $45 rise trend upward'], 938 ['โœ‰๏ธ','$282','$269 $160 $147'],['๐Ÿ“ง','$269','$160 $147'], 939 ['๐Ÿ“จ','incoming $282','delivering $269 $160 $147 $182 receive sent'], 940 ['๐Ÿ“ฉ','$282 $2 $5','$48 $100 $269 $160 $147 $182 outgoing send sent'], 941 ['๐Ÿ“ค๏ธ','outbox tray','$160 $147 $182 sent'], 942 ['๐Ÿ“ฅ๏ธ','inbox tray','$160 $147 $182 receive zero'], 943 ['๐Ÿ“ฆ๏ธ','package','box $48 delivery parcel shipping'], 944 ['๐Ÿ“ซ๏ธ','$82 $195 $2 $124 $205','$48 $196'], 945 ['๐Ÿ“ช๏ธ','$82 $195 $2 lowered $205','$196'],['๐Ÿ“ฌ๏ธ','$43 $195 $2 $124 $205','$196'], 946 ['๐Ÿ“ญ๏ธ','$43 $195 $2 lowered $205','$196'],['๐Ÿ“ฎ','$196','$182 $195'], 947 ['๐Ÿ—ณ๏ธ','ballot box $2 ballot',''],['โœ๏ธ','pencil',''],['โœ’๏ธ','$101 nib','pen'], 948 ['๐Ÿ–‹๏ธ','fountain pen',''],['๐Ÿ–Š๏ธ','pen','ballpoint'], 949 ['๐Ÿ–Œ๏ธ','paintbrush','painting'],['๐Ÿ–๏ธ','crayon',''], 950 ['๐Ÿ“','memo','$48 media notes pencil'],['๐Ÿ’ผ','briefcase','$230'], 951 ['๐Ÿ“','$268 folder',''],['๐Ÿ“‚','$43 $268 folder',''],['๐Ÿ—‚๏ธ','$70 $142 dividers',''], 952 ['๐Ÿ“…','calendar','$67'],['๐Ÿ“†','tear-off calendar',''],['๐Ÿ—’๏ธ','spiral notepad',''], 953 ['๐Ÿ—“๏ธ','spiral calendar','pad'],['๐Ÿ“‡','$70 $142','old rolodex $136'], 954 ['๐Ÿ“ˆ','$270 increasing','data $271 growth $77 trend up upward'], 955 ['๐Ÿ“‰','$270 decreasing','data $100 downward $271 negative trend'], 956 ['๐Ÿ“Š','bar $270','data $271'],['๐Ÿ“‹๏ธ','clipboard','do list notes'], 957 ['๐Ÿ“Œ','pushpin','collage'],['๐Ÿ“','round pushpin','location map'], 958 ['๐Ÿ“Ž','paperclip',''],['๐Ÿ–‡๏ธ','linked paperclips',''], 959 ['๐Ÿ“','straight ruler','angle edge $267 straightedge'], 960 ['๐Ÿ“','triangular ruler','angle $267 set slide $108'], 961 ['โœ‚๏ธ','scissors','cut cutting $131 $7'],['๐Ÿ—ƒ๏ธ','$70 $268 box',''], 962 ['๐Ÿ—„๏ธ','$268 cabinet','filing $131'],['๐Ÿ—‘๏ธ','wastebasket','can garbage trash'], 963 ['๐Ÿ”’๏ธ','locked','$82 private'],['๐Ÿ”“๏ธ','unlocked','cracked $43'], 964 ['๐Ÿ”','locked $2 pen','ink nib privacy'],['๐Ÿ”','locked $2 key','bike $82 secure'], 965 ['๐Ÿ”‘','key','keys lock major password unlock'],['๐Ÿ—๏ธ','old key','clue lock'], 966 ['๐Ÿ”จ','$266','$138 improvement repairs $7'], 967 ['๐Ÿช“','axe','chop hatchet split wood'],['โ›๏ธ','pick','$266 mining $7'], 968 ['โš’๏ธ','$266 and pick','$7'],['๐Ÿ› ๏ธ','$266 and wrench','spanner $7'], 969 ['๐Ÿ—ก๏ธ','dagger','$298 $114'],['โš”๏ธ','crossed swords','$114'], 970 ['๐Ÿ’ฃ๏ธ','bomb','$239 $53 dangerous explosion hot'], 971 ['๐Ÿชƒ','boomerang','rebound repercussion $114'], 972 ['๐Ÿน','bow and $5','archer archery sagittarius $7 $114 $11'], 973 ['๐Ÿ›ก๏ธ','shield','$114'],['๐Ÿชš','carpentry saw','carpenter cut lumber $7 trim'], 974 ['๐Ÿ”ง','wrench','$138 improvement spanner $7'], 975 ['๐Ÿช›','screwdriver','flathead handy $7'], 976 ['๐Ÿ”ฉ','nut and bolt','$138 improvement $7'],['โš™๏ธ','gear','cog cogwheel $7'], 977 ['๐Ÿ—œ๏ธ','clamp','compress $7 vice'], 978 ['โš–๏ธ','balance scale','justice libra scales $7 weight $11'], 979 ['๐Ÿฆฏ','$34 cane','$64 blind probing'],['๐Ÿ”—','link','links'],['โ›“๏ธ','chains',''], 980 ['๐Ÿช','hook','catch crook curve ensnare point selling'], 981 ['๐Ÿงฐ','toolbox','chest mechanic red'], 982 ['๐Ÿงฒ','magnet','attraction horseshoe magnetic negative positive shape u'], 983 ['๐Ÿชœ','ladder','climb rung step'],['โš—๏ธ','alembic','chemistry $7'], 984 ['๐Ÿงช','test tube','chemist chemistry experiment lab $140'], 985 ['๐Ÿงซ','petri dish','bacteria biologist biology culture lab'], 986 ['๐Ÿงฌ','dna','biologist evolution gene genetics life'], 987 ['๐Ÿ”ฌ','microscope','experiment lab $140 $7'], 988 ['๐Ÿ”ญ','telescope','contact extraterrestrial $140 $7'], 989 ['๐Ÿ“ก','satellite antenna','aliens contact dish $140'], 990 ['๐Ÿ’‰','syringe','$153 flu $152 needle shot $122 $7 vaccination'], 991 ['๐Ÿฉธ','drop of blood','bleed donation injury $152 menstruation'], 992 ['๐Ÿ’Š','pill','$153 drugs medicated $152 pills $122 vitamin'], 993 ['๐Ÿฉน','adhesive bandage',''],['๐Ÿฉบ','stethoscope','$153 $6 $152'], 994 ['๐Ÿšช','door','back closet front'],['๐Ÿ›—','elevator','$64 hoist lift'], 995 ['๐Ÿชž','mirror','makeup reflection reflector speculum'], 996 ['๐ŸชŸ','window','air frame fresh opening transparent view'], 997 ['๐Ÿ›๏ธ','bed','$165 sleep'],['๐Ÿ›‹๏ธ','couch and lamp','$165'], 998 ['๐Ÿช‘','chair','seat sit'],['๐Ÿšฝ','$129','$159'], 999 ['๐Ÿช ','plunger','cup force plumber poop suction $129'],['๐Ÿšฟ','shower','$78'], 1000 ['๐Ÿ›','bathtub',''],['๐Ÿชค','$305 trap','bait $304 lure mousetrap snare'], 1001 ['๐Ÿช’','razor','sharp shave'],['๐Ÿงด','lotion $300','moisturizer shampoo sunscreen'], 1002 ['๐Ÿงท','safety pin','diaper punk $235'],['๐Ÿงน','broom','cleaning sweeping witch'], 1003 ['๐Ÿงบ','basket','farming laundry picnic'],['๐Ÿงป','roll of $131','$129 towels'], 1004 ['๐Ÿชฃ','bucket','cask pail vat'], 1005 ['๐Ÿงผ','soap','bar $204 clean cleaning lather soapdish'], 1006 ['๐Ÿชฅ','toothbrush','$159 clean dental hygiene $128 toiletry'], 1007 ['๐Ÿงฝ','sponge','absorbing cleaning porous soak'], 1008 ['๐Ÿงฏ','fire extinguisher','quench'],['๐Ÿ›’','$59 cart','trolley'], 1009 ['๐Ÿšฌ','cigarette','smoking'],['โšฐ๏ธ','coffin','$123 $327 vampire'], 1010 ['๐Ÿชฆ','headstone','cemetery $123 grave graveyard memorial rip tomb tombstone'], 1011 ['โšฑ๏ธ','funeral urn','ashes $327'], 1012 ['๐Ÿงฟ','nazar amulet','bead $79 charm evil-eye talisman'], 1013 ['๐Ÿ—ฟ','moai','$0 moyai statue stoneface $62'], 1014 ['๐Ÿชง','placard','demonstration notice picket plaque protest $51'], 1015 ['๐Ÿง','ATM $51','atm automated $137 $161 $45 teller'], 1016 ['๐Ÿšฎ','litter in bin $51','litterbin'],['๐Ÿšฐ','potable $78','$167'], 1017 ['โ™ฟ๏ธ','wheelchair $119','access handicap'], 1018 ['๐Ÿšน๏ธ','menโ€™s room','$159 $265 man $264 $129 wc'], 1019 ['๐Ÿšบ๏ธ','womenโ€™s room','$159 $265 $264 $129 wc $86'], 1020 ['๐Ÿšป','$264','$159 $265 $129 wc'],['๐Ÿšผ๏ธ','$116 $119','changing'], 1021 ['๐Ÿšพ','$78 closet','$159 $265 $264 $129 wc'],['๐Ÿ›‚','passport control',''], 1022 ['๐Ÿ›ƒ','customs','packing'], 1023 ['๐Ÿ›„','baggage claim','arrived bags case $263 journey packing plane ready $62 trip'], 1024 ['๐Ÿ›…','$118 luggage','baggage case locker'],['โš ๏ธ','warning','caution'], 1025 ['๐Ÿšธ','children crossing','pedestrian $290'], 1026 ['โ›”๏ธ','no entry','do fail $66 not pass $52 $290'], 1027 ['๐Ÿšซ','$52','entry $66 no not smoke'],['๐Ÿšณ','no bicycles','bike $66 not $52'], 1028 ['๐Ÿšญ๏ธ','no smoking','$66 not $52 smoke'],['๐Ÿšฏ','no littering','$66 not $52'], 1029 ['๐Ÿšฑ','non-potable $78','dry non-drinking $52'], 1030 ['๐Ÿšท','no pedestrians','$66 not $52'], 1031 ['๐Ÿ“ต','no $162 phones','$163 $66 not $52 $109'], 1032 ['๐Ÿ”ž','no one under eighteen','18 age $66 not $52 restriction underage'], 1033 ['โ˜ข๏ธ','radioactive','$51'],['โ˜ฃ๏ธ','biohazard','$51'], 1034 ['โฌ†๏ธ','up $5','$262 $96 north'],['โ†—๏ธ','up-right $5','$96 $261 northeast'], 1035 ['โžก๏ธ','$77 $5','$262 $96 east'],['โ†˜๏ธ','down-right $5','$96 $261 southeast'], 1036 ['โฌ‡๏ธ','$100 $5','$262 $96 south'],['โ†™๏ธ','down-left $5','$96 $261 southwest'], 1037 ['โฌ…๏ธ','$118 $5','$262 $96 west'],['โ†–๏ธ','up-left $5','$96 $261 northwest'], 1038 ['โ†•๏ธ','up-down $5',''],['โ†”๏ธ','left-right $5',''],['โ†ฉ๏ธ','$77 $5 $260 $118',''], 1039 ['โ†ช๏ธ','$118 $5 $260 $77',''],['โคด๏ธ','$77 $5 $260 up',''], 1040 ['โคต๏ธ','$77 $5 $260 $100',''],['๐Ÿ”ƒ','clockwise vertical arrows','refresh reload'], 1041 ['๐Ÿ”„','counterclockwise arrows $4','again anticlockwise deja refresh rewindershins vu'], 1042 ['๐Ÿ”™','BACK $5','back'],['๐Ÿ”š','END $5','end'],['๐Ÿ”›','ON! $5','$33 on!'], 1043 ['๐Ÿ”œ','SOON $5','brb omw soon'],['๐Ÿ”','TOP $5','homie top up'], 1044 ['๐Ÿ›','$280 of worship','pray $37'],['โš›๏ธ','atom $119','atheist'], 1045 ['๐Ÿ•‰๏ธ','om','hindu $37'],['โœก๏ธ','$87 of David','david jew $295 $294 $37'], 1046 ['โ˜ธ๏ธ','wheel of dharma','buddhist $37'], 1047 ['โ˜ฏ๏ธ','yin yang','difficult lives $37 tao taoist total yinyang'], 1048 ['โœ๏ธ','$259 $164','christ christian $37'], 1049 ['โ˜ฆ๏ธ','orthodox $164','christian $37'], 1050 ['โ˜ช๏ธ','$87 and $218','islam muslim ramadan $37'], 1051 ['โ˜ฎ๏ธ','$339 $119','healing peaceful'], 1052 ['๐Ÿ•Ž','menorah','candelabrum candlestick hanukkah $295 $294 $37'], 1053 ['๐Ÿ”ฏ','dotted six-pointed $87','fortune $295 $294'], 1054 ['โ™ˆ๏ธ','Aries','aries $57 ram $11'],['โ™‰๏ธ','Taurus','bull $57 ox taurus $11'], 1055 ['โ™Š๏ธ','Gemini','gemini $57 $309 $11'],['โ™‹๏ธ','Cancer','cancer crab $57 $11'], 1056 ['โ™Œ๏ธ','Leo','$57 leo lion $11'],['โ™๏ธ','Virgo','$57 virgo $11'], 1057 ['โ™Ž๏ธ','Libra','balance $57 justice libra scales $11'], 1058 ['โ™๏ธ','Scorpio','$57 scorpio scorpion scorpius $11'], 1059 ['โ™๏ธ','Sagittarius','archer $57 sagittarius $11'], 1060 ['โ™‘๏ธ','Capricorn','capricorn goat $57 $11'], 1061 ['โ™’๏ธ','Aquarius','aquarius bearer $57 $78 $11'], 1062 ['โ™“๏ธ','Pisces','$225 $57 pisces $11'], 1063 ['โ›Ž๏ธ','Ophiuchus','bearer ophiuchus serpent snake $11'], 1064 ['๐Ÿ”€','shuffle tracks $4','$5 crossed'],['๐Ÿ”','repeat $4','$5 clockwise'], 1065 ['๐Ÿ”‚','repeat single $4','$5 clockwise once'],['โ–ถ๏ธ','play $4','$5 $77 $108'], 1066 ['โฉ๏ธ','fast-forward $4','$5 $85'],['โญ๏ธ','next track $4','$5 scene $108'], 1067 ['โฏ๏ธ','play or pause $4','$5 $77 $108'],['โ—€๏ธ','reverse $4','$5 $118 $108'], 1068 ['โช๏ธ','$144 reverse $4','$5 $85 rewind'], 1069 ['โฎ๏ธ','last track $4','$5 previous scene $108'],['๐Ÿ”ผ','upwards $4','$5 red'], 1070 ['โซ๏ธ','$144 up $4','$5 $85'],['๐Ÿ”ฝ','downwards $4','$5 red'], 1071 ['โฌ๏ธ','$144 $100 $4','$5 $85'],['โธ๏ธ','pause $4','bar $85 vertical'], 1072 ['โน๏ธ','$143 $4','$20'],['โบ๏ธ','record $4','$69'],['โ๏ธ','eject $4',''], 1073 ['๐ŸŽฆ','$274','$178 $273 $169'],['๐Ÿ”…','dim $4','brightness low'], 1074 ['๐Ÿ”†','$246 $4','brightness $73'], 1075 ['๐Ÿ“ถ','antenna bars','$163 $48 $162 $177 signal $109'], 1076 ['๐Ÿ“ณ','vibration mode','$163 $48 $162 $177 $109'], 1077 ['๐Ÿ“ด','$162 $177 off','$163 $109'],['โ™€๏ธ','female $51','$86'], 1078 ['โ™‚๏ธ','male $51','man'],['โšง๏ธ','transgender $119',''], 1079 ['โœ–๏ธ','multiply','cancel multiplication $51 x ร—'],['โž•๏ธ','plus','+'], 1080 ['โž–๏ธ','minus','- $146 $267 $51 โˆ’'],['โž—๏ธ','divide','division $146 $267 $51 รท'], 1081 ['โ™พ๏ธ','infinity','forever unbounded universal'], 1082 ['โ€ผ๏ธ','$85 $242 $33','! !! bangbang $121'], 1083 ['โ‰๏ธ','$242 question $33','! !? ? interrobang $121'], 1084 ['โ“๏ธ','red question $33','? $121'],['โ”๏ธ','$34 question $33','? $343 $121'], 1085 ['โ•๏ธ','$34 $242 $33','! $343 $121'],['โ—๏ธ','red $242 $33','! $121'], 1086 ['ใ€ฐ๏ธ','wavy dash','$121'],['๐Ÿ’ฑ','$130 exchange','$137 $45'], 1087 ['๐Ÿ’ฒ','$146 $199 $51','$272 $161 charge $130 million $45 pay'], 1088 ['โš•๏ธ','medical $119','aesculapius $152 staff'], 1089 ['โ™ป๏ธ','recycling $119','recycle'],['โšœ๏ธ','fleur-de-lis','knights'], 1090 ['๐Ÿ”ฑ','$315 emblem','anchor poseidon $289 $7'],['๐Ÿ“›','name badge',''], 1091 ['โญ•๏ธ','hollow red $69','$146 $106'], 1092 ['โœ…๏ธ','check $33 $4','$263 checkmark complete completed $179 fixed tick โœ“'], 1093 ['โ˜‘๏ธ','check box $2 check','ballot $263 $179 off tick โœ“'], 1094 ['โœ”๏ธ','check $33','$263 checkmark $179 $146 tick โœ“'], 1095 ['โŒ๏ธ','$164 $33','cancel multiplication multiply x ร—'], 1096 ['โŽ๏ธ','$164 $33 $4','multiplication multiply $20 x ร—'],['โžฐ๏ธ','curly loop',''], 1097 ['โžฟ๏ธ','$85 curly loop',''],['ใ€ฝ๏ธ','part alternation $33',''], 1098 ['โœณ๏ธ','eight-spoked asterisk','*'],['โœด๏ธ','eight-pointed $87','*'], 1099 ['โ‡๏ธ','sparkle','*'],['ยฉ๏ธ','copyright',''],['ยฎ๏ธ','registered',''], 1100 ['โ„ข๏ธ','trade $33','tm trademark'],['๐Ÿ” ','$194 $259 uppercase','abcd letters'], 1101 ['๐Ÿ”ก','$194 $259 lowercase','abcd letters'],['๐Ÿ”ข','$194 numbers','1234'], 1102 ['๐Ÿ”ฃ','$194 symbols','% & โ™ช ใ€’'],['๐Ÿ”ค','$194 $259 letters','abc alphabet'], 1103 ['๐Ÿ…ฐ๏ธ','A $4 $258 $257',''],['๐Ÿ†Ž','AB $4 $258 $257','ab'], 1104 ['๐Ÿ…ฑ๏ธ','B $4 $258 $257',''],['๐Ÿ†‘','CL $4','cl'],['๐Ÿ†’','COOL $4','cool'], 1105 ['๐Ÿ†“','FREE $4','free'],['โ„น๏ธ','information',''],['๐Ÿ†”','ID $4','id identity'], 1106 ['โ“‚๏ธ','circled M','m'],['๐Ÿ†•','NEW $4','new'],['๐Ÿ†–','NG $4','ng'], 1107 ['๐Ÿ…พ๏ธ','O $4 $258 $257',''],['๐Ÿ†—','OK $4','ok okay'],['๐Ÿ…ฟ๏ธ','P $4','p parking'], 1108 ['๐Ÿ†˜','SOS $4','help sos'],['๐Ÿ†™','UP! $4','$33 up up!'],['๐Ÿ†š','VS $4','versus vs'], 1109 ['๐Ÿ”ด','red $69','$15'],['๐ŸŸ ','$145 $69',''],['๐ŸŸก','$241 $69',''], 1110 ['๐ŸŸข','$120 $69',''],['๐Ÿ”ต','$79 $69','$15'],['๐ŸŸฃ','$184 $69',''], 1111 ['๐ŸŸค','$240 $69',''],['โšซ๏ธ','$101 $69','$15'],['โšช๏ธ','$34 $69','$15'], 1112 ['๐ŸŸฅ','red $20','$70 penalty'],['๐ŸŸง','$145 $20',''], 1113 ['๐ŸŸจ','$241 $20','$70 penalty'],['๐ŸŸฉ','$120 $20',''],['๐ŸŸฆ','$79 $20',''], 1114 ['๐ŸŸช','$184 $20',''],['๐ŸŸซ','$240 $20',''],['โฌ›๏ธ','$101 $106 $20','$15'], 1115 ['โฌœ๏ธ','$34 $106 $20','$15'],['โ—ผ๏ธ','$101 $284 $20','$15'], 1116 ['โ—ป๏ธ','$34 $284 $20','$15'],['โ—พ๏ธ','$101 medium-small $20','$15'], 1117 ['โ—ฝ๏ธ','$34 medium-small $20','$15'],['โ–ช๏ธ','$101 $105 $20','$15'], 1118 ['โ–ซ๏ธ','$34 $105 $20','$15'],['๐Ÿ”ถ','$106 $145 $112','$15'], 1119 ['๐Ÿ”ท','$106 $79 $112','$15'],['๐Ÿ”ธ','$105 $145 $112','$15'], 1120 ['๐Ÿ”น','$105 $79 $112','$15'],['๐Ÿ”บ','red $108 pointed up','$15'], 1121 ['๐Ÿ”ป','red $108 pointed $100','$15'],['๐Ÿ’ ','$112 $2 a dot','$53 $15'], 1122 ['๐Ÿ”˜','radio $4','$15'],['๐Ÿ”ณ','$34 $20 $4','$15 $343'],['๐Ÿ”ฒ','$101 $20 $4','$15'], 1123 ] // End of FC.data.emoji 1124 }; // End of FC.data