Skip to content

praveen-srinivasan/emoji-java

ย 
ย 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 

Repository files navigation

emoji-java

Build Status Coverage Status Dependencies.co โ€” Track your dependencies! License Info

The missing emoji library for java.

emoji-java is a lightweight java library that helps you use Emojis in your java applications.

How to get it?

Via Maven:
<dependency>
  <groupId>com.vdurmont</groupId>
  <artifactId>emoji-java</artifactId>
  <version>2.2.1</version>
</dependency>

You can also download the project, build it with mvn clean install and add the generated jar to your buildpath.

Via Gradle:
compile 'com.vdurmont:emoji-java:2.2.1'

How to use it?

EmojiManager

The EmojiManager provides several static methods to search through the emojis database:

  • getForTag returns all the emojis for a given tag
  • getForAlias returns the emoji for an alias
  • getAll returns all the emojis
  • isEmoji checks if a string is an emoji

You can also query the metadata:

  • getAllTags returns the available tags

Or get everything:

  • getAll returns all the emojis

Emoji model

An Emoji is a POJO (plain old java object), which provides the following methods:

  • getUnicode returns the unicode representation of the emoji
  • getUnicode(Fitzpatrick) returns the unicode representation of the emoji with the provided Fitzpatrick modifier. If the emoji doesn't support the Fitzpatrick modifiers, this method will throw an UnsupportedOperationException. If the provided Fitzpatrick is null, this method will return the unicode of the emoji.
  • getDescription returns the (optional) description of the emoji
  • getAliases returns a list of aliases for this emoji
  • getTags returns a list of tags for this emoji
  • getHtmlDecimal returns an html decimal representation of the emoji
  • getHtmlHexadecimal returns an html decimal representation of the emoji
  • supportsFitzpatrick returns true if the emoji supports the Fitzpatrick modifiers, else false

Fitzpatrick modifiers

Some emojis now support the use of Fitzpatrick modifiers that gives the choice between 5 shades of skin tones:

Modifier Type
๐Ÿป type_1_2
๐Ÿผ type_3
๐Ÿฝ type_4
๐Ÿพ type_5
๐Ÿฟ type_6

We defined the format of the aliases including a Fitzpatrick modifier as:

:ALIAS|TYPE:

A few examples:

:boy|type_1_2:
:swimmer|type_4:
:santa|type_6:

EmojiParser

To unicode

To replace all the aliases and the html representations found in a string by their unicode, use EmojiParser#parseToUnicode(String).

For example:

String str = "An :grinning:awesome :smiley:string &#128516;with a few :wink:emojis!";
String result = EmojiParser.parseToUnicode(str);
System.out.println(result);
// Prints:
// "An ๐Ÿ˜€awesome ๐Ÿ˜ƒstring ๐Ÿ˜„with a few ๐Ÿ˜‰emojis!"

To aliases

To replace all the emoji's unicodes found in a string by their aliases, use EmojiParser#parseToAliases(String).

For example:

String str = "An ๐Ÿ˜€awesome ๐Ÿ˜ƒstring with a few ๐Ÿ˜‰emojis!";
String result = EmojiParser.parseToAliases(str);
System.out.println(result);
// Prints:
// "An :grinning:awesome :smiley:string with a few :wink:emojis!"

By default, the aliases will parse and include any Fitzpatrick modifier that would be provided. If you want to remove or ignore the Fitzpatrick modifiers, use EmojiParser#parseToAliases(String, FitzpatrickAction). Examples:

String str = "Here is a boy: \uD83D\uDC66\uD83C\uDFFF!";
System.out.println(EmojiParser.parseToAliases(str));
System.out.println(EmojiParser.parseToAliases(str, FitzpatrickAction.PARSE));
// Prints twice: "Here is a boy: :boy|type_6:!"
System.out.println(EmojiParser.parseToAliases(str, FitzpatrickAction.REMOVE));
// Prints: "Here is a boy: :boy:!"
System.out.println(EmojiParser.parseToAliases(str, FitzpatrickAction.IGNORE));
// Prints: "Here is a boy: :boy:๐Ÿฟ!"

To html

To replace all the emoji's unicodes found in a string by their html representation, use EmojiParser#parseToHtmlDecimal(String) or EmojiParser#parseToHtmlHexadecimal(String).

For example:

String str = "An ๐Ÿ˜€awesome ๐Ÿ˜ƒstring with a few ๐Ÿ˜‰emojis!";

String resultDecimal = EmojiParser.parseToHtmlDecimal(str);
System.out.println(resultDecimal);
// Prints:
// "An &#128512;awesome &#128515;string with a few &#128521;emojis!"

String resultHexadecimal = EmojiParser.parseToHtmlHexadecimal(str);
System.out.println(resultHexadecimal);
// Prints:
// "An &#x1f600;awesome &#x1f603;string with a few &#x1f609;emojis!"

By default, any Fitzpatrick modifier will be removed. If you want to ignore the Fitzpatrick modifiers, use EmojiParser#parseToAliases(String, FitzpatrickAction). Examples:

String str = "Here is a boy: \uD83D\uDC66\uD83C\uDFFF!";
System.out.println(EmojiParser.parseToHtmlDecimal(str));
System.out.println(EmojiParser.parseToHtmlDecimal(str, FitzpatrickAction.PARSE));
System.out.println(EmojiParser.parseToHtmlDecimal(str, FitzpatrickAction.REMOVE));
// Print 3 times: "Here is a boy: &#128102;!"
System.out.println(EmojiParser.parseToHtmlDecimal(str, FitzpatrickAction.IGNORE));
// Prints: "Here is a boy: &#128102;๐Ÿฟ!"

The same applies for the methods EmojiParser#parseToHtmlHexadecimal(String) and EmojiParser#parseToHtmlHexadecimal(String, FitzpatrickAction).

Remove emojis

You can easily remove emojis from a string using one of the following methods:

  • EmojiParser#removeAllEmojis(String): removes all the emojis from the String
  • EmojiParser#removeAllEmojisExcept(String, Collection<Emoji>): removes all the emojis from the String, except the ones in the Collection
  • EmojiParser#removeEmojis(String, Collection<Emoji>): removes the emojis in the Collection from the String

For example:

String str = "An ๐Ÿ˜€awesome ๐Ÿ˜ƒstring with a few ๐Ÿ˜‰emojis!";
Collection<Emoji> collection = new ArrayList<Emoji>();
collection.add(EmojiManager.getForAlias("wink")); // This is ๐Ÿ˜‰

System.out.println(EmojiParser.removeAllEmojis(str));
System.out.println(EmojiParser.removeAllEmojisExcept(str, collection));
System.out.println(EmojiParser.removeEmojis(str, collection));

// Prints:
// "An awesome string with a few emojis!"
// "An awesome string with a few ๐Ÿ˜‰emojis!"
// "An ๐Ÿ˜€awesome ๐Ÿ˜ƒstring with a few emojis!"

