Helper functions for setting up the Status Backend environment, and package level metadata.
Launch Status Backend Docker container in the background using docker-compose.yaml. If docker is not installed, or if the container fails to start, an exception will be raised with the error message from Docker. The container is built from status-im/status-go at the git ref you choose:
context: https://github.com/status-im/status-go.git#${STATUS_GO_COMMIT:-develop}The image is always rebuilt (docker compose up --build) so a newly chosen commit is picked up instead of reusing a previously built image.
Note: The container mounts the SDK's backups/, assets/ and data/ folders as Docker volumes. Make sure the repository has read and write permissions, otherwise the container will fail to start or backups and profile pictures will not be saved. On Docker Desktop the repository must also be a shared path (see Windows and Mac).
| Name | Type | Required | Description |
|---|---|---|---|
commit |
str |
No | The status-im/status-go git ref to build from - a commit SHA, branch, or tag. When omitted, the latest develop branch is built. |
wait_seconds |
int |
No | Number of seconds to pause after the docker compose up command returns, giving Status Backend enough time to finish booting before subsequent code runs. Defaults to 5. This matters mainly when the container already exists and is being restarted, because docker compose up returns immediately while the backend is still warming up - instantiating Account too quickly will fail to connect. On Windows the same value is used to wait between retries after WSL has been restarted. |
platform |
str |
No | The platform the image is built for. Defaults to linux/amd64. Run docker buildx ls to see the platforms your Docker installation supports, and pass the matching value if the default does not build on your machine. |
data_folder |
str |
No | The folder on your machine where Status Backend keeps the accounts it creates. If you are a Community Control Node you will need to create a Docker container with a volume folder, and pass that same folder to Community so upload_control_node can reach it. |
Wait time after container has launched:
from status_sdk import launch_docker_container
# Build from the latest develop branch
launch_docker_container(wait_seconds=10)Building from a specific commit:
from status_sdk import launch_docker_container
# Pin a specific status-go commit
# https://github.com/status-im/status-go/commit/2bee8b6a38cdc8f92d74e2dbb8c4e77fbbeea149
launch_docker_container(commit="2bee8b6a38cdc8f92d74e2dbb8c4e77fbbeea149")Building for a specific platform:
docker buildx lsfrom status_sdk import launch_docker_container
# Build for Raspberry PI 5 - arm64
launch_docker_container(platform="linux/arm64")In Docker go to Settings > Resources > WSL integration and make sure Enable integration with my default WSL distro and Ubuntu are turned on.
Docker Desktop creates internal intermediary mounts inside its WSL 2 environment when bind-mounting paths from a WSL distribution into a container. In some cases, these mounts can become stale, and the container may fail to start with:
error while creating mount source path '/run/desktop/mnt/host/wsl/docker-desktop-bind-mounts/Ubuntu/...': file exists
The only reliable way to clear the cache is to restart WSL. Method launch_docker_container will do the following when the container fails to start:
wsl --shutdownis run to clear the stale mounts. Keep in mind that this will shut down every WSL distribution, not just the one Docker uses. Any other WSL session running at the same time will be terminated.- The container is launched again, sleeping
wait_secondsbetween each attempt, until it starts.
WSL boots back up on demand, so no manual step is needed. Docker Desktop does need a moment to bring its backend back up, which is why the retries are spaced out - increase wait_seconds if the container takes a long time to come back.
In Docker go to Settings > Resources > File Sharing and make sure the SDK repository is added to Virtual file shares.
Make sure the installed status_sdk folder has read and write permissions, otherwise the container will fail to start or backups and profile pictures will not be saved.
If the package was installed with sudo (for example sudo pip install), the folder is owned by root and your user cannot write to it. Take ownership of the package so your existing permissions apply (adjust the path to where status_sdk is installed):
sudo chown -R $USER:$USER /path/to/status_sdk$USER expands to your current login user, so both the owner and group of every file under status_sdk are set to you. If the container writes as a different user than the one that installed the package, chown alone is not enough - grant read and write permissions to everyone instead:
sudo chmod -R a+rw /path/to/status_sdkbuild_and_launch(commit=None, repo_dir=None, address="localhost:8080", wait_seconds=30, install_deps=True)
Build status-backend natively from a local clone of status-im/status-go, then run it as a normal process on your machine. This is the alternative to launch_docker_container for setups without Docker. Everything else in the SDK works the same afterwards - Account talks to the backend over HTTP either way.
launch_docker_container |
build_and_launch |
|
|---|---|---|
| Needs | Docker (and WSL on Windows) | Nix and git |
| Windows | Supported | Not supported - use Docker, or run from inside WSL |
| Backend runs as | A container | A process on your machine |
| Stopping it | docker compose down |
Terminate the returned process |
The build runs inside the repository's Nix dev shell, so the Go toolchain and every build dependency come from Nix rather than your system - nothing has to be installed by hand beyond Nix itself.
| Name | Type | Required | Description |
|---|---|---|---|
commit |
str |
No | The status-im/status-go git commit SHA,. When omitted, the latest develop branch is built. |
repo_dir |
str |
No | Local folder to clone status-go into, and reuse on later calls. Defaults to a status-go folder next to this package's installation. When the folder does not already hold a clone, the repository is fetched from GitHub. |
address |
str |
No | The host:port to run status-backend on. Defaults to localhost:8080, which matches the defaults of Account. If you change it, pass the matching domain and backend_port when creating the Account. |
wait_seconds |
int |
No | How long to poll the backend's /health endpoint before giving up, in seconds. Defaults to 30. The build itself is not subject to this timeout - only the startup that follows it. |
install_deps |
bool |
No | Whether to run make status-go-deps before building. This also runs go clean -cache and go clean -modcache, which throws away every cached Go build on your machine and makes the next build much slower. Only needed on a first build or after a Go toolchain upgrade. |
from status_sdk import build_and_launch, Account
# First run clones status-go and builds it - this takes a while
process = build_and_launch()
account = Account()
params = {
"name": "status-app-bot",
"password": "SNTPUMP"
}
account.login(**params)
print(account.info["public_key"])
# Stop the backend when you are done
process.terminate()Build a specific ref into a folder of your choosing:
from status_sdk import build_and_launch
build_and_launch(
commit="2bee8b6a38cdc8f92d74e2dbb8c4e77fbbeea149",
repo_dir="/home/thedatabro/src/status-go"
)Run on a different port, and point the Account at it:
from status_sdk import build_and_launch, Account
build_and_launch(address="localhost:9500", wait_seconds=60)
account = Account(backend_port=9500)download_build_and_launch(launcher=None, repo_name="status-im/status-go", tag=None, token=None, address="localhost:8080", wait_seconds=30)
Download a prebuilt status-backend bundle from a GitHub release, extract it and launch it. This is an alternative to build_and_launch for setups that do not want to build status-im/status-go from source - no Nix or Go toolchain is needed.
| Name | Type | Required | Description |
|---|---|---|---|
launcher |
str |
No | Path to a status-backend binary that is already on disk. When given, nothing is downloaded. Use it to re-launch a bundle you already have, or a binary from somewhere else entirely. |
repo_name |
str |
No | The owner/name of the repository to pull the release from. Defaults to status-im/status-go. |
tag |
str |
No | A release tag. When omitted, the latest release is used. |
token |
str |
No | A GitHub token. Required for private repositories. |
address |
str |
No | The host:port to run status-backend on. Defaults to localhost:8080, which matches the defaults of Account. If you change it, pass the matching domain and backend_port when creating the Account. |
wait_seconds |
int |
No | How long to poll the backend's /health endpoint before giving up, in seconds. Defaults to 30. Downloading and extracting are not subject to this timeout - only the startup that follows them. |
Returns str - the path of the file that was launched. A custom exception is raised when the release has no asset for this machine, when the extracted bundle contains nothing runnable, or when the backend does not answer on /health in time.
from status_sdk import download_build_and_launch, Account
# Downloads the latest release's asset matching this machine
download_build_and_launch()
account = Account()
params = {
"name": "status-app-bot",
"password": "SNTPUMP"
}
account.login(**params)
print(account.info["public_key"])Download a specific release tag from a private repository:
from status_sdk import download_build_and_launch
launcher = download_build_and_launch(
repo_name="status-im/status-go",
tag="v2.34.0",
token="ghp_xxxxxxxxxxxxxxxxxxxx"
)
print(f"Launched {launcher}")Re-launch a bundle that is already on disk, with no network access at all:
from status_sdk import download_build_and_launch
download_build_and_launch("./status-backend-bundle/run.sh")Note: if something already answers on address, the backend is not launched a second time and the function returns straight away. That makes repeated calls safe, but it also means a backend left running from an earlier session is reused - stop it first if you want a different build.
The version of the installed status-sdk package. Returns str, matching the version published on PyPI.
The value is read from the installed package metadata at import time, so it always reflects the version that is actually installed in your environment - not the version of any source checkout you happen to be standing in.
import status_sdk
print(status_sdk.__version__)It can also be imported directly:
from status_sdk import __version__
print(__version__)Please include it when reporting an issue, together with the status-go ref you passed to launch_docker_container - the two together describe the exact setup a bug happened on:
import status_sdk
print(f"status-sdk {status_sdk.__version__}")__version__ falls back to dev when the package has no installed metadata to read - which happens if you cloned the repository and imported status_sdk from the project folder without installing it. Install the repository in editable mode and the real version is reported again:
pip install -e .Treat dev as "not installed" rather than as a real release - it is deliberately lower than every published version, so the packaging check above will fail against it.
Status App identifies every emoji by a shortname - a lowercase name wrapped in colons, such as :thumbsup: or :heart_eyes:. The SDK ships the available Status App emojis. All supported shortnames:
| Emoji | Emoji Short Name | unicode |
|---|---|---|
| ๐ | :grinning: |
1f600 |
| ๐ | :smiley: |
1f603 |
| ๐ | :smile: |
1f604 |
| ๐ | :grin: |
1f601 |
| ๐ | :laughing: |
1f606 |
| ๐ | :sweat_smile: |
1f605 |
| ๐คฃ | :rofl: |
1f923 |
| ๐ | :joy: |
1f602 |
| :slight_smile: | :slight_smile: |
1f642 |
| :upside_down: | :upside_down: |
1f643 |
| ๐ซ | :melting_face: |
1fae0 |
| ๐ | :wink: |
1f609 |
| ๐ | :blush: |
1f60a |
| ๐ | :innocent: |
1f607 |
| :smiling_face_with_3_hearts: | :smiling_face_with_3_hearts: |
1f970 |
| ๐ | :heart_eyes: |
1f60d |
| ๐คฉ | :star_struck: |
1f929 |
| ๐ | :kissing_heart: |
1f618 |
| ๐ | :kissing: |
1f617 |
:relaxed: |
263a |
|
| ๐ | :kissing_closed_eyes: |
1f61a |
| ๐ | :kissing_smiling_eyes: |
1f619 |
| ๐ฅฒ | :smiling_face_with_tear: |
1f972 |
| ๐ | :yum: |
1f60b |
| ๐ | :stuck_out_tongue: |
1f61b |
| ๐ | :stuck_out_tongue_winking_eye: |
1f61c |
| ๐คช | :zany_face: |
1f92a |
| ๐ | :stuck_out_tongue_closed_eyes: |
1f61d |
| :money_mouth: | :money_mouth: |
1f911 |
| :hugging: | :hugging: |
1f917 |
| :face_with_hand_over_mouth: | :face_with_hand_over_mouth: |
1f92d |
| ๐ซข | :face_with_open_eyes_and_hand_over_mouth: |
1fae2 |
| ๐ซฃ | :face_with_peeking_eye: |
1fae3 |
| ๐คซ | :shushing_face: |
1f92b |
| ๐ค | :thinking: |
1f914 |
| ๐ซก | :saluting_face: |
1fae1 |
| :zipper_mouth: | :zipper_mouth: |
1f910 |
| :face_with_raised_eyebrow: | :face_with_raised_eyebrow: |
1f928 |
| ๐ | :neutral_face: |
1f610 |
| ๐ | :expressionless: |
1f611 |
| ๐ถ | :no_mouth: |
1f636 |
| ๐ซฅ | :dotted_line_face: |
1fae5 |
| ๐ถโ๐ซ๏ธ | :face_in_clouds: |
1f636-200d-1f32b-fe0f |
| ๐ | :smirk: |
1f60f |
| ๐ | :unamused: |
1f612 |
| :rolling_eyes: | :rolling_eyes: |
1f644 |
| ๐ฌ | :grimacing: |
1f62c |
| ๐ฎโ๐จ | :face_exhaling: |
1f62e-200d-1f4a8 |
| ๐คฅ | :lying_face: |
1f925 |
| ๐ซจ | :shaking_face: |
1fae8 |
| ๐ | :relieved: |
1f60c |
| ๐ | :pensive: |
1f614 |
| ๐ช | :sleepy: |
1f62a |
| ๐คค | :drooling_face: |
1f924 |
| ๐ด | :sleeping: |
1f634 |
| ๐ท | :mask: |
1f637 |
| :thermometer_face: | :thermometer_face: |
1f912 |
| :head_bandage: | :head_bandage: |
1f915 |
| ๐คข | :nauseated_face: |
1f922 |
| :face_vomiting: | :face_vomiting: |
1f92e |
| ๐คง | :sneezing_face: |
1f927 |
| ๐ฅต | :hot_face: |
1f975 |
| ๐ฅถ | :cold_face: |
1f976 |
| ๐ฅด | :woozy_face: |
1f974 |
| ๐ต | :dizzy_face: |
1f635 |
| ๐ตโ๐ซ | :face_with_spiral_eyes: |
1f635-200d-1f4ab |
| ๐คฏ | :exploding_head: |
1f92f |
| :cowboy: | :cowboy: |
1f920 |
| ๐ฅณ | :partying_face: |
1f973 |
| ๐ฅธ | :disguised_face: |
1f978 |
| ๐ | :sunglasses: |
1f60e |
| :nerd: | :nerd: |
1f913 |
| :face_with_monocle: | :face_with_monocle: |
1f9d0 |
| ๐ | :confused: |
1f615 |
| ๐ซค | :face_with_diagonal_mouth: |
1fae4 |
| ๐ | :worried: |
1f61f |
| :slight_frown: | :slight_frown: |
1f641 |
| :frowning2: | :frowning2: |
2639 |
| ๐ฎ | :open_mouth: |
1f62e |
| ๐ฏ | :hushed: |
1f62f |
| ๐ฒ | :astonished: |
1f632 |
| ๐ณ | :flushed: |
1f633 |
| ๐ฅบ | :pleading_face: |
1f97a |
| ๐ฅน | :face_holding_back_tears: |
1f979 |
| ๐ฆ | :frowning: |
1f626 |
| ๐ง | :anguished: |
1f627 |
| ๐จ | :fearful: |
1f628 |
| ๐ฐ | :cold_sweat: |
1f630 |
| ๐ฅ | :disappointed_relieved: |
1f625 |
| ๐ข | :cry: |
1f622 |
| ๐ญ | :sob: |
1f62d |
| ๐ฑ | :scream: |
1f631 |
| ๐ | :confounded: |
1f616 |
| ๐ฃ | :persevere: |
1f623 |
| ๐ | :disappointed: |
1f61e |
| ๐ | :sweat: |
1f613 |
| ๐ฉ | :weary: |
1f629 |
| ๐ซ | :tired_face: |
1f62b |
| ๐ฅฑ | :yawning_face: |
1f971 |
| ๐ค | :triumph: |
1f624 |
| ๐ก | :rage: |
1f621 |
| ๐ | :angry: |
1f620 |
| :face_with_symbols_over_mouth: | :face_with_symbols_over_mouth: |
1f92c |
| ๐ | :smiling_imp: |
1f608 |
| ๐ฟ | :imp: |
1f47f |
| ๐ | :skull: |
1f480 |
| :skull_crossbones: | :skull_crossbones: |
2620 |
| ๐ฉ | :poop: |
1f4a9 |
| :clown: | :clown: |
1f921 |
| ๐น | :japanese_ogre: |
1f479 |
| ๐บ | :japanese_goblin: |
1f47a |
| ๐ป | :ghost: |
1f47b |
| ๐ฝ | :alien: |
1f47d |
| ๐พ | :space_invader: |
1f47e |
| ๐ค | :robot: |
1f916 |
| ๐บ | :smiley_cat: |
1f63a |
| ๐ธ | :smile_cat: |
1f638 |
| ๐น | :joy_cat: |
1f639 |
| ๐ป | :heart_eyes_cat: |
1f63b |
| ๐ผ | :smirk_cat: |
1f63c |
| ๐ฝ | :kissing_cat: |
1f63d |
| ๐ | :scream_cat: |
1f640 |
| ๐ฟ | :crying_cat_face: |
1f63f |
| ๐พ | :pouting_cat: |
1f63e |
| ๐ | :see_no_evil: |
1f648 |
| ๐ | :hear_no_evil: |
1f649 |
| ๐ | :speak_no_evil: |
1f64a |
| ๐ | :love_letter: |
1f48c |
| ๐ | :cupid: |
1f498 |
| ๐ | :gift_heart: |
1f49d |
| ๐ | :sparkling_heart: |
1f496 |
| ๐ | :heartpulse: |
1f497 |
| ๐ | :heartbeat: |
1f493 |
| ๐ | :revolving_hearts: |
1f49e |
| ๐ | :two_hearts: |
1f495 |
| ๐ | :heart_decoration: |
1f49f |
| :heart_exclamation: | :heart_exclamation: |
2763 |
| ๐ | :broken_heart: |
1f494 |
| โค๏ธโ๐ฅ | :heart_on_fire: |
2764-fe0f-200d-1f525 |
| โค๏ธโ๐ฉน | :mending_heart: |
2764-fe0f-200d-1fa79 |
| โค๏ธ | :heart: |
2764 |
| ๐ฉท | :pink_heart: |
1fa77 |
| ๐งก | :orange_heart: |
1f9e1 |
| ๐ | :yellow_heart: |
1f49b |
| ๐ | :green_heart: |
1f49a |
| ๐ | :blue_heart: |
1f499 |
| ๐ฉต | :light_blue_heart: |
1fa75 |
| ๐ | :purple_heart: |
1f49c |
| ๐ค | :brown_heart: |
1f90e |
| ๐ค | :black_heart: |
1f5a4 |
| ๐ฉถ | :grey_heart: |
1fa76 |
| ๐ค | :white_heart: |
1f90d |
| ๐ | :kiss: |
1f48b |
| ๐ฏ | :100: |
1f4af |
| ๐ข | :anger: |
1f4a2 |
| ๐ฅ | :boom: |
1f4a5 |
| ๐ซ | :dizzy: |
1f4ab |
| ๐ฆ | :sweat_drops: |
1f4a6 |
| ๐จ | :dash: |
1f4a8 |
| ๐ณ๏ธ | :hole: |
1f573 |
| ๐ฌ | :speech_balloon: |
1f4ac |
| :eye_in_speech_bubble: | :eye_in_speech_bubble: |
1f441-200d-1f5e8 |
| :speech_left: | :speech_left: |
1f5e8 |
| :anger_right: | :anger_right: |
1f5ef |
| ๐ญ | :thought_balloon: |
1f4ad |
| ๐ค | :zzz: |
1f4a4 |
| ๐ | :wave: |
1f44b |
| ๐ค | :raised_back_of_hand: |
1f91a |
| :hand_splayed: | :hand_splayed: |
1f590 |
| โ | :raised_hand: |
270b |
| :vulcan: | :vulcan: |
1f596 |
| ๐ซฑ | :rightwards_hand: |
1faf1 |
| ๐ซฒ | :leftwards_hand: |
1faf2 |
| ๐ซณ | :palm_down_hand: |
1faf3 |
| ๐ซด | :palm_up_hand: |
1faf4 |
| ๐ซท | :leftwards_pushing_hand: |
1faf7 |
| ๐ซธ | :rightwards_pushing_hand: |
1faf8 |
| ๐ | :ok_hand: |
1f44c |
| ๐ค | :pinched_fingers: |
1f90c |
| ๐ค | :pinching_hand: |
1f90f |
| โ๏ธ | :v: |
270c |
| :fingers_crossed: | :fingers_crossed: |
1f91e |
| ๐ซฐ | :hand_with_index_finger_and_thumb_crossed: |
1faf0 |
| ๐ค | :love_you_gesture: |
1f91f |
| ๐ค | :metal: |
1f918 |
| :call_me: | :call_me: |
1f919 |
| ๐ | :point_left: |
1f448 |
| ๐ | :point_right: |
1f449 |
| ๐ | :point_up_2: |
1f446 |
| ๐ | :middle_finger: |
1f595 |
| ๐ | :point_down: |
1f447 |
| โ๏ธ | :point_up: |
261d |
| ๐ซต | :index_pointing_at_the_viewer: |
1faf5 |
| ๐ | :thumbsup: |
1f44d |
| ๐ | :thumbsdown: |
1f44e |
| โ | :fist: |
270a |
| ๐ | :punch: |
1f44a |
| :left_facing_fist: | :left_facing_fist: |
1f91b |
| :right_facing_fist: | :right_facing_fist: |
1f91c |
| ๐ | :clap: |
1f44f |
| ๐ | :raised_hands: |
1f64c |
| ๐ซถ | :heart_hands: |
1faf6 |
| ๐ | :open_hands: |
1f450 |
| ๐คฒ | :palms_up_together: |
1f932 |
| ๐ค | :handshake: |
1f91d |
| ๐ | :pray: |
1f64f |
| โ๏ธ | :writing_hand: |
270d |
| ๐ | :nail_care: |
1f485 |
| ๐คณ | :selfie: |
1f933 |
| ๐ช | :muscle: |
1f4aa |
| ๐ฆพ | :mechanical_arm: |
1f9be |
| ๐ฆฟ | :mechanical_leg: |
1f9bf |
| ๐ฆต | :leg: |
1f9b5 |
| ๐ฆถ | :foot: |
1f9b6 |
| ๐ | :ear: |
1f442 |
| ๐ฆป | :ear_with_hearing_aid: |
1f9bb |
| ๐ | :nose: |
1f443 |
| ๐ง | :brain: |
1f9e0 |
| ๐ซ | :anatomical_heart: |
1fac0 |
| ๐ซ | :lungs: |
1fac1 |
| ๐ฆท | :tooth: |
1f9b7 |
| ๐ฆด | :bone: |
1f9b4 |
| ๐ | :eyes: |
1f440 |
| ๐๏ธ | :eye: |
1f441 |
| ๐ | :tongue: |
1f445 |
| ๐ | :lips: |
1f444 |
| ๐ซฆ | :biting_lip: |
1fae6 |
| ๐ถ | :baby: |
1f476 |
| ๐ง | :child: |
1f9d2 |
| ๐ฆ | :boy: |
1f466 |
| ๐ง | :girl: |
1f467 |
| ๐ง | :adult: |
1f9d1 |
| ๐ฑ | :blond_haired_person: |
1f471 |
| ๐จ | :man: |
1f468 |
| ๐ง | :bearded_person: |
1f9d4 |
| ๐งโโ๏ธ | :man_beard: |
1f9d4-200d-2642-fe0f |
| ๐งโโ๏ธ | :woman_beard: |
1f9d4-200d-2640-fe0f |
| :man_red_haired: | :man_red_haired: |
1f468-200d-1f9b0 |
| :man_curly_haired: | :man_curly_haired: |
1f468-200d-1f9b1 |
| :man_white_haired: | :man_white_haired: |
1f468-200d-1f9b3 |
| :man_bald: | :man_bald: |
1f468-200d-1f9b2 |
| ๐ฉ | :woman: |
1f469 |
| :woman_red_haired: | :woman_red_haired: |
1f469-200d-1f9b0 |
| ๐งโ๐ฆฐ | :person_red_hair: |
1f9d1-200d-1f9b0 |
| :woman_curly_haired: | :woman_curly_haired: |
1f469-200d-1f9b1 |
| ๐งโ๐ฆฑ | :person_curly_hair: |
1f9d1-200d-1f9b1 |
| :woman_white_haired: | :woman_white_haired: |
1f469-200d-1f9b3 |
| ๐งโ๐ฆณ | :person_white_hair: |
1f9d1-200d-1f9b3 |
| :woman_bald: | :woman_bald: |
1f469-200d-1f9b2 |
| ๐งโ๐ฆฒ | :person_bald: |
1f9d1-200d-1f9b2 |
| :blond-haired_woman: | :blond-haired_woman: |
1f471-200d-2640-fe0f |
| :blond-haired_man: | :blond-haired_man: |
1f471-200d-2642-fe0f |
| ๐ง | :older_adult: |
1f9d3 |
| ๐ด | :older_man: |
1f474 |
| ๐ต | :older_woman: |
1f475 |
| :person_frowning: | :person_frowning: |
1f64d |
| :man_frowning: | :man_frowning: |
1f64d-200d-2642-fe0f |
| :woman_frowning: | :woman_frowning: |
1f64d-200d-2640-fe0f |
| :person_pouting: | :person_pouting: |
1f64e |
| :man_pouting: | :man_pouting: |
1f64e-200d-2642-fe0f |
| :woman_pouting: | :woman_pouting: |
1f64e-200d-2640-fe0f |
| :person_gesturing_no: | :person_gesturing_no: |
1f645 |
| :man_gesturing_no: | :man_gesturing_no: |
1f645-200d-2642-fe0f |
| :woman_gesturing_no: | :woman_gesturing_no: |
1f645-200d-2640-fe0f |
| :person_gesturing_ok: | :person_gesturing_ok: |
1f646 |
| :man_gesturing_ok: | :man_gesturing_ok: |
1f646-200d-2642-fe0f |
| :woman_gesturing_ok: | :woman_gesturing_ok: |
1f646-200d-2640-fe0f |
| :person_tipping_hand: | :person_tipping_hand: |
1f481 |
| :man_tipping_hand: | :man_tipping_hand: |
1f481-200d-2642-fe0f |
| :woman_tipping_hand: | :woman_tipping_hand: |
1f481-200d-2640-fe0f |
| :person_raising_hand: | :person_raising_hand: |
1f64b |
| :man_raising_hand: | :man_raising_hand: |
1f64b-200d-2642-fe0f |
| :woman_raising_hand: | :woman_raising_hand: |
1f64b-200d-2640-fe0f |
| ๐ง | :deaf_person: |
1f9cf |
| ๐งโโ๏ธ | :deaf_man: |
1f9cf-200d-2642-fe0f |
| ๐งโโ๏ธ | :deaf_woman: |
1f9cf-200d-2640-fe0f |
| :person_bowing: | :person_bowing: |
1f647 |
| :man_bowing: | :man_bowing: |
1f647-200d-2642-fe0f |
| :woman_bowing: | :woman_bowing: |
1f647-200d-2640-fe0f |
| :person_facepalming: | :person_facepalming: |
1f926 |
| ๐คฆโโ๏ธ | :man_facepalming: |
1f926-200d-2642-fe0f |
| ๐คฆโโ๏ธ | :woman_facepalming: |
1f926-200d-2640-fe0f |
| :person_shrugging: | :person_shrugging: |
1f937 |
| ๐คทโโ๏ธ | :man_shrugging: |
1f937-200d-2642-fe0f |
| ๐คทโโ๏ธ | :woman_shrugging: |
1f937-200d-2640-fe0f |
| ๐งโโ๏ธ | :health_worker: |
1f9d1-200d-2695-fe0f |
| ๐จโโ๏ธ | :man_health_worker: |
1f468-200d-2695-fe0f |
| ๐ฉโโ๏ธ | :woman_health_worker: |
1f469-200d-2695-fe0f |
| ๐งโ๐ | :student: |
1f9d1-200d-1f393 |
| ๐จโ๐ | :man_student: |
1f468-200d-1f393 |
| ๐ฉโ๐ | :woman_student: |
1f469-200d-1f393 |
| ๐งโ๐ซ | :teacher: |
1f9d1-200d-1f3eb |
| ๐จโ๐ซ | :man_teacher: |
1f468-200d-1f3eb |
| ๐ฉโ๐ซ | :woman_teacher: |
1f469-200d-1f3eb |
| ๐งโโ๏ธ | :judge: |
1f9d1-200d-2696-fe0f |
| ๐จโโ๏ธ | :man_judge: |
1f468-200d-2696-fe0f |
| ๐ฉโโ๏ธ | :woman_judge: |
1f469-200d-2696-fe0f |
| ๐งโ๐พ | :farmer: |
1f9d1-200d-1f33e |
| ๐จโ๐พ | :man_farmer: |
1f468-200d-1f33e |
| ๐ฉโ๐พ | :woman_farmer: |
1f469-200d-1f33e |
| ๐งโ๐ณ | :cook: |
1f9d1-200d-1f373 |
| ๐จโ๐ณ | :man_cook: |
1f468-200d-1f373 |
| ๐ฉโ๐ณ | :woman_cook: |
1f469-200d-1f373 |
| ๐งโ๐ง | :mechanic: |
1f9d1-200d-1f527 |
| ๐จโ๐ง | :man_mechanic: |
1f468-200d-1f527 |
| ๐ฉโ๐ง | :woman_mechanic: |
1f469-200d-1f527 |
| ๐งโ๐ญ | :factory_worker: |
1f9d1-200d-1f3ed |
| ๐จโ๐ญ | :man_factory_worker: |
1f468-200d-1f3ed |
| ๐ฉโ๐ญ | :woman_factory_worker: |
1f469-200d-1f3ed |
| ๐งโ๐ผ | :office_worker: |
1f9d1-200d-1f4bc |
| ๐จโ๐ผ | :man_office_worker: |
1f468-200d-1f4bc |
| ๐ฉโ๐ผ | :woman_office_worker: |
1f469-200d-1f4bc |
| ๐งโ๐ฌ | :scientist: |
1f9d1-200d-1f52c |
| ๐จโ๐ฌ | :man_scientist: |
1f468-200d-1f52c |
| ๐ฉโ๐ฌ | :woman_scientist: |
1f469-200d-1f52c |
| ๐งโ๐ป | :technologist: |
1f9d1-200d-1f4bb |
| ๐จโ๐ป | :man_technologist: |
1f468-200d-1f4bb |
| ๐ฉโ๐ป | :woman_technologist: |
1f469-200d-1f4bb |
| ๐งโ๐ค | :singer: |
1f9d1-200d-1f3a4 |
| ๐จโ๐ค | :man_singer: |
1f468-200d-1f3a4 |
| ๐ฉโ๐ค | :woman_singer: |
1f469-200d-1f3a4 |
| ๐งโ๐จ | :artist: |
1f9d1-200d-1f3a8 |
| ๐จโ๐จ | :man_artist: |
1f468-200d-1f3a8 |
| ๐ฉโ๐จ | :woman_artist: |
1f469-200d-1f3a8 |
| ๐งโ |
:pilot: |
1f9d1-200d-2708-fe0f |
| ๐จโ |
:man_pilot: |
1f468-200d-2708-fe0f |
| ๐ฉโ |
:woman_pilot: |
1f469-200d-2708-fe0f |
| ๐งโ๐ | :astronaut: |
1f9d1-200d-1f680 |
| ๐จโ๐ | :man_astronaut: |
1f468-200d-1f680 |
| ๐ฉโ๐ | :woman_astronaut: |
1f469-200d-1f680 |
| ๐งโ๐ | :firefighter: |
1f9d1-200d-1f692 |
| ๐จโ๐ | :man_firefighter: |
1f468-200d-1f692 |
| ๐ฉโ๐ | :woman_firefighter: |
1f469-200d-1f692 |
| ๐ฎ | :police_officer: |
1f46e |
| :man_police_officer: | :man_police_officer: |
1f46e-200d-2642-fe0f |
| :woman_police_officer: | :woman_police_officer: |
1f46e-200d-2640-fe0f |
| ๐ต๏ธ | :detective: |
1f575 |
| :man_detective: | :man_detective: |
1f575-fe0f-200d-2642-fe0f |
| :woman_detective: | :woman_detective: |
1f575-fe0f-200d-2640-fe0f |
| ๐ | :guard: |
1f482 |
| :man_guard: | :man_guard: |
1f482-200d-2642-fe0f |
| :woman_guard: | :woman_guard: |
1f482-200d-2640-fe0f |
| ๐ฅท | :ninja: |
1f977 |
| ๐ท | :construction_worker: |
1f477 |
| :man_construction_worker: | :man_construction_worker: |
1f477-200d-2642-fe0f |
| :woman_construction_worker: | :woman_construction_worker: |
1f477-200d-2640-fe0f |
| ๐ซ | :person_with_crown: |
1fac5 |
| ๐คด | :prince: |
1f934 |
| ๐ธ | :princess: |
1f478 |
| :person_wearing_turban: | :person_wearing_turban: |
1f473 |
| :man_wearing_turban: | :man_wearing_turban: |
1f473-200d-2642-fe0f |
| :woman_wearing_turban: | :woman_wearing_turban: |
1f473-200d-2640-fe0f |
| :man_with_chinese_cap: | :man_with_chinese_cap: |
1f472 |
| ๐ง | :woman_with_headscarf: |
1f9d5 |
| ๐คต | :person_in_tuxedo: |
1f935 |
| ๐คตโโ๏ธ | :man_in_tuxedo: |
1f935-200d-2642-fe0f |
| ๐คตโโ๏ธ | :woman_in_tuxedo: |
1f935-200d-2640-fe0f |
| ๐ฐ | :person_with_veil: |
1f470 |
| ๐ฐโโ๏ธ | :man_with_veil: |
1f470-200d-2642-fe0f |
| ๐ฐโโ๏ธ | :woman_with_veil: |
1f470-200d-2640-fe0f |
| ๐คฐ | :pregnant_woman: |
1f930 |
| ๐ซ | :pregnant_man: |
1fac3 |
| ๐ซ | :pregnant_person: |
1fac4 |
| ๐คฑ | :breast_feeding: |
1f931 |
| ๐ฉโ๐ผ | :woman_feeding_baby: |
1f469-200d-1f37c |
| ๐จโ๐ผ | :man_feeding_baby: |
1f468-200d-1f37c |
| ๐งโ๐ผ | :person_feeding_baby: |
1f9d1-200d-1f37c |
| ๐ผ | :angel: |
1f47c |
| ๐ | :santa: |
1f385 |
| ๐คถ | :mrs_claus: |
1f936 |
| ๐งโ๐ | :mx_claus: |
1f9d1-200d-1f384 |
| ๐ฆธ | :superhero: |
1f9b8 |
| :man_superhero: | :man_superhero: |
1f9b8-200d-2642-fe0f |
| :woman_superhero: | :woman_superhero: |
1f9b8-200d-2640-fe0f |
| ๐ฆน | :supervillain: |
1f9b9 |
| :man_supervillain: | :man_supervillain: |
1f9b9-200d-2642-fe0f |
| :woman_supervillain: | :woman_supervillain: |
1f9b9-200d-2640-fe0f |
| ๐ง | :mage: |
1f9d9 |
| :man_mage: | :man_mage: |
1f9d9-200d-2642-fe0f |
| :woman_mage: | :woman_mage: |
1f9d9-200d-2640-fe0f |
| ๐ง | :fairy: |
1f9da |
| :man_fairy: | :man_fairy: |
1f9da-200d-2642-fe0f |
| :woman_fairy: | :woman_fairy: |
1f9da-200d-2640-fe0f |
| ๐ง | :vampire: |
1f9db |
| :man_vampire: | :man_vampire: |
1f9db-200d-2642-fe0f |
| :woman_vampire: | :woman_vampire: |
1f9db-200d-2640-fe0f |
| ๐ง | :merperson: |
1f9dc |
| ๐งโโ๏ธ | :merman: |
1f9dc-200d-2642-fe0f |
| ๐งโโ๏ธ | :mermaid: |
1f9dc-200d-2640-fe0f |
| ๐ง | :elf: |
1f9dd |
| :man_elf: | :man_elf: |
1f9dd-200d-2642-fe0f |
| :woman_elf: | :woman_elf: |
1f9dd-200d-2640-fe0f |
| ๐ง | :genie: |
1f9de |
| :man_genie: | :man_genie: |
1f9de-200d-2642-fe0f |
| :woman_genie: | :woman_genie: |
1f9de-200d-2640-fe0f |
| ๐ง | :zombie: |
1f9df |
| :man_zombie: | :man_zombie: |
1f9df-200d-2642-fe0f |
| :woman_zombie: | :woman_zombie: |
1f9df-200d-2640-fe0f |
| ๐ง | :troll: |
1f9cc |
| :person_getting_massage: | :person_getting_massage: |
1f486 |
| :man_getting_face_massage: | :man_getting_face_massage: |
1f486-200d-2642-fe0f |
| :woman_getting_face_massage: | :woman_getting_face_massage: |
1f486-200d-2640-fe0f |
| :person_getting_haircut: | :person_getting_haircut: |
1f487 |
| :man_getting_haircut: | :man_getting_haircut: |
1f487-200d-2642-fe0f |
| :woman_getting_haircut: | :woman_getting_haircut: |
1f487-200d-2640-fe0f |
| :person_walking: | :person_walking: |
1f6b6 |
| :man_walking: | :man_walking: |
1f6b6-200d-2642-fe0f |
| :woman_walking: | :woman_walking: |
1f6b6-200d-2640-fe0f |
| :person_standing: | :person_standing: |
1f9cd |
| :man_standing: | :man_standing: |
1f9cd-200d-2642-fe0f |
| :woman_standing: | :woman_standing: |
1f9cd-200d-2640-fe0f |
| :person_kneeling: | :person_kneeling: |
1f9ce |
| :man_kneeling: | :man_kneeling: |
1f9ce-200d-2642-fe0f |
| :woman_kneeling: | :woman_kneeling: |
1f9ce-200d-2640-fe0f |
| ๐งโ๐ฆฏ | :person_with_probing_cane: |
1f9d1-200d-1f9af |
| ๐จโ๐ฆฏ | :man_with_probing_cane: |
1f468-200d-1f9af |
| ๐ฉโ๐ฆฏ | :woman_with_probing_cane: |
1f469-200d-1f9af |
| ๐งโ๐ฆผ | :person_in_motorized_wheelchair: |
1f9d1-200d-1f9bc |
| ๐จโ๐ฆผ | :man_in_motorized_wheelchair: |
1f468-200d-1f9bc |
| ๐ฉโ๐ฆผ | :woman_in_motorized_wheelchair: |
1f469-200d-1f9bc |
| ๐งโ๐ฆฝ | :person_in_manual_wheelchair: |
1f9d1-200d-1f9bd |
| ๐จโ๐ฆฝ | :man_in_manual_wheelchair: |
1f468-200d-1f9bd |
| ๐ฉโ๐ฆฝ | :woman_in_manual_wheelchair: |
1f469-200d-1f9bd |
| :person_running: | :person_running: |
1f3c3 |
| :man_running: | :man_running: |
1f3c3-200d-2642-fe0f |
| :woman_running: | :woman_running: |
1f3c3-200d-2640-fe0f |
| ๐ | :dancer: |
1f483 |
| ๐บ | :man_dancing: |
1f57a |
| :levitate: | :levitate: |
1f574 |
| :people_with_bunny_ears_partying: | :people_with_bunny_ears_partying: |
1f46f |
| :men_with_bunny_ears_partying: | :men_with_bunny_ears_partying: |
1f46f-200d-2642-fe0f |
| :women_with_bunny_ears_partying: | :women_with_bunny_ears_partying: |
1f46f-200d-2640-fe0f |
| :person_in_steamy_room: | :person_in_steamy_room: |
1f9d6 |
| :man_in_steamy_room: | :man_in_steamy_room: |
1f9d6-200d-2642-fe0f |
| :woman_in_steamy_room: | :woman_in_steamy_room: |
1f9d6-200d-2640-fe0f |
| :person_climbing: | :person_climbing: |
1f9d7 |
| :man_climbing: | :man_climbing: |
1f9d7-200d-2642-fe0f |
| :woman_climbing: | :woman_climbing: |
1f9d7-200d-2640-fe0f |
| ๐คบ | :person_fencing: |
1f93a |
| ๐ | :horse_racing: |
1f3c7 |
| โท๏ธ | :skier: |
26f7 |
| ๐ | :snowboarder: |
1f3c2 |
| :person_golfing: | :person_golfing: |
1f3cc |
| :man_golfing: | :man_golfing: |
1f3cc-fe0f-200d-2642-fe0f |
| :woman_golfing: | :woman_golfing: |
1f3cc-fe0f-200d-2640-fe0f |
| :person_surfing: | :person_surfing: |
1f3c4 |
| :man_surfing: | :man_surfing: |
1f3c4-200d-2642-fe0f |
| :woman_surfing: | :woman_surfing: |
1f3c4-200d-2640-fe0f |
| :person_rowing_boat: | :person_rowing_boat: |
1f6a3 |
| :man_rowing_boat: | :man_rowing_boat: |
1f6a3-200d-2642-fe0f |
| :woman_rowing_boat: | :woman_rowing_boat: |
1f6a3-200d-2640-fe0f |
| :person_swimming: | :person_swimming: |
1f3ca |
| :man_swimming: | :man_swimming: |
1f3ca-200d-2642-fe0f |
| :woman_swimming: | :woman_swimming: |
1f3ca-200d-2640-fe0f |
| :person_bouncing_ball: | :person_bouncing_ball: |
26f9 |
| :man_bouncing_ball: | :man_bouncing_ball: |
26f9-fe0f-200d-2642-fe0f |
| :woman_bouncing_ball: | :woman_bouncing_ball: |
26f9-fe0f-200d-2640-fe0f |
| :person_lifting_weights: | :person_lifting_weights: |
1f3cb |
| :man_lifting_weights: | :man_lifting_weights: |
1f3cb-fe0f-200d-2642-fe0f |
| :woman_lifting_weights: | :woman_lifting_weights: |
1f3cb-fe0f-200d-2640-fe0f |
| :person_biking: | :person_biking: |
1f6b4 |
| :man_biking: | :man_biking: |
1f6b4-200d-2642-fe0f |
| :woman_biking: | :woman_biking: |
1f6b4-200d-2640-fe0f |
| :person_mountain_biking: | :person_mountain_biking: |
1f6b5 |
| :man_mountain_biking: | :man_mountain_biking: |
1f6b5-200d-2642-fe0f |
| :woman_mountain_biking: | :woman_mountain_biking: |
1f6b5-200d-2640-fe0f |
| :person_doing_cartwheel: | :person_doing_cartwheel: |
1f938 |
| ๐คธโโ๏ธ | :man_cartwheeling: |
1f938-200d-2642-fe0f |
| ๐คธโโ๏ธ | :woman_cartwheeling: |
1f938-200d-2640-fe0f |
| :people_wrestling: | :people_wrestling: |
1f93c |
| ๐คผโโ๏ธ | :men_wrestling: |
1f93c-200d-2642-fe0f |
| ๐คผโโ๏ธ | :women_wrestling: |
1f93c-200d-2640-fe0f |
| :person_playing_water_polo: | :person_playing_water_polo: |
1f93d |
| ๐คฝโโ๏ธ | :man_playing_water_polo: |
1f93d-200d-2642-fe0f |
| ๐คฝโโ๏ธ | :woman_playing_water_polo: |
1f93d-200d-2640-fe0f |
| :person_playing_handball: | :person_playing_handball: |
1f93e |
| ๐คพโโ๏ธ | :man_playing_handball: |
1f93e-200d-2642-fe0f |
| ๐คพโโ๏ธ | :woman_playing_handball: |
1f93e-200d-2640-fe0f |
| :person_juggling: | :person_juggling: |
1f939 |
| ๐คนโโ๏ธ | :man_juggling: |
1f939-200d-2642-fe0f |
| ๐คนโโ๏ธ | :woman_juggling: |
1f939-200d-2640-fe0f |
| :person_in_lotus_position: | :person_in_lotus_position: |
1f9d8 |
| :man_in_lotus_position: | :man_in_lotus_position: |
1f9d8-200d-2642-fe0f |
| :woman_in_lotus_position: | :woman_in_lotus_position: |
1f9d8-200d-2640-fe0f |
| ๐ | :bath: |
1f6c0 |
| :sleeping_accommodation: | :sleeping_accommodation: |
1f6cc |
| ๐งโ๐คโ๐ง | :people_holding_hands: |
1f9d1-200d-1f91d-200d-1f9d1 |
| ๐ญ | :two_women_holding_hands: |
1f46d |
| ๐ซ | :couple: |
1f46b |
| ๐ฌ | :two_men_holding_hands: |
1f46c |
| ๐ | :couplekiss: |
1f48f |
| :kiss_woman_man: | :kiss_woman_man: |
1f469-200d-2764-fe0f-200d-1f48b-200d-1f468 |
| :kiss_mm: | :kiss_mm: |
1f468-200d-2764-fe0f-200d-1f48b-200d-1f468 |
| :kiss_ww: | :kiss_ww: |
1f469-200d-2764-fe0f-200d-1f48b-200d-1f469 |
| ๐ | :couple_with_heart: |
1f491 |
| ๐ฉโโค๏ธโ๐จ | :couple_with_heart_woman_man: |
1f469-200d-2764-fe0f-200d-1f468 |
| :couple_mm: | :couple_mm: |
1f468-200d-2764-fe0f-200d-1f468 |
| :couple_ww: | :couple_ww: |
1f469-200d-2764-fe0f-200d-1f469 |
| ๐จโ๐ฉโ๐ฆ | :family_man_woman_boy: |
1f468-200d-1f469-200d-1f466 |
| :family_mwg: | :family_mwg: |
1f468-200d-1f469-200d-1f467 |
| :family_mwgb: | :family_mwgb: |
1f468-200d-1f469-200d-1f467-200d-1f466 |
| :family_mwbb: | :family_mwbb: |
1f468-200d-1f469-200d-1f466-200d-1f466 |
| :family_mwgg: | :family_mwgg: |
1f468-200d-1f469-200d-1f467-200d-1f467 |
| :family_mmb: | :family_mmb: |
1f468-200d-1f468-200d-1f466 |
| :family_mmg: | :family_mmg: |
1f468-200d-1f468-200d-1f467 |
| :family_mmgb: | :family_mmgb: |
1f468-200d-1f468-200d-1f467-200d-1f466 |
| :family_mmbb: | :family_mmbb: |
1f468-200d-1f468-200d-1f466-200d-1f466 |
| :family_mmgg: | :family_mmgg: |
1f468-200d-1f468-200d-1f467-200d-1f467 |
| :family_wwb: | :family_wwb: |
1f469-200d-1f469-200d-1f466 |
| :family_wwg: | :family_wwg: |
1f469-200d-1f469-200d-1f467 |
| :family_wwgb: | :family_wwgb: |
1f469-200d-1f469-200d-1f467-200d-1f466 |
| :family_wwbb: | :family_wwbb: |
1f469-200d-1f469-200d-1f466-200d-1f466 |
| :family_wwgg: | :family_wwgg: |
1f469-200d-1f469-200d-1f467-200d-1f467 |
| ๐จโ๐ฆ | :family_man_boy: |
1f468-200d-1f466 |
| ๐จโ๐ฆโ๐ฆ | :family_man_boy_boy: |
1f468-200d-1f466-200d-1f466 |
| ๐จโ๐ง | :family_man_girl: |
1f468-200d-1f467 |
| ๐จโ๐งโ๐ฆ | :family_man_girl_boy: |
1f468-200d-1f467-200d-1f466 |
| ๐จโ๐งโ๐ง | :family_man_girl_girl: |
1f468-200d-1f467-200d-1f467 |
| ๐ฉโ๐ฆ | :family_woman_boy: |
1f469-200d-1f466 |
| ๐ฉโ๐ฆโ๐ฆ | :family_woman_boy_boy: |
1f469-200d-1f466-200d-1f466 |
| ๐ฉโ๐ง | :family_woman_girl: |
1f469-200d-1f467 |
| ๐ฉโ๐งโ๐ฆ | :family_woman_girl_boy: |
1f469-200d-1f467-200d-1f466 |
| ๐ฉโ๐งโ๐ง | :family_woman_girl_girl: |
1f469-200d-1f467-200d-1f467 |
| ๐ฃ๏ธ | :speaking_head: |
1f5e3 |
| ๐ค | :bust_in_silhouette: |
1f464 |
| ๐ฅ | :busts_in_silhouette: |
1f465 |
| ๐ซ | :people_hugging: |
1fac2 |
| ๐ช | :family: |
1f46a |
| ๐ฃ | :footprints: |
1f463 |
| ๐ต | :monkey_face: |
1f435 |
| ๐ | :monkey: |
1f412 |
| ๐ฆ | :gorilla: |
1f98d |
| ๐ฆง | :orangutan: |
1f9a7 |
| ๐ถ | :dog: |
1f436 |
| ๐ | :dog2: |
1f415 |
| ๐ฆฎ | :guide_dog: |
1f9ae |
| ๐โ๐ฆบ | :service_dog: |
1f415-200d-1f9ba |
| ๐ฉ | :poodle: |
1f429 |
| ๐บ | :wolf: |
1f43a |
| :fox: | :fox: |
1f98a |
| ๐ฆ | :raccoon: |
1f99d |
| ๐ฑ | :cat: |
1f431 |
| ๐ | :cat2: |
1f408 |
| ๐โโฌ | :black_cat: |
1f408-200d-2b1b |
| :lion_face: | :lion_face: |
1f981 |
| ๐ฏ | :tiger: |
1f42f |
| ๐ | :tiger2: |
1f405 |
| ๐ | :leopard: |
1f406 |
| ๐ด | :horse: |
1f434 |
| ๐ซ | :moose: |
1face |
| ๐ซ | :donkey: |
1facf |
| ๐ | :racehorse: |
1f40e |
| ๐ฆ | :unicorn: |
1f984 |
| ๐ฆ | :zebra: |
1f993 |
| ๐ฆ | :deer: |
1f98c |
| ๐ฆฌ | :bison: |
1f9ac |
| ๐ฎ | :cow: |
1f42e |
| ๐ | :ox: |
1f402 |
| ๐ | :water_buffalo: |
1f403 |
| ๐ | :cow2: |
1f404 |
| ๐ท | :pig: |
1f437 |
| ๐ | :pig2: |
1f416 |
| ๐ | :boar: |
1f417 |
| ๐ฝ | :pig_nose: |
1f43d |
| ๐ | :ram: |
1f40f |
| ๐ | :sheep: |
1f411 |
| ๐ | :goat: |
1f410 |
| ๐ช | :dromedary_camel: |
1f42a |
| ๐ซ | :camel: |
1f42b |
| ๐ฆ | :llama: |
1f999 |
| ๐ฆ | :giraffe: |
1f992 |
| ๐ | :elephant: |
1f418 |
| ๐ฆฃ | :mammoth: |
1f9a3 |
| :rhino: | :rhino: |
1f98f |
| ๐ฆ | :hippopotamus: |
1f99b |
| ๐ญ | :mouse: |
1f42d |
| ๐ | :mouse2: |
1f401 |
| ๐ | :rat: |
1f400 |
| ๐น | :hamster: |
1f439 |
| ๐ฐ | :rabbit: |
1f430 |
| ๐ | :rabbit2: |
1f407 |
| ๐ฟ๏ธ | :chipmunk: |
1f43f |
| ๐ฆซ | :beaver: |
1f9ab |
| ๐ฆ | :hedgehog: |
1f994 |
| ๐ฆ | :bat: |
1f987 |
| ๐ป | :bear: |
1f43b |
| ๐ปโโ๏ธ | :polar_bear: |
1f43b-200d-2744-fe0f |
| ๐จ | :koala: |
1f428 |
| ๐ผ | :panda_face: |
1f43c |
| ๐ฆฅ | :sloth: |
1f9a5 |
| ๐ฆฆ | :otter: |
1f9a6 |
| ๐ฆจ | :skunk: |
1f9a8 |
| ๐ฆ | :kangaroo: |
1f998 |
| ๐ฆก | :badger: |
1f9a1 |
| ๐พ | :feet: |
1f43e |
| ๐ฆ | :turkey: |
1f983 |
| ๐ | :chicken: |
1f414 |
| ๐ | :rooster: |
1f413 |
| ๐ฃ | :hatching_chick: |
1f423 |
| ๐ค | :baby_chick: |
1f424 |
| ๐ฅ | :hatched_chick: |
1f425 |
| ๐ฆ | :bird: |
1f426 |
| ๐ง | :penguin: |
1f427 |
| ๐๏ธ | :dove: |
1f54a |
| ๐ฆ | :eagle: |
1f985 |
| ๐ฆ | :duck: |
1f986 |
| ๐ฆข | :swan: |
1f9a2 |
| ๐ฆ | :owl: |
1f989 |
| ๐ฆค | :dodo: |
1f9a4 |
| ๐ชถ | :feather: |
1fab6 |
| ๐ฆฉ | :flamingo: |
1f9a9 |
| ๐ฆ | :peacock: |
1f99a |
| ๐ฆ | :parrot: |
1f99c |
| ๐ชฝ | :wing: |
1fabd |
| ๐ฆโโฌ | :black_bird: |
1f426-200d-2b1b |
| ๐ชฟ | :goose: |
1fabf |
| ๐ธ | :frog: |
1f438 |
| ๐ | :crocodile: |
1f40a |
| ๐ข | :turtle: |
1f422 |
| ๐ฆ | :lizard: |
1f98e |
| ๐ | :snake: |
1f40d |
| ๐ฒ | :dragon_face: |
1f432 |
| ๐ | :dragon: |
1f409 |
| ๐ฆ | :sauropod: |
1f995 |
| :t_rex: | :t_rex: |
1f996 |
| ๐ณ | :whale: |
1f433 |
| ๐ | :whale2: |
1f40b |
| ๐ฌ | :dolphin: |
1f42c |
| ๐ฆญ | :seal: |
1f9ad |
| ๐ | :fish: |
1f41f |
| ๐ | :tropical_fish: |
1f420 |
| ๐ก | :blowfish: |
1f421 |
| ๐ฆ | :shark: |
1f988 |
| ๐ | :octopus: |
1f419 |
| ๐ | :shell: |
1f41a |
| ๐ชธ | :coral: |
1fab8 |
| ๐ชผ | :jellyfish: |
1fabc |
| ๐ | :snail: |
1f40c |
| ๐ฆ | :butterfly: |
1f98b |
| ๐ | :bug: |
1f41b |
| ๐ | :ant: |
1f41c |
| ๐ | :bee: |
1f41d |
| ๐ชฒ | :beetle: |
1fab2 |
| ๐ | :lady_beetle: |
1f41e |
| ๐ฆ | :cricket: |
1f997 |
| ๐ชณ | :cockroach: |
1fab3 |
| ๐ท๏ธ | :spider: |
1f577 |
| ๐ธ๏ธ | :spider_web: |
1f578 |
| ๐ฆ | :scorpion: |
1f982 |
| ๐ฆ | :mosquito: |
1f99f |
| ๐ชฐ | :fly: |
1fab0 |
| ๐ชฑ | :worm: |
1fab1 |
| ๐ฆ | :microbe: |
1f9a0 |
| ๐ | :bouquet: |
1f490 |
| ๐ธ | :cherry_blossom: |
1f338 |
| ๐ฎ | :white_flower: |
1f4ae |
| ๐ชท | :lotus: |
1fab7 |
| ๐ต๏ธ | :rosette: |
1f3f5 |
| ๐น | :rose: |
1f339 |
| :wilted_rose: | :wilted_rose: |
1f940 |
| ๐บ | :hibiscus: |
1f33a |
| ๐ป | :sunflower: |
1f33b |
| ๐ผ | :blossom: |
1f33c |
| ๐ท | :tulip: |
1f337 |
| ๐ชป | :hyacinth: |
1fabb |
| ๐ฑ | :seedling: |
1f331 |
| ๐ชด | :potted_plant: |
1fab4 |
| ๐ฒ | :evergreen_tree: |
1f332 |
| ๐ณ | :deciduous_tree: |
1f333 |
| ๐ด | :palm_tree: |
1f334 |
| ๐ต | :cactus: |
1f335 |
| ๐พ | :ear_of_rice: |
1f33e |
| ๐ฟ | :herb: |
1f33f |
| โ๏ธ | :shamrock: |
2618 |
| ๐ | :four_leaf_clover: |
1f340 |
| ๐ | :maple_leaf: |
1f341 |
| ๐ | :fallen_leaf: |
1f342 |
| ๐ | :leaves: |
1f343 |
| ๐ชน | :empty_nest: |
1fab9 |
| ๐ชบ | :nest_with_eggs: |
1faba |
| ๐ | :mushroom: |
1f344 |
| ๐ | :grapes: |
1f347 |
| ๐ | :melon: |
1f348 |
| ๐ | :watermelon: |
1f349 |
| ๐ | :tangerine: |
1f34a |
| ๐ | :lemon: |
1f34b |
| ๐ | :banana: |
1f34c |
| ๐ | :pineapple: |
1f34d |
| ๐ฅญ | :mango: |
1f96d |
| ๐ | :apple: |
1f34e |
| ๐ | :green_apple: |
1f34f |
| ๐ | :pear: |
1f350 |
| ๐ | :peach: |
1f351 |
| ๐ | :cherries: |
1f352 |
| ๐ | :strawberry: |
1f353 |
| ๐ซ | :blueberries: |
1fad0 |
| :kiwi: | :kiwi: |
1f95d |
| ๐ | :tomato: |
1f345 |
| ๐ซ | :olive: |
1fad2 |
| ๐ฅฅ | :coconut: |
1f965 |
| ๐ฅ | :avocado: |
1f951 |
| ๐ | :eggplant: |
1f346 |
| ๐ฅ | :potato: |
1f954 |
| ๐ฅ | :carrot: |
1f955 |
| ๐ฝ | :corn: |
1f33d |
| ๐ถ๏ธ | :hot_pepper: |
1f336 |
| ๐ซ | :bell_pepper: |
1fad1 |
| ๐ฅ | :cucumber: |
1f952 |
| ๐ฅฌ | :leafy_green: |
1f96c |
| ๐ฅฆ | :broccoli: |
1f966 |
| ๐ง | :garlic: |
1f9c4 |
| ๐ง | :onion: |
1f9c5 |
| ๐ฅ | :peanuts: |
1f95c |
| ๐ซ | :beans: |
1fad8 |
| ๐ฐ | :chestnut: |
1f330 |
| ๐ซ | :ginger_root: |
1fada |
| ๐ซ | :pea_pod: |
1fadb |
| ๐ | :bread: |
1f35e |
| ๐ฅ | :croissant: |
1f950 |
| :french_bread: | :french_bread: |
1f956 |
| ๐ซ | :flatbread: |
1fad3 |
| ๐ฅจ | :pretzel: |
1f968 |
| ๐ฅฏ | :bagel: |
1f96f |
| ๐ฅ | :pancakes: |
1f95e |
| ๐ง | :waffle: |
1f9c7 |
| ๐ง | :cheese: |
1f9c0 |
| ๐ | :meat_on_bone: |
1f356 |
| ๐ | :poultry_leg: |
1f357 |
| ๐ฅฉ | :cut_of_meat: |
1f969 |
| ๐ฅ | :bacon: |
1f953 |
| ๐ | :hamburger: |
1f354 |
| ๐ | :fries: |
1f35f |
| ๐ | :pizza: |
1f355 |
| ๐ญ | :hotdog: |
1f32d |
| ๐ฅช | :sandwich: |
1f96a |
| ๐ฎ | :taco: |
1f32e |
| ๐ฏ | :burrito: |
1f32f |
| ๐ซ | :tamale: |
1fad4 |
| ๐ฅ | :stuffed_flatbread: |
1f959 |
| ๐ง | :falafel: |
1f9c6 |
| ๐ฅ | :egg: |
1f95a |
| :cooking: | :cooking: |
1f373 |
| ๐ฅ | :shallow_pan_of_food: |
1f958 |
| ๐ฒ | :stew: |
1f372 |
| ๐ซ | :fondue: |
1fad5 |
| ๐ฅฃ | :bowl_with_spoon: |
1f963 |
| :salad: | :salad: |
1f957 |
| ๐ฟ | :popcorn: |
1f37f |
| ๐ง | :butter: |
1f9c8 |
| ๐ง | :salt: |
1f9c2 |
| ๐ฅซ | :canned_food: |
1f96b |
| ๐ฑ | :bento: |
1f371 |
| ๐ | :rice_cracker: |
1f358 |
| ๐ | :rice_ball: |
1f359 |
| ๐ | :rice: |
1f35a |
| ๐ | :curry: |
1f35b |
| ๐ | :ramen: |
1f35c |
| ๐ | :spaghetti: |
1f35d |
| ๐ | :sweet_potato: |
1f360 |
| ๐ข | :oden: |
1f362 |
| ๐ฃ | :sushi: |
1f363 |
| ๐ค | :fried_shrimp: |
1f364 |
| ๐ฅ | :fish_cake: |
1f365 |
| ๐ฅฎ | :moon_cake: |
1f96e |
| ๐ก | :dango: |
1f361 |
| ๐ฅ | :dumpling: |
1f95f |
| ๐ฅ | :fortune_cookie: |
1f960 |
| ๐ฅก | :takeout_box: |
1f961 |
| ๐ฆ | :crab: |
1f980 |
| ๐ฆ | :lobster: |
1f99e |
| ๐ฆ | :shrimp: |
1f990 |
| ๐ฆ | :squid: |
1f991 |
| ๐ฆช | :oyster: |
1f9aa |
| ๐ฆ | :icecream: |
1f366 |
| ๐ง | :shaved_ice: |
1f367 |
| ๐จ | :ice_cream: |
1f368 |
| ๐ฉ | :doughnut: |
1f369 |
| ๐ช | :cookie: |
1f36a |
| ๐ | :birthday: |
1f382 |
| ๐ฐ | :cake: |
1f370 |
| ๐ง | :cupcake: |
1f9c1 |
| ๐ฅง | :pie: |
1f967 |
| ๐ซ | :chocolate_bar: |
1f36b |
| ๐ฌ | :candy: |
1f36c |
| ๐ญ | :lollipop: |
1f36d |
| ๐ฎ | :custard: |
1f36e |
| ๐ฏ | :honey_pot: |
1f36f |
| ๐ผ | :baby_bottle: |
1f37c |
| :milk: | :milk: |
1f95b |
| โ | :coffee: |
2615 |
| ๐ซ | :teapot: |
1fad6 |
| ๐ต | :tea: |
1f375 |
| ๐ถ | :sake: |
1f376 |
| ๐พ | :champagne: |
1f37e |
| ๐ท | :wine_glass: |
1f377 |
| ๐ธ | :cocktail: |
1f378 |
| ๐น | :tropical_drink: |
1f379 |
| ๐บ | :beer: |
1f37a |
| ๐ป | :beers: |
1f37b |
| :champagne_glass: | :champagne_glass: |
1f942 |
| ๐ฅ | :tumbler_glass: |
1f943 |
| ๐ซ | :pouring_liquid: |
1fad7 |
| ๐ฅค | :cup_with_straw: |
1f964 |
| ๐ง | :bubble_tea: |
1f9cb |
| ๐ง | :beverage_box: |
1f9c3 |
| ๐ง | :mate: |
1f9c9 |
| ๐ง | :ice_cube: |
1f9ca |
| ๐ฅข | :chopsticks: |
1f962 |
| :fork_knife_plate: | :fork_knife_plate: |
1f37d |
| ๐ด | :fork_and_knife: |
1f374 |
| ๐ฅ | :spoon: |
1f944 |
| ๐ช | :knife: |
1f52a |
| ๐ซ | :jar: |
1fad9 |
| ๐บ | :amphora: |
1f3fa |
| ๐ | :earth_africa: |
1f30d |
| ๐ | :earth_americas: |
1f30e |
| ๐ | :earth_asia: |
1f30f |
| ๐ | :globe_with_meridians: |
1f310 |
| :map: | :map: |
1f5fa |
| ๐พ | :japan: |
1f5fe |
| ๐งญ | :compass: |
1f9ed |
| ๐๏ธ | :mountain_snow: |
1f3d4 |
| โฐ๏ธ | :mountain: |
26f0 |
| ๐ | :volcano: |
1f30b |
| ๐ป | :mount_fuji: |
1f5fb |
| ๐๏ธ | :camping: |
1f3d5 |
| :beach: | :beach: |
1f3d6 |
| ๐๏ธ | :desert: |
1f3dc |
| :island: | :island: |
1f3dd |
| :park: | :park: |
1f3de |
| ๐๏ธ | :stadium: |
1f3df |
| ๐๏ธ | :classical_building: |
1f3db |
| :construction_site: | :construction_site: |
1f3d7 |
| ๐งฑ | :bricks: |
1f9f1 |
| ๐ชจ | :rock: |
1faa8 |
| ๐ชต | :wood: |
1fab5 |
| ๐ | :hut: |
1f6d6 |
| :homes: | :homes: |
1f3d8 |
| :house_abandoned: | :house_abandoned: |
1f3da |
| ๐ | :house: |
1f3e0 |
| ๐ก | :house_with_garden: |
1f3e1 |
| ๐ข | :office: |
1f3e2 |
| ๐ฃ | :post_office: |
1f3e3 |
| ๐ค | :european_post_office: |
1f3e4 |
| ๐ฅ | :hospital: |
1f3e5 |
| ๐ฆ | :bank: |
1f3e6 |
| ๐จ | :hotel: |
1f3e8 |
| ๐ฉ | :love_hotel: |
1f3e9 |
| ๐ช | :convenience_store: |
1f3ea |
| ๐ซ | :school: |
1f3eb |
| ๐ฌ | :department_store: |
1f3ec |
| ๐ญ | :factory: |
1f3ed |
| ๐ฏ | :japanese_castle: |
1f3ef |
| ๐ฐ | :european_castle: |
1f3f0 |
| ๐ | :wedding: |
1f492 |
| ๐ผ | :tokyo_tower: |
1f5fc |
| ๐ฝ | :statue_of_liberty: |
1f5fd |
| โช | :church: |
26ea |
| ๐ | :mosque: |
1f54c |
| ๐ | :hindu_temple: |
1f6d5 |
| ๐ | :synagogue: |
1f54d |
| โฉ๏ธ | :shinto_shrine: |
26e9 |
| ๐ | :kaaba: |
1f54b |
| โฒ | :fountain: |
26f2 |
| โบ | :tent: |
26fa |
| ๐ | :foggy: |
1f301 |
| ๐ | :night_with_stars: |
1f303 |
| ๐๏ธ | :cityscape: |
1f3d9 |
| ๐ | :sunrise_over_mountains: |
1f304 |
| ๐ | :sunrise: |
1f305 |
| :city_dusk: | :city_dusk: |
1f306 |
| ๐ | :city_sunset: |
1f307 |
| ๐ | :bridge_at_night: |
1f309 |
| โจ๏ธ | :hotsprings: |
2668 |
| ๐ | :carousel_horse: |
1f3a0 |
| ๐ | :playground_slide: |
1f6dd |
| ๐ก | :ferris_wheel: |
1f3a1 |
| ๐ข | :roller_coaster: |
1f3a2 |
| ๐ | :barber: |
1f488 |
| ๐ช | :circus_tent: |
1f3aa |
| ๐ | :steam_locomotive: |
1f682 |
| ๐ | :railway_car: |
1f683 |
| ๐ | :bullettrain_side: |
1f684 |
| ๐ | :bullettrain_front: |
1f685 |
| ๐ | :train2: |
1f686 |
| ๐ | :metro: |
1f687 |
| ๐ | :light_rail: |
1f688 |
| ๐ | :station: |
1f689 |
| ๐ | :tram: |
1f68a |
| ๐ | :monorail: |
1f69d |
| ๐ | :mountain_railway: |
1f69e |
| ๐ | :train: |
1f68b |
| ๐ | :bus: |
1f68c |
| ๐ | :oncoming_bus: |
1f68d |
| ๐ | :trolleybus: |
1f68e |
| ๐ | :minibus: |
1f690 |
| ๐ | :ambulance: |
1f691 |
| ๐ | :fire_engine: |
1f692 |
| ๐ | :police_car: |
1f693 |
| ๐ | :oncoming_police_car: |
1f694 |
| ๐ | :taxi: |
1f695 |
| ๐ | :oncoming_taxi: |
1f696 |
| ๐ | :red_car: |
1f697 |
| ๐ | :oncoming_automobile: |
1f698 |
| ๐ | :blue_car: |
1f699 |
| ๐ป | :pickup_truck: |
1f6fb |
| ๐ | :truck: |
1f69a |
| ๐ | :articulated_lorry: |
1f69b |
| ๐ | :tractor: |
1f69c |
| :race_car: | :race_car: |
1f3ce |
| ๐๏ธ | :motorcycle: |
1f3cd |
| ๐ต | :motor_scooter: |
1f6f5 |
| ๐ฆฝ | :manual_wheelchair: |
1f9bd |
| ๐ฆผ | :motorized_wheelchair: |
1f9bc |
| ๐บ | :auto_rickshaw: |
1f6fa |
| ๐ฒ | :bike: |
1f6b2 |
| :scooter: | :scooter: |
1f6f4 |
| ๐น | :skateboard: |
1f6f9 |
| ๐ผ | :roller_skate: |
1f6fc |
| ๐ | :busstop: |
1f68f |
| ๐ฃ๏ธ | :motorway: |
1f6e3 |
| ๐ค๏ธ | :railway_track: |
1f6e4 |
| :oil: | :oil: |
1f6e2 |
| โฝ | :fuelpump: |
26fd |
| ๐ | :wheel: |
1f6de |
| ๐จ | :rotating_light: |
1f6a8 |
| ๐ฅ | :traffic_light: |
1f6a5 |
| ๐ฆ | :vertical_traffic_light: |
1f6a6 |
| :octagonal_sign: | :octagonal_sign: |
1f6d1 |
| ๐ง | :construction: |
1f6a7 |
| โ | :anchor: |
2693 |
| ๐ | :ring_buoy: |
1f6df |
| โต | :sailboat: |
26f5 |
| ๐ถ | :canoe: |
1f6f6 |
| ๐ค | :speedboat: |
1f6a4 |
| :cruise_ship: | :cruise_ship: |
1f6f3 |
| โด๏ธ | :ferry: |
26f4 |
| :motorboat: | :motorboat: |
1f6e5 |
| ๐ข | :ship: |
1f6a2 |
:airplane: |
2708 |
|
| :airplane_small: | :airplane_small: |
1f6e9 |
| :airplane_departure: | :airplane_departure: |
1f6eb |
| :airplane_arriving: | :airplane_arriving: |
1f6ec |
| ๐ช | :parachute: |
1fa82 |
| ๐บ | :seat: |
1f4ba |
| ๐ | :helicopter: |
1f681 |
| ๐ | :suspension_railway: |
1f69f |
| ๐ | :mountain_cableway: |
1f6a0 |
| ๐ก | :aerial_tramway: |
1f6a1 |
| :satellite_orbital: | :satellite_orbital: |
1f6f0 |
| ๐ | :rocket: |
1f680 |
| ๐ธ | :flying_saucer: |
1f6f8 |
| :bellhop: | :bellhop: |
1f6ce |
| ๐งณ | :luggage: |
1f9f3 |
| โ | :hourglass: |
231b |
| โณ | :hourglass_flowing_sand: |
23f3 |
| โ | :watch: |
231a |
| โฐ | :alarm_clock: |
23f0 |
| โฑ๏ธ | :stopwatch: |
23f1 |
| :timer: | :timer: |
23f2 |
| :clock: | :clock: |
1f570 |
| ๐ | :clock12: |
1f55b |
| ๐ง | :clock1230: |
1f567 |
| ๐ | :clock1: |
1f550 |
| ๐ | :clock130: |
1f55c |
| ๐ | :clock2: |
1f551 |
| ๐ | :clock230: |
1f55d |
| ๐ | :clock3: |
1f552 |
| ๐ | :clock330: |
1f55e |
| ๐ | :clock4: |
1f553 |
| ๐ | :clock430: |
1f55f |
| ๐ | :clock5: |
1f554 |
| ๐ | :clock530: |
1f560 |
| ๐ | :clock6: |
1f555 |
| ๐ก | :clock630: |
1f561 |
| ๐ | :clock7: |
1f556 |
| ๐ข | :clock730: |
1f562 |
| ๐ | :clock8: |
1f557 |
| ๐ฃ | :clock830: |
1f563 |
| ๐ | :clock9: |
1f558 |
| ๐ค | :clock930: |
1f564 |
| ๐ | :clock10: |
1f559 |
| ๐ฅ | :clock1030: |
1f565 |
| ๐ | :clock11: |
1f55a |
| ๐ฆ | :clock1130: |
1f566 |
| ๐ | :new_moon: |
1f311 |
| ๐ | :waxing_crescent_moon: |
1f312 |
| ๐ | :first_quarter_moon: |
1f313 |
| ๐ | :waxing_gibbous_moon: |
1f314 |
| ๐ | :full_moon: |
1f315 |
| ๐ | :waning_gibbous_moon: |
1f316 |
| ๐ | :last_quarter_moon: |
1f317 |
| ๐ | :waning_crescent_moon: |
1f318 |
| ๐ | :crescent_moon: |
1f319 |
| ๐ | :new_moon_with_face: |
1f31a |
| ๐ | :first_quarter_moon_with_face: |
1f31b |
| ๐ | :last_quarter_moon_with_face: |
1f31c |
| ๐ก๏ธ | :thermometer: |
1f321 |
| โ๏ธ | :sunny: |
2600 |
| ๐ | :full_moon_with_face: |
1f31d |
| ๐ | :sun_with_face: |
1f31e |
| ๐ช | :ringed_planet: |
1fa90 |
| โญ | :star: |
2b50 |
| ๐ | :star2: |
1f31f |
| ๐ | :stars: |
1f320 |
| ๐ | :milky_way: |
1f30c |
| โ๏ธ | :cloud: |
2601 |
| โ | :partly_sunny: |
26c5 |
| :thunder_cloud_rain: | :thunder_cloud_rain: |
26c8 |
| :white_sun_small_cloud: | :white_sun_small_cloud: |
1f324 |
| :white_sun_cloud: | :white_sun_cloud: |
1f325 |
| :white_sun_rain_cloud: | :white_sun_rain_cloud: |
1f326 |
| :cloud_rain: | :cloud_rain: |
1f327 |
| :cloud_snow: | :cloud_snow: |
1f328 |
| :cloud_lightning: | :cloud_lightning: |
1f329 |
| :cloud_tornado: | :cloud_tornado: |
1f32a |
| ๐ซ๏ธ | :fog: |
1f32b |
| :wind_blowing_face: | :wind_blowing_face: |
1f32c |
| ๐ | :cyclone: |
1f300 |
| ๐ | :rainbow: |
1f308 |
| ๐ | :closed_umbrella: |
1f302 |
| :umbrella2: | :umbrella2: |
2602 |
| โ | :umbrella: |
2614 |
| ๐๏ธ | :beach_umbrella: |
26f1 |
| โก | :zap: |
26a1 |
| โ๏ธ | :snowflake: |
2744 |
| :snowman2: | :snowman2: |
2603 |
| โ | :snowman: |
26c4 |
| โ๏ธ | :comet: |
2604 |
| ๐ฅ | :fire: |
1f525 |
| ๐ง | :droplet: |
1f4a7 |
| ๐ | :ocean: |
1f30a |
| ๐ | :jack_o_lantern: |
1f383 |
| ๐ | :christmas_tree: |
1f384 |
| ๐ | :fireworks: |
1f386 |
| ๐ | :sparkler: |
1f387 |
| ๐งจ | :firecracker: |
1f9e8 |
| โจ | :sparkles: |
2728 |
| ๐ | :balloon: |
1f388 |
| ๐ | :tada: |
1f389 |
| ๐ | :confetti_ball: |
1f38a |
| ๐ | :tanabata_tree: |
1f38b |
| ๐ | :bamboo: |
1f38d |
| ๐ | :dolls: |
1f38e |
| ๐ | :flags: |
1f38f |
| ๐ | :wind_chime: |
1f390 |
| ๐ | :rice_scene: |
1f391 |
| ๐งง | :red_envelope: |
1f9e7 |
| ๐ | :ribbon: |
1f380 |
| ๐ | :gift: |
1f381 |
| ๐๏ธ | :reminder_ribbon: |
1f397 |
| ๐๏ธ | :tickets: |
1f39f |
| ๐ซ | :ticket: |
1f3ab |
| :military_medal: | :military_medal: |
1f396 |
| ๐ | :trophy: |
1f3c6 |
| :medal: | :medal: |
1f3c5 |
| :first_place: | :first_place: |
1f947 |
| :second_place: | :second_place: |
1f948 |
| :third_place: | :third_place: |
1f949 |
| โฝ | :soccer: |
26bd |
| โพ | :baseball: |
26be |
| ๐ฅ | :softball: |
1f94e |
| ๐ | :basketball: |
1f3c0 |
| ๐ | :volleyball: |
1f3d0 |
| ๐ | :football: |
1f3c8 |
| ๐ | :rugby_football: |
1f3c9 |
| ๐พ | :tennis: |
1f3be |
| ๐ฅ | :flying_disc: |
1f94f |
| ๐ณ | :bowling: |
1f3b3 |
| ๐ | :cricket_game: |
1f3cf |
| ๐ | :field_hockey: |
1f3d1 |
| :hockey: | :hockey: |
1f3d2 |
| ๐ฅ | :lacrosse: |
1f94d |
| ๐ | :ping_pong: |
1f3d3 |
| ๐ธ | :badminton: |
1f3f8 |
| ๐ฅ | :boxing_glove: |
1f94a |
| ๐ฅ | :martial_arts_uniform: |
1f94b |
| :goal: | :goal: |
1f945 |
| โณ | :golf: |
26f3 |
| โธ๏ธ | :ice_skate: |
26f8 |
| ๐ฃ | :fishing_pole_and_fish: |
1f3a3 |
| ๐คฟ | :diving_mask: |
1f93f |
| ๐ฝ | :running_shirt_with_sash: |
1f3bd |
| ๐ฟ | :ski: |
1f3bf |
| ๐ท | :sled: |
1f6f7 |
| ๐ฅ | :curling_stone: |
1f94c |
| ๐ฏ | :dart: |
1f3af |
| ๐ช | :yo_yo: |
1fa80 |
| ๐ช | :kite: |
1fa81 |
| ๐ซ | :gun: |
1f52b |
| ๐ฑ | :8ball: |
1f3b1 |
| ๐ฎ | :crystal_ball: |
1f52e |
| ๐ช | :magic_wand: |
1fa84 |
| ๐ฎ | :video_game: |
1f3ae |
| ๐น๏ธ | :joystick: |
1f579 |
| ๐ฐ | :slot_machine: |
1f3b0 |
| ๐ฒ | :game_die: |
1f3b2 |
| ๐งฉ | :jigsaw: |
1f9e9 |
| ๐งธ | :teddy_bear: |
1f9f8 |
| ๐ช | :pinata: |
1fa85 |
| ๐ชฉ | :mirror_ball: |
1faa9 |
| ๐ช | :nesting_dolls: |
1fa86 |
:spades: |
2660 |
|
:hearts: |
2665 |
|
:diamonds: |
2666 |
|
:clubs: |
2663 |
|
| โ๏ธ | :chess_pawn: |
265f |
| ๐ | :black_joker: |
1f0cf |
| ๐ | :mahjong: |
1f004 |
| ๐ด | :flower_playing_cards: |
1f3b4 |
| ๐ญ | :performing_arts: |
1f3ad |
| :frame_photo: | :frame_photo: |
1f5bc |
| ๐จ | :art: |
1f3a8 |
| ๐งต | :thread: |
1f9f5 |
| ๐ชก | :sewing_needle: |
1faa1 |
| ๐งถ | :yarn: |
1f9f6 |
| ๐ชข | :knot: |
1faa2 |
| ๐ | :eyeglasses: |
1f453 |
| ๐ถ๏ธ | :dark_sunglasses: |
1f576 |
| ๐ฅฝ | :goggles: |
1f97d |
| ๐ฅผ | :lab_coat: |
1f97c |
| ๐ฆบ | :safety_vest: |
1f9ba |
| ๐ | :necktie: |
1f454 |
| ๐ | :shirt: |
1f455 |
| ๐ | :jeans: |
1f456 |
| ๐งฃ | :scarf: |
1f9e3 |
| ๐งค | :gloves: |
1f9e4 |
| ๐งฅ | :coat: |
1f9e5 |
| ๐งฆ | :socks: |
1f9e6 |
| ๐ | :dress: |
1f457 |
| ๐ | :kimono: |
1f458 |
| ๐ฅป | :sari: |
1f97b |
| ๐ฉฑ | :one_piece_swimsuit: |
1fa71 |
| :briefs: | :briefs: |
1fa72 |
| ๐ฉณ | :shorts: |
1fa73 |
| ๐ | :bikini: |
1f459 |
| ๐ | :womans_clothes: |
1f45a |
| ๐ชญ | :folding_hand_fan: |
1faad |
| ๐ | :purse: |
1f45b |
| ๐ | :handbag: |
1f45c |
| ๐ | :pouch: |
1f45d |
| :shopping_bags: | :shopping_bags: |
1f6cd |
| ๐ | :school_satchel: |
1f392 |
| ๐ฉด | :thong_sandal: |
1fa74 |
| ๐ | :mans_shoe: |
1f45e |
| ๐ | :athletic_shoe: |
1f45f |
| ๐ฅพ | :hiking_boot: |
1f97e |
| :womans_flat_shoe: | :womans_flat_shoe: |
1f97f |
| ๐ | :high_heel: |
1f460 |
| ๐ก | :sandal: |
1f461 |
| ๐ฉฐ | :ballet_shoes: |
1fa70 |
| ๐ข | :boot: |
1f462 |
| ๐ชฎ | :hair_pick: |
1faae |
| ๐ | :crown: |
1f451 |
| ๐ | :womans_hat: |
1f452 |
| ๐ฉ | :tophat: |
1f3a9 |
| ๐ | :mortar_board: |
1f393 |
| ๐งข | :billed_cap: |
1f9e2 |
| ๐ช | :military_helmet: |
1fa96 |
| :helmet_with_cross: | :helmet_with_cross: |
26d1 |
| ๐ฟ | :prayer_beads: |
1f4ff |
| ๐ | :lipstick: |
1f484 |
| ๐ | :ring: |
1f48d |
| ๐ | :gem: |
1f48e |
| ๐ | :mute: |
1f507 |
| ๐ | :speaker: |
1f508 |
| ๐ | :sound: |
1f509 |
| ๐ | :loud_sound: |
1f50a |
| ๐ข | :loudspeaker: |
1f4e2 |
| ๐ฃ | :mega: |
1f4e3 |
| ๐ฏ | :postal_horn: |
1f4ef |
| ๐ | :bell: |
1f514 |
| ๐ | :no_bell: |
1f515 |
| ๐ผ | :musical_score: |
1f3bc |
| ๐ต | :musical_note: |
1f3b5 |
| ๐ถ | :notes: |
1f3b6 |
| :microphone2: | :microphone2: |
1f399 |
| ๐๏ธ | :level_slider: |
1f39a |
| ๐๏ธ | :control_knobs: |
1f39b |
| ๐ค | :microphone: |
1f3a4 |
| ๐ง | :headphones: |
1f3a7 |
| ๐ป | :radio: |
1f4fb |
| ๐ท | :saxophone: |
1f3b7 |
| ๐ช | :accordion: |
1fa97 |
| ๐ธ | :guitar: |
1f3b8 |
| ๐น | :musical_keyboard: |
1f3b9 |
| ๐บ | :trumpet: |
1f3ba |
| ๐ป | :violin: |
1f3bb |
| ๐ช | :banjo: |
1fa95 |
| ๐ฅ | :drum: |
1f941 |
| ๐ช | :long_drum: |
1fa98 |
| ๐ช | :maracas: |
1fa87 |
| ๐ช | :flute: |
1fa88 |
| :mobile_phone: | :mobile_phone: |
1f4f1 |
| ๐ฒ | :calling: |
1f4f2 |
| โ๏ธ | :telephone: |
260e |
| ๐ | :telephone_receiver: |
1f4de |
| ๐ | :pager: |
1f4df |
| ๐ | :fax: |
1f4e0 |
| ๐ | :battery: |
1f50b |
| ๐ชซ | :low_battery: |
1faab |
| ๐ | :electric_plug: |
1f50c |
| ๐ป | :computer: |
1f4bb |
| :desktop: | :desktop: |
1f5a5 |
| ๐จ๏ธ | :printer: |
1f5a8 |
| โจ๏ธ | :keyboard: |
2328 |
| :mouse_three_button: | :mouse_three_button: |
1f5b1 |
| ๐ฒ๏ธ | :trackball: |
1f5b2 |
| ๐ฝ | :minidisc: |
1f4bd |
| ๐พ | :floppy_disk: |
1f4be |
| ๐ฟ | :cd: |
1f4bf |
| ๐ | :dvd: |
1f4c0 |
| ๐งฎ | :abacus: |
1f9ee |
| ๐ฅ | :movie_camera: |
1f3a5 |
| :film_frames: | :film_frames: |
1f39e |
| :projector: | :projector: |
1f4fd |
| ๐ฌ | :clapper: |
1f3ac |
| ๐บ | :tv: |
1f4fa |
| ๐ท | :camera: |
1f4f7 |
| :camera_with_flash: | :camera_with_flash: |
1f4f8 |
| ๐น | :video_camera: |
1f4f9 |
| ๐ผ | :vhs: |
1f4fc |
| ๐ | :mag: |
1f50d |
| ๐ | :mag_right: |
1f50e |
| ๐ฏ๏ธ | :candle: |
1f56f |
| ๐ก | :bulb: |
1f4a1 |
| ๐ฆ | :flashlight: |
1f526 |
| ๐ฎ | :izakaya_lantern: |
1f3ee |
| ๐ช | :diya_lamp: |
1fa94 |
| ๐ | :notebook_with_decorative_cover: |
1f4d4 |
| ๐ | :closed_book: |
1f4d5 |
| ๐ | :book: |
1f4d6 |
| ๐ | :green_book: |
1f4d7 |
| ๐ | :blue_book: |
1f4d8 |
| ๐ | :orange_book: |
1f4d9 |
| ๐ | :books: |
1f4da |
| ๐ | :notebook: |
1f4d3 |
| ๐ | :ledger: |
1f4d2 |
| ๐ | :page_with_curl: |
1f4c3 |
| ๐ | :scroll: |
1f4dc |
| ๐ | :page_facing_up: |
1f4c4 |
| ๐ฐ | :newspaper: |
1f4f0 |
| :newspaper2: | :newspaper2: |
1f5de |
| ๐ | :bookmark_tabs: |
1f4d1 |
| ๐ | :bookmark: |
1f516 |
| ๐ท๏ธ | :label: |
1f3f7 |
| ๐ฐ | :moneybag: |
1f4b0 |
| ๐ช | :coin: |
1fa99 |
| ๐ด | :yen: |
1f4b4 |
| ๐ต | :dollar: |
1f4b5 |
| ๐ถ | :euro: |
1f4b6 |
| ๐ท | :pound: |
1f4b7 |
| ๐ธ | :money_with_wings: |
1f4b8 |
| ๐ณ | :credit_card: |
1f4b3 |
| ๐งพ | :receipt: |
1f9fe |
| ๐น | :chart: |
1f4b9 |
| โ๏ธ | :envelope: |
2709 |
| ๐ง | :e-mail: |
1f4e7 |
| ๐จ | :incoming_envelope: |
1f4e8 |
| ๐ฉ | :envelope_with_arrow: |
1f4e9 |
| ๐ค | :outbox_tray: |
1f4e4 |
| ๐ฅ | :inbox_tray: |
1f4e5 |
| ๐ฆ | :package: |
1f4e6 |
| ๐ซ | :mailbox: |
1f4eb |
| ๐ช | :mailbox_closed: |
1f4ea |
| ๐ฌ | :mailbox_with_mail: |
1f4ec |
| ๐ญ | :mailbox_with_no_mail: |
1f4ed |
| ๐ฎ | :postbox: |
1f4ee |
| ๐ณ๏ธ | :ballot_box: |
1f5f3 |
| โ๏ธ | :pencil2: |
270f |
| โ๏ธ | :black_nib: |
2712 |
| :pen_fountain: | :pen_fountain: |
1f58b |
| :pen_ballpoint: | :pen_ballpoint: |
1f58a |
| ๐๏ธ | :paintbrush: |
1f58c |
| ๐๏ธ | :crayon: |
1f58d |
| ๐ | :pencil: |
1f4dd |
| ๐ผ | :briefcase: |
1f4bc |
| ๐ | :file_folder: |
1f4c1 |
| ๐ | :open_file_folder: |
1f4c2 |
| :dividers: | :dividers: |
1f5c2 |
| ๐ | :date: |
1f4c5 |
| ๐ | :calendar: |
1f4c6 |
| :notepad_spiral: | :notepad_spiral: |
1f5d2 |
| :calendar_spiral: | :calendar_spiral: |
1f5d3 |
| ๐ | :card_index: |
1f4c7 |
| ๐ | :chart_with_upwards_trend: |
1f4c8 |
| ๐ | :chart_with_downwards_trend: |
1f4c9 |
| ๐ | :bar_chart: |
1f4ca |
| ๐ | :clipboard: |
1f4cb |
| ๐ | :pushpin: |
1f4cc |
| ๐ | :round_pushpin: |
1f4cd |
| ๐ | :paperclip: |
1f4ce |
| ๐๏ธ | :paperclips: |
1f587 |
| ๐ | :straight_ruler: |
1f4cf |
| ๐ | :triangular_ruler: |
1f4d0 |
| โ๏ธ | :scissors: |
2702 |
| :card_box: | :card_box: |
1f5c3 |
| ๐๏ธ | :file_cabinet: |
1f5c4 |
| ๐๏ธ | :wastebasket: |
1f5d1 |
| ๐ | :lock: |
1f512 |
| ๐ | :unlock: |
1f513 |
| ๐ | :lock_with_ink_pen: |
1f50f |
| ๐ | :closed_lock_with_key: |
1f510 |
| ๐ | :key: |
1f511 |
| :key2: | :key2: |
1f5dd |
| ๐จ | :hammer: |
1f528 |
| ๐ช | :axe: |
1fa93 |
| โ๏ธ | :pick: |
26cf |
| :hammer_pick: | :hammer_pick: |
2692 |
| :tools: | :tools: |
1f6e0 |
| ๐ก๏ธ | :dagger: |
1f5e1 |
| โ๏ธ | :crossed_swords: |
2694 |
| ๐ฃ | :bomb: |
1f4a3 |
| ๐ช | :boomerang: |
1fa83 |
| ๐น | :bow_and_arrow: |
1f3f9 |
| ๐ก๏ธ | :shield: |
1f6e1 |
| ๐ช | :carpentry_saw: |
1fa9a |
| ๐ง | :wrench: |
1f527 |
| ๐ช | :screwdriver: |
1fa9b |
| ๐ฉ | :nut_and_bolt: |
1f529 |
| โ๏ธ | :gear: |
2699 |
| :compression: | :compression: |
1f5dc |
| :scales: | :scales: |
2696 |
| ๐ฆฏ | :probing_cane: |
1f9af |
| ๐ | :link: |
1f517 |
| โ๏ธ | :chains: |
26d3 |
| ๐ช | :hook: |
1fa9d |
| ๐งฐ | :toolbox: |
1f9f0 |
| ๐งฒ | :magnet: |
1f9f2 |
| ๐ช | :ladder: |
1fa9c |
| โ๏ธ | :alembic: |
2697 |
| ๐งช | :test_tube: |
1f9ea |
| ๐งซ | :petri_dish: |
1f9eb |
| ๐งฌ | :dna: |
1f9ec |
| ๐ฌ | :microscope: |
1f52c |
| ๐ญ | :telescope: |
1f52d |
| ๐ก | :satellite: |
1f4e1 |
| ๐ | :syringe: |
1f489 |
| ๐ฉธ | :drop_of_blood: |
1fa78 |
| ๐ | :pill: |
1f48a |
| ๐ฉน | :adhesive_bandage: |
1fa79 |
| ๐ฉผ | :crutch: |
1fa7c |
| ๐ฉบ | :stethoscope: |
1fa7a |
| ๐ฉป | :x_ray: |
1fa7b |
| ๐ช | :door: |
1f6aa |
| ๐ | :elevator: |
1f6d7 |
| ๐ช | :mirror: |
1fa9e |
| ๐ช | :window: |
1fa9f |
| ๐๏ธ | :bed: |
1f6cf |
| :couch: | :couch: |
1f6cb |
| ๐ช | :chair: |
1fa91 |
| ๐ฝ | :toilet: |
1f6bd |
| ๐ช | :plunger: |
1faa0 |
| ๐ฟ | :shower: |
1f6bf |
| ๐ | :bathtub: |
1f6c1 |
| ๐ชค | :mouse_trap: |
1faa4 |
| ๐ช | :razor: |
1fa92 |
| :squeeze_bottle: | :squeeze_bottle: |
1f9f4 |
| ๐งท | :safety_pin: |
1f9f7 |
| ๐งน | :broom: |
1f9f9 |
| ๐งบ | :basket: |
1f9fa |
| ๐งป | :roll_of_paper: |
1f9fb |
| ๐ชฃ | :bucket: |
1faa3 |
| ๐งผ | :soap: |
1f9fc |
| ๐ซง | :bubbles: |
1fae7 |
| ๐ชฅ | :toothbrush: |
1faa5 |
| ๐งฝ | :sponge: |
1f9fd |
| ๐งฏ | :fire_extinguisher: |
1f9ef |
| ๐ | :shopping_cart: |
1f6d2 |
| ๐ฌ | :smoking: |
1f6ac |
| โฐ๏ธ | :coffin: |
26b0 |
| ๐ชฆ | :headstone: |
1faa6 |
| :urn: | :urn: |
26b1 |
| ๐งฟ | :nazar_amulet: |
1f9ff |
| ๐ชฌ | :hamsa: |
1faac |
| ๐ฟ | :moyai: |
1f5ff |
| ๐ชง | :placard: |
1faa7 |
| ๐ชช | :identification_card: |
1faaa |
| ๐ง | :atm: |
1f3e7 |
| ๐ฎ | :put_litter_in_its_place: |
1f6ae |
| ๐ฐ | :potable_water: |
1f6b0 |
| โฟ | :wheelchair: |
267f |
| ๐น | :mens: |
1f6b9 |
| ๐บ | :womens: |
1f6ba |
| ๐ป | :restroom: |
1f6bb |
| ๐ผ | :baby_symbol: |
1f6bc |
| ๐พ | :wc: |
1f6be |
| ๐ | :passport_control: |
1f6c2 |
| ๐ | :customs: |
1f6c3 |
| ๐ | :baggage_claim: |
1f6c4 |
| ๐ | :left_luggage: |
1f6c5 |
:warning: |
26a0 |
|
| ๐ธ | :children_crossing: |
1f6b8 |
| โ | :no_entry: |
26d4 |
| ๐ซ | :no_entry_sign: |
1f6ab |
| ๐ณ | :no_bicycles: |
1f6b3 |
| ๐ญ | :no_smoking: |
1f6ad |
| ๐ฏ | :do_not_litter: |
1f6af |
| ๐ฑ | :non-potable_water: |
1f6b1 |
| ๐ท | :no_pedestrians: |
1f6b7 |
| ๐ต | :no_mobile_phones: |
1f4f5 |
| ๐ | :underage: |
1f51e |
| โข๏ธ | :radioactive: |
2622 |
| โฃ๏ธ | :biohazard: |
2623 |
| โฌ๏ธ | :arrow_up: |
2b06 |
:arrow_upper_right: |
2197 |
|
| โก๏ธ | :arrow_right: |
27a1 |
:arrow_lower_right: |
2198 |
|
| โฌ๏ธ | :arrow_down: |
2b07 |
:arrow_lower_left: |
2199 |
|
| โฌ ๏ธ | :arrow_left: |
2b05 |
:arrow_upper_left: |
2196 |
|
:arrow_up_down: |
2195 |
|
:left_right_arrow: |
2194 |
|
| โฉ๏ธ | :leftwards_arrow_with_hook: |
21a9 |
| โช๏ธ | :arrow_right_hook: |
21aa |
:arrow_heading_up: |
2934 |
|
:arrow_heading_down: |
2935 |
|
| ๐ | :arrows_clockwise: |
1f503 |
| ๐ | :arrows_counterclockwise: |
1f504 |
| ๐ | :back: |
1f519 |
| ๐ | :end: |
1f51a |
| ๐ | :on: |
1f51b |
| ๐ | :soon: |
1f51c |
| ๐ | :top: |
1f51d |
| ๐ | :place_of_worship: |
1f6d0 |
:atom: |
269b |
|
| :om_symbol: | :om_symbol: |
1f549 |
| โก๏ธ | :star_of_david: |
2721 |
| โธ๏ธ | :wheel_of_dharma: |
2638 |
| โฏ๏ธ | :yin_yang: |
262f |
| :cross: | :cross: |
271d |
| โฆ๏ธ | :orthodox_cross: |
2626 |
| โช๏ธ | :star_and_crescent: |
262a |
| :peace: | :peace: |
262e |
| ๐ | :menorah: |
1f54e |
| ๐ฏ | :six_pointed_star: |
1f52f |
| ๐ชฏ | :khanda: |
1faaf |
| โ | :aries: |
2648 |
| โ | :taurus: |
2649 |
| โ | :gemini: |
264a |
| โ | :cancer: |
264b |
| โ | :leo: |
264c |
| โ | :virgo: |
264d |
| โ | :libra: |
264e |
| โ | :scorpius: |
264f |
| โ | :sagittarius: |
2650 |
| โ | :capricorn: |
2651 |
| โ | :aquarius: |
2652 |
| โ | :pisces: |
2653 |
| โ | :ophiuchus: |
26ce |
| ๐ | :twisted_rightwards_arrows: |
1f500 |
| ๐ | :repeat: |
1f501 |
| ๐ | :repeat_one: |
1f502 |
:arrow_forward: |
25b6 |
|
| โฉ | :fast_forward: |
23e9 |
| :track_next: | :track_next: |
23ed |
| :play_pause: | :play_pause: |
23ef |
:arrow_backward: |
25c0 |
|
| โช | :rewind: |
23ea |
| :track_previous: | :track_previous: |
23ee |
| ๐ผ | :arrow_up_small: |
1f53c |
| โซ | :arrow_double_up: |
23eb |
| ๐ฝ | :arrow_down_small: |
1f53d |
| โฌ | :arrow_double_down: |
23ec |
| โธ๏ธ | :pause_button: |
23f8 |
| โน๏ธ | :stop_button: |
23f9 |
| โบ๏ธ | :record_button: |
23fa |
| :eject: | :eject: |
23cf |
| ๐ฆ | :cinema: |
1f3a6 |
| ๐ | :low_brightness: |
1f505 |
| ๐ | :high_brightness: |
1f506 |
| ๐ถ | :signal_strength: |
1f4f6 |
| ๐ | :wireless: |
1f6dc |
| ๐ณ | :vibration_mode: |
1f4f3 |
| ๐ด | :mobile_phone_off: |
1f4f4 |
| โ๏ธ | :female_sign: |
2640 |
| โ๏ธ | :male_sign: |
2642 |
| โง๏ธ | :transgender_symbol: |
26a7 |
| โ๏ธ | :heavy_multiplication_x: |
2716 |
| โ | :heavy_plus_sign: |
2795 |
| โ | :heavy_minus_sign: |
2796 |
| โ | :heavy_division_sign: |
2797 |
| ๐ฐ | :heavy_equals_sign: |
1f7f0 |
| โพ๏ธ | :infinity: |
267e |
:bangbang: |
203c |
|
:interrobang: |
2049 |
|
| โ | :question: |
2753 |
| โ | :grey_question: |
2754 |
| โ | :grey_exclamation: |
2755 |
| โ | :exclamation: |
2757 |
| ใฐ๏ธ | :wavy_dash: |
3030 |
| ๐ฑ | :currency_exchange: |
1f4b1 |
| ๐ฒ | :heavy_dollar_sign: |
1f4b2 |
| โ๏ธ | :medical_symbol: |
2695 |
| โป๏ธ | :recycle: |
267b |
| :fleur-de-lis: | :fleur-de-lis: |
269c |
| ๐ฑ | :trident: |
1f531 |
| ๐ | :name_badge: |
1f4db |
| ๐ฐ | :beginner: |
1f530 |
| โญ | :o: |
2b55 |
| โ | :white_check_mark: |
2705 |
| โ๏ธ | :ballot_box_with_check: |
2611 |
| โ๏ธ | :heavy_check_mark: |
2714 |
| โ | :x: |
274c |
| โ | :negative_squared_cross_mark: |
274e |
| โฐ | :curly_loop: |
27b0 |
| โฟ | :loop: |
27bf |
| ใฝ๏ธ | :part_alternation_mark: |
303d |
| โณ๏ธ | :eight_spoked_asterisk: |
2733 |
| โด๏ธ | :eight_pointed_black_star: |
2734 |
| โ๏ธ | :sparkle: |
2747 |
| ยฉ๏ธ | :copyright: |
a9 |
| ยฎ๏ธ | :registered: |
ae |
| โข๏ธ | :tm: |
2122 |
| #๏ธโฃ | :hash: |
23-20e3 |
| *๏ธโฃ | :asterisk: |
2a-20e3 |
| 0๏ธโฃ | :zero: |
30-20e3 |
| 1๏ธโฃ | :one: |
31-20e3 |
| 2๏ธโฃ | :two: |
32-20e3 |
| 3๏ธโฃ | :three: |
33-20e3 |
| 4๏ธโฃ | :four: |
34-20e3 |
| 5๏ธโฃ | :five: |
35-20e3 |
| 6๏ธโฃ | :six: |
36-20e3 |
| 7๏ธโฃ | :seven: |
37-20e3 |
| 8๏ธโฃ | :eight: |
38-20e3 |
| 9๏ธโฃ | :nine: |
39-20e3 |
| ๐ | :keycap_ten: |
1f51f |
| ๐ | :capital_abcd: |
1f520 |
| ๐ก | :abcd: |
1f521 |
| ๐ข | :1234: |
1f522 |
| ๐ฃ | :symbols: |
1f523 |
| ๐ค | :abc: |
1f524 |
:a: |
1f170 |
|
| ๐ | :ab: |
1f18e |
:b: |
1f171 |
|
| ๐ | :cl: |
1f191 |
| ๐ | :cool: |
1f192 |
| ๐ | :free: |
1f193 |
| โน๏ธ | :information_source: |
2139 |
| ๐ | :id: |
1f194 |
:m: |
24c2 |
|
| ๐ | :new: |
1f195 |
| ๐ | :ng: |
1f196 |
:o2: |
1f17e |
|
| ๐ | :ok: |
1f197 |
:parking: |
1f17f |
|
| ๐ | :sos: |
1f198 |
| ๐ | :up: |
1f199 |
| ๐ | :vs: |
1f19a |
| ๐ | :koko: |
1f201 |
| ๐๏ธ | :sa: |
1f202 |
| ๐ท๏ธ | :u6708: |
1f237 |
| ๐ถ | :u6709: |
1f236 |
| ๐ฏ | :u6307: |
1f22f |
| ๐ | :ideograph_advantage: |
1f250 |
| ๐น | :u5272: |
1f239 |
| ๐ | :u7121: |
1f21a |
| ๐ฒ | :u7981: |
1f232 |
| ๐ | :accept: |
1f251 |
| ๐ธ | :u7533: |
1f238 |
| ๐ด | :u5408: |
1f234 |
| ๐ณ | :u7a7a: |
1f233 |
| ใ๏ธ | :congratulations: |
3297 |
| ใ๏ธ | :secret: |
3299 |
| ๐บ | :u55b6: |
1f23a |
| ๐ต | :u6e80: |
1f235 |
| ๐ด | :red_circle: |
1f534 |
| ๐ | :orange_circle: |
1f7e0 |
| ๐ก | :yellow_circle: |
1f7e1 |
| ๐ข | :green_circle: |
1f7e2 |
| :blue_circle: | :blue_circle: |
1f535 |
| ๐ฃ | :purple_circle: |
1f7e3 |
| ๐ค | :brown_circle: |
1f7e4 |
| โซ | :black_circle: |
26ab |
| โช | :white_circle: |
26aa |
| ๐ฅ | :red_square: |
1f7e5 |
| ๐ง | :orange_square: |
1f7e7 |
| ๐จ | :yellow_square: |
1f7e8 |
| ๐ฉ | :green_square: |
1f7e9 |
| ๐ฆ | :blue_square: |
1f7e6 |
| ๐ช | :purple_square: |
1f7ea |
| ๐ซ | :brown_square: |
1f7eb |
| โฌ | :black_large_square: |
2b1b |
| โฌ | :white_large_square: |
2b1c |
| โผ๏ธ | :black_medium_square: |
25fc |
| โป๏ธ | :white_medium_square: |
25fb |
| โพ | :black_medium_small_square: |
25fe |
| โฝ | :white_medium_small_square: |
25fd |
| โช๏ธ | :black_small_square: |
25aa |
| โซ๏ธ | :white_small_square: |
25ab |
| ๐ถ | :large_orange_diamond: |
1f536 |
| ๐ท | :large_blue_diamond: |
1f537 |
| ๐ธ | :small_orange_diamond: |
1f538 |
| ๐น | :small_blue_diamond: |
1f539 |
| ๐บ | :small_red_triangle: |
1f53a |
| ๐ป | :small_red_triangle_down: |
1f53b |
| ๐ | :diamond_shape_with_a_dot_inside: |
1f4a0 |
| ๐ | :radio_button: |
1f518 |
| ๐ณ | :white_square_button: |
1f533 |
| ๐ฒ | :black_square_button: |
1f532 |
| ๐ | :checkered_flag: |
1f3c1 |
| ๐ฉ | :triangular_flag_on_post: |
1f6a9 |
| ๐ | :crossed_flags: |
1f38c |
| :flag_black: | :flag_black: |
1f3f4 |
| :flag_white: | :flag_white: |
1f3f3 |
| ๐ณ๏ธโ๐ | :rainbow_flag: |
1f3f3-fe0f-200d-1f308 |
| ๐ณ๏ธโโง๏ธ | :transgender_flag: |
1f3f3-fe0f-200d-26a7-fe0f |
| ๐ดโโ ๏ธ | :pirate_flag: |
1f3f4-200d-2620-fe0f |
| :flag_ac: | :flag_ac: |
1f1e6-1f1e8 |
| :flag_ad: | :flag_ad: |
1f1e6-1f1e9 |
| :flag_ae: | :flag_ae: |
1f1e6-1f1ea |
| :flag_af: | :flag_af: |
1f1e6-1f1eb |
| :flag_ag: | :flag_ag: |
1f1e6-1f1ec |
| :flag_ai: | :flag_ai: |
1f1e6-1f1ee |
| :flag_al: | :flag_al: |
1f1e6-1f1f1 |
| :flag_am: | :flag_am: |
1f1e6-1f1f2 |
| :flag_ao: | :flag_ao: |
1f1e6-1f1f4 |
| :flag_aq: | :flag_aq: |
1f1e6-1f1f6 |
| :flag_ar: | :flag_ar: |
1f1e6-1f1f7 |
| :flag_as: | :flag_as: |
1f1e6-1f1f8 |
| :flag_at: | :flag_at: |
1f1e6-1f1f9 |
| :flag_au: | :flag_au: |
1f1e6-1f1fa |
| :flag_aw: | :flag_aw: |
1f1e6-1f1fc |
| :flag_ax: | :flag_ax: |
1f1e6-1f1fd |
| :flag_az: | :flag_az: |
1f1e6-1f1ff |
| :flag_ba: | :flag_ba: |
1f1e7-1f1e6 |
| :flag_bb: | :flag_bb: |
1f1e7-1f1e7 |
| :flag_bd: | :flag_bd: |
1f1e7-1f1e9 |
| :flag_be: | :flag_be: |
1f1e7-1f1ea |
| :flag_bf: | :flag_bf: |
1f1e7-1f1eb |
| :flag_bg: | :flag_bg: |
1f1e7-1f1ec |
| :flag_bh: | :flag_bh: |
1f1e7-1f1ed |
| :flag_bi: | :flag_bi: |
1f1e7-1f1ee |
| :flag_bj: | :flag_bj: |
1f1e7-1f1ef |
| :flag_bl: | :flag_bl: |
1f1e7-1f1f1 |
| :flag_bm: | :flag_bm: |
1f1e7-1f1f2 |
| :flag_bn: | :flag_bn: |
1f1e7-1f1f3 |
| :flag_bo: | :flag_bo: |
1f1e7-1f1f4 |
| :flag_bq: | :flag_bq: |
1f1e7-1f1f6 |
| :flag_br: | :flag_br: |
1f1e7-1f1f7 |
| :flag_bs: | :flag_bs: |
1f1e7-1f1f8 |
| :flag_bt: | :flag_bt: |
1f1e7-1f1f9 |
| :flag_bv: | :flag_bv: |
1f1e7-1f1fb |
| :flag_bw: | :flag_bw: |
1f1e7-1f1fc |
| :flag_by: | :flag_by: |
1f1e7-1f1fe |
| :flag_bz: | :flag_bz: |
1f1e7-1f1ff |
| :flag_ca: | :flag_ca: |
1f1e8-1f1e6 |
| :flag_cc: | :flag_cc: |
1f1e8-1f1e8 |
| :flag_cd: | :flag_cd: |
1f1e8-1f1e9 |
| :flag_cf: | :flag_cf: |
1f1e8-1f1eb |
| :flag_cg: | :flag_cg: |
1f1e8-1f1ec |
| :flag_ch: | :flag_ch: |
1f1e8-1f1ed |
| :flag_ci: | :flag_ci: |
1f1e8-1f1ee |
| :flag_ck: | :flag_ck: |
1f1e8-1f1f0 |
| :flag_cl: | :flag_cl: |
1f1e8-1f1f1 |
| :flag_cm: | :flag_cm: |
1f1e8-1f1f2 |
| :flag_cn: | :flag_cn: |
1f1e8-1f1f3 |
| :flag_co: | :flag_co: |
1f1e8-1f1f4 |
| :flag_cp: | :flag_cp: |
1f1e8-1f1f5 |
| :flag_cr: | :flag_cr: |
1f1e8-1f1f7 |
| :flag_cu: | :flag_cu: |
1f1e8-1f1fa |
| :flag_cv: | :flag_cv: |
1f1e8-1f1fb |
| :flag_cw: | :flag_cw: |
1f1e8-1f1fc |
| :flag_cx: | :flag_cx: |
1f1e8-1f1fd |
| :flag_cy: | :flag_cy: |
1f1e8-1f1fe |
| :flag_cz: | :flag_cz: |
1f1e8-1f1ff |
| :flag_de: | :flag_de: |
1f1e9-1f1ea |
| :flag_dg: | :flag_dg: |
1f1e9-1f1ec |
| :flag_dj: | :flag_dj: |
1f1e9-1f1ef |
| :flag_dk: | :flag_dk: |
1f1e9-1f1f0 |
| :flag_dm: | :flag_dm: |
1f1e9-1f1f2 |
| :flag_do: | :flag_do: |
1f1e9-1f1f4 |
| :flag_dz: | :flag_dz: |
1f1e9-1f1ff |
| :flag_ea: | :flag_ea: |
1f1ea-1f1e6 |
| :flag_ec: | :flag_ec: |
1f1ea-1f1e8 |
| :flag_ee: | :flag_ee: |
1f1ea-1f1ea |
| :flag_eg: | :flag_eg: |
1f1ea-1f1ec |
| :flag_eh: | :flag_eh: |
1f1ea-1f1ed |
| :flag_er: | :flag_er: |
1f1ea-1f1f7 |
| :flag_es: | :flag_es: |
1f1ea-1f1f8 |
| :flag_et: | :flag_et: |
1f1ea-1f1f9 |
| :flag_eu: | :flag_eu: |
1f1ea-1f1fa |
| :flag_fi: | :flag_fi: |
1f1eb-1f1ee |
| :flag_fj: | :flag_fj: |
1f1eb-1f1ef |
| :flag_fk: | :flag_fk: |
1f1eb-1f1f0 |
| :flag_fm: | :flag_fm: |
1f1eb-1f1f2 |
| :flag_fo: | :flag_fo: |
1f1eb-1f1f4 |
| :flag_fr: | :flag_fr: |
1f1eb-1f1f7 |
| :flag_ga: | :flag_ga: |
1f1ec-1f1e6 |
| :flag_gb: | :flag_gb: |
1f1ec-1f1e7 |
| :flag_gd: | :flag_gd: |
1f1ec-1f1e9 |
| :flag_ge: | :flag_ge: |
1f1ec-1f1ea |
| :flag_gf: | :flag_gf: |
1f1ec-1f1eb |
| :flag_gg: | :flag_gg: |
1f1ec-1f1ec |
| :flag_gh: | :flag_gh: |
1f1ec-1f1ed |
| :flag_gi: | :flag_gi: |
1f1ec-1f1ee |
| :flag_gl: | :flag_gl: |
1f1ec-1f1f1 |
| :flag_gm: | :flag_gm: |
1f1ec-1f1f2 |
| :flag_gn: | :flag_gn: |
1f1ec-1f1f3 |
| :flag_gp: | :flag_gp: |
1f1ec-1f1f5 |
| :flag_gq: | :flag_gq: |
1f1ec-1f1f6 |
| :flag_gr: | :flag_gr: |
1f1ec-1f1f7 |
| :flag_gs: | :flag_gs: |
1f1ec-1f1f8 |
| :flag_gt: | :flag_gt: |
1f1ec-1f1f9 |
| :flag_gu: | :flag_gu: |
1f1ec-1f1fa |
| :flag_gw: | :flag_gw: |
1f1ec-1f1fc |
| :flag_gy: | :flag_gy: |
1f1ec-1f1fe |
| :flag_hk: | :flag_hk: |
1f1ed-1f1f0 |
| :flag_hm: | :flag_hm: |
1f1ed-1f1f2 |
| :flag_hn: | :flag_hn: |
1f1ed-1f1f3 |
| :flag_hr: | :flag_hr: |
1f1ed-1f1f7 |
| :flag_ht: | :flag_ht: |
1f1ed-1f1f9 |
| :flag_hu: | :flag_hu: |
1f1ed-1f1fa |
| :flag_ic: | :flag_ic: |
1f1ee-1f1e8 |
| :flag_id: | :flag_id: |
1f1ee-1f1e9 |
| :flag_ie: | :flag_ie: |
1f1ee-1f1ea |
| :flag_il: | :flag_il: |
1f1ee-1f1f1 |
| :flag_im: | :flag_im: |
1f1ee-1f1f2 |
| :flag_in: | :flag_in: |
1f1ee-1f1f3 |
| :flag_io: | :flag_io: |
1f1ee-1f1f4 |
| :flag_iq: | :flag_iq: |
1f1ee-1f1f6 |
| :flag_ir: | :flag_ir: |
1f1ee-1f1f7 |
| :flag_is: | :flag_is: |
1f1ee-1f1f8 |
| :flag_it: | :flag_it: |
1f1ee-1f1f9 |
| :flag_je: | :flag_je: |
1f1ef-1f1ea |
| :flag_jm: | :flag_jm: |
1f1ef-1f1f2 |
| :flag_jo: | :flag_jo: |
1f1ef-1f1f4 |
| :flag_jp: | :flag_jp: |
1f1ef-1f1f5 |
| :flag_ke: | :flag_ke: |
1f1f0-1f1ea |
| :flag_kg: | :flag_kg: |
1f1f0-1f1ec |
| :flag_kh: | :flag_kh: |
1f1f0-1f1ed |
| :flag_ki: | :flag_ki: |
1f1f0-1f1ee |
| :flag_km: | :flag_km: |
1f1f0-1f1f2 |
| :flag_kn: | :flag_kn: |
1f1f0-1f1f3 |
| :flag_kp: | :flag_kp: |
1f1f0-1f1f5 |
| :flag_kr: | :flag_kr: |
1f1f0-1f1f7 |
| :flag_kw: | :flag_kw: |
1f1f0-1f1fc |
| :flag_ky: | :flag_ky: |
1f1f0-1f1fe |
| :flag_kz: | :flag_kz: |
1f1f0-1f1ff |
| :flag_la: | :flag_la: |
1f1f1-1f1e6 |
| :flag_lb: | :flag_lb: |
1f1f1-1f1e7 |
| :flag_lc: | :flag_lc: |
1f1f1-1f1e8 |
| :flag_li: | :flag_li: |
1f1f1-1f1ee |
| :flag_lk: | :flag_lk: |
1f1f1-1f1f0 |
| :flag_lr: | :flag_lr: |
1f1f1-1f1f7 |
| :flag_ls: | :flag_ls: |
1f1f1-1f1f8 |
| :flag_lt: | :flag_lt: |
1f1f1-1f1f9 |
| :flag_lu: | :flag_lu: |
1f1f1-1f1fa |
| :flag_lv: | :flag_lv: |
1f1f1-1f1fb |
| :flag_ly: | :flag_ly: |
1f1f1-1f1fe |
| :flag_ma: | :flag_ma: |
1f1f2-1f1e6 |
| :flag_mc: | :flag_mc: |
1f1f2-1f1e8 |
| :flag_md: | :flag_md: |
1f1f2-1f1e9 |
| :flag_me: | :flag_me: |
1f1f2-1f1ea |
| :flag_mf: | :flag_mf: |
1f1f2-1f1eb |
| :flag_mg: | :flag_mg: |
1f1f2-1f1ec |
| :flag_mh: | :flag_mh: |
1f1f2-1f1ed |
| :flag_mk: | :flag_mk: |
1f1f2-1f1f0 |
| :flag_ml: | :flag_ml: |
1f1f2-1f1f1 |
| :flag_mm: | :flag_mm: |
1f1f2-1f1f2 |
| :flag_mn: | :flag_mn: |
1f1f2-1f1f3 |
| :flag_mo: | :flag_mo: |
1f1f2-1f1f4 |
| :flag_mp: | :flag_mp: |
1f1f2-1f1f5 |
| :flag_mq: | :flag_mq: |
1f1f2-1f1f6 |
| :flag_mr: | :flag_mr: |
1f1f2-1f1f7 |
| :flag_ms: | :flag_ms: |
1f1f2-1f1f8 |
| :flag_mt: | :flag_mt: |
1f1f2-1f1f9 |
| :flag_mu: | :flag_mu: |
1f1f2-1f1fa |
| :flag_mv: | :flag_mv: |
1f1f2-1f1fb |
| :flag_mw: | :flag_mw: |
1f1f2-1f1fc |
| :flag_mx: | :flag_mx: |
1f1f2-1f1fd |
| :flag_my: | :flag_my: |
1f1f2-1f1fe |
| :flag_mz: | :flag_mz: |
1f1f2-1f1ff |
| :flag_na: | :flag_na: |
1f1f3-1f1e6 |
| :flag_nc: | :flag_nc: |
1f1f3-1f1e8 |
| :flag_ne: | :flag_ne: |
1f1f3-1f1ea |
| :flag_nf: | :flag_nf: |
1f1f3-1f1eb |
| :flag_ng: | :flag_ng: |
1f1f3-1f1ec |
| :flag_ni: | :flag_ni: |
1f1f3-1f1ee |
| :flag_nl: | :flag_nl: |
1f1f3-1f1f1 |
| :flag_no: | :flag_no: |
1f1f3-1f1f4 |
| :flag_np: | :flag_np: |
1f1f3-1f1f5 |
| :flag_nr: | :flag_nr: |
1f1f3-1f1f7 |
| :flag_nu: | :flag_nu: |
1f1f3-1f1fa |
| :flag_nz: | :flag_nz: |
1f1f3-1f1ff |
| :flag_om: | :flag_om: |
1f1f4-1f1f2 |
| :flag_pa: | :flag_pa: |
1f1f5-1f1e6 |
| :flag_pe: | :flag_pe: |
1f1f5-1f1ea |
| :flag_pf: | :flag_pf: |
1f1f5-1f1eb |
| :flag_pg: | :flag_pg: |
1f1f5-1f1ec |
| :flag_ph: | :flag_ph: |
1f1f5-1f1ed |
| :flag_pk: | :flag_pk: |
1f1f5-1f1f0 |
| :flag_pl: | :flag_pl: |
1f1f5-1f1f1 |
| :flag_pm: | :flag_pm: |
1f1f5-1f1f2 |
| :flag_pn: | :flag_pn: |
1f1f5-1f1f3 |
| :flag_pr: | :flag_pr: |
1f1f5-1f1f7 |
| :flag_ps: | :flag_ps: |
1f1f5-1f1f8 |
| :flag_pt: | :flag_pt: |
1f1f5-1f1f9 |
| :flag_pw: | :flag_pw: |
1f1f5-1f1fc |
| :flag_py: | :flag_py: |
1f1f5-1f1fe |
| :flag_qa: | :flag_qa: |
1f1f6-1f1e6 |
| :flag_re: | :flag_re: |
1f1f7-1f1ea |
| :flag_ro: | :flag_ro: |
1f1f7-1f1f4 |
| :flag_rs: | :flag_rs: |
1f1f7-1f1f8 |
| :flag_ru: | :flag_ru: |
1f1f7-1f1fa |
| :flag_rw: | :flag_rw: |
1f1f7-1f1fc |
| :flag_sa: | :flag_sa: |
1f1f8-1f1e6 |
| :flag_sb: | :flag_sb: |
1f1f8-1f1e7 |
| :flag_sc: | :flag_sc: |
1f1f8-1f1e8 |
| :flag_sd: | :flag_sd: |
1f1f8-1f1e9 |
| :flag_se: | :flag_se: |
1f1f8-1f1ea |
| :flag_sg: | :flag_sg: |
1f1f8-1f1ec |
| :flag_sh: | :flag_sh: |
1f1f8-1f1ed |
| :flag_si: | :flag_si: |
1f1f8-1f1ee |
| :flag_sj: | :flag_sj: |
1f1f8-1f1ef |
| :flag_sk: | :flag_sk: |
1f1f8-1f1f0 |
| :flag_sl: | :flag_sl: |
1f1f8-1f1f1 |
| :flag_sm: | :flag_sm: |
1f1f8-1f1f2 |
| :flag_sn: | :flag_sn: |
1f1f8-1f1f3 |
| :flag_so: | :flag_so: |
1f1f8-1f1f4 |
| :flag_sr: | :flag_sr: |
1f1f8-1f1f7 |
| :flag_ss: | :flag_ss: |
1f1f8-1f1f8 |
| :flag_st: | :flag_st: |
1f1f8-1f1f9 |
| :flag_sv: | :flag_sv: |
1f1f8-1f1fb |
| :flag_sx: | :flag_sx: |
1f1f8-1f1fd |
| :flag_sy: | :flag_sy: |
1f1f8-1f1fe |
| :flag_sz: | :flag_sz: |
1f1f8-1f1ff |
| :flag_ta: | :flag_ta: |
1f1f9-1f1e6 |
| :flag_tc: | :flag_tc: |
1f1f9-1f1e8 |
| :flag_td: | :flag_td: |
1f1f9-1f1e9 |
| :flag_tf: | :flag_tf: |
1f1f9-1f1eb |
| :flag_tg: | :flag_tg: |
1f1f9-1f1ec |
| :flag_th: | :flag_th: |
1f1f9-1f1ed |
| :flag_tj: | :flag_tj: |
1f1f9-1f1ef |
| :flag_tk: | :flag_tk: |
1f1f9-1f1f0 |
| :flag_tl: | :flag_tl: |
1f1f9-1f1f1 |
| :flag_tm: | :flag_tm: |
1f1f9-1f1f2 |
| :flag_tn: | :flag_tn: |
1f1f9-1f1f3 |
| :flag_to: | :flag_to: |
1f1f9-1f1f4 |
| :flag_tr: | :flag_tr: |
1f1f9-1f1f7 |
| :flag_tt: | :flag_tt: |
1f1f9-1f1f9 |
| :flag_tv: | :flag_tv: |
1f1f9-1f1fb |
| :flag_tw: | :flag_tw: |
1f1f9-1f1fc |
| :flag_tz: | :flag_tz: |
1f1f9-1f1ff |
| :flag_ua: | :flag_ua: |
1f1fa-1f1e6 |
| :flag_ug: | :flag_ug: |
1f1fa-1f1ec |
| :flag_um: | :flag_um: |
1f1fa-1f1f2 |
| ๐บ๐ณ | :united_nations: |
1f1fa-1f1f3 |
| :flag_us: | :flag_us: |
1f1fa-1f1f8 |
| :flag_uy: | :flag_uy: |
1f1fa-1f1fe |
| :flag_uz: | :flag_uz: |
1f1fa-1f1ff |
| :flag_va: | :flag_va: |
1f1fb-1f1e6 |
| :flag_vc: | :flag_vc: |
1f1fb-1f1e8 |
| :flag_ve: | :flag_ve: |
1f1fb-1f1ea |
| :flag_vg: | :flag_vg: |
1f1fb-1f1ec |
| :flag_vi: | :flag_vi: |
1f1fb-1f1ee |
| :flag_vn: | :flag_vn: |
1f1fb-1f1f3 |
| :flag_vu: | :flag_vu: |
1f1fb-1f1fa |
| :flag_wf: | :flag_wf: |
1f1fc-1f1eb |
| :flag_ws: | :flag_ws: |
1f1fc-1f1f8 |
| :flag_xk: | :flag_xk: |
1f1fd-1f1f0 |
| :flag_ye: | :flag_ye: |
1f1fe-1f1ea |
| :flag_yt: | :flag_yt: |
1f1fe-1f1f9 |
| :flag_za: | :flag_za: |
1f1ff-1f1e6 |
| :flag_zm: | :flag_zm: |
1f1ff-1f1f2 |
| :flag_zw: | :flag_zw: |
1f1ff-1f1fc |
| ๐ด๓ ง๓ ข๓ ฅ๓ ฎ๓ ง๓ ฟ | :england: |
1f3f4-e0067-e0062-e0065-e006e-e0067-e007f |
| ๐ด๓ ง๓ ข๓ ณ๓ ฃ๓ ด๓ ฟ | :scotland: |
1f3f4-e0067-e0062-e0073-e0063-e0074-e007f |
| ๐ด๓ ง๓ ข๓ ท๓ ฌ๓ ณ๓ ฟ | :wales: |
1f3f4-e0067-e0062-e0077-e006c-e0073-e007f |


