2
.gitignore
vendored
|
@ -1,3 +1,3 @@
|
|||
add_emoji_gsub.pyc
|
||||
build
|
||||
waveflag
|
||||
waveflag
|
61
CHANGES.md
|
@ -329,3 +329,64 @@ The entries are currently not in order
|
|||
|  |  | U+1f9b2 | new | Mostly for Emoji-Compat |
|
||||
|  |  | U+1f9b8 | new* | |
|
||||
|  |  | U+1f9b9 | new* | |
|
||||
|  |  | U+1f6d5 | new | |
|
||||
|  |  | U+1f6fa | new | |
|
||||
|  |  | U+1f7e0 | new | |
|
||||
|  |  | U+1f7e1 | new | |
|
||||
|  |  | U+1f7e2 | new | |
|
||||
|  |  | U+1f7e3 | new | |
|
||||
|  |  | U+1f7e4 | new | |
|
||||
|  |  | U+1f7e5 | new | |
|
||||
|  |  | U+1f7e6 | new | |
|
||||
|  |  | U+1f7e7 | new | |
|
||||
|  |  | U+1f7e8 | new | |
|
||||
|  |  | U+1f7e9 | new | |
|
||||
|  |  | U+1f7ea | new | |
|
||||
|  |  | U+1f7eb | new | |
|
||||
|  |  | U+1f90d | new* | |
|
||||
|  |  | U+1f90e | new* | |
|
||||
|  |  | U+1f90f | new | |
|
||||
|  |  | U+1f93f | new | |
|
||||
|  |  | U+1f971 | new* | |
|
||||
|  |  | U+1f97b | new* | |
|
||||
|  |  | U+1f9a5 | new | |
|
||||
|  |  | U+1f9a6 | new | |
|
||||
|  |  | U+1f9a7 | new | |
|
||||
|  |  | U+1f9a8 | new | |
|
||||
|  |  | U+1f9a9 | new | |
|
||||
|  |  | U+1f9aa | new | |
|
||||
|  |  | U+1f9ae | new* | |
|
||||
|  |  | U+1f9af | new | |
|
||||
|  |  | U+1f9ba | new | |
|
||||
|  |  | U+1f9bb | new* | |
|
||||
|  |  | U+1f9bc | new | |
|
||||
|  |  | U+1f9bd | new | |
|
||||
|  |  | U+1f9be | new* | |
|
||||
|  |  | U+1f9bf | new* | |
|
||||
|  |  | U+1f9c3 | new* | |
|
||||
|  |  | U+1f9c4 | new | |
|
||||
|  |  | U+1f9c5 | new | |
|
||||
|  |  | U+1f9c6 | new | |
|
||||
|  |  | U+1f9c7 | new | |
|
||||
|  |  | U+1f9c8 | new | |
|
||||
|  |  | U+1f9c9 | new | |
|
||||
|  |  | U+1f9ca | new | |
|
||||
|  |  | U+1f9cd | new* | |
|
||||
|  |  | U+1f9ce | new* | |
|
||||
|  |  | U+1f9cf | new* | |
|
||||
|  |  | U+1fa70 | new | |
|
||||
|  |  | U+1fa71 | new* | |
|
||||
|  |  | U+1fa72 | new* | |
|
||||
|  |  | U+1fa73 | new* | |
|
||||
|  |  | U+1fa78 | new | |
|
||||
|  |  | U+1fa79 | new | |
|
||||
|  |  | U+1fa7a | new | |
|
||||
|  |  | U+1fa80 | new* | |
|
||||
|  |  | U+1fa81 | new | |
|
||||
|  |  | U+1fa82 | new | |
|
||||
|  |  | U+1fa90 | new | |
|
||||
|  |  | U+1fa91 | new | |
|
||||
|  |  | U+1fa92 | new | |
|
||||
|  |  | U+1fa93 | new | |
|
||||
|  |  | U+1fa94 | new | |
|
||||
|  |  | U+1fa95 | new | |
|
5
Makefile
|
@ -87,11 +87,12 @@ SELECTED_FLAGS = AC AD AE AF AG AI AL AM AO AQ AR AS AT AU AW AX AZ \
|
|||
US-SD US-IN US-MD US-NY CA-NB US-HI CA-ON CA-QC \
|
||||
US-ND US-RI US-MI CA-BC US-MN US-VA CA-MB US-MT \
|
||||
US-DC US-NE CA-PE US-LA US-ME US-IA US-WY US-DE \
|
||||
US-NV US-OR
|
||||
US-NV US-OR \
|
||||
|
||||
|
||||
ALL_FLAGS = $(basename $(notdir $(wildcard $(FLAGS_SRC_DIR)/*.png)))
|
||||
|
||||
FLAGS = $(SELECTED_FLAGS)
|
||||
FLAGS = $(ALL_FLAGS)
|
||||
|
||||
FLAG_NAMES = $(FLAGS:%=%.png)
|
||||
FLAG_FILES = $(addprefix $(FLAGS_DIR)/, $(FLAG_NAMES))
|
||||
|
|
|
@ -15,6 +15,7 @@
|
|||
# limitations under the License.
|
||||
|
||||
import os
|
||||
import sys
|
||||
|
||||
# That's what we'd like to insert in our CHANGES.md later
|
||||
pattern = "\n|  |  | U+{0} | {1} | {2} | "
|
||||
|
@ -72,6 +73,43 @@ def review(details: list) -> bool:
|
|||
descision = input('Are you sure you want to add these? [y/n]: ')
|
||||
return descision.lower() == 'y'
|
||||
|
||||
def seq_from_file(filename: str) -> list:
|
||||
with open(filename) as file:
|
||||
if not '#' in file.read(128):
|
||||
file.seek(0)
|
||||
return file.readlines()
|
||||
else:
|
||||
file.seek(0)
|
||||
return seq_from_unicode(file)
|
||||
|
||||
|
||||
def seq_from_unicode(file) -> list:
|
||||
sequences = []
|
||||
# Read all the lines
|
||||
for line in file:
|
||||
# Remove comments and any other information that is not needed
|
||||
line = line.split('#')[0].strip()
|
||||
line = line.split(';')[0].strip()
|
||||
# Is there any content left?
|
||||
if len(line):
|
||||
# Handle sequences
|
||||
sequence = line.split(' ')
|
||||
sequence = [c.strip() for c in sequence if len(c.strip())]
|
||||
if len(sequence) == 1:
|
||||
# Handle ranges
|
||||
codepoints = sequence[0].split('..')
|
||||
codepoints = [int(x, base=16) for x in codepoints]
|
||||
if len(codepoints) == 2:
|
||||
for i in range(codepoints[0], codepoints[1]+1):
|
||||
sequences.append(hex(i)[2:])
|
||||
else:
|
||||
# Handle single codepoints
|
||||
sequences.append(hex(codepoints[0])[2:])
|
||||
else:
|
||||
sequences.append('_'.join(sequence).lower())
|
||||
return sequences
|
||||
|
||||
|
||||
path = 'CHANGES.md'
|
||||
|
||||
def write(strings: list):
|
||||
|
@ -80,6 +118,15 @@ def write(strings: list):
|
|||
md_file.write(line)
|
||||
|
||||
if __name__ == '__main__':
|
||||
details = get_details(get_sequences())
|
||||
if len(sys.argv) <= 1:
|
||||
sequences = get_sequences()
|
||||
else:
|
||||
sequences = []
|
||||
for f in sys.argv[1:]:
|
||||
sequences.extend(seq_from_file(sys.argv[1]))
|
||||
|
||||
# remove duplicates
|
||||
sequences = list(dict.fromkeys(sequences))
|
||||
details = get_details(sequences)
|
||||
if review(details):
|
||||
write(produce_strings(details))
|
BIN
emojicompat/BlobmojiCompat.ttf
Normal file
|
@ -1,72 +0,0 @@
|
|||
# FileMojiCompat
|
||||
## What is this?
|
||||
This is a library providing an easy solution to use [EmojiCompat](https://developer.android.com/guide/topics/ui/look-and-feel/emoji-compat)
|
||||
with fonts that are either stored in the `assets`-folder with another name than `NotoColorEmojiCompat.ttf` or you can use
|
||||
EmojiCompat fonts which are stored anywhere on the device's local storage.
|
||||
## How do I get this library?
|
||||
That's relatively easy: Just add the following line to your module's `build.gradle` inside `dependencies`:
|
||||
```
|
||||
implementation 'de.c1710:filemojicompat:1.0.7'
|
||||
```
|
||||
## How do I use it?
|
||||
There are two different methods included in this library:
|
||||
1. ### [`AssetEmojiCompatConfig`](https://github.com/C1710/blobmoji/blob/filemojicompat/emojicompat/FileMojiCompat/filemojicompat/src/main/java/de/c1710/filemojicompat/AssetEmojiCompatConfig.java)
|
||||
You can use this just like you would usually use [`BundledEmojiCompatConfig`](https://developer.android.com/guide/topics/ui/look-and-feel/emoji-compat#bundled-fonts)
|
||||
except for the detail that you can choose the font's name as the second parameter.
|
||||
Example:
|
||||
```java
|
||||
EmojiCompat.Config config = new AssetEmojiCompatConfig(getContext(), "Blobmoji.ttf");
|
||||
```
|
||||
This will create a new EmojiCompat configuration using the file provided in `assets/Blobmoji.ttf`.
|
||||
Anyhow, I don't recommend using `AssetEmojiCompatConfig` anymore as [this](#i-want-to-let-my-users-only-choose-another-font-if-they-dont-like-my-current-one) approach is more flexible and just as easy to use.
|
||||
2. ### [`FileEmojiCompatConfig`](https://github.com/C1710/blobmoji/blob/filemojicompat/emojicompat/FileMojiCompat/filemojicompat/src/main/java/de/c1710/filemojicompat/FileEmojiCompatConfig.java)
|
||||
This is the more complex and interesting option.
|
||||
Instead of providing a short String containing the font's name, you can provide a [`File`](https://developer.android.com/reference/java/io/File)
|
||||
(or the String containing the full path of it).
|
||||
This will try to load the font from this path.
|
||||
In case it gets into any trouble - let's say because of missing permissions or a non-existent file, it will fallback to using no EmojiCompat at all.
|
||||
(Technically this is wrong as leaving EmojiCompat uninitialized would crash the components using it. There's an explanation below).
|
||||
Example:
|
||||
```java
|
||||
Context context = getContext();
|
||||
File fontFile = new File(context.getExternalFilesDir(null), "emoji/Blobmoji.ttf");
|
||||
EmojiCompat.Config config = new FileEmojiCompatConfig(context, fontFile);
|
||||
```
|
||||
In this example, your app would try to load the font file `Blobmoji.ttf` located at `/storage/emulated/0/Android/data/[your.app.package]/files/Blobmoji.ttf`.
|
||||
If this file is not available, EmojiCompat won't be visible.
|
||||
Hint: When accessing a file inside your private directory (i.e. the one used in the example), you _don't_ need storage permissions.
|
||||
However, if you want to load the font from somewhere else - let's say the `Download` directory, you ***will*** need storage permissions.
|
||||
But don't worry (too much) - your app won't crash (probably) as this missing file is just being ignored in this case.
|
||||
|
||||
### What happens if I don't provide the font file in `FileEmojiCompatConfig`?
|
||||
In this case, there won't be a visible difference to not using EmojiCompat.
|
||||
#### But what does that mean _exactly_?
|
||||
If you take a look at `EmojiCompat` itself, you'll notice that it isn't build with missing fonts in mind. If anything happens,
|
||||
`onLoadFailed` is called and EmojiCompat crashes - and so do all components relying on it.
|
||||
To prevent this case, `FileEmojiCompatConfig` includes a fallback solution - inside the `assets` folder, you'll find a file called [`NoEmojiCompat.ttf`](https://github.com/C1710/blobmoji/blob/filemojicompat/emojicompat/FileMojiCompat/filemojicompat/src/main/assets/NoEmojiCompat.ttf) which
|
||||
is much smaller than most of the EmojiCompat font files (~40kiB). That's because it only includes 10 characters which are the flags for China, Germany, Spain, France, United Kingdom, Italy, Japan, South Korea, Russia, USA.
|
||||
These are the flags which where originally included in [Noto Emoji](https://github.com/googlei18n/noto-emoji) and they are only used to _fill_ the font
|
||||
file with something.
|
||||
#### Will my users see these flags when the fallback font is used?
|
||||
Yes, they will. But only if their device either doesn't support these flags (which is basically impossible) or if they use a device which already uses
|
||||
these assets as their default emojis. They won't replace any existing emojis.
|
||||
#### But I did `setReplaceAll(true)`?!
|
||||
This won't change anything as `FileEmojiCompatConfig` will detect if the font file is not valid and it will simply ignore `setReplaceAll(true)`.
|
||||
## I want to let my users only choose another font if they don't like my current one
|
||||
This is easily possible with the introduction of `FileMojiCompat 1.0.6`.
|
||||
In this case you override the fallback font by putting your font into the `assets` folder of your app using the name `NoEmojiCompat.ttf`.
|
||||
Whenever the fallback font is needed (which is the case if the user doesn't specify another one), this font is being used.
|
||||
In order to prevent blocking the `setReplaceAll` method, you'll have to call it with `setReplaceAll(true, true)`.
|
||||
The second argument indicates that you want to ignore this `replaceAll`-prevention (if set to `true`. Setting it to `false` won't change anything).
|
||||
So here's a short example of using this very flexible, yet easy to use method.
|
||||
But please be aware that changing the emoji font using this snippet isn't very easy as it needs the user to copy (and potentially rename) some files:
|
||||
```java
|
||||
Context context = getContext();
|
||||
File fontFile = new File(context.getExternalFilesDir(null), "emoji.ttf");
|
||||
EmojiCompat.Config config = new FileEmojiCompatConfig(context, fontFile)
|
||||
.setReplaceAll(true, true);
|
||||
```
|
||||
In this case, the font specified in `assets/NoEmojiCompat.ttf` will be used until `/storage/emulated/0/Android/[yourpackage]/files/emoji.ttf` exists and includes a valid `EmojiCompat` font.
|
||||
This method combines the easy approach of `AssetEmojiCompatConfig` and the flexibility of `FileEmojiCompatConfig` with some tradeoffs on the usability side.
|
||||
If you need a different asset path for your fallback file, you can simply add it as another argument for `FileEmojiCompatConfig`. This feature has been introduced in `1.0.7`.
|
||||
**_PLEASE use at least this method in your app. It's always better to give the users a choice._**
|
|
@ -1,28 +0,0 @@
|
|||
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
||||
|
||||
buildscript {
|
||||
|
||||
repositories {
|
||||
google()
|
||||
jcenter()
|
||||
}
|
||||
dependencies {
|
||||
classpath 'com.android.tools.build:gradle:3.1.2'
|
||||
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.7.3'
|
||||
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.5'
|
||||
|
||||
// NOTE: Do not place your application dependencies here; they belong
|
||||
// in the individual module build.gradle files
|
||||
}
|
||||
}
|
||||
|
||||
allprojects {
|
||||
repositories {
|
||||
google()
|
||||
jcenter()
|
||||
}
|
||||
}
|
||||
|
||||
task clean(type: Delete) {
|
||||
delete rootProject.buildDir
|
||||
}
|
|
@ -1,55 +0,0 @@
|
|||
apply plugin: 'com.android.library'
|
||||
buildscript {
|
||||
repositories {
|
||||
mavenCentral()
|
||||
google()
|
||||
}
|
||||
dependencies {
|
||||
classpath 'com.android.tools.build:gradle:3.1.3'
|
||||
}
|
||||
}
|
||||
|
||||
ext {
|
||||
bintrayRepo = 'FileMojiCompat'
|
||||
bintrayName = 'filemojicompat'
|
||||
publishedGroupId = 'de.c1710'
|
||||
libraryName = 'filemojicompat'
|
||||
artifact = 'filemojicompat'
|
||||
libraryDescription = 'An EmojiCompat implementation using files from a local file or a file inside your assets directory'
|
||||
siteUrl = 'https://github.com/c1710/blobmoji'
|
||||
gitUrl = 'https://github.com/c1710/blobmoji.git'
|
||||
libraryVersion = '1.0.13'
|
||||
developerId = 'c1710'
|
||||
developerName = 'Constantin A.'
|
||||
developerEmail = 'c1710.apps@outlook.com'
|
||||
licenseName = 'The Apache Software License, Version 2.0'
|
||||
licenseUrl = 'http://www.apache.org/licenses/LICENSE-2.0.txt'
|
||||
allLicenses = ["Apache-2.0"]
|
||||
}
|
||||
|
||||
android {
|
||||
compileSdkVersion 27
|
||||
|
||||
defaultConfig {
|
||||
minSdkVersion 14
|
||||
targetSdkVersion 27
|
||||
versionCode 13
|
||||
versionName "1.0.13"
|
||||
}
|
||||
|
||||
|
||||
compileOptions {
|
||||
targetCompatibility 1.8
|
||||
sourceCompatibility 1.8
|
||||
}
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
||||
implementation 'com.android.support:support-emoji:27.1.1'
|
||||
}
|
||||
|
||||
|
||||
apply from: 'https://raw.githubusercontent.com/numetriclabz/jcenter/master/installv.gradle'
|
||||
apply from: 'https://raw.githubusercontent.com/numetriclabz/jcenter/master/bintrayv.gradle'
|
||||
|
|
@ -1,21 +0,0 @@
|
|||
# Add project specific ProGuard rules here.
|
||||
# You can control the set of applied configuration files using the
|
||||
# proguardFiles setting in build.gradle.
|
||||
#
|
||||
# For more details, see
|
||||
# http://developer.android.com/guide/developing/tools/proguard.html
|
||||
|
||||
# If your project uses WebView with JS, uncomment the following
|
||||
# and specify the fully qualified class name to the JavaScript interface
|
||||
# class:
|
||||
#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
|
||||
# public *;
|
||||
#}
|
||||
|
||||
# Uncomment this to preserve the line number information for
|
||||
# debugging stack traces.
|
||||
#-keepattributes SourceFile,LineNumberTable
|
||||
|
||||
# If you keep the line number information, uncomment this to
|
||||
# hide the original source file name.
|
||||
#-renamesourcefileattribute SourceFile
|
|
@ -1 +0,0 @@
|
|||
<manifest package="de.c1710.filemojicompat" />
|
|
@ -1,114 +0,0 @@
|
|||
package de.c1710.filemojicompat;
|
||||
/*
|
||||
* Original file (https://android.googlesource.com/platform/frameworks/support/+/master/emoji/bundled/src/main/java/android/support/text/emoji/bundled/BundledEmojiCompatConfig.java):
|
||||
* Copyright (C) 2017 The Android Open Source Project
|
||||
* Modifications Copyright (C) 2018 Constantin A.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
import android.content.Context;
|
||||
import android.content.res.AssetManager;
|
||||
import android.support.annotation.NonNull;
|
||||
import android.support.annotation.RequiresApi;
|
||||
import android.support.text.emoji.EmojiCompat;
|
||||
import android.support.text.emoji.MetadataRepo;
|
||||
|
||||
/**
|
||||
* A simple implementation of EmojiCompat.Config using typeface assets.
|
||||
* Based on:
|
||||
* https://android.googlesource.com/platform/frameworks/support/+/master/emoji/bundled/src/main/java/android/support/text/emoji/bundled/BundledEmojiCompatConfig.java
|
||||
* Changes are marked with comments. Formatting and other simple changes are not always marked.
|
||||
*
|
||||
* @deprecated Please use {@link FileEmojiCompatConfig#createFromAsset(Context, String)} instead
|
||||
* for greater flexibility.
|
||||
*/
|
||||
@Deprecated
|
||||
public class AssetEmojiCompatConfig extends EmojiCompat.Config {
|
||||
// The class name is obviously changed from the original file
|
||||
|
||||
/**
|
||||
* Create a new configuration for this EmojiCompat
|
||||
*
|
||||
* @param assetName The file name/path of the requested font
|
||||
* @param context Context instance
|
||||
*/
|
||||
public AssetEmojiCompatConfig(@NonNull Context context,
|
||||
// NEW
|
||||
@NonNull String assetName) {
|
||||
// This one is oviously new
|
||||
super(new AssetMetadataLoader(context, assetName));
|
||||
}
|
||||
|
||||
/**
|
||||
* This is the MetadataLoader. Derived from BundledMetadataLoader but with
|
||||
* the addition of a custom asset name.
|
||||
*/
|
||||
private static class AssetMetadataLoader implements EmojiCompat.MetadataRepoLoader {
|
||||
private final Context mContext;
|
||||
// NEW
|
||||
private final String assetName;
|
||||
|
||||
private AssetMetadataLoader(@NonNull Context context,
|
||||
// NEW
|
||||
String assetName) {
|
||||
this.mContext = context.getApplicationContext();
|
||||
// NEW
|
||||
this.assetName = assetName;
|
||||
}
|
||||
|
||||
|
||||
// Copied from BundledEmojiCompatConfig
|
||||
@Override
|
||||
@RequiresApi(19)
|
||||
public void load(@NonNull EmojiCompat.MetadataRepoLoaderCallback loaderCallback) {
|
||||
// This one doesn't work as it's not android.support
|
||||
//Preconditions.checkNotNull(loaderCallback, "loaderCallback cannot be null");
|
||||
final InitRunnable runnable = new InitRunnable(mContext, loaderCallback, assetName);
|
||||
final Thread thread = new Thread(runnable);
|
||||
thread.setDaemon(false);
|
||||
thread.start();
|
||||
}
|
||||
}
|
||||
|
||||
@RequiresApi(19)
|
||||
private static class InitRunnable implements Runnable {
|
||||
// The font name is assigned in the constructor.
|
||||
private final String FONT_NAME;
|
||||
// Slightly different variable names
|
||||
private final EmojiCompat.MetadataRepoLoaderCallback loaderCallback;
|
||||
private final Context context;
|
||||
|
||||
private InitRunnable(final Context context,
|
||||
final EmojiCompat.MetadataRepoLoaderCallback loaderCallback,
|
||||
// NEW parameter
|
||||
final String FONT_NAME) {
|
||||
// This has been changed a bit in order to get some consistency
|
||||
this.context = context;
|
||||
this.loaderCallback = loaderCallback;
|
||||
this.FONT_NAME = FONT_NAME;
|
||||
}
|
||||
|
||||
// This has been copied from BundledEmojiCompatConfig
|
||||
@Override
|
||||
public void run() {
|
||||
try {
|
||||
final AssetManager assetManager = context.getAssets();
|
||||
final MetadataRepo resourceIndex = MetadataRepo.create(assetManager, FONT_NAME);
|
||||
loaderCallback.onLoaded(resourceIndex);
|
||||
} catch (Throwable t) {
|
||||
loaderCallback.onFailed(t);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,295 +0,0 @@
|
|||
package de.c1710.filemojicompat;
|
||||
/*
|
||||
* Adapted from https://android.googlesource.com/platform/frameworks/support/+/master/emoji/bundled/src/main/java/android/support/text/emoji/bundled/BundledEmojiCompatConfig.java
|
||||
* Copyright (C) 2017 The Android Open Source Project
|
||||
* Modifications Copyright (C) 2018 Constantin A.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
import android.content.Context;
|
||||
import android.content.res.AssetManager;
|
||||
import android.graphics.Typeface;
|
||||
import android.os.Build;
|
||||
import android.support.annotation.NonNull;
|
||||
import android.support.annotation.Nullable;
|
||||
import android.support.annotation.RequiresApi;
|
||||
import android.support.text.emoji.EmojiCompat;
|
||||
import android.support.text.emoji.MetadataRepo;
|
||||
import android.util.Log;
|
||||
|
||||
import java.io.File;
|
||||
import java.io.FileInputStream;
|
||||
import java.io.InputStream;
|
||||
|
||||
/**
|
||||
* A simple implementation of EmojiCompat.Config using typeface files.
|
||||
* Based on:
|
||||
* https://android.googlesource.com/platform/frameworks/support/+/master/emoji/bundled/src/main/java/android/support/text/emoji/bundled/BundledEmojiCompatConfig.java
|
||||
* Changes are marked with comments. Formatting and other simple changes are not always marked.
|
||||
*/
|
||||
public class FileEmojiCompatConfig extends EmojiCompat.Config {
|
||||
// The class name is obviously changed from the original file
|
||||
private final static String TAG = "FileEmojiCompatConfig";
|
||||
/**
|
||||
* The default name of the fallback font
|
||||
*/
|
||||
private static final String FONT_FALLBACK = "NoEmojiCompat.ttf";
|
||||
/**
|
||||
* This boolean indicates whether the fallback solution is used.
|
||||
*/
|
||||
private boolean fallback;
|
||||
/**
|
||||
* Indicates whether all emojis should be replaced when the fallback font is used.
|
||||
*/
|
||||
private boolean replaceAllOnFallback = false;
|
||||
|
||||
/**
|
||||
* Create a new configuration for this EmojiCompat
|
||||
*
|
||||
* @param path The file name/path of the requested font
|
||||
* @param context Context instance
|
||||
*/
|
||||
public FileEmojiCompatConfig(@NonNull Context context,
|
||||
// NEW
|
||||
@NonNull String path) {
|
||||
// This one is obviously new
|
||||
this(context, path, FONT_FALLBACK);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a new configuration for this EmojiCompat
|
||||
*
|
||||
* @param path The file name/path of the requested font
|
||||
* @param context Context instance
|
||||
* @param fallbackFont The asset path of the fallback font
|
||||
*/
|
||||
public FileEmojiCompatConfig(@NonNull Context context,
|
||||
// NEW
|
||||
@NonNull String path,
|
||||
@Nullable String fallbackFont) {
|
||||
// This one is obviously new
|
||||
this(context, new File(path), fallbackFont);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a new configuration for this EmojiCompat based on a file
|
||||
*
|
||||
* @param context Context instance
|
||||
* @param fontFile The file containing the EmojiCompat font
|
||||
*/
|
||||
public FileEmojiCompatConfig(@NonNull Context context,
|
||||
// NEW
|
||||
@Nullable File fontFile) {
|
||||
this(context, fontFile, FONT_FALLBACK);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a new configuration for this EmojiCompat based on a file
|
||||
*
|
||||
* @param context Context instance
|
||||
* @param fontFile The file containing the EmojiCompat font
|
||||
* @param fallbackFont The asset path of the fallback font
|
||||
*/
|
||||
public FileEmojiCompatConfig(@NonNull Context context,
|
||||
// NEW
|
||||
@Nullable File fontFile,
|
||||
@Nullable String fallbackFont) {
|
||||
super(new FileMetadataLoader(context,
|
||||
fontFile,
|
||||
fallbackFont != null ? fallbackFont : FONT_FALLBACK));
|
||||
if (fontFile != null && fontFile.exists() && fontFile.canRead()) {
|
||||
try {
|
||||
// Is it a font?
|
||||
Typeface typeface = Typeface.createFromFile(fontFile);
|
||||
// Is it an EmojiCompat font?
|
||||
/*
|
||||
Please note that this will possibly cause a race condition. But all in all it's
|
||||
better to have a chance of detecting such a non-valid font than either having to
|
||||
wait for a long time or not being able to detect it at all.
|
||||
However, since this Thread is started immediately, it should be faster than
|
||||
the initialization process of EmojiCompat itself...
|
||||
*/
|
||||
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT) {
|
||||
new Thread(() -> {
|
||||
try {
|
||||
MetadataRepo.create(typeface, new FileInputStream(fontFile));
|
||||
} catch (Throwable t) {
|
||||
fallback = true;
|
||||
setReplaceAll(false);
|
||||
Log.w(TAG, "FileEmojiCompatConfig: No valid EmojiCompat font provided. Fallback enabled", t);
|
||||
}
|
||||
}).start();
|
||||
}
|
||||
} catch (RuntimeException ex) {
|
||||
fallback = true;
|
||||
Log.e(TAG, "FileEmojiCompatConfig: Font file corrupt. Fallback enabled", ex);
|
||||
}
|
||||
} else {
|
||||
// The heck, this is not even an actual _file_!
|
||||
fallback = true;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* Creates a new FileEmojiCompatConfig based on an asset.
|
||||
* <p>
|
||||
* This means that you can have the flexibility of {@link AssetEmojiCompatConfig}
|
||||
* while giving your users the choice to optionally override the font.
|
||||
* <p>
|
||||
* The default location for a substituting font is
|
||||
* {@code /sdcard/Android/data/your.apps.package/files/EmojiCompat.ttf}.
|
||||
*
|
||||
* @param context The app's context is needed for several tasks
|
||||
* @param assetPath The path inside the {@code assets} folder for the default font file
|
||||
* @return A FileEmojiCompatConfig which will use the given font by default
|
||||
*/
|
||||
public FileEmojiCompatConfig createFromAsset(@NonNull Context context,
|
||||
@Nullable String assetPath) {
|
||||
if (assetPath != null) {
|
||||
FileEmojiCompatConfig config = new FileEmojiCompatConfig(context,
|
||||
new File(context.getExternalFilesDir(null), "EmojiCompat.ttf"),
|
||||
assetPath);
|
||||
config.replaceAllOnFallback = true;
|
||||
return config;
|
||||
} else {
|
||||
return createFromAsset(context);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Creates a new FileEmojiCompatConfig based on an asset.
|
||||
* <p>
|
||||
* This means that you can have the flexibility of {@link AssetEmojiCompatConfig}
|
||||
* while giving your users the choice to optionally override the font.
|
||||
* <p>
|
||||
* The default location for a substituting font is
|
||||
* {@code /sdcard/Android/data/your.apps.package/files/EmojiCompat.ttf}.
|
||||
* <p>
|
||||
* The default name for the Assets font is {@code NoEmojiCompat.ttf}.
|
||||
* If you wish to use a different name for this font, please use
|
||||
* {@link #createFromAsset(Context, String)}.
|
||||
*
|
||||
* @param context The app's context is needed for several tasks
|
||||
* @return A FileEmojiCompatConfig which will use the given font by default
|
||||
*/
|
||||
public FileEmojiCompatConfig createFromAsset(@NonNull Context context) {
|
||||
return createFromAsset(context, FONT_FALLBACK);
|
||||
}
|
||||
|
||||
@Override
|
||||
public FileEmojiCompatConfig setReplaceAll(boolean replaceAll) {
|
||||
return setReplaceAll(replaceAll, replaceAllOnFallback);
|
||||
}
|
||||
|
||||
/**
|
||||
* Replace all emojis
|
||||
*
|
||||
* @param replaceAll Whether all emojis should be replaced
|
||||
* @param replaceAllOnFallback true if this is supposed to be the case even when using the fallback font.
|
||||
* Useful if the NoEmojiCompat.ttf is overridden by a "real" EmojiCompat font.
|
||||
* @return This EmojiCompat.Config
|
||||
*/
|
||||
public FileEmojiCompatConfig setReplaceAll(boolean replaceAll, boolean replaceAllOnFallback) {
|
||||
this.replaceAllOnFallback = replaceAllOnFallback;
|
||||
if (!fallback || replaceAllOnFallback) {
|
||||
super.setReplaceAll(replaceAll);
|
||||
} else {
|
||||
super.setReplaceAll(false);
|
||||
if (replaceAll) {
|
||||
// If replaceAll would have been set to false anyway, there's no need for apologizing.
|
||||
Log.w(TAG, "setReplaceAll: Cannot replace all emojis. Fallback font is active");
|
||||
}
|
||||
}
|
||||
return this;
|
||||
}
|
||||
|
||||
/**
|
||||
* This is the MetadataLoader. Derived from BundledMetadataLoader but with
|
||||
* the addition of a custom file name.
|
||||
*/
|
||||
private static class FileMetadataLoader implements EmojiCompat.MetadataRepoLoader {
|
||||
private final Context mContext;
|
||||
// NEW
|
||||
private final File fontFile;
|
||||
private final String fallbackFont;
|
||||
|
||||
private FileMetadataLoader(@NonNull Context context,
|
||||
// NEW
|
||||
@Nullable File fontFile,
|
||||
@NonNull String fallbackFont) {
|
||||
this.mContext = context.getApplicationContext();
|
||||
// NEW
|
||||
this.fontFile = fontFile;
|
||||
this.fallbackFont = fallbackFont;
|
||||
}
|
||||
|
||||
|
||||
// Copied from BundledEmojiCompatConfig
|
||||
@Override
|
||||
@RequiresApi(19)
|
||||
public void load(@NonNull EmojiCompat.MetadataRepoLoaderCallback loaderCallback) {
|
||||
//Preconditions.checkNotNull(loaderCallback, "loaderCallback cannot be null");
|
||||
final InitRunnable runnable = new InitRunnable(mContext, loaderCallback, fontFile, fallbackFont);
|
||||
final Thread thread = new Thread(runnable);
|
||||
thread.setDaemon(false);
|
||||
thread.start();
|
||||
}
|
||||
}
|
||||
|
||||
@RequiresApi(19)
|
||||
private static class InitRunnable implements Runnable {
|
||||
// The font names are assigned in the constructor.
|
||||
private final File FONT_FILE;
|
||||
private final String FONT_FALLBACK;
|
||||
// Slightly different variable names
|
||||
private final EmojiCompat.MetadataRepoLoaderCallback loaderCallback;
|
||||
private final Context context;
|
||||
|
||||
private InitRunnable(final Context context,
|
||||
final EmojiCompat.MetadataRepoLoaderCallback loaderCallback,
|
||||
// NEW parameter
|
||||
final File FONT_FILE,
|
||||
final String FONT_FALLBACK) {
|
||||
// This has been changed a bit in order to get some consistency
|
||||
this.context = context;
|
||||
this.loaderCallback = loaderCallback;
|
||||
this.FONT_FILE = FONT_FILE;
|
||||
this.FONT_FALLBACK = FONT_FALLBACK;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void run() {
|
||||
try {
|
||||
// Changed to load a file
|
||||
final Typeface typeface = Typeface.createFromFile(FONT_FILE);
|
||||
final InputStream stream = new FileInputStream(FONT_FILE);
|
||||
MetadataRepo resourceIndex = MetadataRepo.create(typeface, stream);
|
||||
loaderCallback.onLoaded(resourceIndex);
|
||||
} catch (Throwable t) {
|
||||
// Instead of crashing, this one will first try to load the fallback font
|
||||
try {
|
||||
android.util.Log.w(TAG, "Error while loading the font file.", t);
|
||||
final AssetManager assetManager = context.getAssets();
|
||||
final MetadataRepo resourceIndex =
|
||||
MetadataRepo.create(assetManager, FONT_FALLBACK);
|
||||
loaderCallback.onLoaded(resourceIndex);
|
||||
} catch (Throwable t2) {
|
||||
Log.e(TAG, "Even the fallback font couldn't be loaded", t2);
|
||||
loaderCallback.onFailed(t);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,13 +0,0 @@
|
|||
# Project-wide Gradle settings.
|
||||
# IDE (e.g. Android Studio) users:
|
||||
# Gradle settings configured through the IDE *will override*
|
||||
# any settings specified in this file.
|
||||
# For more details on how to configure your build environment visit
|
||||
# http://www.gradle.org/docs/current/userguide/build_environment.html
|
||||
# Specifies the JVM arguments used for the daemon process.
|
||||
# The setting is particularly useful for tweaking memory settings.
|
||||
org.gradle.jvmargs=-Xmx1024m
|
||||
# When configured, Gradle will run in incubating parallel mode.
|
||||
# This option should only be used with decoupled projects. More details, visit
|
||||
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
|
||||
# org.gradle.parallel=true
|
|
@ -1,6 +0,0 @@
|
|||
#Thu Apr 26 17:31:13 CEST 2018
|
||||
distributionBase=GRADLE_USER_HOME
|
||||
distributionPath=wrapper/dists
|
||||
zipStoreBase=GRADLE_USER_HOME
|
||||
zipStorePath=wrapper/dists
|
||||
distributionUrl=https\://services.gradle.org/distributions/gradle-4.4-all.zip
|
160
emojicompat/FileMojiCompat/gradlew
vendored
|
@ -1,160 +0,0 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
##############################################################################
|
||||
##
|
||||
## Gradle start up script for UN*X
|
||||
##
|
||||
##############################################################################
|
||||
|
||||
# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
|
||||
DEFAULT_JVM_OPTS=""
|
||||
|
||||
APP_NAME="Gradle"
|
||||
APP_BASE_NAME=`basename "$0"`
|
||||
|
||||
# Use the maximum available, or set MAX_FD != -1 to use that value.
|
||||
MAX_FD="maximum"
|
||||
|
||||
warn ( ) {
|
||||
echo "$*"
|
||||
}
|
||||
|
||||
die ( ) {
|
||||
echo
|
||||
echo "$*"
|
||||
echo
|
||||
exit 1
|
||||
}
|
||||
|
||||
# OS specific support (must be 'true' or 'false').
|
||||
cygwin=false
|
||||
msys=false
|
||||
darwin=false
|
||||
case "`uname`" in
|
||||
CYGWIN* )
|
||||
cygwin=true
|
||||
;;
|
||||
Darwin* )
|
||||
darwin=true
|
||||
;;
|
||||
MINGW* )
|
||||
msys=true
|
||||
;;
|
||||
esac
|
||||
|
||||
# Attempt to set APP_HOME
|
||||
# Resolve links: $0 may be a link
|
||||
PRG="$0"
|
||||
# Need this for relative symlinks.
|
||||
while [ -h "$PRG" ] ; do
|
||||
ls=`ls -ld "$PRG"`
|
||||
link=`expr "$ls" : '.*-> \(.*\)$'`
|
||||
if expr "$link" : '/.*' > /dev/null; then
|
||||
PRG="$link"
|
||||
else
|
||||
PRG=`dirname "$PRG"`"/$link"
|
||||
fi
|
||||
done
|
||||
SAVED="`pwd`"
|
||||
cd "`dirname \"$PRG\"`/" >/dev/null
|
||||
APP_HOME="`pwd -P`"
|
||||
cd "$SAVED" >/dev/null
|
||||
|
||||
CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar
|
||||
|
||||
# Determine the Java command to use to start the JVM.
|
||||
if [ -n "$JAVA_HOME" ] ; then
|
||||
if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
|
||||
# IBM's JDK on AIX uses strange locations for the executables
|
||||
JAVACMD="$JAVA_HOME/jre/sh/java"
|
||||
else
|
||||
JAVACMD="$JAVA_HOME/bin/java"
|
||||
fi
|
||||
if [ ! -x "$JAVACMD" ] ; then
|
||||
die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME
|
||||
|
||||
Please set the JAVA_HOME variable in your environment to match the
|
||||
location of your Java installation."
|
||||
fi
|
||||
else
|
||||
JAVACMD="java"
|
||||
which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
|
||||
|
||||
Please set the JAVA_HOME variable in your environment to match the
|
||||
location of your Java installation."
|
||||
fi
|
||||
|
||||
# Increase the maximum file descriptors if we can.
|
||||
if [ "$cygwin" = "false" -a "$darwin" = "false" ] ; then
|
||||
MAX_FD_LIMIT=`ulimit -H -n`
|
||||
if [ $? -eq 0 ] ; then
|
||||
if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then
|
||||
MAX_FD="$MAX_FD_LIMIT"
|
||||
fi
|
||||
ulimit -n $MAX_FD
|
||||
if [ $? -ne 0 ] ; then
|
||||
warn "Could not set maximum file descriptor limit: $MAX_FD"
|
||||
fi
|
||||
else
|
||||
warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT"
|
||||
fi
|
||||
fi
|
||||
|
||||
# For Darwin, add options to specify how the application appears in the dock
|
||||
if $darwin; then
|
||||
GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\""
|
||||
fi
|
||||
|
||||
# For Cygwin, switch paths to Windows format before running java
|
||||
if $cygwin ; then
|
||||
APP_HOME=`cygpath --path --mixed "$APP_HOME"`
|
||||
CLASSPATH=`cygpath --path --mixed "$CLASSPATH"`
|
||||
JAVACMD=`cygpath --unix "$JAVACMD"`
|
||||
|
||||
# We build the pattern for arguments to be converted via cygpath
|
||||
ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null`
|
||||
SEP=""
|
||||
for dir in $ROOTDIRSRAW ; do
|
||||
ROOTDIRS="$ROOTDIRS$SEP$dir"
|
||||
SEP="|"
|
||||
done
|
||||
OURCYGPATTERN="(^($ROOTDIRS))"
|
||||
# Add a user-defined pattern to the cygpath arguments
|
||||
if [ "$GRADLE_CYGPATTERN" != "" ] ; then
|
||||
OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)"
|
||||
fi
|
||||
# Now convert the arguments - kludge to limit ourselves to /bin/sh
|
||||
i=0
|
||||
for arg in "$@" ; do
|
||||
CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -`
|
||||
CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option
|
||||
|
||||
if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition
|
||||
eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"`
|
||||
else
|
||||
eval `echo args$i`="\"$arg\""
|
||||
fi
|
||||
i=$((i+1))
|
||||
done
|
||||
case $i in
|
||||
(0) set -- ;;
|
||||
(1) set -- "$args0" ;;
|
||||
(2) set -- "$args0" "$args1" ;;
|
||||
(3) set -- "$args0" "$args1" "$args2" ;;
|
||||
(4) set -- "$args0" "$args1" "$args2" "$args3" ;;
|
||||
(5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;;
|
||||
(6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;;
|
||||
(7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;;
|
||||
(8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;;
|
||||
(9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;;
|
||||
esac
|
||||
fi
|
||||
|
||||
# Split up the JVM_OPTS And GRADLE_OPTS values into an array, following the shell quoting and substitution rules
|
||||
function splitJvmOpts() {
|
||||
JVM_OPTS=("$@")
|
||||
}
|
||||
eval splitJvmOpts $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS
|
||||
JVM_OPTS[${#JVM_OPTS[*]}]="-Dorg.gradle.appname=$APP_BASE_NAME"
|
||||
|
||||
exec "$JAVACMD" "${JVM_OPTS[@]}" -classpath "$CLASSPATH" org.gradle.wrapper.GradleWrapperMain "$@"
|
90
emojicompat/FileMojiCompat/gradlew.bat
vendored
|
@ -1,90 +0,0 @@
|
|||
@if "%DEBUG%" == "" @echo off
|
||||
@rem ##########################################################################
|
||||
@rem
|
||||
@rem Gradle startup script for Windows
|
||||
@rem
|
||||
@rem ##########################################################################
|
||||
|
||||
@rem Set local scope for the variables with windows NT shell
|
||||
if "%OS%"=="Windows_NT" setlocal
|
||||
|
||||
@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
|
||||
set DEFAULT_JVM_OPTS=
|
||||
|
||||
set DIRNAME=%~dp0
|
||||
if "%DIRNAME%" == "" set DIRNAME=.
|
||||
set APP_BASE_NAME=%~n0
|
||||
set APP_HOME=%DIRNAME%
|
||||
|
||||
@rem Find java.exe
|
||||
if defined JAVA_HOME goto findJavaFromJavaHome
|
||||
|
||||
set JAVA_EXE=java.exe
|
||||
%JAVA_EXE% -version >NUL 2>&1
|
||||
if "%ERRORLEVEL%" == "0" goto init
|
||||
|
||||
echo.
|
||||
echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
|
||||
echo.
|
||||
echo Please set the JAVA_HOME variable in your environment to match the
|
||||
echo location of your Java installation.
|
||||
|
||||
goto fail
|
||||
|
||||
:findJavaFromJavaHome
|
||||
set JAVA_HOME=%JAVA_HOME:"=%
|
||||
set JAVA_EXE=%JAVA_HOME%/bin/java.exe
|
||||
|
||||
if exist "%JAVA_EXE%" goto init
|
||||
|
||||
echo.
|
||||
echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME%
|
||||
echo.
|
||||
echo Please set the JAVA_HOME variable in your environment to match the
|
||||
echo location of your Java installation.
|
||||
|
||||
goto fail
|
||||
|
||||
:init
|
||||
@rem Get command-line arguments, handling Windowz variants
|
||||
|
||||
if not "%OS%" == "Windows_NT" goto win9xME_args
|
||||
if "%@eval[2+2]" == "4" goto 4NT_args
|
||||
|
||||
:win9xME_args
|
||||
@rem Slurp the command line arguments.
|
||||
set CMD_LINE_ARGS=
|
||||
set _SKIP=2
|
||||
|
||||
:win9xME_args_slurp
|
||||
if "x%~1" == "x" goto execute
|
||||
|
||||
set CMD_LINE_ARGS=%*
|
||||
goto execute
|
||||
|
||||
:4NT_args
|
||||
@rem Get arguments from the 4NT Shell from JP Software
|
||||
set CMD_LINE_ARGS=%$
|
||||
|
||||
:execute
|
||||
@rem Setup the command line
|
||||
|
||||
set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar
|
||||
|
||||
@rem Execute Gradle
|
||||
"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS%
|
||||
|
||||
:end
|
||||
@rem End local scope for the variables with windows NT shell
|
||||
if "%ERRORLEVEL%"=="0" goto mainEnd
|
||||
|
||||
:fail
|
||||
rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of
|
||||
rem the _cmd.exe /c_ return code!
|
||||
if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1
|
||||
exit /b 1
|
||||
|
||||
:mainEnd
|
||||
if "%OS%"=="Windows_NT" endlocal
|
||||
|
||||
:omega
|
|
@ -1 +0,0 @@
|
|||
include ':filemojicompat'
|
|
@ -1,4 +1,4 @@
|
|||
# Please note that all these features (except for the Blobmoji EmojiCompat font itself) are now included in their own library which you can find at [FileMojiCompat](https://github.com/C1710/FilemojiCompat). This page (and folder) will be updated soon :sweat_smile:
|
||||
# Please note that all these features (except for the Blobmoji EmojiCompat font itself) are now included in their own library which you can find at [FileMojiCompat](https://github.com/C1710/FilemojiCompat).
|
||||
## You can use this font in [EmojiCompat](https://developer.android.com/guide/topics/ui/look-and-feel/emoji-compat.html)!
|
||||
The most important file for this is `NotoEmojiCompat.ttf`. This is the font you'll need.
|
||||
There are three different ways to use this font in EmojiCompat:
|
||||
|
|
|
@ -1,855 +0,0 @@
|
|||
# emoji-sequences.txt
|
||||
# Date: 2018-02-07, 07:55:18 GMT
|
||||
# © 2018 Unicode®, Inc.
|
||||
# Unicode and the Unicode Logo are registered trademarks of Unicode, Inc. in the U.S. and other countries.
|
||||
# For terms of use, see http://www.unicode.org/terms_of_use.html
|
||||
#
|
||||
# Emoji Sequence Data for UTS #51
|
||||
# Version: 11.0
|
||||
#
|
||||
# For documentation and usage, see http://www.unicode.org/reports/tr51
|
||||
#
|
||||
# Format:
|
||||
# code_point(s) ; type_field ; description # comments
|
||||
# Fields:
|
||||
# code_point(s): one or more code points in hex format, separated by spaces
|
||||
# type_field: any of {Emoji_Combining_Sequence, Emoji_Flag_Sequence, Emoji_Modifier_Sequence}
|
||||
# The type_field is a convenience for parsing the emoji sequence files, and is not intended to be maintained as a property.
|
||||
# short name: CLDR short name of sequence; characters may be escaped with \x{hex}.
|
||||
#
|
||||
# Characters and sequences are listed in code point order. Users should be shown a more natural order.
|
||||
# See the CLDR collation order for Emoji.
|
||||
|
||||
# ================================================
|
||||
|
||||
# Emoji Keycap Sequence
|
||||
|
||||
0023 FE0F 20E3; Emoji_Keycap_Sequence ; keycap: \x{23} # 3.0 [1] (#️⃣)
|
||||
002A FE0F 20E3; Emoji_Keycap_Sequence ; keycap: * # 3.0 [1] (*️⃣)
|
||||
0030 FE0F 20E3; Emoji_Keycap_Sequence ; keycap: 0 # 3.0 [1] (0️⃣)
|
||||
0031 FE0F 20E3; Emoji_Keycap_Sequence ; keycap: 1 # 3.0 [1] (1️⃣)
|
||||
0032 FE0F 20E3; Emoji_Keycap_Sequence ; keycap: 2 # 3.0 [1] (2️⃣)
|
||||
0033 FE0F 20E3; Emoji_Keycap_Sequence ; keycap: 3 # 3.0 [1] (3️⃣)
|
||||
0034 FE0F 20E3; Emoji_Keycap_Sequence ; keycap: 4 # 3.0 [1] (4️⃣)
|
||||
0035 FE0F 20E3; Emoji_Keycap_Sequence ; keycap: 5 # 3.0 [1] (5️⃣)
|
||||
0036 FE0F 20E3; Emoji_Keycap_Sequence ; keycap: 6 # 3.0 [1] (6️⃣)
|
||||
0037 FE0F 20E3; Emoji_Keycap_Sequence ; keycap: 7 # 3.0 [1] (7️⃣)
|
||||
0038 FE0F 20E3; Emoji_Keycap_Sequence ; keycap: 8 # 3.0 [1] (8️⃣)
|
||||
0039 FE0F 20E3; Emoji_Keycap_Sequence ; keycap: 9 # 3.0 [1] (9️⃣)
|
||||
|
||||
# Total elements: 12
|
||||
|
||||
# ================================================
|
||||
|
||||
# Emoji Flag Sequence: This list does not include deprecated or macroregion flags, except for UN and EU.
|
||||
# See Annex B of TR51 for more information.
|
||||
|
||||
1F1E6 1F1E8 ; Emoji_Flag_Sequence ; Ascension Island # 6.0 [1] (🇦🇨)
|
||||
1F1E6 1F1E9 ; Emoji_Flag_Sequence ; Andorra # 6.0 [1] (🇦🇩)
|
||||
1F1E6 1F1EA ; Emoji_Flag_Sequence ; United Arab Emirates # 6.0 [1] (🇦🇪)
|
||||
1F1E6 1F1EB ; Emoji_Flag_Sequence ; Afghanistan # 6.0 [1] (🇦🇫)
|
||||
1F1E6 1F1EC ; Emoji_Flag_Sequence ; Antigua & Barbuda # 6.0 [1] (🇦🇬)
|
||||
1F1E6 1F1EE ; Emoji_Flag_Sequence ; Anguilla # 6.0 [1] (🇦🇮)
|
||||
1F1E6 1F1F1 ; Emoji_Flag_Sequence ; Albania # 6.0 [1] (🇦🇱)
|
||||
1F1E6 1F1F2 ; Emoji_Flag_Sequence ; Armenia # 6.0 [1] (🇦🇲)
|
||||
1F1E6 1F1F4 ; Emoji_Flag_Sequence ; Angola # 6.0 [1] (🇦🇴)
|
||||
1F1E6 1F1F6 ; Emoji_Flag_Sequence ; Antarctica # 6.0 [1] (🇦🇶)
|
||||
1F1E6 1F1F7 ; Emoji_Flag_Sequence ; Argentina # 6.0 [1] (🇦🇷)
|
||||
1F1E6 1F1F8 ; Emoji_Flag_Sequence ; American Samoa # 6.0 [1] (🇦🇸)
|
||||
1F1E6 1F1F9 ; Emoji_Flag_Sequence ; Austria # 6.0 [1] (🇦🇹)
|
||||
1F1E6 1F1FA ; Emoji_Flag_Sequence ; Australia # 6.0 [1] (🇦🇺)
|
||||
1F1E6 1F1FC ; Emoji_Flag_Sequence ; Aruba # 6.0 [1] (🇦🇼)
|
||||
1F1E6 1F1FD ; Emoji_Flag_Sequence ; Åland Islands # 6.0 [1] (🇦🇽)
|
||||
1F1E6 1F1FF ; Emoji_Flag_Sequence ; Azerbaijan # 6.0 [1] (🇦🇿)
|
||||
1F1E7 1F1E6 ; Emoji_Flag_Sequence ; Bosnia & Herzegovina # 6.0 [1] (🇧🇦)
|
||||
1F1E7 1F1E7 ; Emoji_Flag_Sequence ; Barbados # 6.0 [1] (🇧🇧)
|
||||
1F1E7 1F1E9 ; Emoji_Flag_Sequence ; Bangladesh # 6.0 [1] (🇧🇩)
|
||||
1F1E7 1F1EA ; Emoji_Flag_Sequence ; Belgium # 6.0 [1] (🇧🇪)
|
||||
1F1E7 1F1EB ; Emoji_Flag_Sequence ; Burkina Faso # 6.0 [1] (🇧🇫)
|
||||
1F1E7 1F1EC ; Emoji_Flag_Sequence ; Bulgaria # 6.0 [1] (🇧🇬)
|
||||
1F1E7 1F1ED ; Emoji_Flag_Sequence ; Bahrain # 6.0 [1] (🇧🇭)
|
||||
1F1E7 1F1EE ; Emoji_Flag_Sequence ; Burundi # 6.0 [1] (🇧🇮)
|
||||
1F1E7 1F1EF ; Emoji_Flag_Sequence ; Benin # 6.0 [1] (🇧🇯)
|
||||
1F1E7 1F1F1 ; Emoji_Flag_Sequence ; St. Barthélemy # 6.0 [1] (🇧🇱)
|
||||
1F1E7 1F1F2 ; Emoji_Flag_Sequence ; Bermuda # 6.0 [1] (🇧🇲)
|
||||
1F1E7 1F1F3 ; Emoji_Flag_Sequence ; Brunei # 6.0 [1] (🇧🇳)
|
||||
1F1E7 1F1F4 ; Emoji_Flag_Sequence ; Bolivia # 6.0 [1] (🇧🇴)
|
||||
1F1E7 1F1F6 ; Emoji_Flag_Sequence ; Caribbean Netherlands # 6.0 [1] (🇧🇶)
|
||||
1F1E7 1F1F7 ; Emoji_Flag_Sequence ; Brazil # 6.0 [1] (🇧🇷)
|
||||
1F1E7 1F1F8 ; Emoji_Flag_Sequence ; Bahamas # 6.0 [1] (🇧🇸)
|
||||
1F1E7 1F1F9 ; Emoji_Flag_Sequence ; Bhutan # 6.0 [1] (🇧🇹)
|
||||
1F1E7 1F1FB ; Emoji_Flag_Sequence ; Bouvet Island # 6.0 [1] (🇧🇻)
|
||||
1F1E7 1F1FC ; Emoji_Flag_Sequence ; Botswana # 6.0 [1] (🇧🇼)
|
||||
1F1E7 1F1FE ; Emoji_Flag_Sequence ; Belarus # 6.0 [1] (🇧🇾)
|
||||
1F1E7 1F1FF ; Emoji_Flag_Sequence ; Belize # 6.0 [1] (🇧🇿)
|
||||
1F1E8 1F1E6 ; Emoji_Flag_Sequence ; Canada # 6.0 [1] (🇨🇦)
|
||||
1F1E8 1F1E8 ; Emoji_Flag_Sequence ; Cocos (Keeling) Islands # 6.0 [1] (🇨🇨)
|
||||
1F1E8 1F1E9 ; Emoji_Flag_Sequence ; Congo - Kinshasa # 6.0 [1] (🇨🇩)
|
||||
1F1E8 1F1EB ; Emoji_Flag_Sequence ; Central African Republic # 6.0 [1] (🇨🇫)
|
||||
1F1E8 1F1EC ; Emoji_Flag_Sequence ; Congo - Brazzaville # 6.0 [1] (🇨🇬)
|
||||
1F1E8 1F1ED ; Emoji_Flag_Sequence ; Switzerland # 6.0 [1] (🇨🇭)
|
||||
1F1E8 1F1EE ; Emoji_Flag_Sequence ; Côte d’Ivoire # 6.0 [1] (🇨🇮)
|
||||
1F1E8 1F1F0 ; Emoji_Flag_Sequence ; Cook Islands # 6.0 [1] (🇨🇰)
|
||||
1F1E8 1F1F1 ; Emoji_Flag_Sequence ; Chile # 6.0 [1] (🇨🇱)
|
||||
1F1E8 1F1F2 ; Emoji_Flag_Sequence ; Cameroon # 6.0 [1] (🇨🇲)
|
||||
1F1E8 1F1F3 ; Emoji_Flag_Sequence ; China # 6.0 [1] (🇨🇳)
|
||||
1F1E8 1F1F4 ; Emoji_Flag_Sequence ; Colombia # 6.0 [1] (🇨🇴)
|
||||
1F1E8 1F1F5 ; Emoji_Flag_Sequence ; Clipperton Island # 6.0 [1] (🇨🇵)
|
||||
1F1E8 1F1F7 ; Emoji_Flag_Sequence ; Costa Rica # 6.0 [1] (🇨🇷)
|
||||
1F1E8 1F1FA ; Emoji_Flag_Sequence ; Cuba # 6.0 [1] (🇨🇺)
|
||||
1F1E8 1F1FB ; Emoji_Flag_Sequence ; Cape Verde # 6.0 [1] (🇨🇻)
|
||||
1F1E8 1F1FC ; Emoji_Flag_Sequence ; Curaçao # 6.0 [1] (🇨🇼)
|
||||
1F1E8 1F1FD ; Emoji_Flag_Sequence ; Christmas Island # 6.0 [1] (🇨🇽)
|
||||
1F1E8 1F1FE ; Emoji_Flag_Sequence ; Cyprus # 6.0 [1] (🇨🇾)
|
||||
1F1E8 1F1FF ; Emoji_Flag_Sequence ; Czechia # 6.0 [1] (🇨🇿)
|
||||
1F1E9 1F1EA ; Emoji_Flag_Sequence ; Germany # 6.0 [1] (🇩🇪)
|
||||
1F1E9 1F1EC ; Emoji_Flag_Sequence ; Diego Garcia # 6.0 [1] (🇩🇬)
|
||||
1F1E9 1F1EF ; Emoji_Flag_Sequence ; Djibouti # 6.0 [1] (🇩🇯)
|
||||
1F1E9 1F1F0 ; Emoji_Flag_Sequence ; Denmark # 6.0 [1] (🇩🇰)
|
||||
1F1E9 1F1F2 ; Emoji_Flag_Sequence ; Dominica # 6.0 [1] (🇩🇲)
|
||||
1F1E9 1F1F4 ; Emoji_Flag_Sequence ; Dominican Republic # 6.0 [1] (🇩🇴)
|
||||
1F1E9 1F1FF ; Emoji_Flag_Sequence ; Algeria # 6.0 [1] (🇩🇿)
|
||||
1F1EA 1F1E6 ; Emoji_Flag_Sequence ; Ceuta & Melilla # 6.0 [1] (🇪🇦)
|
||||
1F1EA 1F1E8 ; Emoji_Flag_Sequence ; Ecuador # 6.0 [1] (🇪🇨)
|
||||
1F1EA 1F1EA ; Emoji_Flag_Sequence ; Estonia # 6.0 [1] (🇪🇪)
|
||||
1F1EA 1F1EC ; Emoji_Flag_Sequence ; Egypt # 6.0 [1] (🇪🇬)
|
||||
1F1EA 1F1ED ; Emoji_Flag_Sequence ; Western Sahara # 6.0 [1] (🇪🇭)
|
||||
1F1EA 1F1F7 ; Emoji_Flag_Sequence ; Eritrea # 6.0 [1] (🇪🇷)
|
||||
1F1EA 1F1F8 ; Emoji_Flag_Sequence ; Spain # 6.0 [1] (🇪🇸)
|
||||
1F1EA 1F1F9 ; Emoji_Flag_Sequence ; Ethiopia # 6.0 [1] (🇪🇹)
|
||||
1F1EA 1F1FA ; Emoji_Flag_Sequence ; European Union # 6.0 [1] (🇪🇺)
|
||||
1F1EB 1F1EE ; Emoji_Flag_Sequence ; Finland # 6.0 [1] (🇫🇮)
|
||||
1F1EB 1F1EF ; Emoji_Flag_Sequence ; Fiji # 6.0 [1] (🇫🇯)
|
||||
1F1EB 1F1F0 ; Emoji_Flag_Sequence ; Falkland Islands # 6.0 [1] (🇫🇰)
|
||||
1F1EB 1F1F2 ; Emoji_Flag_Sequence ; Micronesia # 6.0 [1] (🇫🇲)
|
||||
1F1EB 1F1F4 ; Emoji_Flag_Sequence ; Faroe Islands # 6.0 [1] (🇫🇴)
|
||||
1F1EB 1F1F7 ; Emoji_Flag_Sequence ; France # 6.0 [1] (🇫🇷)
|
||||
1F1EC 1F1E6 ; Emoji_Flag_Sequence ; Gabon # 6.0 [1] (🇬🇦)
|
||||
1F1EC 1F1E7 ; Emoji_Flag_Sequence ; United Kingdom # 6.0 [1] (🇬🇧)
|
||||
1F1EC 1F1E9 ; Emoji_Flag_Sequence ; Grenada # 6.0 [1] (🇬🇩)
|
||||
1F1EC 1F1EA ; Emoji_Flag_Sequence ; Georgia # 6.0 [1] (🇬🇪)
|
||||
1F1EC 1F1EB ; Emoji_Flag_Sequence ; French Guiana # 6.0 [1] (🇬🇫)
|
||||
1F1EC 1F1EC ; Emoji_Flag_Sequence ; Guernsey # 6.0 [1] (🇬🇬)
|
||||
1F1EC 1F1ED ; Emoji_Flag_Sequence ; Ghana # 6.0 [1] (🇬🇭)
|
||||
1F1EC 1F1EE ; Emoji_Flag_Sequence ; Gibraltar # 6.0 [1] (🇬🇮)
|
||||
1F1EC 1F1F1 ; Emoji_Flag_Sequence ; Greenland # 6.0 [1] (🇬🇱)
|
||||
1F1EC 1F1F2 ; Emoji_Flag_Sequence ; Gambia # 6.0 [1] (🇬🇲)
|
||||
1F1EC 1F1F3 ; Emoji_Flag_Sequence ; Guinea # 6.0 [1] (🇬🇳)
|
||||
1F1EC 1F1F5 ; Emoji_Flag_Sequence ; Guadeloupe # 6.0 [1] (🇬🇵)
|
||||
1F1EC 1F1F6 ; Emoji_Flag_Sequence ; Equatorial Guinea # 6.0 [1] (🇬🇶)
|
||||
1F1EC 1F1F7 ; Emoji_Flag_Sequence ; Greece # 6.0 [1] (🇬🇷)
|
||||
1F1EC 1F1F8 ; Emoji_Flag_Sequence ; South Georgia & South Sandwich Islands # 6.0 [1] (🇬🇸)
|
||||
1F1EC 1F1F9 ; Emoji_Flag_Sequence ; Guatemala # 6.0 [1] (🇬🇹)
|
||||
1F1EC 1F1FA ; Emoji_Flag_Sequence ; Guam # 6.0 [1] (🇬🇺)
|
||||
1F1EC 1F1FC ; Emoji_Flag_Sequence ; Guinea-Bissau # 6.0 [1] (🇬🇼)
|
||||
1F1EC 1F1FE ; Emoji_Flag_Sequence ; Guyana # 6.0 [1] (🇬🇾)
|
||||
1F1ED 1F1F0 ; Emoji_Flag_Sequence ; Hong Kong SAR China # 6.0 [1] (🇭🇰)
|
||||
1F1ED 1F1F2 ; Emoji_Flag_Sequence ; Heard & McDonald Islands # 6.0 [1] (🇭🇲)
|
||||
1F1ED 1F1F3 ; Emoji_Flag_Sequence ; Honduras # 6.0 [1] (🇭🇳)
|
||||
1F1ED 1F1F7 ; Emoji_Flag_Sequence ; Croatia # 6.0 [1] (🇭🇷)
|
||||
1F1ED 1F1F9 ; Emoji_Flag_Sequence ; Haiti # 6.0 [1] (🇭🇹)
|
||||
1F1ED 1F1FA ; Emoji_Flag_Sequence ; Hungary # 6.0 [1] (🇭🇺)
|
||||
1F1EE 1F1E8 ; Emoji_Flag_Sequence ; Canary Islands # 6.0 [1] (🇮🇨)
|
||||
1F1EE 1F1E9 ; Emoji_Flag_Sequence ; Indonesia # 6.0 [1] (🇮🇩)
|
||||
1F1EE 1F1EA ; Emoji_Flag_Sequence ; Ireland # 6.0 [1] (🇮🇪)
|
||||
1F1EE 1F1F1 ; Emoji_Flag_Sequence ; Israel # 6.0 [1] (🇮🇱)
|
||||
1F1EE 1F1F2 ; Emoji_Flag_Sequence ; Isle of Man # 6.0 [1] (🇮🇲)
|
||||
1F1EE 1F1F3 ; Emoji_Flag_Sequence ; India # 6.0 [1] (🇮🇳)
|
||||
1F1EE 1F1F4 ; Emoji_Flag_Sequence ; British Indian Ocean Territory # 6.0 [1] (🇮🇴)
|
||||
1F1EE 1F1F6 ; Emoji_Flag_Sequence ; Iraq # 6.0 [1] (🇮🇶)
|
||||
1F1EE 1F1F7 ; Emoji_Flag_Sequence ; Iran # 6.0 [1] (🇮🇷)
|
||||
1F1EE 1F1F8 ; Emoji_Flag_Sequence ; Iceland # 6.0 [1] (🇮🇸)
|
||||
1F1EE 1F1F9 ; Emoji_Flag_Sequence ; Italy # 6.0 [1] (🇮🇹)
|
||||
1F1EF 1F1EA ; Emoji_Flag_Sequence ; Jersey # 6.0 [1] (🇯🇪)
|
||||
1F1EF 1F1F2 ; Emoji_Flag_Sequence ; Jamaica # 6.0 [1] (🇯🇲)
|
||||
1F1EF 1F1F4 ; Emoji_Flag_Sequence ; Jordan # 6.0 [1] (🇯🇴)
|
||||
1F1EF 1F1F5 ; Emoji_Flag_Sequence ; Japan # 6.0 [1] (🇯🇵)
|
||||
1F1F0 1F1EA ; Emoji_Flag_Sequence ; Kenya # 6.0 [1] (🇰🇪)
|
||||
1F1F0 1F1EC ; Emoji_Flag_Sequence ; Kyrgyzstan # 6.0 [1] (🇰🇬)
|
||||
1F1F0 1F1ED ; Emoji_Flag_Sequence ; Cambodia # 6.0 [1] (🇰🇭)
|
||||
1F1F0 1F1EE ; Emoji_Flag_Sequence ; Kiribati # 6.0 [1] (🇰🇮)
|
||||
1F1F0 1F1F2 ; Emoji_Flag_Sequence ; Comoros # 6.0 [1] (🇰🇲)
|
||||
1F1F0 1F1F3 ; Emoji_Flag_Sequence ; St. Kitts & Nevis # 6.0 [1] (🇰🇳)
|
||||
1F1F0 1F1F5 ; Emoji_Flag_Sequence ; North Korea # 6.0 [1] (🇰🇵)
|
||||
1F1F0 1F1F7 ; Emoji_Flag_Sequence ; South Korea # 6.0 [1] (🇰🇷)
|
||||
1F1F0 1F1FC ; Emoji_Flag_Sequence ; Kuwait # 6.0 [1] (🇰🇼)
|
||||
1F1F0 1F1FE ; Emoji_Flag_Sequence ; Cayman Islands # 6.0 [1] (🇰🇾)
|
||||
1F1F0 1F1FF ; Emoji_Flag_Sequence ; Kazakhstan # 6.0 [1] (🇰🇿)
|
||||
1F1F1 1F1E6 ; Emoji_Flag_Sequence ; Laos # 6.0 [1] (🇱🇦)
|
||||
1F1F1 1F1E7 ; Emoji_Flag_Sequence ; Lebanon # 6.0 [1] (🇱🇧)
|
||||
1F1F1 1F1E8 ; Emoji_Flag_Sequence ; St. Lucia # 6.0 [1] (🇱🇨)
|
||||
1F1F1 1F1EE ; Emoji_Flag_Sequence ; Liechtenstein # 6.0 [1] (🇱🇮)
|
||||
1F1F1 1F1F0 ; Emoji_Flag_Sequence ; Sri Lanka # 6.0 [1] (🇱🇰)
|
||||
1F1F1 1F1F7 ; Emoji_Flag_Sequence ; Liberia # 6.0 [1] (🇱🇷)
|
||||
1F1F1 1F1F8 ; Emoji_Flag_Sequence ; Lesotho # 6.0 [1] (🇱🇸)
|
||||
1F1F1 1F1F9 ; Emoji_Flag_Sequence ; Lithuania # 6.0 [1] (🇱🇹)
|
||||
1F1F1 1F1FA ; Emoji_Flag_Sequence ; Luxembourg # 6.0 [1] (🇱🇺)
|
||||
1F1F1 1F1FB ; Emoji_Flag_Sequence ; Latvia # 6.0 [1] (🇱🇻)
|
||||
1F1F1 1F1FE ; Emoji_Flag_Sequence ; Libya # 6.0 [1] (🇱🇾)
|
||||
1F1F2 1F1E6 ; Emoji_Flag_Sequence ; Morocco # 6.0 [1] (🇲🇦)
|
||||
1F1F2 1F1E8 ; Emoji_Flag_Sequence ; Monaco # 6.0 [1] (🇲🇨)
|
||||
1F1F2 1F1E9 ; Emoji_Flag_Sequence ; Moldova # 6.0 [1] (🇲🇩)
|
||||
1F1F2 1F1EA ; Emoji_Flag_Sequence ; Montenegro # 6.0 [1] (🇲🇪)
|
||||
1F1F2 1F1EB ; Emoji_Flag_Sequence ; St. Martin # 6.0 [1] (🇲🇫)
|
||||
1F1F2 1F1EC ; Emoji_Flag_Sequence ; Madagascar # 6.0 [1] (🇲🇬)
|
||||
1F1F2 1F1ED ; Emoji_Flag_Sequence ; Marshall Islands # 6.0 [1] (🇲🇭)
|
||||
1F1F2 1F1F0 ; Emoji_Flag_Sequence ; Macedonia # 6.0 [1] (🇲🇰)
|
||||
1F1F2 1F1F1 ; Emoji_Flag_Sequence ; Mali # 6.0 [1] (🇲🇱)
|
||||
1F1F2 1F1F2 ; Emoji_Flag_Sequence ; Myanmar (Burma) # 6.0 [1] (🇲🇲)
|
||||
1F1F2 1F1F3 ; Emoji_Flag_Sequence ; Mongolia # 6.0 [1] (🇲🇳)
|
||||
1F1F2 1F1F4 ; Emoji_Flag_Sequence ; Macau SAR China # 6.0 [1] (🇲🇴)
|
||||
1F1F2 1F1F5 ; Emoji_Flag_Sequence ; Northern Mariana Islands # 6.0 [1] (🇲🇵)
|
||||
1F1F2 1F1F6 ; Emoji_Flag_Sequence ; Martinique # 6.0 [1] (🇲🇶)
|
||||
1F1F2 1F1F7 ; Emoji_Flag_Sequence ; Mauritania # 6.0 [1] (🇲🇷)
|
||||
1F1F2 1F1F8 ; Emoji_Flag_Sequence ; Montserrat # 6.0 [1] (🇲🇸)
|
||||
1F1F2 1F1F9 ; Emoji_Flag_Sequence ; Malta # 6.0 [1] (🇲🇹)
|
||||
1F1F2 1F1FA ; Emoji_Flag_Sequence ; Mauritius # 6.0 [1] (🇲🇺)
|
||||
1F1F2 1F1FB ; Emoji_Flag_Sequence ; Maldives # 6.0 [1] (🇲🇻)
|
||||
1F1F2 1F1FC ; Emoji_Flag_Sequence ; Malawi # 6.0 [1] (🇲🇼)
|
||||
1F1F2 1F1FD ; Emoji_Flag_Sequence ; Mexico # 6.0 [1] (🇲🇽)
|
||||
1F1F2 1F1FE ; Emoji_Flag_Sequence ; Malaysia # 6.0 [1] (🇲🇾)
|
||||
1F1F2 1F1FF ; Emoji_Flag_Sequence ; Mozambique # 6.0 [1] (🇲🇿)
|
||||
1F1F3 1F1E6 ; Emoji_Flag_Sequence ; Namibia # 6.0 [1] (🇳🇦)
|
||||
1F1F3 1F1E8 ; Emoji_Flag_Sequence ; New Caledonia # 6.0 [1] (🇳🇨)
|
||||
1F1F3 1F1EA ; Emoji_Flag_Sequence ; Niger # 6.0 [1] (🇳🇪)
|
||||
1F1F3 1F1EB ; Emoji_Flag_Sequence ; Norfolk Island # 6.0 [1] (🇳🇫)
|
||||
1F1F3 1F1EC ; Emoji_Flag_Sequence ; Nigeria # 6.0 [1] (🇳🇬)
|
||||
1F1F3 1F1EE ; Emoji_Flag_Sequence ; Nicaragua # 6.0 [1] (🇳🇮)
|
||||
1F1F3 1F1F1 ; Emoji_Flag_Sequence ; Netherlands # 6.0 [1] (🇳🇱)
|
||||
1F1F3 1F1F4 ; Emoji_Flag_Sequence ; Norway # 6.0 [1] (🇳🇴)
|
||||
1F1F3 1F1F5 ; Emoji_Flag_Sequence ; Nepal # 6.0 [1] (🇳🇵)
|
||||
1F1F3 1F1F7 ; Emoji_Flag_Sequence ; Nauru # 6.0 [1] (🇳🇷)
|
||||
1F1F3 1F1FA ; Emoji_Flag_Sequence ; Niue # 6.0 [1] (🇳🇺)
|
||||
1F1F3 1F1FF ; Emoji_Flag_Sequence ; New Zealand # 6.0 [1] (🇳🇿)
|
||||
1F1F4 1F1F2 ; Emoji_Flag_Sequence ; Oman # 6.0 [1] (🇴🇲)
|
||||
1F1F5 1F1E6 ; Emoji_Flag_Sequence ; Panama # 6.0 [1] (🇵🇦)
|
||||
1F1F5 1F1EA ; Emoji_Flag_Sequence ; Peru # 6.0 [1] (🇵🇪)
|
||||
1F1F5 1F1EB ; Emoji_Flag_Sequence ; French Polynesia # 6.0 [1] (🇵🇫)
|
||||
1F1F5 1F1EC ; Emoji_Flag_Sequence ; Papua New Guinea # 6.0 [1] (🇵🇬)
|
||||
1F1F5 1F1ED ; Emoji_Flag_Sequence ; Philippines # 6.0 [1] (🇵🇭)
|
||||
1F1F5 1F1F0 ; Emoji_Flag_Sequence ; Pakistan # 6.0 [1] (🇵🇰)
|
||||
1F1F5 1F1F1 ; Emoji_Flag_Sequence ; Poland # 6.0 [1] (🇵🇱)
|
||||
1F1F5 1F1F2 ; Emoji_Flag_Sequence ; St. Pierre & Miquelon # 6.0 [1] (🇵🇲)
|
||||
1F1F5 1F1F3 ; Emoji_Flag_Sequence ; Pitcairn Islands # 6.0 [1] (🇵🇳)
|
||||
1F1F5 1F1F7 ; Emoji_Flag_Sequence ; Puerto Rico # 6.0 [1] (🇵🇷)
|
||||
1F1F5 1F1F8 ; Emoji_Flag_Sequence ; Palestinian Territories # 6.0 [1] (🇵🇸)
|
||||
1F1F5 1F1F9 ; Emoji_Flag_Sequence ; Portugal # 6.0 [1] (🇵🇹)
|
||||
1F1F5 1F1FC ; Emoji_Flag_Sequence ; Palau # 6.0 [1] (🇵🇼)
|
||||
1F1F5 1F1FE ; Emoji_Flag_Sequence ; Paraguay # 6.0 [1] (🇵🇾)
|
||||
1F1F6 1F1E6 ; Emoji_Flag_Sequence ; Qatar # 6.0 [1] (🇶🇦)
|
||||
1F1F7 1F1EA ; Emoji_Flag_Sequence ; Réunion # 6.0 [1] (🇷🇪)
|
||||
1F1F7 1F1F4 ; Emoji_Flag_Sequence ; Romania # 6.0 [1] (🇷🇴)
|
||||
1F1F7 1F1F8 ; Emoji_Flag_Sequence ; Serbia # 6.0 [1] (🇷🇸)
|
||||
1F1F7 1F1FA ; Emoji_Flag_Sequence ; Russia # 6.0 [1] (🇷🇺)
|
||||
1F1F7 1F1FC ; Emoji_Flag_Sequence ; Rwanda # 6.0 [1] (🇷🇼)
|
||||
1F1F8 1F1E6 ; Emoji_Flag_Sequence ; Saudi Arabia # 6.0 [1] (🇸🇦)
|
||||
1F1F8 1F1E7 ; Emoji_Flag_Sequence ; Solomon Islands # 6.0 [1] (🇸🇧)
|
||||
1F1F8 1F1E8 ; Emoji_Flag_Sequence ; Seychelles # 6.0 [1] (🇸🇨)
|
||||
1F1F8 1F1E9 ; Emoji_Flag_Sequence ; Sudan # 6.0 [1] (🇸🇩)
|
||||
1F1F8 1F1EA ; Emoji_Flag_Sequence ; Sweden # 6.0 [1] (🇸🇪)
|
||||
1F1F8 1F1EC ; Emoji_Flag_Sequence ; Singapore # 6.0 [1] (🇸🇬)
|
||||
1F1F8 1F1ED ; Emoji_Flag_Sequence ; St. Helena # 6.0 [1] (🇸🇭)
|
||||
1F1F8 1F1EE ; Emoji_Flag_Sequence ; Slovenia # 6.0 [1] (🇸🇮)
|
||||
1F1F8 1F1EF ; Emoji_Flag_Sequence ; Svalbard & Jan Mayen # 6.0 [1] (🇸🇯)
|
||||
1F1F8 1F1F0 ; Emoji_Flag_Sequence ; Slovakia # 6.0 [1] (🇸🇰)
|
||||
1F1F8 1F1F1 ; Emoji_Flag_Sequence ; Sierra Leone # 6.0 [1] (🇸🇱)
|
||||
1F1F8 1F1F2 ; Emoji_Flag_Sequence ; San Marino # 6.0 [1] (🇸🇲)
|
||||
1F1F8 1F1F3 ; Emoji_Flag_Sequence ; Senegal # 6.0 [1] (🇸🇳)
|
||||
1F1F8 1F1F4 ; Emoji_Flag_Sequence ; Somalia # 6.0 [1] (🇸🇴)
|
||||
1F1F8 1F1F7 ; Emoji_Flag_Sequence ; Suriname # 6.0 [1] (🇸🇷)
|
||||
1F1F8 1F1F8 ; Emoji_Flag_Sequence ; South Sudan # 6.0 [1] (🇸🇸)
|
||||
1F1F8 1F1F9 ; Emoji_Flag_Sequence ; São Tomé & Príncipe # 6.0 [1] (🇸🇹)
|
||||
1F1F8 1F1FB ; Emoji_Flag_Sequence ; El Salvador # 6.0 [1] (🇸🇻)
|
||||
1F1F8 1F1FD ; Emoji_Flag_Sequence ; Sint Maarten # 6.0 [1] (🇸🇽)
|
||||
1F1F8 1F1FE ; Emoji_Flag_Sequence ; Syria # 6.0 [1] (🇸🇾)
|
||||
1F1F8 1F1FF ; Emoji_Flag_Sequence ; Swaziland # 6.0 [1] (🇸🇿)
|
||||
1F1F9 1F1E6 ; Emoji_Flag_Sequence ; Tristan da Cunha # 6.0 [1] (🇹🇦)
|
||||
1F1F9 1F1E8 ; Emoji_Flag_Sequence ; Turks & Caicos Islands # 6.0 [1] (🇹🇨)
|
||||
1F1F9 1F1E9 ; Emoji_Flag_Sequence ; Chad # 6.0 [1] (🇹🇩)
|
||||
1F1F9 1F1EB ; Emoji_Flag_Sequence ; French Southern Territories # 6.0 [1] (🇹🇫)
|
||||
1F1F9 1F1EC ; Emoji_Flag_Sequence ; Togo # 6.0 [1] (🇹🇬)
|
||||
1F1F9 1F1ED ; Emoji_Flag_Sequence ; Thailand # 6.0 [1] (🇹🇭)
|
||||
1F1F9 1F1EF ; Emoji_Flag_Sequence ; Tajikistan # 6.0 [1] (🇹🇯)
|
||||
1F1F9 1F1F0 ; Emoji_Flag_Sequence ; Tokelau # 6.0 [1] (🇹🇰)
|
||||
1F1F9 1F1F1 ; Emoji_Flag_Sequence ; Timor-Leste # 6.0 [1] (🇹🇱)
|
||||
1F1F9 1F1F2 ; Emoji_Flag_Sequence ; Turkmenistan # 6.0 [1] (🇹🇲)
|
||||
1F1F9 1F1F3 ; Emoji_Flag_Sequence ; Tunisia # 6.0 [1] (🇹🇳)
|
||||
1F1F9 1F1F4 ; Emoji_Flag_Sequence ; Tonga # 6.0 [1] (🇹🇴)
|
||||
1F1F9 1F1F7 ; Emoji_Flag_Sequence ; Turkey # 6.0 [1] (🇹🇷)
|
||||
1F1F9 1F1F9 ; Emoji_Flag_Sequence ; Trinidad & Tobago # 6.0 [1] (🇹🇹)
|
||||
1F1F9 1F1FB ; Emoji_Flag_Sequence ; Tuvalu # 6.0 [1] (🇹🇻)
|
||||
1F1F9 1F1FC ; Emoji_Flag_Sequence ; Taiwan # 6.0 [1] (🇹🇼)
|
||||
1F1F9 1F1FF ; Emoji_Flag_Sequence ; Tanzania # 6.0 [1] (🇹🇿)
|
||||
1F1FA 1F1E6 ; Emoji_Flag_Sequence ; Ukraine # 6.0 [1] (🇺🇦)
|
||||
1F1FA 1F1EC ; Emoji_Flag_Sequence ; Uganda # 6.0 [1] (🇺🇬)
|
||||
1F1FA 1F1F2 ; Emoji_Flag_Sequence ; U.S. Outlying Islands # 6.0 [1] (🇺🇲)
|
||||
1F1FA 1F1F3 ; Emoji_Flag_Sequence ; United Nations # 6.0 [1] (🇺🇳)
|
||||
1F1FA 1F1F8 ; Emoji_Flag_Sequence ; United States # 6.0 [1] (🇺🇸)
|
||||
1F1FA 1F1FE ; Emoji_Flag_Sequence ; Uruguay # 6.0 [1] (🇺🇾)
|
||||
1F1FA 1F1FF ; Emoji_Flag_Sequence ; Uzbekistan # 6.0 [1] (🇺🇿)
|
||||
1F1FB 1F1E6 ; Emoji_Flag_Sequence ; Vatican City # 6.0 [1] (🇻🇦)
|
||||
1F1FB 1F1E8 ; Emoji_Flag_Sequence ; St. Vincent & Grenadines # 6.0 [1] (🇻🇨)
|
||||
1F1FB 1F1EA ; Emoji_Flag_Sequence ; Venezuela # 6.0 [1] (🇻🇪)
|
||||
1F1FB 1F1EC ; Emoji_Flag_Sequence ; British Virgin Islands # 6.0 [1] (🇻🇬)
|
||||
1F1FB 1F1EE ; Emoji_Flag_Sequence ; U.S. Virgin Islands # 6.0 [1] (🇻🇮)
|
||||
1F1FB 1F1F3 ; Emoji_Flag_Sequence ; Vietnam # 6.0 [1] (🇻🇳)
|
||||
1F1FB 1F1FA ; Emoji_Flag_Sequence ; Vanuatu # 6.0 [1] (🇻🇺)
|
||||
1F1FC 1F1EB ; Emoji_Flag_Sequence ; Wallis & Futuna # 6.0 [1] (🇼🇫)
|
||||
1F1FC 1F1F8 ; Emoji_Flag_Sequence ; Samoa # 6.0 [1] (🇼🇸)
|
||||
1F1FD 1F1F0 ; Emoji_Flag_Sequence ; Kosovo # 6.0 [1] (🇽🇰)
|
||||
1F1FE 1F1EA ; Emoji_Flag_Sequence ; Yemen # 6.0 [1] (🇾🇪)
|
||||
1F1FE 1F1F9 ; Emoji_Flag_Sequence ; Mayotte # 6.0 [1] (🇾🇹)
|
||||
1F1FF 1F1E6 ; Emoji_Flag_Sequence ; South Africa # 6.0 [1] (🇿🇦)
|
||||
1F1FF 1F1F2 ; Emoji_Flag_Sequence ; Zambia # 6.0 [1] (🇿🇲)
|
||||
1F1FF 1F1FC ; Emoji_Flag_Sequence ; Zimbabwe # 6.0 [1] (🇿🇼)
|
||||
|
||||
# Total elements: 258
|
||||
|
||||
# ================================================
|
||||
|
||||
# Emoji Tag Sequence: See Annex C of TR51 for more information.
|
||||
|
||||
1F3F4 E0067 E0062 E0065 E006E E0067 E007F; Emoji_Tag_Sequence; England # 7.0 [1] (🏴)
|
||||
1F3F4 E0067 E0062 E0073 E0063 E0074 E007F; Emoji_Tag_Sequence; Scotland # 7.0 [1] (🏴)
|
||||
1F3F4 E0067 E0062 E0077 E006C E0073 E007F; Emoji_Tag_Sequence; Wales # 7.0 [1] (🏴)
|
||||
|
||||
# Total elements: 3
|
||||
|
||||
# ================================================
|
||||
|
||||
# Emoji Modifier Sequence
|
||||
|
||||
261D 1F3FB ; Emoji_Modifier_Sequence ; index pointing up: light skin tone # 8.0 [1] (☝🏻)
|
||||
261D 1F3FC ; Emoji_Modifier_Sequence ; index pointing up: medium-light skin tone # 8.0 [1] (☝🏼)
|
||||
261D 1F3FD ; Emoji_Modifier_Sequence ; index pointing up: medium skin tone # 8.0 [1] (☝🏽)
|
||||
261D 1F3FE ; Emoji_Modifier_Sequence ; index pointing up: medium-dark skin tone # 8.0 [1] (☝🏾)
|
||||
261D 1F3FF ; Emoji_Modifier_Sequence ; index pointing up: dark skin tone # 8.0 [1] (☝🏿)
|
||||
26F9 1F3FB ; Emoji_Modifier_Sequence ; person bouncing ball: light skin tone # 8.0 [1] (⛹🏻)
|
||||
26F9 1F3FC ; Emoji_Modifier_Sequence ; person bouncing ball: medium-light skin tone # 8.0 [1] (⛹🏼)
|
||||
26F9 1F3FD ; Emoji_Modifier_Sequence ; person bouncing ball: medium skin tone # 8.0 [1] (⛹🏽)
|
||||
26F9 1F3FE ; Emoji_Modifier_Sequence ; person bouncing ball: medium-dark skin tone # 8.0 [1] (⛹🏾)
|
||||
26F9 1F3FF ; Emoji_Modifier_Sequence ; person bouncing ball: dark skin tone # 8.0 [1] (⛹🏿)
|
||||
270A 1F3FB ; Emoji_Modifier_Sequence ; raised fist: light skin tone # 8.0 [1] (✊🏻)
|
||||
270A 1F3FC ; Emoji_Modifier_Sequence ; raised fist: medium-light skin tone # 8.0 [1] (✊🏼)
|
||||
270A 1F3FD ; Emoji_Modifier_Sequence ; raised fist: medium skin tone # 8.0 [1] (✊🏽)
|
||||
270A 1F3FE ; Emoji_Modifier_Sequence ; raised fist: medium-dark skin tone # 8.0 [1] (✊🏾)
|
||||
270A 1F3FF ; Emoji_Modifier_Sequence ; raised fist: dark skin tone # 8.0 [1] (✊🏿)
|
||||
270B 1F3FB ; Emoji_Modifier_Sequence ; raised hand: light skin tone # 8.0 [1] (✋🏻)
|
||||
270B 1F3FC ; Emoji_Modifier_Sequence ; raised hand: medium-light skin tone # 8.0 [1] (✋🏼)
|
||||
270B 1F3FD ; Emoji_Modifier_Sequence ; raised hand: medium skin tone # 8.0 [1] (✋🏽)
|
||||
270B 1F3FE ; Emoji_Modifier_Sequence ; raised hand: medium-dark skin tone # 8.0 [1] (✋🏾)
|
||||
270B 1F3FF ; Emoji_Modifier_Sequence ; raised hand: dark skin tone # 8.0 [1] (✋🏿)
|
||||
270C 1F3FB ; Emoji_Modifier_Sequence ; victory hand: light skin tone # 8.0 [1] (✌🏻)
|
||||
270C 1F3FC ; Emoji_Modifier_Sequence ; victory hand: medium-light skin tone # 8.0 [1] (✌🏼)
|
||||
270C 1F3FD ; Emoji_Modifier_Sequence ; victory hand: medium skin tone # 8.0 [1] (✌🏽)
|
||||
270C 1F3FE ; Emoji_Modifier_Sequence ; victory hand: medium-dark skin tone # 8.0 [1] (✌🏾)
|
||||
270C 1F3FF ; Emoji_Modifier_Sequence ; victory hand: dark skin tone # 8.0 [1] (✌🏿)
|
||||
270D 1F3FB ; Emoji_Modifier_Sequence ; writing hand: light skin tone # 8.0 [1] (✍🏻)
|
||||
270D 1F3FC ; Emoji_Modifier_Sequence ; writing hand: medium-light skin tone # 8.0 [1] (✍🏼)
|
||||
270D 1F3FD ; Emoji_Modifier_Sequence ; writing hand: medium skin tone # 8.0 [1] (✍🏽)
|
||||
270D 1F3FE ; Emoji_Modifier_Sequence ; writing hand: medium-dark skin tone # 8.0 [1] (✍🏾)
|
||||
270D 1F3FF ; Emoji_Modifier_Sequence ; writing hand: dark skin tone # 8.0 [1] (✍🏿)
|
||||
1F385 1F3FB ; Emoji_Modifier_Sequence ; Santa Claus: light skin tone # 8.0 [1] (🎅🏻)
|
||||
1F385 1F3FC ; Emoji_Modifier_Sequence ; Santa Claus: medium-light skin tone # 8.0 [1] (🎅🏼)
|
||||
1F385 1F3FD ; Emoji_Modifier_Sequence ; Santa Claus: medium skin tone # 8.0 [1] (🎅🏽)
|
||||
1F385 1F3FE ; Emoji_Modifier_Sequence ; Santa Claus: medium-dark skin tone # 8.0 [1] (🎅🏾)
|
||||
1F385 1F3FF ; Emoji_Modifier_Sequence ; Santa Claus: dark skin tone # 8.0 [1] (🎅🏿)
|
||||
1F3C2 1F3FB ; Emoji_Modifier_Sequence ; snowboarder: light skin tone # 8.0 [1] (🏂🏻)
|
||||
1F3C2 1F3FC ; Emoji_Modifier_Sequence ; snowboarder: medium-light skin tone # 8.0 [1] (🏂🏼)
|
||||
1F3C2 1F3FD ; Emoji_Modifier_Sequence ; snowboarder: medium skin tone # 8.0 [1] (🏂🏽)
|
||||
1F3C2 1F3FE ; Emoji_Modifier_Sequence ; snowboarder: medium-dark skin tone # 8.0 [1] (🏂🏾)
|
||||
1F3C2 1F3FF ; Emoji_Modifier_Sequence ; snowboarder: dark skin tone # 8.0 [1] (🏂🏿)
|
||||
1F3C3 1F3FB ; Emoji_Modifier_Sequence ; person running: light skin tone # 8.0 [1] (🏃🏻)
|
||||
1F3C3 1F3FC ; Emoji_Modifier_Sequence ; person running: medium-light skin tone # 8.0 [1] (🏃🏼)
|
||||
1F3C3 1F3FD ; Emoji_Modifier_Sequence ; person running: medium skin tone # 8.0 [1] (🏃🏽)
|
||||
1F3C3 1F3FE ; Emoji_Modifier_Sequence ; person running: medium-dark skin tone # 8.0 [1] (🏃🏾)
|
||||
1F3C3 1F3FF ; Emoji_Modifier_Sequence ; person running: dark skin tone # 8.0 [1] (🏃🏿)
|
||||
1F3C4 1F3FB ; Emoji_Modifier_Sequence ; person surfing: light skin tone # 8.0 [1] (🏄🏻)
|
||||
1F3C4 1F3FC ; Emoji_Modifier_Sequence ; person surfing: medium-light skin tone # 8.0 [1] (🏄🏼)
|
||||
1F3C4 1F3FD ; Emoji_Modifier_Sequence ; person surfing: medium skin tone # 8.0 [1] (🏄🏽)
|
||||
1F3C4 1F3FE ; Emoji_Modifier_Sequence ; person surfing: medium-dark skin tone # 8.0 [1] (🏄🏾)
|
||||
1F3C4 1F3FF ; Emoji_Modifier_Sequence ; person surfing: dark skin tone # 8.0 [1] (🏄🏿)
|
||||
1F3C7 1F3FB ; Emoji_Modifier_Sequence ; horse racing: light skin tone # 8.0 [1] (🏇🏻)
|
||||
1F3C7 1F3FC ; Emoji_Modifier_Sequence ; horse racing: medium-light skin tone # 8.0 [1] (🏇🏼)
|
||||
1F3C7 1F3FD ; Emoji_Modifier_Sequence ; horse racing: medium skin tone # 8.0 [1] (🏇🏽)
|
||||
1F3C7 1F3FE ; Emoji_Modifier_Sequence ; horse racing: medium-dark skin tone # 8.0 [1] (🏇🏾)
|
||||
1F3C7 1F3FF ; Emoji_Modifier_Sequence ; horse racing: dark skin tone # 8.0 [1] (🏇🏿)
|
||||
1F3CA 1F3FB ; Emoji_Modifier_Sequence ; person swimming: light skin tone # 8.0 [1] (🏊🏻)
|
||||
1F3CA 1F3FC ; Emoji_Modifier_Sequence ; person swimming: medium-light skin tone # 8.0 [1] (🏊🏼)
|
||||
1F3CA 1F3FD ; Emoji_Modifier_Sequence ; person swimming: medium skin tone # 8.0 [1] (🏊🏽)
|
||||
1F3CA 1F3FE ; Emoji_Modifier_Sequence ; person swimming: medium-dark skin tone # 8.0 [1] (🏊🏾)
|
||||
1F3CA 1F3FF ; Emoji_Modifier_Sequence ; person swimming: dark skin tone # 8.0 [1] (🏊🏿)
|
||||
1F3CB 1F3FB ; Emoji_Modifier_Sequence ; person lifting weights: light skin tone # 8.0 [1] (🏋🏻)
|
||||
1F3CB 1F3FC ; Emoji_Modifier_Sequence ; person lifting weights: medium-light skin tone # 8.0 [1] (🏋🏼)
|
||||
1F3CB 1F3FD ; Emoji_Modifier_Sequence ; person lifting weights: medium skin tone # 8.0 [1] (🏋🏽)
|
||||
1F3CB 1F3FE ; Emoji_Modifier_Sequence ; person lifting weights: medium-dark skin tone # 8.0 [1] (🏋🏾)
|
||||
1F3CB 1F3FF ; Emoji_Modifier_Sequence ; person lifting weights: dark skin tone # 8.0 [1] (🏋🏿)
|
||||
1F3CC 1F3FB ; Emoji_Modifier_Sequence ; person golfing: light skin tone # 8.0 [1] (🏌🏻)
|
||||
1F3CC 1F3FC ; Emoji_Modifier_Sequence ; person golfing: medium-light skin tone # 8.0 [1] (🏌🏼)
|
||||
1F3CC 1F3FD ; Emoji_Modifier_Sequence ; person golfing: medium skin tone # 8.0 [1] (🏌🏽)
|
||||
1F3CC 1F3FE ; Emoji_Modifier_Sequence ; person golfing: medium-dark skin tone # 8.0 [1] (🏌🏾)
|
||||
1F3CC 1F3FF ; Emoji_Modifier_Sequence ; person golfing: dark skin tone # 8.0 [1] (🏌🏿)
|
||||
1F442 1F3FB ; Emoji_Modifier_Sequence ; ear: light skin tone # 8.0 [1] (👂🏻)
|
||||
1F442 1F3FC ; Emoji_Modifier_Sequence ; ear: medium-light skin tone # 8.0 [1] (👂🏼)
|
||||
1F442 1F3FD ; Emoji_Modifier_Sequence ; ear: medium skin tone # 8.0 [1] (👂🏽)
|
||||
1F442 1F3FE ; Emoji_Modifier_Sequence ; ear: medium-dark skin tone # 8.0 [1] (👂🏾)
|
||||
1F442 1F3FF ; Emoji_Modifier_Sequence ; ear: dark skin tone # 8.0 [1] (👂🏿)
|
||||
1F443 1F3FB ; Emoji_Modifier_Sequence ; nose: light skin tone # 8.0 [1] (👃🏻)
|
||||
1F443 1F3FC ; Emoji_Modifier_Sequence ; nose: medium-light skin tone # 8.0 [1] (👃🏼)
|
||||
1F443 1F3FD ; Emoji_Modifier_Sequence ; nose: medium skin tone # 8.0 [1] (👃🏽)
|
||||
1F443 1F3FE ; Emoji_Modifier_Sequence ; nose: medium-dark skin tone # 8.0 [1] (👃🏾)
|
||||
1F443 1F3FF ; Emoji_Modifier_Sequence ; nose: dark skin tone # 8.0 [1] (👃🏿)
|
||||
1F446 1F3FB ; Emoji_Modifier_Sequence ; backhand index pointing up: light skin tone # 8.0 [1] (👆🏻)
|
||||
1F446 1F3FC ; Emoji_Modifier_Sequence ; backhand index pointing up: medium-light skin tone # 8.0 [1] (👆🏼)
|
||||
1F446 1F3FD ; Emoji_Modifier_Sequence ; backhand index pointing up: medium skin tone # 8.0 [1] (👆🏽)
|
||||
1F446 1F3FE ; Emoji_Modifier_Sequence ; backhand index pointing up: medium-dark skin tone # 8.0 [1] (👆🏾)
|
||||
1F446 1F3FF ; Emoji_Modifier_Sequence ; backhand index pointing up: dark skin tone # 8.0 [1] (👆🏿)
|
||||
1F447 1F3FB ; Emoji_Modifier_Sequence ; backhand index pointing down: light skin tone # 8.0 [1] (👇🏻)
|
||||
1F447 1F3FC ; Emoji_Modifier_Sequence ; backhand index pointing down: medium-light skin tone # 8.0 [1] (👇🏼)
|
||||
1F447 1F3FD ; Emoji_Modifier_Sequence ; backhand index pointing down: medium skin tone # 8.0 [1] (👇🏽)
|
||||
1F447 1F3FE ; Emoji_Modifier_Sequence ; backhand index pointing down: medium-dark skin tone # 8.0 [1] (👇🏾)
|
||||
1F447 1F3FF ; Emoji_Modifier_Sequence ; backhand index pointing down: dark skin tone # 8.0 [1] (👇🏿)
|
||||
1F448 1F3FB ; Emoji_Modifier_Sequence ; backhand index pointing left: light skin tone # 8.0 [1] (👈🏻)
|
||||
1F448 1F3FC ; Emoji_Modifier_Sequence ; backhand index pointing left: medium-light skin tone # 8.0 [1] (👈🏼)
|
||||
1F448 1F3FD ; Emoji_Modifier_Sequence ; backhand index pointing left: medium skin tone # 8.0 [1] (👈🏽)
|
||||
1F448 1F3FE ; Emoji_Modifier_Sequence ; backhand index pointing left: medium-dark skin tone # 8.0 [1] (👈🏾)
|
||||
1F448 1F3FF ; Emoji_Modifier_Sequence ; backhand index pointing left: dark skin tone # 8.0 [1] (👈🏿)
|
||||
1F449 1F3FB ; Emoji_Modifier_Sequence ; backhand index pointing right: light skin tone # 8.0 [1] (👉🏻)
|
||||
1F449 1F3FC ; Emoji_Modifier_Sequence ; backhand index pointing right: medium-light skin tone # 8.0 [1] (👉🏼)
|
||||
1F449 1F3FD ; Emoji_Modifier_Sequence ; backhand index pointing right: medium skin tone # 8.0 [1] (👉🏽)
|
||||
1F449 1F3FE ; Emoji_Modifier_Sequence ; backhand index pointing right: medium-dark skin tone # 8.0 [1] (👉🏾)
|
||||
1F449 1F3FF ; Emoji_Modifier_Sequence ; backhand index pointing right: dark skin tone # 8.0 [1] (👉🏿)
|
||||
1F44A 1F3FB ; Emoji_Modifier_Sequence ; oncoming fist: light skin tone # 8.0 [1] (👊🏻)
|
||||
1F44A 1F3FC ; Emoji_Modifier_Sequence ; oncoming fist: medium-light skin tone # 8.0 [1] (👊🏼)
|
||||
1F44A 1F3FD ; Emoji_Modifier_Sequence ; oncoming fist: medium skin tone # 8.0 [1] (👊🏽)
|
||||
1F44A 1F3FE ; Emoji_Modifier_Sequence ; oncoming fist: medium-dark skin tone # 8.0 [1] (👊🏾)
|
||||
1F44A 1F3FF ; Emoji_Modifier_Sequence ; oncoming fist: dark skin tone # 8.0 [1] (👊🏿)
|
||||
1F44B 1F3FB ; Emoji_Modifier_Sequence ; waving hand: light skin tone # 8.0 [1] (👋🏻)
|
||||
1F44B 1F3FC ; Emoji_Modifier_Sequence ; waving hand: medium-light skin tone # 8.0 [1] (👋🏼)
|
||||
1F44B 1F3FD ; Emoji_Modifier_Sequence ; waving hand: medium skin tone # 8.0 [1] (👋🏽)
|
||||
1F44B 1F3FE ; Emoji_Modifier_Sequence ; waving hand: medium-dark skin tone # 8.0 [1] (👋🏾)
|
||||
1F44B 1F3FF ; Emoji_Modifier_Sequence ; waving hand: dark skin tone # 8.0 [1] (👋🏿)
|
||||
1F44C 1F3FB ; Emoji_Modifier_Sequence ; OK hand: light skin tone # 8.0 [1] (👌🏻)
|
||||
1F44C 1F3FC ; Emoji_Modifier_Sequence ; OK hand: medium-light skin tone # 8.0 [1] (👌🏼)
|
||||
1F44C 1F3FD ; Emoji_Modifier_Sequence ; OK hand: medium skin tone # 8.0 [1] (👌🏽)
|
||||
1F44C 1F3FE ; Emoji_Modifier_Sequence ; OK hand: medium-dark skin tone # 8.0 [1] (👌🏾)
|
||||
1F44C 1F3FF ; Emoji_Modifier_Sequence ; OK hand: dark skin tone # 8.0 [1] (👌🏿)
|
||||
1F44D 1F3FB ; Emoji_Modifier_Sequence ; thumbs up: light skin tone # 8.0 [1] (👍🏻)
|
||||
1F44D 1F3FC ; Emoji_Modifier_Sequence ; thumbs up: medium-light skin tone # 8.0 [1] (👍🏼)
|
||||
1F44D 1F3FD ; Emoji_Modifier_Sequence ; thumbs up: medium skin tone # 8.0 [1] (👍🏽)
|
||||
1F44D 1F3FE ; Emoji_Modifier_Sequence ; thumbs up: medium-dark skin tone # 8.0 [1] (👍🏾)
|
||||
1F44D 1F3FF ; Emoji_Modifier_Sequence ; thumbs up: dark skin tone # 8.0 [1] (👍🏿)
|
||||
1F44E 1F3FB ; Emoji_Modifier_Sequence ; thumbs down: light skin tone # 8.0 [1] (👎🏻)
|
||||
1F44E 1F3FC ; Emoji_Modifier_Sequence ; thumbs down: medium-light skin tone # 8.0 [1] (👎🏼)
|
||||
1F44E 1F3FD ; Emoji_Modifier_Sequence ; thumbs down: medium skin tone # 8.0 [1] (👎🏽)
|
||||
1F44E 1F3FE ; Emoji_Modifier_Sequence ; thumbs down: medium-dark skin tone # 8.0 [1] (👎🏾)
|
||||
1F44E 1F3FF ; Emoji_Modifier_Sequence ; thumbs down: dark skin tone # 8.0 [1] (👎🏿)
|
||||
1F44F 1F3FB ; Emoji_Modifier_Sequence ; clapping hands: light skin tone # 8.0 [1] (👏🏻)
|
||||
1F44F 1F3FC ; Emoji_Modifier_Sequence ; clapping hands: medium-light skin tone # 8.0 [1] (👏🏼)
|
||||
1F44F 1F3FD ; Emoji_Modifier_Sequence ; clapping hands: medium skin tone # 8.0 [1] (👏🏽)
|
||||
1F44F 1F3FE ; Emoji_Modifier_Sequence ; clapping hands: medium-dark skin tone # 8.0 [1] (👏🏾)
|
||||
1F44F 1F3FF ; Emoji_Modifier_Sequence ; clapping hands: dark skin tone # 8.0 [1] (👏🏿)
|
||||
1F450 1F3FB ; Emoji_Modifier_Sequence ; open hands: light skin tone # 8.0 [1] (👐🏻)
|
||||
1F450 1F3FC ; Emoji_Modifier_Sequence ; open hands: medium-light skin tone # 8.0 [1] (👐🏼)
|
||||
1F450 1F3FD ; Emoji_Modifier_Sequence ; open hands: medium skin tone # 8.0 [1] (👐🏽)
|
||||
1F450 1F3FE ; Emoji_Modifier_Sequence ; open hands: medium-dark skin tone # 8.0 [1] (👐🏾)
|
||||
1F450 1F3FF ; Emoji_Modifier_Sequence ; open hands: dark skin tone # 8.0 [1] (👐🏿)
|
||||
1F466 1F3FB ; Emoji_Modifier_Sequence ; boy: light skin tone # 8.0 [1] (👦🏻)
|
||||
1F466 1F3FC ; Emoji_Modifier_Sequence ; boy: medium-light skin tone # 8.0 [1] (👦🏼)
|
||||
1F466 1F3FD ; Emoji_Modifier_Sequence ; boy: medium skin tone # 8.0 [1] (👦🏽)
|
||||
1F466 1F3FE ; Emoji_Modifier_Sequence ; boy: medium-dark skin tone # 8.0 [1] (👦🏾)
|
||||
1F466 1F3FF ; Emoji_Modifier_Sequence ; boy: dark skin tone # 8.0 [1] (👦🏿)
|
||||
1F467 1F3FB ; Emoji_Modifier_Sequence ; girl: light skin tone # 8.0 [1] (👧🏻)
|
||||
1F467 1F3FC ; Emoji_Modifier_Sequence ; girl: medium-light skin tone # 8.0 [1] (👧🏼)
|
||||
1F467 1F3FD ; Emoji_Modifier_Sequence ; girl: medium skin tone # 8.0 [1] (👧🏽)
|
||||
1F467 1F3FE ; Emoji_Modifier_Sequence ; girl: medium-dark skin tone # 8.0 [1] (👧🏾)
|
||||
1F467 1F3FF ; Emoji_Modifier_Sequence ; girl: dark skin tone # 8.0 [1] (👧🏿)
|
||||
1F468 1F3FB ; Emoji_Modifier_Sequence ; man: light skin tone # 8.0 [1] (👨🏻)
|
||||
1F468 1F3FC ; Emoji_Modifier_Sequence ; man: medium-light skin tone # 8.0 [1] (👨🏼)
|
||||
1F468 1F3FD ; Emoji_Modifier_Sequence ; man: medium skin tone # 8.0 [1] (👨🏽)
|
||||
1F468 1F3FE ; Emoji_Modifier_Sequence ; man: medium-dark skin tone # 8.0 [1] (👨🏾)
|
||||
1F468 1F3FF ; Emoji_Modifier_Sequence ; man: dark skin tone # 8.0 [1] (👨🏿)
|
||||
1F469 1F3FB ; Emoji_Modifier_Sequence ; woman: light skin tone # 8.0 [1] (👩🏻)
|
||||
1F469 1F3FC ; Emoji_Modifier_Sequence ; woman: medium-light skin tone # 8.0 [1] (👩🏼)
|
||||
1F469 1F3FD ; Emoji_Modifier_Sequence ; woman: medium skin tone # 8.0 [1] (👩🏽)
|
||||
1F469 1F3FE ; Emoji_Modifier_Sequence ; woman: medium-dark skin tone # 8.0 [1] (👩🏾)
|
||||
1F469 1F3FF ; Emoji_Modifier_Sequence ; woman: dark skin tone # 8.0 [1] (👩🏿)
|
||||
1F46E 1F3FB ; Emoji_Modifier_Sequence ; police officer: light skin tone # 8.0 [1] (👮🏻)
|
||||
1F46E 1F3FC ; Emoji_Modifier_Sequence ; police officer: medium-light skin tone # 8.0 [1] (👮🏼)
|
||||
1F46E 1F3FD ; Emoji_Modifier_Sequence ; police officer: medium skin tone # 8.0 [1] (👮🏽)
|
||||
1F46E 1F3FE ; Emoji_Modifier_Sequence ; police officer: medium-dark skin tone # 8.0 [1] (👮🏾)
|
||||
1F46E 1F3FF ; Emoji_Modifier_Sequence ; police officer: dark skin tone # 8.0 [1] (👮🏿)
|
||||
1F470 1F3FB ; Emoji_Modifier_Sequence ; bride with veil: light skin tone # 8.0 [1] (👰🏻)
|
||||
1F470 1F3FC ; Emoji_Modifier_Sequence ; bride with veil: medium-light skin tone # 8.0 [1] (👰🏼)
|
||||
1F470 1F3FD ; Emoji_Modifier_Sequence ; bride with veil: medium skin tone # 8.0 [1] (👰🏽)
|
||||
1F470 1F3FE ; Emoji_Modifier_Sequence ; bride with veil: medium-dark skin tone # 8.0 [1] (👰🏾)
|
||||
1F470 1F3FF ; Emoji_Modifier_Sequence ; bride with veil: dark skin tone # 8.0 [1] (👰🏿)
|
||||
1F471 1F3FB ; Emoji_Modifier_Sequence ; blond-haired person: light skin tone # 8.0 [1] (👱🏻)
|
||||
1F471 1F3FC ; Emoji_Modifier_Sequence ; blond-haired person: medium-light skin tone # 8.0 [1] (👱🏼)
|
||||
1F471 1F3FD ; Emoji_Modifier_Sequence ; blond-haired person: medium skin tone # 8.0 [1] (👱🏽)
|
||||
1F471 1F3FE ; Emoji_Modifier_Sequence ; blond-haired person: medium-dark skin tone # 8.0 [1] (👱🏾)
|
||||
1F471 1F3FF ; Emoji_Modifier_Sequence ; blond-haired person: dark skin tone # 8.0 [1] (👱🏿)
|
||||
1F472 1F3FB ; Emoji_Modifier_Sequence ; man with Chinese cap: light skin tone # 8.0 [1] (👲🏻)
|
||||
1F472 1F3FC ; Emoji_Modifier_Sequence ; man with Chinese cap: medium-light skin tone # 8.0 [1] (👲🏼)
|
||||
1F472 1F3FD ; Emoji_Modifier_Sequence ; man with Chinese cap: medium skin tone # 8.0 [1] (👲🏽)
|
||||
1F472 1F3FE ; Emoji_Modifier_Sequence ; man with Chinese cap: medium-dark skin tone # 8.0 [1] (👲🏾)
|
||||
1F472 1F3FF ; Emoji_Modifier_Sequence ; man with Chinese cap: dark skin tone # 8.0 [1] (👲🏿)
|
||||
1F473 1F3FB ; Emoji_Modifier_Sequence ; person wearing turban: light skin tone # 8.0 [1] (👳🏻)
|
||||
1F473 1F3FC ; Emoji_Modifier_Sequence ; person wearing turban: medium-light skin tone # 8.0 [1] (👳🏼)
|
||||
1F473 1F3FD ; Emoji_Modifier_Sequence ; person wearing turban: medium skin tone # 8.0 [1] (👳🏽)
|
||||
1F473 1F3FE ; Emoji_Modifier_Sequence ; person wearing turban: medium-dark skin tone # 8.0 [1] (👳🏾)
|
||||
1F473 1F3FF ; Emoji_Modifier_Sequence ; person wearing turban: dark skin tone # 8.0 [1] (👳🏿)
|
||||
1F474 1F3FB ; Emoji_Modifier_Sequence ; old man: light skin tone # 8.0 [1] (👴🏻)
|
||||
1F474 1F3FC ; Emoji_Modifier_Sequence ; old man: medium-light skin tone # 8.0 [1] (👴🏼)
|
||||
1F474 1F3FD ; Emoji_Modifier_Sequence ; old man: medium skin tone # 8.0 [1] (👴🏽)
|
||||
1F474 1F3FE ; Emoji_Modifier_Sequence ; old man: medium-dark skin tone # 8.0 [1] (👴🏾)
|
||||
1F474 1F3FF ; Emoji_Modifier_Sequence ; old man: dark skin tone # 8.0 [1] (👴🏿)
|
||||
1F475 1F3FB ; Emoji_Modifier_Sequence ; old woman: light skin tone # 8.0 [1] (👵🏻)
|
||||
1F475 1F3FC ; Emoji_Modifier_Sequence ; old woman: medium-light skin tone # 8.0 [1] (👵🏼)
|
||||
1F475 1F3FD ; Emoji_Modifier_Sequence ; old woman: medium skin tone # 8.0 [1] (👵🏽)
|
||||
1F475 1F3FE ; Emoji_Modifier_Sequence ; old woman: medium-dark skin tone # 8.0 [1] (👵🏾)
|
||||
1F475 1F3FF ; Emoji_Modifier_Sequence ; old woman: dark skin tone # 8.0 [1] (👵🏿)
|
||||
1F476 1F3FB ; Emoji_Modifier_Sequence ; baby: light skin tone # 8.0 [1] (👶🏻)
|
||||
1F476 1F3FC ; Emoji_Modifier_Sequence ; baby: medium-light skin tone # 8.0 [1] (👶🏼)
|
||||
1F476 1F3FD ; Emoji_Modifier_Sequence ; baby: medium skin tone # 8.0 [1] (👶🏽)
|
||||
1F476 1F3FE ; Emoji_Modifier_Sequence ; baby: medium-dark skin tone # 8.0 [1] (👶🏾)
|
||||
1F476 1F3FF ; Emoji_Modifier_Sequence ; baby: dark skin tone # 8.0 [1] (👶🏿)
|
||||
1F477 1F3FB ; Emoji_Modifier_Sequence ; construction worker: light skin tone # 8.0 [1] (👷🏻)
|
||||
1F477 1F3FC ; Emoji_Modifier_Sequence ; construction worker: medium-light skin tone # 8.0 [1] (👷🏼)
|
||||
1F477 1F3FD ; Emoji_Modifier_Sequence ; construction worker: medium skin tone # 8.0 [1] (👷🏽)
|
||||
1F477 1F3FE ; Emoji_Modifier_Sequence ; construction worker: medium-dark skin tone # 8.0 [1] (👷🏾)
|
||||
1F477 1F3FF ; Emoji_Modifier_Sequence ; construction worker: dark skin tone # 8.0 [1] (👷🏿)
|
||||
1F478 1F3FB ; Emoji_Modifier_Sequence ; princess: light skin tone # 8.0 [1] (👸🏻)
|
||||
1F478 1F3FC ; Emoji_Modifier_Sequence ; princess: medium-light skin tone # 8.0 [1] (👸🏼)
|
||||
1F478 1F3FD ; Emoji_Modifier_Sequence ; princess: medium skin tone # 8.0 [1] (👸🏽)
|
||||
1F478 1F3FE ; Emoji_Modifier_Sequence ; princess: medium-dark skin tone # 8.0 [1] (👸🏾)
|
||||
1F478 1F3FF ; Emoji_Modifier_Sequence ; princess: dark skin tone # 8.0 [1] (👸🏿)
|
||||
1F47C 1F3FB ; Emoji_Modifier_Sequence ; baby angel: light skin tone # 8.0 [1] (👼🏻)
|
||||
1F47C 1F3FC ; Emoji_Modifier_Sequence ; baby angel: medium-light skin tone # 8.0 [1] (👼🏼)
|
||||
1F47C 1F3FD ; Emoji_Modifier_Sequence ; baby angel: medium skin tone # 8.0 [1] (👼🏽)
|
||||
1F47C 1F3FE ; Emoji_Modifier_Sequence ; baby angel: medium-dark skin tone # 8.0 [1] (👼🏾)
|
||||
1F47C 1F3FF ; Emoji_Modifier_Sequence ; baby angel: dark skin tone # 8.0 [1] (👼🏿)
|
||||
1F481 1F3FB ; Emoji_Modifier_Sequence ; person tipping hand: light skin tone # 8.0 [1] (💁🏻)
|
||||
1F481 1F3FC ; Emoji_Modifier_Sequence ; person tipping hand: medium-light skin tone # 8.0 [1] (💁🏼)
|
||||
1F481 1F3FD ; Emoji_Modifier_Sequence ; person tipping hand: medium skin tone # 8.0 [1] (💁🏽)
|
||||
1F481 1F3FE ; Emoji_Modifier_Sequence ; person tipping hand: medium-dark skin tone # 8.0 [1] (💁🏾)
|
||||
1F481 1F3FF ; Emoji_Modifier_Sequence ; person tipping hand: dark skin tone # 8.0 [1] (💁🏿)
|
||||
1F482 1F3FB ; Emoji_Modifier_Sequence ; guard: light skin tone # 8.0 [1] (💂🏻)
|
||||
1F482 1F3FC ; Emoji_Modifier_Sequence ; guard: medium-light skin tone # 8.0 [1] (💂🏼)
|
||||
1F482 1F3FD ; Emoji_Modifier_Sequence ; guard: medium skin tone # 8.0 [1] (💂🏽)
|
||||
1F482 1F3FE ; Emoji_Modifier_Sequence ; guard: medium-dark skin tone # 8.0 [1] (💂🏾)
|
||||
1F482 1F3FF ; Emoji_Modifier_Sequence ; guard: dark skin tone # 8.0 [1] (💂🏿)
|
||||
1F483 1F3FB ; Emoji_Modifier_Sequence ; woman dancing: light skin tone # 8.0 [1] (💃🏻)
|
||||
1F483 1F3FC ; Emoji_Modifier_Sequence ; woman dancing: medium-light skin tone # 8.0 [1] (💃🏼)
|
||||
1F483 1F3FD ; Emoji_Modifier_Sequence ; woman dancing: medium skin tone # 8.0 [1] (💃🏽)
|
||||
1F483 1F3FE ; Emoji_Modifier_Sequence ; woman dancing: medium-dark skin tone # 8.0 [1] (💃🏾)
|
||||
1F483 1F3FF ; Emoji_Modifier_Sequence ; woman dancing: dark skin tone # 8.0 [1] (💃🏿)
|
||||
1F485 1F3FB ; Emoji_Modifier_Sequence ; nail polish: light skin tone # 8.0 [1] (💅🏻)
|
||||
1F485 1F3FC ; Emoji_Modifier_Sequence ; nail polish: medium-light skin tone # 8.0 [1] (💅🏼)
|
||||
1F485 1F3FD ; Emoji_Modifier_Sequence ; nail polish: medium skin tone # 8.0 [1] (💅🏽)
|
||||
1F485 1F3FE ; Emoji_Modifier_Sequence ; nail polish: medium-dark skin tone # 8.0 [1] (💅🏾)
|
||||
1F485 1F3FF ; Emoji_Modifier_Sequence ; nail polish: dark skin tone # 8.0 [1] (💅🏿)
|
||||
1F486 1F3FB ; Emoji_Modifier_Sequence ; person getting massage: light skin tone # 8.0 [1] (💆🏻)
|
||||
1F486 1F3FC ; Emoji_Modifier_Sequence ; person getting massage: medium-light skin tone # 8.0 [1] (💆🏼)
|
||||
1F486 1F3FD ; Emoji_Modifier_Sequence ; person getting massage: medium skin tone # 8.0 [1] (💆🏽)
|
||||
1F486 1F3FE ; Emoji_Modifier_Sequence ; person getting massage: medium-dark skin tone # 8.0 [1] (💆🏾)
|
||||
1F486 1F3FF ; Emoji_Modifier_Sequence ; person getting massage: dark skin tone # 8.0 [1] (💆🏿)
|
||||
1F487 1F3FB ; Emoji_Modifier_Sequence ; person getting haircut: light skin tone # 8.0 [1] (💇🏻)
|
||||
1F487 1F3FC ; Emoji_Modifier_Sequence ; person getting haircut: medium-light skin tone # 8.0 [1] (💇🏼)
|
||||
1F487 1F3FD ; Emoji_Modifier_Sequence ; person getting haircut: medium skin tone # 8.0 [1] (💇🏽)
|
||||
1F487 1F3FE ; Emoji_Modifier_Sequence ; person getting haircut: medium-dark skin tone # 8.0 [1] (💇🏾)
|
||||
1F487 1F3FF ; Emoji_Modifier_Sequence ; person getting haircut: dark skin tone # 8.0 [1] (💇🏿)
|
||||
1F4AA 1F3FB ; Emoji_Modifier_Sequence ; flexed biceps: light skin tone # 8.0 [1] (💪🏻)
|
||||
1F4AA 1F3FC ; Emoji_Modifier_Sequence ; flexed biceps: medium-light skin tone # 8.0 [1] (💪🏼)
|
||||
1F4AA 1F3FD ; Emoji_Modifier_Sequence ; flexed biceps: medium skin tone # 8.0 [1] (💪🏽)
|
||||
1F4AA 1F3FE ; Emoji_Modifier_Sequence ; flexed biceps: medium-dark skin tone # 8.0 [1] (💪🏾)
|
||||
1F4AA 1F3FF ; Emoji_Modifier_Sequence ; flexed biceps: dark skin tone # 8.0 [1] (💪🏿)
|
||||
1F574 1F3FB ; Emoji_Modifier_Sequence ; man in suit levitating: light skin tone # 8.0 [1] (🕴🏻)
|
||||
1F574 1F3FC ; Emoji_Modifier_Sequence ; man in suit levitating: medium-light skin tone # 8.0 [1] (🕴🏼)
|
||||
1F574 1F3FD ; Emoji_Modifier_Sequence ; man in suit levitating: medium skin tone # 8.0 [1] (🕴🏽)
|
||||
1F574 1F3FE ; Emoji_Modifier_Sequence ; man in suit levitating: medium-dark skin tone # 8.0 [1] (🕴🏾)
|
||||
1F574 1F3FF ; Emoji_Modifier_Sequence ; man in suit levitating: dark skin tone # 8.0 [1] (🕴🏿)
|
||||
1F575 1F3FB ; Emoji_Modifier_Sequence ; detective: light skin tone # 8.0 [1] (🕵🏻)
|
||||
1F575 1F3FC ; Emoji_Modifier_Sequence ; detective: medium-light skin tone # 8.0 [1] (🕵🏼)
|
||||
1F575 1F3FD ; Emoji_Modifier_Sequence ; detective: medium skin tone # 8.0 [1] (🕵🏽)
|
||||
1F575 1F3FE ; Emoji_Modifier_Sequence ; detective: medium-dark skin tone # 8.0 [1] (🕵🏾)
|
||||
1F575 1F3FF ; Emoji_Modifier_Sequence ; detective: dark skin tone # 8.0 [1] (🕵🏿)
|
||||
1F57A 1F3FB ; Emoji_Modifier_Sequence ; man dancing: light skin tone # 9.0 [1] (🕺🏻)
|
||||
1F57A 1F3FC ; Emoji_Modifier_Sequence ; man dancing: medium-light skin tone # 9.0 [1] (🕺🏼)
|
||||
1F57A 1F3FD ; Emoji_Modifier_Sequence ; man dancing: medium skin tone # 9.0 [1] (🕺🏽)
|
||||
1F57A 1F3FE ; Emoji_Modifier_Sequence ; man dancing: medium-dark skin tone # 9.0 [1] (🕺🏾)
|
||||
1F57A 1F3FF ; Emoji_Modifier_Sequence ; man dancing: dark skin tone # 9.0 [1] (🕺🏿)
|
||||
1F590 1F3FB ; Emoji_Modifier_Sequence ; hand with fingers splayed: light skin tone # 8.0 [1] (🖐🏻)
|
||||
1F590 1F3FC ; Emoji_Modifier_Sequence ; hand with fingers splayed: medium-light skin tone # 8.0 [1] (🖐🏼)
|
||||
1F590 1F3FD ; Emoji_Modifier_Sequence ; hand with fingers splayed: medium skin tone # 8.0 [1] (🖐🏽)
|
||||
1F590 1F3FE ; Emoji_Modifier_Sequence ; hand with fingers splayed: medium-dark skin tone # 8.0 [1] (🖐🏾)
|
||||
1F590 1F3FF ; Emoji_Modifier_Sequence ; hand with fingers splayed: dark skin tone # 8.0 [1] (🖐🏿)
|
||||
1F595 1F3FB ; Emoji_Modifier_Sequence ; middle finger: light skin tone # 8.0 [1] (🖕🏻)
|
||||
1F595 1F3FC ; Emoji_Modifier_Sequence ; middle finger: medium-light skin tone # 8.0 [1] (🖕🏼)
|
||||
1F595 1F3FD ; Emoji_Modifier_Sequence ; middle finger: medium skin tone # 8.0 [1] (🖕🏽)
|
||||
1F595 1F3FE ; Emoji_Modifier_Sequence ; middle finger: medium-dark skin tone # 8.0 [1] (🖕🏾)
|
||||
1F595 1F3FF ; Emoji_Modifier_Sequence ; middle finger: dark skin tone # 8.0 [1] (🖕🏿)
|
||||
1F596 1F3FB ; Emoji_Modifier_Sequence ; vulcan salute: light skin tone # 8.0 [1] (🖖🏻)
|
||||
1F596 1F3FC ; Emoji_Modifier_Sequence ; vulcan salute: medium-light skin tone # 8.0 [1] (🖖🏼)
|
||||
1F596 1F3FD ; Emoji_Modifier_Sequence ; vulcan salute: medium skin tone # 8.0 [1] (🖖🏽)
|
||||
1F596 1F3FE ; Emoji_Modifier_Sequence ; vulcan salute: medium-dark skin tone # 8.0 [1] (🖖🏾)
|
||||
1F596 1F3FF ; Emoji_Modifier_Sequence ; vulcan salute: dark skin tone # 8.0 [1] (🖖🏿)
|
||||
1F645 1F3FB ; Emoji_Modifier_Sequence ; person gesturing NO: light skin tone # 8.0 [1] (🙅🏻)
|
||||
1F645 1F3FC ; Emoji_Modifier_Sequence ; person gesturing NO: medium-light skin tone # 8.0 [1] (🙅🏼)
|
||||
1F645 1F3FD ; Emoji_Modifier_Sequence ; person gesturing NO: medium skin tone # 8.0 [1] (🙅🏽)
|
||||
1F645 1F3FE ; Emoji_Modifier_Sequence ; person gesturing NO: medium-dark skin tone # 8.0 [1] (🙅🏾)
|
||||
1F645 1F3FF ; Emoji_Modifier_Sequence ; person gesturing NO: dark skin tone # 8.0 [1] (🙅🏿)
|
||||
1F646 1F3FB ; Emoji_Modifier_Sequence ; person gesturing OK: light skin tone # 8.0 [1] (🙆🏻)
|
||||
1F646 1F3FC ; Emoji_Modifier_Sequence ; person gesturing OK: medium-light skin tone # 8.0 [1] (🙆🏼)
|
||||
1F646 1F3FD ; Emoji_Modifier_Sequence ; person gesturing OK: medium skin tone # 8.0 [1] (🙆🏽)
|
||||
1F646 1F3FE ; Emoji_Modifier_Sequence ; person gesturing OK: medium-dark skin tone # 8.0 [1] (🙆🏾)
|
||||
1F646 1F3FF ; Emoji_Modifier_Sequence ; person gesturing OK: dark skin tone # 8.0 [1] (🙆🏿)
|
||||
1F647 1F3FB ; Emoji_Modifier_Sequence ; person bowing: light skin tone # 8.0 [1] (🙇🏻)
|
||||
1F647 1F3FC ; Emoji_Modifier_Sequence ; person bowing: medium-light skin tone # 8.0 [1] (🙇🏼)
|
||||
1F647 1F3FD ; Emoji_Modifier_Sequence ; person bowing: medium skin tone # 8.0 [1] (🙇🏽)
|
||||
1F647 1F3FE ; Emoji_Modifier_Sequence ; person bowing: medium-dark skin tone # 8.0 [1] (🙇🏾)
|
||||
1F647 1F3FF ; Emoji_Modifier_Sequence ; person bowing: dark skin tone # 8.0 [1] (🙇🏿)
|
||||
1F64B 1F3FB ; Emoji_Modifier_Sequence ; person raising hand: light skin tone # 8.0 [1] (🙋🏻)
|
||||
1F64B 1F3FC ; Emoji_Modifier_Sequence ; person raising hand: medium-light skin tone # 8.0 [1] (🙋🏼)
|
||||
1F64B 1F3FD ; Emoji_Modifier_Sequence ; person raising hand: medium skin tone # 8.0 [1] (🙋🏽)
|
||||
1F64B 1F3FE ; Emoji_Modifier_Sequence ; person raising hand: medium-dark skin tone # 8.0 [1] (🙋🏾)
|
||||
1F64B 1F3FF ; Emoji_Modifier_Sequence ; person raising hand: dark skin tone # 8.0 [1] (🙋🏿)
|
||||
1F64C 1F3FB ; Emoji_Modifier_Sequence ; raising hands: light skin tone # 8.0 [1] (🙌🏻)
|
||||
1F64C 1F3FC ; Emoji_Modifier_Sequence ; raising hands: medium-light skin tone # 8.0 [1] (🙌🏼)
|
||||
1F64C 1F3FD ; Emoji_Modifier_Sequence ; raising hands: medium skin tone # 8.0 [1] (🙌🏽)
|
||||
1F64C 1F3FE ; Emoji_Modifier_Sequence ; raising hands: medium-dark skin tone # 8.0 [1] (🙌🏾)
|
||||
1F64C 1F3FF ; Emoji_Modifier_Sequence ; raising hands: dark skin tone # 8.0 [1] (🙌🏿)
|
||||
1F64D 1F3FB ; Emoji_Modifier_Sequence ; person frowning: light skin tone # 8.0 [1] (🙍🏻)
|
||||
1F64D 1F3FC ; Emoji_Modifier_Sequence ; person frowning: medium-light skin tone # 8.0 [1] (🙍🏼)
|
||||
1F64D 1F3FD ; Emoji_Modifier_Sequence ; person frowning: medium skin tone # 8.0 [1] (🙍🏽)
|
||||
1F64D 1F3FE ; Emoji_Modifier_Sequence ; person frowning: medium-dark skin tone # 8.0 [1] (🙍🏾)
|
||||
1F64D 1F3FF ; Emoji_Modifier_Sequence ; person frowning: dark skin tone # 8.0 [1] (🙍🏿)
|
||||
1F64E 1F3FB ; Emoji_Modifier_Sequence ; person pouting: light skin tone # 8.0 [1] (🙎🏻)
|
||||
1F64E 1F3FC ; Emoji_Modifier_Sequence ; person pouting: medium-light skin tone # 8.0 [1] (🙎🏼)
|
||||
1F64E 1F3FD ; Emoji_Modifier_Sequence ; person pouting: medium skin tone # 8.0 [1] (🙎🏽)
|
||||
1F64E 1F3FE ; Emoji_Modifier_Sequence ; person pouting: medium-dark skin tone # 8.0 [1] (🙎🏾)
|
||||
1F64E 1F3FF ; Emoji_Modifier_Sequence ; person pouting: dark skin tone # 8.0 [1] (🙎🏿)
|
||||
1F64F 1F3FB ; Emoji_Modifier_Sequence ; folded hands: light skin tone # 8.0 [1] (🙏🏻)
|
||||
1F64F 1F3FC ; Emoji_Modifier_Sequence ; folded hands: medium-light skin tone # 8.0 [1] (🙏🏼)
|
||||
1F64F 1F3FD ; Emoji_Modifier_Sequence ; folded hands: medium skin tone # 8.0 [1] (🙏🏽)
|
||||
1F64F 1F3FE ; Emoji_Modifier_Sequence ; folded hands: medium-dark skin tone # 8.0 [1] (🙏🏾)
|
||||
1F64F 1F3FF ; Emoji_Modifier_Sequence ; folded hands: dark skin tone # 8.0 [1] (🙏🏿)
|
||||
1F6A3 1F3FB ; Emoji_Modifier_Sequence ; person rowing boat: light skin tone # 8.0 [1] (🚣🏻)
|
||||
1F6A3 1F3FC ; Emoji_Modifier_Sequence ; person rowing boat: medium-light skin tone # 8.0 [1] (🚣🏼)
|
||||
1F6A3 1F3FD ; Emoji_Modifier_Sequence ; person rowing boat: medium skin tone # 8.0 [1] (🚣🏽)
|
||||
1F6A3 1F3FE ; Emoji_Modifier_Sequence ; person rowing boat: medium-dark skin tone # 8.0 [1] (🚣🏾)
|
||||
1F6A3 1F3FF ; Emoji_Modifier_Sequence ; person rowing boat: dark skin tone # 8.0 [1] (🚣🏿)
|
||||
1F6B4 1F3FB ; Emoji_Modifier_Sequence ; person biking: light skin tone # 8.0 [1] (🚴🏻)
|
||||
1F6B4 1F3FC ; Emoji_Modifier_Sequence ; person biking: medium-light skin tone # 8.0 [1] (🚴🏼)
|
||||
1F6B4 1F3FD ; Emoji_Modifier_Sequence ; person biking: medium skin tone # 8.0 [1] (🚴🏽)
|
||||
1F6B4 1F3FE ; Emoji_Modifier_Sequence ; person biking: medium-dark skin tone # 8.0 [1] (🚴🏾)
|
||||
1F6B4 1F3FF ; Emoji_Modifier_Sequence ; person biking: dark skin tone # 8.0 [1] (🚴🏿)
|
||||
1F6B5 1F3FB ; Emoji_Modifier_Sequence ; person mountain biking: light skin tone # 8.0 [1] (🚵🏻)
|
||||
1F6B5 1F3FC ; Emoji_Modifier_Sequence ; person mountain biking: medium-light skin tone # 8.0 [1] (🚵🏼)
|
||||
1F6B5 1F3FD ; Emoji_Modifier_Sequence ; person mountain biking: medium skin tone # 8.0 [1] (🚵🏽)
|
||||
1F6B5 1F3FE ; Emoji_Modifier_Sequence ; person mountain biking: medium-dark skin tone # 8.0 [1] (🚵🏾)
|
||||
1F6B5 1F3FF ; Emoji_Modifier_Sequence ; person mountain biking: dark skin tone # 8.0 [1] (🚵🏿)
|
||||
1F6B6 1F3FB ; Emoji_Modifier_Sequence ; person walking: light skin tone # 8.0 [1] (🚶🏻)
|
||||
1F6B6 1F3FC ; Emoji_Modifier_Sequence ; person walking: medium-light skin tone # 8.0 [1] (🚶🏼)
|
||||
1F6B6 1F3FD ; Emoji_Modifier_Sequence ; person walking: medium skin tone # 8.0 [1] (🚶🏽)
|
||||
1F6B6 1F3FE ; Emoji_Modifier_Sequence ; person walking: medium-dark skin tone # 8.0 [1] (🚶🏾)
|
||||
1F6B6 1F3FF ; Emoji_Modifier_Sequence ; person walking: dark skin tone # 8.0 [1] (🚶🏿)
|
||||
1F6C0 1F3FB ; Emoji_Modifier_Sequence ; person taking bath: light skin tone # 8.0 [1] (🛀🏻)
|
||||
1F6C0 1F3FC ; Emoji_Modifier_Sequence ; person taking bath: medium-light skin tone # 8.0 [1] (🛀🏼)
|
||||
1F6C0 1F3FD ; Emoji_Modifier_Sequence ; person taking bath: medium skin tone # 8.0 [1] (🛀🏽)
|
||||
1F6C0 1F3FE ; Emoji_Modifier_Sequence ; person taking bath: medium-dark skin tone # 8.0 [1] (🛀🏾)
|
||||
1F6C0 1F3FF ; Emoji_Modifier_Sequence ; person taking bath: dark skin tone # 8.0 [1] (🛀🏿)
|
||||
1F6CC 1F3FB ; Emoji_Modifier_Sequence ; person in bed: light skin tone # 8.0 [1] (🛌🏻)
|
||||
1F6CC 1F3FC ; Emoji_Modifier_Sequence ; person in bed: medium-light skin tone # 8.0 [1] (🛌🏼)
|
||||
1F6CC 1F3FD ; Emoji_Modifier_Sequence ; person in bed: medium skin tone # 8.0 [1] (🛌🏽)
|
||||
1F6CC 1F3FE ; Emoji_Modifier_Sequence ; person in bed: medium-dark skin tone # 8.0 [1] (🛌🏾)
|
||||
1F6CC 1F3FF ; Emoji_Modifier_Sequence ; person in bed: dark skin tone # 8.0 [1] (🛌🏿)
|
||||
1F918 1F3FB ; Emoji_Modifier_Sequence ; sign of the horns: light skin tone # 8.0 [1] (🤘🏻)
|
||||
1F918 1F3FC ; Emoji_Modifier_Sequence ; sign of the horns: medium-light skin tone # 8.0 [1] (🤘🏼)
|
||||
1F918 1F3FD ; Emoji_Modifier_Sequence ; sign of the horns: medium skin tone # 8.0 [1] (🤘🏽)
|
||||
1F918 1F3FE ; Emoji_Modifier_Sequence ; sign of the horns: medium-dark skin tone # 8.0 [1] (🤘🏾)
|
||||
1F918 1F3FF ; Emoji_Modifier_Sequence ; sign of the horns: dark skin tone # 8.0 [1] (🤘🏿)
|
||||
1F919 1F3FB ; Emoji_Modifier_Sequence ; call me hand: light skin tone # 9.0 [1] (🤙🏻)
|
||||
1F919 1F3FC ; Emoji_Modifier_Sequence ; call me hand: medium-light skin tone # 9.0 [1] (🤙🏼)
|
||||
1F919 1F3FD ; Emoji_Modifier_Sequence ; call me hand: medium skin tone # 9.0 [1] (🤙🏽)
|
||||
1F919 1F3FE ; Emoji_Modifier_Sequence ; call me hand: medium-dark skin tone # 9.0 [1] (🤙🏾)
|
||||
1F919 1F3FF ; Emoji_Modifier_Sequence ; call me hand: dark skin tone # 9.0 [1] (🤙🏿)
|
||||
1F91A 1F3FB ; Emoji_Modifier_Sequence ; raised back of hand: light skin tone # 9.0 [1] (🤚🏻)
|
||||
1F91A 1F3FC ; Emoji_Modifier_Sequence ; raised back of hand: medium-light skin tone # 9.0 [1] (🤚🏼)
|
||||
1F91A 1F3FD ; Emoji_Modifier_Sequence ; raised back of hand: medium skin tone # 9.0 [1] (🤚🏽)
|
||||
1F91A 1F3FE ; Emoji_Modifier_Sequence ; raised back of hand: medium-dark skin tone # 9.0 [1] (🤚🏾)
|
||||
1F91A 1F3FF ; Emoji_Modifier_Sequence ; raised back of hand: dark skin tone # 9.0 [1] (🤚🏿)
|
||||
1F91B 1F3FB ; Emoji_Modifier_Sequence ; left-facing fist: light skin tone # 9.0 [1] (🤛🏻)
|
||||
1F91B 1F3FC ; Emoji_Modifier_Sequence ; left-facing fist: medium-light skin tone # 9.0 [1] (🤛🏼)
|
||||
1F91B 1F3FD ; Emoji_Modifier_Sequence ; left-facing fist: medium skin tone # 9.0 [1] (🤛🏽)
|
||||
1F91B 1F3FE ; Emoji_Modifier_Sequence ; left-facing fist: medium-dark skin tone # 9.0 [1] (🤛🏾)
|
||||
1F91B 1F3FF ; Emoji_Modifier_Sequence ; left-facing fist: dark skin tone # 9.0 [1] (🤛🏿)
|
||||
1F91C 1F3FB ; Emoji_Modifier_Sequence ; right-facing fist: light skin tone # 9.0 [1] (🤜🏻)
|
||||
1F91C 1F3FC ; Emoji_Modifier_Sequence ; right-facing fist: medium-light skin tone # 9.0 [1] (🤜🏼)
|
||||
1F91C 1F3FD ; Emoji_Modifier_Sequence ; right-facing fist: medium skin tone # 9.0 [1] (🤜🏽)
|
||||
1F91C 1F3FE ; Emoji_Modifier_Sequence ; right-facing fist: medium-dark skin tone # 9.0 [1] (🤜🏾)
|
||||
1F91C 1F3FF ; Emoji_Modifier_Sequence ; right-facing fist: dark skin tone # 9.0 [1] (🤜🏿)
|
||||
1F91E 1F3FB ; Emoji_Modifier_Sequence ; crossed fingers: light skin tone # 9.0 [1] (🤞🏻)
|
||||
1F91E 1F3FC ; Emoji_Modifier_Sequence ; crossed fingers: medium-light skin tone # 9.0 [1] (🤞🏼)
|
||||
1F91E 1F3FD ; Emoji_Modifier_Sequence ; crossed fingers: medium skin tone # 9.0 [1] (🤞🏽)
|
||||
1F91E 1F3FE ; Emoji_Modifier_Sequence ; crossed fingers: medium-dark skin tone # 9.0 [1] (🤞🏾)
|
||||
1F91E 1F3FF ; Emoji_Modifier_Sequence ; crossed fingers: dark skin tone # 9.0 [1] (🤞🏿)
|
||||
1F91F 1F3FB ; Emoji_Modifier_Sequence ; love-you gesture: light skin tone # 10.0 [1] (🤟🏻)
|
||||
1F91F 1F3FC ; Emoji_Modifier_Sequence ; love-you gesture: medium-light skin tone # 10.0 [1] (🤟🏼)
|
||||
1F91F 1F3FD ; Emoji_Modifier_Sequence ; love-you gesture: medium skin tone # 10.0 [1] (🤟🏽)
|
||||
1F91F 1F3FE ; Emoji_Modifier_Sequence ; love-you gesture: medium-dark skin tone # 10.0 [1] (🤟🏾)
|
||||
1F91F 1F3FF ; Emoji_Modifier_Sequence ; love-you gesture: dark skin tone # 10.0 [1] (🤟🏿)
|
||||
1F926 1F3FB ; Emoji_Modifier_Sequence ; person facepalming: light skin tone # 9.0 [1] (🤦🏻)
|
||||
1F926 1F3FC ; Emoji_Modifier_Sequence ; person facepalming: medium-light skin tone # 9.0 [1] (🤦🏼)
|
||||
1F926 1F3FD ; Emoji_Modifier_Sequence ; person facepalming: medium skin tone # 9.0 [1] (🤦🏽)
|
||||
1F926 1F3FE ; Emoji_Modifier_Sequence ; person facepalming: medium-dark skin tone # 9.0 [1] (🤦🏾)
|
||||
1F926 1F3FF ; Emoji_Modifier_Sequence ; person facepalming: dark skin tone # 9.0 [1] (🤦🏿)
|
||||
1F930 1F3FB ; Emoji_Modifier_Sequence ; pregnant woman: light skin tone # 9.0 [1] (🤰🏻)
|
||||
1F930 1F3FC ; Emoji_Modifier_Sequence ; pregnant woman: medium-light skin tone # 9.0 [1] (🤰🏼)
|
||||
1F930 1F3FD ; Emoji_Modifier_Sequence ; pregnant woman: medium skin tone # 9.0 [1] (🤰🏽)
|
||||
1F930 1F3FE ; Emoji_Modifier_Sequence ; pregnant woman: medium-dark skin tone # 9.0 [1] (🤰🏾)
|
||||
1F930 1F3FF ; Emoji_Modifier_Sequence ; pregnant woman: dark skin tone # 9.0 [1] (🤰🏿)
|
||||
1F931 1F3FB ; Emoji_Modifier_Sequence ; breast-feeding: light skin tone # 10.0 [1] (🤱🏻)
|
||||
1F931 1F3FC ; Emoji_Modifier_Sequence ; breast-feeding: medium-light skin tone # 10.0 [1] (🤱🏼)
|
||||
1F931 1F3FD ; Emoji_Modifier_Sequence ; breast-feeding: medium skin tone # 10.0 [1] (🤱🏽)
|
||||
1F931 1F3FE ; Emoji_Modifier_Sequence ; breast-feeding: medium-dark skin tone # 10.0 [1] (🤱🏾)
|
||||
1F931 1F3FF ; Emoji_Modifier_Sequence ; breast-feeding: dark skin tone # 10.0 [1] (🤱🏿)
|
||||
1F932 1F3FB ; Emoji_Modifier_Sequence ; palms up together: light skin tone # 10.0 [1] (🤲🏻)
|
||||
1F932 1F3FC ; Emoji_Modifier_Sequence ; palms up together: medium-light skin tone # 10.0 [1] (🤲🏼)
|
||||
1F932 1F3FD ; Emoji_Modifier_Sequence ; palms up together: medium skin tone # 10.0 [1] (🤲🏽)
|
||||
1F932 1F3FE ; Emoji_Modifier_Sequence ; palms up together: medium-dark skin tone # 10.0 [1] (🤲🏾)
|
||||
1F932 1F3FF ; Emoji_Modifier_Sequence ; palms up together: dark skin tone # 10.0 [1] (🤲🏿)
|
||||
1F933 1F3FB ; Emoji_Modifier_Sequence ; selfie: light skin tone # 9.0 [1] (🤳🏻)
|
||||
1F933 1F3FC ; Emoji_Modifier_Sequence ; selfie: medium-light skin tone # 9.0 [1] (🤳🏼)
|
||||
1F933 1F3FD ; Emoji_Modifier_Sequence ; selfie: medium skin tone # 9.0 [1] (🤳🏽)
|
||||
1F933 1F3FE ; Emoji_Modifier_Sequence ; selfie: medium-dark skin tone # 9.0 [1] (🤳🏾)
|
||||
1F933 1F3FF ; Emoji_Modifier_Sequence ; selfie: dark skin tone # 9.0 [1] (🤳🏿)
|
||||
1F934 1F3FB ; Emoji_Modifier_Sequence ; prince: light skin tone # 9.0 [1] (🤴🏻)
|
||||
1F934 1F3FC ; Emoji_Modifier_Sequence ; prince: medium-light skin tone # 9.0 [1] (🤴🏼)
|
||||
1F934 1F3FD ; Emoji_Modifier_Sequence ; prince: medium skin tone # 9.0 [1] (🤴🏽)
|
||||
1F934 1F3FE ; Emoji_Modifier_Sequence ; prince: medium-dark skin tone # 9.0 [1] (🤴🏾)
|
||||
1F934 1F3FF ; Emoji_Modifier_Sequence ; prince: dark skin tone # 9.0 [1] (🤴🏿)
|
||||
1F935 1F3FB ; Emoji_Modifier_Sequence ; man in tuxedo: light skin tone # 9.0 [1] (🤵🏻)
|
||||
1F935 1F3FC ; Emoji_Modifier_Sequence ; man in tuxedo: medium-light skin tone # 9.0 [1] (🤵🏼)
|
||||
1F935 1F3FD ; Emoji_Modifier_Sequence ; man in tuxedo: medium skin tone # 9.0 [1] (🤵🏽)
|
||||
1F935 1F3FE ; Emoji_Modifier_Sequence ; man in tuxedo: medium-dark skin tone # 9.0 [1] (🤵🏾)
|
||||
1F935 1F3FF ; Emoji_Modifier_Sequence ; man in tuxedo: dark skin tone # 9.0 [1] (🤵🏿)
|
||||
1F936 1F3FB ; Emoji_Modifier_Sequence ; Mrs. Claus: light skin tone # 9.0 [1] (🤶🏻)
|
||||
1F936 1F3FC ; Emoji_Modifier_Sequence ; Mrs. Claus: medium-light skin tone # 9.0 [1] (🤶🏼)
|
||||
1F936 1F3FD ; Emoji_Modifier_Sequence ; Mrs. Claus: medium skin tone # 9.0 [1] (🤶🏽)
|
||||
1F936 1F3FE ; Emoji_Modifier_Sequence ; Mrs. Claus: medium-dark skin tone # 9.0 [1] (🤶🏾)
|
||||
1F936 1F3FF ; Emoji_Modifier_Sequence ; Mrs. Claus: dark skin tone # 9.0 [1] (🤶🏿)
|
||||
1F937 1F3FB ; Emoji_Modifier_Sequence ; person shrugging: light skin tone # 9.0 [1] (🤷🏻)
|
||||
1F937 1F3FC ; Emoji_Modifier_Sequence ; person shrugging: medium-light skin tone # 9.0 [1] (🤷🏼)
|
||||
1F937 1F3FD ; Emoji_Modifier_Sequence ; person shrugging: medium skin tone # 9.0 [1] (🤷🏽)
|
||||
1F937 1F3FE ; Emoji_Modifier_Sequence ; person shrugging: medium-dark skin tone # 9.0 [1] (🤷🏾)
|
||||
1F937 1F3FF ; Emoji_Modifier_Sequence ; person shrugging: dark skin tone # 9.0 [1] (🤷🏿)
|
||||
1F938 1F3FB ; Emoji_Modifier_Sequence ; person cartwheeling: light skin tone # 9.0 [1] (🤸🏻)
|
||||
1F938 1F3FC ; Emoji_Modifier_Sequence ; person cartwheeling: medium-light skin tone # 9.0 [1] (🤸🏼)
|
||||
1F938 1F3FD ; Emoji_Modifier_Sequence ; person cartwheeling: medium skin tone # 9.0 [1] (🤸🏽)
|
||||
1F938 1F3FE ; Emoji_Modifier_Sequence ; person cartwheeling: medium-dark skin tone # 9.0 [1] (🤸🏾)
|
||||
1F938 1F3FF ; Emoji_Modifier_Sequence ; person cartwheeling: dark skin tone # 9.0 [1] (🤸🏿)
|
||||
1F939 1F3FB ; Emoji_Modifier_Sequence ; person juggling: light skin tone # 9.0 [1] (🤹🏻)
|
||||
1F939 1F3FC ; Emoji_Modifier_Sequence ; person juggling: medium-light skin tone # 9.0 [1] (🤹🏼)
|
||||
1F939 1F3FD ; Emoji_Modifier_Sequence ; person juggling: medium skin tone # 9.0 [1] (🤹🏽)
|
||||
1F939 1F3FE ; Emoji_Modifier_Sequence ; person juggling: medium-dark skin tone # 9.0 [1] (🤹🏾)
|
||||
1F939 1F3FF ; Emoji_Modifier_Sequence ; person juggling: dark skin tone # 9.0 [1] (🤹🏿)
|
||||
1F93D 1F3FB ; Emoji_Modifier_Sequence ; person playing water polo: light skin tone # 9.0 [1] (🤽🏻)
|
||||
1F93D 1F3FC ; Emoji_Modifier_Sequence ; person playing water polo: medium-light skin tone # 9.0 [1] (🤽🏼)
|
||||
1F93D 1F3FD ; Emoji_Modifier_Sequence ; person playing water polo: medium skin tone # 9.0 [1] (🤽🏽)
|
||||
1F93D 1F3FE ; Emoji_Modifier_Sequence ; person playing water polo: medium-dark skin tone # 9.0 [1] (🤽🏾)
|
||||
1F93D 1F3FF ; Emoji_Modifier_Sequence ; person playing water polo: dark skin tone # 9.0 [1] (🤽🏿)
|
||||
1F93E 1F3FB ; Emoji_Modifier_Sequence ; person playing handball: light skin tone # 9.0 [1] (🤾🏻)
|
||||
1F93E 1F3FC ; Emoji_Modifier_Sequence ; person playing handball: medium-light skin tone # 9.0 [1] (🤾🏼)
|
||||
1F93E 1F3FD ; Emoji_Modifier_Sequence ; person playing handball: medium skin tone # 9.0 [1] (🤾🏽)
|
||||
1F93E 1F3FE ; Emoji_Modifier_Sequence ; person playing handball: medium-dark skin tone # 9.0 [1] (🤾🏾)
|
||||
1F93E 1F3FF ; Emoji_Modifier_Sequence ; person playing handball: dark skin tone # 9.0 [1] (🤾🏿)
|
||||
1F9B5 1F3FB ; Emoji_Modifier_Sequence ; leg: light skin tone # 11.0 [1] (🦵🏻)
|
||||
1F9B5 1F3FC ; Emoji_Modifier_Sequence ; leg: medium-light skin tone # 11.0 [1] (🦵🏼)
|
||||
1F9B5 1F3FD ; Emoji_Modifier_Sequence ; leg: medium skin tone # 11.0 [1] (🦵🏽)
|
||||
1F9B5 1F3FE ; Emoji_Modifier_Sequence ; leg: medium-dark skin tone # 11.0 [1] (🦵🏾)
|
||||
1F9B5 1F3FF ; Emoji_Modifier_Sequence ; leg: dark skin tone # 11.0 [1] (🦵🏿)
|
||||
1F9B6 1F3FB ; Emoji_Modifier_Sequence ; foot: light skin tone # 11.0 [1] (🦶🏻)
|
||||
1F9B6 1F3FC ; Emoji_Modifier_Sequence ; foot: medium-light skin tone # 11.0 [1] (🦶🏼)
|
||||
1F9B6 1F3FD ; Emoji_Modifier_Sequence ; foot: medium skin tone # 11.0 [1] (🦶🏽)
|
||||
1F9B6 1F3FE ; Emoji_Modifier_Sequence ; foot: medium-dark skin tone # 11.0 [1] (🦶🏾)
|
||||
1F9B6 1F3FF ; Emoji_Modifier_Sequence ; foot: dark skin tone # 11.0 [1] (🦶🏿)
|
||||
1F9B8 1F3FB ; Emoji_Modifier_Sequence ; superhero: light skin tone # 11.0 [1] (🦸🏻)
|
||||
1F9B8 1F3FC ; Emoji_Modifier_Sequence ; superhero: medium-light skin tone # 11.0 [1] (🦸🏼)
|
||||
1F9B8 1F3FD ; Emoji_Modifier_Sequence ; superhero: medium skin tone # 11.0 [1] (🦸🏽)
|
||||
1F9B8 1F3FE ; Emoji_Modifier_Sequence ; superhero: medium-dark skin tone # 11.0 [1] (🦸🏾)
|
||||
1F9B8 1F3FF ; Emoji_Modifier_Sequence ; superhero: dark skin tone # 11.0 [1] (🦸🏿)
|
||||
1F9B9 1F3FB ; Emoji_Modifier_Sequence ; supervillain: light skin tone # 11.0 [1] (🦹🏻)
|
||||
1F9B9 1F3FC ; Emoji_Modifier_Sequence ; supervillain: medium-light skin tone # 11.0 [1] (🦹🏼)
|
||||
1F9B9 1F3FD ; Emoji_Modifier_Sequence ; supervillain: medium skin tone # 11.0 [1] (🦹🏽)
|
||||
1F9B9 1F3FE ; Emoji_Modifier_Sequence ; supervillain: medium-dark skin tone # 11.0 [1] (🦹🏾)
|
||||
1F9B9 1F3FF ; Emoji_Modifier_Sequence ; supervillain: dark skin tone # 11.0 [1] (🦹🏿)
|
||||
1F9D1 1F3FB ; Emoji_Modifier_Sequence ; adult: light skin tone # 10.0 [1] (🧑🏻)
|
||||
1F9D1 1F3FC ; Emoji_Modifier_Sequence ; adult: medium-light skin tone # 10.0 [1] (🧑🏼)
|
||||
1F9D1 1F3FD ; Emoji_Modifier_Sequence ; adult: medium skin tone # 10.0 [1] (🧑🏽)
|
||||
1F9D1 1F3FE ; Emoji_Modifier_Sequence ; adult: medium-dark skin tone # 10.0 [1] (🧑🏾)
|
||||
1F9D1 1F3FF ; Emoji_Modifier_Sequence ; adult: dark skin tone # 10.0 [1] (🧑🏿)
|
||||
1F9D2 1F3FB ; Emoji_Modifier_Sequence ; child: light skin tone # 10.0 [1] (🧒🏻)
|
||||
1F9D2 1F3FC ; Emoji_Modifier_Sequence ; child: medium-light skin tone # 10.0 [1] (🧒🏼)
|
||||
1F9D2 1F3FD ; Emoji_Modifier_Sequence ; child: medium skin tone # 10.0 [1] (🧒🏽)
|
||||
1F9D2 1F3FE ; Emoji_Modifier_Sequence ; child: medium-dark skin tone # 10.0 [1] (🧒🏾)
|
||||
1F9D2 1F3FF ; Emoji_Modifier_Sequence ; child: dark skin tone # 10.0 [1] (🧒🏿)
|
||||
1F9D3 1F3FB ; Emoji_Modifier_Sequence ; older adult: light skin tone # 10.0 [1] (🧓🏻)
|
||||
1F9D3 1F3FC ; Emoji_Modifier_Sequence ; older adult: medium-light skin tone # 10.0 [1] (🧓🏼)
|
||||
1F9D3 1F3FD ; Emoji_Modifier_Sequence ; older adult: medium skin tone # 10.0 [1] (🧓🏽)
|
||||
1F9D3 1F3FE ; Emoji_Modifier_Sequence ; older adult: medium-dark skin tone # 10.0 [1] (🧓🏾)
|
||||
1F9D3 1F3FF ; Emoji_Modifier_Sequence ; older adult: dark skin tone # 10.0 [1] (🧓🏿)
|
||||
1F9D4 1F3FB ; Emoji_Modifier_Sequence ; bearded person: light skin tone # 10.0 [1] (🧔🏻)
|
||||
1F9D4 1F3FC ; Emoji_Modifier_Sequence ; bearded person: medium-light skin tone # 10.0 [1] (🧔🏼)
|
||||
1F9D4 1F3FD ; Emoji_Modifier_Sequence ; bearded person: medium skin tone # 10.0 [1] (🧔🏽)
|
||||
1F9D4 1F3FE ; Emoji_Modifier_Sequence ; bearded person: medium-dark skin tone # 10.0 [1] (🧔🏾)
|
||||
1F9D4 1F3FF ; Emoji_Modifier_Sequence ; bearded person: dark skin tone # 10.0 [1] (🧔🏿)
|
||||
1F9D5 1F3FB ; Emoji_Modifier_Sequence ; woman with headscarf: light skin tone # 10.0 [1] (🧕🏻)
|
||||
1F9D5 1F3FC ; Emoji_Modifier_Sequence ; woman with headscarf: medium-light skin tone # 10.0 [1] (🧕🏼)
|
||||
1F9D5 1F3FD ; Emoji_Modifier_Sequence ; woman with headscarf: medium skin tone # 10.0 [1] (🧕🏽)
|
||||
1F9D5 1F3FE ; Emoji_Modifier_Sequence ; woman with headscarf: medium-dark skin tone # 10.0 [1] (🧕🏾)
|
||||
1F9D5 1F3FF ; Emoji_Modifier_Sequence ; woman with headscarf: dark skin tone # 10.0 [1] (🧕🏿)
|
||||
1F9D6 1F3FB ; Emoji_Modifier_Sequence ; person in steamy room: light skin tone # 10.0 [1] (🧖🏻)
|
||||
1F9D6 1F3FC ; Emoji_Modifier_Sequence ; person in steamy room: medium-light skin tone # 10.0 [1] (🧖🏼)
|
||||
1F9D6 1F3FD ; Emoji_Modifier_Sequence ; person in steamy room: medium skin tone # 10.0 [1] (🧖🏽)
|
||||
1F9D6 1F3FE ; Emoji_Modifier_Sequence ; person in steamy room: medium-dark skin tone # 10.0 [1] (🧖🏾)
|
||||
1F9D6 1F3FF ; Emoji_Modifier_Sequence ; person in steamy room: dark skin tone # 10.0 [1] (🧖🏿)
|
||||
1F9D7 1F3FB ; Emoji_Modifier_Sequence ; person climbing: light skin tone # 10.0 [1] (🧗🏻)
|
||||
1F9D7 1F3FC ; Emoji_Modifier_Sequence ; person climbing: medium-light skin tone # 10.0 [1] (🧗🏼)
|
||||
1F9D7 1F3FD ; Emoji_Modifier_Sequence ; person climbing: medium skin tone # 10.0 [1] (🧗🏽)
|
||||
1F9D7 1F3FE ; Emoji_Modifier_Sequence ; person climbing: medium-dark skin tone # 10.0 [1] (🧗🏾)
|
||||
1F9D7 1F3FF ; Emoji_Modifier_Sequence ; person climbing: dark skin tone # 10.0 [1] (🧗🏿)
|
||||
1F9D8 1F3FB ; Emoji_Modifier_Sequence ; person in lotus position: light skin tone # 10.0 [1] (🧘🏻)
|
||||
1F9D8 1F3FC ; Emoji_Modifier_Sequence ; person in lotus position: medium-light skin tone # 10.0 [1] (🧘🏼)
|
||||
1F9D8 1F3FD ; Emoji_Modifier_Sequence ; person in lotus position: medium skin tone # 10.0 [1] (🧘🏽)
|
||||
1F9D8 1F3FE ; Emoji_Modifier_Sequence ; person in lotus position: medium-dark skin tone # 10.0 [1] (🧘🏾)
|
||||
1F9D8 1F3FF ; Emoji_Modifier_Sequence ; person in lotus position: dark skin tone # 10.0 [1] (🧘🏿)
|
||||
1F9D9 1F3FB ; Emoji_Modifier_Sequence ; mage: light skin tone # 10.0 [1] (🧙🏻)
|
||||
1F9D9 1F3FC ; Emoji_Modifier_Sequence ; mage: medium-light skin tone # 10.0 [1] (🧙🏼)
|
||||
1F9D9 1F3FD ; Emoji_Modifier_Sequence ; mage: medium skin tone # 10.0 [1] (🧙🏽)
|
||||
1F9D9 1F3FE ; Emoji_Modifier_Sequence ; mage: medium-dark skin tone # 10.0 [1] (🧙🏾)
|
||||
1F9D9 1F3FF ; Emoji_Modifier_Sequence ; mage: dark skin tone # 10.0 [1] (🧙🏿)
|
||||
1F9DA 1F3FB ; Emoji_Modifier_Sequence ; fairy: light skin tone # 10.0 [1] (🧚🏻)
|
||||
1F9DA 1F3FC ; Emoji_Modifier_Sequence ; fairy: medium-light skin tone # 10.0 [1] (🧚🏼)
|
||||
1F9DA 1F3FD ; Emoji_Modifier_Sequence ; fairy: medium skin tone # 10.0 [1] (🧚🏽)
|
||||
1F9DA 1F3FE ; Emoji_Modifier_Sequence ; fairy: medium-dark skin tone # 10.0 [1] (🧚🏾)
|
||||
1F9DA 1F3FF ; Emoji_Modifier_Sequence ; fairy: dark skin tone # 10.0 [1] (🧚🏿)
|
||||
1F9DB 1F3FB ; Emoji_Modifier_Sequence ; vampire: light skin tone # 10.0 [1] (🧛🏻)
|
||||
1F9DB 1F3FC ; Emoji_Modifier_Sequence ; vampire: medium-light skin tone # 10.0 [1] (🧛🏼)
|
||||
1F9DB 1F3FD ; Emoji_Modifier_Sequence ; vampire: medium skin tone # 10.0 [1] (🧛🏽)
|
||||
1F9DB 1F3FE ; Emoji_Modifier_Sequence ; vampire: medium-dark skin tone # 10.0 [1] (🧛🏾)
|
||||
1F9DB 1F3FF ; Emoji_Modifier_Sequence ; vampire: dark skin tone # 10.0 [1] (🧛🏿)
|
||||
1F9DC 1F3FB ; Emoji_Modifier_Sequence ; merperson: light skin tone # 10.0 [1] (🧜🏻)
|
||||
1F9DC 1F3FC ; Emoji_Modifier_Sequence ; merperson: medium-light skin tone # 10.0 [1] (🧜🏼)
|
||||
1F9DC 1F3FD ; Emoji_Modifier_Sequence ; merperson: medium skin tone # 10.0 [1] (🧜🏽)
|
||||
1F9DC 1F3FE ; Emoji_Modifier_Sequence ; merperson: medium-dark skin tone # 10.0 [1] (🧜🏾)
|
||||
1F9DC 1F3FF ; Emoji_Modifier_Sequence ; merperson: dark skin tone # 10.0 [1] (🧜🏿)
|
||||
1F9DD 1F3FB ; Emoji_Modifier_Sequence ; elf: light skin tone # 10.0 [1] (🧝🏻)
|
||||
1F9DD 1F3FC ; Emoji_Modifier_Sequence ; elf: medium-light skin tone # 10.0 [1] (🧝🏼)
|
||||
1F9DD 1F3FD ; Emoji_Modifier_Sequence ; elf: medium skin tone # 10.0 [1] (🧝🏽)
|
||||
1F9DD 1F3FE ; Emoji_Modifier_Sequence ; elf: medium-dark skin tone # 10.0 [1] (🧝🏾)
|
||||
1F9DD 1F3FF ; Emoji_Modifier_Sequence ; elf: dark skin tone # 10.0 [1] (🧝🏿)
|
||||
|
||||
# Total elements: 530
|
||||
|
||||
#EOF
|
|
@ -1,839 +0,0 @@
|
|||
# emoji-zwj-sequences.txt
|
||||
# Date: 2018-02-07, 08:40:26 GMT
|
||||
# © 2018 Unicode®, Inc.
|
||||
# Unicode and the Unicode Logo are registered trademarks of Unicode, Inc. in the U.S. and other countries.
|
||||
# For terms of use, see http://www.unicode.org/terms_of_use.html
|
||||
#
|
||||
# Emoji ZWJ Sequences for UTS #51
|
||||
# Version: 11.0
|
||||
#
|
||||
# For documentation and usage, see http://www.unicode.org/reports/tr51
|
||||
#
|
||||
# Format:
|
||||
# code_point(s) ; type_field ; description # comments
|
||||
# Fields:
|
||||
# code_point(s): one or more code points in hex format, separated by spaces
|
||||
# type_field: Emoji_ZWJ_Sequence
|
||||
# The type_field is a convenience for parsing the emoji sequence files, and is not intended to be maintained as a property.
|
||||
# short name: CLDR short name of sequence; characters may be escaped with \x{hex}.
|
||||
#
|
||||
# Characters and sequences are listed in code point order. Users should be shown a more natural order.
|
||||
# See the CLDR collation order for Emoji.
|
||||
|
||||
# ================================================
|
||||
|
||||
# Emoji ZWJ Sequence: Family
|
||||
|
||||
1F468 200D 2764 FE0F 200D 1F468 ; Emoji_ZWJ_Sequence ; couple with heart: man, man # 6.0 [1] (👨❤️👨)
|
||||
1F468 200D 2764 FE0F 200D 1F48B 200D 1F468 ; Emoji_ZWJ_Sequence ; kiss: man, man # 6.0 [1] (👨❤️💋👨)
|
||||
1F468 200D 1F466 ; Emoji_ZWJ_Sequence ; family: man, boy # 6.0 [1] (👨👦)
|
||||
1F468 200D 1F466 200D 1F466 ; Emoji_ZWJ_Sequence ; family: man, boy, boy # 6.0 [1] (👨👦👦)
|
||||
1F468 200D 1F467 ; Emoji_ZWJ_Sequence ; family: man, girl # 6.0 [1] (👨👧)
|
||||
1F468 200D 1F467 200D 1F466 ; Emoji_ZWJ_Sequence ; family: man, girl, boy # 6.0 [1] (👨👧👦)
|
||||
1F468 200D 1F467 200D 1F467 ; Emoji_ZWJ_Sequence ; family: man, girl, girl # 6.0 [1] (👨👧👧)
|
||||
1F468 200D 1F468 200D 1F466 ; Emoji_ZWJ_Sequence ; family: man, man, boy # 6.0 [1] (👨👨👦)
|
||||
1F468 200D 1F468 200D 1F466 200D 1F466 ; Emoji_ZWJ_Sequence ; family: man, man, boy, boy # 6.0 [1] (👨👨👦👦)
|
||||
1F468 200D 1F468 200D 1F467 ; Emoji_ZWJ_Sequence ; family: man, man, girl # 6.0 [1] (👨👨👧)
|
||||
1F468 200D 1F468 200D 1F467 200D 1F466 ; Emoji_ZWJ_Sequence ; family: man, man, girl, boy # 6.0 [1] (👨👨👧👦)
|
||||
1F468 200D 1F468 200D 1F467 200D 1F467 ; Emoji_ZWJ_Sequence ; family: man, man, girl, girl # 6.0 [1] (👨👨👧👧)
|
||||
1F468 200D 1F469 200D 1F466 ; Emoji_ZWJ_Sequence ; family: man, woman, boy # 6.0 [1] (👨👩👦)
|
||||
1F468 200D 1F469 200D 1F466 200D 1F466 ; Emoji_ZWJ_Sequence ; family: man, woman, boy, boy # 6.0 [1] (👨👩👦👦)
|
||||
1F468 200D 1F469 200D 1F467 ; Emoji_ZWJ_Sequence ; family: man, woman, girl # 6.0 [1] (👨👩👧)
|
||||
1F468 200D 1F469 200D 1F467 200D 1F466 ; Emoji_ZWJ_Sequence ; family: man, woman, girl, boy # 6.0 [1] (👨👩👧👦)
|
||||
1F468 200D 1F469 200D 1F467 200D 1F467 ; Emoji_ZWJ_Sequence ; family: man, woman, girl, girl # 6.0 [1] (👨👩👧👧)
|
||||
1F469 200D 2764 FE0F 200D 1F468 ; Emoji_ZWJ_Sequence ; couple with heart: woman, man # 6.0 [1] (👩❤️👨)
|
||||
1F469 200D 2764 FE0F 200D 1F469 ; Emoji_ZWJ_Sequence ; couple with heart: woman, woman # 6.0 [1] (👩❤️👩)
|
||||
1F469 200D 2764 FE0F 200D 1F48B 200D 1F468 ; Emoji_ZWJ_Sequence ; kiss: woman, man # 6.0 [1] (👩❤️💋👨)
|
||||
1F469 200D 2764 FE0F 200D 1F48B 200D 1F469 ; Emoji_ZWJ_Sequence ; kiss: woman, woman # 6.0 [1] (👩❤️💋👩)
|
||||
1F469 200D 1F466 ; Emoji_ZWJ_Sequence ; family: woman, boy # 6.0 [1] (👩👦)
|
||||
1F469 200D 1F466 200D 1F466 ; Emoji_ZWJ_Sequence ; family: woman, boy, boy # 6.0 [1] (👩👦👦)
|
||||
1F469 200D 1F467 ; Emoji_ZWJ_Sequence ; family: woman, girl # 6.0 [1] (👩👧)
|
||||
1F469 200D 1F467 200D 1F466 ; Emoji_ZWJ_Sequence ; family: woman, girl, boy # 6.0 [1] (👩👧👦)
|
||||
1F469 200D 1F467 200D 1F467 ; Emoji_ZWJ_Sequence ; family: woman, girl, girl # 6.0 [1] (👩👧👧)
|
||||
1F469 200D 1F469 200D 1F466 ; Emoji_ZWJ_Sequence ; family: woman, woman, boy # 6.0 [1] (👩👩👦)
|
||||
1F469 200D 1F469 200D 1F466 200D 1F466 ; Emoji_ZWJ_Sequence ; family: woman, woman, boy, boy # 6.0 [1] (👩👩👦👦)
|
||||
1F469 200D 1F469 200D 1F467 ; Emoji_ZWJ_Sequence ; family: woman, woman, girl # 6.0 [1] (👩👩👧)
|
||||
1F469 200D 1F469 200D 1F467 200D 1F466 ; Emoji_ZWJ_Sequence ; family: woman, woman, girl, boy # 6.0 [1] (👩👩👧👦)
|
||||
1F469 200D 1F469 200D 1F467 200D 1F467 ; Emoji_ZWJ_Sequence ; family: woman, woman, girl, girl # 6.0 [1] (👩👩👧👧)
|
||||
|
||||
# Total elements: 31
|
||||
|
||||
# ================================================
|
||||
|
||||
# Emoji ZWJ Sequence: Gendered Role, with object
|
||||
|
||||
1F468 200D 2695 FE0F ; Emoji_ZWJ_Sequence ; man health worker # 6.0 [1] (👨⚕️)
|
||||
1F468 200D 2696 FE0F ; Emoji_ZWJ_Sequence ; man judge # 6.0 [1] (👨⚖️)
|
||||
1F468 200D 2708 FE0F ; Emoji_ZWJ_Sequence ; man pilot # 6.0 [1] (👨✈️)
|
||||
1F468 200D 1F33E ; Emoji_ZWJ_Sequence ; man farmer # 6.0 [1] (👨🌾)
|
||||
1F468 200D 1F373 ; Emoji_ZWJ_Sequence ; man cook # 6.0 [1] (👨🍳)
|
||||
1F468 200D 1F393 ; Emoji_ZWJ_Sequence ; man student # 6.0 [1] (👨🎓)
|
||||
1F468 200D 1F3A4 ; Emoji_ZWJ_Sequence ; man singer # 6.0 [1] (👨🎤)
|
||||
1F468 200D 1F3A8 ; Emoji_ZWJ_Sequence ; man artist # 6.0 [1] (👨🎨)
|
||||
1F468 200D 1F3EB ; Emoji_ZWJ_Sequence ; man teacher # 6.0 [1] (👨🏫)
|
||||
1F468 200D 1F3ED ; Emoji_ZWJ_Sequence ; man factory worker # 6.0 [1] (👨🏭)
|
||||
1F468 200D 1F4BB ; Emoji_ZWJ_Sequence ; man technologist # 6.0 [1] (👨💻)
|
||||
1F468 200D 1F4BC ; Emoji_ZWJ_Sequence ; man office worker # 6.0 [1] (👨💼)
|
||||
1F468 200D 1F527 ; Emoji_ZWJ_Sequence ; man mechanic # 6.0 [1] (👨🔧)
|
||||
1F468 200D 1F52C ; Emoji_ZWJ_Sequence ; man scientist # 6.0 [1] (👨🔬)
|
||||
1F468 200D 1F680 ; Emoji_ZWJ_Sequence ; man astronaut # 6.0 [1] (👨🚀)
|
||||
1F468 200D 1F692 ; Emoji_ZWJ_Sequence ; man firefighter # 6.0 [1] (👨🚒)
|
||||
1F468 200D 1F9B0 ; Emoji_ZWJ_Sequence ; man, red haired # 11.0 [1] (👨🦰)
|
||||
1F468 200D 1F9B1 ; Emoji_ZWJ_Sequence ; man, curly haired # 11.0 [1] (👨🦱)
|
||||
1F468 200D 1F9B2 ; Emoji_ZWJ_Sequence ; man, bald # 11.0 [1] (👨🦲)
|
||||
1F468 200D 1F9B3 ; Emoji_ZWJ_Sequence ; man, white haired # 11.0 [1] (👨🦳)
|
||||
1F468 1F3FB 200D 2695 FE0F ; Emoji_ZWJ_Sequence ; man health worker: light skin tone # 8.0 [1] (👨🏻⚕️)
|
||||
1F468 1F3FB 200D 2696 FE0F ; Emoji_ZWJ_Sequence ; man judge: light skin tone # 8.0 [1] (👨🏻⚖️)
|
||||
1F468 1F3FB 200D 2708 FE0F ; Emoji_ZWJ_Sequence ; man pilot: light skin tone # 8.0 [1] (👨🏻✈️)
|
||||
1F468 1F3FB 200D 1F33E ; Emoji_ZWJ_Sequence ; man farmer: light skin tone # 8.0 [1] (👨🏻🌾)
|
||||
1F468 1F3FB 200D 1F373 ; Emoji_ZWJ_Sequence ; man cook: light skin tone # 8.0 [1] (👨🏻🍳)
|
||||
1F468 1F3FB 200D 1F393 ; Emoji_ZWJ_Sequence ; man student: light skin tone # 8.0 [1] (👨🏻🎓)
|
||||
1F468 1F3FB 200D 1F3A4 ; Emoji_ZWJ_Sequence ; man singer: light skin tone # 8.0 [1] (👨🏻🎤)
|
||||
1F468 1F3FB 200D 1F3A8 ; Emoji_ZWJ_Sequence ; man artist: light skin tone # 8.0 [1] (👨🏻🎨)
|
||||
1F468 1F3FB 200D 1F3EB ; Emoji_ZWJ_Sequence ; man teacher: light skin tone # 8.0 [1] (👨🏻🏫)
|
||||
1F468 1F3FB 200D 1F3ED ; Emoji_ZWJ_Sequence ; man factory worker: light skin tone # 8.0 [1] (👨🏻🏭)
|
||||
1F468 1F3FB 200D 1F4BB ; Emoji_ZWJ_Sequence ; man technologist: light skin tone # 8.0 [1] (👨🏻💻)
|
||||
1F468 1F3FB 200D 1F4BC ; Emoji_ZWJ_Sequence ; man office worker: light skin tone # 8.0 [1] (👨🏻💼)
|
||||
1F468 1F3FB 200D 1F527 ; Emoji_ZWJ_Sequence ; man mechanic: light skin tone # 8.0 [1] (👨🏻🔧)
|
||||
1F468 1F3FB 200D 1F52C ; Emoji_ZWJ_Sequence ; man scientist: light skin tone # 8.0 [1] (👨🏻🔬)
|
||||
1F468 1F3FB 200D 1F680 ; Emoji_ZWJ_Sequence ; man astronaut: light skin tone # 8.0 [1] (👨🏻🚀)
|
||||
1F468 1F3FB 200D 1F692 ; Emoji_ZWJ_Sequence ; man firefighter: light skin tone # 8.0 [1] (👨🏻🚒)
|
||||
1F468 1F3FB 200D 1F9B0 ; Emoji_ZWJ_Sequence ; man, red haired: light skin tone # 11.0 [1] (👨🏻🦰)
|
||||
1F468 1F3FB 200D 1F9B1 ; Emoji_ZWJ_Sequence ; man, curly haired: light skin tone # 11.0 [1] (👨🏻🦱)
|
||||
1F468 1F3FB 200D 1F9B2 ; Emoji_ZWJ_Sequence ; man, bald: light skin tone # 11.0 [1] (👨🏻🦲)
|
||||
1F468 1F3FB 200D 1F9B3 ; Emoji_ZWJ_Sequence ; man, white haired: light skin tone # 11.0 [1] (👨🏻🦳)
|
||||
1F468 1F3FC 200D 2695 FE0F ; Emoji_ZWJ_Sequence ; man health worker: medium-light skin tone # 8.0 [1] (👨🏼⚕️)
|
||||
1F468 1F3FC 200D 2696 FE0F ; Emoji_ZWJ_Sequence ; man judge: medium-light skin tone # 8.0 [1] (👨🏼⚖️)
|
||||
1F468 1F3FC 200D 2708 FE0F ; Emoji_ZWJ_Sequence ; man pilot: medium-light skin tone # 8.0 [1] (👨🏼✈️)
|
||||
1F468 1F3FC 200D 1F33E ; Emoji_ZWJ_Sequence ; man farmer: medium-light skin tone # 8.0 [1] (👨🏼🌾)
|
||||
1F468 1F3FC 200D 1F373 ; Emoji_ZWJ_Sequence ; man cook: medium-light skin tone # 8.0 [1] (👨🏼🍳)
|
||||
1F468 1F3FC 200D 1F393 ; Emoji_ZWJ_Sequence ; man student: medium-light skin tone # 8.0 [1] (👨🏼🎓)
|
||||
1F468 1F3FC 200D 1F3A4 ; Emoji_ZWJ_Sequence ; man singer: medium-light skin tone # 8.0 [1] (👨🏼🎤)
|
||||
1F468 1F3FC 200D 1F3A8 ; Emoji_ZWJ_Sequence ; man artist: medium-light skin tone # 8.0 [1] (👨🏼🎨)
|
||||
1F468 1F3FC 200D 1F3EB ; Emoji_ZWJ_Sequence ; man teacher: medium-light skin tone # 8.0 [1] (👨🏼🏫)
|
||||
1F468 1F3FC 200D 1F3ED ; Emoji_ZWJ_Sequence ; man factory worker: medium-light skin tone # 8.0 [1] (👨🏼🏭)
|
||||
1F468 1F3FC 200D 1F4BB ; Emoji_ZWJ_Sequence ; man technologist: medium-light skin tone # 8.0 [1] (👨🏼💻)
|
||||
1F468 1F3FC 200D 1F4BC ; Emoji_ZWJ_Sequence ; man office worker: medium-light skin tone # 8.0 [1] (👨🏼💼)
|
||||
1F468 1F3FC 200D 1F527 ; Emoji_ZWJ_Sequence ; man mechanic: medium-light skin tone # 8.0 [1] (👨🏼🔧)
|
||||
1F468 1F3FC 200D 1F52C ; Emoji_ZWJ_Sequence ; man scientist: medium-light skin tone # 8.0 [1] (👨🏼🔬)
|
||||
1F468 1F3FC 200D 1F680 ; Emoji_ZWJ_Sequence ; man astronaut: medium-light skin tone # 8.0 [1] (👨🏼🚀)
|
||||
1F468 1F3FC 200D 1F692 ; Emoji_ZWJ_Sequence ; man firefighter: medium-light skin tone # 8.0 [1] (👨🏼🚒)
|
||||
1F468 1F3FC 200D 1F9B0 ; Emoji_ZWJ_Sequence ; man, red haired: medium-light skin tone # 11.0 [1] (👨🏼🦰)
|
||||
1F468 1F3FC 200D 1F9B1 ; Emoji_ZWJ_Sequence ; man, curly haired: medium-light skin tone # 11.0 [1] (👨🏼🦱)
|
||||
1F468 1F3FC 200D 1F9B2 ; Emoji_ZWJ_Sequence ; man, bald: medium-light skin tone # 11.0 [1] (👨🏼🦲)
|
||||
1F468 1F3FC 200D 1F9B3 ; Emoji_ZWJ_Sequence ; man, white haired: medium-light skin tone # 11.0 [1] (👨🏼🦳)
|
||||
1F468 1F3FD 200D 2695 FE0F ; Emoji_ZWJ_Sequence ; man health worker: medium skin tone # 8.0 [1] (👨🏽⚕️)
|
||||
1F468 1F3FD 200D 2696 FE0F ; Emoji_ZWJ_Sequence ; man judge: medium skin tone # 8.0 [1] (👨🏽⚖️)
|
||||
1F468 1F3FD 200D 2708 FE0F ; Emoji_ZWJ_Sequence ; man pilot: medium skin tone # 8.0 [1] (👨🏽✈️)
|
||||
1F468 1F3FD 200D 1F33E ; Emoji_ZWJ_Sequence ; man farmer: medium skin tone # 8.0 [1] (👨🏽🌾)
|
||||
1F468 1F3FD 200D 1F373 ; Emoji_ZWJ_Sequence ; man cook: medium skin tone # 8.0 [1] (👨🏽🍳)
|
||||
1F468 1F3FD 200D 1F393 ; Emoji_ZWJ_Sequence ; man student: medium skin tone # 8.0 [1] (👨🏽🎓)
|
||||
1F468 1F3FD 200D 1F3A4 ; Emoji_ZWJ_Sequence ; man singer: medium skin tone # 8.0 [1] (👨🏽🎤)
|
||||
1F468 1F3FD 200D 1F3A8 ; Emoji_ZWJ_Sequence ; man artist: medium skin tone # 8.0 [1] (👨🏽🎨)
|
||||
1F468 1F3FD 200D 1F3EB ; Emoji_ZWJ_Sequence ; man teacher: medium skin tone # 8.0 [1] (👨🏽🏫)
|
||||
1F468 1F3FD 200D 1F3ED ; Emoji_ZWJ_Sequence ; man factory worker: medium skin tone # 8.0 [1] (👨🏽🏭)
|
||||
1F468 1F3FD 200D 1F4BB ; Emoji_ZWJ_Sequence ; man technologist: medium skin tone # 8.0 [1] (👨🏽💻)
|
||||
1F468 1F3FD 200D 1F4BC ; Emoji_ZWJ_Sequence ; man office worker: medium skin tone # 8.0 [1] (👨🏽💼)
|
||||
1F468 1F3FD 200D 1F527 ; Emoji_ZWJ_Sequence ; man mechanic: medium skin tone # 8.0 [1] (👨🏽🔧)
|
||||
1F468 1F3FD 200D 1F52C ; Emoji_ZWJ_Sequence ; man scientist: medium skin tone # 8.0 [1] (👨🏽🔬)
|
||||
1F468 1F3FD 200D 1F680 ; Emoji_ZWJ_Sequence ; man astronaut: medium skin tone # 8.0 [1] (👨🏽🚀)
|
||||
1F468 1F3FD 200D 1F692 ; Emoji_ZWJ_Sequence ; man firefighter: medium skin tone # 8.0 [1] (👨🏽🚒)
|
||||
1F468 1F3FD 200D 1F9B0 ; Emoji_ZWJ_Sequence ; man, red haired: medium skin tone # 11.0 [1] (👨🏽🦰)
|
||||
1F468 1F3FD 200D 1F9B1 ; Emoji_ZWJ_Sequence ; man, curly haired: medium skin tone # 11.0 [1] (👨🏽🦱)
|
||||
1F468 1F3FD 200D 1F9B2 ; Emoji_ZWJ_Sequence ; man, bald: medium skin tone # 11.0 [1] (👨🏽🦲)
|
||||
1F468 1F3FD 200D 1F9B3 ; Emoji_ZWJ_Sequence ; man, white haired: medium skin tone # 11.0 [1] (👨🏽🦳)
|
||||
1F468 1F3FE 200D 2695 FE0F ; Emoji_ZWJ_Sequence ; man health worker: medium-dark skin tone # 8.0 [1] (👨🏾⚕️)
|
||||
1F468 1F3FE 200D 2696 FE0F ; Emoji_ZWJ_Sequence ; man judge: medium-dark skin tone # 8.0 [1] (👨🏾⚖️)
|
||||
1F468 1F3FE 200D 2708 FE0F ; Emoji_ZWJ_Sequence ; man pilot: medium-dark skin tone # 8.0 [1] (👨🏾✈️)
|
||||
1F468 1F3FE 200D 1F33E ; Emoji_ZWJ_Sequence ; man farmer: medium-dark skin tone # 8.0 [1] (👨🏾🌾)
|
||||
1F468 1F3FE 200D 1F373 ; Emoji_ZWJ_Sequence ; man cook: medium-dark skin tone # 8.0 [1] (👨🏾🍳)
|
||||
1F468 1F3FE 200D 1F393 ; Emoji_ZWJ_Sequence ; man student: medium-dark skin tone # 8.0 [1] (👨🏾🎓)
|
||||
1F468 1F3FE 200D 1F3A4 ; Emoji_ZWJ_Sequence ; man singer: medium-dark skin tone # 8.0 [1] (👨🏾🎤)
|
||||
1F468 1F3FE 200D 1F3A8 ; Emoji_ZWJ_Sequence ; man artist: medium-dark skin tone # 8.0 [1] (👨🏾🎨)
|
||||
1F468 1F3FE 200D 1F3EB ; Emoji_ZWJ_Sequence ; man teacher: medium-dark skin tone # 8.0 [1] (👨🏾🏫)
|
||||
1F468 1F3FE 200D 1F3ED ; Emoji_ZWJ_Sequence ; man factory worker: medium-dark skin tone # 8.0 [1] (👨🏾🏭)
|
||||
1F468 1F3FE 200D 1F4BB ; Emoji_ZWJ_Sequence ; man technologist: medium-dark skin tone # 8.0 [1] (👨🏾💻)
|
||||
1F468 1F3FE 200D 1F4BC ; Emoji_ZWJ_Sequence ; man office worker: medium-dark skin tone # 8.0 [1] (👨🏾💼)
|
||||
1F468 1F3FE 200D 1F527 ; Emoji_ZWJ_Sequence ; man mechanic: medium-dark skin tone # 8.0 [1] (👨🏾🔧)
|
||||
1F468 1F3FE 200D 1F52C ; Emoji_ZWJ_Sequence ; man scientist: medium-dark skin tone # 8.0 [1] (👨🏾🔬)
|
||||
1F468 1F3FE 200D 1F680 ; Emoji_ZWJ_Sequence ; man astronaut: medium-dark skin tone # 8.0 [1] (👨🏾🚀)
|
||||
1F468 1F3FE 200D 1F692 ; Emoji_ZWJ_Sequence ; man firefighter: medium-dark skin tone # 8.0 [1] (👨🏾🚒)
|
||||
1F468 1F3FE 200D 1F9B0 ; Emoji_ZWJ_Sequence ; man, red haired: medium-dark skin tone # 11.0 [1] (👨🏾🦰)
|
||||
1F468 1F3FE 200D 1F9B1 ; Emoji_ZWJ_Sequence ; man, curly haired: medium-dark skin tone # 11.0 [1] (👨🏾🦱)
|
||||
1F468 1F3FE 200D 1F9B2 ; Emoji_ZWJ_Sequence ; man, bald: medium-dark skin tone # 11.0 [1] (👨🏾🦲)
|
||||
1F468 1F3FE 200D 1F9B3 ; Emoji_ZWJ_Sequence ; man, white haired: medium-dark skin tone # 11.0 [1] (👨🏾🦳)
|
||||
1F468 1F3FF 200D 2695 FE0F ; Emoji_ZWJ_Sequence ; man health worker: dark skin tone # 8.0 [1] (👨🏿⚕️)
|
||||
1F468 1F3FF 200D 2696 FE0F ; Emoji_ZWJ_Sequence ; man judge: dark skin tone # 8.0 [1] (👨🏿⚖️)
|
||||
1F468 1F3FF 200D 2708 FE0F ; Emoji_ZWJ_Sequence ; man pilot: dark skin tone # 8.0 [1] (👨🏿✈️)
|
||||
1F468 1F3FF 200D 1F33E ; Emoji_ZWJ_Sequence ; man farmer: dark skin tone # 8.0 [1] (👨🏿🌾)
|
||||
1F468 1F3FF 200D 1F373 ; Emoji_ZWJ_Sequence ; man cook: dark skin tone # 8.0 [1] (👨🏿🍳)
|
||||
1F468 1F3FF 200D 1F393 ; Emoji_ZWJ_Sequence ; man student: dark skin tone # 8.0 [1] (👨🏿🎓)
|
||||
1F468 1F3FF 200D 1F3A4 ; Emoji_ZWJ_Sequence ; man singer: dark skin tone # 8.0 [1] (👨🏿🎤)
|
||||
1F468 1F3FF 200D 1F3A8 ; Emoji_ZWJ_Sequence ; man artist: dark skin tone # 8.0 [1] (👨🏿🎨)
|
||||
1F468 1F3FF 200D 1F3EB ; Emoji_ZWJ_Sequence ; man teacher: dark skin tone # 8.0 [1] (👨🏿🏫)
|
||||
1F468 1F3FF 200D 1F3ED ; Emoji_ZWJ_Sequence ; man factory worker: dark skin tone # 8.0 [1] (👨🏿🏭)
|
||||
1F468 1F3FF 200D 1F4BB ; Emoji_ZWJ_Sequence ; man technologist: dark skin tone # 8.0 [1] (👨🏿💻)
|
||||
1F468 1F3FF 200D 1F4BC ; Emoji_ZWJ_Sequence ; man office worker: dark skin tone # 8.0 [1] (👨🏿💼)
|
||||
1F468 1F3FF 200D 1F527 ; Emoji_ZWJ_Sequence ; man mechanic: dark skin tone # 8.0 [1] (👨🏿🔧)
|
||||
1F468 1F3FF 200D 1F52C ; Emoji_ZWJ_Sequence ; man scientist: dark skin tone # 8.0 [1] (👨🏿🔬)
|
||||
1F468 1F3FF 200D 1F680 ; Emoji_ZWJ_Sequence ; man astronaut: dark skin tone # 8.0 [1] (👨🏿🚀)
|
||||
1F468 1F3FF 200D 1F692 ; Emoji_ZWJ_Sequence ; man firefighter: dark skin tone # 8.0 [1] (👨🏿🚒)
|
||||
1F468 1F3FF 200D 1F9B0 ; Emoji_ZWJ_Sequence ; man, red haired: dark skin tone # 11.0 [1] (👨🏿🦰)
|
||||
1F468 1F3FF 200D 1F9B1 ; Emoji_ZWJ_Sequence ; man, curly haired: dark skin tone # 11.0 [1] (👨🏿🦱)
|
||||
1F468 1F3FF 200D 1F9B2 ; Emoji_ZWJ_Sequence ; man, bald: dark skin tone # 11.0 [1] (👨🏿🦲)
|
||||
1F468 1F3FF 200D 1F9B3 ; Emoji_ZWJ_Sequence ; man, white haired: dark skin tone # 11.0 [1] (👨🏿🦳)
|
||||
1F469 200D 2695 FE0F ; Emoji_ZWJ_Sequence ; woman health worker # 6.0 [1] (👩⚕️)
|
||||
1F469 200D 2696 FE0F ; Emoji_ZWJ_Sequence ; woman judge # 6.0 [1] (👩⚖️)
|
||||
1F469 200D 2708 FE0F ; Emoji_ZWJ_Sequence ; woman pilot # 6.0 [1] (👩✈️)
|
||||
1F469 200D 1F33E ; Emoji_ZWJ_Sequence ; woman farmer # 6.0 [1] (👩🌾)
|
||||
1F469 200D 1F373 ; Emoji_ZWJ_Sequence ; woman cook # 6.0 [1] (👩🍳)
|
||||
1F469 200D 1F393 ; Emoji_ZWJ_Sequence ; woman student # 6.0 [1] (👩🎓)
|
||||
1F469 200D 1F3A4 ; Emoji_ZWJ_Sequence ; woman singer # 6.0 [1] (👩🎤)
|
||||
1F469 200D 1F3A8 ; Emoji_ZWJ_Sequence ; woman artist # 6.0 [1] (👩🎨)
|
||||
1F469 200D 1F3EB ; Emoji_ZWJ_Sequence ; woman teacher # 6.0 [1] (👩🏫)
|
||||
1F469 200D 1F3ED ; Emoji_ZWJ_Sequence ; woman factory worker # 6.0 [1] (👩🏭)
|
||||
1F469 200D 1F4BB ; Emoji_ZWJ_Sequence ; woman technologist # 6.0 [1] (👩💻)
|
||||
1F469 200D 1F4BC ; Emoji_ZWJ_Sequence ; woman office worker # 6.0 [1] (👩💼)
|
||||
1F469 200D 1F527 ; Emoji_ZWJ_Sequence ; woman mechanic # 6.0 [1] (👩🔧)
|
||||
1F469 200D 1F52C ; Emoji_ZWJ_Sequence ; woman scientist # 6.0 [1] (👩🔬)
|
||||
1F469 200D 1F680 ; Emoji_ZWJ_Sequence ; woman astronaut # 6.0 [1] (👩🚀)
|
||||
1F469 200D 1F692 ; Emoji_ZWJ_Sequence ; woman firefighter # 6.0 [1] (👩🚒)
|
||||
1F469 200D 1F9B0 ; Emoji_ZWJ_Sequence ; woman, red haired # 11.0 [1] (👩🦰)
|
||||
1F469 200D 1F9B1 ; Emoji_ZWJ_Sequence ; woman, curly haired # 11.0 [1] (👩🦱)
|
||||
1F469 200D 1F9B2 ; Emoji_ZWJ_Sequence ; woman, bald # 11.0 [1] (👩🦲)
|
||||
1F469 200D 1F9B3 ; Emoji_ZWJ_Sequence ; woman, white haired # 11.0 [1] (👩🦳)
|
||||
1F469 1F3FB 200D 2695 FE0F ; Emoji_ZWJ_Sequence ; woman health worker: light skin tone # 8.0 [1] (👩🏻⚕️)
|
||||
1F469 1F3FB 200D 2696 FE0F ; Emoji_ZWJ_Sequence ; woman judge: light skin tone # 8.0 [1] (👩🏻⚖️)
|
||||
1F469 1F3FB 200D 2708 FE0F ; Emoji_ZWJ_Sequence ; woman pilot: light skin tone # 8.0 [1] (👩🏻✈️)
|
||||
1F469 1F3FB 200D 1F33E ; Emoji_ZWJ_Sequence ; woman farmer: light skin tone # 8.0 [1] (👩🏻🌾)
|
||||
1F469 1F3FB 200D 1F373 ; Emoji_ZWJ_Sequence ; woman cook: light skin tone # 8.0 [1] (👩🏻🍳)
|
||||
1F469 1F3FB 200D 1F393 ; Emoji_ZWJ_Sequence ; woman student: light skin tone # 8.0 [1] (👩🏻🎓)
|
||||
1F469 1F3FB 200D 1F3A4 ; Emoji_ZWJ_Sequence ; woman singer: light skin tone # 8.0 [1] (👩🏻🎤)
|
||||
1F469 1F3FB 200D 1F3A8 ; Emoji_ZWJ_Sequence ; woman artist: light skin tone # 8.0 [1] (👩🏻🎨)
|
||||
1F469 1F3FB 200D 1F3EB ; Emoji_ZWJ_Sequence ; woman teacher: light skin tone # 8.0 [1] (👩🏻🏫)
|
||||
1F469 1F3FB 200D 1F3ED ; Emoji_ZWJ_Sequence ; woman factory worker: light skin tone # 8.0 [1] (👩🏻🏭)
|
||||
1F469 1F3FB 200D 1F4BB ; Emoji_ZWJ_Sequence ; woman technologist: light skin tone # 8.0 [1] (👩🏻💻)
|
||||
1F469 1F3FB 200D 1F4BC ; Emoji_ZWJ_Sequence ; woman office worker: light skin tone # 8.0 [1] (👩🏻💼)
|
||||
1F469 1F3FB 200D 1F527 ; Emoji_ZWJ_Sequence ; woman mechanic: light skin tone # 8.0 [1] (👩🏻🔧)
|
||||
1F469 1F3FB 200D 1F52C ; Emoji_ZWJ_Sequence ; woman scientist: light skin tone # 8.0 [1] (👩🏻🔬)
|
||||
1F469 1F3FB 200D 1F680 ; Emoji_ZWJ_Sequence ; woman astronaut: light skin tone # 8.0 [1] (👩🏻🚀)
|
||||
1F469 1F3FB 200D 1F692 ; Emoji_ZWJ_Sequence ; woman firefighter: light skin tone # 8.0 [1] (👩🏻🚒)
|
||||
1F469 1F3FB 200D 1F9B0 ; Emoji_ZWJ_Sequence ; woman, red haired: light skin tone # 11.0 [1] (👩🏻🦰)
|
||||
1F469 1F3FB 200D 1F9B1 ; Emoji_ZWJ_Sequence ; woman, curly haired: light skin tone # 11.0 [1] (👩🏻🦱)
|
||||
1F469 1F3FB 200D 1F9B2 ; Emoji_ZWJ_Sequence ; woman, bald: light skin tone # 11.0 [1] (👩🏻🦲)
|
||||
1F469 1F3FB 200D 1F9B3 ; Emoji_ZWJ_Sequence ; woman, white haired: light skin tone # 11.0 [1] (👩🏻🦳)
|
||||
1F469 1F3FC 200D 2695 FE0F ; Emoji_ZWJ_Sequence ; woman health worker: medium-light skin tone # 8.0 [1] (👩🏼⚕️)
|
||||
1F469 1F3FC 200D 2696 FE0F ; Emoji_ZWJ_Sequence ; woman judge: medium-light skin tone # 8.0 [1] (👩🏼⚖️)
|
||||
1F469 1F3FC 200D 2708 FE0F ; Emoji_ZWJ_Sequence ; woman pilot: medium-light skin tone # 8.0 [1] (👩🏼✈️)
|
||||
1F469 1F3FC 200D 1F33E ; Emoji_ZWJ_Sequence ; woman farmer: medium-light skin tone # 8.0 [1] (👩🏼🌾)
|
||||
1F469 1F3FC 200D 1F373 ; Emoji_ZWJ_Sequence ; woman cook: medium-light skin tone # 8.0 [1] (👩🏼🍳)
|
||||
1F469 1F3FC 200D 1F393 ; Emoji_ZWJ_Sequence ; woman student: medium-light skin tone # 8.0 [1] (👩🏼🎓)
|
||||
1F469 1F3FC 200D 1F3A4 ; Emoji_ZWJ_Sequence ; woman singer: medium-light skin tone # 8.0 [1] (👩🏼🎤)
|
||||
1F469 1F3FC 200D 1F3A8 ; Emoji_ZWJ_Sequence ; woman artist: medium-light skin tone # 8.0 [1] (👩🏼🎨)
|
||||
1F469 1F3FC 200D 1F3EB ; Emoji_ZWJ_Sequence ; woman teacher: medium-light skin tone # 8.0 [1] (👩🏼🏫)
|
||||
1F469 1F3FC 200D 1F3ED ; Emoji_ZWJ_Sequence ; woman factory worker: medium-light skin tone # 8.0 [1] (👩🏼🏭)
|
||||
1F469 1F3FC 200D 1F4BB ; Emoji_ZWJ_Sequence ; woman technologist: medium-light skin tone # 8.0 [1] (👩🏼💻)
|
||||
1F469 1F3FC 200D 1F4BC ; Emoji_ZWJ_Sequence ; woman office worker: medium-light skin tone # 8.0 [1] (👩🏼💼)
|
||||
1F469 1F3FC 200D 1F527 ; Emoji_ZWJ_Sequence ; woman mechanic: medium-light skin tone # 8.0 [1] (👩🏼🔧)
|
||||
1F469 1F3FC 200D 1F52C ; Emoji_ZWJ_Sequence ; woman scientist: medium-light skin tone # 8.0 [1] (👩🏼🔬)
|
||||
1F469 1F3FC 200D 1F680 ; Emoji_ZWJ_Sequence ; woman astronaut: medium-light skin tone # 8.0 [1] (👩🏼🚀)
|
||||
1F469 1F3FC 200D 1F692 ; Emoji_ZWJ_Sequence ; woman firefighter: medium-light skin tone # 8.0 [1] (👩🏼🚒)
|
||||
1F469 1F3FC 200D 1F9B0 ; Emoji_ZWJ_Sequence ; woman, red haired: medium-light skin tone # 11.0 [1] (👩🏼🦰)
|
||||
1F469 1F3FC 200D 1F9B1 ; Emoji_ZWJ_Sequence ; woman, curly haired: medium-light skin tone # 11.0 [1] (👩🏼🦱)
|
||||
1F469 1F3FC 200D 1F9B2 ; Emoji_ZWJ_Sequence ; woman, bald: medium-light skin tone # 11.0 [1] (👩🏼🦲)
|
||||
1F469 1F3FC 200D 1F9B3 ; Emoji_ZWJ_Sequence ; woman, white haired: medium-light skin tone # 11.0 [1] (👩🏼🦳)
|
||||
1F469 1F3FD 200D 2695 FE0F ; Emoji_ZWJ_Sequence ; woman health worker: medium skin tone # 8.0 [1] (👩🏽⚕️)
|
||||
1F469 1F3FD 200D 2696 FE0F ; Emoji_ZWJ_Sequence ; woman judge: medium skin tone # 8.0 [1] (👩🏽⚖️)
|
||||
1F469 1F3FD 200D 2708 FE0F ; Emoji_ZWJ_Sequence ; woman pilot: medium skin tone # 8.0 [1] (👩🏽✈️)
|
||||
1F469 1F3FD 200D 1F33E ; Emoji_ZWJ_Sequence ; woman farmer: medium skin tone # 8.0 [1] (👩🏽🌾)
|
||||
1F469 1F3FD 200D 1F373 ; Emoji_ZWJ_Sequence ; woman cook: medium skin tone # 8.0 [1] (👩🏽🍳)
|
||||
1F469 1F3FD 200D 1F393 ; Emoji_ZWJ_Sequence ; woman student: medium skin tone # 8.0 [1] (👩🏽🎓)
|
||||
1F469 1F3FD 200D 1F3A4 ; Emoji_ZWJ_Sequence ; woman singer: medium skin tone # 8.0 [1] (👩🏽🎤)
|
||||
1F469 1F3FD 200D 1F3A8 ; Emoji_ZWJ_Sequence ; woman artist: medium skin tone # 8.0 [1] (👩🏽🎨)
|
||||
1F469 1F3FD 200D 1F3EB ; Emoji_ZWJ_Sequence ; woman teacher: medium skin tone # 8.0 [1] (👩🏽🏫)
|
||||
1F469 1F3FD 200D 1F3ED ; Emoji_ZWJ_Sequence ; woman factory worker: medium skin tone # 8.0 [1] (👩🏽🏭)
|
||||
1F469 1F3FD 200D 1F4BB ; Emoji_ZWJ_Sequence ; woman technologist: medium skin tone # 8.0 [1] (👩🏽💻)
|
||||
1F469 1F3FD 200D 1F4BC ; Emoji_ZWJ_Sequence ; woman office worker: medium skin tone # 8.0 [1] (👩🏽💼)
|
||||
1F469 1F3FD 200D 1F527 ; Emoji_ZWJ_Sequence ; woman mechanic: medium skin tone # 8.0 [1] (👩🏽🔧)
|
||||
1F469 1F3FD 200D 1F52C ; Emoji_ZWJ_Sequence ; woman scientist: medium skin tone # 8.0 [1] (👩🏽🔬)
|
||||
1F469 1F3FD 200D 1F680 ; Emoji_ZWJ_Sequence ; woman astronaut: medium skin tone # 8.0 [1] (👩🏽🚀)
|
||||
1F469 1F3FD 200D 1F692 ; Emoji_ZWJ_Sequence ; woman firefighter: medium skin tone # 8.0 [1] (👩🏽🚒)
|
||||
1F469 1F3FD 200D 1F9B0 ; Emoji_ZWJ_Sequence ; woman, red haired: medium skin tone # 11.0 [1] (👩🏽🦰)
|
||||
1F469 1F3FD 200D 1F9B1 ; Emoji_ZWJ_Sequence ; woman, curly haired: medium skin tone # 11.0 [1] (👩🏽🦱)
|
||||
1F469 1F3FD 200D 1F9B2 ; Emoji_ZWJ_Sequence ; woman, bald: medium skin tone # 11.0 [1] (👩🏽🦲)
|
||||
1F469 1F3FD 200D 1F9B3 ; Emoji_ZWJ_Sequence ; woman, white haired: medium skin tone # 11.0 [1] (👩🏽🦳)
|
||||
1F469 1F3FE 200D 2695 FE0F ; Emoji_ZWJ_Sequence ; woman health worker: medium-dark skin tone # 8.0 [1] (👩🏾⚕️)
|
||||
1F469 1F3FE 200D 2696 FE0F ; Emoji_ZWJ_Sequence ; woman judge: medium-dark skin tone # 8.0 [1] (👩🏾⚖️)
|
||||
1F469 1F3FE 200D 2708 FE0F ; Emoji_ZWJ_Sequence ; woman pilot: medium-dark skin tone # 8.0 [1] (👩🏾✈️)
|
||||
1F469 1F3FE 200D 1F33E ; Emoji_ZWJ_Sequence ; woman farmer: medium-dark skin tone # 8.0 [1] (👩🏾🌾)
|
||||
1F469 1F3FE 200D 1F373 ; Emoji_ZWJ_Sequence ; woman cook: medium-dark skin tone # 8.0 [1] (👩🏾🍳)
|
||||
1F469 1F3FE 200D 1F393 ; Emoji_ZWJ_Sequence ; woman student: medium-dark skin tone # 8.0 [1] (👩🏾🎓)
|
||||
1F469 1F3FE 200D 1F3A4 ; Emoji_ZWJ_Sequence ; woman singer: medium-dark skin tone # 8.0 [1] (👩🏾🎤)
|
||||
1F469 1F3FE 200D 1F3A8 ; Emoji_ZWJ_Sequence ; woman artist: medium-dark skin tone # 8.0 [1] (👩🏾🎨)
|
||||
1F469 1F3FE 200D 1F3EB ; Emoji_ZWJ_Sequence ; woman teacher: medium-dark skin tone # 8.0 [1] (👩🏾🏫)
|
||||
1F469 1F3FE 200D 1F3ED ; Emoji_ZWJ_Sequence ; woman factory worker: medium-dark skin tone # 8.0 [1] (👩🏾🏭)
|
||||
1F469 1F3FE 200D 1F4BB ; Emoji_ZWJ_Sequence ; woman technologist: medium-dark skin tone # 8.0 [1] (👩🏾💻)
|
||||
1F469 1F3FE 200D 1F4BC ; Emoji_ZWJ_Sequence ; woman office worker: medium-dark skin tone # 8.0 [1] (👩🏾💼)
|
||||
1F469 1F3FE 200D 1F527 ; Emoji_ZWJ_Sequence ; woman mechanic: medium-dark skin tone # 8.0 [1] (👩🏾🔧)
|
||||
1F469 1F3FE 200D 1F52C ; Emoji_ZWJ_Sequence ; woman scientist: medium-dark skin tone # 8.0 [1] (👩🏾🔬)
|
||||
1F469 1F3FE 200D 1F680 ; Emoji_ZWJ_Sequence ; woman astronaut: medium-dark skin tone # 8.0 [1] (👩🏾🚀)
|
||||
1F469 1F3FE 200D 1F692 ; Emoji_ZWJ_Sequence ; woman firefighter: medium-dark skin tone # 8.0 [1] (👩🏾🚒)
|
||||
1F469 1F3FE 200D 1F9B0 ; Emoji_ZWJ_Sequence ; woman, red haired: medium-dark skin tone # 11.0 [1] (👩🏾🦰)
|
||||
1F469 1F3FE 200D 1F9B1 ; Emoji_ZWJ_Sequence ; woman, curly haired: medium-dark skin tone # 11.0 [1] (👩🏾🦱)
|
||||
1F469 1F3FE 200D 1F9B2 ; Emoji_ZWJ_Sequence ; woman, bald: medium-dark skin tone # 11.0 [1] (👩🏾🦲)
|
||||
1F469 1F3FE 200D 1F9B3 ; Emoji_ZWJ_Sequence ; woman, white haired: medium-dark skin tone # 11.0 [1] (👩🏾🦳)
|
||||
1F469 1F3FF 200D 2695 FE0F ; Emoji_ZWJ_Sequence ; woman health worker: dark skin tone # 8.0 [1] (👩🏿⚕️)
|
||||
1F469 1F3FF 200D 2696 FE0F ; Emoji_ZWJ_Sequence ; woman judge: dark skin tone # 8.0 [1] (👩🏿⚖️)
|
||||
1F469 1F3FF 200D 2708 FE0F ; Emoji_ZWJ_Sequence ; woman pilot: dark skin tone # 8.0 [1] (👩🏿✈️)
|
||||
1F469 1F3FF 200D 1F33E ; Emoji_ZWJ_Sequence ; woman farmer: dark skin tone # 8.0 [1] (👩🏿🌾)
|
||||
1F469 1F3FF 200D 1F373 ; Emoji_ZWJ_Sequence ; woman cook: dark skin tone # 8.0 [1] (👩🏿🍳)
|
||||
1F469 1F3FF 200D 1F393 ; Emoji_ZWJ_Sequence ; woman student: dark skin tone # 8.0 [1] (👩🏿🎓)
|
||||
1F469 1F3FF 200D 1F3A4 ; Emoji_ZWJ_Sequence ; woman singer: dark skin tone # 8.0 [1] (👩🏿🎤)
|
||||
1F469 1F3FF 200D 1F3A8 ; Emoji_ZWJ_Sequence ; woman artist: dark skin tone # 8.0 [1] (👩🏿🎨)
|
||||
1F469 1F3FF 200D 1F3EB ; Emoji_ZWJ_Sequence ; woman teacher: dark skin tone # 8.0 [1] (👩🏿🏫)
|
||||
1F469 1F3FF 200D 1F3ED ; Emoji_ZWJ_Sequence ; woman factory worker: dark skin tone # 8.0 [1] (👩🏿🏭)
|
||||
1F469 1F3FF 200D 1F4BB ; Emoji_ZWJ_Sequence ; woman technologist: dark skin tone # 8.0 [1] (👩🏿💻)
|
||||
1F469 1F3FF 200D 1F4BC ; Emoji_ZWJ_Sequence ; woman office worker: dark skin tone # 8.0 [1] (👩🏿💼)
|
||||
1F469 1F3FF 200D 1F527 ; Emoji_ZWJ_Sequence ; woman mechanic: dark skin tone # 8.0 [1] (👩🏿🔧)
|
||||
1F469 1F3FF 200D 1F52C ; Emoji_ZWJ_Sequence ; woman scientist: dark skin tone # 8.0 [1] (👩🏿🔬)
|
||||
1F469 1F3FF 200D 1F680 ; Emoji_ZWJ_Sequence ; woman astronaut: dark skin tone # 8.0 [1] (👩🏿🚀)
|
||||
1F469 1F3FF 200D 1F692 ; Emoji_ZWJ_Sequence ; woman firefighter: dark skin tone # 8.0 [1] (👩🏿🚒)
|
||||
1F469 1F3FF 200D 1F9B0 ; Emoji_ZWJ_Sequence ; woman, red haired: dark skin tone # 11.0 [1] (👩🏿🦰)
|
||||
1F469 1F3FF 200D 1F9B1 ; Emoji_ZWJ_Sequence ; woman, curly haired: dark skin tone # 11.0 [1] (👩🏿🦱)
|
||||
1F469 1F3FF 200D 1F9B2 ; Emoji_ZWJ_Sequence ; woman, bald: dark skin tone # 11.0 [1] (👩🏿🦲)
|
||||
1F469 1F3FF 200D 1F9B3 ; Emoji_ZWJ_Sequence ; woman, white haired: dark skin tone # 11.0 [1] (👩🏿🦳)
|
||||
|
||||
# Total elements: 240
|
||||
|
||||
# ================================================
|
||||
|
||||
# Emoji ZWJ Sequence: Gendered Role
|
||||
|
||||
1F46E 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman police officer # 6.0 [1] (👮♀️)
|
||||
1F46E 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man police officer # 6.0 [1] (👮♂️)
|
||||
1F46E 1F3FB 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman police officer: light skin tone # 8.0 [1] (👮🏻♀️)
|
||||
1F46E 1F3FB 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man police officer: light skin tone # 8.0 [1] (👮🏻♂️)
|
||||
1F46E 1F3FC 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman police officer: medium-light skin tone # 8.0 [1] (👮🏼♀️)
|
||||
1F46E 1F3FC 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man police officer: medium-light skin tone # 8.0 [1] (👮🏼♂️)
|
||||
1F46E 1F3FD 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman police officer: medium skin tone # 8.0 [1] (👮🏽♀️)
|
||||
1F46E 1F3FD 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man police officer: medium skin tone # 8.0 [1] (👮🏽♂️)
|
||||
1F46E 1F3FE 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman police officer: medium-dark skin tone # 8.0 [1] (👮🏾♀️)
|
||||
1F46E 1F3FE 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man police officer: medium-dark skin tone # 8.0 [1] (👮🏾♂️)
|
||||
1F46E 1F3FF 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman police officer: dark skin tone # 8.0 [1] (👮🏿♀️)
|
||||
1F46E 1F3FF 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man police officer: dark skin tone # 8.0 [1] (👮🏿♂️)
|
||||
1F471 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; blond-haired woman # 6.0 [1] (👱♀️)
|
||||
1F471 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; blond-haired man # 6.0 [1] (👱♂️)
|
||||
1F471 1F3FB 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; blond-haired woman: light skin tone # 8.0 [1] (👱🏻♀️)
|
||||
1F471 1F3FB 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; blond-haired man: light skin tone # 8.0 [1] (👱🏻♂️)
|
||||
1F471 1F3FC 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; blond-haired woman: medium-light skin tone # 8.0 [1] (👱🏼♀️)
|
||||
1F471 1F3FC 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; blond-haired man: medium-light skin tone # 8.0 [1] (👱🏼♂️)
|
||||
1F471 1F3FD 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; blond-haired woman: medium skin tone # 8.0 [1] (👱🏽♀️)
|
||||
1F471 1F3FD 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; blond-haired man: medium skin tone # 8.0 [1] (👱🏽♂️)
|
||||
1F471 1F3FE 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; blond-haired woman: medium-dark skin tone # 8.0 [1] (👱🏾♀️)
|
||||
1F471 1F3FE 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; blond-haired man: medium-dark skin tone # 8.0 [1] (👱🏾♂️)
|
||||
1F471 1F3FF 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; blond-haired woman: dark skin tone # 8.0 [1] (👱🏿♀️)
|
||||
1F471 1F3FF 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; blond-haired man: dark skin tone # 8.0 [1] (👱🏿♂️)
|
||||
1F473 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman wearing turban # 6.0 [1] (👳♀️)
|
||||
1F473 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man wearing turban # 6.0 [1] (👳♂️)
|
||||
1F473 1F3FB 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman wearing turban: light skin tone # 8.0 [1] (👳🏻♀️)
|
||||
1F473 1F3FB 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man wearing turban: light skin tone # 8.0 [1] (👳🏻♂️)
|
||||
1F473 1F3FC 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman wearing turban: medium-light skin tone # 8.0 [1] (👳🏼♀️)
|
||||
1F473 1F3FC 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man wearing turban: medium-light skin tone # 8.0 [1] (👳🏼♂️)
|
||||
1F473 1F3FD 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman wearing turban: medium skin tone # 8.0 [1] (👳🏽♀️)
|
||||
1F473 1F3FD 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man wearing turban: medium skin tone # 8.0 [1] (👳🏽♂️)
|
||||
1F473 1F3FE 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman wearing turban: medium-dark skin tone # 8.0 [1] (👳🏾♀️)
|
||||
1F473 1F3FE 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man wearing turban: medium-dark skin tone # 8.0 [1] (👳🏾♂️)
|
||||
1F473 1F3FF 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman wearing turban: dark skin tone # 8.0 [1] (👳🏿♀️)
|
||||
1F473 1F3FF 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man wearing turban: dark skin tone # 8.0 [1] (👳🏿♂️)
|
||||
1F477 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman construction worker # 6.0 [1] (👷♀️)
|
||||
1F477 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man construction worker # 6.0 [1] (👷♂️)
|
||||
1F477 1F3FB 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman construction worker: light skin tone # 8.0 [1] (👷🏻♀️)
|
||||
1F477 1F3FB 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man construction worker: light skin tone # 8.0 [1] (👷🏻♂️)
|
||||
1F477 1F3FC 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman construction worker: medium-light skin tone # 8.0 [1] (👷🏼♀️)
|
||||
1F477 1F3FC 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man construction worker: medium-light skin tone # 8.0 [1] (👷🏼♂️)
|
||||
1F477 1F3FD 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman construction worker: medium skin tone # 8.0 [1] (👷🏽♀️)
|
||||
1F477 1F3FD 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man construction worker: medium skin tone # 8.0 [1] (👷🏽♂️)
|
||||
1F477 1F3FE 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman construction worker: medium-dark skin tone # 8.0 [1] (👷🏾♀️)
|
||||
1F477 1F3FE 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man construction worker: medium-dark skin tone # 8.0 [1] (👷🏾♂️)
|
||||
1F477 1F3FF 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman construction worker: dark skin tone # 8.0 [1] (👷🏿♀️)
|
||||
1F477 1F3FF 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man construction worker: dark skin tone # 8.0 [1] (👷🏿♂️)
|
||||
1F482 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman guard # 6.0 [1] (💂♀️)
|
||||
1F482 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man guard # 6.0 [1] (💂♂️)
|
||||
1F482 1F3FB 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman guard: light skin tone # 8.0 [1] (💂🏻♀️)
|
||||
1F482 1F3FB 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man guard: light skin tone # 8.0 [1] (💂🏻♂️)
|
||||
1F482 1F3FC 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman guard: medium-light skin tone # 8.0 [1] (💂🏼♀️)
|
||||
1F482 1F3FC 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man guard: medium-light skin tone # 8.0 [1] (💂🏼♂️)
|
||||
1F482 1F3FD 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman guard: medium skin tone # 8.0 [1] (💂🏽♀️)
|
||||
1F482 1F3FD 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man guard: medium skin tone # 8.0 [1] (💂🏽♂️)
|
||||
1F482 1F3FE 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman guard: medium-dark skin tone # 8.0 [1] (💂🏾♀️)
|
||||
1F482 1F3FE 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man guard: medium-dark skin tone # 8.0 [1] (💂🏾♂️)
|
||||
1F482 1F3FF 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman guard: dark skin tone # 8.0 [1] (💂🏿♀️)
|
||||
1F482 1F3FF 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man guard: dark skin tone # 8.0 [1] (💂🏿♂️)
|
||||
1F575 1F3FB 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman detective: light skin tone # 8.0 [1] (🕵🏻♀️)
|
||||
1F575 1F3FB 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man detective: light skin tone # 8.0 [1] (🕵🏻♂️)
|
||||
1F575 1F3FC 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman detective: medium-light skin tone # 8.0 [1] (🕵🏼♀️)
|
||||
1F575 1F3FC 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man detective: medium-light skin tone # 8.0 [1] (🕵🏼♂️)
|
||||
1F575 1F3FD 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman detective: medium skin tone # 8.0 [1] (🕵🏽♀️)
|
||||
1F575 1F3FD 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man detective: medium skin tone # 8.0 [1] (🕵🏽♂️)
|
||||
1F575 1F3FE 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman detective: medium-dark skin tone # 8.0 [1] (🕵🏾♀️)
|
||||
1F575 1F3FE 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man detective: medium-dark skin tone # 8.0 [1] (🕵🏾♂️)
|
||||
1F575 1F3FF 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman detective: dark skin tone # 8.0 [1] (🕵🏿♀️)
|
||||
1F575 1F3FF 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man detective: dark skin tone # 8.0 [1] (🕵🏿♂️)
|
||||
1F575 FE0F 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman detective # 7.0 [1] (🕵️♀️)
|
||||
1F575 FE0F 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man detective # 7.0 [1] (🕵️♂️)
|
||||
1F9D9 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman mage # 10.0 [1] (🧙♀️)
|
||||
1F9D9 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man mage # 10.0 [1] (🧙♂️)
|
||||
1F9D9 1F3FB 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman mage: light skin tone # 10.0 [1] (🧙🏻♀️)
|
||||
1F9D9 1F3FB 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man mage: light skin tone # 10.0 [1] (🧙🏻♂️)
|
||||
1F9D9 1F3FC 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman mage: medium-light skin tone # 10.0 [1] (🧙🏼♀️)
|
||||
1F9D9 1F3FC 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man mage: medium-light skin tone # 10.0 [1] (🧙🏼♂️)
|
||||
1F9D9 1F3FD 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman mage: medium skin tone # 10.0 [1] (🧙🏽♀️)
|
||||
1F9D9 1F3FD 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man mage: medium skin tone # 10.0 [1] (🧙🏽♂️)
|
||||
1F9D9 1F3FE 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman mage: medium-dark skin tone # 10.0 [1] (🧙🏾♀️)
|
||||
1F9D9 1F3FE 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man mage: medium-dark skin tone # 10.0 [1] (🧙🏾♂️)
|
||||
1F9D9 1F3FF 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman mage: dark skin tone # 10.0 [1] (🧙🏿♀️)
|
||||
1F9D9 1F3FF 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man mage: dark skin tone # 10.0 [1] (🧙🏿♂️)
|
||||
1F9DA 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman fairy # 10.0 [1] (🧚♀️)
|
||||
1F9DA 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man fairy # 10.0 [1] (🧚♂️)
|
||||
1F9DA 1F3FB 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman fairy: light skin tone # 10.0 [1] (🧚🏻♀️)
|
||||
1F9DA 1F3FB 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man fairy: light skin tone # 10.0 [1] (🧚🏻♂️)
|
||||
1F9DA 1F3FC 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman fairy: medium-light skin tone # 10.0 [1] (🧚🏼♀️)
|
||||
1F9DA 1F3FC 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man fairy: medium-light skin tone # 10.0 [1] (🧚🏼♂️)
|
||||
1F9DA 1F3FD 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman fairy: medium skin tone # 10.0 [1] (🧚🏽♀️)
|
||||
1F9DA 1F3FD 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man fairy: medium skin tone # 10.0 [1] (🧚🏽♂️)
|
||||
1F9DA 1F3FE 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman fairy: medium-dark skin tone # 10.0 [1] (🧚🏾♀️)
|
||||
1F9DA 1F3FE 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man fairy: medium-dark skin tone # 10.0 [1] (🧚🏾♂️)
|
||||
1F9DA 1F3FF 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman fairy: dark skin tone # 10.0 [1] (🧚🏿♀️)
|
||||
1F9DA 1F3FF 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man fairy: dark skin tone # 10.0 [1] (🧚🏿♂️)
|
||||
1F9DB 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman vampire # 10.0 [1] (🧛♀️)
|
||||
1F9DB 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man vampire # 10.0 [1] (🧛♂️)
|
||||
1F9DB 1F3FB 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman vampire: light skin tone # 10.0 [1] (🧛🏻♀️)
|
||||
1F9DB 1F3FB 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man vampire: light skin tone # 10.0 [1] (🧛🏻♂️)
|
||||
1F9DB 1F3FC 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman vampire: medium-light skin tone # 10.0 [1] (🧛🏼♀️)
|
||||
1F9DB 1F3FC 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man vampire: medium-light skin tone # 10.0 [1] (🧛🏼♂️)
|
||||
1F9DB 1F3FD 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman vampire: medium skin tone # 10.0 [1] (🧛🏽♀️)
|
||||
1F9DB 1F3FD 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man vampire: medium skin tone # 10.0 [1] (🧛🏽♂️)
|
||||
1F9DB 1F3FE 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman vampire: medium-dark skin tone # 10.0 [1] (🧛🏾♀️)
|
||||
1F9DB 1F3FE 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man vampire: medium-dark skin tone # 10.0 [1] (🧛🏾♂️)
|
||||
1F9DB 1F3FF 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman vampire: dark skin tone # 10.0 [1] (🧛🏿♀️)
|
||||
1F9DB 1F3FF 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man vampire: dark skin tone # 10.0 [1] (🧛🏿♂️)
|
||||
1F9DC 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; mermaid # 10.0 [1] (🧜♀️)
|
||||
1F9DC 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; merman # 10.0 [1] (🧜♂️)
|
||||
1F9DC 1F3FB 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; mermaid: light skin tone # 10.0 [1] (🧜🏻♀️)
|
||||
1F9DC 1F3FB 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; merman: light skin tone # 10.0 [1] (🧜🏻♂️)
|
||||
1F9DC 1F3FC 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; mermaid: medium-light skin tone # 10.0 [1] (🧜🏼♀️)
|
||||
1F9DC 1F3FC 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; merman: medium-light skin tone # 10.0 [1] (🧜🏼♂️)
|
||||
1F9DC 1F3FD 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; mermaid: medium skin tone # 10.0 [1] (🧜🏽♀️)
|
||||
1F9DC 1F3FD 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; merman: medium skin tone # 10.0 [1] (🧜🏽♂️)
|
||||
1F9DC 1F3FE 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; mermaid: medium-dark skin tone # 10.0 [1] (🧜🏾♀️)
|
||||
1F9DC 1F3FE 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; merman: medium-dark skin tone # 10.0 [1] (🧜🏾♂️)
|
||||
1F9DC 1F3FF 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; mermaid: dark skin tone # 10.0 [1] (🧜🏿♀️)
|
||||
1F9DC 1F3FF 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; merman: dark skin tone # 10.0 [1] (🧜🏿♂️)
|
||||
1F9DD 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman elf # 10.0 [1] (🧝♀️)
|
||||
1F9DD 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man elf # 10.0 [1] (🧝♂️)
|
||||
1F9DD 1F3FB 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman elf: light skin tone # 10.0 [1] (🧝🏻♀️)
|
||||
1F9DD 1F3FB 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man elf: light skin tone # 10.0 [1] (🧝🏻♂️)
|
||||
1F9DD 1F3FC 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman elf: medium-light skin tone # 10.0 [1] (🧝🏼♀️)
|
||||
1F9DD 1F3FC 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man elf: medium-light skin tone # 10.0 [1] (🧝🏼♂️)
|
||||
1F9DD 1F3FD 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman elf: medium skin tone # 10.0 [1] (🧝🏽♀️)
|
||||
1F9DD 1F3FD 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man elf: medium skin tone # 10.0 [1] (🧝🏽♂️)
|
||||
1F9DD 1F3FE 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman elf: medium-dark skin tone # 10.0 [1] (🧝🏾♀️)
|
||||
1F9DD 1F3FE 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man elf: medium-dark skin tone # 10.0 [1] (🧝🏾♂️)
|
||||
1F9DD 1F3FF 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman elf: dark skin tone # 10.0 [1] (🧝🏿♀️)
|
||||
1F9DD 1F3FF 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man elf: dark skin tone # 10.0 [1] (🧝🏿♂️)
|
||||
1F9DE 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman genie # 10.0 [1] (🧞♀️)
|
||||
1F9DE 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man genie # 10.0 [1] (🧞♂️)
|
||||
1F9DF 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman zombie # 10.0 [1] (🧟♀️)
|
||||
1F9DF 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man zombie # 10.0 [1] (🧟♂️)
|
||||
|
||||
# Total elements: 136
|
||||
|
||||
# ================================================
|
||||
|
||||
# Emoji ZWJ Sequence: Gendered Activity
|
||||
|
||||
26F9 1F3FB 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman bouncing ball: light skin tone # 8.0 [1] (⛹🏻♀️)
|
||||
26F9 1F3FB 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man bouncing ball: light skin tone # 8.0 [1] (⛹🏻♂️)
|
||||
26F9 1F3FC 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman bouncing ball: medium-light skin tone # 8.0 [1] (⛹🏼♀️)
|
||||
26F9 1F3FC 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man bouncing ball: medium-light skin tone # 8.0 [1] (⛹🏼♂️)
|
||||
26F9 1F3FD 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman bouncing ball: medium skin tone # 8.0 [1] (⛹🏽♀️)
|
||||
26F9 1F3FD 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man bouncing ball: medium skin tone # 8.0 [1] (⛹🏽♂️)
|
||||
26F9 1F3FE 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman bouncing ball: medium-dark skin tone # 8.0 [1] (⛹🏾♀️)
|
||||
26F9 1F3FE 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man bouncing ball: medium-dark skin tone # 8.0 [1] (⛹🏾♂️)
|
||||
26F9 1F3FF 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman bouncing ball: dark skin tone # 8.0 [1] (⛹🏿♀️)
|
||||
26F9 1F3FF 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man bouncing ball: dark skin tone # 8.0 [1] (⛹🏿♂️)
|
||||
26F9 FE0F 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman bouncing ball # 5.2 [1] (⛹️♀️)
|
||||
26F9 FE0F 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man bouncing ball # 5.2 [1] (⛹️♂️)
|
||||
1F3C3 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman running # 6.0 [1] (🏃♀️)
|
||||
1F3C3 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man running # 6.0 [1] (🏃♂️)
|
||||
1F3C3 1F3FB 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman running: light skin tone # 8.0 [1] (🏃🏻♀️)
|
||||
1F3C3 1F3FB 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man running: light skin tone # 8.0 [1] (🏃🏻♂️)
|
||||
1F3C3 1F3FC 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman running: medium-light skin tone # 8.0 [1] (🏃🏼♀️)
|
||||
1F3C3 1F3FC 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man running: medium-light skin tone # 8.0 [1] (🏃🏼♂️)
|
||||
1F3C3 1F3FD 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman running: medium skin tone # 8.0 [1] (🏃🏽♀️)
|
||||
1F3C3 1F3FD 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man running: medium skin tone # 8.0 [1] (🏃🏽♂️)
|
||||
1F3C3 1F3FE 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman running: medium-dark skin tone # 8.0 [1] (🏃🏾♀️)
|
||||
1F3C3 1F3FE 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man running: medium-dark skin tone # 8.0 [1] (🏃🏾♂️)
|
||||
1F3C3 1F3FF 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman running: dark skin tone # 8.0 [1] (🏃🏿♀️)
|
||||
1F3C3 1F3FF 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man running: dark skin tone # 8.0 [1] (🏃🏿♂️)
|
||||
1F3C4 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman surfing # 6.0 [1] (🏄♀️)
|
||||
1F3C4 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man surfing # 6.0 [1] (🏄♂️)
|
||||
1F3C4 1F3FB 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman surfing: light skin tone # 8.0 [1] (🏄🏻♀️)
|
||||
1F3C4 1F3FB 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man surfing: light skin tone # 8.0 [1] (🏄🏻♂️)
|
||||
1F3C4 1F3FC 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman surfing: medium-light skin tone # 8.0 [1] (🏄🏼♀️)
|
||||
1F3C4 1F3FC 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man surfing: medium-light skin tone # 8.0 [1] (🏄🏼♂️)
|
||||
1F3C4 1F3FD 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman surfing: medium skin tone # 8.0 [1] (🏄🏽♀️)
|
||||
1F3C4 1F3FD 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man surfing: medium skin tone # 8.0 [1] (🏄🏽♂️)
|
||||
1F3C4 1F3FE 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman surfing: medium-dark skin tone # 8.0 [1] (🏄🏾♀️)
|
||||
1F3C4 1F3FE 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man surfing: medium-dark skin tone # 8.0 [1] (🏄🏾♂️)
|
||||
1F3C4 1F3FF 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman surfing: dark skin tone # 8.0 [1] (🏄🏿♀️)
|
||||
1F3C4 1F3FF 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man surfing: dark skin tone # 8.0 [1] (🏄🏿♂️)
|
||||
1F3CA 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman swimming # 6.0 [1] (🏊♀️)
|
||||
1F3CA 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man swimming # 6.0 [1] (🏊♂️)
|
||||
1F3CA 1F3FB 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman swimming: light skin tone # 8.0 [1] (🏊🏻♀️)
|
||||
1F3CA 1F3FB 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man swimming: light skin tone # 8.0 [1] (🏊🏻♂️)
|
||||
1F3CA 1F3FC 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman swimming: medium-light skin tone # 8.0 [1] (🏊🏼♀️)
|
||||
1F3CA 1F3FC 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man swimming: medium-light skin tone # 8.0 [1] (🏊🏼♂️)
|
||||
1F3CA 1F3FD 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman swimming: medium skin tone # 8.0 [1] (🏊🏽♀️)
|
||||
1F3CA 1F3FD 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man swimming: medium skin tone # 8.0 [1] (🏊🏽♂️)
|
||||
1F3CA 1F3FE 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman swimming: medium-dark skin tone # 8.0 [1] (🏊🏾♀️)
|
||||
1F3CA 1F3FE 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man swimming: medium-dark skin tone # 8.0 [1] (🏊🏾♂️)
|
||||
1F3CA 1F3FF 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman swimming: dark skin tone # 8.0 [1] (🏊🏿♀️)
|
||||
1F3CA 1F3FF 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man swimming: dark skin tone # 8.0 [1] (🏊🏿♂️)
|
||||
1F3CB 1F3FB 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman lifting weights: light skin tone # 8.0 [1] (🏋🏻♀️)
|
||||
1F3CB 1F3FB 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man lifting weights: light skin tone # 8.0 [1] (🏋🏻♂️)
|
||||
1F3CB 1F3FC 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman lifting weights: medium-light skin tone # 8.0 [1] (🏋🏼♀️)
|
||||
1F3CB 1F3FC 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man lifting weights: medium-light skin tone # 8.0 [1] (🏋🏼♂️)
|
||||
1F3CB 1F3FD 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman lifting weights: medium skin tone # 8.0 [1] (🏋🏽♀️)
|
||||
1F3CB 1F3FD 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man lifting weights: medium skin tone # 8.0 [1] (🏋🏽♂️)
|
||||
1F3CB 1F3FE 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman lifting weights: medium-dark skin tone # 8.0 [1] (🏋🏾♀️)
|
||||
1F3CB 1F3FE 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man lifting weights: medium-dark skin tone # 8.0 [1] (🏋🏾♂️)
|
||||
1F3CB 1F3FF 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman lifting weights: dark skin tone # 8.0 [1] (🏋🏿♀️)
|
||||
1F3CB 1F3FF 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man lifting weights: dark skin tone # 8.0 [1] (🏋🏿♂️)
|
||||
1F3CB FE0F 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman lifting weights # 7.0 [1] (🏋️♀️)
|
||||
1F3CB FE0F 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man lifting weights # 7.0 [1] (🏋️♂️)
|
||||
1F3CC 1F3FB 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman golfing: light skin tone # 8.0 [1] (🏌🏻♀️)
|
||||
1F3CC 1F3FB 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man golfing: light skin tone # 8.0 [1] (🏌🏻♂️)
|
||||
1F3CC 1F3FC 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman golfing: medium-light skin tone # 8.0 [1] (🏌🏼♀️)
|
||||
1F3CC 1F3FC 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man golfing: medium-light skin tone # 8.0 [1] (🏌🏼♂️)
|
||||
1F3CC 1F3FD 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman golfing: medium skin tone # 8.0 [1] (🏌🏽♀️)
|
||||
1F3CC 1F3FD 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man golfing: medium skin tone # 8.0 [1] (🏌🏽♂️)
|
||||
1F3CC 1F3FE 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman golfing: medium-dark skin tone # 8.0 [1] (🏌🏾♀️)
|
||||
1F3CC 1F3FE 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man golfing: medium-dark skin tone # 8.0 [1] (🏌🏾♂️)
|
||||
1F3CC 1F3FF 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman golfing: dark skin tone # 8.0 [1] (🏌🏿♀️)
|
||||
1F3CC 1F3FF 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man golfing: dark skin tone # 8.0 [1] (🏌🏿♂️)
|
||||
1F3CC FE0F 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman golfing # 7.0 [1] (🏌️♀️)
|
||||
1F3CC FE0F 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man golfing # 7.0 [1] (🏌️♂️)
|
||||
1F46F 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; women with bunny ears # 6.0 [1] (👯♀️)
|
||||
1F46F 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; men with bunny ears # 6.0 [1] (👯♂️)
|
||||
1F486 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman getting massage # 6.0 [1] (💆♀️)
|
||||
1F486 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man getting massage # 6.0 [1] (💆♂️)
|
||||
1F486 1F3FB 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman getting massage: light skin tone # 8.0 [1] (💆🏻♀️)
|
||||
1F486 1F3FB 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man getting massage: light skin tone # 8.0 [1] (💆🏻♂️)
|
||||
1F486 1F3FC 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman getting massage: medium-light skin tone # 8.0 [1] (💆🏼♀️)
|
||||
1F486 1F3FC 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man getting massage: medium-light skin tone # 8.0 [1] (💆🏼♂️)
|
||||
1F486 1F3FD 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman getting massage: medium skin tone # 8.0 [1] (💆🏽♀️)
|
||||
1F486 1F3FD 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man getting massage: medium skin tone # 8.0 [1] (💆🏽♂️)
|
||||
1F486 1F3FE 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman getting massage: medium-dark skin tone # 8.0 [1] (💆🏾♀️)
|
||||
1F486 1F3FE 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man getting massage: medium-dark skin tone # 8.0 [1] (💆🏾♂️)
|
||||
1F486 1F3FF 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman getting massage: dark skin tone # 8.0 [1] (💆🏿♀️)
|
||||
1F486 1F3FF 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man getting massage: dark skin tone # 8.0 [1] (💆🏿♂️)
|
||||
1F487 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman getting haircut # 6.0 [1] (💇♀️)
|
||||
1F487 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man getting haircut # 6.0 [1] (💇♂️)
|
||||
1F487 1F3FB 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman getting haircut: light skin tone # 8.0 [1] (💇🏻♀️)
|
||||
1F487 1F3FB 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man getting haircut: light skin tone # 8.0 [1] (💇🏻♂️)
|
||||
1F487 1F3FC 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman getting haircut: medium-light skin tone # 8.0 [1] (💇🏼♀️)
|
||||
1F487 1F3FC 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man getting haircut: medium-light skin tone # 8.0 [1] (💇🏼♂️)
|
||||
1F487 1F3FD 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman getting haircut: medium skin tone # 8.0 [1] (💇🏽♀️)
|
||||
1F487 1F3FD 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man getting haircut: medium skin tone # 8.0 [1] (💇🏽♂️)
|
||||
1F487 1F3FE 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman getting haircut: medium-dark skin tone # 8.0 [1] (💇🏾♀️)
|
||||
1F487 1F3FE 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man getting haircut: medium-dark skin tone # 8.0 [1] (💇🏾♂️)
|
||||
1F487 1F3FF 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman getting haircut: dark skin tone # 8.0 [1] (💇🏿♀️)
|
||||
1F487 1F3FF 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man getting haircut: dark skin tone # 8.0 [1] (💇🏿♂️)
|
||||
1F6A3 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman rowing boat # 6.0 [1] (🚣♀️)
|
||||
1F6A3 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man rowing boat # 6.0 [1] (🚣♂️)
|
||||
1F6A3 1F3FB 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman rowing boat: light skin tone # 8.0 [1] (🚣🏻♀️)
|
||||
1F6A3 1F3FB 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man rowing boat: light skin tone # 8.0 [1] (🚣🏻♂️)
|
||||
1F6A3 1F3FC 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman rowing boat: medium-light skin tone # 8.0 [1] (🚣🏼♀️)
|
||||
1F6A3 1F3FC 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man rowing boat: medium-light skin tone # 8.0 [1] (🚣🏼♂️)
|
||||
1F6A3 1F3FD 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman rowing boat: medium skin tone # 8.0 [1] (🚣🏽♀️)
|
||||
1F6A3 1F3FD 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man rowing boat: medium skin tone # 8.0 [1] (🚣🏽♂️)
|
||||
1F6A3 1F3FE 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman rowing boat: medium-dark skin tone # 8.0 [1] (🚣🏾♀️)
|
||||
1F6A3 1F3FE 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man rowing boat: medium-dark skin tone # 8.0 [1] (🚣🏾♂️)
|
||||
1F6A3 1F3FF 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman rowing boat: dark skin tone # 8.0 [1] (🚣🏿♀️)
|
||||
1F6A3 1F3FF 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man rowing boat: dark skin tone # 8.0 [1] (🚣🏿♂️)
|
||||
1F6B4 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman biking # 6.0 [1] (🚴♀️)
|
||||
1F6B4 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man biking # 6.0 [1] (🚴♂️)
|
||||
1F6B4 1F3FB 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman biking: light skin tone # 8.0 [1] (🚴🏻♀️)
|
||||
1F6B4 1F3FB 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man biking: light skin tone # 8.0 [1] (🚴🏻♂️)
|
||||
1F6B4 1F3FC 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman biking: medium-light skin tone # 8.0 [1] (🚴🏼♀️)
|
||||
1F6B4 1F3FC 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man biking: medium-light skin tone # 8.0 [1] (🚴🏼♂️)
|
||||
1F6B4 1F3FD 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman biking: medium skin tone # 8.0 [1] (🚴🏽♀️)
|
||||
1F6B4 1F3FD 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man biking: medium skin tone # 8.0 [1] (🚴🏽♂️)
|
||||
1F6B4 1F3FE 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman biking: medium-dark skin tone # 8.0 [1] (🚴🏾♀️)
|
||||
1F6B4 1F3FE 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man biking: medium-dark skin tone # 8.0 [1] (🚴🏾♂️)
|
||||
1F6B4 1F3FF 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman biking: dark skin tone # 8.0 [1] (🚴🏿♀️)
|
||||
1F6B4 1F3FF 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man biking: dark skin tone # 8.0 [1] (🚴🏿♂️)
|
||||
1F6B5 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman mountain biking # 6.0 [1] (🚵♀️)
|
||||
1F6B5 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man mountain biking # 6.0 [1] (🚵♂️)
|
||||
1F6B5 1F3FB 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman mountain biking: light skin tone # 8.0 [1] (🚵🏻♀️)
|
||||
1F6B5 1F3FB 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man mountain biking: light skin tone # 8.0 [1] (🚵🏻♂️)
|
||||
1F6B5 1F3FC 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman mountain biking: medium-light skin tone # 8.0 [1] (🚵🏼♀️)
|
||||
1F6B5 1F3FC 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man mountain biking: medium-light skin tone # 8.0 [1] (🚵🏼♂️)
|
||||
1F6B5 1F3FD 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman mountain biking: medium skin tone # 8.0 [1] (🚵🏽♀️)
|
||||
1F6B5 1F3FD 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man mountain biking: medium skin tone # 8.0 [1] (🚵🏽♂️)
|
||||
1F6B5 1F3FE 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman mountain biking: medium-dark skin tone # 8.0 [1] (🚵🏾♀️)
|
||||
1F6B5 1F3FE 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man mountain biking: medium-dark skin tone # 8.0 [1] (🚵🏾♂️)
|
||||
1F6B5 1F3FF 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman mountain biking: dark skin tone # 8.0 [1] (🚵🏿♀️)
|
||||
1F6B5 1F3FF 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man mountain biking: dark skin tone # 8.0 [1] (🚵🏿♂️)
|
||||
1F6B6 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman walking # 6.0 [1] (🚶♀️)
|
||||
1F6B6 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man walking # 6.0 [1] (🚶♂️)
|
||||
1F6B6 1F3FB 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman walking: light skin tone # 8.0 [1] (🚶🏻♀️)
|
||||
1F6B6 1F3FB 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man walking: light skin tone # 8.0 [1] (🚶🏻♂️)
|
||||
1F6B6 1F3FC 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman walking: medium-light skin tone # 8.0 [1] (🚶🏼♀️)
|
||||
1F6B6 1F3FC 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man walking: medium-light skin tone # 8.0 [1] (🚶🏼♂️)
|
||||
1F6B6 1F3FD 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman walking: medium skin tone # 8.0 [1] (🚶🏽♀️)
|
||||
1F6B6 1F3FD 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man walking: medium skin tone # 8.0 [1] (🚶🏽♂️)
|
||||
1F6B6 1F3FE 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman walking: medium-dark skin tone # 8.0 [1] (🚶🏾♀️)
|
||||
1F6B6 1F3FE 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man walking: medium-dark skin tone # 8.0 [1] (🚶🏾♂️)
|
||||
1F6B6 1F3FF 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman walking: dark skin tone # 8.0 [1] (🚶🏿♀️)
|
||||
1F6B6 1F3FF 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man walking: dark skin tone # 8.0 [1] (🚶🏿♂️)
|
||||
1F938 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman cartwheeling # 9.0 [1] (🤸♀️)
|
||||
1F938 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man cartwheeling # 9.0 [1] (🤸♂️)
|
||||
1F938 1F3FB 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman cartwheeling: light skin tone # 9.0 [1] (🤸🏻♀️)
|
||||
1F938 1F3FB 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man cartwheeling: light skin tone # 9.0 [1] (🤸🏻♂️)
|
||||
1F938 1F3FC 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman cartwheeling: medium-light skin tone # 9.0 [1] (🤸🏼♀️)
|
||||
1F938 1F3FC 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man cartwheeling: medium-light skin tone # 9.0 [1] (🤸🏼♂️)
|
||||
1F938 1F3FD 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman cartwheeling: medium skin tone # 9.0 [1] (🤸🏽♀️)
|
||||
1F938 1F3FD 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man cartwheeling: medium skin tone # 9.0 [1] (🤸🏽♂️)
|
||||
1F938 1F3FE 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman cartwheeling: medium-dark skin tone # 9.0 [1] (🤸🏾♀️)
|
||||
1F938 1F3FE 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man cartwheeling: medium-dark skin tone # 9.0 [1] (🤸🏾♂️)
|
||||
1F938 1F3FF 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman cartwheeling: dark skin tone # 9.0 [1] (🤸🏿♀️)
|
||||
1F938 1F3FF 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man cartwheeling: dark skin tone # 9.0 [1] (🤸🏿♂️)
|
||||
1F939 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman juggling # 9.0 [1] (🤹♀️)
|
||||
1F939 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man juggling # 9.0 [1] (🤹♂️)
|
||||
1F939 1F3FB 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman juggling: light skin tone # 9.0 [1] (🤹🏻♀️)
|
||||
1F939 1F3FB 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man juggling: light skin tone # 9.0 [1] (🤹🏻♂️)
|
||||
1F939 1F3FC 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman juggling: medium-light skin tone # 9.0 [1] (🤹🏼♀️)
|
||||
1F939 1F3FC 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man juggling: medium-light skin tone # 9.0 [1] (🤹🏼♂️)
|
||||
1F939 1F3FD 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman juggling: medium skin tone # 9.0 [1] (🤹🏽♀️)
|
||||
1F939 1F3FD 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man juggling: medium skin tone # 9.0 [1] (🤹🏽♂️)
|
||||
1F939 1F3FE 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman juggling: medium-dark skin tone # 9.0 [1] (🤹🏾♀️)
|
||||
1F939 1F3FE 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man juggling: medium-dark skin tone # 9.0 [1] (🤹🏾♂️)
|
||||
1F939 1F3FF 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman juggling: dark skin tone # 9.0 [1] (🤹🏿♀️)
|
||||
1F939 1F3FF 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man juggling: dark skin tone # 9.0 [1] (🤹🏿♂️)
|
||||
1F93C 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; women wrestling # 9.0 [1] (🤼♀️)
|
||||
1F93C 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; men wrestling # 9.0 [1] (🤼♂️)
|
||||
1F93D 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman playing water polo # 9.0 [1] (🤽♀️)
|
||||
1F93D 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man playing water polo # 9.0 [1] (🤽♂️)
|
||||
1F93D 1F3FB 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman playing water polo: light skin tone # 9.0 [1] (🤽🏻♀️)
|
||||
1F93D 1F3FB 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man playing water polo: light skin tone # 9.0 [1] (🤽🏻♂️)
|
||||
1F93D 1F3FC 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman playing water polo: medium-light skin tone # 9.0 [1] (🤽🏼♀️)
|
||||
1F93D 1F3FC 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man playing water polo: medium-light skin tone # 9.0 [1] (🤽🏼♂️)
|
||||
1F93D 1F3FD 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman playing water polo: medium skin tone # 9.0 [1] (🤽🏽♀️)
|
||||
1F93D 1F3FD 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man playing water polo: medium skin tone # 9.0 [1] (🤽🏽♂️)
|
||||
1F93D 1F3FE 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman playing water polo: medium-dark skin tone # 9.0 [1] (🤽🏾♀️)
|
||||
1F93D 1F3FE 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man playing water polo: medium-dark skin tone # 9.0 [1] (🤽🏾♂️)
|
||||
1F93D 1F3FF 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman playing water polo: dark skin tone # 9.0 [1] (🤽🏿♀️)
|
||||
1F93D 1F3FF 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man playing water polo: dark skin tone # 9.0 [1] (🤽🏿♂️)
|
||||
1F93E 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman playing handball # 9.0 [1] (🤾♀️)
|
||||
1F93E 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man playing handball # 9.0 [1] (🤾♂️)
|
||||
1F93E 1F3FB 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman playing handball: light skin tone # 9.0 [1] (🤾🏻♀️)
|
||||
1F93E 1F3FB 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man playing handball: light skin tone # 9.0 [1] (🤾🏻♂️)
|
||||
1F93E 1F3FC 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman playing handball: medium-light skin tone # 9.0 [1] (🤾🏼♀️)
|
||||
1F93E 1F3FC 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man playing handball: medium-light skin tone # 9.0 [1] (🤾🏼♂️)
|
||||
1F93E 1F3FD 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman playing handball: medium skin tone # 9.0 [1] (🤾🏽♀️)
|
||||
1F93E 1F3FD 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man playing handball: medium skin tone # 9.0 [1] (🤾🏽♂️)
|
||||
1F93E 1F3FE 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman playing handball: medium-dark skin tone # 9.0 [1] (🤾🏾♀️)
|
||||
1F93E 1F3FE 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man playing handball: medium-dark skin tone # 9.0 [1] (🤾🏾♂️)
|
||||
1F93E 1F3FF 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman playing handball: dark skin tone # 9.0 [1] (🤾🏿♀️)
|
||||
1F93E 1F3FF 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man playing handball: dark skin tone # 9.0 [1] (🤾🏿♂️)
|
||||
1F9D6 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman in steamy room # 10.0 [1] (🧖♀️)
|
||||
1F9D6 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man in steamy room # 10.0 [1] (🧖♂️)
|
||||
1F9D6 1F3FB 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman in steamy room: light skin tone # 10.0 [1] (🧖🏻♀️)
|
||||
1F9D6 1F3FB 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man in steamy room: light skin tone # 10.0 [1] (🧖🏻♂️)
|
||||
1F9D6 1F3FC 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman in steamy room: medium-light skin tone # 10.0 [1] (🧖🏼♀️)
|
||||
1F9D6 1F3FC 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man in steamy room: medium-light skin tone # 10.0 [1] (🧖🏼♂️)
|
||||
1F9D6 1F3FD 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman in steamy room: medium skin tone # 10.0 [1] (🧖🏽♀️)
|
||||
1F9D6 1F3FD 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man in steamy room: medium skin tone # 10.0 [1] (🧖🏽♂️)
|
||||
1F9D6 1F3FE 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman in steamy room: medium-dark skin tone # 10.0 [1] (🧖🏾♀️)
|
||||
1F9D6 1F3FE 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man in steamy room: medium-dark skin tone # 10.0 [1] (🧖🏾♂️)
|
||||
1F9D6 1F3FF 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman in steamy room: dark skin tone # 10.0 [1] (🧖🏿♀️)
|
||||
1F9D6 1F3FF 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man in steamy room: dark skin tone # 10.0 [1] (🧖🏿♂️)
|
||||
1F9D7 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman climbing # 10.0 [1] (🧗♀️)
|
||||
1F9D7 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man climbing # 10.0 [1] (🧗♂️)
|
||||
1F9D7 1F3FB 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman climbing: light skin tone # 10.0 [1] (🧗🏻♀️)
|
||||
1F9D7 1F3FB 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man climbing: light skin tone # 10.0 [1] (🧗🏻♂️)
|
||||
1F9D7 1F3FC 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman climbing: medium-light skin tone # 10.0 [1] (🧗🏼♀️)
|
||||
1F9D7 1F3FC 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man climbing: medium-light skin tone # 10.0 [1] (🧗🏼♂️)
|
||||
1F9D7 1F3FD 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman climbing: medium skin tone # 10.0 [1] (🧗🏽♀️)
|
||||
1F9D7 1F3FD 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man climbing: medium skin tone # 10.0 [1] (🧗🏽♂️)
|
||||
1F9D7 1F3FE 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman climbing: medium-dark skin tone # 10.0 [1] (🧗🏾♀️)
|
||||
1F9D7 1F3FE 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man climbing: medium-dark skin tone # 10.0 [1] (🧗🏾♂️)
|
||||
1F9D7 1F3FF 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman climbing: dark skin tone # 10.0 [1] (🧗🏿♀️)
|
||||
1F9D7 1F3FF 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man climbing: dark skin tone # 10.0 [1] (🧗🏿♂️)
|
||||
1F9D8 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman in lotus position # 10.0 [1] (🧘♀️)
|
||||
1F9D8 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man in lotus position # 10.0 [1] (🧘♂️)
|
||||
1F9D8 1F3FB 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman in lotus position: light skin tone # 10.0 [1] (🧘🏻♀️)
|
||||
1F9D8 1F3FB 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man in lotus position: light skin tone # 10.0 [1] (🧘🏻♂️)
|
||||
1F9D8 1F3FC 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman in lotus position: medium-light skin tone # 10.0 [1] (🧘🏼♀️)
|
||||
1F9D8 1F3FC 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man in lotus position: medium-light skin tone # 10.0 [1] (🧘🏼♂️)
|
||||
1F9D8 1F3FD 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman in lotus position: medium skin tone # 10.0 [1] (🧘🏽♀️)
|
||||
1F9D8 1F3FD 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man in lotus position: medium skin tone # 10.0 [1] (🧘🏽♂️)
|
||||
1F9D8 1F3FE 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman in lotus position: medium-dark skin tone # 10.0 [1] (🧘🏾♀️)
|
||||
1F9D8 1F3FE 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man in lotus position: medium-dark skin tone # 10.0 [1] (🧘🏾♂️)
|
||||
1F9D8 1F3FF 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman in lotus position: dark skin tone # 10.0 [1] (🧘🏿♀️)
|
||||
1F9D8 1F3FF 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man in lotus position: dark skin tone # 10.0 [1] (🧘🏿♂️)
|
||||
|
||||
# Total elements: 232
|
||||
|
||||
# ================================================
|
||||
|
||||
# Emoji ZWJ Sequence: Gendered Gestures
|
||||
|
||||
1F481 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman tipping hand # 6.0 [1] (💁♀️)
|
||||
1F481 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man tipping hand # 6.0 [1] (💁♂️)
|
||||
1F481 1F3FB 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman tipping hand: light skin tone # 8.0 [1] (💁🏻♀️)
|
||||
1F481 1F3FB 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man tipping hand: light skin tone # 8.0 [1] (💁🏻♂️)
|
||||
1F481 1F3FC 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman tipping hand: medium-light skin tone # 8.0 [1] (💁🏼♀️)
|
||||
1F481 1F3FC 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man tipping hand: medium-light skin tone # 8.0 [1] (💁🏼♂️)
|
||||
1F481 1F3FD 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman tipping hand: medium skin tone # 8.0 [1] (💁🏽♀️)
|
||||
1F481 1F3FD 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man tipping hand: medium skin tone # 8.0 [1] (💁🏽♂️)
|
||||
1F481 1F3FE 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman tipping hand: medium-dark skin tone # 8.0 [1] (💁🏾♀️)
|
||||
1F481 1F3FE 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man tipping hand: medium-dark skin tone # 8.0 [1] (💁🏾♂️)
|
||||
1F481 1F3FF 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman tipping hand: dark skin tone # 8.0 [1] (💁🏿♀️)
|
||||
1F481 1F3FF 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man tipping hand: dark skin tone # 8.0 [1] (💁🏿♂️)
|
||||
1F645 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman gesturing NO # 6.0 [1] (🙅♀️)
|
||||
1F645 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man gesturing NO # 6.0 [1] (🙅♂️)
|
||||
1F645 1F3FB 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman gesturing NO: light skin tone # 8.0 [1] (🙅🏻♀️)
|
||||
1F645 1F3FB 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man gesturing NO: light skin tone # 8.0 [1] (🙅🏻♂️)
|
||||
1F645 1F3FC 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman gesturing NO: medium-light skin tone # 8.0 [1] (🙅🏼♀️)
|
||||
1F645 1F3FC 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man gesturing NO: medium-light skin tone # 8.0 [1] (🙅🏼♂️)
|
||||
1F645 1F3FD 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman gesturing NO: medium skin tone # 8.0 [1] (🙅🏽♀️)
|
||||
1F645 1F3FD 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man gesturing NO: medium skin tone # 8.0 [1] (🙅🏽♂️)
|
||||
1F645 1F3FE 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman gesturing NO: medium-dark skin tone # 8.0 [1] (🙅🏾♀️)
|
||||
1F645 1F3FE 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man gesturing NO: medium-dark skin tone # 8.0 [1] (🙅🏾♂️)
|
||||
1F645 1F3FF 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman gesturing NO: dark skin tone # 8.0 [1] (🙅🏿♀️)
|
||||
1F645 1F3FF 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man gesturing NO: dark skin tone # 8.0 [1] (🙅🏿♂️)
|
||||
1F646 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman gesturing OK # 6.0 [1] (🙆♀️)
|
||||
1F646 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man gesturing OK # 6.0 [1] (🙆♂️)
|
||||
1F646 1F3FB 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman gesturing OK: light skin tone # 8.0 [1] (🙆🏻♀️)
|
||||
1F646 1F3FB 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man gesturing OK: light skin tone # 8.0 [1] (🙆🏻♂️)
|
||||
1F646 1F3FC 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman gesturing OK: medium-light skin tone # 8.0 [1] (🙆🏼♀️)
|
||||
1F646 1F3FC 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man gesturing OK: medium-light skin tone # 8.0 [1] (🙆🏼♂️)
|
||||
1F646 1F3FD 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman gesturing OK: medium skin tone # 8.0 [1] (🙆🏽♀️)
|
||||
1F646 1F3FD 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man gesturing OK: medium skin tone # 8.0 [1] (🙆🏽♂️)
|
||||
1F646 1F3FE 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman gesturing OK: medium-dark skin tone # 8.0 [1] (🙆🏾♀️)
|
||||
1F646 1F3FE 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man gesturing OK: medium-dark skin tone # 8.0 [1] (🙆🏾♂️)
|
||||
1F646 1F3FF 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman gesturing OK: dark skin tone # 8.0 [1] (🙆🏿♀️)
|
||||
1F646 1F3FF 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man gesturing OK: dark skin tone # 8.0 [1] (🙆🏿♂️)
|
||||
1F647 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman bowing # 6.0 [1] (🙇♀️)
|
||||
1F647 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man bowing # 6.0 [1] (🙇♂️)
|
||||
1F647 1F3FB 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman bowing: light skin tone # 8.0 [1] (🙇🏻♀️)
|
||||
1F647 1F3FB 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man bowing: light skin tone # 8.0 [1] (🙇🏻♂️)
|
||||
1F647 1F3FC 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman bowing: medium-light skin tone # 8.0 [1] (🙇🏼♀️)
|
||||
1F647 1F3FC 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man bowing: medium-light skin tone # 8.0 [1] (🙇🏼♂️)
|
||||
1F647 1F3FD 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman bowing: medium skin tone # 8.0 [1] (🙇🏽♀️)
|
||||
1F647 1F3FD 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man bowing: medium skin tone # 8.0 [1] (🙇🏽♂️)
|
||||
1F647 1F3FE 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman bowing: medium-dark skin tone # 8.0 [1] (🙇🏾♀️)
|
||||
1F647 1F3FE 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man bowing: medium-dark skin tone # 8.0 [1] (🙇🏾♂️)
|
||||
1F647 1F3FF 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman bowing: dark skin tone # 8.0 [1] (🙇🏿♀️)
|
||||
1F647 1F3FF 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man bowing: dark skin tone # 8.0 [1] (🙇🏿♂️)
|
||||
1F64B 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman raising hand # 6.0 [1] (🙋♀️)
|
||||
1F64B 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man raising hand # 6.0 [1] (🙋♂️)
|
||||
1F64B 1F3FB 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman raising hand: light skin tone # 8.0 [1] (🙋🏻♀️)
|
||||
1F64B 1F3FB 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man raising hand: light skin tone # 8.0 [1] (🙋🏻♂️)
|
||||
1F64B 1F3FC 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman raising hand: medium-light skin tone # 8.0 [1] (🙋🏼♀️)
|
||||
1F64B 1F3FC 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man raising hand: medium-light skin tone # 8.0 [1] (🙋🏼♂️)
|
||||
1F64B 1F3FD 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman raising hand: medium skin tone # 8.0 [1] (🙋🏽♀️)
|
||||
1F64B 1F3FD 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man raising hand: medium skin tone # 8.0 [1] (🙋🏽♂️)
|
||||
1F64B 1F3FE 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman raising hand: medium-dark skin tone # 8.0 [1] (🙋🏾♀️)
|
||||
1F64B 1F3FE 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man raising hand: medium-dark skin tone # 8.0 [1] (🙋🏾♂️)
|
||||
1F64B 1F3FF 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman raising hand: dark skin tone # 8.0 [1] (🙋🏿♀️)
|
||||
1F64B 1F3FF 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man raising hand: dark skin tone # 8.0 [1] (🙋🏿♂️)
|
||||
1F64D 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman frowning # 6.0 [1] (🙍♀️)
|
||||
1F64D 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man frowning # 6.0 [1] (🙍♂️)
|
||||
1F64D 1F3FB 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman frowning: light skin tone # 8.0 [1] (🙍🏻♀️)
|
||||
1F64D 1F3FB 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man frowning: light skin tone # 8.0 [1] (🙍🏻♂️)
|
||||
1F64D 1F3FC 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman frowning: medium-light skin tone # 8.0 [1] (🙍🏼♀️)
|
||||
1F64D 1F3FC 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man frowning: medium-light skin tone # 8.0 [1] (🙍🏼♂️)
|
||||
1F64D 1F3FD 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman frowning: medium skin tone # 8.0 [1] (🙍🏽♀️)
|
||||
1F64D 1F3FD 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man frowning: medium skin tone # 8.0 [1] (🙍🏽♂️)
|
||||
1F64D 1F3FE 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman frowning: medium-dark skin tone # 8.0 [1] (🙍🏾♀️)
|
||||
1F64D 1F3FE 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man frowning: medium-dark skin tone # 8.0 [1] (🙍🏾♂️)
|
||||
1F64D 1F3FF 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman frowning: dark skin tone # 8.0 [1] (🙍🏿♀️)
|
||||
1F64D 1F3FF 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man frowning: dark skin tone # 8.0 [1] (🙍🏿♂️)
|
||||
1F64E 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman pouting # 6.0 [1] (🙎♀️)
|
||||
1F64E 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man pouting # 6.0 [1] (🙎♂️)
|
||||
1F64E 1F3FB 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman pouting: light skin tone # 8.0 [1] (🙎🏻♀️)
|
||||
1F64E 1F3FB 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man pouting: light skin tone # 8.0 [1] (🙎🏻♂️)
|
||||
1F64E 1F3FC 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman pouting: medium-light skin tone # 8.0 [1] (🙎🏼♀️)
|
||||
1F64E 1F3FC 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man pouting: medium-light skin tone # 8.0 [1] (🙎🏼♂️)
|
||||
1F64E 1F3FD 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman pouting: medium skin tone # 8.0 [1] (🙎🏽♀️)
|
||||
1F64E 1F3FD 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man pouting: medium skin tone # 8.0 [1] (🙎🏽♂️)
|
||||
1F64E 1F3FE 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman pouting: medium-dark skin tone # 8.0 [1] (🙎🏾♀️)
|
||||
1F64E 1F3FE 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man pouting: medium-dark skin tone # 8.0 [1] (🙎🏾♂️)
|
||||
1F64E 1F3FF 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman pouting: dark skin tone # 8.0 [1] (🙎🏿♀️)
|
||||
1F64E 1F3FF 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man pouting: dark skin tone # 8.0 [1] (🙎🏿♂️)
|
||||
1F926 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman facepalming # 9.0 [1] (🤦♀️)
|
||||
1F926 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man facepalming # 9.0 [1] (🤦♂️)
|
||||
1F926 1F3FB 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman facepalming: light skin tone # 9.0 [1] (🤦🏻♀️)
|
||||
1F926 1F3FB 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man facepalming: light skin tone # 9.0 [1] (🤦🏻♂️)
|
||||
1F926 1F3FC 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman facepalming: medium-light skin tone # 9.0 [1] (🤦🏼♀️)
|
||||
1F926 1F3FC 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man facepalming: medium-light skin tone # 9.0 [1] (🤦🏼♂️)
|
||||
1F926 1F3FD 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman facepalming: medium skin tone # 9.0 [1] (🤦🏽♀️)
|
||||
1F926 1F3FD 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man facepalming: medium skin tone # 9.0 [1] (🤦🏽♂️)
|
||||
1F926 1F3FE 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman facepalming: medium-dark skin tone # 9.0 [1] (🤦🏾♀️)
|
||||
1F926 1F3FE 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man facepalming: medium-dark skin tone # 9.0 [1] (🤦🏾♂️)
|
||||
1F926 1F3FF 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman facepalming: dark skin tone # 9.0 [1] (🤦🏿♀️)
|
||||
1F926 1F3FF 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man facepalming: dark skin tone # 9.0 [1] (🤦🏿♂️)
|
||||
1F937 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman shrugging # 9.0 [1] (🤷♀️)
|
||||
1F937 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man shrugging # 9.0 [1] (🤷♂️)
|
||||
1F937 1F3FB 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman shrugging: light skin tone # 9.0 [1] (🤷🏻♀️)
|
||||
1F937 1F3FB 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man shrugging: light skin tone # 9.0 [1] (🤷🏻♂️)
|
||||
1F937 1F3FC 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman shrugging: medium-light skin tone # 9.0 [1] (🤷🏼♀️)
|
||||
1F937 1F3FC 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man shrugging: medium-light skin tone # 9.0 [1] (🤷🏼♂️)
|
||||
1F937 1F3FD 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman shrugging: medium skin tone # 9.0 [1] (🤷🏽♀️)
|
||||
1F937 1F3FD 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man shrugging: medium skin tone # 9.0 [1] (🤷🏽♂️)
|
||||
1F937 1F3FE 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman shrugging: medium-dark skin tone # 9.0 [1] (🤷🏾♀️)
|
||||
1F937 1F3FE 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man shrugging: medium-dark skin tone # 9.0 [1] (🤷🏾♂️)
|
||||
1F937 1F3FF 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman shrugging: dark skin tone # 9.0 [1] (🤷🏿♀️)
|
||||
1F937 1F3FF 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man shrugging: dark skin tone # 9.0 [1] (🤷🏿♂️)
|
||||
1F9B8 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman superhero # 11.0 [1] (🦸♀️)
|
||||
1F9B8 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man superhero # 11.0 [1] (🦸♂️)
|
||||
1F9B8 1F3FB 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman superhero: light skin tone # 11.0 [1] (🦸🏻♀️)
|
||||
1F9B8 1F3FB 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man superhero: light skin tone # 11.0 [1] (🦸🏻♂️)
|
||||
1F9B8 1F3FC 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman superhero: medium-light skin tone # 11.0 [1] (🦸🏼♀️)
|
||||
1F9B8 1F3FC 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man superhero: medium-light skin tone # 11.0 [1] (🦸🏼♂️)
|
||||
1F9B8 1F3FD 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman superhero: medium skin tone # 11.0 [1] (🦸🏽♀️)
|
||||
1F9B8 1F3FD 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man superhero: medium skin tone # 11.0 [1] (🦸🏽♂️)
|
||||
1F9B8 1F3FE 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman superhero: medium-dark skin tone # 11.0 [1] (🦸🏾♀️)
|
||||
1F9B8 1F3FE 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man superhero: medium-dark skin tone # 11.0 [1] (🦸🏾♂️)
|
||||
1F9B8 1F3FF 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman superhero: dark skin tone # 11.0 [1] (🦸🏿♀️)
|
||||
1F9B8 1F3FF 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man superhero: dark skin tone # 11.0 [1] (🦸🏿♂️)
|
||||
1F9B9 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman supervillain # 11.0 [1] (🦹♀️)
|
||||
1F9B9 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man supervillain # 11.0 [1] (🦹♂️)
|
||||
1F9B9 1F3FB 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman supervillain: light skin tone # 11.0 [1] (🦹🏻♀️)
|
||||
1F9B9 1F3FB 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man supervillain: light skin tone # 11.0 [1] (🦹🏻♂️)
|
||||
1F9B9 1F3FC 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman supervillain: medium-light skin tone # 11.0 [1] (🦹🏼♀️)
|
||||
1F9B9 1F3FC 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man supervillain: medium-light skin tone # 11.0 [1] (🦹🏼♂️)
|
||||
1F9B9 1F3FD 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman supervillain: medium skin tone # 11.0 [1] (🦹🏽♀️)
|
||||
1F9B9 1F3FD 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man supervillain: medium skin tone # 11.0 [1] (🦹🏽♂️)
|
||||
1F9B9 1F3FE 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman supervillain: medium-dark skin tone # 11.0 [1] (🦹🏾♀️)
|
||||
1F9B9 1F3FE 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man supervillain: medium-dark skin tone # 11.0 [1] (🦹🏾♂️)
|
||||
1F9B9 1F3FF 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; woman supervillain: dark skin tone # 11.0 [1] (🦹🏿♀️)
|
||||
1F9B9 1F3FF 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; man supervillain: dark skin tone # 11.0 [1] (🦹🏿♂️)
|
||||
|
||||
# Total elements: 132
|
||||
|
||||
# ================================================
|
||||
|
||||
# Emoji ZWJ Sequence: Other
|
||||
|
||||
1F3F3 FE0F 200D 1F308 ; Emoji_ZWJ_Sequence ; rainbow flag # 7.0 [1] (🏳️🌈)
|
||||
1F3F4 200D 2620 FE0F ; Emoji_ZWJ_Sequence ; pirate flag # 7.0 [1] (🏴☠️)
|
||||
1F441 FE0F 200D 1F5E8 FE0F ; Emoji_ZWJ_Sequence ; eye in speech bubble # 7.0 [1] (👁️🗨️)
|
||||
|
||||
# Total elements: 3
|
||||
|
||||
#EOF
|
19
emojicompat/unicode/additions/emoji-data.txt
Normal file
|
@ -0,0 +1,19 @@
|
|||
# © 2017 Unicode®, Inc.
|
||||
# Unicode and the Unicode Logo are registered trademarks of Unicode, Inc. in the U.S. and other countries.
|
||||
# For terms of use, see http://www.unicode.org/terms_of_use.html
|
||||
|
||||
# Note: this file is not published by Unicode, but since its format follows Unicode's format, it's
|
||||
# basically derived from Unicode data files.
|
||||
|
||||
2600 ; Emoji_Presentation # (☀) BLACK SUN WITH RAYS
|
||||
2601 ; Emoji_Presentation # (☁) CLOUD
|
||||
260E ; Emoji_Presentation # (☎) BLACK TELEPHONE
|
||||
261D ; Emoji_Presentation # (☝) WHITE UP POINTING INDEX
|
||||
263A ; Emoji_Presentation # (☺) WHITE SMILING FACE
|
||||
2660 ; Emoji_Presentation # (♠) BLACK SPADE SUIT
|
||||
2663 ; Emoji_Presentation # (♣) BLACK CLUB SUIT
|
||||
2665 ; Emoji_Presentation # (♥) BLACK HEART SUIT
|
||||
2666 ; Emoji_Presentation # (♦) BLACK DIAMOND SUIT
|
||||
270C ; Emoji_Presentation # (✌) VICTORY HAND
|
||||
2744 ; Emoji_Presentation # (❄) SNOWFLAKE
|
||||
2764 ; Emoji_Presentation # (❤) HEAVY BLACK HEART
|
|
@ -25,6 +25,12 @@
|
|||
1F431 1F3FE ; Emoji_Modifier_Sequence ; cat face: medium-dark skin tone
|
||||
1F431 1F3FF ; Emoji_Modifier_Sequence ; cat face: dark skin tone
|
||||
|
||||
1F35E 1F3FB ; Emoji_Modifier_Sequence ; bread: light skin tone
|
||||
1F35E 1F3FC ; Emoji_Modifier_Sequence ; bread: medium-light skin tone
|
||||
1F35E 1F3FD ; Emoji_Modifier_Sequence ; bread: medium skin tone
|
||||
1F35E 1F3FE ; Emoji_Modifier_Sequence ; bread: medium-dark skin tone
|
||||
1F35E 1F3FF ; Emoji_Modifier_Sequence ; bread: dark skin tone
|
||||
|
||||
# Flags
|
||||
|
||||
# # Germany
|
||||
|
@ -45,3 +51,323 @@
|
|||
1F3F4 E0064 E0065 E0073 E0068 E007F; Emoji_Tag_Sequence; Schleswig Holstein
|
||||
1F3F4 E0064 E0065 E0073 E0074 E007F; Emoji_Tag_Sequence; Sachsen Anhalt
|
||||
1F3F4 E0064 E0065 E0074 E0068 E007F; Emoji_Tag_Sequence; Thüringen
|
||||
|
||||
0023 20E3; Emoji_Modifier_Sequence; # #⃣ auto-generated Flag:
|
||||
002A 20E3; Emoji_Modifier_Sequence; # *⃣ auto-generated Flag:
|
||||
0030 20E3; Emoji_Modifier_Sequence; # 0⃣ auto-generated Flag:
|
||||
0031 20E3; Emoji_Modifier_Sequence; # 1⃣ auto-generated Flag:
|
||||
0032 20E3; Emoji_Modifier_Sequence; # 2⃣ auto-generated Flag:
|
||||
0033 20E3; Emoji_Modifier_Sequence; # 3⃣ auto-generated Flag:
|
||||
0034 20E3; Emoji_Modifier_Sequence; # 4⃣ auto-generated Flag:
|
||||
0035 20E3; Emoji_Modifier_Sequence; # 5⃣ auto-generated Flag:
|
||||
0036 20E3; Emoji_Modifier_Sequence; # 6⃣ auto-generated Flag:
|
||||
0037 20E3; Emoji_Modifier_Sequence; # 7⃣ auto-generated Flag:
|
||||
0038 20E3; Emoji_Modifier_Sequence; # 8⃣ auto-generated Flag:
|
||||
0039 20E3; Emoji_Modifier_Sequence; # 9⃣ auto-generated Flag:
|
||||
1F3F4 E0063 E0061 E0061 E0062 E007F; Emoji_Tag_Sequence; # 🏴 auto-generated Flag: CAAB
|
||||
1F3F4 E0063 E0061 E0062 E0063 E007F; Emoji_Tag_Sequence; # 🏴 auto-generated Flag: CABC
|
||||
1F3F4 E0063 E0061 E006D E0062 E007F; Emoji_Tag_Sequence; # 🏴 auto-generated Flag: CAMB
|
||||
1F3F4 E0063 E0061 E006E E0062 E007F; Emoji_Tag_Sequence; # 🏴 auto-generated Flag: CANB
|
||||
1F3F4 E0063 E0061 E006E E006C E007F; Emoji_Tag_Sequence; # 🏴 auto-generated Flag: CANL
|
||||
1F3F4 E0063 E0061 E006E E0073 E007F; Emoji_Tag_Sequence; # 🏴 auto-generated Flag: CANS
|
||||
1F3F4 E0063 E0061 E006E E0074 E007F; Emoji_Tag_Sequence; # 🏴 auto-generated Flag: CANT
|
||||
1F3F4 E0063 E0061 E006E E0075 E007F; Emoji_Tag_Sequence; # 🏴 auto-generated Flag: CANU
|
||||
1F3F4 E0063 E0061 E006F E006E E007F; Emoji_Tag_Sequence; # 🏴 auto-generated Flag: CAON
|
||||
1F3F4 E0063 E0061 E0070 E0065 E007F; Emoji_Tag_Sequence; # 🏴 auto-generated Flag: CAPE
|
||||
1F3F4 E0063 E0061 E0071 E0063 E007F; Emoji_Tag_Sequence; # 🏴 auto-generated Flag: CAQC
|
||||
1F3F4 E0063 E0061 E0073 E006B E007F; Emoji_Tag_Sequence; # 🏴 auto-generated Flag: CASK
|
||||
1F3F4 E0063 E0061 E0079 E0074 E007F; Emoji_Tag_Sequence; # 🏴 auto-generated Flag: CAYT
|
||||
1F3F4 E0064 E0065 E0062 E0077 E007F; Emoji_Tag_Sequence; # 🏴 auto-generated Flag: DEBW
|
||||
1F3F4 E0075 E0073 E0061 E006B E007F; Emoji_Tag_Sequence; # 🏴 auto-generated Flag: USAK
|
||||
1F3F4 E0075 E0073 E0061 E006C E007F; Emoji_Tag_Sequence; # 🏴 auto-generated Flag: USAL
|
||||
1F3F4 E0075 E0073 E0061 E0072 E007F; Emoji_Tag_Sequence; # 🏴 auto-generated Flag: USAR
|
||||
1F3F4 E0075 E0073 E0061 E007A E007F; Emoji_Tag_Sequence; # 🏴 auto-generated Flag: USAZ
|
||||
1F3F4 E0075 E0073 E0063 E0061 E007F; Emoji_Tag_Sequence; # 🏴 auto-generated Flag: USCA
|
||||
1F3F4 E0075 E0073 E0063 E006F E007F; Emoji_Tag_Sequence; # 🏴 auto-generated Flag: USCO
|
||||
1F3F4 E0075 E0073 E0063 E0074 E007F; Emoji_Tag_Sequence; # 🏴 auto-generated Flag: USCT
|
||||
1F3F4 E0075 E0073 E0064 E0063 E007F; Emoji_Tag_Sequence; # 🏴 auto-generated Flag: USDC
|
||||
1F3F4 E0075 E0073 E0064 E0065 E007F; Emoji_Tag_Sequence; # 🏴 auto-generated Flag: USDE
|
||||
1F3F4 E0075 E0073 E0066 E006C E007F; Emoji_Tag_Sequence; # 🏴 auto-generated Flag: USFL
|
||||
1F3F4 E0075 E0073 E0067 E0061 E007F; Emoji_Tag_Sequence; # 🏴 auto-generated Flag: USGA
|
||||
1F3F4 E0075 E0073 E0068 E0069 E007F; Emoji_Tag_Sequence; # 🏴 auto-generated Flag: USHI
|
||||
1F3F4 E0075 E0073 E0069 E0061 E007F; Emoji_Tag_Sequence; # 🏴 auto-generated Flag: USIA
|
||||
1F3F4 E0075 E0073 E0069 E0064 E007F; Emoji_Tag_Sequence; # 🏴 auto-generated Flag: USID
|
||||
1F3F4 E0075 E0073 E0069 E006C E007F; Emoji_Tag_Sequence; # 🏴 auto-generated Flag: USIL
|
||||
1F3F4 E0075 E0073 E0069 E006E E007F; Emoji_Tag_Sequence; # 🏴 auto-generated Flag: USIN
|
||||
1F3F4 E0075 E0073 E006B E0073 E007F; Emoji_Tag_Sequence; # 🏴 auto-generated Flag: USKS
|
||||
1F3F4 E0075 E0073 E006B E0079 E007F; Emoji_Tag_Sequence; # 🏴 auto-generated Flag: USKY
|
||||
1F3F4 E0075 E0073 E006C E0061 E007F; Emoji_Tag_Sequence; # 🏴 auto-generated Flag: USLA
|
||||
1F3F4 E0075 E0073 E006D E0061 E007F; Emoji_Tag_Sequence; # 🏴 auto-generated Flag: USMA
|
||||
1F3F4 E0075 E0073 E006D E0064 E007F; Emoji_Tag_Sequence; # 🏴 auto-generated Flag: USMD
|
||||
1F3F4 E0075 E0073 E006D E0065 E007F; Emoji_Tag_Sequence; # 🏴 auto-generated Flag: USME
|
||||
1F3F4 E0075 E0073 E006D E0069 E007F; Emoji_Tag_Sequence; # 🏴 auto-generated Flag: USMI
|
||||
1F3F4 E0075 E0073 E006D E006E E007F; Emoji_Tag_Sequence; # 🏴 auto-generated Flag: USMN
|
||||
1F3F4 E0075 E0073 E006D E006F E007F; Emoji_Tag_Sequence; # 🏴 auto-generated Flag: USMO
|
||||
1F3F4 E0075 E0073 E006D E0073 E007F; Emoji_Tag_Sequence; # 🏴 auto-generated Flag: USMS
|
||||
1F3F4 E0075 E0073 E006D E0074 E007F; Emoji_Tag_Sequence; # 🏴 auto-generated Flag: USMT
|
||||
1F3F4 E0075 E0073 E006E E0063 E007F; Emoji_Tag_Sequence; # 🏴 auto-generated Flag: USNC
|
||||
1F3F4 E0075 E0073 E006E E0064 E007F; Emoji_Tag_Sequence; # 🏴 auto-generated Flag: USND
|
||||
1F3F4 E0075 E0073 E006E E0065 E007F; Emoji_Tag_Sequence; # 🏴 auto-generated Flag: USNE
|
||||
1F3F4 E0075 E0073 E006E E0068 E007F; Emoji_Tag_Sequence; # 🏴 auto-generated Flag: USNH
|
||||
1F3F4 E0075 E0073 E006E E006A E007F; Emoji_Tag_Sequence; # 🏴 auto-generated Flag: USNJ
|
||||
1F3F4 E0075 E0073 E006E E006D E007F; Emoji_Tag_Sequence; # 🏴 auto-generated Flag: USNM
|
||||
1F3F4 E0075 E0073 E006E E0076 E007F; Emoji_Tag_Sequence; # 🏴 auto-generated Flag: USNV
|
||||
1F3F4 E0075 E0073 E006E E0079 E007F; Emoji_Tag_Sequence; # 🏴 auto-generated Flag: USNY
|
||||
1F3F4 E0075 E0073 E006F E0068 E007F; Emoji_Tag_Sequence; # 🏴 auto-generated Flag: USOH
|
||||
1F3F4 E0075 E0073 E006F E006B E007F; Emoji_Tag_Sequence; # 🏴 auto-generated Flag: USOK
|
||||
1F3F4 E0075 E0073 E006F E0072 E007F; Emoji_Tag_Sequence; # 🏴 auto-generated Flag: USOR
|
||||
1F3F4 E0075 E0073 E0070 E0061 E007F; Emoji_Tag_Sequence; # 🏴 auto-generated Flag: USPA
|
||||
1F3F4 E0075 E0073 E0072 E0069 E007F; Emoji_Tag_Sequence; # 🏴 auto-generated Flag: USRI
|
||||
1F3F4 E0075 E0073 E0073 E0063 E007F; Emoji_Tag_Sequence; # 🏴 auto-generated Flag: USSC
|
||||
1F3F4 E0075 E0073 E0073 E0064 E007F; Emoji_Tag_Sequence; # 🏴 auto-generated Flag: USSD
|
||||
1F3F4 E0075 E0073 E0074 E006E E007F; Emoji_Tag_Sequence; # 🏴 auto-generated Flag: USTN
|
||||
1F3F4 E0075 E0073 E0074 E0078 E007F; Emoji_Tag_Sequence; # 🏴 auto-generated Flag: USTX
|
||||
1F3F4 E0075 E0073 E0075 E0074 E007F; Emoji_Tag_Sequence; # 🏴 auto-generated Flag: USUT
|
||||
1F3F4 E0075 E0073 E0076 E0061 E007F; Emoji_Tag_Sequence; # 🏴 auto-generated Flag: USVA
|
||||
1F3F4 E0075 E0073 E0076 E0074 E007F; Emoji_Tag_Sequence; # 🏴 auto-generated Flag: USVT
|
||||
1F3F4 E0075 E0073 E0077 E0061 E007F; Emoji_Tag_Sequence; # 🏴 auto-generated Flag: USWA
|
||||
1F3F4 E0075 E0073 E0077 E0069 E007F; Emoji_Tag_Sequence; # 🏴 auto-generated Flag: USWI
|
||||
1F3F4 E0075 E0073 E0077 E0076 E007F; Emoji_Tag_Sequence; # 🏴 auto-generated Flag: USWV
|
||||
1F3F4 E0075 E0073 E0077 E0079 E007F; Emoji_Tag_Sequence; # 🏴 auto-generated Flag: USWY
|
||||
1F9D4 1F3FB 2640; Emoji_Modifier_Sequence; # 🧔🏻♀ auto-generated
|
||||
1F9D4 1F3FB 2642; Emoji_Modifier_Sequence; # 🧔🏻♂ auto-generated
|
||||
1F9D4 1F3FC 2640; Emoji_Modifier_Sequence; # 🧔🏼♀ auto-generated
|
||||
1F9D4 1F3FC 2642; Emoji_Modifier_Sequence; # 🧔🏼♂ auto-generated
|
||||
1F9D4 1F3FD 2640; Emoji_Modifier_Sequence; # 🧔🏽♀ auto-generated
|
||||
1F9D4 1F3FD 2642; Emoji_Modifier_Sequence; # 🧔🏽♂ auto-generated
|
||||
1F9D4 1F3FE 2640; Emoji_Modifier_Sequence; # 🧔🏾♀ auto-generated
|
||||
1F9D4 1F3FE 2642; Emoji_Modifier_Sequence; # 🧔🏾♂ auto-generated
|
||||
1F9D4 1F3FF 2640; Emoji_Modifier_Sequence; # 🧔🏿♀ auto-generated
|
||||
1F9D4 1F3FF 2642; Emoji_Modifier_Sequence; # 🧔🏿♂ auto-generated
|
||||
1F9D4 1F9B0 2640; Emoji_Modifier_Sequence; # 🧔🦰♀ auto-generated
|
||||
1F9D4 1F9B0 2642; Emoji_Modifier_Sequence; # 🧔🦰♂ auto-generated
|
||||
1F9D4 1F9B3 2640; Emoji_Modifier_Sequence; # 🧔🦳♀ auto-generated
|
||||
1F9D4 1F9B3 2642; Emoji_Modifier_Sequence; # 🧔🦳♂ auto-generated
|
||||
1F9D4 2640; Emoji_Modifier_Sequence; # 🧔♀ auto-generated Flag:
|
||||
1F9D4 2642; Emoji_Modifier_Sequence; # 🧔♂ auto-generated Flag:
|
||||
265F FE0F; Emoji_Modifier_Sequence; # ♟️ auto-generated Flag:
|
||||
267E FE0F; Emoji_Modifier_Sequence; # ♾️ auto-generated Flag:
|
||||
|
||||
1F3C3 1F9B0; Emoji_Modifier_Sequence; # 🏃🦰 auto-generated
|
||||
|
||||
1F3C3 1F9B3; Emoji_Modifier_Sequence; # 🏃🦳 auto-generated
|
||||
|
||||
1F3C4 1F9B0; Emoji_Modifier_Sequence; # 🏄🦰 auto-generated
|
||||
|
||||
1F3C4 1F9B3; Emoji_Modifier_Sequence; # 🏄🦳 auto-generated
|
||||
|
||||
1F3C7 1F9B0; Emoji_Modifier_Sequence; # 🏇🦰 auto-generated
|
||||
|
||||
1F3C7 1F9B3; Emoji_Modifier_Sequence; # 🏇🦳 auto-generated
|
||||
|
||||
1F3CA 1F9B0; Emoji_Modifier_Sequence; # 🏊🦰 auto-generated
|
||||
|
||||
1F3CA 1F9B3; Emoji_Modifier_Sequence; # 🏊🦳 auto-generated
|
||||
|
||||
1F3CB 1F9B0; Emoji_Modifier_Sequence; # 🏋🦰 auto-generated
|
||||
|
||||
1F3CB 1F9B3; Emoji_Modifier_Sequence; # 🏋🦳 auto-generated
|
||||
|
||||
1F3CC 1F9B0; Emoji_Modifier_Sequence; # 🏌🦰 auto-generated
|
||||
|
||||
1F3CC 1F9B3; Emoji_Modifier_Sequence; # 🏌🦳 auto-generated
|
||||
|
||||
1F466 1F9B0; Emoji_Modifier_Sequence; # 👦🦰 auto-generated
|
||||
|
||||
1F466 1F9B3; Emoji_Modifier_Sequence; # 👦🦳 auto-generated
|
||||
|
||||
1F467 1F9B0; Emoji_Modifier_Sequence; # 👧🦰 auto-generated
|
||||
|
||||
1F467 1F9B3; Emoji_Modifier_Sequence; # 👧🦳 auto-generated
|
||||
|
||||
1F46E 1F9B0; Emoji_Modifier_Sequence; # 👮🦰 auto-generated
|
||||
|
||||
1F46E 1F9B3; Emoji_Modifier_Sequence; # 👮🦳 auto-generated
|
||||
|
||||
1F470 1F9B0; Emoji_Modifier_Sequence; # 👰🦰 auto-generated
|
||||
|
||||
1F470 1F9B3; Emoji_Modifier_Sequence; # 👰🦳 auto-generated
|
||||
|
||||
1F472 1F9B0; Emoji_Modifier_Sequence; # 👲🦰 auto-generated
|
||||
|
||||
1F472 1F9B3; Emoji_Modifier_Sequence; # 👲🦳 auto-generated
|
||||
|
||||
1F473 1F9B0; Emoji_Modifier_Sequence; # 👳🦰 auto-generated
|
||||
|
||||
1F473 1F9B3; Emoji_Modifier_Sequence; # 👳🦳 auto-generated
|
||||
|
||||
1F476 1F9B0; Emoji_Modifier_Sequence; # 👶🦰 auto-generated
|
||||
|
||||
1F476 1F9B3; Emoji_Modifier_Sequence; # 👶🦳 auto-generated
|
||||
|
||||
1F477 1F9B0; Emoji_Modifier_Sequence; # 👷🦰 auto-generated
|
||||
|
||||
1F477 1F9B3; Emoji_Modifier_Sequence; # 👷🦳 auto-generated
|
||||
|
||||
1F478 1F9B0; Emoji_Modifier_Sequence; # 👸🦰 auto-generated
|
||||
|
||||
1F478 1F9B3; Emoji_Modifier_Sequence; # 👸🦳 auto-generated
|
||||
|
||||
1F481 1F9B0; Emoji_Modifier_Sequence; # 💁🦰 auto-generated
|
||||
|
||||
1F481 1F9B3; Emoji_Modifier_Sequence; # 💁🦳 auto-generated
|
||||
|
||||
1F482 1F9B0; Emoji_Modifier_Sequence; # 💂🦰 auto-generated
|
||||
|
||||
1F482 1F9B3; Emoji_Modifier_Sequence; # 💂🦳 auto-generated
|
||||
|
||||
1F483 1F9B0; Emoji_Modifier_Sequence; # 💃🦰 auto-generated
|
||||
|
||||
1F483 1F9B3; Emoji_Modifier_Sequence; # 💃🦳 auto-generated
|
||||
|
||||
1F486 1F9B0; Emoji_Modifier_Sequence; # 💆🦰 auto-generated
|
||||
|
||||
1F486 1F9B3; Emoji_Modifier_Sequence; # 💆🦳 auto-generated
|
||||
|
||||
1F487 1F9B0; Emoji_Modifier_Sequence; # 💇🦰 auto-generated
|
||||
|
||||
1F487 1F9B3; Emoji_Modifier_Sequence; # 💇🦳 auto-generated
|
||||
|
||||
1F575 1F9B0; Emoji_Modifier_Sequence; # 🕵🦰 auto-generated
|
||||
|
||||
1F575 1F9B3; Emoji_Modifier_Sequence; # 🕵🦳 auto-generated
|
||||
|
||||
1F57A 1F9B0; Emoji_Modifier_Sequence; # 🕺🦰 auto-generated
|
||||
|
||||
1F57A 1F9B3; Emoji_Modifier_Sequence; # 🕺🦳 auto-generated
|
||||
|
||||
1F645 1F9B0; Emoji_Modifier_Sequence; # 🙅🦰 auto-generated
|
||||
|
||||
1F645 1F9B3; Emoji_Modifier_Sequence; # 🙅🦳 auto-generated
|
||||
|
||||
1F646 1F9B0; Emoji_Modifier_Sequence; # 🙆🦰 auto-generated
|
||||
|
||||
1F646 1F9B3; Emoji_Modifier_Sequence; # 🙆🦳 auto-generated
|
||||
|
||||
1F647 1F9B0; Emoji_Modifier_Sequence; # 🙇🦰 auto-generated
|
||||
|
||||
1F647 1F9B3; Emoji_Modifier_Sequence; # 🙇🦳 auto-generated
|
||||
|
||||
1F64B 1F9B0; Emoji_Modifier_Sequence; # 🙋🦰 auto-generated
|
||||
|
||||
1F64B 1F9B3; Emoji_Modifier_Sequence; # 🙋🦳 auto-generated
|
||||
|
||||
1F64D 1F9B0; Emoji_Modifier_Sequence; # 🙍🦰 auto-generated
|
||||
|
||||
1F64D 1F9B3; Emoji_Modifier_Sequence; # 🙍🦳 auto-generated
|
||||
|
||||
1F64E 1F9B0; Emoji_Modifier_Sequence; # 🙎🦰 auto-generated
|
||||
|
||||
1F64E 1F9B3; Emoji_Modifier_Sequence; # 🙎🦳 auto-generated
|
||||
|
||||
1F6A3 1F9B0; Emoji_Modifier_Sequence; # 🚣🦰 auto-generated
|
||||
|
||||
1F6A3 1F9B3; Emoji_Modifier_Sequence; # 🚣🦳 auto-generated
|
||||
|
||||
1F6B4 1F9B0; Emoji_Modifier_Sequence; # 🚴🦰 auto-generated
|
||||
|
||||
1F6B4 1F9B3; Emoji_Modifier_Sequence; # 🚴🦳 auto-generated
|
||||
|
||||
1F6B5 1F9B0; Emoji_Modifier_Sequence; # 🚵🦰 auto-generated
|
||||
|
||||
1F6B5 1F9B3; Emoji_Modifier_Sequence; # 🚵🦳 auto-generated
|
||||
|
||||
1F6B6 1F9B0; Emoji_Modifier_Sequence; # 🚶🦰 auto-generated
|
||||
|
||||
1F6B6 1F9B3; Emoji_Modifier_Sequence; # 🚶🦳 auto-generated
|
||||
|
||||
1F6C0 1F9B0; Emoji_Modifier_Sequence; # 🛀🦰 auto-generated
|
||||
|
||||
1F6C0 1F9B3; Emoji_Modifier_Sequence; # 🛀🦳 auto-generated
|
||||
|
||||
1F926 1F9B0; Emoji_Modifier_Sequence; # 🤦🦰 auto-generated
|
||||
|
||||
1F926 1F9B3; Emoji_Modifier_Sequence; # 🤦🦳 auto-generated
|
||||
|
||||
1F930 1F9B0; Emoji_Modifier_Sequence; # 🤰🦰 auto-generated
|
||||
|
||||
1F930 1F9B3; Emoji_Modifier_Sequence; # 🤰🦳 auto-generated
|
||||
|
||||
1F931 1F9B0; Emoji_Modifier_Sequence; # 🤱🦰 auto-generated
|
||||
|
||||
1F931 1F9B3; Emoji_Modifier_Sequence; # 🤱🦳 auto-generated
|
||||
|
||||
1F934 1F9B0; Emoji_Modifier_Sequence; # 🤴🦰 auto-generated
|
||||
|
||||
1F934 1F9B3; Emoji_Modifier_Sequence; # 🤴🦳 auto-generated
|
||||
|
||||
1F935 1F9B0; Emoji_Modifier_Sequence; # 🤵🦰 auto-generated
|
||||
|
||||
1F935 1F9B3; Emoji_Modifier_Sequence; # 🤵🦳 auto-generated
|
||||
|
||||
1F937 1F9B0; Emoji_Modifier_Sequence; # 🤷🦰 auto-generated
|
||||
|
||||
1F937 1F9B3; Emoji_Modifier_Sequence; # 🤷🦳 auto-generated
|
||||
|
||||
1F938 1F9B0; Emoji_Modifier_Sequence; # 🤸🦰 auto-generated
|
||||
|
||||
1F938 1F9B3; Emoji_Modifier_Sequence; # 🤸🦳 auto-generated
|
||||
|
||||
1F939 1F9B0; Emoji_Modifier_Sequence; # 🤹🦰 auto-generated
|
||||
|
||||
1F939 1F9B3; Emoji_Modifier_Sequence; # 🤹🦳 auto-generated
|
||||
|
||||
1F93C 1F9B0; Emoji_Modifier_Sequence; # 🤼🦰 auto-generated
|
||||
|
||||
1F93C 1F9B3; Emoji_Modifier_Sequence; # 🤼🦳 auto-generated
|
||||
|
||||
1F93D 1F9B0; Emoji_Modifier_Sequence; # 🤽🦰 auto-generated
|
||||
|
||||
1F93D 1F9B3; Emoji_Modifier_Sequence; # 🤽🦳 auto-generated
|
||||
|
||||
1F93E 1F9B0; Emoji_Modifier_Sequence; # 🤾🦰 auto-generated
|
||||
|
||||
1F93E 1F9B3; Emoji_Modifier_Sequence; # 🤾🦳 auto-generated
|
||||
|
||||
1F9B8 1F9B0; Emoji_Modifier_Sequence; # 🦸🦰 auto-generated
|
||||
|
||||
1F9B8 1F9B3; Emoji_Modifier_Sequence; # 🦸🦳 auto-generated
|
||||
|
||||
1F9B9 1F9B0; Emoji_Modifier_Sequence; # 🦹🦰 auto-generated
|
||||
|
||||
1F9B9 1F9B3; Emoji_Modifier_Sequence; # 🦹🦳 auto-generated
|
||||
|
||||
1F9D1 1F9B0; Emoji_Modifier_Sequence; # 🧑🦰 auto-generated
|
||||
|
||||
1F9D1 1F9B3; Emoji_Modifier_Sequence; # 🧑🦳 auto-generated
|
||||
|
||||
1F9D2 1F9B0; Emoji_Modifier_Sequence; # 🧒🦰 auto-generated
|
||||
|
||||
1F9D2 1F9B3; Emoji_Modifier_Sequence; # 🧒🦳 auto-generated
|
||||
|
||||
1F9D4 1F9B0; Emoji_Modifier_Sequence; # 🧔🦰 auto-generated
|
||||
|
||||
1F9D4 1F9B3; Emoji_Modifier_Sequence; # 🧔🦳 auto-generated
|
||||
|
||||
26F9 1F9B0; Emoji_Modifier_Sequence; # ⛹🦰 auto-generated
|
||||
|
||||
26F9 1F9B3; Emoji_Modifier_Sequence; # ⛹🦳 auto-generated
|
||||
|
||||
1F46B 1F9B0; Emoji_Modifier_Sequence; # 👫🦰 auto-generated
|
||||
|
||||
1F46B 1F9B3; Emoji_Modifier_Sequence; # 👫🦳 auto-generated
|
||||
|
||||
1F46C 1F9B0; Emoji_Modifier_Sequence; # 👬🦰 auto-generated
|
||||
|
||||
1F46C 1F9B3; Emoji_Modifier_Sequence; # 👬🦳 auto-generated
|
||||
|
||||
1F46D 1F9B0; Emoji_Modifier_Sequence; # 👭🦰 auto-generated
|
||||
|
||||
1F46D 1F9B3; Emoji_Modifier_Sequence; # 👭🦳 auto-generated
|
||||
|
||||
1F9CD 1F9B0; Emoji_Modifier_Sequence; # 🧍🦰 auto-generated
|
||||
|
||||
1F9CD 1F9B3; Emoji_Modifier_Sequence; # 🧍🦳 auto-generated
|
||||
|
||||
1F9CE 1F9B0; Emoji_Modifier_Sequence; # 🧎🦰 auto-generated
|
||||
|
||||
1F9CE 1F9B3; Emoji_Modifier_Sequence; # 🧎🦳 auto-generated
|
||||
|
||||
1F9CF 1F9B0; Emoji_Modifier_Sequence; # 🧏🦰 auto-generated
|
||||
|
||||
1F9CF 1F9B3; Emoji_Modifier_Sequence; # 🧏🦳 auto-generated
|
||||
|
|
508
emojicompat/unicode/additions/emoji-zwj-sequences.txt
Normal file
|
@ -0,0 +1,508 @@
|
|||
# © 2017 Unicode®, Inc.
|
||||
# Unicode and the Unicode Logo are registered trademarks of Unicode, Inc. in the U.S. and other countries.
|
||||
# For terms of use, see http://www.unicode.org/terms_of_use.html
|
||||
|
||||
# Note: this file is not published by Unicode, but since its format follows Unicode's format, it's
|
||||
# basically derived from Unicode data files.
|
||||
|
||||
# Backward compatibility with earlier platforms that supported these
|
||||
1F93C 1F3FB 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; women wrestling: light skin tone
|
||||
1F93C 1F3FB 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; men wrestling: light skin tone
|
||||
1F93C 1F3FC 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; women wrestling: medium-light skin tone
|
||||
1F93C 1F3FC 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; men wrestling: medium-light skin tone
|
||||
1F93C 1F3FD 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; women wrestling: medium skin tone
|
||||
1F93C 1F3FD 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; men wrestling: medium skin tone
|
||||
1F93C 1F3FE 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; women wrestling: medium-dark skin tone
|
||||
1F93C 1F3FE 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; men wrestling: medium-dark skin tone
|
||||
1F93C 1F3FF 200D 2640 FE0F ; Emoji_ZWJ_Sequence ; women wrestling: dark skin tone
|
||||
1F93C 1F3FF 200D 2642 FE0F ; Emoji_ZWJ_Sequence ; men wrestling: dark skin tone
|
||||
|
||||
1F3CB 200D 2640; Emoji_ZWJ_Sequence; # 🏋♀ auto-generated
|
||||
1F3CB 200D 2642; Emoji_ZWJ_Sequence; # 🏋♂ auto-generated
|
||||
1F3CC 200D 2640; Emoji_ZWJ_Sequence; # 🏌♀ auto-generated
|
||||
1F3CC 200D 2642; Emoji_ZWJ_Sequence; # 🏌♂ auto-generated
|
||||
1F3F3 200D 1F308; Emoji_ZWJ_Sequence; # 🏳🌈 auto-generated
|
||||
1F441 200D 1F5E8; Emoji_ZWJ_Sequence; # 👁🗨 auto-generated
|
||||
1F468 1F9B0 200D 1F9B1; Emoji_ZWJ_Sequence; # 👨🦰🦱 auto-generated
|
||||
1F468 1F9B3 200D 1F9B1; Emoji_ZWJ_Sequence; # 👨🦳🦱 auto-generated
|
||||
1F468 200D 2764 200D 1F468; Emoji_ZWJ_Sequence; # 👨❤👨 auto-generated
|
||||
1F468 200D 2764 200D 1F48B 200D 1F468; Emoji_ZWJ_Sequence; # 👨❤💋👨 auto-generated
|
||||
1F469 1F9B0 200D 1F9B1; Emoji_ZWJ_Sequence; # 👩🦰🦱 auto-generated
|
||||
1F469 1F9B3 200D 1F9B1; Emoji_ZWJ_Sequence; # 👩🦳🦱 auto-generated
|
||||
1F469 200D 2764 200D 1F468; Emoji_ZWJ_Sequence; # 👩❤👨 auto-generated
|
||||
1F469 200D 2764 200D 1F469; Emoji_ZWJ_Sequence; # 👩❤👩 auto-generated
|
||||
1F469 200D 2764 200D 1F48B 200D 1F468; Emoji_ZWJ_Sequence; # 👩❤💋👨 auto-generated
|
||||
1F469 200D 2764 200D 1F48B 200D 1F469; Emoji_ZWJ_Sequence; # 👩❤💋👩 auto-generated
|
||||
1F52B 200D 1F4A3; Emoji_ZWJ_Sequence; # 🔫💣 auto-generated
|
||||
1F52B 200D 2063 FE0F; Emoji_ZWJ_Sequence; # 🔫️ auto-generated
|
||||
1F575 200D 2640; Emoji_ZWJ_Sequence; # 🕵♀ auto-generated
|
||||
1F575 200D 2642; Emoji_ZWJ_Sequence; # 🕵♂ auto-generated
|
||||
1F644 200D 2063 FE0F; Emoji_ZWJ_Sequence; # 🙄️ auto-generated
|
||||
1F924 200D 2063 FE0F; Emoji_ZWJ_Sequence; # 🤤️ auto-generated
|
||||
1F928 200D 1F922; Emoji_ZWJ_Sequence; # 🤨🤢 auto-generated
|
||||
1F92A 200D 2063 FE0F; Emoji_ZWJ_Sequence; # 🤪️ auto-generated
|
||||
1F95A 200D 1F3A8; Emoji_ZWJ_Sequence; # 🥚🎨 auto-generated
|
||||
1F9B8 1F9B0 200D 2640; Emoji_ZWJ_Sequence; # 🦸🦰♀ auto-generated
|
||||
1F9B8 1F9B0 200D 2642; Emoji_ZWJ_Sequence; # 🦸🦰♂ auto-generated
|
||||
1F9B8 1F9B3 200D 2640; Emoji_ZWJ_Sequence; # 🦸🦳♀ auto-generated
|
||||
1F9B8 1F9B3 200D 2642; Emoji_ZWJ_Sequence; # 🦸🦳♂ auto-generated
|
||||
1F9B9 1F9B0 200D 2640; Emoji_ZWJ_Sequence; # 🦹🦰♀ auto-generated
|
||||
1F9B9 1F9B0 200D 2642; Emoji_ZWJ_Sequence; # 🦹🦰♂ auto-generated
|
||||
1F9B9 1F9B3 200D 2640; Emoji_ZWJ_Sequence; # 🦹🦳♀ auto-generated
|
||||
1F9B9 1F9B3 200D 2642; Emoji_ZWJ_Sequence; # 🦹🦳♂ auto-generated
|
||||
1F9D8 1F9B0 200D 2640; Emoji_ZWJ_Sequence; # 🧘🦰♀ auto-generated
|
||||
1F9D8 1F9B0 200D 2642; Emoji_ZWJ_Sequence; # 🧘🦰♂ auto-generated
|
||||
1F9D8 1F9B3 200D 2640; Emoji_ZWJ_Sequence; # 🧘🦳♀ auto-generated
|
||||
1F9D8 1F9B3 200D 2642; Emoji_ZWJ_Sequence; # 🧘🦳♂ auto-generated
|
||||
26F9 200D 2640; Emoji_ZWJ_Sequence; # ⛹♀ auto-generated
|
||||
26F9 200D 2642; Emoji_ZWJ_Sequence; # ⛹♂ auto-generated
|
||||
|
||||
1F3C3 1F9B0 200D 2640; Emoji_ZWJ_Sequence; # 🏃🦰♀ auto-generated
|
||||
|
||||
1F3C3 1F9B0 200D 2642; Emoji_ZWJ_Sequence; # 🏃🦰♂ auto-generated
|
||||
|
||||
1F3C3 1F9B3 200D 2640; Emoji_ZWJ_Sequence; # 🏃🦳♀ auto-generated
|
||||
|
||||
1F3C3 1F9B3 200D 2642; Emoji_ZWJ_Sequence; # 🏃🦳♂ auto-generated
|
||||
|
||||
1F3C4 1F9B0 200D 2640; Emoji_ZWJ_Sequence; # 🏄🦰♀ auto-generated
|
||||
|
||||
1F3C4 1F9B0 200D 2642; Emoji_ZWJ_Sequence; # 🏄🦰♂ auto-generated
|
||||
|
||||
1F3C4 1F9B3 200D 2640; Emoji_ZWJ_Sequence; # 🏄🦳♀ auto-generated
|
||||
|
||||
1F3C4 1F9B3 200D 2642; Emoji_ZWJ_Sequence; # 🏄🦳♂ auto-generated
|
||||
|
||||
1F3CA 1F9B0 200D 2640; Emoji_ZWJ_Sequence; # 🏊🦰♀ auto-generated
|
||||
|
||||
1F3CA 1F9B0 200D 2642; Emoji_ZWJ_Sequence; # 🏊🦰♂ auto-generated
|
||||
|
||||
1F3CA 1F9B3 200D 2640; Emoji_ZWJ_Sequence; # 🏊🦳♀ auto-generated
|
||||
|
||||
1F3CA 1F9B3 200D 2642; Emoji_ZWJ_Sequence; # 🏊🦳♂ auto-generated
|
||||
|
||||
1F3CB 1F9B0 200D 2640; Emoji_ZWJ_Sequence; # 🏋🦰♀ auto-generated
|
||||
|
||||
1F3CB 1F9B0 200D 2642; Emoji_ZWJ_Sequence; # 🏋🦰♂ auto-generated
|
||||
|
||||
1F3CB 1F9B3 200D 2640; Emoji_ZWJ_Sequence; # 🏋🦳♀ auto-generated
|
||||
|
||||
1F3CB 1F9B3 200D 2642; Emoji_ZWJ_Sequence; # 🏋🦳♂ auto-generated
|
||||
|
||||
1F3CC 1F9B0 200D 2640; Emoji_ZWJ_Sequence; # 🏌🦰♀ auto-generated
|
||||
|
||||
1F3CC 1F9B0 200D 2642; Emoji_ZWJ_Sequence; # 🏌🦰♂ auto-generated
|
||||
|
||||
1F3CC 1F9B3 200D 2640; Emoji_ZWJ_Sequence; # 🏌🦳♀ auto-generated
|
||||
|
||||
1F3CC 1F9B3 200D 2642; Emoji_ZWJ_Sequence; # 🏌🦳♂ auto-generated
|
||||
|
||||
1F468 1F9B0 200D 1F33E; Emoji_ZWJ_Sequence; # 👨🦰🌾 auto-generated
|
||||
|
||||
1F468 1F9B0 200D 1F373; Emoji_ZWJ_Sequence; # 👨🦰🍳 auto-generated
|
||||
|
||||
1F468 1F9B0 200D 1F393; Emoji_ZWJ_Sequence; # 👨🦰🎓 auto-generated
|
||||
|
||||
1F468 1F9B0 200D 1F3A4; Emoji_ZWJ_Sequence; # 👨🦰🎤 auto-generated
|
||||
|
||||
1F468 1F9B0 200D 1F3A8; Emoji_ZWJ_Sequence; # 👨🦰🎨 auto-generated
|
||||
|
||||
1F468 1F9B0 200D 1F3EB; Emoji_ZWJ_Sequence; # 👨🦰🏫 auto-generated
|
||||
|
||||
1F468 1F9B0 200D 1F3ED; Emoji_ZWJ_Sequence; # 👨🦰🏭 auto-generated
|
||||
|
||||
1F468 1F9B0 200D 1F4BB; Emoji_ZWJ_Sequence; # 👨🦰💻 auto-generated
|
||||
|
||||
1F468 1F9B0 200D 1F4BC; Emoji_ZWJ_Sequence; # 👨🦰💼 auto-generated
|
||||
|
||||
1F468 1F9B0 200D 1F527; Emoji_ZWJ_Sequence; # 👨🦰🔧 auto-generated
|
||||
|
||||
1F468 1F9B0 200D 1F52C; Emoji_ZWJ_Sequence; # 👨🦰🔬 auto-generated
|
||||
|
||||
1F468 1F9B0 200D 1F680; Emoji_ZWJ_Sequence; # 👨🦰🚀 auto-generated
|
||||
|
||||
1F468 1F9B0 200D 1F692; Emoji_ZWJ_Sequence; # 👨🦰🚒 auto-generated
|
||||
|
||||
1F468 1F9B0 200D 2695; Emoji_ZWJ_Sequence; # 👨🦰⚕ auto-generated
|
||||
|
||||
1F468 1F9B0 200D 2696; Emoji_ZWJ_Sequence; # 👨🦰⚖ auto-generated
|
||||
|
||||
1F468 1F9B0 200D 2708; Emoji_ZWJ_Sequence; # 👨🦰✈ auto-generated
|
||||
|
||||
1F468 1F9B3 200D 1F33E; Emoji_ZWJ_Sequence; # 👨🦳🌾 auto-generated
|
||||
|
||||
1F468 1F9B3 200D 1F373; Emoji_ZWJ_Sequence; # 👨🦳🍳 auto-generated
|
||||
|
||||
1F468 1F9B3 200D 1F393; Emoji_ZWJ_Sequence; # 👨🦳🎓 auto-generated
|
||||
|
||||
1F468 1F9B3 200D 1F3A4; Emoji_ZWJ_Sequence; # 👨🦳🎤 auto-generated
|
||||
|
||||
1F468 1F9B3 200D 1F3A8; Emoji_ZWJ_Sequence; # 👨🦳🎨 auto-generated
|
||||
|
||||
1F468 1F9B3 200D 1F3EB; Emoji_ZWJ_Sequence; # 👨🦳🏫 auto-generated
|
||||
|
||||
1F468 1F9B3 200D 1F3ED; Emoji_ZWJ_Sequence; # 👨🦳🏭 auto-generated
|
||||
|
||||
1F468 1F9B3 200D 1F4BB; Emoji_ZWJ_Sequence; # 👨🦳💻 auto-generated
|
||||
|
||||
1F468 1F9B3 200D 1F4BC; Emoji_ZWJ_Sequence; # 👨🦳💼 auto-generated
|
||||
|
||||
1F468 1F9B3 200D 1F527; Emoji_ZWJ_Sequence; # 👨🦳🔧 auto-generated
|
||||
|
||||
1F468 1F9B3 200D 1F52C; Emoji_ZWJ_Sequence; # 👨🦳🔬 auto-generated
|
||||
|
||||
1F468 1F9B3 200D 1F680; Emoji_ZWJ_Sequence; # 👨🦳🚀 auto-generated
|
||||
|
||||
1F468 1F9B3 200D 1F692; Emoji_ZWJ_Sequence; # 👨🦳🚒 auto-generated
|
||||
|
||||
1F468 1F9B3 200D 2695; Emoji_ZWJ_Sequence; # 👨🦳⚕ auto-generated
|
||||
|
||||
1F468 1F9B3 200D 2696; Emoji_ZWJ_Sequence; # 👨🦳⚖ auto-generated
|
||||
|
||||
1F468 1F9B3 200D 2708; Emoji_ZWJ_Sequence; # 👨🦳✈ auto-generated
|
||||
|
||||
1F469 1F9B0 200D 1F33E; Emoji_ZWJ_Sequence; # 👩🦰🌾 auto-generated
|
||||
|
||||
1F469 1F9B0 200D 1F373; Emoji_ZWJ_Sequence; # 👩🦰🍳 auto-generated
|
||||
|
||||
1F469 1F9B0 200D 1F393; Emoji_ZWJ_Sequence; # 👩🦰🎓 auto-generated
|
||||
|
||||
1F469 1F9B0 200D 1F3A4; Emoji_ZWJ_Sequence; # 👩🦰🎤 auto-generated
|
||||
|
||||
1F469 1F9B0 200D 1F3A8; Emoji_ZWJ_Sequence; # 👩🦰🎨 auto-generated
|
||||
|
||||
1F469 1F9B0 200D 1F3EB; Emoji_ZWJ_Sequence; # 👩🦰🏫 auto-generated
|
||||
|
||||
1F469 1F9B0 200D 1F3ED; Emoji_ZWJ_Sequence; # 👩🦰🏭 auto-generated
|
||||
|
||||
1F469 1F9B0 200D 1F4BB; Emoji_ZWJ_Sequence; # 👩🦰💻 auto-generated
|
||||
|
||||
1F469 1F9B0 200D 1F4BC; Emoji_ZWJ_Sequence; # 👩🦰💼 auto-generated
|
||||
|
||||
1F469 1F9B0 200D 1F527; Emoji_ZWJ_Sequence; # 👩🦰🔧 auto-generated
|
||||
|
||||
1F469 1F9B0 200D 1F52C; Emoji_ZWJ_Sequence; # 👩🦰🔬 auto-generated
|
||||
|
||||
1F469 1F9B0 200D 1F680; Emoji_ZWJ_Sequence; # 👩🦰🚀 auto-generated
|
||||
|
||||
1F469 1F9B0 200D 1F692; Emoji_ZWJ_Sequence; # 👩🦰🚒 auto-generated
|
||||
|
||||
1F469 1F9B0 200D 2695; Emoji_ZWJ_Sequence; # 👩🦰⚕ auto-generated
|
||||
|
||||
1F469 1F9B0 200D 2696; Emoji_ZWJ_Sequence; # 👩🦰⚖ auto-generated
|
||||
|
||||
1F469 1F9B0 200D 2708; Emoji_ZWJ_Sequence; # 👩🦰✈ auto-generated
|
||||
|
||||
1F469 1F9B3 200D 1F33E; Emoji_ZWJ_Sequence; # 👩🦳🌾 auto-generated
|
||||
|
||||
1F469 1F9B3 200D 1F373; Emoji_ZWJ_Sequence; # 👩🦳🍳 auto-generated
|
||||
|
||||
1F469 1F9B3 200D 1F393; Emoji_ZWJ_Sequence; # 👩🦳🎓 auto-generated
|
||||
|
||||
1F469 1F9B3 200D 1F3A4; Emoji_ZWJ_Sequence; # 👩🦳🎤 auto-generated
|
||||
|
||||
1F469 1F9B3 200D 1F3A8; Emoji_ZWJ_Sequence; # 👩🦳🎨 auto-generated
|
||||
|
||||
1F469 1F9B3 200D 1F3EB; Emoji_ZWJ_Sequence; # 👩🦳🏫 auto-generated
|
||||
|
||||
1F469 1F9B3 200D 1F3ED; Emoji_ZWJ_Sequence; # 👩🦳🏭 auto-generated
|
||||
|
||||
1F469 1F9B3 200D 1F4BB; Emoji_ZWJ_Sequence; # 👩🦳💻 auto-generated
|
||||
|
||||
1F469 1F9B3 200D 1F4BC; Emoji_ZWJ_Sequence; # 👩🦳💼 auto-generated
|
||||
|
||||
1F469 1F9B3 200D 1F527; Emoji_ZWJ_Sequence; # 👩🦳🔧 auto-generated
|
||||
|
||||
1F469 1F9B3 200D 1F52C; Emoji_ZWJ_Sequence; # 👩🦳🔬 auto-generated
|
||||
|
||||
1F469 1F9B3 200D 1F680; Emoji_ZWJ_Sequence; # 👩🦳🚀 auto-generated
|
||||
|
||||
1F469 1F9B3 200D 1F692; Emoji_ZWJ_Sequence; # 👩🦳🚒 auto-generated
|
||||
|
||||
1F469 1F9B3 200D 2695; Emoji_ZWJ_Sequence; # 👩🦳⚕ auto-generated
|
||||
|
||||
1F469 1F9B3 200D 2696; Emoji_ZWJ_Sequence; # 👩🦳⚖ auto-generated
|
||||
|
||||
1F469 1F9B3 200D 2708; Emoji_ZWJ_Sequence; # 👩🦳✈ auto-generated
|
||||
|
||||
1F46E 1F9B0 200D 2640; Emoji_ZWJ_Sequence; # 👮🦰♀ auto-generated
|
||||
|
||||
1F46E 1F9B0 200D 2642; Emoji_ZWJ_Sequence; # 👮🦰♂ auto-generated
|
||||
|
||||
1F46E 1F9B3 200D 2640; Emoji_ZWJ_Sequence; # 👮🦳♀ auto-generated
|
||||
|
||||
1F46E 1F9B3 200D 2642; Emoji_ZWJ_Sequence; # 👮🦳♂ auto-generated
|
||||
|
||||
1F473 1F9B0 200D 2640; Emoji_ZWJ_Sequence; # 👳🦰♀ auto-generated
|
||||
|
||||
1F473 1F9B3 200D 2640; Emoji_ZWJ_Sequence; # 👳🦳♀ auto-generated
|
||||
|
||||
1F477 1F9B0 200D 2640; Emoji_ZWJ_Sequence; # 👷🦰♀ auto-generated
|
||||
|
||||
1F477 1F9B0 200D 2642; Emoji_ZWJ_Sequence; # 👷🦰♂ auto-generated
|
||||
|
||||
1F477 1F9B3 200D 2640; Emoji_ZWJ_Sequence; # 👷🦳♀ auto-generated
|
||||
|
||||
1F477 1F9B3 200D 2642; Emoji_ZWJ_Sequence; # 👷🦳♂ auto-generated
|
||||
|
||||
1F481 1F9B0 200D 2640; Emoji_ZWJ_Sequence; # 💁🦰♀ auto-generated
|
||||
|
||||
1F481 1F9B0 200D 2642; Emoji_ZWJ_Sequence; # 💁🦰♂ auto-generated
|
||||
|
||||
1F481 1F9B3 200D 2640; Emoji_ZWJ_Sequence; # 💁🦳♀ auto-generated
|
||||
|
||||
1F481 1F9B3 200D 2642; Emoji_ZWJ_Sequence; # 💁🦳♂ auto-generated
|
||||
|
||||
1F482 1F9B0 200D 2640; Emoji_ZWJ_Sequence; # 💂🦰♀ auto-generated
|
||||
|
||||
1F482 1F9B0 200D 2642; Emoji_ZWJ_Sequence; # 💂🦰♂ auto-generated
|
||||
|
||||
1F482 1F9B3 200D 2640; Emoji_ZWJ_Sequence; # 💂🦳♀ auto-generated
|
||||
|
||||
1F482 1F9B3 200D 2642; Emoji_ZWJ_Sequence; # 💂🦳♂ auto-generated
|
||||
|
||||
1F486 1F9B0 200D 2640; Emoji_ZWJ_Sequence; # 💆🦰♀ auto-generated
|
||||
|
||||
1F486 1F9B0 200D 2642; Emoji_ZWJ_Sequence; # 💆🦰♂ auto-generated
|
||||
|
||||
1F486 1F9B3 200D 2640; Emoji_ZWJ_Sequence; # 💆🦳♀ auto-generated
|
||||
|
||||
1F486 1F9B3 200D 2642; Emoji_ZWJ_Sequence; # 💆🦳♂ auto-generated
|
||||
|
||||
1F487 1F9B0 200D 2640; Emoji_ZWJ_Sequence; # 💇🦰♀ auto-generated
|
||||
|
||||
1F487 1F9B0 200D 2642; Emoji_ZWJ_Sequence; # 💇🦰♂ auto-generated
|
||||
|
||||
1F487 1F9B3 200D 2640; Emoji_ZWJ_Sequence; # 💇🦳♀ auto-generated
|
||||
|
||||
1F487 1F9B3 200D 2642; Emoji_ZWJ_Sequence; # 💇🦳♂ auto-generated
|
||||
|
||||
1F575 1F9B0 200D 2640; Emoji_ZWJ_Sequence; # 🕵🦰♀ auto-generated
|
||||
|
||||
1F575 1F9B0 200D 2642; Emoji_ZWJ_Sequence; # 🕵🦰♂ auto-generated
|
||||
|
||||
1F575 1F9B3 200D 2640; Emoji_ZWJ_Sequence; # 🕵🦳♀ auto-generated
|
||||
|
||||
1F575 1F9B3 200D 2642; Emoji_ZWJ_Sequence; # 🕵🦳♂ auto-generated
|
||||
|
||||
1F602 200D 2063 FE0F; Emoji_ZWJ_Sequence; # 😂️ auto-generated
|
||||
|
||||
1F645 1F9B0 200D 2640; Emoji_ZWJ_Sequence; # 🙅🦰♀ auto-generated
|
||||
|
||||
1F645 1F9B0 200D 2642; Emoji_ZWJ_Sequence; # 🙅🦰♂ auto-generated
|
||||
|
||||
1F645 1F9B3 200D 2640; Emoji_ZWJ_Sequence; # 🙅🦳♀ auto-generated
|
||||
|
||||
1F645 1F9B3 200D 2642; Emoji_ZWJ_Sequence; # 🙅🦳♂ auto-generated
|
||||
|
||||
1F646 1F9B0 200D 2640; Emoji_ZWJ_Sequence; # 🙆🦰♀ auto-generated
|
||||
|
||||
1F646 1F9B0 200D 2642; Emoji_ZWJ_Sequence; # 🙆🦰♂ auto-generated
|
||||
|
||||
1F646 1F9B3 200D 2640; Emoji_ZWJ_Sequence; # 🙆🦳♀ auto-generated
|
||||
|
||||
1F646 1F9B3 200D 2642; Emoji_ZWJ_Sequence; # 🙆🦳♂ auto-generated
|
||||
|
||||
1F647 1F9B0 200D 2640; Emoji_ZWJ_Sequence; # 🙇🦰♀ auto-generated
|
||||
|
||||
1F647 1F9B0 200D 2642; Emoji_ZWJ_Sequence; # 🙇🦰♂ auto-generated
|
||||
|
||||
1F647 1F9B3 200D 2640; Emoji_ZWJ_Sequence; # 🙇🦳♀ auto-generated
|
||||
|
||||
1F647 1F9B3 200D 2642; Emoji_ZWJ_Sequence; # 🙇🦳♂ auto-generated
|
||||
|
||||
1F64B 1F9B0 200D 2640; Emoji_ZWJ_Sequence; # 🙋🦰♀ auto-generated
|
||||
|
||||
1F64B 1F9B0 200D 2642; Emoji_ZWJ_Sequence; # 🙋🦰♂ auto-generated
|
||||
|
||||
1F64B 1F9B3 200D 2640; Emoji_ZWJ_Sequence; # 🙋🦳♀ auto-generated
|
||||
|
||||
1F64B 1F9B3 200D 2642; Emoji_ZWJ_Sequence; # 🙋🦳♂ auto-generated
|
||||
|
||||
1F64D 1F9B0 200D 2640; Emoji_ZWJ_Sequence; # 🙍🦰♀ auto-generated
|
||||
|
||||
1F64D 1F9B0 200D 2642; Emoji_ZWJ_Sequence; # 🙍🦰♂ auto-generated
|
||||
|
||||
1F64D 1F9B3 200D 2640; Emoji_ZWJ_Sequence; # 🙍🦳♀ auto-generated
|
||||
|
||||
1F64D 1F9B3 200D 2642; Emoji_ZWJ_Sequence; # 🙍🦳♂ auto-generated
|
||||
|
||||
1F64E 1F9B0 200D 2640; Emoji_ZWJ_Sequence; # 🙎🦰♀ auto-generated
|
||||
|
||||
1F64E 1F9B0 200D 2642; Emoji_ZWJ_Sequence; # 🙎🦰♂ auto-generated
|
||||
|
||||
1F64E 1F9B3 200D 2640; Emoji_ZWJ_Sequence; # 🙎🦳♀ auto-generated
|
||||
|
||||
1F64E 1F9B3 200D 2642; Emoji_ZWJ_Sequence; # 🙎🦳♂ auto-generated
|
||||
|
||||
1F6A3 1F9B0 200D 2640; Emoji_ZWJ_Sequence; # 🚣🦰♀ auto-generated
|
||||
|
||||
1F6A3 1F9B0 200D 2642; Emoji_ZWJ_Sequence; # 🚣🦰♂ auto-generated
|
||||
|
||||
1F6A3 1F9B3 200D 2640; Emoji_ZWJ_Sequence; # 🚣🦳♀ auto-generated
|
||||
|
||||
1F6A3 1F9B3 200D 2642; Emoji_ZWJ_Sequence; # 🚣🦳♂ auto-generated
|
||||
|
||||
1F6B4 1F9B0 200D 2640; Emoji_ZWJ_Sequence; # 🚴🦰♀ auto-generated
|
||||
|
||||
1F6B4 1F9B0 200D 2642; Emoji_ZWJ_Sequence; # 🚴🦰♂ auto-generated
|
||||
|
||||
1F6B4 1F9B3 200D 2640; Emoji_ZWJ_Sequence; # 🚴🦳♀ auto-generated
|
||||
|
||||
1F6B4 1F9B3 200D 2642; Emoji_ZWJ_Sequence; # 🚴🦳♂ auto-generated
|
||||
|
||||
1F6B5 1F9B0 200D 2640; Emoji_ZWJ_Sequence; # 🚵🦰♀ auto-generated
|
||||
|
||||
1F6B5 1F9B0 200D 2642; Emoji_ZWJ_Sequence; # 🚵🦰♂ auto-generated
|
||||
|
||||
1F6B5 1F9B3 200D 2640; Emoji_ZWJ_Sequence; # 🚵🦳♀ auto-generated
|
||||
|
||||
1F6B5 1F9B3 200D 2642; Emoji_ZWJ_Sequence; # 🚵🦳♂ auto-generated
|
||||
|
||||
1F6B6 1F9B0 200D 2640; Emoji_ZWJ_Sequence; # 🚶🦰♀ auto-generated
|
||||
|
||||
1F6B6 1F9B0 200D 2642; Emoji_ZWJ_Sequence; # 🚶🦰♂ auto-generated
|
||||
|
||||
1F6B6 1F9B3 200D 2640; Emoji_ZWJ_Sequence; # 🚶🦳♀ auto-generated
|
||||
|
||||
1F6B6 1F9B3 200D 2642; Emoji_ZWJ_Sequence; # 🚶🦳♂ auto-generated
|
||||
|
||||
1F926 1F9B0 200D 2640; Emoji_ZWJ_Sequence; # 🤦🦰♀ auto-generated
|
||||
|
||||
1F926 1F9B0 200D 2642; Emoji_ZWJ_Sequence; # 🤦🦰♂ auto-generated
|
||||
|
||||
1F926 1F9B3 200D 2640; Emoji_ZWJ_Sequence; # 🤦🦳♀ auto-generated
|
||||
|
||||
1F926 1F9B3 200D 2642; Emoji_ZWJ_Sequence; # 🤦🦳♂ auto-generated
|
||||
|
||||
1F937 1F9B0 200D 2640; Emoji_ZWJ_Sequence; # 🤷🦰♀ auto-generated
|
||||
|
||||
1F937 1F9B0 200D 2642; Emoji_ZWJ_Sequence; # 🤷🦰♂ auto-generated
|
||||
|
||||
1F937 1F9B3 200D 2640; Emoji_ZWJ_Sequence; # 🤷🦳♀ auto-generated
|
||||
|
||||
1F937 1F9B3 200D 2642; Emoji_ZWJ_Sequence; # 🤷🦳♂ auto-generated
|
||||
|
||||
1F938 1F9B0 200D 2640; Emoji_ZWJ_Sequence; # 🤸🦰♀ auto-generated
|
||||
|
||||
1F938 1F9B0 200D 2642; Emoji_ZWJ_Sequence; # 🤸🦰♂ auto-generated
|
||||
|
||||
1F938 1F9B3 200D 2640; Emoji_ZWJ_Sequence; # 🤸🦳♀ auto-generated
|
||||
|
||||
1F938 1F9B3 200D 2642; Emoji_ZWJ_Sequence; # 🤸🦳♂ auto-generated
|
||||
|
||||
1F939 1F9B0 200D 2640; Emoji_ZWJ_Sequence; # 🤹🦰♀ auto-generated
|
||||
|
||||
1F939 1F9B0 200D 2642; Emoji_ZWJ_Sequence; # 🤹🦰♂ auto-generated
|
||||
|
||||
1F939 1F9B3 200D 2640; Emoji_ZWJ_Sequence; # 🤹🦳♀ auto-generated
|
||||
|
||||
1F939 1F9B3 200D 2642; Emoji_ZWJ_Sequence; # 🤹🦳♂ auto-generated
|
||||
|
||||
1F93C 1F9B0 200D 2640; Emoji_ZWJ_Sequence; # 🤼🦰♀ auto-generated
|
||||
|
||||
1F93C 1F9B0 200D 2642; Emoji_ZWJ_Sequence; # 🤼🦰♂ auto-generated
|
||||
|
||||
1F93C 1F9B3 200D 2640; Emoji_ZWJ_Sequence; # 🤼🦳♀ auto-generated
|
||||
|
||||
1F93C 1F9B3 200D 2642; Emoji_ZWJ_Sequence; # 🤼🦳♂ auto-generated
|
||||
|
||||
1F93D 1F9B0 200D 2640; Emoji_ZWJ_Sequence; # 🤽🦰♀ auto-generated
|
||||
|
||||
1F93D 1F9B0 200D 2642; Emoji_ZWJ_Sequence; # 🤽🦰♂ auto-generated
|
||||
|
||||
1F93D 1F9B3 200D 2640; Emoji_ZWJ_Sequence; # 🤽🦳♀ auto-generated
|
||||
|
||||
1F93D 1F9B3 200D 2642; Emoji_ZWJ_Sequence; # 🤽🦳♂ auto-generated
|
||||
|
||||
1F93E 1F9B0 200D 2640; Emoji_ZWJ_Sequence; # 🤾🦰♀ auto-generated
|
||||
|
||||
1F93E 1F9B0 200D 2642; Emoji_ZWJ_Sequence; # 🤾🦰♂ auto-generated
|
||||
|
||||
1F93E 1F9B3 200D 2640; Emoji_ZWJ_Sequence; # 🤾🦳♀ auto-generated
|
||||
|
||||
1F93E 1F9B3 200D 2642; Emoji_ZWJ_Sequence; # 🤾🦳♂ auto-generated
|
||||
|
||||
1F9B8 200D 2063 FE0F; Emoji_ZWJ_Sequence; # 🦸️ auto-generated
|
||||
|
||||
1F9B9 200D 2063 FE0F; Emoji_ZWJ_Sequence; # 🦹️ auto-generated
|
||||
|
||||
1F9D6 1F9B0 200D 2640; Emoji_ZWJ_Sequence; # 🧖🦰♀ auto-generated
|
||||
|
||||
1F9D6 1F9B0 200D 2642; Emoji_ZWJ_Sequence; # 🧖🦰♂ auto-generated
|
||||
|
||||
1F9D6 1F9B3 200D 2640; Emoji_ZWJ_Sequence; # 🧖🦳♀ auto-generated
|
||||
|
||||
1F9D6 1F9B3 200D 2642; Emoji_ZWJ_Sequence; # 🧖🦳♂ auto-generated
|
||||
|
||||
26F9 1F9B0 200D 2640; Emoji_ZWJ_Sequence; # ⛹🦰♀ auto-generated
|
||||
|
||||
26F9 1F9B0 200D 2642; Emoji_ZWJ_Sequence; # ⛹🦰♂ auto-generated
|
||||
|
||||
26F9 1F9B3 200D 2640; Emoji_ZWJ_Sequence; # ⛹🦳♀ auto-generated
|
||||
|
||||
26F9 1F9B3 200D 2642; Emoji_ZWJ_Sequence; # ⛹🦳♂ auto-generated
|
||||
|
||||
1F3F3 FE0F 200D 26A7; Emoji_ZWJ_Sequence; # 🏳️⚧ auto-generated
|
||||
|
||||
1F468 1F9B0 200D 1F9AF; Emoji_ZWJ_Sequence; # 👨🦰🦯 auto-generated
|
||||
|
||||
1F468 1F9B0 200D 1F9BC; Emoji_ZWJ_Sequence; # 👨🦰🦼 auto-generated
|
||||
|
||||
1F468 1F9B0 200D 1F9BD; Emoji_ZWJ_Sequence; # 👨🦰🦽 auto-generated
|
||||
|
||||
1F468 1F9B3 200D 1F9AF; Emoji_ZWJ_Sequence; # 👨🦳🦯 auto-generated
|
||||
|
||||
1F468 1F9B3 200D 1F9BC; Emoji_ZWJ_Sequence; # 👨🦳🦼 auto-generated
|
||||
|
||||
1F468 1F9B3 200D 1F9BD; Emoji_ZWJ_Sequence; # 👨🦳🦽 auto-generated
|
||||
|
||||
1F469 1F9B0 200D 1F9AF; Emoji_ZWJ_Sequence; # 👩🦰🦯 auto-generated
|
||||
|
||||
1F469 1F9B0 200D 1F9BC; Emoji_ZWJ_Sequence; # 👩🦰🦼 auto-generated
|
||||
|
||||
1F469 1F9B0 200D 1F9BD; Emoji_ZWJ_Sequence; # 👩🦰🦽 auto-generated
|
||||
|
||||
1F469 1F9B3 200D 1F9AF; Emoji_ZWJ_Sequence; # 👩🦳🦯 auto-generated
|
||||
|
||||
1F469 1F9B3 200D 1F9BC; Emoji_ZWJ_Sequence; # 👩🦳🦼 auto-generated
|
||||
|
||||
1F469 1F9B3 200D 1F9BD; Emoji_ZWJ_Sequence; # 👩🦳🦽 auto-generated
|
||||
|
||||
1F9CD 1F9B0 200D 2640; Emoji_ZWJ_Sequence; # 🧍🦰♀ auto-generated
|
||||
|
||||
1F9CD 1F9B0 200D 2642; Emoji_ZWJ_Sequence; # 🧍🦰♂ auto-generated
|
||||
|
||||
1F9CD 1F9B3 200D 2640; Emoji_ZWJ_Sequence; # 🧍🦳♀ auto-generated
|
||||
|
||||
1F9CD 1F9B3 200D 2642; Emoji_ZWJ_Sequence; # 🧍🦳♂ auto-generated
|
||||
|
||||
1F9CE 1F9B0 200D 2640; Emoji_ZWJ_Sequence; # 🧎🦰♀ auto-generated
|
||||
|
||||
1F9CE 1F9B0 200D 2642; Emoji_ZWJ_Sequence; # 🧎🦰♂ auto-generated
|
||||
|
||||
1F9CE 1F9B3 200D 2640; Emoji_ZWJ_Sequence; # 🧎🦳♀ auto-generated
|
||||
|
||||
1F9CE 1F9B3 200D 2642; Emoji_ZWJ_Sequence; # 🧎🦳♂ auto-generated
|
||||
|
||||
1F9CF 1F9B0 200D 2640; Emoji_ZWJ_Sequence; # 🧏🦰♀ auto-generated
|
||||
|
||||
1F9CF 1F9B0 200D 2642; Emoji_ZWJ_Sequence; # 🧏🦰♂ auto-generated
|
||||
|
||||
1F9CF 1F9B3 200D 2640; Emoji_ZWJ_Sequence; # 🧏🦳♀ auto-generated
|
||||
|
||||
1F9CF 1F9B3 200D 2642; Emoji_ZWJ_Sequence; # 🧏🦳♂ auto-generated
|
||||
|
||||
1F9D1 1F3FB 200D 1F91D 200D 1F9D1; Emoji_ZWJ_Sequence; # 🧑🏻🤝🧑 auto-generated
|
||||
|
||||
1F9D1 1F3FC 200D 1F91D 200D 1F9D1; Emoji_ZWJ_Sequence; # 🧑🏼🤝🧑 auto-generated
|
||||
|
||||
1F9D1 1F3FD 200D 1F91D 200D 1F9D1; Emoji_ZWJ_Sequence; # 🧑🏽🤝🧑 auto-generated
|
||||
|
||||
1F9D1 1F3FE 200D 1F91D 200D 1F9D1; Emoji_ZWJ_Sequence; # 🧑🏾🤝🧑 auto-generated
|
||||
|
||||
1F9D1 1F3FF 200D 1F91D 200D 1F9D1; Emoji_ZWJ_Sequence; # 🧑🏿🤝🧑 auto-generated
|
||||
|
||||
1F9D1 1F9B0 200D 1F91D 200D 1F9D1; Emoji_ZWJ_Sequence; # 🧑🦰🤝🧑 auto-generated
|
||||
|
||||
1F9D1 1F9B3 200D 1F91D 200D 1F9D1; Emoji_ZWJ_Sequence; # 🧑🦳🤝🧑 auto-generated
|
BIN
fonts/Blobmoji.ttf
Normal file
Before Width: | Height: | Size: 2.4 KiB After Width: | Height: | Size: 3 KiB |
Before Width: | Height: | Size: 3.5 KiB After Width: | Height: | Size: 2.5 KiB |
Before Width: | Height: | Size: 3.3 KiB After Width: | Height: | Size: 3.2 KiB |
Before Width: | Height: | Size: 1.6 KiB After Width: | Height: | Size: 2.1 KiB |
Before Width: | Height: | Size: 2.8 KiB After Width: | Height: | Size: 2.8 KiB |
Before Width: | Height: | Size: 3.3 KiB After Width: | Height: | Size: 3 KiB |
Before Width: | Height: | Size: 2.1 KiB After Width: | Height: | Size: 2.3 KiB |
Before Width: | Height: | Size: 2.8 KiB After Width: | Height: | Size: 2.9 KiB |
Before Width: | Height: | Size: 3.3 KiB After Width: | Height: | Size: 3.1 KiB |
Before Width: | Height: | Size: 2.1 KiB After Width: | Height: | Size: 2.3 KiB |
Before Width: | Height: | Size: 3.5 KiB After Width: | Height: | Size: 3.3 KiB |
Before Width: | Height: | Size: 3.4 KiB After Width: | Height: | Size: 3.1 KiB |
Before Width: | Height: | Size: 2.7 KiB After Width: | Height: | Size: 3.3 KiB |
Before Width: | Height: | Size: 2.2 KiB After Width: | Height: | Size: 2.7 KiB |
Before Width: | Height: | Size: 3.3 KiB After Width: | Height: | Size: 3.2 KiB |
Before Width: | Height: | Size: 2.2 KiB After Width: | Height: | Size: 2.8 KiB |
Before Width: | Height: | Size: 843 B After Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 767 B After Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 3.5 KiB After Width: | Height: | Size: 4 KiB |
Before Width: | Height: | Size: 817 B After Width: | Height: | Size: 1.6 KiB |
Before Width: | Height: | Size: 573 B After Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 2 KiB After Width: | Height: | Size: 1.9 KiB |
Before Width: | Height: | Size: 2.4 KiB After Width: | Height: | Size: 2.8 KiB |
Before Width: | Height: | Size: 692 B After Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 3.3 KiB After Width: | Height: | Size: 4.4 KiB |
Before Width: | Height: | Size: 2 KiB After Width: | Height: | Size: 2.8 KiB |
Before Width: | Height: | Size: 3.7 KiB After Width: | Height: | Size: 3.7 KiB |
Before Width: | Height: | Size: 1.7 KiB After Width: | Height: | Size: 2.3 KiB |
Before Width: | Height: | Size: 4.1 KiB After Width: | Height: | Size: 4.2 KiB |
Before Width: | Height: | Size: 2.3 KiB After Width: | Height: | Size: 3.1 KiB |
Before Width: | Height: | Size: 3.4 KiB After Width: | Height: | Size: 3.7 KiB |
Before Width: | Height: | Size: 721 B After Width: | Height: | Size: 1,008 B |
Before Width: | Height: | Size: 2.1 KiB After Width: | Height: | Size: 3 KiB |
Before Width: | Height: | Size: 3 KiB After Width: | Height: | Size: 3 KiB |
Before Width: | Height: | Size: 3.6 KiB After Width: | Height: | Size: 4.5 KiB |
Before Width: | Height: | Size: 3.3 KiB After Width: | Height: | Size: 4 KiB |
Before Width: | Height: | Size: 2.5 KiB After Width: | Height: | Size: 3.3 KiB |
Before Width: | Height: | Size: 2.2 KiB After Width: | Height: | Size: 2.6 KiB |
Before Width: | Height: | Size: 5 KiB After Width: | Height: | Size: 5 KiB |
BIN
png/128/emoji_u1f3c3_1f9b0.png
Normal file
After Width: | Height: | Size: 4.9 KiB |
BIN
png/128/emoji_u1f3c3_1f9b0_200d_2640.png
Normal file
After Width: | Height: | Size: 5.3 KiB |
BIN
png/128/emoji_u1f3c3_1f9b0_200d_2642.png
Normal file
After Width: | Height: | Size: 4.9 KiB |
BIN
png/128/emoji_u1f3c3_1f9b3.png
Normal file
After Width: | Height: | Size: 4.9 KiB |
BIN
png/128/emoji_u1f3c3_1f9b3_200d_2640.png
Normal file
After Width: | Height: | Size: 5.3 KiB |
BIN
png/128/emoji_u1f3c3_1f9b3_200d_2642.png
Normal file
After Width: | Height: | Size: 4.9 KiB |
Before Width: | Height: | Size: 5.4 KiB After Width: | Height: | Size: 5.4 KiB |
Before Width: | Height: | Size: 5 KiB After Width: | Height: | Size: 5 KiB |
Before Width: | Height: | Size: 8.8 KiB After Width: | Height: | Size: 8.8 KiB |
BIN
png/128/emoji_u1f3c4_1f9b0.png
Normal file
After Width: | Height: | Size: 8.7 KiB |
BIN
png/128/emoji_u1f3c4_1f9b0_200d_2640.png
Normal file
After Width: | Height: | Size: 9.1 KiB |
BIN
png/128/emoji_u1f3c4_1f9b0_200d_2642.png
Normal file
After Width: | Height: | Size: 8.7 KiB |
BIN
png/128/emoji_u1f3c4_1f9b3.png
Normal file
After Width: | Height: | Size: 8.8 KiB |
BIN
png/128/emoji_u1f3c4_1f9b3_200d_2640.png
Normal file
After Width: | Height: | Size: 9.1 KiB |
BIN
png/128/emoji_u1f3c4_1f9b3_200d_2642.png
Normal file
After Width: | Height: | Size: 8.8 KiB |
Before Width: | Height: | Size: 9.1 KiB After Width: | Height: | Size: 9.2 KiB |
Before Width: | Height: | Size: 8.8 KiB After Width: | Height: | Size: 8.8 KiB |
Before Width: | Height: | Size: 7.7 KiB After Width: | Height: | Size: 7.7 KiB |
Before Width: | Height: | Size: 15 KiB After Width: | Height: | Size: 7.7 KiB |
Before Width: | Height: | Size: 15 KiB After Width: | Height: | Size: 7.6 KiB |
Before Width: | Height: | Size: 15 KiB After Width: | Height: | Size: 7.6 KiB |
Before Width: | Height: | Size: 15 KiB After Width: | Height: | Size: 7.5 KiB |
Before Width: | Height: | Size: 15 KiB After Width: | Height: | Size: 7.5 KiB |
BIN
png/128/emoji_u1f3c7_1f9b0.png
Normal file
After Width: | Height: | Size: 7.6 KiB |
BIN
png/128/emoji_u1f3c7_1f9b3.png
Normal file
After Width: | Height: | Size: 7.7 KiB |
Before Width: | Height: | Size: 4.6 KiB After Width: | Height: | Size: 4.7 KiB |
BIN
png/128/emoji_u1f3ca_1f9b0.png
Normal file
After Width: | Height: | Size: 4.6 KiB |
BIN
png/128/emoji_u1f3ca_1f9b0_200d_2640.png
Normal file
After Width: | Height: | Size: 5.2 KiB |
BIN
png/128/emoji_u1f3ca_1f9b0_200d_2642.png
Normal file
After Width: | Height: | Size: 4.6 KiB |
BIN
png/128/emoji_u1f3ca_1f9b3.png
Normal file
After Width: | Height: | Size: 4.6 KiB |
BIN
png/128/emoji_u1f3ca_1f9b3_200d_2640.png
Normal file
After Width: | Height: | Size: 5.2 KiB |
BIN
png/128/emoji_u1f3ca_1f9b3_200d_2642.png
Normal file
After Width: | Height: | Size: 4.6 KiB |