Credits

emoji-java originally used the data provided by the github/gemoji project. It is still based on it but has evolved since.

Available Emojis

Here is a table of the available emojis and their aliases.

Emoji Aliases Emoji Aliases
๐Ÿ˜ฆ frowning ๐Ÿ“ผ vhs
๐Ÿท wine_glass ๐Ÿ™Ž person_with_pouting_face
๐Ÿณ egg ๐ŸŽช circus_tent
๐ŸŽท saxophone ๐Ÿ˜ธ smile_cat
๐Ÿต tea ๐Ÿผ panda_face
โคต๏ธ arrow_heading_down ๐Ÿ’ฉ hankey, poop, shit
๐Ÿฐ rabbit ๐Ÿšค speedboat
๐Ÿ›ƒ customs ๐Ÿถ sake
๐Ÿ ram ๐Ÿ“ช mailbox_closed
๐Ÿ˜Ž sunglasses ๐ŸŽฒ game_die
๐Ÿ€ rat ๐Ÿ‘จ๐Ÿ‘ฉ๐Ÿ‘ง๐Ÿ‘ง family_man_woman_girl_girl
๐Ÿ’ฎ white_flower ๐Ÿ„ cow2
๐Ÿ— poultry_leg ๐Ÿ‘ค bust_in_silhouette
๐Ÿ˜‰ wink ๐Ÿ”ด red_circle
๐ŸŽฝ running_shirt_with_sash ๐Ÿ“ฐ newspaper
๐Ÿ“‡ card_index ๐Ÿ˜ซ tired_face
๐Ÿ‘  high_heel ๐ŸŒ‚ closed_umbrella
๐Ÿ”ƒ arrows_clockwise ๐Ÿ’ต dollar
๐Ÿš monorail ๐Ÿ– pig2
โ›ณ golf ๐Ÿ˜… sweat_smile
๐Ÿ”ข 1234 ๐Ÿˆด u5408
โ›… partly_sunny ๐Ÿšฏ do_not_litter
๐Ÿ˜ฏ hushed โœ‹ hand, raised_hand
๐Ÿ™ˆ see_no_evil ๐Ÿ…ฐ๏ธ a
โ˜๏ธ point_up ๐Ÿ…ฑ๏ธ b
๐Ÿ”ค abc ๐Ÿ€„ mahjong
๐Ÿšญ no_smoking ๐Ÿซ chocolate_bar
๐ŸŽฅ movie_camera โ“‚๏ธ m
โญ• o ๐Ÿ˜ป heart_eyes_cat
๐Ÿ”† high_brightness ๐Ÿ‘„ lips
๐Ÿ‘œ handbag ๐ŸŒ full_moon_with_face
โœŒ๏ธ v ๐Ÿ“ฒ calling
โšช white_circle โŒ x
๐Ÿ“Š bar_chart ๐Ÿ mouse2
9๏ธโƒฃ nine ๐Ÿ‘ซ couple
๐Ÿ“น video_camera ๐ŸŽต musical_note
๐ŸŽถ notes ๐Ÿ‘ฏ dancers
๐Ÿ“ฅ inbox_tray โ€ผ๏ธ bangbang
๐Ÿ’ฝ minidisc ๐Ÿš› articulated_lorry
๐Ÿ˜Š blush ๐ŸŽค microphone
๐Ÿˆ melon โž— heavy_division_sign
โœ‹ hand, raised_hand ๐Ÿ—ฝ statue_of_liberty
๐Ÿ’ฉ hankey, poop, shit โ• grey_exclamation
๐Ÿ“™ orange_book ๐ŸŒ” moon, waxing_gibbous_moon
โ„น๏ธ information_source ๐Ÿš shell
๐Ÿ‘ฉ๐Ÿ‘ฉ๐Ÿ‘ง๐Ÿ‘ง family_woman_woman_girl_girl ๐Ÿ‘ท construction_worker
๐Ÿ“ด mobile_phone_off ๐Ÿ˜บ smiley_cat
๐Ÿ”Š loud_sound ๐Ÿ˜ด sleeping
๐Ÿ‘– jeans ๐Ÿ pear
๐Ÿš“ police_car ๐Ÿš busstop
๐Ÿš™ blue_car ๐Ÿ”š end
๐Ÿ“ก satellite ๐Ÿ‹ whale2
๐ŸŽ wind_chime ๐Ÿ”‚ repeat_one
๐ŸŽซ ticket โ˜” umbrella
๐Ÿš rice โœ‚๏ธ scissors
๐Ÿˆท๏€ƒ๏ธ u6708 โ™’ aquarius
๐Ÿˆถ u6709 โ˜• coffee
โœˆ๏ธ airplane ๐Ÿ˜“ sweat
โ™‹ cancer ๐Ÿ‘ช family
๐Ÿ˜˜ kissing_heart ๐ŸŽ gift
โ†•๏ธ arrow_up_down โ›ฒ fountain
ยฉ๏ธ copyright ๐ŸŒ’ waxing_crescent_moon
๐Ÿ’Ÿ heart_decoration ๐Ÿ’Š pill
๐Ÿข oden ๐Ÿ— boar
๐Ÿซ camel ๐Ÿ“ง e-mail
โ—ป๏ธ white_medium_square ๐ŸŠ tangerine
๐Ÿ’ก bulb ๐Ÿ‘ฒ man_with_gua_pi_mao
๐Ÿ† leopard ๐ŸŒŽ earth_americas
๐Ÿ“ซ mailbox ๐Ÿ green_apple
๐Ÿ’ค zzz ๐Ÿ’  diamond_shape_with_a_dot_inside
#๏ธโƒฃ hash ๐Ÿ”ซ gun
๐Ÿ˜‘ expressionless ๐Ÿšฉ triangular_flag_on_post
๐Ÿ‘ฉ woman ๐Ÿš  mountain_cableway
๐Ÿ  tropical_fish ๐Ÿฉ doughnut
๐Ÿ˜’ unamused โšซ black_circle
๐Ÿ‘™ bikini ๐Ÿ” top
๐ŸšŸ suspension_railway โฌ› black_large_square
๐Ÿ™‹ raising_hand ๐Ÿšป restroom
โ„๏ธ snowflake ๐ŸŽฉ tophat
โ†™๏ธ arrow_lower_left โ“ question
๐Ÿšบ womens ๐Ÿ˜ฝ kissing_cat
โ›ต boat, sailboat ๐Ÿ’ณ credit_card
๐ŸŽฑ 8ball ๐Ÿ˜ rice_cracker
โš“ anchor ๐ŸŒน rose
โ™ ๏ธ spades ๐Ÿ”ท large_blue_diamond
๐Ÿ‘ฐ bride_with_veil ๐Ÿ•ฃ clock830
๐Ÿ‘ฎ cop ๐Ÿ“ฎ postbox
๐Ÿ– meat_on_bone ๐Ÿฎ cow
๐Ÿฒ dragon_face ๐Ÿ™ pray
๐Ÿ˜ neutral_face ๐Ÿท pig
๐Ÿ”˜ radio_button ๐Ÿ“Ÿ pager
โ™จ๏ธ hotsprings ๐ŸŽก ferris_wheel
๐ŸŒณ deciduous_tree โ†ฉ๏ธ leftwards_arrow_with_hook
๐Ÿ„ surfer ๐Ÿ†• new
โ—พ black_medium_small_square ๐ŸŽ‹ tanabata_tree
๐Ÿ‘จโค๏ธ๐Ÿ’‹๐Ÿ‘จ couplekiss_man_man ๐Ÿ’ญ thought_balloon
๐ŸŽ racehorse ๐Ÿ™… no_good
๐Ÿš minibus ๐Ÿ•ฆ clock1130
๐ŸŽ  carousel_horse โ—ผ๏ธ black_medium_square
๐Ÿ” chicken ๐Ÿ“ณ vibration_mode
โ—ฝ white_medium_small_square ๐Ÿƒ runner, running
๐Ÿž beetle ๐Ÿฑ bento
โ›Ž ophiuchus ๐Ÿ˜ stuck_out_tongue_closed_eyes
๐ŸŽด flower_playing_cards ๐Ÿ’ช muscle
๐Ÿšง construction ๐Ÿ’€ skull
๐Ÿ‘ +1, thumbsup ๐Ÿ˜™ kissing_smiling_eyes
๐Ÿ’™ blue_heart ๐ŸŒŒ milky_way
๐ŸŒผ blossom ๐Ÿœ ant
๐ŸŽ‘ rice_scene ๐Ÿ“ฌ mailbox_with_mail
๐Ÿ˜ข cry ๐Ÿ“ memo, pencil
๐Ÿˆฏ u6307 ๐Ÿ pineapple
๐Ÿˆ koko ๐ŸŽผ musical_score
๐Ÿ’ง droplet ๐Ÿ’ฌ speech_balloon
๐Ÿˆš u7121 ๐Ÿ’ ring
๐Ÿ™ octopus ๐Ÿ—พ japan
๐Ÿ•ก clock630 ๐Ÿšข ship
๐Ÿ“› name_badge ๐ŸŒœ last_quarter_moon_with_face
๐Ÿ” lock_with_ink_pen ๐Ÿฐ cake
โ™Œ leo โ™ป๏ธ recycle
โ†ช๏ธ arrow_right_hook ๐Ÿš oncoming_bus
โ™ scorpius ๐Ÿ”‡ mute
๐Ÿ”Œ electric_plug ๐ŸŠ swimmer
โŽ negative_squared_cross_mark ๐Ÿ˜ถ no_mouth
๐Ÿ‘ฃ footprints ๐ŸŽ bamboo
๐Ÿšฝ toilet โœ‰๏ธ email, envelope
๐ŸŒ› first_quarter_moon_with_face ๐Ÿ”ญ telescope
๐Ÿฌ department_store ๐ŸŒ… sunrise
๐ŸŒ‰ bridge_at_night ๐Ÿ”‹ battery
2๏ธโƒฃ two ๐Ÿš helicopter
๐Ÿ˜ง anguished ๐Ÿšœ tractor
๐Ÿ‰ ideograph_advantage ๐Ÿƒ black_joker
๐Ÿ• dog2 ๐Ÿ˜Ÿ worried
๐Ÿ‰ watermelon ๐Ÿ† trophy
๐Ÿ”ฆ flashlight ๐Ÿ‘ฉ๐Ÿ‘ฉ๐Ÿ‘ง๐Ÿ‘ฆ family_woman_woman_girl_boy
๐ŸŒด palm_tree ๐Ÿ˜ค triumph
๐ŸŽจ art ๐Ÿ”ž underage
๐Ÿ‘ก sandal ๐Ÿšธ children_crossing
๐Ÿ˜› stuck_out_tongue ๐Ÿ™Š speak_no_evil
๐Ÿ’˜ cupid ๐Ÿšฆ vertical_traffic_light
๐Ÿ’ฉ hankey, poop, shit ๐Ÿ‘• shirt, tshirt
โŒš watch ๐Ÿ‘ clap
โžก๏ธ arrow_right ๐Ÿ’น chart
๐Ÿ•Ÿ clock430 ๐Ÿ‘‡ point_down
๐ŸŽ„ christmas_tree ๐Ÿ’š green_heart
๐Ÿ’ฃ bomb ๐Ÿ‘จ๐Ÿ‘จ๐Ÿ‘ง๐Ÿ‘ง family_man_man_girl_girl
๐Ÿญ mouse ๐Ÿ˜ž disappointed
๐Ÿฃ hatching_chick ๐Ÿซ school
๐Ÿˆต u6e80 โ™‰ taurus
โฌ…๏ธ arrow_left ๐Ÿง atm
๐Ÿ€ four_leaf_clover ๐Ÿ”“ unlock
๐Ÿ’Œ love_letter ๐ŸŒŸ star2
โ˜Ž๏ธ phone, telephone ๐Ÿ‘ง girl
๐Ÿ‘’ womans_hat ๐Ÿšƒ railway_car
๐Ÿ”– bookmark ๐Ÿฆ icecream
๐ŸŽบ trumpet ๐ŸŽฎ video_game
๐ŸŠ crocodile ๐Ÿ’ฅ boom, collision
๐Ÿ‡ rabbit2 ๐Ÿ“– book, open_book
๐Ÿšš truck ๐Ÿ“ˆ chart_with_upwards_trend
๐Ÿ’„ lipstick ๐Ÿ  house
๐Ÿ‘‹ wave ๐Ÿ‘จ๐Ÿ‘จ๐Ÿ‘ฆ family_man_man_boy
๐Ÿ• pizza ๐Ÿธ cocktail
๐ŸŒบ hibiscus ๐Ÿ‘ข boot
๐Ÿ‘ž mans_shoe, shoe ๐ŸŽฃ fishing_pole_and_fish
๐Ÿ’ด yen ๐Ÿ”ฑ trident
๐ŸŽฐ slot_machine ๐ŸŒ  stars
๐Ÿ˜ฐ cold_sweat ๐Ÿ•’ clock3
๐Ÿ•‘ clock2 โ—€๏ธ arrow_backward
๐Ÿ•” clock5 ๐Ÿ‘บ japanese_goblin
๐Ÿ•“ clock4 ๐Ÿ• clock1
๐Ÿ”Ÿ keycap_ten โ–ถ๏ธ arrow_forward
๐Ÿ•– clock7 ๐Ÿ•• clock6
๐Ÿ•˜ clock9 ๐Ÿ•— clock8
๐Ÿ…ฟ๏ธ parking ๐Ÿ• clock230
๐Ÿ™‰ hear_no_evil ๐Ÿ’“ heartbeat
โฌœ white_large_square 3๏ธโƒฃ three
๐Ÿ’— heartpulse ๐Ÿ’ information_desk_person
๐Ÿ‘ธ princess ๐Ÿ“  fax
๐ŸšŠ tram ๐Ÿš‘ ambulance
โœ… white_check_mark ๐Ÿˆ cat2
๐ŸŒ” moon, waxing_gibbous_moon โ†˜๏ธ arrow_lower_right
โœ”๏ธ heavy_check_mark ๐Ÿœ ramen
โ˜Ž๏ธ phone, telephone ๐Ÿš‡ metro
๐Ÿƒ water_buffalo ๐Ÿ‘น japanese_ogre
๐Ÿ‘” necktie ๐ŸŽŽ dolls
๐Ÿต monkey_face ๐Ÿ”  capital_abcd
๐ŸŽ flags ๐Ÿ˜” pensive
๐Ÿ‘พ space_invader ๐Ÿญ lollipop
๐Ÿš† train2 ๐Ÿ‘ฝ alien
๐Ÿ“ file_folder ๐Ÿ’ป computer
๐Ÿฅ fish_cake โ†”๏ธ left_right_arrow
๐ŸŸ fries ๐Ÿ›… left_luggage
๐Ÿ˜Œ relieved ๐Ÿ˜ grin
๐Ÿ“’ ledger ๐Ÿ‘ฌ two_men_holding_hands
โ˜‘๏ธ ballot_box_with_check ๐Ÿ“ strawberry
โคด๏ธ arrow_heading_up ๐ŸŽพ tennis
๐Ÿ‘จ๐Ÿ‘ฉ๐Ÿ‘ฆ๐Ÿ‘ฆ family_man_woman_boy_boy ๐Ÿ‘• shirt, tshirt
๐Ÿ˜ก rage ๐ŸŒ˜ waning_crescent_moon
๐Ÿ˜น joy_cat ๐Ÿ˜ฃ persevere
๐Ÿ˜ฟ crying_cat_face ๐Ÿšช door
โ™ฆ๏ธ diamonds ๐Ÿ’ monkey
๐ŸŒ€ cyclone ๐Ÿ‘จ๐Ÿ‘จ๐Ÿ‘ฆ๐Ÿ‘ฆ family_man_man_boy_boy
โ˜๏ธ cloud ๐Ÿ’ฑ currency_exchange
๐Ÿ—ป mount_fuji ๐Ÿš– oncoming_taxi
๐Ÿณ whale โœ๏ธ pencil2
๐Ÿป bear ๐ŸŽ‰ tada
๐ŸŒ banana ใ€ฐ๏€ƒ๏ธ wavy_dash
๐ŸŽป violin ๐Ÿ“ฆ package
๐Ÿ“‚ open_file_folder ๐Ÿ‘Š facepunch, punch
โ†–๏ธ arrow_upper_left ๐Ÿ˜ heart_eyes
๐ŸŒˆ rainbow โž– heavy_minus_sign
๐Ÿ“ข loudspeaker ๐ŸŒ earth_africa
โ›บ tent ๐Ÿ‘จ๐Ÿ‘จ๐Ÿ‘ง๐Ÿ‘ฆ family_man_man_girl_boy
๐Ÿ”ฌ microscope ๐Ÿšฒ bike
โ˜บ๏ธ relaxed ๐Ÿ˜‚ joy
โซ arrow_double_up โœณ๏ธ eight_spoked_asterisk
๐Ÿฅ hospital ๐Ÿฏ honey_pot
๐Ÿ‘ sheep โณ hourglass_flowing_sand
โšฝ soccer ๐Ÿ“‰ chart_with_downwards_trend
๐ŸŒš new_moon_with_face ๐ŸŒ– waning_gibbous_moon
๐Ÿš’ fire_engine ๐ŸŒ earth_asia
๐Ÿ“• closed_book ๐Ÿ˜‡ innocent
๐Ÿ’‹ kiss ๐Ÿ‘จโค๏ธ๐Ÿ‘จ couple_with_heart_man_man
๐Ÿ˜ณ flushed ๐Ÿ” hamburger
๐Ÿšด bicyclist โŒ› hourglass
๐Ÿšฅ traffic_light ๐Ÿฎ custard
๐ŸŽฆ cinema ๐Ÿš” oncoming_police_car
๐Ÿบ beer ๐Ÿ˜ƒ smiley
๐Ÿ†Ž ab ๐Ÿ‡ฆ๐Ÿ‡ฉ ad
๐Ÿ‡ฆ๐Ÿ‡ช ae ๐Ÿ‡ฆ๐Ÿ‡ซ af
๐Ÿ‡ฆ๐Ÿ‡ฌ ag ๐Ÿ‘ peach
๐Ÿฎ izakaya_lantern, lantern ๐Ÿ‡ฆ๐Ÿ‡ฎ ai
๐Ÿ’‘ couple_with_heart ๐Ÿšฑ non-potable_water
๐Ÿ˜  angry ๐Ÿ‡ฆ๐Ÿ‡ฑ al
๐Ÿ‡ฆ๐Ÿ‡ฒ am ๐Ÿ‡ฆ๐Ÿ‡ด ao
๐Ÿ“ round_pushpin ๐Ÿ‡ฆ๐Ÿ‡ท ar
๐Ÿ‡ฆ๐Ÿ‡ธ as ๐Ÿ‡ฆ๐Ÿ‡น at
๐Ÿ‡ฆ๐Ÿ‡บ au ๐Ÿ‡ฆ๐Ÿ‡ผ aw
๐Ÿ” closed_lock_with_key ๐Ÿ‡ฆ๐Ÿ‡ฟ az
๐Ÿ’– sparkling_heart ๐Ÿ‡ง๐Ÿ‡ฆ ba
๐Ÿ‡ง๐Ÿ‡ง bb ๐Ÿ“ฃ mega
๐Ÿ‡ง๐Ÿ‡ฉ bd ๐Ÿ spaghetti
๐Ÿ‡ง๐Ÿ‡ช be ๐Ÿ‡ง๐Ÿ‡ซ bf
๐Ÿ‡ง๐Ÿ‡ฌ bg ๐Ÿ‡ง๐Ÿ‡ญ bh
๐Ÿšก aerial_tramway ๐Ÿ‡ง๐Ÿ‡ฎ bi
๐Ÿ’” broken_heart ๐Ÿ‡ง๐Ÿ‡ฏ bj
๐Ÿฅ hatched_chick ๐Ÿ… tomato
๐Ÿ‡ง๐Ÿ‡ฒ bm ๐Ÿ‡ง๐Ÿ‡ณ bn
๐Ÿ‘€ eyes ๐Ÿ‡ง๐Ÿ‡ด bo
๐Ÿ‡ง๐Ÿ‡ท br ๐Ÿ‡ง๐Ÿ‡ธ bs
๐Ÿ‡ง๐Ÿ‡น bt ๐ŸŒ‘ new_moon
๐Ÿ‡ง๐Ÿ‡ผ bw ๐Ÿ‡ง๐Ÿ‡พ by
๐Ÿ‡ง๐Ÿ‡ฟ bz ๐Ÿจ hotel
๐Ÿ›„ baggage_claim ๐ŸŒ‹ volcano
๐Ÿ’’ wedding ๐Ÿก house_with_garden
๐Ÿ‡จ๐Ÿ‡ฆ ca ๐Ÿ‡จ๐Ÿ‡ฉ cd
๐Ÿ‡จ๐Ÿ‡ซ cf ๐Ÿ‡จ๐Ÿ‡ฌ cg
๐Ÿ‡จ๐Ÿ‡ญ ch ๐Ÿ‡จ๐Ÿ‡ฎ ci
๐Ÿ‡จ๐Ÿ‡ฐ ck ๐Ÿ‡จ๐Ÿ‡ฑ cl
๐Ÿ‡จ๐Ÿ‡ฒ cm ๐Ÿ‡จ๐Ÿ‡ณ cn
๐ŸŒฐ chestnut ๐Ÿ‡จ๐Ÿ‡ด co
๐Ÿช dromedary_camel ๐ŸŒป sunflower
๐Ÿ”ก abcd ๐Ÿ‡จ๐Ÿ‡ฐ cr
๐Ÿก blowfish ๐Ÿ‘จ๐Ÿ‘จ๐Ÿ‘ง family_man_man_girl
๐Ÿ‡จ๐Ÿ‡บ cu ๐Ÿ‡จ๐Ÿ‡ป cv
๐Ÿ‡จ๐Ÿ‡ผ cw ๐Ÿ‡จ๐Ÿ‡พ cy
๐Ÿ‘จ๐Ÿ‘ฉ๐Ÿ‘ฆ family_man_woman_boy ๐Ÿ‡จ๐Ÿ‡ฟ cz
๐ŸŽƒ jack_o_lantern โ–ช๏ธ black_small_square
๐Ÿ˜ฒ astonished ๐Ÿ‘› purse
๐Ÿง penguin ๐Ÿ‡ฉ๐Ÿ‡ช de
๐Ÿ bee, honeybee ๐Ÿ‘ฉ๐Ÿ‘ฉ๐Ÿ‘ง family_woman_woman_girl
โ†—๏ธ arrow_upper_right ๐Ÿ‡ฉ๐Ÿ‡ฏ dj
๐Ÿšต mountain_bicyclist ๐Ÿ‡ฉ๐Ÿ‡ฐ dk
๐Ÿ–• middle_finger ๐Ÿ‡ฉ๐Ÿ‡ฒ dm
โ™ˆ aries ๐Ÿ‡ฉ๐Ÿ‡ด do
๐Ÿ‘ต older_woman ๐ŸŽณ bowling
๐Ÿ˜š kissing_closed_eyes ๐Ÿ‘ฅ busts_in_silhouette
๐Ÿ”ฐ beginner ๐Ÿ‡ฉ๐Ÿ‡ฟ dz
๐Ÿฆ bird โš ๏ธ warning
๐Ÿ”ฒ black_square_button ๐Ÿ‡ช๐Ÿ‡จ ec
๐Ÿš‹ train ๐Ÿช convenience_store
๐Ÿ‡ช๐Ÿ‡ช ee ๐Ÿฌ dolphin, flipper
๐Ÿ”ณ white_square_button ๐Ÿ‡ช๐Ÿ‡ฌ eg
๐Ÿ“ straight_ruler ๐Ÿšซ no_entry_sign
๐ŸŽ€ ribbon ๐ŸŽ“ mortar_board
๐Ÿ‡ช๐Ÿ‡ท er ๐Ÿ‡ช๐Ÿ‡ธ es
๐Ÿ‡ช๐Ÿ‡น et โ™‘ capricorn
๐Ÿผ baby_bottle ๐Ÿšฃ rowboat
๐Ÿ”ช hocho, knife ๐ŸŒ† city_sunset
๐Ÿ… tiger2 ๐Ÿš‚ steam_locomotive
๐Ÿ”ฉ nut_and_bolt ๐Ÿ˜ elephant
๐Ÿ’œ purple_heart ๐Ÿ’‚ guardsman
โœจ sparkles ๐ŸŽ‡ sparkler
๐Ÿ‡ซ๐Ÿ‡ฎ fi ๐Ÿ‡ซ๐Ÿ‡ฏ fj
๐Ÿ”™ back ๐Ÿ‡ซ๐Ÿ‡ด fo
๐Ÿ‡ซ๐Ÿ‡ท fr ๐ŸŽ… santa
๐Ÿ˜‹ yum ๐Ÿ’ท pound
๐Ÿ‹ lemon ๐Ÿ‡ฌ๐Ÿ‡ฆ ga
๐Ÿ‡ฌ๐Ÿ‡ง gb ๐Ÿ‡ฌ๐Ÿ‡ฉ gd
๐Ÿ‡ฌ๐Ÿ‡ช ge ๐Ÿ‡ฌ๐Ÿ‡ซ gf
๐Ÿ’ฒ heavy_dollar_sign ๐Ÿ‡ฌ๐Ÿ‡ญ gh
๐Ÿ‡ฌ๐Ÿ‡ฎ gi 6๏ธโƒฃ six
๐Ÿ™† ok_woman ๐Ÿ‡ฌ๐Ÿ‡ฒ gm
๐Ÿ‡ฌ๐Ÿ‡ณ gn ๐Ÿ‡ฌ๐Ÿ‡ต gp
๐Ÿ‡ฌ๐Ÿ‡ถ gq ๐Ÿˆ football
๐Ÿ‡ฌ๐Ÿ‡ท gr ๐Ÿ‡ฌ๐Ÿ‡น gt
๐Ÿ‡ฌ๐Ÿ‡บ gu ๐Ÿ‡ฌ๐Ÿ‡ผ gw
๐ŸŒž sun_with_face ๐Ÿ‡ฌ๐Ÿ‡พ gy
๐Ÿด fork_and_knife โช rewind
๐Ÿ“ญ mailbox_with_no_mail ๐Ÿ˜œ stuck_out_tongue_winking_eye
๐Ÿ‘ถ baby ๐Ÿ–– vulcan_salute
๐Ÿ”• no_bell โ‡๏ธ sparkle
๐Ÿ‡ญ๐Ÿ‡ฐ hk ๐Ÿค european_post_office
๐Ÿ‡ญ๐Ÿ‡ณ hn ๐Ÿ“ memo, pencil
๐Ÿ‡ญ๐Ÿ‡ท hr ๐Ÿ‡ญ๐Ÿ‡น ht
๐Ÿ‘‰ point_right ๐Ÿ“‹ clipboard
๐Ÿ‡ญ๐Ÿ‡บ hu ๐Ÿ”œ soon
๐ŸŽฟ ski ๐Ÿ‘Ÿ athletic_shoe
4๏ธโƒฃ four ๐Ÿ”’ lock
๐ŸŽฌ clapper ๐Ÿ‡ฎ๐Ÿ‡ฉ id
๐Ÿ‡ฎ๐Ÿ‡ช ie ๐Ÿ‘‘ crown
๐Ÿ‡ฎ๐Ÿ‡ฑ il ๐Ÿช cookie
โฌ†๏ธ arrow_up ๐Ÿ‡ฎ๐Ÿ‡ณ in
๐Ÿ˜† laughing, satisfied ๐Ÿ‘ฉโค๏ธ๐Ÿ’‹๐Ÿ‘ฉ couplekiss_woman_woman
๐Ÿ‡ฎ๐Ÿ‡ถ iq ๐Ÿ‡ฎ๐Ÿ‡ท ir
โžฐ curly_loop ๐Ÿ‡ฎ๐Ÿ‡ธ is
๐Ÿ“ triangular_ruler ๐Ÿ”€ twisted_rightwards_arrows
๐Ÿ‡ฎ๐Ÿ‡น it ๐Ÿ”” bell
๐Ÿ› curry ๐Ÿ‘ณ man_with_turban
๐Ÿ•› clock12 ๐Ÿ•š clock11
๐Ÿ•™ clock10 ๐Ÿ“ž telephone_receiver
๐Ÿˆธ u7533 โšพ๏ธ baseball
๐Ÿ™ rice_ball ๐Ÿ’ couplekiss
๐Ÿถ dog ๐Ÿ‡ฏ๐Ÿ‡ฒ jm
๐Ÿ‡ฏ๐Ÿ‡ด jo ๐Ÿ‡ฏ๐Ÿ‡ต jp
๐Ÿ˜ smirk 8๏ธโƒฃ eight
๐Ÿ” mag ๐Ÿ˜ฌ grimacing
๐ŸŒฒ evergreen_tree ๐Ÿ“ƒ page_with_curl
โ™Ž libra ๐Ÿ‡ฐ๐Ÿ‡ช ke
๐Ÿ‘จ man ๐Ÿ“ท camera
๐Ÿ‡ฐ๐Ÿ‡ฌ kg ๐Ÿ‡ฐ๐Ÿ‡ญ kh
๐Ÿ‡ฐ๐Ÿ‡ฎ ki ๐ŸŒ“ first_quarter_moon
๐Ÿž bread ๐Ÿ‡ฐ๐Ÿ‡ฒ km
๐Ÿšท no_pedestrians ๐Ÿ‡ฐ๐Ÿ‡ต kp
๐Ÿ‘ +1, thumbsup ๐Ÿ‡ฐ๐Ÿ‡ท kr
๐Ÿ”… low_brightness โ™“ pisces
๐ŸšŽ trolleybus ๐Ÿ‡ฐ๐Ÿ‡ผ kw
๐Ÿฎ izakaya_lantern, lantern ๐Ÿšน mens
๐Ÿ‡ฐ๐Ÿ‡พ ky ๐Ÿ‡ฐ๐Ÿ‡ฟ kz
๐Ÿ“— green_book ๐Ÿ‡ฑ๐Ÿ‡ฆ la
๐Ÿ‡ฑ๐Ÿ‡ง lb ๐Ÿ•ง clock1230
โœ–๏ธ heavy_multiplication_x ๐Ÿ‘จ๐Ÿ‘ฉ๐Ÿ‘ง family_man_woman_girl
๐ŸŽŒ crossed_flags ๐Ÿ“” notebook_with_decorative_cover
๐Ÿ‡ฑ๐Ÿ‡ฎ li ๐Ÿ‡ฑ๐Ÿ‡ฐ lk
๐Ÿพ feet, paw_prints โ›„ snowman
โ–ซ๏ธ white_small_square ๐Ÿ‡ฑ๐Ÿ‡ท lr
๐Ÿ˜ญ sob ๐Ÿ‡ฑ๐Ÿ‡ธ ls
๐Ÿ‡ฑ๐Ÿ‡น lt ๐Ÿ‡ฑ๐Ÿ‡บ lu
๐Ÿ‡ฑ๐Ÿ‡ป lv ๐Ÿ‘ผ angel
๐ŸŽ’ school_satchel ๐Ÿข office
โœด๏ธ eight_pointed_black_star ๐Ÿ’ข anger
๐Ÿ‡ฑ๐Ÿ‡พ ly ๐Ÿ’ฆ sweat_drops
๐Ÿ˜„ smile ๐Ÿ“ป radio
๐Ÿ˜• confused ๐Ÿ‡ฒ๐Ÿ‡ฆ ma
๐Ÿ†˜ sos ๐Ÿก dango
๐Ÿ‡ฒ๐Ÿ‡ฉ md ๐Ÿ‡ฒ๐Ÿ‡ช me
๐Ÿฃ sushi ๐Ÿ‡ฒ๐Ÿ‡ฌ mg
๐Ÿ‡ฒ๐Ÿ‡ฐ mk ๐Ÿ‡ฒ๐Ÿ‡ฑ ml
๐Ÿ‡ฒ๐Ÿ‡ฒ mm ๐Ÿ‡ฒ๐Ÿ‡ณ mn
๐Ÿ‡ฒ๐Ÿ‡ด mo ๐Ÿ…พ๏ธ o2
๐Ÿ‡ฒ๐Ÿ‡ต mp ๐Ÿ‘Ž -1, thumbsdown
๐Ÿข turtle ๐Ÿ‡ฒ๐Ÿ‡ถ mq
๐Ÿ‡ฒ๐Ÿ‡ท mr ๐Ÿ‡ฒ๐Ÿ‡ธ ms
๐Ÿ‡ฒ๐Ÿ‡น mt ๐Ÿ‡ฒ๐Ÿ‡ป mv
๐Ÿ‡ฒ๐Ÿ‡ผ mw ๐Ÿšฐ potable_water
๐Ÿ‡ฒ๐Ÿ‡ฝ mx ๐Ÿ‡ฒ๐Ÿ‡พ my
๐Ÿ‡ฒ๐Ÿ‡ฟ mz โค๏ธ heart
๐Ÿ”ง wrench ๐Ÿค baby_chick
๐Ÿ‡ณ๐Ÿ‡ฆ na ๐Ÿ‡ณ๐Ÿ‡จ nc
๐Ÿ‡ณ๐Ÿ‡ช ne ๐Ÿ‡ณ๐Ÿ‡ฌ ng
๐Ÿ‡ณ๐Ÿ‡ฎ ni ๐Ÿ‘Ž -1, thumbsdown
๐Ÿ‡ณ๐Ÿ‡ฑ nl ๐ŸŽ‚ birthday
๐ŸŒ„ sunrise_over_mountains ๐Ÿ‡ณ๐Ÿ‡ด no
๐Ÿ‡ณ๐Ÿ‡ต np ๐Ÿ”จ hammer
๐Ÿฌ candy ๐Ÿฝ pig_nose
๐Ÿ‡ณ๐Ÿ‡บ nu ๐Ÿ“ต no_mobile_phones
๐Ÿ™‡ bow ๐Ÿ•ค clock930
๐Ÿ‡ณ๐Ÿ‡ฟ nz ๐Ÿ‘ฆ boy
๐Ÿ”ฃ symbols ๐Ÿ‘˜ kimono
๐Ÿ’‰ syringe ๐Ÿ“จ incoming_envelope
๐Ÿšฌ smoking ๐Ÿ” repeat
๐Ÿ’ gift_heart ๐Ÿˆฒ u7981
๐Ÿ†— ok ๐Ÿ‡ด๐Ÿ‡ฒ om
๐Ÿ”› on ๐Ÿ“ rooster
๐Ÿฉ poodle ๐Ÿ’พ floppy_disk
๐Ÿ“ฏ postal_horn ๐Ÿ”ฏ six_pointed_star
๐Ÿ‚ ox ๐Ÿ‡ horse_racing
โ” grey_question ๐Ÿ’ฏ 100
๐Ÿ‡ต๐Ÿ‡ฆ pa ๐Ÿ‡ต๐Ÿ‡ช pe
๐Ÿง shaved_ice ๐Ÿ‡ต๐Ÿ‡ฌ pg
๐Ÿ‡ต๐Ÿ‡ญ ph ๐Ÿšณ no_bicycles
๐Ÿ‡ต๐Ÿ‡ฐ pk ๐Ÿ‡ต๐Ÿ‡ฑ pl
๐Ÿ•ฅ clock1030 โ›” no_entry
โ›ต boat, sailboat ๐Ÿ’› yellow_heart
๐Ÿ‡ต๐Ÿ‡ท pr ๐Ÿฏ japanese_castle
๐Ÿ‡ต๐Ÿ‡ธ ps ๐Ÿ‡ต๐Ÿ‡น pt
๐Ÿš€ rocket ๐Ÿ‡ต๐Ÿ‡ผ pw
ยฎ๏ธ registered ๐Ÿ‡ต๐Ÿ‡พ py
๐Ÿ˜ฑ scream ๐Ÿ‘ฉ๐Ÿ‘ฉ๐Ÿ‘ฆ๐Ÿ‘ฆ family_woman_woman_boy_boy
๐Ÿ‡ถ๐Ÿ‡ฆ qa ๐ŸŒ— last_quarter_moon
๐Ÿ› bathtub ๐Ÿฆ bank
๐Ÿ“€ dvd โ— exclamation, heavy_exclamation_mark
๐Ÿ”ฅ fire ๐Ÿฐ european_castle
๐Ÿƒ runner, running ๐Ÿ„ mushroom
๐Ÿ’• two_hearts ๐Ÿˆบ u55b6
๐Ÿ‘ˆ point_left ๐Ÿ‘ฑ person_with_blond_hair
๐Ÿน hamster โšก zap
๐Ÿš• taxi ๐Ÿ’‡ haircut
๐Ÿฏ tiger ๐Ÿ‰‘ accept
๐Ÿด horse ๐Ÿ’บ seat
๐Ÿ”ถ large_orange_diamond ๐ŸŒพ ear_of_rice
๐Ÿ‡ท๐Ÿ‡ช re ๐Ÿ™ person_frowning
๐Ÿ‡ท๐Ÿ‡ด ro โฉ fast_forward
๐Ÿšฟ shower ๐Ÿ‡ท๐Ÿ‡ธ rs
๐Ÿค fried_shrimp ๐Ÿ‡ท๐Ÿ‡บ ru
๐Ÿ•ข clock730 ๐Ÿ‡ท๐Ÿ‡ผ rw
๐Ÿ’… nail_care โœŠ fist
๐Ÿ‡ธ๐Ÿ‡ฆ sa ๐Ÿ˜ฎ open_mouth
๐Ÿ‡ธ๐Ÿ‡ง sb ๐Ÿ‡ธ๐Ÿ‡จ sc
๐Ÿ‡ธ๐Ÿ‡ฉ sd ๐Ÿ‡ธ๐Ÿ‡ช se
๐Ÿ‡ธ๐Ÿ‡ฌ sg ๐Ÿ‡ธ๐Ÿ‡ฎ si
๐ŸŒต cactus ๐Ÿ‡ธ๐Ÿ‡ฐ sk
๐Ÿ‡ธ๐Ÿ‡ฑ sl ๐Ÿ‡ธ๐Ÿ‡ฒ sm
๐Ÿ‡ธ๐Ÿ‡ณ sn ๐Ÿ†“ free
โ‰๏ธ interrobang ๐Ÿ‡ธ๐Ÿ‡ด so
๐Ÿ”‘ key โœ‰๏ธ email, envelope
๐Ÿ‡ธ๐Ÿ‡ท sr ๐Ÿ“† calendar
๐Ÿ‡ธ๐Ÿ‡ธ ss ๐Ÿ‡ธ๐Ÿ‡น st
๐Ÿ‡ธ๐Ÿ‡ป sv โญ star
๐Ÿบ wolf ๐Ÿ˜ฉ weary
๐Ÿ‡ธ๐Ÿ‡พ sy 1๏ธโƒฃ one
๐Ÿ‡ธ๐Ÿ‡ฟ sz ๐Ÿฃ post_office
๐Ÿ˜พ pouting_cat ใ€ฝ๏€ƒ๏ธ part_alternation_mark
โ›ฝ fuelpump ๐Ÿ‡น๐Ÿ‡จ tc
๐Ÿ‡น๐Ÿ‡ซ tf ๐Ÿ‡น๐Ÿ‡ฌ tg
๐Ÿน tropical_drink ๐Ÿ‡น๐Ÿ‡ญ th
๐Ÿ› bug ๐Ÿ‡น๐Ÿ‡ฏ tj
๐ŸŸ fish ๐Ÿ‡น๐Ÿ‡ฑ tl
๐Ÿ‡น๐Ÿ‡ฒ tm ๐Ÿ˜ผ smirk_cat
๐Ÿ‡น๐Ÿ‡ณ tn ๐Ÿ‘“ eyeglasses
๐Ÿ‡น๐Ÿ‡ด to ๐Ÿ‡น๐Ÿ‡ท tr
๐Ÿ˜† laughing, satisfied ๐Ÿ‡น๐Ÿ‡น tt
๐ŸšŒ bus ๐Ÿ‡น๐Ÿ‡ป tv
๐Ÿ˜ต dizzy_face ๐ŸŽง headphones
๐Ÿ‡น๐Ÿ‡ฟ tz โฌ arrow_double_down
7๏ธโƒฃ seven โ— exclamation, heavy_exclamation_mark
๐Ÿšˆ light_rail ๐Ÿ‡บ๐Ÿ‡ฆ ua
0๏ธโƒฃ zero ๐Ÿ’ž revolving_hearts
๐Ÿ‡บ๐Ÿ‡ฌ ug ๐Ÿƒ leaves
๐Ÿšฎ put_litter_in_its_place โžฟ loop
๐Ÿ”Ž mag_right ๐Ÿ†™ up
5๏ธโƒฃ five ๐Ÿ‡บ๐Ÿ‡ธ us
๐Ÿ”ฎ crystal_ball ๐Ÿˆน u5272
๐Ÿ‡บ๐Ÿ‡พ uy ๐Ÿ‡บ๐Ÿ‡ฟ uz
โœ’๏ธ black_nib ๐Ÿšผ baby_symbol
๐Ÿ‡ป๐Ÿ‡ช ve ๐Ÿ‡ป๐Ÿ‡ฌ vg
๐Ÿ‡ป๐Ÿ‡ฎ vi ๐ŸŒŠ ocean
๐Ÿ™Œ raised_hands ๐Ÿ‡ป๐Ÿ‡ณ vn
๐ŸŒ• full_moon ๐Ÿ”ฝ arrow_down_small
๐Ÿ†š vs ๐Ÿ”ป small_red_triangle_down
๐Ÿ‡ grapes ๐Ÿ‡ป๐Ÿ‡บ vu
โ™ฟ wheelchair ๐Ÿ’ถ euro
๐ŸŒƒ night_with_stars ๐Ÿ•  clock530
๐Ÿ‘ด older_man ๐Ÿšพ wc
๐ŸŽ apple ๐Ÿšจ rotating_light
๐Ÿ˜ช sleepy ๐Ÿ‡ผ๐Ÿ‡ธ ws
๐Ÿ›€ bath ๐Ÿ“Œ pushpin
๐Ÿ˜ท mask ๐Ÿฒ stew
๐Ÿ“‘ bookmark_tabs ๐ŸŒท tulip
๐ŸŒฑ seedling ๐ŸŽธ guitar
๐Ÿ‘ฉโค๏ธ๐Ÿ‘ฉ couple_with_heart_woman_woman โฐ alarm_clock
๐Ÿ‘ž mans_shoe, shoe ๐Ÿˆณ u7a7a
๐Ÿ‰ dragon ๐Ÿ‡พ๐Ÿ‡ช ye
๐Ÿจ ice_cream ๐Ÿ”„ arrows_counterclockwise
๐Ÿ˜— kissing ๐Ÿ maple_leaf
๐Ÿ“Ž paperclip ๐ŸŽญ performing_arts
๐Ÿ‰ rugby_football ๐Ÿ† eggplant
๐Ÿ’ซ dizzy ๐Ÿ‘Œ ok_hand
๐Ÿ‡ฟ๐Ÿ‡ฆ za ๐Ÿ“œ scroll
๐Ÿ goat ๐Ÿ“ฑ iphone
๐Ÿ“ฉ envelope_with_arrow ๐Ÿ’ƒ dancer
๐Ÿ“š books ๐Ÿ‡ฟ๐Ÿ‡ฒ zm
๐ŸŒ globe_with_meridians ๐ŸŒธ cherry_blossom
๐Ÿ‘ฉ๐Ÿ‘ฉ๐Ÿ‘ฆ family_woman_woman_boy ๐Ÿ‡ฟ๐Ÿ‡ผ zw
๐Ÿ‘ open_hands ๐Ÿ•ž clock330
๐Ÿ˜– confounded ๐Ÿ‘… tongue
โ›ช church ๐ŸŒ‡ city_sunrise
๐Ÿšž mountain_railway ๐Ÿ—ฟ moyai
ใŠ™๏€ƒ๏ธ secret ๐ŸŽ† fireworks
๐Ÿ’Ž gem ๐Ÿ‘Š facepunch, punch
๐ŸŽฏ dart ๐Ÿ‘ป ghost
๐Ÿ‘‚ ear ๐Ÿ’ˆ barber
๐Ÿ’ธ money_with_wings ๐Ÿ˜ˆ smiling_imp
๐Ÿ›‚ passport_control ๐Ÿ‘ pouch
๐Ÿ†’ cool ๐ŸŽข roller_coaster
๐Ÿ’ฐ moneybag ๐ŸŽŠ confetti_ball
๐Ÿ“… date ๐Ÿ‘— dress
๐ŸŒ snail ๐Ÿ“ค outbox_tray
๐Ÿ“˜ blue_book ๐Ÿ”น small_blue_diamond
โ™ sagittarius ๐Ÿ”ธ small_orange_diamond
๐Ÿ’ cherries ๐ŸŒฝ corn
๐Ÿ”‰ sound ๐Ÿ˜€ grinning
๐Ÿ‚ snowboarder ๐Ÿ‘š womans_clothes
๐Ÿš… bullettrain_front ๐Ÿ‚ fallen_leaf
โž• heavy_plus_sign ๐Ÿ€ basketball
๐Ÿฌ dolphin, flipper ๐Ÿธ frog
๐Ÿš˜ oncoming_automobile ๐Ÿ“ถ signal_strength
๐Ÿ’† massage โ˜€๏ธ sunny
๐Ÿ“– book, open_book ๐Ÿ““ notebook
๐Ÿจ koala ๐Ÿ’ผ briefcase
๐Ÿ‘† point_up_2 ๐Ÿ‘ญ two_women_holding_hands
๐Ÿ’ bouquet ๐Ÿ  sweet_potato
๐Ÿš— car, red_car ๐Ÿ bee, honeybee
๐Ÿ”ช hocho, knife ๐Ÿ”ผ arrow_up_small
โ™Š gemini ๐Ÿ’ฅ boom, collision
๐ŸŽน musical_keyboard ๐Ÿ”ˆ speaker
๐Ÿ”บ small_red_triangle ๐Ÿ’จ dash
๐Ÿ•œ clock130 ๐Ÿ™€ scream_cat
๐Ÿ snake ใŠ—๏€ƒ๏ธ congratulations
๐Ÿ”— link ๐Ÿ‘ฟ imp
๐Ÿ”ต large_blue_circle ๐Ÿ checkered_flag
๐Ÿš— car, red_car ๐Ÿšถ walking
๐Ÿฑ cat ๐Ÿป beers
๐Ÿš‰ station โ™ฅ๏ธ hearts
โ™ฃ๏ธ clubs ๐Ÿพ feet, paw_prints
๐ŸŒฟ herb ๐Ÿ“„ page_facing_up
๐Ÿ‘ƒ nose ๐ŸŒ™ crescent_moon
๐ŸŒ foggy ๐Ÿญ factory
๐ŸŽˆ balloon ๐Ÿš„ bullettrain_side
๐Ÿ˜ฅ disappointed_relieved ๐Ÿ˜จ fearful
๐Ÿฉ love_hotel โ™ virgo
๐Ÿ—ผ tokyo_tower โฌ‡๏ธ arrow_down

About

The missing emoji library for Java โค๏ธ

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Java 100.0%