From 02e4686ccd7c95c6df855be61496c75c92b11396 Mon Sep 17 00:00:00 2001 From: Thomas Voss Date: Wed, 6 Dec 2023 01:30:57 +0100 Subject: scripts: Move many scripts from sh to andy --- .local/bin/chkb | 26 +- .local/bin/ec | 4 +- .local/bin/osel | 5 +- .local/bin/qotd | 43 +- .local/bin/woman | 24 +- .local/sbin/chtz | 12 +- .local/share/unicode-data | 67108 ++++++++++++++++++++++---------------------- 7 files changed, 33608 insertions(+), 33614 deletions(-) (limited to '.local') diff --git a/.local/bin/chkb b/.local/bin/chkb index d38aaa8..359f443 100755 --- a/.local/bin/chkb +++ b/.local/bin/chkb @@ -1,26 +1,26 @@ -#!/bin/sh +#!/usr/local/bin/andy -set -e +set -e NOTIFY_LONG keyboard +set -e NOTIFY_SHORT chkb -export NOTIFY_LONG=keyboard -export NOTIFY_SHORT=${0##*/} +set KEYBOARD at-translated-set-2-keyboard -readonly KEYBOARD=at-translated-set-2-keyboard - -s="$( +set s `{ { hyprctl -j getoption input:kb_layout hyprctl -j getoption input:kb_variant - } | jq -rn ' + } + | jq -rn ' [inputs] | map(.str | split(",\\s*"; "g")) | transpose | map("\(.[0]) (\(.[1]))") | .[] - ' | sed -E 's/[a-zA-Z]+/\u&/g' -)" + ' + | sed -E 's/[a-zA-Z]+/\u&/g' +} -choice="$(echo "$s" | osel)" -n="$(echo "$s" | sed -n "/$choice/=" | { xargs expr -1 + || true; })" -hyprctl switchxkblayout $KEYBOARD $n >/dev/null +set choice `echo $s | osel +set n `echo $s | sed -n "/$choice/=" | { xargs expr -1 + || true } +hyprctl switchxkblayout $KEYBOARD $n >_ notify 'Keyboard Layout Changed' "The keyboard layout was changed to ‘$choice’" diff --git a/.local/bin/ec b/.local/bin/ec index 0e748af..5190e05 100755 --- a/.local/bin/ec +++ b/.local/bin/ec @@ -1,4 +1,4 @@ -#!/bin/sh +#!/usr/local/bin/andy -[ -t 2 ] && mode=t || mode=c +test -t 2 && set mode t || set mode c exec emacsclient -s ec -$mode diff --git a/.local/bin/osel b/.local/bin/osel index ca2727f..ccabc96 100755 --- a/.local/bin/osel +++ b/.local/bin/osel @@ -6,12 +6,11 @@ index() { if [ -t 2 ] then - nl -nln -w1 \ + nl -nln -w1 -v0 \ | eval fzf --with-nth=2.. $OSEL_TERM_FLAGS \ | cut -f1 else - eval fuzzel --index $OSEL_GUI_FLAGS \ - | xargs expr 1 + + eval fuzzel --index $OSEL_GUI_FLAGS fi } diff --git a/.local/bin/qotd b/.local/bin/qotd index fed3297..7bf6e03 100755 --- a/.local/bin/qotd +++ b/.local/bin/qotd @@ -1,30 +1,23 @@ -#!/bin/sh +#!/usr/local/bin/andy -set -e - -older_than_today() -{ - if [ ! -f "$1" ] - then - mod=0000-00-00 - else - mod=`stat -c %y "$1" | xargs -I{} -- date -d{} +%F` - fi - - [ $mod != `date +%F` ] - return $? +func older_than_today file { + if test ! -f $file { + set mod 0000-00-00 + } else { + set mod `stat -c %y $file | xargs -I{} -- date -d{} +%F + } + test $mod != `date +%F } -readonly QUOTES="${XDG_DATA_HOME:-$HOME/.local/share}/romir/quotes.yml" -readonly QOTD="${XDG_CACHE_HOME:-$HOME/.cache}/qotd" +set QUOTES $XDG_DATA_HOME/romir/quotes.yml +set QOTD $XDG_CACHE_HOME/qotd -if older_than_today "$QUOTES" -then - dirname "$QUOTES" | xargs mkdir -p - chronic wget 'https://romir.eu/mangoes.yaml' -O "$QUOTES" -fi +if older_than_today $QUOTES { + mkdir -p `dirname $QUOTES + chronic wget 'https://romir.eu/mangoes.yaml' -O $QUOTES +} -older_than_today "$QOTD" \ - && yq -0 '.mangoes.[].quote.content' <"$QUOTES" \ - | shuf -zn1 \ - | tr '\0' '\n' >"$QOTD" +older_than_today $QOTD +&& yq -0 '.mangoes.[].quote.content' <$QUOTES +| shuf -zn1 +| tr '\0' '\n' >$QOTD diff --git a/.local/bin/woman b/.local/bin/woman index bbabc8e..c68728d 100755 --- a/.local/bin/woman +++ b/.local/bin/woman @@ -1,12 +1,16 @@ -#!/bin/sh +#!/usr/local/bin/andy -apropos . \ -| sed -E 's/ (\([^)]+\))\s*-/\1 —/' \ -| sort \ -| osel \ -| sed 's/\s.*//' \ -| { - IFS= read -r page - [ -n "$page" -a ! -t 2 ] && man -Tpdf "$page" | zathura - - [ -n "$page" -a -t 2 ] && man "$page" +# TODO: -s flag to apropos + +apropos . +| sed -E 's/ (\([^)]+\))\s*-/\1 —/' +| sort +| osel +| sed 's/\s.*//' +| read page + +if test -n $page -a ! -t 2 { + man -Tpdf $page | zathura - +} else if test -n $page -a -t 2 { + man $page } diff --git a/.local/sbin/chtz b/.local/sbin/chtz index 2a02e79..2033ab2 100755 --- a/.local/sbin/chtz +++ b/.local/sbin/chtz @@ -1,10 +1,8 @@ -#!/bin/sh +#!/usr/local/bin/andy -set -e +set -e NOTIFY_LONG timezone +set -e NOTIFY_SHORT chtz -export NOTIFY_LONG=timezone -export NOTIFY_SHORT="${0##*/}" - -choice="$(timedatectl list-timezones | grep './.' | osel)" \ -&& sudo timedatectl set-timezone "$choice" \ +set choice `timedatectl list-timezones | grep ./. | osel +sudo timedatectl set-timezone $choice && notify 'Timezone Changed' "The system timezone was changed to ‘$choice’" diff --git a/.local/share/unicode-data b/.local/share/unicode-data index 56bdbef..790f5c9 100644 --- a/.local/share/unicode-data +++ b/.local/share/unicode-data @@ -1,33554 +1,33554 @@ -\U0020;Space -\U0021;Exclamation Mark -\U0022;Quotation Mark -\U0023;Number Sign -\U0024;Dollar Sign -\U0025;Percent Sign -\U0026;Ampersand -\U0027;Apostrophe -\U0028;Left Parenthesis -\U0029;Right Parenthesis -\U002A;Asterisk -\U002B;Plus Sign -\U002C;Comma -\U002D;Hyphen-Minus -\U002E;Full Stop -\U002F;Solidus -\U0030;Digit Zero -\U0031;Digit One -\U0032;Digit Two -\U0033;Digit Three -\U0034;Digit Four -\U0035;Digit Five -\U0036;Digit Six -\U0037;Digit Seven -\U0038;Digit Eight -\U0039;Digit Nine -\U003A;Colon -\U003B;Semicolon -\U003C;Less-Than Sign -\U003D;Equals Sign -\U003E;Greater-Than Sign -\U003F;Question Mark -\U0040;Commercial At -\U0041;Latin Capital Letter A -\U0042;Latin Capital Letter B -\U0043;Latin Capital Letter C -\U0044;Latin Capital Letter D -\U0045;Latin Capital Letter E -\U0046;Latin Capital Letter F -\U0047;Latin Capital Letter G -\U0048;Latin Capital Letter H -\U0049;Latin Capital Letter I -\U004A;Latin Capital Letter J -\U004B;Latin Capital Letter K -\U004C;Latin Capital Letter L -\U004D;Latin Capital Letter M -\U004E;Latin Capital Letter N -\U004F;Latin Capital Letter O -\U0050;Latin Capital Letter P -\U0051;Latin Capital Letter Q -\U0052;Latin Capital Letter R -\U0053;Latin Capital Letter S -\U0054;Latin Capital Letter T -\U0055;Latin Capital Letter U -\U0056;Latin Capital Letter V -\U0057;Latin Capital Letter W -\U0058;Latin Capital Letter X -\U0059;Latin Capital Letter Y -\U005A;Latin Capital Letter Z -\U005B;Left Square Bracket -\U005C;Reverse Solidus -\U005D;Right Square Bracket -\U005E;Circumflex Accent -\U005F;Low Line -\U0060;Grave Accent -\U0061;Latin Small Letter A -\U0062;Latin Small Letter B -\U0063;Latin Small Letter C -\U0064;Latin Small Letter D -\U0065;Latin Small Letter E -\U0066;Latin Small Letter F -\U0067;Latin Small Letter G -\U0068;Latin Small Letter H -\U0069;Latin Small Letter I -\U006A;Latin Small Letter J -\U006B;Latin Small Letter K -\U006C;Latin Small Letter L -\U006D;Latin Small Letter M -\U006E;Latin Small Letter N -\U006F;Latin Small Letter O -\U0070;Latin Small Letter P -\U0071;Latin Small Letter Q -\U0072;Latin Small Letter R -\U0073;Latin Small Letter S -\U0074;Latin Small Letter T -\U0075;Latin Small Letter U -\U0076;Latin Small Letter V -\U0077;Latin Small Letter W -\U0078;Latin Small Letter X -\U0079;Latin Small Letter Y -\U007A;Latin Small Letter Z -\U007B;Left Curly Bracket -\U007C;Vertical Line -\U007D;Right Curly Bracket -\U007E;Tilde -\U00A0;No-Break Space -\U00A1;Inverted Exclamation Mark -\U00A2;Cent Sign -\U00A3;Pound Sign -\U00A4;Currency Sign -\U00A5;Yen Sign -\U00A6;Broken Bar -\U00A7;Section Sign -\U00A8;Diaeresis -\U00A9;Copyright Sign -\U00AA;Feminine Ordinal Indicator -\U00AB;Left-Pointing Double Angle Quotation Mark -\U00AC;Not Sign -\U00AD;Soft Hyphen -\U00AE;Registered Sign -\U00AF;Macron -\U00B0;Degree Sign -\U00B1;Plus-Minus Sign -\U00B2;Superscript Two -\U00B3;Superscript Three -\U00B4;Acute Accent -\U00B5;Micro Sign -\U00B6;Pilcrow Sign -\U00B7;Middle Dot -\U00B8;Cedilla -\U00B9;Superscript One -\U00BA;Masculine Ordinal Indicator -\U00BB;Right-Pointing Double Angle Quotation Mark -\U00BC;Vulgar Fraction One Quarter -\U00BD;Vulgar Fraction One Half -\U00BE;Vulgar Fraction Three Quarters -\U00BF;Inverted Question Mark -\U00C0;Latin Capital Letter A With Grave -\U00C1;Latin Capital Letter A With Acute -\U00C2;Latin Capital Letter A With Circumflex -\U00C3;Latin Capital Letter A With Tilde -\U00C4;Latin Capital Letter A With Diaeresis -\U00C5;Latin Capital Letter A With Ring Above -\U00C6;Latin Capital Letter Ae -\U00C7;Latin Capital Letter C With Cedilla -\U00C8;Latin Capital Letter E With Grave -\U00C9;Latin Capital Letter E With Acute -\U00CA;Latin Capital Letter E With Circumflex -\U00CB;Latin Capital Letter E With Diaeresis -\U00CC;Latin Capital Letter I With Grave -\U00CD;Latin Capital Letter I With Acute -\U00CE;Latin Capital Letter I With Circumflex -\U00CF;Latin Capital Letter I With Diaeresis -\U00D0;Latin Capital Letter Eth -\U00D1;Latin Capital Letter N With Tilde -\U00D2;Latin Capital Letter O With Grave -\U00D3;Latin Capital Letter O With Acute -\U00D4;Latin Capital Letter O With Circumflex -\U00D5;Latin Capital Letter O With Tilde -\U00D6;Latin Capital Letter O With Diaeresis -\U00D7;Multiplication Sign -\U00D8;Latin Capital Letter O With Stroke -\U00D9;Latin Capital Letter U With Grave -\U00DA;Latin Capital Letter U With Acute -\U00DB;Latin Capital Letter U With Circumflex -\U00DC;Latin Capital Letter U With Diaeresis -\U00DD;Latin Capital Letter Y With Acute -\U00DE;Latin Capital Letter Thorn -\U00DF;Latin Small Letter Sharp S -\U00E0;Latin Small Letter A With Grave -\U00E1;Latin Small Letter A With Acute -\U00E2;Latin Small Letter A With Circumflex -\U00E3;Latin Small Letter A With Tilde -\U00E4;Latin Small Letter A With Diaeresis -\U00E5;Latin Small Letter A With Ring Above -\U00E6;Latin Small Letter Ae -\U00E7;Latin Small Letter C With Cedilla -\U00E8;Latin Small Letter E With Grave -\U00E9;Latin Small Letter E With Acute -\U00EA;Latin Small Letter E With Circumflex -\U00EB;Latin Small Letter E With Diaeresis -\U00EC;Latin Small Letter I With Grave -\U00ED;Latin Small Letter I With Acute -\U00EE;Latin Small Letter I With Circumflex -\U00EF;Latin Small Letter I With Diaeresis -\U00F0;Latin Small Letter Eth -\U00F1;Latin Small Letter N With Tilde -\U00F2;Latin Small Letter O With Grave -\U00F3;Latin Small Letter O With Acute -\U00F4;Latin Small Letter O With Circumflex -\U00F5;Latin Small Letter O With Tilde -\U00F6;Latin Small Letter O With Diaeresis -\U00F7;Division Sign -\U00F8;Latin Small Letter O With Stroke -\U00F9;Latin Small Letter U With Grave -\U00FA;Latin Small Letter U With Acute -\U00FB;Latin Small Letter U With Circumflex -\U00FC;Latin Small Letter U With Diaeresis -\U00FD;Latin Small Letter Y With Acute -\U00FE;Latin Small Letter Thorn -\U00FF;Latin Small Letter Y With Diaeresis -\U0100;Latin Capital Letter A With Macron -\U0101;Latin Small Letter A With Macron -\U0102;Latin Capital Letter A With Breve -\U0103;Latin Small Letter A With Breve -\U0104;Latin Capital Letter A With Ogonek -\U0105;Latin Small Letter A With Ogonek -\U0106;Latin Capital Letter C With Acute -\U0107;Latin Small Letter C With Acute -\U0108;Latin Capital Letter C With Circumflex -\U0109;Latin Small Letter C With Circumflex -\U010A;Latin Capital Letter C With Dot Above -\U010B;Latin Small Letter C With Dot Above -\U010C;Latin Capital Letter C With Caron -\U010D;Latin Small Letter C With Caron -\U010E;Latin Capital Letter D With Caron -\U010F;Latin Small Letter D With Caron -\U0110;Latin Capital Letter D With Stroke -\U0111;Latin Small Letter D With Stroke -\U0112;Latin Capital Letter E With Macron -\U0113;Latin Small Letter E With Macron -\U0114;Latin Capital Letter E With Breve -\U0115;Latin Small Letter E With Breve -\U0116;Latin Capital Letter E With Dot Above -\U0117;Latin Small Letter E With Dot Above -\U0118;Latin Capital Letter E With Ogonek -\U0119;Latin Small Letter E With Ogonek -\U011A;Latin Capital Letter E With Caron -\U011B;Latin Small Letter E With Caron -\U011C;Latin Capital Letter G With Circumflex -\U011D;Latin Small Letter G With Circumflex -\U011E;Latin Capital Letter G With Breve -\U011F;Latin Small Letter G With Breve -\U0120;Latin Capital Letter G With Dot Above -\U0121;Latin Small Letter G With Dot Above -\U0122;Latin Capital Letter G With Cedilla -\U0123;Latin Small Letter G With Cedilla -\U0124;Latin Capital Letter H With Circumflex -\U0125;Latin Small Letter H With Circumflex -\U0126;Latin Capital Letter H With Stroke -\U0127;Latin Small Letter H With Stroke -\U0128;Latin Capital Letter I With Tilde -\U0129;Latin Small Letter I With Tilde -\U012A;Latin Capital Letter I With Macron -\U012B;Latin Small Letter I With Macron -\U012C;Latin Capital Letter I With Breve -\U012D;Latin Small Letter I With Breve -\U012E;Latin Capital Letter I With Ogonek -\U012F;Latin Small Letter I With Ogonek -\U0130;Latin Capital Letter I With Dot Above -\U0131;Latin Small Letter Dotless I -\U0132;Latin Capital Ligature Ij -\U0133;Latin Small Ligature Ij -\U0134;Latin Capital Letter J With Circumflex -\U0135;Latin Small Letter J With Circumflex -\U0136;Latin Capital Letter K With Cedilla -\U0137;Latin Small Letter K With Cedilla -\U0138;Latin Small Letter Kra -\U0139;Latin Capital Letter L With Acute -\U013A;Latin Small Letter L With Acute -\U013B;Latin Capital Letter L With Cedilla -\U013C;Latin Small Letter L With Cedilla -\U013D;Latin Capital Letter L With Caron -\U013E;Latin Small Letter L With Caron -\U013F;Latin Capital Letter L With Middle Dot -\U0140;Latin Small Letter L With Middle Dot -\U0141;Latin Capital Letter L With Stroke -\U0142;Latin Small Letter L With Stroke -\U0143;Latin Capital Letter N With Acute -\U0144;Latin Small Letter N With Acute -\U0145;Latin Capital Letter N With Cedilla -\U0146;Latin Small Letter N With Cedilla -\U0147;Latin Capital Letter N With Caron -\U0148;Latin Small Letter N With Caron -\U0149;Latin Small Letter N Preceded By Apostrophe -\U014A;Latin Capital Letter Eng -\U014B;Latin Small Letter Eng -\U014C;Latin Capital Letter O With Macron -\U014D;Latin Small Letter O With Macron -\U014E;Latin Capital Letter O With Breve -\U014F;Latin Small Letter O With Breve -\U0150;Latin Capital Letter O With Double Acute -\U0151;Latin Small Letter O With Double Acute -\U0152;Latin Capital Ligature Oe -\U0153;Latin Small Ligature Oe -\U0154;Latin Capital Letter R With Acute -\U0155;Latin Small Letter R With Acute -\U0156;Latin Capital Letter R With Cedilla -\U0157;Latin Small Letter R With Cedilla -\U0158;Latin Capital Letter R With Caron -\U0159;Latin Small Letter R With Caron -\U015A;Latin Capital Letter S With Acute -\U015B;Latin Small Letter S With Acute -\U015C;Latin Capital Letter S With Circumflex -\U015D;Latin Small Letter S With Circumflex -\U015E;Latin Capital Letter S With Cedilla -\U015F;Latin Small Letter S With Cedilla -\U0160;Latin Capital Letter S With Caron -\U0161;Latin Small Letter S With Caron -\U0162;Latin Capital Letter T With Cedilla -\U0163;Latin Small Letter T With Cedilla -\U0164;Latin Capital Letter T With Caron -\U0165;Latin Small Letter T With Caron -\U0166;Latin Capital Letter T With Stroke -\U0167;Latin Small Letter T With Stroke -\U0168;Latin Capital Letter U With Tilde -\U0169;Latin Small Letter U With Tilde -\U016A;Latin Capital Letter U With Macron -\U016B;Latin Small Letter U With Macron -\U016C;Latin Capital Letter U With Breve -\U016D;Latin Small Letter U With Breve -\U016E;Latin Capital Letter U With Ring Above -\U016F;Latin Small Letter U With Ring Above -\U0170;Latin Capital Letter U With Double Acute -\U0171;Latin Small Letter U With Double Acute -\U0172;Latin Capital Letter U With Ogonek -\U0173;Latin Small Letter U With Ogonek -\U0174;Latin Capital Letter W With Circumflex -\U0175;Latin Small Letter W With Circumflex -\U0176;Latin Capital Letter Y With Circumflex -\U0177;Latin Small Letter Y With Circumflex -\U0178;Latin Capital Letter Y With Diaeresis -\U0179;Latin Capital Letter Z With Acute -\U017A;Latin Small Letter Z With Acute -\U017B;Latin Capital Letter Z With Dot Above -\U017C;Latin Small Letter Z With Dot Above -\U017D;Latin Capital Letter Z With Caron -\U017E;Latin Small Letter Z With Caron -\U017F;Latin Small Letter Long S -\U0180;Latin Small Letter B With Stroke -\U0181;Latin Capital Letter B With Hook -\U0182;Latin Capital Letter B With Topbar -\U0183;Latin Small Letter B With Topbar -\U0184;Latin Capital Letter Tone Six -\U0185;Latin Small Letter Tone Six -\U0186;Latin Capital Letter Open O -\U0187;Latin Capital Letter C With Hook -\U0188;Latin Small Letter C With Hook -\U0189;Latin Capital Letter African D -\U018A;Latin Capital Letter D With Hook -\U018B;Latin Capital Letter D With Topbar -\U018C;Latin Small Letter D With Topbar -\U018D;Latin Small Letter Turned Delta -\U018E;Latin Capital Letter Reversed E -\U018F;Latin Capital Letter Schwa -\U0190;Latin Capital Letter Open E -\U0191;Latin Capital Letter F With Hook -\U0192;Latin Small Letter F With Hook -\U0193;Latin Capital Letter G With Hook -\U0194;Latin Capital Letter Gamma -\U0195;Latin Small Letter Hv -\U0196;Latin Capital Letter Iota -\U0197;Latin Capital Letter I With Stroke -\U0198;Latin Capital Letter K With Hook -\U0199;Latin Small Letter K With Hook -\U019A;Latin Small Letter L With Bar -\U019B;Latin Small Letter Lambda With Stroke -\U019C;Latin Capital Letter Turned M -\U019D;Latin Capital Letter N With Left Hook -\U019E;Latin Small Letter N With Long Right Leg -\U019F;Latin Capital Letter O With Middle Tilde -\U01A0;Latin Capital Letter O With Horn -\U01A1;Latin Small Letter O With Horn -\U01A2;Latin Capital Letter Oi -\U01A3;Latin Small Letter Oi -\U01A4;Latin Capital Letter P With Hook -\U01A5;Latin Small Letter P With Hook -\U01A6;Latin Letter Yr -\U01A7;Latin Capital Letter Tone Two -\U01A8;Latin Small Letter Tone Two -\U01A9;Latin Capital Letter Esh -\U01AA;Latin Letter Reversed Esh Loop -\U01AB;Latin Small Letter T With Palatal Hook -\U01AC;Latin Capital Letter T With Hook -\U01AD;Latin Small Letter T With Hook -\U01AE;Latin Capital Letter T With Retroflex Hook -\U01AF;Latin Capital Letter U With Horn -\U01B0;Latin Small Letter U With Horn -\U01B1;Latin Capital Letter Upsilon -\U01B2;Latin Capital Letter V With Hook -\U01B3;Latin Capital Letter Y With Hook -\U01B4;Latin Small Letter Y With Hook -\U01B5;Latin Capital Letter Z With Stroke -\U01B6;Latin Small Letter Z With Stroke -\U01B7;Latin Capital Letter Ezh -\U01B8;Latin Capital Letter Ezh Reversed -\U01B9;Latin Small Letter Ezh Reversed -\U01BA;Latin Small Letter Ezh With Tail -\U01BB;Latin Letter Two With Stroke -\U01BC;Latin Capital Letter Tone Five -\U01BD;Latin Small Letter Tone Five -\U01BE;Latin Letter Inverted Glottal Stop With Stroke -\U01BF;Latin Letter Wynn -\U01C0;Latin Letter Dental Click -\U01C1;Latin Letter Lateral Click -\U01C2;Latin Letter Alveolar Click -\U01C3;Latin Letter Retroflex Click -\U01C4;Latin Capital Letter Dz With Caron -\U01C5;Latin Capital Letter D With Small Letter Z With Caron -\U01C6;Latin Small Letter Dz With Caron -\U01C7;Latin Capital Letter Lj -\U01C8;Latin Capital Letter L With Small Letter J -\U01C9;Latin Small Letter Lj -\U01CA;Latin Capital Letter Nj -\U01CB;Latin Capital Letter N With Small Letter J -\U01CC;Latin Small Letter Nj -\U01CD;Latin Capital Letter A With Caron -\U01CE;Latin Small Letter A With Caron -\U01CF;Latin Capital Letter I With Caron -\U01D0;Latin Small Letter I With Caron -\U01D1;Latin Capital Letter O With Caron -\U01D2;Latin Small Letter O With Caron -\U01D3;Latin Capital Letter U With Caron -\U01D4;Latin Small Letter U With Caron -\U01D5;Latin Capital Letter U With Diaeresis And Macron -\U01D6;Latin Small Letter U With Diaeresis And Macron -\U01D7;Latin Capital Letter U With Diaeresis And Acute -\U01D8;Latin Small Letter U With Diaeresis And Acute -\U01D9;Latin Capital Letter U With Diaeresis And Caron -\U01DA;Latin Small Letter U With Diaeresis And Caron -\U01DB;Latin Capital Letter U With Diaeresis And Grave -\U01DC;Latin Small Letter U With Diaeresis And Grave -\U01DD;Latin Small Letter Turned E -\U01DE;Latin Capital Letter A With Diaeresis And Macron -\U01DF;Latin Small Letter A With Diaeresis And Macron -\U01E0;Latin Capital Letter A With Dot Above And Macron -\U01E1;Latin Small Letter A With Dot Above And Macron -\U01E2;Latin Capital Letter Ae With Macron -\U01E3;Latin Small Letter Ae With Macron -\U01E4;Latin Capital Letter G With Stroke -\U01E5;Latin Small Letter G With Stroke -\U01E6;Latin Capital Letter G With Caron -\U01E7;Latin Small Letter G With Caron -\U01E8;Latin Capital Letter K With Caron -\U01E9;Latin Small Letter K With Caron -\U01EA;Latin Capital Letter O With Ogonek -\U01EB;Latin Small Letter O With Ogonek -\U01EC;Latin Capital Letter O With Ogonek And Macron -\U01ED;Latin Small Letter O With Ogonek And Macron -\U01EE;Latin Capital Letter Ezh With Caron -\U01EF;Latin Small Letter Ezh With Caron -\U01F0;Latin Small Letter J With Caron -\U01F1;Latin Capital Letter Dz -\U01F2;Latin Capital Letter D With Small Letter Z -\U01F3;Latin Small Letter Dz -\U01F4;Latin Capital Letter G With Acute -\U01F5;Latin Small Letter G With Acute -\U01F6;Latin Capital Letter Hwair -\U01F7;Latin Capital Letter Wynn -\U01F8;Latin Capital Letter N With Grave -\U01F9;Latin Small Letter N With Grave -\U01FA;Latin Capital Letter A With Ring Above And Acute -\U01FB;Latin Small Letter A With Ring Above And Acute -\U01FC;Latin Capital Letter Ae With Acute -\U01FD;Latin Small Letter Ae With Acute -\U01FE;Latin Capital Letter O With Stroke And Acute -\U01FF;Latin Small Letter O With Stroke And Acute -\U0200;Latin Capital Letter A With Double Grave -\U0201;Latin Small Letter A With Double Grave -\U0202;Latin Capital Letter A With Inverted Breve -\U0203;Latin Small Letter A With Inverted Breve -\U0204;Latin Capital Letter E With Double Grave -\U0205;Latin Small Letter E With Double Grave -\U0206;Latin Capital Letter E With Inverted Breve -\U0207;Latin Small Letter E With Inverted Breve -\U0208;Latin Capital Letter I With Double Grave -\U0209;Latin Small Letter I With Double Grave -\U020A;Latin Capital Letter I With Inverted Breve -\U020B;Latin Small Letter I With Inverted Breve -\U020C;Latin Capital Letter O With Double Grave -\U020D;Latin Small Letter O With Double Grave -\U020E;Latin Capital Letter O With Inverted Breve -\U020F;Latin Small Letter O With Inverted Breve -\U0210;Latin Capital Letter R With Double Grave -\U0211;Latin Small Letter R With Double Grave -\U0212;Latin Capital Letter R With Inverted Breve -\U0213;Latin Small Letter R With Inverted Breve -\U0214;Latin Capital Letter U With Double Grave -\U0215;Latin Small Letter U With Double Grave -\U0216;Latin Capital Letter U With Inverted Breve -\U0217;Latin Small Letter U With Inverted Breve -\U0218;Latin Capital Letter S With Comma Below -\U0219;Latin Small Letter S With Comma Below -\U021A;Latin Capital Letter T With Comma Below -\U021B;Latin Small Letter T With Comma Below -\U021C;Latin Capital Letter Yogh -\U021D;Latin Small Letter Yogh -\U021E;Latin Capital Letter H With Caron -\U021F;Latin Small Letter H With Caron -\U0220;Latin Capital Letter N With Long Right Leg -\U0221;Latin Small Letter D With Curl -\U0222;Latin Capital Letter Ou -\U0223;Latin Small Letter Ou -\U0224;Latin Capital Letter Z With Hook -\U0225;Latin Small Letter Z With Hook -\U0226;Latin Capital Letter A With Dot Above -\U0227;Latin Small Letter A With Dot Above -\U0228;Latin Capital Letter E With Cedilla -\U0229;Latin Small Letter E With Cedilla -\U022A;Latin Capital Letter O With Diaeresis And Macron -\U022B;Latin Small Letter O With Diaeresis And Macron -\U022C;Latin Capital Letter O With Tilde And Macron -\U022D;Latin Small Letter O With Tilde And Macron -\U022E;Latin Capital Letter O With Dot Above -\U022F;Latin Small Letter O With Dot Above -\U0230;Latin Capital Letter O With Dot Above And Macron -\U0231;Latin Small Letter O With Dot Above And Macron -\U0232;Latin Capital Letter Y With Macron -\U0233;Latin Small Letter Y With Macron -\U0234;Latin Small Letter L With Curl -\U0235;Latin Small Letter N With Curl -\U0236;Latin Small Letter T With Curl -\U0237;Latin Small Letter Dotless J -\U0238;Latin Small Letter Db Digraph -\U0239;Latin Small Letter Qp Digraph -\U023A;Latin Capital Letter A With Stroke -\U023B;Latin Capital Letter C With Stroke -\U023C;Latin Small Letter C With Stroke -\U023D;Latin Capital Letter L With Bar -\U023E;Latin Capital Letter T With Diagonal Stroke -\U023F;Latin Small Letter S With Swash Tail -\U0240;Latin Small Letter Z With Swash Tail -\U0241;Latin Capital Letter Glottal Stop -\U0242;Latin Small Letter Glottal Stop -\U0243;Latin Capital Letter B With Stroke -\U0244;Latin Capital Letter U Bar -\U0245;Latin Capital Letter Turned V -\U0246;Latin Capital Letter E With Stroke -\U0247;Latin Small Letter E With Stroke -\U0248;Latin Capital Letter J With Stroke -\U0249;Latin Small Letter J With Stroke -\U024A;Latin Capital Letter Small Q With Hook Tail -\U024B;Latin Small Letter Q With Hook Tail -\U024C;Latin Capital Letter R With Stroke -\U024D;Latin Small Letter R With Stroke -\U024E;Latin Capital Letter Y With Stroke -\U024F;Latin Small Letter Y With Stroke -\U0250;Latin Small Letter Turned A -\U0251;Latin Small Letter Alpha -\U0252;Latin Small Letter Turned Alpha -\U0253;Latin Small Letter B With Hook -\U0254;Latin Small Letter Open O -\U0255;Latin Small Letter C With Curl -\U0256;Latin Small Letter D With Tail -\U0257;Latin Small Letter D With Hook -\U0258;Latin Small Letter Reversed E -\U0259;Latin Small Letter Schwa -\U025A;Latin Small Letter Schwa With Hook -\U025B;Latin Small Letter Open E -\U025C;Latin Small Letter Reversed Open E -\U025D;Latin Small Letter Reversed Open E With Hook -\U025E;Latin Small Letter Closed Reversed Open E -\U025F;Latin Small Letter Dotless J With Stroke -\U0260;Latin Small Letter G With Hook -\U0261;Latin Small Letter Script G -\U0262;Latin Letter Small Capital G -\U0263;Latin Small Letter Gamma -\U0264;Latin Small Letter Rams Horn -\U0265;Latin Small Letter Turned H -\U0266;Latin Small Letter H With Hook -\U0267;Latin Small Letter Heng With Hook -\U0268;Latin Small Letter I With Stroke -\U0269;Latin Small Letter Iota -\U026A;Latin Letter Small Capital I -\U026B;Latin Small Letter L With Middle Tilde -\U026C;Latin Small Letter L With Belt -\U026D;Latin Small Letter L With Retroflex Hook -\U026E;Latin Small Letter Lezh -\U026F;Latin Small Letter Turned M -\U0270;Latin Small Letter Turned M With Long Leg -\U0271;Latin Small Letter M With Hook -\U0272;Latin Small Letter N With Left Hook -\U0273;Latin Small Letter N With Retroflex Hook -\U0274;Latin Letter Small Capital N -\U0275;Latin Small Letter Barred O -\U0276;Latin Letter Small Capital Oe -\U0277;Latin Small Letter Closed Omega -\U0278;Latin Small Letter Phi -\U0279;Latin Small Letter Turned R -\U027A;Latin Small Letter Turned R With Long Leg -\U027B;Latin Small Letter Turned R With Hook -\U027C;Latin Small Letter R With Long Leg -\U027D;Latin Small Letter R With Tail -\U027E;Latin Small Letter R With Fishhook -\U027F;Latin Small Letter Reversed R With Fishhook -\U0280;Latin Letter Small Capital R -\U0281;Latin Letter Small Capital Inverted R -\U0282;Latin Small Letter S With Hook -\U0283;Latin Small Letter Esh -\U0284;Latin Small Letter Dotless J With Stroke And Hook -\U0285;Latin Small Letter Squat Reversed Esh -\U0286;Latin Small Letter Esh With Curl -\U0287;Latin Small Letter Turned T -\U0288;Latin Small Letter T With Retroflex Hook -\U0289;Latin Small Letter U Bar -\U028A;Latin Small Letter Upsilon -\U028B;Latin Small Letter V With Hook -\U028C;Latin Small Letter Turned V -\U028D;Latin Small Letter Turned W -\U028E;Latin Small Letter Turned Y -\U028F;Latin Letter Small Capital Y -\U0290;Latin Small Letter Z With Retroflex Hook -\U0291;Latin Small Letter Z With Curl -\U0292;Latin Small Letter Ezh -\U0293;Latin Small Letter Ezh With Curl -\U0294;Latin Letter Glottal Stop -\U0295;Latin Letter Pharyngeal Voiced Fricative -\U0296;Latin Letter Inverted Glottal Stop -\U0297;Latin Letter Stretched C -\U0298;Latin Letter Bilabial Click -\U0299;Latin Letter Small Capital B -\U029A;Latin Small Letter Closed Open E -\U029B;Latin Letter Small Capital G With Hook -\U029C;Latin Letter Small Capital H -\U029D;Latin Small Letter J With Crossed-Tail -\U029E;Latin Small Letter Turned K -\U029F;Latin Letter Small Capital L -\U02A0;Latin Small Letter Q With Hook -\U02A1;Latin Letter Glottal Stop With Stroke -\U02A2;Latin Letter Reversed Glottal Stop With Stroke -\U02A3;Latin Small Letter Dz Digraph -\U02A4;Latin Small Letter Dezh Digraph -\U02A5;Latin Small Letter Dz Digraph With Curl -\U02A6;Latin Small Letter Ts Digraph -\U02A7;Latin Small Letter Tesh Digraph -\U02A8;Latin Small Letter Tc Digraph With Curl -\U02A9;Latin Small Letter Feng Digraph -\U02AA;Latin Small Letter Ls Digraph -\U02AB;Latin Small Letter Lz Digraph -\U02AC;Latin Letter Bilabial Percussive -\U02AD;Latin Letter Bidental Percussive -\U02AE;Latin Small Letter Turned H With Fishhook -\U02AF;Latin Small Letter Turned H With Fishhook And Tail -\U02B0;Modifier Letter Small H -\U02B1;Modifier Letter Small H With Hook -\U02B2;Modifier Letter Small J -\U02B3;Modifier Letter Small R -\U02B4;Modifier Letter Small Turned R -\U02B5;Modifier Letter Small Turned R With Hook -\U02B6;Modifier Letter Small Capital Inverted R -\U02B7;Modifier Letter Small W -\U02B8;Modifier Letter Small Y -\U02B9;Modifier Letter Prime -\U02BA;Modifier Letter Double Prime -\U02BB;Modifier Letter Turned Comma -\U02BC;Modifier Letter Apostrophe -\U02BD;Modifier Letter Reversed Comma -\U02BE;Modifier Letter Right Half Ring -\U02BF;Modifier Letter Left Half Ring -\U02C0;Modifier Letter Glottal Stop -\U02C1;Modifier Letter Reversed Glottal Stop -\U02C2;Modifier Letter Left Arrowhead -\U02C3;Modifier Letter Right Arrowhead -\U02C4;Modifier Letter Up Arrowhead -\U02C5;Modifier Letter Down Arrowhead -\U02C6;Modifier Letter Circumflex Accent -\U02C7;Caron -\U02C8;Modifier Letter Vertical Line -\U02C9;Modifier Letter Macron -\U02CA;Modifier Letter Acute Accent -\U02CB;Modifier Letter Grave Accent -\U02CC;Modifier Letter Low Vertical Line -\U02CD;Modifier Letter Low Macron -\U02CE;Modifier Letter Low Grave Accent -\U02CF;Modifier Letter Low Acute Accent -\U02D0;Modifier Letter Triangular Colon -\U02D1;Modifier Letter Half Triangular Colon -\U02D2;Modifier Letter Centred Right Half Ring -\U02D3;Modifier Letter Centred Left Half Ring -\U02D4;Modifier Letter Up Tack -\U02D5;Modifier Letter Down Tack -\U02D6;Modifier Letter Plus Sign -\U02D7;Modifier Letter Minus Sign -\U02D8;Breve -\U02D9;Dot Above -\U02DA;Ring Above -\U02DB;Ogonek -\U02DC;Small Tilde -\U02DD;Double Acute Accent -\U02DE;Modifier Letter Rhotic Hook -\U02DF;Modifier Letter Cross Accent -\U02E0;Modifier Letter Small Gamma -\U02E1;Modifier Letter Small L -\U02E2;Modifier Letter Small S -\U02E3;Modifier Letter Small X -\U02E4;Modifier Letter Small Reversed Glottal Stop -\U02E5;Modifier Letter Extra-High Tone Bar -\U02E6;Modifier Letter High Tone Bar -\U02E7;Modifier Letter Mid Tone Bar -\U02E8;Modifier Letter Low Tone Bar -\U02E9;Modifier Letter Extra-Low Tone Bar -\U02EA;Modifier Letter Yin Departing Tone Mark -\U02EB;Modifier Letter Yang Departing Tone Mark -\U02EC;Modifier Letter Voicing -\U02ED;Modifier Letter Unaspirated -\U02EE;Modifier Letter Double Apostrophe -\U02EF;Modifier Letter Low Down Arrowhead -\U02F0;Modifier Letter Low Up Arrowhead -\U02F1;Modifier Letter Low Left Arrowhead -\U02F2;Modifier Letter Low Right Arrowhead -\U02F3;Modifier Letter Low Ring -\U02F4;Modifier Letter Middle Grave Accent -\U02F5;Modifier Letter Middle Double Grave Accent -\U02F6;Modifier Letter Middle Double Acute Accent -\U02F7;Modifier Letter Low Tilde -\U02F8;Modifier Letter Raised Colon -\U02F9;Modifier Letter Begin High Tone -\U02FA;Modifier Letter End High Tone -\U02FB;Modifier Letter Begin Low Tone -\U02FC;Modifier Letter End Low Tone -\U02FD;Modifier Letter Shelf -\U02FE;Modifier Letter Open Shelf -\U02FF;Modifier Letter Low Left Arrow -\U0300;Combining Grave Accent -\U0301;Combining Acute Accent -\U0302;Combining Circumflex Accent -\U0303;Combining Tilde -\U0304;Combining Macron -\U0305;Combining Overline -\U0306;Combining Breve -\U0307;Combining Dot Above -\U0308;Combining Diaeresis -\U0309;Combining Hook Above -\U030A;Combining Ring Above -\U030B;Combining Double Acute Accent -\U030C;Combining Caron -\U030D;Combining Vertical Line Above -\U030E;Combining Double Vertical Line Above -\U030F;Combining Double Grave Accent -\U0310;Combining Candrabindu -\U0311;Combining Inverted Breve -\U0312;Combining Turned Comma Above -\U0313;Combining Comma Above -\U0314;Combining Reversed Comma Above -\U0315;Combining Comma Above Right -\U0316;Combining Grave Accent Below -\U0317;Combining Acute Accent Below -\U0318;Combining Left Tack Below -\U0319;Combining Right Tack Below -\U031A;Combining Left Angle Above -\U031B;Combining Horn -\U031C;Combining Left Half Ring Below -\U031D;Combining Up Tack Below -\U031E;Combining Down Tack Below -\U031F;Combining Plus Sign Below -\U0320;Combining Minus Sign Below -\U0321;Combining Palatalized Hook Below -\U0322;Combining Retroflex Hook Below -\U0323;Combining Dot Below -\U0324;Combining Diaeresis Below -\U0325;Combining Ring Below -\U0326;Combining Comma Below -\U0327;Combining Cedilla -\U0328;Combining Ogonek -\U0329;Combining Vertical Line Below -\U032A;Combining Bridge Below -\U032B;Combining Inverted Double Arch Below -\U032C;Combining Caron Below -\U032D;Combining Circumflex Accent Below -\U032E;Combining Breve Below -\U032F;Combining Inverted Breve Below -\U0330;Combining Tilde Below -\U0331;Combining Macron Below -\U0332;Combining Low Line -\U0333;Combining Double Low Line -\U0334;Combining Tilde Overlay -\U0335;Combining Short Stroke Overlay -\U0336;Combining Long Stroke Overlay -\U0337;Combining Short Solidus Overlay -\U0338;Combining Long Solidus Overlay -\U0339;Combining Right Half Ring Below -\U033A;Combining Inverted Bridge Below -\U033B;Combining Square Below -\U033C;Combining Seagull Below -\U033D;Combining X Above -\U033E;Combining Vertical Tilde -\U033F;Combining Double Overline -\U0340;Combining Grave Tone Mark -\U0341;Combining Acute Tone Mark -\U0342;Combining Greek Perispomeni -\U0343;Combining Greek Koronis -\U0344;Combining Greek Dialytika Tonos -\U0345;Combining Greek Ypogegrammeni -\U0346;Combining Bridge Above -\U0347;Combining Equals Sign Below -\U0348;Combining Double Vertical Line Below -\U0349;Combining Left Angle Below -\U034A;Combining Not Tilde Above -\U034B;Combining Homothetic Above -\U034C;Combining Almost Equal To Above -\U034D;Combining Left Right Arrow Below -\U034E;Combining Upwards Arrow Below -\U034F;Combining Grapheme Joiner -\U0350;Combining Right Arrowhead Above -\U0351;Combining Left Half Ring Above -\U0352;Combining Fermata -\U0353;Combining X Below -\U0354;Combining Left Arrowhead Below -\U0355;Combining Right Arrowhead Below -\U0356;Combining Right Arrowhead And Up Arrowhead Below -\U0357;Combining Right Half Ring Above -\U0358;Combining Dot Above Right -\U0359;Combining Asterisk Below -\U035A;Combining Double Ring Below -\U035B;Combining Zigzag Above -\U035C;Combining Double Breve Below -\U035D;Combining Double Breve -\U035E;Combining Double Macron -\U035F;Combining Double Macron Below -\U0360;Combining Double Tilde -\U0361;Combining Double Inverted Breve -\U0362;Combining Double Rightwards Arrow Below -\U0363;Combining Latin Small Letter A -\U0364;Combining Latin Small Letter E -\U0365;Combining Latin Small Letter I -\U0366;Combining Latin Small Letter O -\U0367;Combining Latin Small Letter U -\U0368;Combining Latin Small Letter C -\U0369;Combining Latin Small Letter D -\U036A;Combining Latin Small Letter H -\U036B;Combining Latin Small Letter M -\U036C;Combining Latin Small Letter R -\U036D;Combining Latin Small Letter T -\U036E;Combining Latin Small Letter V -\U036F;Combining Latin Small Letter X -\U0370;Greek Capital Letter Heta -\U0371;Greek Small Letter Heta -\U0372;Greek Capital Letter Archaic Sampi -\U0373;Greek Small Letter Archaic Sampi -\U0374;Greek Numeral Sign -\U0375;Greek Lower Numeral Sign -\U0376;Greek Capital Letter Pamphylian Digamma -\U0377;Greek Small Letter Pamphylian Digamma -\U037A;Greek Ypogegrammeni -\U037B;Greek Small Reversed Lunate Sigma Symbol -\U037C;Greek Small Dotted Lunate Sigma Symbol -\U037D;Greek Small Reversed Dotted Lunate Sigma Symbol -\U037E;Greek Question Mark -\U037F;Greek Capital Letter Yot -\U0384;Greek Tonos -\U0385;Greek Dialytika Tonos -\U0386;Greek Capital Letter Alpha With Tonos -\U0387;Greek Ano Teleia -\U0388;Greek Capital Letter Epsilon With Tonos -\U0389;Greek Capital Letter Eta With Tonos -\U038A;Greek Capital Letter Iota With Tonos -\U038C;Greek Capital Letter Omicron With Tonos -\U038E;Greek Capital Letter Upsilon With Tonos -\U038F;Greek Capital Letter Omega With Tonos -\U0390;Greek Small Letter Iota With Dialytika And Tonos -\U0391;Greek Capital Letter Alpha -\U0392;Greek Capital Letter Beta -\U0393;Greek Capital Letter Gamma -\U0394;Greek Capital Letter Delta -\U0395;Greek Capital Letter Epsilon -\U0396;Greek Capital Letter Zeta -\U0397;Greek Capital Letter Eta -\U0398;Greek Capital Letter Theta -\U0399;Greek Capital Letter Iota -\U039A;Greek Capital Letter Kappa -\U039B;Greek Capital Letter Lamda -\U039C;Greek Capital Letter Mu -\U039D;Greek Capital Letter Nu -\U039E;Greek Capital Letter Xi -\U039F;Greek Capital Letter Omicron -\U03A0;Greek Capital Letter Pi -\U03A1;Greek Capital Letter Rho -\U03A3;Greek Capital Letter Sigma -\U03A4;Greek Capital Letter Tau -\U03A5;Greek Capital Letter Upsilon -\U03A6;Greek Capital Letter Phi -\U03A7;Greek Capital Letter Chi -\U03A8;Greek Capital Letter Psi -\U03A9;Greek Capital Letter Omega -\U03AA;Greek Capital Letter Iota With Dialytika -\U03AB;Greek Capital Letter Upsilon With Dialytika -\U03AC;Greek Small Letter Alpha With Tonos -\U03AD;Greek Small Letter Epsilon With Tonos -\U03AE;Greek Small Letter Eta With Tonos -\U03AF;Greek Small Letter Iota With Tonos -\U03B0;Greek Small Letter Upsilon With Dialytika And Tonos -\U03B1;Greek Small Letter Alpha -\U03B2;Greek Small Letter Beta -\U03B3;Greek Small Letter Gamma -\U03B4;Greek Small Letter Delta -\U03B5;Greek Small Letter Epsilon -\U03B6;Greek Small Letter Zeta -\U03B7;Greek Small Letter Eta -\U03B8;Greek Small Letter Theta -\U03B9;Greek Small Letter Iota -\U03BA;Greek Small Letter Kappa -\U03BB;Greek Small Letter Lamda -\U03BC;Greek Small Letter Mu -\U03BD;Greek Small Letter Nu -\U03BE;Greek Small Letter Xi -\U03BF;Greek Small Letter Omicron -\U03C0;Greek Small Letter Pi -\U03C1;Greek Small Letter Rho -\U03C2;Greek Small Letter Final Sigma -\U03C3;Greek Small Letter Sigma -\U03C4;Greek Small Letter Tau -\U03C5;Greek Small Letter Upsilon -\U03C6;Greek Small Letter Phi -\U03C7;Greek Small Letter Chi -\U03C8;Greek Small Letter Psi -\U03C9;Greek Small Letter Omega -\U03CA;Greek Small Letter Iota With Dialytika -\U03CB;Greek Small Letter Upsilon With Dialytika -\U03CC;Greek Small Letter Omicron With Tonos -\U03CD;Greek Small Letter Upsilon With Tonos -\U03CE;Greek Small Letter Omega With Tonos -\U03CF;Greek Capital Kai Symbol -\U03D0;Greek Beta Symbol -\U03D1;Greek Theta Symbol -\U03D2;Greek Upsilon With Hook Symbol -\U03D3;Greek Upsilon With Acute And Hook Symbol -\U03D4;Greek Upsilon With Diaeresis And Hook Symbol -\U03D5;Greek Phi Symbol -\U03D6;Greek Pi Symbol -\U03D7;Greek Kai Symbol -\U03D8;Greek Letter Archaic Koppa -\U03D9;Greek Small Letter Archaic Koppa -\U03DA;Greek Letter Stigma -\U03DB;Greek Small Letter Stigma -\U03DC;Greek Letter Digamma -\U03DD;Greek Small Letter Digamma -\U03DE;Greek Letter Koppa -\U03DF;Greek Small Letter Koppa -\U03E0;Greek Letter Sampi -\U03E1;Greek Small Letter Sampi -\U03E2;Coptic Capital Letter Shei -\U03E3;Coptic Small Letter Shei -\U03E4;Coptic Capital Letter Fei -\U03E5;Coptic Small Letter Fei -\U03E6;Coptic Capital Letter Khei -\U03E7;Coptic Small Letter Khei -\U03E8;Coptic Capital Letter Hori -\U03E9;Coptic Small Letter Hori -\U03EA;Coptic Capital Letter Gangia -\U03EB;Coptic Small Letter Gangia -\U03EC;Coptic Capital Letter Shima -\U03ED;Coptic Small Letter Shima -\U03EE;Coptic Capital Letter Dei -\U03EF;Coptic Small Letter Dei -\U03F0;Greek Kappa Symbol -\U03F1;Greek Rho Symbol -\U03F2;Greek Lunate Sigma Symbol -\U03F3;Greek Letter Yot -\U03F4;Greek Capital Theta Symbol -\U03F5;Greek Lunate Epsilon Symbol -\U03F6;Greek Reversed Lunate Epsilon Symbol -\U03F7;Greek Capital Letter Sho -\U03F8;Greek Small Letter Sho -\U03F9;Greek Capital Lunate Sigma Symbol -\U03FA;Greek Capital Letter San -\U03FB;Greek Small Letter San -\U03FC;Greek Rho With Stroke Symbol -\U03FD;Greek Capital Reversed Lunate Sigma Symbol -\U03FE;Greek Capital Dotted Lunate Sigma Symbol -\U03FF;Greek Capital Reversed Dotted Lunate Sigma Symbol -\U0400;Cyrillic Capital Letter Ie With Grave -\U0401;Cyrillic Capital Letter Io -\U0402;Cyrillic Capital Letter Dje -\U0403;Cyrillic Capital Letter Gje -\U0404;Cyrillic Capital Letter Ukrainian Ie -\U0405;Cyrillic Capital Letter Dze -\U0406;Cyrillic Capital Letter Byelorussian-Ukrainian I -\U0407;Cyrillic Capital Letter Yi -\U0408;Cyrillic Capital Letter Je -\U0409;Cyrillic Capital Letter Lje -\U040A;Cyrillic Capital Letter Nje -\U040B;Cyrillic Capital Letter Tshe -\U040C;Cyrillic Capital Letter Kje -\U040D;Cyrillic Capital Letter I With Grave -\U040E;Cyrillic Capital Letter Short U -\U040F;Cyrillic Capital Letter Dzhe -\U0410;Cyrillic Capital Letter A -\U0411;Cyrillic Capital Letter Be -\U0412;Cyrillic Capital Letter Ve -\U0413;Cyrillic Capital Letter Ghe -\U0414;Cyrillic Capital Letter De -\U0415;Cyrillic Capital Letter Ie -\U0416;Cyrillic Capital Letter Zhe -\U0417;Cyrillic Capital Letter Ze -\U0418;Cyrillic Capital Letter I -\U0419;Cyrillic Capital Letter Short I -\U041A;Cyrillic Capital Letter Ka -\U041B;Cyrillic Capital Letter El -\U041C;Cyrillic Capital Letter Em -\U041D;Cyrillic Capital Letter En -\U041E;Cyrillic Capital Letter O -\U041F;Cyrillic Capital Letter Pe -\U0420;Cyrillic Capital Letter Er -\U0421;Cyrillic Capital Letter Es -\U0422;Cyrillic Capital Letter Te -\U0423;Cyrillic Capital Letter U -\U0424;Cyrillic Capital Letter Ef -\U0425;Cyrillic Capital Letter Ha -\U0426;Cyrillic Capital Letter Tse -\U0427;Cyrillic Capital Letter Che -\U0428;Cyrillic Capital Letter Sha -\U0429;Cyrillic Capital Letter Shcha -\U042A;Cyrillic Capital Letter Hard Sign -\U042B;Cyrillic Capital Letter Yeru -\U042C;Cyrillic Capital Letter Soft Sign -\U042D;Cyrillic Capital Letter E -\U042E;Cyrillic Capital Letter Yu -\U042F;Cyrillic Capital Letter Ya -\U0430;Cyrillic Small Letter A -\U0431;Cyrillic Small Letter Be -\U0432;Cyrillic Small Letter Ve -\U0433;Cyrillic Small Letter Ghe -\U0434;Cyrillic Small Letter De -\U0435;Cyrillic Small Letter Ie -\U0436;Cyrillic Small Letter Zhe -\U0437;Cyrillic Small Letter Ze -\U0438;Cyrillic Small Letter I -\U0439;Cyrillic Small Letter Short I -\U043A;Cyrillic Small Letter Ka -\U043B;Cyrillic Small Letter El -\U043C;Cyrillic Small Letter Em -\U043D;Cyrillic Small Letter En -\U043E;Cyrillic Small Letter O -\U043F;Cyrillic Small Letter Pe -\U0440;Cyrillic Small Letter Er -\U0441;Cyrillic Small Letter Es -\U0442;Cyrillic Small Letter Te -\U0443;Cyrillic Small Letter U -\U0444;Cyrillic Small Letter Ef -\U0445;Cyrillic Small Letter Ha -\U0446;Cyrillic Small Letter Tse -\U0447;Cyrillic Small Letter Che -\U0448;Cyrillic Small Letter Sha -\U0449;Cyrillic Small Letter Shcha -\U044A;Cyrillic Small Letter Hard Sign -\U044B;Cyrillic Small Letter Yeru -\U044C;Cyrillic Small Letter Soft Sign -\U044D;Cyrillic Small Letter E -\U044E;Cyrillic Small Letter Yu -\U044F;Cyrillic Small Letter Ya -\U0450;Cyrillic Small Letter Ie With Grave -\U0451;Cyrillic Small Letter Io -\U0452;Cyrillic Small Letter Dje -\U0453;Cyrillic Small Letter Gje -\U0454;Cyrillic Small Letter Ukrainian Ie -\U0455;Cyrillic Small Letter Dze -\U0456;Cyrillic Small Letter Byelorussian-Ukrainian I -\U0457;Cyrillic Small Letter Yi -\U0458;Cyrillic Small Letter Je -\U0459;Cyrillic Small Letter Lje -\U045A;Cyrillic Small Letter Nje -\U045B;Cyrillic Small Letter Tshe -\U045C;Cyrillic Small Letter Kje -\U045D;Cyrillic Small Letter I With Grave -\U045E;Cyrillic Small Letter Short U -\U045F;Cyrillic Small Letter Dzhe -\U0460;Cyrillic Capital Letter Omega -\U0461;Cyrillic Small Letter Omega -\U0462;Cyrillic Capital Letter Yat -\U0463;Cyrillic Small Letter Yat -\U0464;Cyrillic Capital Letter Iotified E -\U0465;Cyrillic Small Letter Iotified E -\U0466;Cyrillic Capital Letter Little Yus -\U0467;Cyrillic Small Letter Little Yus -\U0468;Cyrillic Capital Letter Iotified Little Yus -\U0469;Cyrillic Small Letter Iotified Little Yus -\U046A;Cyrillic Capital Letter Big Yus -\U046B;Cyrillic Small Letter Big Yus -\U046C;Cyrillic Capital Letter Iotified Big Yus -\U046D;Cyrillic Small Letter Iotified Big Yus -\U046E;Cyrillic Capital Letter Ksi -\U046F;Cyrillic Small Letter Ksi -\U0470;Cyrillic Capital Letter Psi -\U0471;Cyrillic Small Letter Psi -\U0472;Cyrillic Capital Letter Fita -\U0473;Cyrillic Small Letter Fita -\U0474;Cyrillic Capital Letter Izhitsa -\U0475;Cyrillic Small Letter Izhitsa -\U0476;Cyrillic Capital Letter Izhitsa With Double Grave Accent -\U0477;Cyrillic Small Letter Izhitsa With Double Grave Accent -\U0478;Cyrillic Capital Letter Uk -\U0479;Cyrillic Small Letter Uk -\U047A;Cyrillic Capital Letter Round Omega -\U047B;Cyrillic Small Letter Round Omega -\U047C;Cyrillic Capital Letter Omega With Titlo -\U047D;Cyrillic Small Letter Omega With Titlo -\U047E;Cyrillic Capital Letter Ot -\U047F;Cyrillic Small Letter Ot -\U0480;Cyrillic Capital Letter Koppa -\U0481;Cyrillic Small Letter Koppa -\U0482;Cyrillic Thousands Sign -\U0483;Combining Cyrillic Titlo -\U0484;Combining Cyrillic Palatalization -\U0485;Combining Cyrillic Dasia Pneumata -\U0486;Combining Cyrillic Psili Pneumata -\U0487;Combining Cyrillic Pokrytie -\U0488;Combining Cyrillic Hundred Thousands Sign -\U0489;Combining Cyrillic Millions Sign -\U048A;Cyrillic Capital Letter Short I With Tail -\U048B;Cyrillic Small Letter Short I With Tail -\U048C;Cyrillic Capital Letter Semisoft Sign -\U048D;Cyrillic Small Letter Semisoft Sign -\U048E;Cyrillic Capital Letter Er With Tick -\U048F;Cyrillic Small Letter Er With Tick -\U0490;Cyrillic Capital Letter Ghe With Upturn -\U0491;Cyrillic Small Letter Ghe With Upturn -\U0492;Cyrillic Capital Letter Ghe With Stroke -\U0493;Cyrillic Small Letter Ghe With Stroke -\U0494;Cyrillic Capital Letter Ghe With Middle Hook -\U0495;Cyrillic Small Letter Ghe With Middle Hook -\U0496;Cyrillic Capital Letter Zhe With Descender -\U0497;Cyrillic Small Letter Zhe With Descender -\U0498;Cyrillic Capital Letter Ze With Descender -\U0499;Cyrillic Small Letter Ze With Descender -\U049A;Cyrillic Capital Letter Ka With Descender -\U049B;Cyrillic Small Letter Ka With Descender -\U049C;Cyrillic Capital Letter Ka With Vertical Stroke -\U049D;Cyrillic Small Letter Ka With Vertical Stroke -\U049E;Cyrillic Capital Letter Ka With Stroke -\U049F;Cyrillic Small Letter Ka With Stroke -\U04A0;Cyrillic Capital Letter Bashkir Ka -\U04A1;Cyrillic Small Letter Bashkir Ka -\U04A2;Cyrillic Capital Letter En With Descender -\U04A3;Cyrillic Small Letter En With Descender -\U04A4;Cyrillic Capital Ligature En Ghe -\U04A5;Cyrillic Small Ligature En Ghe -\U04A6;Cyrillic Capital Letter Pe With Middle Hook -\U04A7;Cyrillic Small Letter Pe With Middle Hook -\U04A8;Cyrillic Capital Letter Abkhasian Ha -\U04A9;Cyrillic Small Letter Abkhasian Ha -\U04AA;Cyrillic Capital Letter Es With Descender -\U04AB;Cyrillic Small Letter Es With Descender -\U04AC;Cyrillic Capital Letter Te With Descender -\U04AD;Cyrillic Small Letter Te With Descender -\U04AE;Cyrillic Capital Letter Straight U -\U04AF;Cyrillic Small Letter Straight U -\U04B0;Cyrillic Capital Letter Straight U With Stroke -\U04B1;Cyrillic Small Letter Straight U With Stroke -\U04B2;Cyrillic Capital Letter Ha With Descender -\U04B3;Cyrillic Small Letter Ha With Descender -\U04B4;Cyrillic Capital Ligature Te Tse -\U04B5;Cyrillic Small Ligature Te Tse -\U04B6;Cyrillic Capital Letter Che With Descender -\U04B7;Cyrillic Small Letter Che With Descender -\U04B8;Cyrillic Capital Letter Che With Vertical Stroke -\U04B9;Cyrillic Small Letter Che With Vertical Stroke -\U04BA;Cyrillic Capital Letter Shha -\U04BB;Cyrillic Small Letter Shha -\U04BC;Cyrillic Capital Letter Abkhasian Che -\U04BD;Cyrillic Small Letter Abkhasian Che -\U04BE;Cyrillic Capital Letter Abkhasian Che With Descender -\U04BF;Cyrillic Small Letter Abkhasian Che With Descender -\U04C0;Cyrillic Letter Palochka -\U04C1;Cyrillic Capital Letter Zhe With Breve -\U04C2;Cyrillic Small Letter Zhe With Breve -\U04C3;Cyrillic Capital Letter Ka With Hook -\U04C4;Cyrillic Small Letter Ka With Hook -\U04C5;Cyrillic Capital Letter El With Tail -\U04C6;Cyrillic Small Letter El With Tail -\U04C7;Cyrillic Capital Letter En With Hook -\U04C8;Cyrillic Small Letter En With Hook -\U04C9;Cyrillic Capital Letter En With Tail -\U04CA;Cyrillic Small Letter En With Tail -\U04CB;Cyrillic Capital Letter Khakassian Che -\U04CC;Cyrillic Small Letter Khakassian Che -\U04CD;Cyrillic Capital Letter Em With Tail -\U04CE;Cyrillic Small Letter Em With Tail -\U04CF;Cyrillic Small Letter Palochka -\U04D0;Cyrillic Capital Letter A With Breve -\U04D1;Cyrillic Small Letter A With Breve -\U04D2;Cyrillic Capital Letter A With Diaeresis -\U04D3;Cyrillic Small Letter A With Diaeresis -\U04D4;Cyrillic Capital Ligature A Ie -\U04D5;Cyrillic Small Ligature A Ie -\U04D6;Cyrillic Capital Letter Ie With Breve -\U04D7;Cyrillic Small Letter Ie With Breve -\U04D8;Cyrillic Capital Letter Schwa -\U04D9;Cyrillic Small Letter Schwa -\U04DA;Cyrillic Capital Letter Schwa With Diaeresis -\U04DB;Cyrillic Small Letter Schwa With Diaeresis -\U04DC;Cyrillic Capital Letter Zhe With Diaeresis -\U04DD;Cyrillic Small Letter Zhe With Diaeresis -\U04DE;Cyrillic Capital Letter Ze With Diaeresis -\U04DF;Cyrillic Small Letter Ze With Diaeresis -\U04E0;Cyrillic Capital Letter Abkhasian Dze -\U04E1;Cyrillic Small Letter Abkhasian Dze -\U04E2;Cyrillic Capital Letter I With Macron -\U04E3;Cyrillic Small Letter I With Macron -\U04E4;Cyrillic Capital Letter I With Diaeresis -\U04E5;Cyrillic Small Letter I With Diaeresis -\U04E6;Cyrillic Capital Letter O With Diaeresis -\U04E7;Cyrillic Small Letter O With Diaeresis -\U04E8;Cyrillic Capital Letter Barred O -\U04E9;Cyrillic Small Letter Barred O -\U04EA;Cyrillic Capital Letter Barred O With Diaeresis -\U04EB;Cyrillic Small Letter Barred O With Diaeresis -\U04EC;Cyrillic Capital Letter E With Diaeresis -\U04ED;Cyrillic Small Letter E With Diaeresis -\U04EE;Cyrillic Capital Letter U With Macron -\U04EF;Cyrillic Small Letter U With Macron -\U04F0;Cyrillic Capital Letter U With Diaeresis -\U04F1;Cyrillic Small Letter U With Diaeresis -\U04F2;Cyrillic Capital Letter U With Double Acute -\U04F3;Cyrillic Small Letter U With Double Acute -\U04F4;Cyrillic Capital Letter Che With Diaeresis -\U04F5;Cyrillic Small Letter Che With Diaeresis -\U04F6;Cyrillic Capital Letter Ghe With Descender -\U04F7;Cyrillic Small Letter Ghe With Descender -\U04F8;Cyrillic Capital Letter Yeru With Diaeresis -\U04F9;Cyrillic Small Letter Yeru With Diaeresis -\U04FA;Cyrillic Capital Letter Ghe With Stroke And Hook -\U04FB;Cyrillic Small Letter Ghe With Stroke And Hook -\U04FC;Cyrillic Capital Letter Ha With Hook -\U04FD;Cyrillic Small Letter Ha With Hook -\U04FE;Cyrillic Capital Letter Ha With Stroke -\U04FF;Cyrillic Small Letter Ha With Stroke -\U0500;Cyrillic Capital Letter Komi De -\U0501;Cyrillic Small Letter Komi De -\U0502;Cyrillic Capital Letter Komi Dje -\U0503;Cyrillic Small Letter Komi Dje -\U0504;Cyrillic Capital Letter Komi Zje -\U0505;Cyrillic Small Letter Komi Zje -\U0506;Cyrillic Capital Letter Komi Dzje -\U0507;Cyrillic Small Letter Komi Dzje -\U0508;Cyrillic Capital Letter Komi Lje -\U0509;Cyrillic Small Letter Komi Lje -\U050A;Cyrillic Capital Letter Komi Nje -\U050B;Cyrillic Small Letter Komi Nje -\U050C;Cyrillic Capital Letter Komi Sje -\U050D;Cyrillic Small Letter Komi Sje -\U050E;Cyrillic Capital Letter Komi Tje -\U050F;Cyrillic Small Letter Komi Tje -\U0510;Cyrillic Capital Letter Reversed Ze -\U0511;Cyrillic Small Letter Reversed Ze -\U0512;Cyrillic Capital Letter El With Hook -\U0513;Cyrillic Small Letter El With Hook -\U0514;Cyrillic Capital Letter Lha -\U0515;Cyrillic Small Letter Lha -\U0516;Cyrillic Capital Letter Rha -\U0517;Cyrillic Small Letter Rha -\U0518;Cyrillic Capital Letter Yae -\U0519;Cyrillic Small Letter Yae -\U051A;Cyrillic Capital Letter Qa -\U051B;Cyrillic Small Letter Qa -\U051C;Cyrillic Capital Letter We -\U051D;Cyrillic Small Letter We -\U051E;Cyrillic Capital Letter Aleut Ka -\U051F;Cyrillic Small Letter Aleut Ka -\U0520;Cyrillic Capital Letter El With Middle Hook -\U0521;Cyrillic Small Letter El With Middle Hook -\U0522;Cyrillic Capital Letter En With Middle Hook -\U0523;Cyrillic Small Letter En With Middle Hook -\U0524;Cyrillic Capital Letter Pe With Descender -\U0525;Cyrillic Small Letter Pe With Descender -\U0526;Cyrillic Capital Letter Shha With Descender -\U0527;Cyrillic Small Letter Shha With Descender -\U0528;Cyrillic Capital Letter En With Left Hook -\U0529;Cyrillic Small Letter En With Left Hook -\U052A;Cyrillic Capital Letter Dzzhe -\U052B;Cyrillic Small Letter Dzzhe -\U052C;Cyrillic Capital Letter Dche -\U052D;Cyrillic Small Letter Dche -\U052E;Cyrillic Capital Letter El With Descender -\U052F;Cyrillic Small Letter El With Descender -\U0531;Armenian Capital Letter Ayb -\U0532;Armenian Capital Letter Ben -\U0533;Armenian Capital Letter Gim -\U0534;Armenian Capital Letter Da -\U0535;Armenian Capital Letter Ech -\U0536;Armenian Capital Letter Za -\U0537;Armenian Capital Letter Eh -\U0538;Armenian Capital Letter Et -\U0539;Armenian Capital Letter To -\U053A;Armenian Capital Letter Zhe -\U053B;Armenian Capital Letter Ini -\U053C;Armenian Capital Letter Liwn -\U053D;Armenian Capital Letter Xeh -\U053E;Armenian Capital Letter Ca -\U053F;Armenian Capital Letter Ken -\U0540;Armenian Capital Letter Ho -\U0541;Armenian Capital Letter Ja -\U0542;Armenian Capital Letter Ghad -\U0543;Armenian Capital Letter Cheh -\U0544;Armenian Capital Letter Men -\U0545;Armenian Capital Letter Yi -\U0546;Armenian Capital Letter Now -\U0547;Armenian Capital Letter Sha -\U0548;Armenian Capital Letter Vo -\U0549;Armenian Capital Letter Cha -\U054A;Armenian Capital Letter Peh -\U054B;Armenian Capital Letter Jheh -\U054C;Armenian Capital Letter Ra -\U054D;Armenian Capital Letter Seh -\U054E;Armenian Capital Letter Vew -\U054F;Armenian Capital Letter Tiwn -\U0550;Armenian Capital Letter Reh -\U0551;Armenian Capital Letter Co -\U0552;Armenian Capital Letter Yiwn -\U0553;Armenian Capital Letter Piwr -\U0554;Armenian Capital Letter Keh -\U0555;Armenian Capital Letter Oh -\U0556;Armenian Capital Letter Feh -\U0559;Armenian Modifier Letter Left Half Ring -\U055A;Armenian Apostrophe -\U055B;Armenian Emphasis Mark -\U055C;Armenian Exclamation Mark -\U055D;Armenian Comma -\U055E;Armenian Question Mark -\U055F;Armenian Abbreviation Mark -\U0560;Armenian Small Letter Turned Ayb -\U0561;Armenian Small Letter Ayb -\U0562;Armenian Small Letter Ben -\U0563;Armenian Small Letter Gim -\U0564;Armenian Small Letter Da -\U0565;Armenian Small Letter Ech -\U0566;Armenian Small Letter Za -\U0567;Armenian Small Letter Eh -\U0568;Armenian Small Letter Et -\U0569;Armenian Small Letter To -\U056A;Armenian Small Letter Zhe -\U056B;Armenian Small Letter Ini -\U056C;Armenian Small Letter Liwn -\U056D;Armenian Small Letter Xeh -\U056E;Armenian Small Letter Ca -\U056F;Armenian Small Letter Ken -\U0570;Armenian Small Letter Ho -\U0571;Armenian Small Letter Ja -\U0572;Armenian Small Letter Ghad -\U0573;Armenian Small Letter Cheh -\U0574;Armenian Small Letter Men -\U0575;Armenian Small Letter Yi -\U0576;Armenian Small Letter Now -\U0577;Armenian Small Letter Sha -\U0578;Armenian Small Letter Vo -\U0579;Armenian Small Letter Cha -\U057A;Armenian Small Letter Peh -\U057B;Armenian Small Letter Jheh -\U057C;Armenian Small Letter Ra -\U057D;Armenian Small Letter Seh -\U057E;Armenian Small Letter Vew -\U057F;Armenian Small Letter Tiwn -\U0580;Armenian Small Letter Reh -\U0581;Armenian Small Letter Co -\U0582;Armenian Small Letter Yiwn -\U0583;Armenian Small Letter Piwr -\U0584;Armenian Small Letter Keh -\U0585;Armenian Small Letter Oh -\U0586;Armenian Small Letter Feh -\U0587;Armenian Small Ligature Ech Yiwn -\U0588;Armenian Small Letter Yi With Stroke -\U0589;Armenian Full Stop -\U058A;Armenian Hyphen -\U058D;Right-Facing Armenian Eternity Sign -\U058E;Left-Facing Armenian Eternity Sign -\U058F;Armenian Dram Sign -\U0591;Hebrew Accent Etnahta -\U0592;Hebrew Accent Segol -\U0593;Hebrew Accent Shalshelet -\U0594;Hebrew Accent Zaqef Qatan -\U0595;Hebrew Accent Zaqef Gadol -\U0596;Hebrew Accent Tipeha -\U0597;Hebrew Accent Revia -\U0598;Hebrew Accent Zarqa -\U0599;Hebrew Accent Pashta -\U059A;Hebrew Accent Yetiv -\U059B;Hebrew Accent Tevir -\U059C;Hebrew Accent Geresh -\U059D;Hebrew Accent Geresh Muqdam -\U059E;Hebrew Accent Gershayim -\U059F;Hebrew Accent Qarney Para -\U05A0;Hebrew Accent Telisha Gedola -\U05A1;Hebrew Accent Pazer -\U05A2;Hebrew Accent Atnah Hafukh -\U05A3;Hebrew Accent Munah -\U05A4;Hebrew Accent Mahapakh -\U05A5;Hebrew Accent Merkha -\U05A6;Hebrew Accent Merkha Kefula -\U05A7;Hebrew Accent Darga -\U05A8;Hebrew Accent Qadma -\U05A9;Hebrew Accent Telisha Qetana -\U05AA;Hebrew Accent Yerah Ben Yomo -\U05AB;Hebrew Accent Ole -\U05AC;Hebrew Accent Iluy -\U05AD;Hebrew Accent Dehi -\U05AE;Hebrew Accent Zinor -\U05AF;Hebrew Mark Masora Circle -\U05B0;Hebrew Point Sheva -\U05B1;Hebrew Point Hataf Segol -\U05B2;Hebrew Point Hataf Patah -\U05B3;Hebrew Point Hataf Qamats -\U05B4;Hebrew Point Hiriq -\U05B5;Hebrew Point Tsere -\U05B6;Hebrew Point Segol -\U05B7;Hebrew Point Patah -\U05B8;Hebrew Point Qamats -\U05B9;Hebrew Point Holam -\U05BA;Hebrew Point Holam Haser For Vav -\U05BB;Hebrew Point Qubuts -\U05BC;Hebrew Point Dagesh Or Mapiq -\U05BD;Hebrew Point Meteg -\U05BE;Hebrew Punctuation Maqaf -\U05BF;Hebrew Point Rafe -\U05C0;Hebrew Punctuation Paseq -\U05C1;Hebrew Point Shin Dot -\U05C2;Hebrew Point Sin Dot -\U05C3;Hebrew Punctuation Sof Pasuq -\U05C4;Hebrew Mark Upper Dot -\U05C5;Hebrew Mark Lower Dot -\U05C6;Hebrew Punctuation Nun Hafukha -\U05C7;Hebrew Point Qamats Qatan -\U05D0;Hebrew Letter Alef -\U05D1;Hebrew Letter Bet -\U05D2;Hebrew Letter Gimel -\U05D3;Hebrew Letter Dalet -\U05D4;Hebrew Letter He -\U05D5;Hebrew Letter Vav -\U05D6;Hebrew Letter Zayin -\U05D7;Hebrew Letter Het -\U05D8;Hebrew Letter Tet -\U05D9;Hebrew Letter Yod -\U05DA;Hebrew Letter Final Kaf -\U05DB;Hebrew Letter Kaf -\U05DC;Hebrew Letter Lamed -\U05DD;Hebrew Letter Final Mem -\U05DE;Hebrew Letter Mem -\U05DF;Hebrew Letter Final Nun -\U05E0;Hebrew Letter Nun -\U05E1;Hebrew Letter Samekh -\U05E2;Hebrew Letter Ayin -\U05E3;Hebrew Letter Final Pe -\U05E4;Hebrew Letter Pe -\U05E5;Hebrew Letter Final Tsadi -\U05E6;Hebrew Letter Tsadi -\U05E7;Hebrew Letter Qof -\U05E8;Hebrew Letter Resh -\U05E9;Hebrew Letter Shin -\U05EA;Hebrew Letter Tav -\U05EF;Hebrew Yod Triangle -\U05F0;Hebrew Ligature Yiddish Double Vav -\U05F1;Hebrew Ligature Yiddish Vav Yod -\U05F2;Hebrew Ligature Yiddish Double Yod -\U05F3;Hebrew Punctuation Geresh -\U05F4;Hebrew Punctuation Gershayim -\U0600;Arabic Number Sign -\U0601;Arabic Sign Sanah -\U0602;Arabic Footnote Marker -\U0603;Arabic Sign Safha -\U0604;Arabic Sign Samvat -\U0605;Arabic Number Mark Above -\U0606;Arabic-Indic Cube Root -\U0607;Arabic-Indic Fourth Root -\U0608;Arabic Ray -\U0609;Arabic-Indic Per Mille Sign -\U060A;Arabic-Indic Per Ten Thousand Sign -\U060B;Afghani Sign -\U060C;Arabic Comma -\U060D;Arabic Date Separator -\U060E;Arabic Poetic Verse Sign -\U060F;Arabic Sign Misra -\U0610;Arabic Sign Sallallahou Alayhe Wassallam -\U0611;Arabic Sign Alayhe Assallam -\U0612;Arabic Sign Rahmatullah Alayhe -\U0613;Arabic Sign Radi Allahou Anhu -\U0614;Arabic Sign Takhallus -\U0615;Arabic Small High Tah -\U0616;Arabic Small High Ligature Alef With Lam With Yeh -\U0617;Arabic Small High Zain -\U0618;Arabic Small Fatha -\U0619;Arabic Small Damma -\U061A;Arabic Small Kasra -\U061B;Arabic Semicolon -\U061C;Arabic Letter Mark -\U061D;Arabic End Of Text Mark -\U061E;Arabic Triple Dot Punctuation Mark -\U061F;Arabic Question Mark -\U0620;Arabic Letter Kashmiri Yeh -\U0621;Arabic Letter Hamza -\U0622;Arabic Letter Alef With Madda Above -\U0623;Arabic Letter Alef With Hamza Above -\U0624;Arabic Letter Waw With Hamza Above -\U0625;Arabic Letter Alef With Hamza Below -\U0626;Arabic Letter Yeh With Hamza Above -\U0627;Arabic Letter Alef -\U0628;Arabic Letter Beh -\U0629;Arabic Letter Teh Marbuta -\U062A;Arabic Letter Teh -\U062B;Arabic Letter Theh -\U062C;Arabic Letter Jeem -\U062D;Arabic Letter Hah -\U062E;Arabic Letter Khah -\U062F;Arabic Letter Dal -\U0630;Arabic Letter Thal -\U0631;Arabic Letter Reh -\U0632;Arabic Letter Zain -\U0633;Arabic Letter Seen -\U0634;Arabic Letter Sheen -\U0635;Arabic Letter Sad -\U0636;Arabic Letter Dad -\U0637;Arabic Letter Tah -\U0638;Arabic Letter Zah -\U0639;Arabic Letter Ain -\U063A;Arabic Letter Ghain -\U063B;Arabic Letter Keheh With Two Dots Above -\U063C;Arabic Letter Keheh With Three Dots Below -\U063D;Arabic Letter Farsi Yeh With Inverted V -\U063E;Arabic Letter Farsi Yeh With Two Dots Above -\U063F;Arabic Letter Farsi Yeh With Three Dots Above -\U0640;Arabic Tatweel -\U0641;Arabic Letter Feh -\U0642;Arabic Letter Qaf -\U0643;Arabic Letter Kaf -\U0644;Arabic Letter Lam -\U0645;Arabic Letter Meem -\U0646;Arabic Letter Noon -\U0647;Arabic Letter Heh -\U0648;Arabic Letter Waw -\U0649;Arabic Letter Alef Maksura -\U064A;Arabic Letter Yeh -\U064B;Arabic Fathatan -\U064C;Arabic Dammatan -\U064D;Arabic Kasratan -\U064E;Arabic Fatha -\U064F;Arabic Damma -\U0650;Arabic Kasra -\U0651;Arabic Shadda -\U0652;Arabic Sukun -\U0653;Arabic Maddah Above -\U0654;Arabic Hamza Above -\U0655;Arabic Hamza Below -\U0656;Arabic Subscript Alef -\U0657;Arabic Inverted Damma -\U0658;Arabic Mark Noon Ghunna -\U0659;Arabic Zwarakay -\U065A;Arabic Vowel Sign Small V Above -\U065B;Arabic Vowel Sign Inverted Small V Above -\U065C;Arabic Vowel Sign Dot Below -\U065D;Arabic Reversed Damma -\U065E;Arabic Fatha With Two Dots -\U065F;Arabic Wavy Hamza Below -\U0660;Arabic-Indic Digit Zero -\U0661;Arabic-Indic Digit One -\U0662;Arabic-Indic Digit Two -\U0663;Arabic-Indic Digit Three -\U0664;Arabic-Indic Digit Four -\U0665;Arabic-Indic Digit Five -\U0666;Arabic-Indic Digit Six -\U0667;Arabic-Indic Digit Seven -\U0668;Arabic-Indic Digit Eight -\U0669;Arabic-Indic Digit Nine -\U066A;Arabic Percent Sign -\U066B;Arabic Decimal Separator -\U066C;Arabic Thousands Separator -\U066D;Arabic Five Pointed Star -\U066E;Arabic Letter Dotless Beh -\U066F;Arabic Letter Dotless Qaf -\U0670;Arabic Letter Superscript Alef -\U0671;Arabic Letter Alef Wasla -\U0672;Arabic Letter Alef With Wavy Hamza Above -\U0673;Arabic Letter Alef With Wavy Hamza Below -\U0674;Arabic Letter High Hamza -\U0675;Arabic Letter High Hamza Alef -\U0676;Arabic Letter High Hamza Waw -\U0677;Arabic Letter U With Hamza Above -\U0678;Arabic Letter High Hamza Yeh -\U0679;Arabic Letter Tteh -\U067A;Arabic Letter Tteheh -\U067B;Arabic Letter Beeh -\U067C;Arabic Letter Teh With Ring -\U067D;Arabic Letter Teh With Three Dots Above Downwards -\U067E;Arabic Letter Peh -\U067F;Arabic Letter Teheh -\U0680;Arabic Letter Beheh -\U0681;Arabic Letter Hah With Hamza Above -\U0682;Arabic Letter Hah With Two Dots Vertical Above -\U0683;Arabic Letter Nyeh -\U0684;Arabic Letter Dyeh -\U0685;Arabic Letter Hah With Three Dots Above -\U0686;Arabic Letter Tcheh -\U0687;Arabic Letter Tcheheh -\U0688;Arabic Letter Ddal -\U0689;Arabic Letter Dal With Ring -\U068A;Arabic Letter Dal With Dot Below -\U068B;Arabic Letter Dal With Dot Below And Small Tah -\U068C;Arabic Letter Dahal -\U068D;Arabic Letter Ddahal -\U068E;Arabic Letter Dul -\U068F;Arabic Letter Dal With Three Dots Above Downwards -\U0690;Arabic Letter Dal With Four Dots Above -\U0691;Arabic Letter Rreh -\U0692;Arabic Letter Reh With Small V -\U0693;Arabic Letter Reh With Ring -\U0694;Arabic Letter Reh With Dot Below -\U0695;Arabic Letter Reh With Small V Below -\U0696;Arabic Letter Reh With Dot Below And Dot Above -\U0697;Arabic Letter Reh With Two Dots Above -\U0698;Arabic Letter Jeh -\U0699;Arabic Letter Reh With Four Dots Above -\U069A;Arabic Letter Seen With Dot Below And Dot Above -\U069B;Arabic Letter Seen With Three Dots Below -\U069C;Arabic Letter Seen With Three Dots Below And Three Dots Above -\U069D;Arabic Letter Sad With Two Dots Below -\U069E;Arabic Letter Sad With Three Dots Above -\U069F;Arabic Letter Tah With Three Dots Above -\U06A0;Arabic Letter Ain With Three Dots Above -\U06A1;Arabic Letter Dotless Feh -\U06A2;Arabic Letter Feh With Dot Moved Below -\U06A3;Arabic Letter Feh With Dot Below -\U06A4;Arabic Letter Veh -\U06A5;Arabic Letter Feh With Three Dots Below -\U06A6;Arabic Letter Peheh -\U06A7;Arabic Letter Qaf With Dot Above -\U06A8;Arabic Letter Qaf With Three Dots Above -\U06A9;Arabic Letter Keheh -\U06AA;Arabic Letter Swash Kaf -\U06AB;Arabic Letter Kaf With Ring -\U06AC;Arabic Letter Kaf With Dot Above -\U06AD;Arabic Letter Ng -\U06AE;Arabic Letter Kaf With Three Dots Below -\U06AF;Arabic Letter Gaf -\U06B0;Arabic Letter Gaf With Ring -\U06B1;Arabic Letter Ngoeh -\U06B2;Arabic Letter Gaf With Two Dots Below -\U06B3;Arabic Letter Gueh -\U06B4;Arabic Letter Gaf With Three Dots Above -\U06B5;Arabic Letter Lam With Small V -\U06B6;Arabic Letter Lam With Dot Above -\U06B7;Arabic Letter Lam With Three Dots Above -\U06B8;Arabic Letter Lam With Three Dots Below -\U06B9;Arabic Letter Noon With Dot Below -\U06BA;Arabic Letter Noon Ghunna -\U06BB;Arabic Letter Rnoon -\U06BC;Arabic Letter Noon With Ring -\U06BD;Arabic Letter Noon With Three Dots Above -\U06BE;Arabic Letter Heh Doachashmee -\U06BF;Arabic Letter Tcheh With Dot Above -\U06C0;Arabic Letter Heh With Yeh Above -\U06C1;Arabic Letter Heh Goal -\U06C2;Arabic Letter Heh Goal With Hamza Above -\U06C3;Arabic Letter Teh Marbuta Goal -\U06C4;Arabic Letter Waw With Ring -\U06C5;Arabic Letter Kirghiz Oe -\U06C6;Arabic Letter Oe -\U06C7;Arabic Letter U -\U06C8;Arabic Letter Yu -\U06C9;Arabic Letter Kirghiz Yu -\U06CA;Arabic Letter Waw With Two Dots Above -\U06CB;Arabic Letter Ve -\U06CC;Arabic Letter Farsi Yeh -\U06CD;Arabic Letter Yeh With Tail -\U06CE;Arabic Letter Yeh With Small V -\U06CF;Arabic Letter Waw With Dot Above -\U06D0;Arabic Letter E -\U06D1;Arabic Letter Yeh With Three Dots Below -\U06D2;Arabic Letter Yeh Barree -\U06D3;Arabic Letter Yeh Barree With Hamza Above -\U06D4;Arabic Full Stop -\U06D5;Arabic Letter Ae -\U06D6;Arabic Small High Ligature Sad With Lam With Alef Maksura -\U06D7;Arabic Small High Ligature Qaf With Lam With Alef Maksura -\U06D8;Arabic Small High Meem Initial Form -\U06D9;Arabic Small High Lam Alef -\U06DA;Arabic Small High Jeem -\U06DB;Arabic Small High Three Dots -\U06DC;Arabic Small High Seen -\U06DD;Arabic End Of Ayah -\U06DE;Arabic Start Of Rub El Hizb -\U06DF;Arabic Small High Rounded Zero -\U06E0;Arabic Small High Upright Rectangular Zero -\U06E1;Arabic Small High Dotless Head Of Khah -\U06E2;Arabic Small High Meem Isolated Form -\U06E3;Arabic Small Low Seen -\U06E4;Arabic Small High Madda -\U06E5;Arabic Small Waw -\U06E6;Arabic Small Yeh -\U06E7;Arabic Small High Yeh -\U06E8;Arabic Small High Noon -\U06E9;Arabic Place Of Sajdah -\U06EA;Arabic Empty Centre Low Stop -\U06EB;Arabic Empty Centre High Stop -\U06EC;Arabic Rounded High Stop With Filled Centre -\U06ED;Arabic Small Low Meem -\U06EE;Arabic Letter Dal With Inverted V -\U06EF;Arabic Letter Reh With Inverted V -\U06F0;Extended Arabic-Indic Digit Zero -\U06F1;Extended Arabic-Indic Digit One -\U06F2;Extended Arabic-Indic Digit Two -\U06F3;Extended Arabic-Indic Digit Three -\U06F4;Extended Arabic-Indic Digit Four -\U06F5;Extended Arabic-Indic Digit Five -\U06F6;Extended Arabic-Indic Digit Six -\U06F7;Extended Arabic-Indic Digit Seven -\U06F8;Extended Arabic-Indic Digit Eight -\U06F9;Extended Arabic-Indic Digit Nine -\U06FA;Arabic Letter Sheen With Dot Below -\U06FB;Arabic Letter Dad With Dot Below -\U06FC;Arabic Letter Ghain With Dot Below -\U06FD;Arabic Sign Sindhi Ampersand -\U06FE;Arabic Sign Sindhi Postposition Men -\U06FF;Arabic Letter Heh With Inverted V -\U0700;Syriac End Of Paragraph -\U0701;Syriac Supralinear Full Stop -\U0702;Syriac Sublinear Full Stop -\U0703;Syriac Supralinear Colon -\U0704;Syriac Sublinear Colon -\U0705;Syriac Horizontal Colon -\U0706;Syriac Colon Skewed Left -\U0707;Syriac Colon Skewed Right -\U0708;Syriac Supralinear Colon Skewed Left -\U0709;Syriac Sublinear Colon Skewed Right -\U070A;Syriac Contraction -\U070B;Syriac Harklean Obelus -\U070C;Syriac Harklean Metobelus -\U070D;Syriac Harklean Asteriscus -\U070F;Syriac Abbreviation Mark -\U0710;Syriac Letter Alaph -\U0711;Syriac Letter Superscript Alaph -\U0712;Syriac Letter Beth -\U0713;Syriac Letter Gamal -\U0714;Syriac Letter Gamal Garshuni -\U0715;Syriac Letter Dalath -\U0716;Syriac Letter Dotless Dalath Rish -\U0717;Syriac Letter He -\U0718;Syriac Letter Waw -\U0719;Syriac Letter Zain -\U071A;Syriac Letter Heth -\U071B;Syriac Letter Teth -\U071C;Syriac Letter Teth Garshuni -\U071D;Syriac Letter Yudh -\U071E;Syriac Letter Yudh He -\U071F;Syriac Letter Kaph -\U0720;Syriac Letter Lamadh -\U0721;Syriac Letter Mim -\U0722;Syriac Letter Nun -\U0723;Syriac Letter Semkath -\U0724;Syriac Letter Final Semkath -\U0725;Syriac Letter E -\U0726;Syriac Letter Pe -\U0727;Syriac Letter Reversed Pe -\U0728;Syriac Letter Sadhe -\U0729;Syriac Letter Qaph -\U072A;Syriac Letter Rish -\U072B;Syriac Letter Shin -\U072C;Syriac Letter Taw -\U072D;Syriac Letter Persian Bheth -\U072E;Syriac Letter Persian Ghamal -\U072F;Syriac Letter Persian Dhalath -\U0730;Syriac Pthaha Above -\U0731;Syriac Pthaha Below -\U0732;Syriac Pthaha Dotted -\U0733;Syriac Zqapha Above -\U0734;Syriac Zqapha Below -\U0735;Syriac Zqapha Dotted -\U0736;Syriac Rbasa Above -\U0737;Syriac Rbasa Below -\U0738;Syriac Dotted Zlama Horizontal -\U0739;Syriac Dotted Zlama Angular -\U073A;Syriac Hbasa Above -\U073B;Syriac Hbasa Below -\U073C;Syriac Hbasa-Esasa Dotted -\U073D;Syriac Esasa Above -\U073E;Syriac Esasa Below -\U073F;Syriac Rwaha -\U0740;Syriac Feminine Dot -\U0741;Syriac Qushshaya -\U0742;Syriac Rukkakha -\U0743;Syriac Two Vertical Dots Above -\U0744;Syriac Two Vertical Dots Below -\U0745;Syriac Three Dots Above -\U0746;Syriac Three Dots Below -\U0747;Syriac Oblique Line Above -\U0748;Syriac Oblique Line Below -\U0749;Syriac Music -\U074A;Syriac Barrekh -\U074D;Syriac Letter Sogdian Zhain -\U074E;Syriac Letter Sogdian Khaph -\U074F;Syriac Letter Sogdian Fe -\U0750;Arabic Letter Beh With Three Dots Horizontally Below -\U0751;Arabic Letter Beh With Dot Below And Three Dots Above -\U0752;Arabic Letter Beh With Three Dots Pointing Upwards Below -\U0753;Arabic Letter Beh With Three Dots Pointing Upwards Below And Two Dots Above -\U0754;Arabic Letter Beh With Two Dots Below And Dot Above -\U0755;Arabic Letter Beh With Inverted Small V Below -\U0756;Arabic Letter Beh With Small V -\U0757;Arabic Letter Hah With Two Dots Above -\U0758;Arabic Letter Hah With Three Dots Pointing Upwards Below -\U0759;Arabic Letter Dal With Two Dots Vertically Below And Small Tah -\U075A;Arabic Letter Dal With Inverted Small V Below -\U075B;Arabic Letter Reh With Stroke -\U075C;Arabic Letter Seen With Four Dots Above -\U075D;Arabic Letter Ain With Two Dots Above -\U075E;Arabic Letter Ain With Three Dots Pointing Downwards Above -\U075F;Arabic Letter Ain With Two Dots Vertically Above -\U0760;Arabic Letter Feh With Two Dots Below -\U0761;Arabic Letter Feh With Three Dots Pointing Upwards Below -\U0762;Arabic Letter Keheh With Dot Above -\U0763;Arabic Letter Keheh With Three Dots Above -\U0764;Arabic Letter Keheh With Three Dots Pointing Upwards Below -\U0765;Arabic Letter Meem With Dot Above -\U0766;Arabic Letter Meem With Dot Below -\U0767;Arabic Letter Noon With Two Dots Below -\U0768;Arabic Letter Noon With Small Tah -\U0769;Arabic Letter Noon With Small V -\U076A;Arabic Letter Lam With Bar -\U076B;Arabic Letter Reh With Two Dots Vertically Above -\U076C;Arabic Letter Reh With Hamza Above -\U076D;Arabic Letter Seen With Two Dots Vertically Above -\U076E;Arabic Letter Hah With Small Arabic Letter Tah Below -\U076F;Arabic Letter Hah With Small Arabic Letter Tah And Two Dots -\U0770;Arabic Letter Seen With Small Arabic Letter Tah And Two Dots -\U0771;Arabic Letter Reh With Small Arabic Letter Tah And Two Dots -\U0772;Arabic Letter Hah With Small Arabic Letter Tah Above -\U0773;Arabic Letter Alef With Extended Arabic-Indic Digit Two Above -\U0774;Arabic Letter Alef With Extended Arabic-Indic Digit Three Above -\U0775;Arabic Letter Farsi Yeh With Extended Arabic-Indic Digit Two Above -\U0776;Arabic Letter Farsi Yeh With Extended Arabic-Indic Digit Three Above -\U0777;Arabic Letter Farsi Yeh With Extended Arabic-Indic Digit Four Below -\U0778;Arabic Letter Waw With Extended Arabic-Indic Digit Two Above -\U0779;Arabic Letter Waw With Extended Arabic-Indic Digit Three Above -\U077A;Arabic Letter Yeh Barree With Extended Arabic-Indic Digit Two Above -\U077B;Arabic Letter Yeh Barree With Extended Arabic-Indic Digit Three Above -\U077C;Arabic Letter Hah With Extended Arabic-Indic Digit Four Below -\U077D;Arabic Letter Seen With Extended Arabic-Indic Digit Four Above -\U077E;Arabic Letter Seen With Inverted V -\U077F;Arabic Letter Kaf With Two Dots Above -\U0780;Thaana Letter Haa -\U0781;Thaana Letter Shaviyani -\U0782;Thaana Letter Noonu -\U0783;Thaana Letter Raa -\U0784;Thaana Letter Baa -\U0785;Thaana Letter Lhaviyani -\U0786;Thaana Letter Kaafu -\U0787;Thaana Letter Alifu -\U0788;Thaana Letter Vaavu -\U0789;Thaana Letter Meemu -\U078A;Thaana Letter Faafu -\U078B;Thaana Letter Dhaalu -\U078C;Thaana Letter Thaa -\U078D;Thaana Letter Laamu -\U078E;Thaana Letter Gaafu -\U078F;Thaana Letter Gnaviyani -\U0790;Thaana Letter Seenu -\U0791;Thaana Letter Daviyani -\U0792;Thaana Letter Zaviyani -\U0793;Thaana Letter Taviyani -\U0794;Thaana Letter Yaa -\U0795;Thaana Letter Paviyani -\U0796;Thaana Letter Javiyani -\U0797;Thaana Letter Chaviyani -\U0798;Thaana Letter Ttaa -\U0799;Thaana Letter Hhaa -\U079A;Thaana Letter Khaa -\U079B;Thaana Letter Thaalu -\U079C;Thaana Letter Zaa -\U079D;Thaana Letter Sheenu -\U079E;Thaana Letter Saadhu -\U079F;Thaana Letter Daadhu -\U07A0;Thaana Letter To -\U07A1;Thaana Letter Zo -\U07A2;Thaana Letter Ainu -\U07A3;Thaana Letter Ghainu -\U07A4;Thaana Letter Qaafu -\U07A5;Thaana Letter Waavu -\U07A6;Thaana Abafili -\U07A7;Thaana Aabaafili -\U07A8;Thaana Ibifili -\U07A9;Thaana Eebeefili -\U07AA;Thaana Ubufili -\U07AB;Thaana Ooboofili -\U07AC;Thaana Ebefili -\U07AD;Thaana Eybeyfili -\U07AE;Thaana Obofili -\U07AF;Thaana Oaboafili -\U07B0;Thaana Sukun -\U07B1;Thaana Letter Naa -\U07C0;Nko Digit Zero -\U07C1;Nko Digit One -\U07C2;Nko Digit Two -\U07C3;Nko Digit Three -\U07C4;Nko Digit Four -\U07C5;Nko Digit Five -\U07C6;Nko Digit Six -\U07C7;Nko Digit Seven -\U07C8;Nko Digit Eight -\U07C9;Nko Digit Nine -\U07CA;Nko Letter A -\U07CB;Nko Letter Ee -\U07CC;Nko Letter I -\U07CD;Nko Letter E -\U07CE;Nko Letter U -\U07CF;Nko Letter Oo -\U07D0;Nko Letter O -\U07D1;Nko Letter Dagbasinna -\U07D2;Nko Letter N -\U07D3;Nko Letter Ba -\U07D4;Nko Letter Pa -\U07D5;Nko Letter Ta -\U07D6;Nko Letter Ja -\U07D7;Nko Letter Cha -\U07D8;Nko Letter Da -\U07D9;Nko Letter Ra -\U07DA;Nko Letter Rra -\U07DB;Nko Letter Sa -\U07DC;Nko Letter Gba -\U07DD;Nko Letter Fa -\U07DE;Nko Letter Ka -\U07DF;Nko Letter La -\U07E0;Nko Letter Na Woloso -\U07E1;Nko Letter Ma -\U07E2;Nko Letter Nya -\U07E3;Nko Letter Na -\U07E4;Nko Letter Ha -\U07E5;Nko Letter Wa -\U07E6;Nko Letter Ya -\U07E7;Nko Letter Nya Woloso -\U07E8;Nko Letter Jona Ja -\U07E9;Nko Letter Jona Cha -\U07EA;Nko Letter Jona Ra -\U07EB;Nko Combining Short High Tone -\U07EC;Nko Combining Short Low Tone -\U07ED;Nko Combining Short Rising Tone -\U07EE;Nko Combining Long Descending Tone -\U07EF;Nko Combining Long High Tone -\U07F0;Nko Combining Long Low Tone -\U07F1;Nko Combining Long Rising Tone -\U07F2;Nko Combining Nasalization Mark -\U07F3;Nko Combining Double Dot Above -\U07F4;Nko High Tone Apostrophe -\U07F5;Nko Low Tone Apostrophe -\U07F6;Nko Symbol Oo Dennen -\U07F7;Nko Symbol Gbakurunen -\U07F8;Nko Comma -\U07F9;Nko Exclamation Mark -\U07FA;Nko Lajanyalan -\U07FD;Nko Dantayalan -\U07FE;Nko Dorome Sign -\U07FF;Nko Taman Sign -\U0800;Samaritan Letter Alaf -\U0801;Samaritan Letter Bit -\U0802;Samaritan Letter Gaman -\U0803;Samaritan Letter Dalat -\U0804;Samaritan Letter Iy -\U0805;Samaritan Letter Baa -\U0806;Samaritan Letter Zen -\U0807;Samaritan Letter It -\U0808;Samaritan Letter Tit -\U0809;Samaritan Letter Yut -\U080A;Samaritan Letter Kaaf -\U080B;Samaritan Letter Labat -\U080C;Samaritan Letter Mim -\U080D;Samaritan Letter Nun -\U080E;Samaritan Letter Singaat -\U080F;Samaritan Letter In -\U0810;Samaritan Letter Fi -\U0811;Samaritan Letter Tsaadiy -\U0812;Samaritan Letter Quf -\U0813;Samaritan Letter Rish -\U0814;Samaritan Letter Shan -\U0815;Samaritan Letter Taaf -\U0816;Samaritan Mark In -\U0817;Samaritan Mark In-Alaf -\U0818;Samaritan Mark Occlusion -\U0819;Samaritan Mark Dagesh -\U081A;Samaritan Modifier Letter Epenthetic Yut -\U081B;Samaritan Mark Epenthetic Yut -\U081C;Samaritan Vowel Sign Long E -\U081D;Samaritan Vowel Sign E -\U081E;Samaritan Vowel Sign Overlong Aa -\U081F;Samaritan Vowel Sign Long Aa -\U0820;Samaritan Vowel Sign Aa -\U0821;Samaritan Vowel Sign Overlong A -\U0822;Samaritan Vowel Sign Long A -\U0823;Samaritan Vowel Sign A -\U0824;Samaritan Modifier Letter Short A -\U0825;Samaritan Vowel Sign Short A -\U0826;Samaritan Vowel Sign Long U -\U0827;Samaritan Vowel Sign U -\U0828;Samaritan Modifier Letter I -\U0829;Samaritan Vowel Sign Long I -\U082A;Samaritan Vowel Sign I -\U082B;Samaritan Vowel Sign O -\U082C;Samaritan Vowel Sign Sukun -\U082D;Samaritan Mark Nequdaa -\U0830;Samaritan Punctuation Nequdaa -\U0831;Samaritan Punctuation Afsaaq -\U0832;Samaritan Punctuation Anged -\U0833;Samaritan Punctuation Bau -\U0834;Samaritan Punctuation Atmaau -\U0835;Samaritan Punctuation Shiyyaalaa -\U0836;Samaritan Abbreviation Mark -\U0837;Samaritan Punctuation Melodic Qitsa -\U0838;Samaritan Punctuation Ziqaa -\U0839;Samaritan Punctuation Qitsa -\U083A;Samaritan Punctuation Zaef -\U083B;Samaritan Punctuation Turu -\U083C;Samaritan Punctuation Arkaanu -\U083D;Samaritan Punctuation Sof Mashfaat -\U083E;Samaritan Punctuation Annaau -\U0840;Mandaic Letter Halqa -\U0841;Mandaic Letter Ab -\U0842;Mandaic Letter Ag -\U0843;Mandaic Letter Ad -\U0844;Mandaic Letter Ah -\U0845;Mandaic Letter Ushenna -\U0846;Mandaic Letter Az -\U0847;Mandaic Letter It -\U0848;Mandaic Letter Att -\U0849;Mandaic Letter Aksa -\U084A;Mandaic Letter Ak -\U084B;Mandaic Letter Al -\U084C;Mandaic Letter Am -\U084D;Mandaic Letter An -\U084E;Mandaic Letter As -\U084F;Mandaic Letter In -\U0850;Mandaic Letter Ap -\U0851;Mandaic Letter Asz -\U0852;Mandaic Letter Aq -\U0853;Mandaic Letter Ar -\U0854;Mandaic Letter Ash -\U0855;Mandaic Letter At -\U0856;Mandaic Letter Dushenna -\U0857;Mandaic Letter Kad -\U0858;Mandaic Letter Ain -\U0859;Mandaic Affrication Mark -\U085A;Mandaic Vocalization Mark -\U085B;Mandaic Gemination Mark -\U085E;Mandaic Punctuation -\U0860;Syriac Letter Malayalam Nga -\U0861;Syriac Letter Malayalam Ja -\U0862;Syriac Letter Malayalam Nya -\U0863;Syriac Letter Malayalam Tta -\U0864;Syriac Letter Malayalam Nna -\U0865;Syriac Letter Malayalam Nnna -\U0866;Syriac Letter Malayalam Bha -\U0867;Syriac Letter Malayalam Ra -\U0868;Syriac Letter Malayalam Lla -\U0869;Syriac Letter Malayalam Llla -\U086A;Syriac Letter Malayalam Ssa -\U0870;Arabic Letter Alef With Attached Fatha -\U0871;Arabic Letter Alef With Attached Top Right Fatha -\U0872;Arabic Letter Alef With Right Middle Stroke -\U0873;Arabic Letter Alef With Left Middle Stroke -\U0874;Arabic Letter Alef With Attached Kasra -\U0875;Arabic Letter Alef With Attached Bottom Right Kasra -\U0876;Arabic Letter Alef With Attached Round Dot Above -\U0877;Arabic Letter Alef With Attached Right Round Dot -\U0878;Arabic Letter Alef With Attached Left Round Dot -\U0879;Arabic Letter Alef With Attached Round Dot Below -\U087A;Arabic Letter Alef With Dot Above -\U087B;Arabic Letter Alef With Attached Top Right Fatha And Dot Above -\U087C;Arabic Letter Alef With Right Middle Stroke And Dot Above -\U087D;Arabic Letter Alef With Attached Bottom Right Kasra And Dot Above -\U087E;Arabic Letter Alef With Attached Top Right Fatha And Left Ring -\U087F;Arabic Letter Alef With Right Middle Stroke And Left Ring -\U0880;Arabic Letter Alef With Attached Bottom Right Kasra And Left Ring -\U0881;Arabic Letter Alef With Attached Right Hamza -\U0882;Arabic Letter Alef With Attached Left Hamza -\U0883;Arabic Tatweel With Overstruck Hamza -\U0884;Arabic Tatweel With Overstruck Waw -\U0885;Arabic Tatweel With Two Dots Below -\U0886;Arabic Letter Thin Yeh -\U0887;Arabic Baseline Round Dot -\U0888;Arabic Raised Round Dot -\U0889;Arabic Letter Noon With Inverted Small V -\U088A;Arabic Letter Hah With Inverted Small V Below -\U088B;Arabic Letter Tah With Dot Below -\U088C;Arabic Letter Tah With Three Dots Below -\U088D;Arabic Letter Keheh With Two Dots Vertically Below -\U088E;Arabic Vertical Tail -\U0890;Arabic Pound Mark Above -\U0891;Arabic Piastre Mark Above -\U0898;Arabic Small High Word Al-Juz -\U0899;Arabic Small Low Word Ishmaam -\U089A;Arabic Small Low Word Imaala -\U089B;Arabic Small Low Word Tasheel -\U089C;Arabic Madda Waajib -\U089D;Arabic Superscript Alef Mokhassas -\U089E;Arabic Doubled Madda -\U089F;Arabic Half Madda Over Madda -\U08A0;Arabic Letter Beh With Small V Below -\U08A1;Arabic Letter Beh With Hamza Above -\U08A2;Arabic Letter Jeem With Two Dots Above -\U08A3;Arabic Letter Tah With Two Dots Above -\U08A4;Arabic Letter Feh With Dot Below And Three Dots Above -\U08A5;Arabic Letter Qaf With Dot Below -\U08A6;Arabic Letter Lam With Double Bar -\U08A7;Arabic Letter Meem With Three Dots Above -\U08A8;Arabic Letter Yeh With Two Dots Below And Hamza Above -\U08A9;Arabic Letter Yeh With Two Dots Below And Dot Above -\U08AA;Arabic Letter Reh With Loop -\U08AB;Arabic Letter Waw With Dot Within -\U08AC;Arabic Letter Rohingya Yeh -\U08AD;Arabic Letter Low Alef -\U08AE;Arabic Letter Dal With Three Dots Below -\U08AF;Arabic Letter Sad With Three Dots Below -\U08B0;Arabic Letter Gaf With Inverted Stroke -\U08B1;Arabic Letter Straight Waw -\U08B2;Arabic Letter Zain With Inverted V Above -\U08B3;Arabic Letter Ain With Three Dots Below -\U08B4;Arabic Letter Kaf With Dot Below -\U08B5;Arabic Letter Qaf With Dot Below And No Dots Above -\U08B6;Arabic Letter Beh With Small Meem Above -\U08B7;Arabic Letter Peh With Small Meem Above -\U08B8;Arabic Letter Teh With Small Teh Above -\U08B9;Arabic Letter Reh With Small Noon Above -\U08BA;Arabic Letter Yeh With Two Dots Below And Small Noon Above -\U08BB;Arabic Letter African Feh -\U08BC;Arabic Letter African Qaf -\U08BD;Arabic Letter African Noon -\U08BE;Arabic Letter Peh With Small V -\U08BF;Arabic Letter Teh With Small V -\U08C0;Arabic Letter Tteh With Small V -\U08C1;Arabic Letter Tcheh With Small V -\U08C2;Arabic Letter Keheh With Small V -\U08C3;Arabic Letter Ghain With Three Dots Above -\U08C4;Arabic Letter African Qaf With Three Dots Above -\U08C5;Arabic Letter Jeem With Three Dots Above -\U08C6;Arabic Letter Jeem With Three Dots Below -\U08C7;Arabic Letter Lam With Small Arabic Letter Tah Above -\U08C8;Arabic Letter Graf -\U08C9;Arabic Small Farsi Yeh -\U08CA;Arabic Small High Farsi Yeh -\U08CB;Arabic Small High Yeh Barree With Two Dots Below -\U08CC;Arabic Small High Word Sah -\U08CD;Arabic Small High Zah -\U08CE;Arabic Large Round Dot Above -\U08CF;Arabic Large Round Dot Below -\U08D0;Arabic Sukun Below -\U08D1;Arabic Large Circle Below -\U08D2;Arabic Large Round Dot Inside Circle Below -\U08D3;Arabic Small Low Waw -\U08D4;Arabic Small High Word Ar-Rub -\U08D5;Arabic Small High Sad -\U08D6;Arabic Small High Ain -\U08D7;Arabic Small High Qaf -\U08D8;Arabic Small High Noon With Kasra -\U08D9;Arabic Small Low Noon With Kasra -\U08DA;Arabic Small High Word Ath-Thalatha -\U08DB;Arabic Small High Word As-Sajda -\U08DC;Arabic Small High Word An-Nisf -\U08DD;Arabic Small High Word Sakta -\U08DE;Arabic Small High Word Qif -\U08DF;Arabic Small High Word Waqfa -\U08E0;Arabic Small High Footnote Marker -\U08E1;Arabic Small High Sign Safha -\U08E2;Arabic Disputed End Of Ayah -\U08E3;Arabic Turned Damma Below -\U08E4;Arabic Curly Fatha -\U08E5;Arabic Curly Damma -\U08E6;Arabic Curly Kasra -\U08E7;Arabic Curly Fathatan -\U08E8;Arabic Curly Dammatan -\U08E9;Arabic Curly Kasratan -\U08EA;Arabic Tone One Dot Above -\U08EB;Arabic Tone Two Dots Above -\U08EC;Arabic Tone Loop Above -\U08ED;Arabic Tone One Dot Below -\U08EE;Arabic Tone Two Dots Below -\U08EF;Arabic Tone Loop Below -\U08F0;Arabic Open Fathatan -\U08F1;Arabic Open Dammatan -\U08F2;Arabic Open Kasratan -\U08F3;Arabic Small High Waw -\U08F4;Arabic Fatha With Ring -\U08F5;Arabic Fatha With Dot Above -\U08F6;Arabic Kasra With Dot Below -\U08F7;Arabic Left Arrowhead Above -\U08F8;Arabic Right Arrowhead Above -\U08F9;Arabic Left Arrowhead Below -\U08FA;Arabic Right Arrowhead Below -\U08FB;Arabic Double Right Arrowhead Above -\U08FC;Arabic Double Right Arrowhead Above With Dot -\U08FD;Arabic Right Arrowhead Above With Dot -\U08FE;Arabic Damma With Dot -\U08FF;Arabic Mark Sideways Noon Ghunna -\U0900;Devanagari Sign Inverted Candrabindu -\U0901;Devanagari Sign Candrabindu -\U0902;Devanagari Sign Anusvara -\U0903;Devanagari Sign Visarga -\U0904;Devanagari Letter Short A -\U0905;Devanagari Letter A -\U0906;Devanagari Letter Aa -\U0907;Devanagari Letter I -\U0908;Devanagari Letter Ii -\U0909;Devanagari Letter U -\U090A;Devanagari Letter Uu -\U090B;Devanagari Letter Vocalic R -\U090C;Devanagari Letter Vocalic L -\U090D;Devanagari Letter Candra E -\U090E;Devanagari Letter Short E -\U090F;Devanagari Letter E -\U0910;Devanagari Letter Ai -\U0911;Devanagari Letter Candra O -\U0912;Devanagari Letter Short O -\U0913;Devanagari Letter O -\U0914;Devanagari Letter Au -\U0915;Devanagari Letter Ka -\U0916;Devanagari Letter Kha -\U0917;Devanagari Letter Ga -\U0918;Devanagari Letter Gha -\U0919;Devanagari Letter Nga -\U091A;Devanagari Letter Ca -\U091B;Devanagari Letter Cha -\U091C;Devanagari Letter Ja -\U091D;Devanagari Letter Jha -\U091E;Devanagari Letter Nya -\U091F;Devanagari Letter Tta -\U0920;Devanagari Letter Ttha -\U0921;Devanagari Letter Dda -\U0922;Devanagari Letter Ddha -\U0923;Devanagari Letter Nna -\U0924;Devanagari Letter Ta -\U0925;Devanagari Letter Tha -\U0926;Devanagari Letter Da -\U0927;Devanagari Letter Dha -\U0928;Devanagari Letter Na -\U0929;Devanagari Letter Nnna -\U092A;Devanagari Letter Pa -\U092B;Devanagari Letter Pha -\U092C;Devanagari Letter Ba -\U092D;Devanagari Letter Bha -\U092E;Devanagari Letter Ma -\U092F;Devanagari Letter Ya -\U0930;Devanagari Letter Ra -\U0931;Devanagari Letter Rra -\U0932;Devanagari Letter La -\U0933;Devanagari Letter Lla -\U0934;Devanagari Letter Llla -\U0935;Devanagari Letter Va -\U0936;Devanagari Letter Sha -\U0937;Devanagari Letter Ssa -\U0938;Devanagari Letter Sa -\U0939;Devanagari Letter Ha -\U093A;Devanagari Vowel Sign Oe -\U093B;Devanagari Vowel Sign Ooe -\U093C;Devanagari Sign Nukta -\U093D;Devanagari Sign Avagraha -\U093E;Devanagari Vowel Sign Aa -\U093F;Devanagari Vowel Sign I -\U0940;Devanagari Vowel Sign Ii -\U0941;Devanagari Vowel Sign U -\U0942;Devanagari Vowel Sign Uu -\U0943;Devanagari Vowel Sign Vocalic R -\U0944;Devanagari Vowel Sign Vocalic Rr -\U0945;Devanagari Vowel Sign Candra E -\U0946;Devanagari Vowel Sign Short E -\U0947;Devanagari Vowel Sign E -\U0948;Devanagari Vowel Sign Ai -\U0949;Devanagari Vowel Sign Candra O -\U094A;Devanagari Vowel Sign Short O -\U094B;Devanagari Vowel Sign O -\U094C;Devanagari Vowel Sign Au -\U094D;Devanagari Sign Virama -\U094E;Devanagari Vowel Sign Prishthamatra E -\U094F;Devanagari Vowel Sign Aw -\U0950;Devanagari Om -\U0951;Devanagari Stress Sign Udatta -\U0952;Devanagari Stress Sign Anudatta -\U0953;Devanagari Grave Accent -\U0954;Devanagari Acute Accent -\U0955;Devanagari Vowel Sign Candra Long E -\U0956;Devanagari Vowel Sign Ue -\U0957;Devanagari Vowel Sign Uue -\U0958;Devanagari Letter Qa -\U0959;Devanagari Letter Khha -\U095A;Devanagari Letter Ghha -\U095B;Devanagari Letter Za -\U095C;Devanagari Letter Dddha -\U095D;Devanagari Letter Rha -\U095E;Devanagari Letter Fa -\U095F;Devanagari Letter Yya -\U0960;Devanagari Letter Vocalic Rr -\U0961;Devanagari Letter Vocalic Ll -\U0962;Devanagari Vowel Sign Vocalic L -\U0963;Devanagari Vowel Sign Vocalic Ll -\U0964;Devanagari Danda -\U0965;Devanagari Double Danda -\U0966;Devanagari Digit Zero -\U0967;Devanagari Digit One -\U0968;Devanagari Digit Two -\U0969;Devanagari Digit Three -\U096A;Devanagari Digit Four -\U096B;Devanagari Digit Five -\U096C;Devanagari Digit Six -\U096D;Devanagari Digit Seven -\U096E;Devanagari Digit Eight -\U096F;Devanagari Digit Nine -\U0970;Devanagari Abbreviation Sign -\U0971;Devanagari Sign High Spacing Dot -\U0972;Devanagari Letter Candra A -\U0973;Devanagari Letter Oe -\U0974;Devanagari Letter Ooe -\U0975;Devanagari Letter Aw -\U0976;Devanagari Letter Ue -\U0977;Devanagari Letter Uue -\U0978;Devanagari Letter Marwari Dda -\U0979;Devanagari Letter Zha -\U097A;Devanagari Letter Heavy Ya -\U097B;Devanagari Letter Gga -\U097C;Devanagari Letter Jja -\U097D;Devanagari Letter Glottal Stop -\U097E;Devanagari Letter Ddda -\U097F;Devanagari Letter Bba -\U0980;Bengali Anji -\U0981;Bengali Sign Candrabindu -\U0982;Bengali Sign Anusvara -\U0983;Bengali Sign Visarga -\U0985;Bengali Letter A -\U0986;Bengali Letter Aa -\U0987;Bengali Letter I -\U0988;Bengali Letter Ii -\U0989;Bengali Letter U -\U098A;Bengali Letter Uu -\U098B;Bengali Letter Vocalic R -\U098C;Bengali Letter Vocalic L -\U098F;Bengali Letter E -\U0990;Bengali Letter Ai -\U0993;Bengali Letter O -\U0994;Bengali Letter Au -\U0995;Bengali Letter Ka -\U0996;Bengali Letter Kha -\U0997;Bengali Letter Ga -\U0998;Bengali Letter Gha -\U0999;Bengali Letter Nga -\U099A;Bengali Letter Ca -\U099B;Bengali Letter Cha -\U099C;Bengali Letter Ja -\U099D;Bengali Letter Jha -\U099E;Bengali Letter Nya -\U099F;Bengali Letter Tta -\U09A0;Bengali Letter Ttha -\U09A1;Bengali Letter Dda -\U09A2;Bengali Letter Ddha -\U09A3;Bengali Letter Nna -\U09A4;Bengali Letter Ta -\U09A5;Bengali Letter Tha -\U09A6;Bengali Letter Da -\U09A7;Bengali Letter Dha -\U09A8;Bengali Letter Na -\U09AA;Bengali Letter Pa -\U09AB;Bengali Letter Pha -\U09AC;Bengali Letter Ba -\U09AD;Bengali Letter Bha -\U09AE;Bengali Letter Ma -\U09AF;Bengali Letter Ya -\U09B0;Bengali Letter Ra -\U09B2;Bengali Letter La -\U09B6;Bengali Letter Sha -\U09B7;Bengali Letter Ssa -\U09B8;Bengali Letter Sa -\U09B9;Bengali Letter Ha -\U09BC;Bengali Sign Nukta -\U09BD;Bengali Sign Avagraha -\U09BE;Bengali Vowel Sign Aa -\U09BF;Bengali Vowel Sign I -\U09C0;Bengali Vowel Sign Ii -\U09C1;Bengali Vowel Sign U -\U09C2;Bengali Vowel Sign Uu -\U09C3;Bengali Vowel Sign Vocalic R -\U09C4;Bengali Vowel Sign Vocalic Rr -\U09C7;Bengali Vowel Sign E -\U09C8;Bengali Vowel Sign Ai -\U09CB;Bengali Vowel Sign O -\U09CC;Bengali Vowel Sign Au -\U09CD;Bengali Sign Virama -\U09CE;Bengali Letter Khanda Ta -\U09D7;Bengali Au Length Mark -\U09DC;Bengali Letter Rra -\U09DD;Bengali Letter Rha -\U09DF;Bengali Letter Yya -\U09E0;Bengali Letter Vocalic Rr -\U09E1;Bengali Letter Vocalic Ll -\U09E2;Bengali Vowel Sign Vocalic L -\U09E3;Bengali Vowel Sign Vocalic Ll -\U09E6;Bengali Digit Zero -\U09E7;Bengali Digit One -\U09E8;Bengali Digit Two -\U09E9;Bengali Digit Three -\U09EA;Bengali Digit Four -\U09EB;Bengali Digit Five -\U09EC;Bengali Digit Six -\U09ED;Bengali Digit Seven -\U09EE;Bengali Digit Eight -\U09EF;Bengali Digit Nine -\U09F0;Bengali Letter Ra With Middle Diagonal -\U09F1;Bengali Letter Ra With Lower Diagonal -\U09F2;Bengali Rupee Mark -\U09F3;Bengali Rupee Sign -\U09F4;Bengali Currency Numerator One -\U09F5;Bengali Currency Numerator Two -\U09F6;Bengali Currency Numerator Three -\U09F7;Bengali Currency Numerator Four -\U09F8;Bengali Currency Numerator One Less Than The Denominator -\U09F9;Bengali Currency Denominator Sixteen -\U09FA;Bengali Isshar -\U09FB;Bengali Ganda Mark -\U09FC;Bengali Letter Vedic Anusvara -\U09FD;Bengali Abbreviation Sign -\U09FE;Bengali Sandhi Mark -\U0A01;Gurmukhi Sign Adak Bindi -\U0A02;Gurmukhi Sign Bindi -\U0A03;Gurmukhi Sign Visarga -\U0A05;Gurmukhi Letter A -\U0A06;Gurmukhi Letter Aa -\U0A07;Gurmukhi Letter I -\U0A08;Gurmukhi Letter Ii -\U0A09;Gurmukhi Letter U -\U0A0A;Gurmukhi Letter Uu -\U0A0F;Gurmukhi Letter Ee -\U0A10;Gurmukhi Letter Ai -\U0A13;Gurmukhi Letter Oo -\U0A14;Gurmukhi Letter Au -\U0A15;Gurmukhi Letter Ka -\U0A16;Gurmukhi Letter Kha -\U0A17;Gurmukhi Letter Ga -\U0A18;Gurmukhi Letter Gha -\U0A19;Gurmukhi Letter Nga -\U0A1A;Gurmukhi Letter Ca -\U0A1B;Gurmukhi Letter Cha -\U0A1C;Gurmukhi Letter Ja -\U0A1D;Gurmukhi Letter Jha -\U0A1E;Gurmukhi Letter Nya -\U0A1F;Gurmukhi Letter Tta -\U0A20;Gurmukhi Letter Ttha -\U0A21;Gurmukhi Letter Dda -\U0A22;Gurmukhi Letter Ddha -\U0A23;Gurmukhi Letter Nna -\U0A24;Gurmukhi Letter Ta -\U0A25;Gurmukhi Letter Tha -\U0A26;Gurmukhi Letter Da -\U0A27;Gurmukhi Letter Dha -\U0A28;Gurmukhi Letter Na -\U0A2A;Gurmukhi Letter Pa -\U0A2B;Gurmukhi Letter Pha -\U0A2C;Gurmukhi Letter Ba -\U0A2D;Gurmukhi Letter Bha -\U0A2E;Gurmukhi Letter Ma -\U0A2F;Gurmukhi Letter Ya -\U0A30;Gurmukhi Letter Ra -\U0A32;Gurmukhi Letter La -\U0A33;Gurmukhi Letter Lla -\U0A35;Gurmukhi Letter Va -\U0A36;Gurmukhi Letter Sha -\U0A38;Gurmukhi Letter Sa -\U0A39;Gurmukhi Letter Ha -\U0A3C;Gurmukhi Sign Nukta -\U0A3E;Gurmukhi Vowel Sign Aa -\U0A3F;Gurmukhi Vowel Sign I -\U0A40;Gurmukhi Vowel Sign Ii -\U0A41;Gurmukhi Vowel Sign U -\U0A42;Gurmukhi Vowel Sign Uu -\U0A47;Gurmukhi Vowel Sign Ee -\U0A48;Gurmukhi Vowel Sign Ai -\U0A4B;Gurmukhi Vowel Sign Oo -\U0A4C;Gurmukhi Vowel Sign Au -\U0A4D;Gurmukhi Sign Virama -\U0A51;Gurmukhi Sign Udaat -\U0A59;Gurmukhi Letter Khha -\U0A5A;Gurmukhi Letter Ghha -\U0A5B;Gurmukhi Letter Za -\U0A5C;Gurmukhi Letter Rra -\U0A5E;Gurmukhi Letter Fa -\U0A66;Gurmukhi Digit Zero -\U0A67;Gurmukhi Digit One -\U0A68;Gurmukhi Digit Two -\U0A69;Gurmukhi Digit Three -\U0A6A;Gurmukhi Digit Four -\U0A6B;Gurmukhi Digit Five -\U0A6C;Gurmukhi Digit Six -\U0A6D;Gurmukhi Digit Seven -\U0A6E;Gurmukhi Digit Eight -\U0A6F;Gurmukhi Digit Nine -\U0A70;Gurmukhi Tippi -\U0A71;Gurmukhi Addak -\U0A72;Gurmukhi Iri -\U0A73;Gurmukhi Ura -\U0A74;Gurmukhi Ek Onkar -\U0A75;Gurmukhi Sign Yakash -\U0A76;Gurmukhi Abbreviation Sign -\U0A81;Gujarati Sign Candrabindu -\U0A82;Gujarati Sign Anusvara -\U0A83;Gujarati Sign Visarga -\U0A85;Gujarati Letter A -\U0A86;Gujarati Letter Aa -\U0A87;Gujarati Letter I -\U0A88;Gujarati Letter Ii -\U0A89;Gujarati Letter U -\U0A8A;Gujarati Letter Uu -\U0A8B;Gujarati Letter Vocalic R -\U0A8C;Gujarati Letter Vocalic L -\U0A8D;Gujarati Vowel Candra E -\U0A8F;Gujarati Letter E -\U0A90;Gujarati Letter Ai -\U0A91;Gujarati Vowel Candra O -\U0A93;Gujarati Letter O -\U0A94;Gujarati Letter Au -\U0A95;Gujarati Letter Ka -\U0A96;Gujarati Letter Kha -\U0A97;Gujarati Letter Ga -\U0A98;Gujarati Letter Gha -\U0A99;Gujarati Letter Nga -\U0A9A;Gujarati Letter Ca -\U0A9B;Gujarati Letter Cha -\U0A9C;Gujarati Letter Ja -\U0A9D;Gujarati Letter Jha -\U0A9E;Gujarati Letter Nya -\U0A9F;Gujarati Letter Tta -\U0AA0;Gujarati Letter Ttha -\U0AA1;Gujarati Letter Dda -\U0AA2;Gujarati Letter Ddha -\U0AA3;Gujarati Letter Nna -\U0AA4;Gujarati Letter Ta -\U0AA5;Gujarati Letter Tha -\U0AA6;Gujarati Letter Da -\U0AA7;Gujarati Letter Dha -\U0AA8;Gujarati Letter Na -\U0AAA;Gujarati Letter Pa -\U0AAB;Gujarati Letter Pha -\U0AAC;Gujarati Letter Ba -\U0AAD;Gujarati Letter Bha -\U0AAE;Gujarati Letter Ma -\U0AAF;Gujarati Letter Ya -\U0AB0;Gujarati Letter Ra -\U0AB2;Gujarati Letter La -\U0AB3;Gujarati Letter Lla -\U0AB5;Gujarati Letter Va -\U0AB6;Gujarati Letter Sha -\U0AB7;Gujarati Letter Ssa -\U0AB8;Gujarati Letter Sa -\U0AB9;Gujarati Letter Ha -\U0ABC;Gujarati Sign Nukta -\U0ABD;Gujarati Sign Avagraha -\U0ABE;Gujarati Vowel Sign Aa -\U0ABF;Gujarati Vowel Sign I -\U0AC0;Gujarati Vowel Sign Ii -\U0AC1;Gujarati Vowel Sign U -\U0AC2;Gujarati Vowel Sign Uu -\U0AC3;Gujarati Vowel Sign Vocalic R -\U0AC4;Gujarati Vowel Sign Vocalic Rr -\U0AC5;Gujarati Vowel Sign Candra E -\U0AC7;Gujarati Vowel Sign E -\U0AC8;Gujarati Vowel Sign Ai -\U0AC9;Gujarati Vowel Sign Candra O -\U0ACB;Gujarati Vowel Sign O -\U0ACC;Gujarati Vowel Sign Au -\U0ACD;Gujarati Sign Virama -\U0AD0;Gujarati Om -\U0AE0;Gujarati Letter Vocalic Rr -\U0AE1;Gujarati Letter Vocalic Ll -\U0AE2;Gujarati Vowel Sign Vocalic L -\U0AE3;Gujarati Vowel Sign Vocalic Ll -\U0AE6;Gujarati Digit Zero -\U0AE7;Gujarati Digit One -\U0AE8;Gujarati Digit Two -\U0AE9;Gujarati Digit Three -\U0AEA;Gujarati Digit Four -\U0AEB;Gujarati Digit Five -\U0AEC;Gujarati Digit Six -\U0AED;Gujarati Digit Seven -\U0AEE;Gujarati Digit Eight -\U0AEF;Gujarati Digit Nine -\U0AF0;Gujarati Abbreviation Sign -\U0AF1;Gujarati Rupee Sign -\U0AF9;Gujarati Letter Zha -\U0AFA;Gujarati Sign Sukun -\U0AFB;Gujarati Sign Shadda -\U0AFC;Gujarati Sign Maddah -\U0AFD;Gujarati Sign Three-Dot Nukta Above -\U0AFE;Gujarati Sign Circle Nukta Above -\U0AFF;Gujarati Sign Two-Circle Nukta Above -\U0B01;Oriya Sign Candrabindu -\U0B02;Oriya Sign Anusvara -\U0B03;Oriya Sign Visarga -\U0B05;Oriya Letter A -\U0B06;Oriya Letter Aa -\U0B07;Oriya Letter I -\U0B08;Oriya Letter Ii -\U0B09;Oriya Letter U -\U0B0A;Oriya Letter Uu -\U0B0B;Oriya Letter Vocalic R -\U0B0C;Oriya Letter Vocalic L -\U0B0F;Oriya Letter E -\U0B10;Oriya Letter Ai -\U0B13;Oriya Letter O -\U0B14;Oriya Letter Au -\U0B15;Oriya Letter Ka -\U0B16;Oriya Letter Kha -\U0B17;Oriya Letter Ga -\U0B18;Oriya Letter Gha -\U0B19;Oriya Letter Nga -\U0B1A;Oriya Letter Ca -\U0B1B;Oriya Letter Cha -\U0B1C;Oriya Letter Ja -\U0B1D;Oriya Letter Jha -\U0B1E;Oriya Letter Nya -\U0B1F;Oriya Letter Tta -\U0B20;Oriya Letter Ttha -\U0B21;Oriya Letter Dda -\U0B22;Oriya Letter Ddha -\U0B23;Oriya Letter Nna -\U0B24;Oriya Letter Ta -\U0B25;Oriya Letter Tha -\U0B26;Oriya Letter Da -\U0B27;Oriya Letter Dha -\U0B28;Oriya Letter Na -\U0B2A;Oriya Letter Pa -\U0B2B;Oriya Letter Pha -\U0B2C;Oriya Letter Ba -\U0B2D;Oriya Letter Bha -\U0B2E;Oriya Letter Ma -\U0B2F;Oriya Letter Ya -\U0B30;Oriya Letter Ra -\U0B32;Oriya Letter La -\U0B33;Oriya Letter Lla -\U0B35;Oriya Letter Va -\U0B36;Oriya Letter Sha -\U0B37;Oriya Letter Ssa -\U0B38;Oriya Letter Sa -\U0B39;Oriya Letter Ha -\U0B3C;Oriya Sign Nukta -\U0B3D;Oriya Sign Avagraha -\U0B3E;Oriya Vowel Sign Aa -\U0B3F;Oriya Vowel Sign I -\U0B40;Oriya Vowel Sign Ii -\U0B41;Oriya Vowel Sign U -\U0B42;Oriya Vowel Sign Uu -\U0B43;Oriya Vowel Sign Vocalic R -\U0B44;Oriya Vowel Sign Vocalic Rr -\U0B47;Oriya Vowel Sign E -\U0B48;Oriya Vowel Sign Ai -\U0B4B;Oriya Vowel Sign O -\U0B4C;Oriya Vowel Sign Au -\U0B4D;Oriya Sign Virama -\U0B55;Oriya Sign Overline -\U0B56;Oriya Ai Length Mark -\U0B57;Oriya Au Length Mark -\U0B5C;Oriya Letter Rra -\U0B5D;Oriya Letter Rha -\U0B5F;Oriya Letter Yya -\U0B60;Oriya Letter Vocalic Rr -\U0B61;Oriya Letter Vocalic Ll -\U0B62;Oriya Vowel Sign Vocalic L -\U0B63;Oriya Vowel Sign Vocalic Ll -\U0B66;Oriya Digit Zero -\U0B67;Oriya Digit One -\U0B68;Oriya Digit Two -\U0B69;Oriya Digit Three -\U0B6A;Oriya Digit Four -\U0B6B;Oriya Digit Five -\U0B6C;Oriya Digit Six -\U0B6D;Oriya Digit Seven -\U0B6E;Oriya Digit Eight -\U0B6F;Oriya Digit Nine -\U0B70;Oriya Isshar -\U0B71;Oriya Letter Wa -\U0B72;Oriya Fraction One Quarter -\U0B73;Oriya Fraction One Half -\U0B74;Oriya Fraction Three Quarters -\U0B75;Oriya Fraction One Sixteenth -\U0B76;Oriya Fraction One Eighth -\U0B77;Oriya Fraction Three Sixteenths -\U0B82;Tamil Sign Anusvara -\U0B83;Tamil Sign Visarga -\U0B85;Tamil Letter A -\U0B86;Tamil Letter Aa -\U0B87;Tamil Letter I -\U0B88;Tamil Letter Ii -\U0B89;Tamil Letter U -\U0B8A;Tamil Letter Uu -\U0B8E;Tamil Letter E -\U0B8F;Tamil Letter Ee -\U0B90;Tamil Letter Ai -\U0B92;Tamil Letter O -\U0B93;Tamil Letter Oo -\U0B94;Tamil Letter Au -\U0B95;Tamil Letter Ka -\U0B99;Tamil Letter Nga -\U0B9A;Tamil Letter Ca -\U0B9C;Tamil Letter Ja -\U0B9E;Tamil Letter Nya -\U0B9F;Tamil Letter Tta -\U0BA3;Tamil Letter Nna -\U0BA4;Tamil Letter Ta -\U0BA8;Tamil Letter Na -\U0BA9;Tamil Letter Nnna -\U0BAA;Tamil Letter Pa -\U0BAE;Tamil Letter Ma -\U0BAF;Tamil Letter Ya -\U0BB0;Tamil Letter Ra -\U0BB1;Tamil Letter Rra -\U0BB2;Tamil Letter La -\U0BB3;Tamil Letter Lla -\U0BB4;Tamil Letter Llla -\U0BB5;Tamil Letter Va -\U0BB6;Tamil Letter Sha -\U0BB7;Tamil Letter Ssa -\U0BB8;Tamil Letter Sa -\U0BB9;Tamil Letter Ha -\U0BBE;Tamil Vowel Sign Aa -\U0BBF;Tamil Vowel Sign I -\U0BC0;Tamil Vowel Sign Ii -\U0BC1;Tamil Vowel Sign U -\U0BC2;Tamil Vowel Sign Uu -\U0BC6;Tamil Vowel Sign E -\U0BC7;Tamil Vowel Sign Ee -\U0BC8;Tamil Vowel Sign Ai -\U0BCA;Tamil Vowel Sign O -\U0BCB;Tamil Vowel Sign Oo -\U0BCC;Tamil Vowel Sign Au -\U0BCD;Tamil Sign Virama -\U0BD0;Tamil Om -\U0BD7;Tamil Au Length Mark -\U0BE6;Tamil Digit Zero -\U0BE7;Tamil Digit One -\U0BE8;Tamil Digit Two -\U0BE9;Tamil Digit Three -\U0BEA;Tamil Digit Four -\U0BEB;Tamil Digit Five -\U0BEC;Tamil Digit Six -\U0BED;Tamil Digit Seven -\U0BEE;Tamil Digit Eight -\U0BEF;Tamil Digit Nine -\U0BF0;Tamil Number Ten -\U0BF1;Tamil Number One Hundred -\U0BF2;Tamil Number One Thousand -\U0BF3;Tamil Day Sign -\U0BF4;Tamil Month Sign -\U0BF5;Tamil Year Sign -\U0BF6;Tamil Debit Sign -\U0BF7;Tamil Credit Sign -\U0BF8;Tamil As Above Sign -\U0BF9;Tamil Rupee Sign -\U0BFA;Tamil Number Sign -\U0C00;Telugu Sign Combining Candrabindu Above -\U0C01;Telugu Sign Candrabindu -\U0C02;Telugu Sign Anusvara -\U0C03;Telugu Sign Visarga -\U0C04;Telugu Sign Combining Anusvara Above -\U0C05;Telugu Letter A -\U0C06;Telugu Letter Aa -\U0C07;Telugu Letter I -\U0C08;Telugu Letter Ii -\U0C09;Telugu Letter U -\U0C0A;Telugu Letter Uu -\U0C0B;Telugu Letter Vocalic R -\U0C0C;Telugu Letter Vocalic L -\U0C0E;Telugu Letter E -\U0C0F;Telugu Letter Ee -\U0C10;Telugu Letter Ai -\U0C12;Telugu Letter O -\U0C13;Telugu Letter Oo -\U0C14;Telugu Letter Au -\U0C15;Telugu Letter Ka -\U0C16;Telugu Letter Kha -\U0C17;Telugu Letter Ga -\U0C18;Telugu Letter Gha -\U0C19;Telugu Letter Nga -\U0C1A;Telugu Letter Ca -\U0C1B;Telugu Letter Cha -\U0C1C;Telugu Letter Ja -\U0C1D;Telugu Letter Jha -\U0C1E;Telugu Letter Nya -\U0C1F;Telugu Letter Tta -\U0C20;Telugu Letter Ttha -\U0C21;Telugu Letter Dda -\U0C22;Telugu Letter Ddha -\U0C23;Telugu Letter Nna -\U0C24;Telugu Letter Ta -\U0C25;Telugu Letter Tha -\U0C26;Telugu Letter Da -\U0C27;Telugu Letter Dha -\U0C28;Telugu Letter Na -\U0C2A;Telugu Letter Pa -\U0C2B;Telugu Letter Pha -\U0C2C;Telugu Letter Ba -\U0C2D;Telugu Letter Bha -\U0C2E;Telugu Letter Ma -\U0C2F;Telugu Letter Ya -\U0C30;Telugu Letter Ra -\U0C31;Telugu Letter Rra -\U0C32;Telugu Letter La -\U0C33;Telugu Letter Lla -\U0C34;Telugu Letter Llla -\U0C35;Telugu Letter Va -\U0C36;Telugu Letter Sha -\U0C37;Telugu Letter Ssa -\U0C38;Telugu Letter Sa -\U0C39;Telugu Letter Ha -\U0C3C;Telugu Sign Nukta -\U0C3D;Telugu Sign Avagraha -\U0C3E;Telugu Vowel Sign Aa -\U0C3F;Telugu Vowel Sign I -\U0C40;Telugu Vowel Sign Ii -\U0C41;Telugu Vowel Sign U -\U0C42;Telugu Vowel Sign Uu -\U0C43;Telugu Vowel Sign Vocalic R -\U0C44;Telugu Vowel Sign Vocalic Rr -\U0C46;Telugu Vowel Sign E -\U0C47;Telugu Vowel Sign Ee -\U0C48;Telugu Vowel Sign Ai -\U0C4A;Telugu Vowel Sign O -\U0C4B;Telugu Vowel Sign Oo -\U0C4C;Telugu Vowel Sign Au -\U0C4D;Telugu Sign Virama -\U0C55;Telugu Length Mark -\U0C56;Telugu Ai Length Mark -\U0C58;Telugu Letter Tsa -\U0C59;Telugu Letter Dza -\U0C5A;Telugu Letter Rrra -\U0C5D;Telugu Letter Nakaara Pollu -\U0C60;Telugu Letter Vocalic Rr -\U0C61;Telugu Letter Vocalic Ll -\U0C62;Telugu Vowel Sign Vocalic L -\U0C63;Telugu Vowel Sign Vocalic Ll -\U0C66;Telugu Digit Zero -\U0C67;Telugu Digit One -\U0C68;Telugu Digit Two -\U0C69;Telugu Digit Three -\U0C6A;Telugu Digit Four -\U0C6B;Telugu Digit Five -\U0C6C;Telugu Digit Six -\U0C6D;Telugu Digit Seven -\U0C6E;Telugu Digit Eight -\U0C6F;Telugu Digit Nine -\U0C77;Telugu Sign Siddham -\U0C78;Telugu Fraction Digit Zero For Odd Powers Of Four -\U0C79;Telugu Fraction Digit One For Odd Powers Of Four -\U0C7A;Telugu Fraction Digit Two For Odd Powers Of Four -\U0C7B;Telugu Fraction Digit Three For Odd Powers Of Four -\U0C7C;Telugu Fraction Digit One For Even Powers Of Four -\U0C7D;Telugu Fraction Digit Two For Even Powers Of Four -\U0C7E;Telugu Fraction Digit Three For Even Powers Of Four -\U0C7F;Telugu Sign Tuumu -\U0C80;Kannada Sign Spacing Candrabindu -\U0C81;Kannada Sign Candrabindu -\U0C82;Kannada Sign Anusvara -\U0C83;Kannada Sign Visarga -\U0C84;Kannada Sign Siddham -\U0C85;Kannada Letter A -\U0C86;Kannada Letter Aa -\U0C87;Kannada Letter I -\U0C88;Kannada Letter Ii -\U0C89;Kannada Letter U -\U0C8A;Kannada Letter Uu -\U0C8B;Kannada Letter Vocalic R -\U0C8C;Kannada Letter Vocalic L -\U0C8E;Kannada Letter E -\U0C8F;Kannada Letter Ee -\U0C90;Kannada Letter Ai -\U0C92;Kannada Letter O -\U0C93;Kannada Letter Oo -\U0C94;Kannada Letter Au -\U0C95;Kannada Letter Ka -\U0C96;Kannada Letter Kha -\U0C97;Kannada Letter Ga -\U0C98;Kannada Letter Gha -\U0C99;Kannada Letter Nga -\U0C9A;Kannada Letter Ca -\U0C9B;Kannada Letter Cha -\U0C9C;Kannada Letter Ja -\U0C9D;Kannada Letter Jha -\U0C9E;Kannada Letter Nya -\U0C9F;Kannada Letter Tta -\U0CA0;Kannada Letter Ttha -\U0CA1;Kannada Letter Dda -\U0CA2;Kannada Letter Ddha -\U0CA3;Kannada Letter Nna -\U0CA4;Kannada Letter Ta -\U0CA5;Kannada Letter Tha -\U0CA6;Kannada Letter Da -\U0CA7;Kannada Letter Dha -\U0CA8;Kannada Letter Na -\U0CAA;Kannada Letter Pa -\U0CAB;Kannada Letter Pha -\U0CAC;Kannada Letter Ba -\U0CAD;Kannada Letter Bha -\U0CAE;Kannada Letter Ma -\U0CAF;Kannada Letter Ya -\U0CB0;Kannada Letter Ra -\U0CB1;Kannada Letter Rra -\U0CB2;Kannada Letter La -\U0CB3;Kannada Letter Lla -\U0CB5;Kannada Letter Va -\U0CB6;Kannada Letter Sha -\U0CB7;Kannada Letter Ssa -\U0CB8;Kannada Letter Sa -\U0CB9;Kannada Letter Ha -\U0CBC;Kannada Sign Nukta -\U0CBD;Kannada Sign Avagraha -\U0CBE;Kannada Vowel Sign Aa -\U0CBF;Kannada Vowel Sign I -\U0CC0;Kannada Vowel Sign Ii -\U0CC1;Kannada Vowel Sign U -\U0CC2;Kannada Vowel Sign Uu -\U0CC3;Kannada Vowel Sign Vocalic R -\U0CC4;Kannada Vowel Sign Vocalic Rr -\U0CC6;Kannada Vowel Sign E -\U0CC7;Kannada Vowel Sign Ee -\U0CC8;Kannada Vowel Sign Ai -\U0CCA;Kannada Vowel Sign O -\U0CCB;Kannada Vowel Sign Oo -\U0CCC;Kannada Vowel Sign Au -\U0CCD;Kannada Sign Virama -\U0CD5;Kannada Length Mark -\U0CD6;Kannada Ai Length Mark -\U0CDD;Kannada Letter Nakaara Pollu -\U0CDE;Kannada Letter Fa -\U0CE0;Kannada Letter Vocalic Rr -\U0CE1;Kannada Letter Vocalic Ll -\U0CE2;Kannada Vowel Sign Vocalic L -\U0CE3;Kannada Vowel Sign Vocalic Ll -\U0CE6;Kannada Digit Zero -\U0CE7;Kannada Digit One -\U0CE8;Kannada Digit Two -\U0CE9;Kannada Digit Three -\U0CEA;Kannada Digit Four -\U0CEB;Kannada Digit Five -\U0CEC;Kannada Digit Six -\U0CED;Kannada Digit Seven -\U0CEE;Kannada Digit Eight -\U0CEF;Kannada Digit Nine -\U0CF1;Kannada Sign Jihvamuliya -\U0CF2;Kannada Sign Upadhmaniya -\U0CF3;Kannada Sign Combining Anusvara Above Right -\U0D00;Malayalam Sign Combining Anusvara Above -\U0D01;Malayalam Sign Candrabindu -\U0D02;Malayalam Sign Anusvara -\U0D03;Malayalam Sign Visarga -\U0D04;Malayalam Letter Vedic Anusvara -\U0D05;Malayalam Letter A -\U0D06;Malayalam Letter Aa -\U0D07;Malayalam Letter I -\U0D08;Malayalam Letter Ii -\U0D09;Malayalam Letter U -\U0D0A;Malayalam Letter Uu -\U0D0B;Malayalam Letter Vocalic R -\U0D0C;Malayalam Letter Vocalic L -\U0D0E;Malayalam Letter E -\U0D0F;Malayalam Letter Ee -\U0D10;Malayalam Letter Ai -\U0D12;Malayalam Letter O -\U0D13;Malayalam Letter Oo -\U0D14;Malayalam Letter Au -\U0D15;Malayalam Letter Ka -\U0D16;Malayalam Letter Kha -\U0D17;Malayalam Letter Ga -\U0D18;Malayalam Letter Gha -\U0D19;Malayalam Letter Nga -\U0D1A;Malayalam Letter Ca -\U0D1B;Malayalam Letter Cha -\U0D1C;Malayalam Letter Ja -\U0D1D;Malayalam Letter Jha -\U0D1E;Malayalam Letter Nya -\U0D1F;Malayalam Letter Tta -\U0D20;Malayalam Letter Ttha -\U0D21;Malayalam Letter Dda -\U0D22;Malayalam Letter Ddha -\U0D23;Malayalam Letter Nna -\U0D24;Malayalam Letter Ta -\U0D25;Malayalam Letter Tha -\U0D26;Malayalam Letter Da -\U0D27;Malayalam Letter Dha -\U0D28;Malayalam Letter Na -\U0D29;Malayalam Letter Nnna -\U0D2A;Malayalam Letter Pa -\U0D2B;Malayalam Letter Pha -\U0D2C;Malayalam Letter Ba -\U0D2D;Malayalam Letter Bha -\U0D2E;Malayalam Letter Ma -\U0D2F;Malayalam Letter Ya -\U0D30;Malayalam Letter Ra -\U0D31;Malayalam Letter Rra -\U0D32;Malayalam Letter La -\U0D33;Malayalam Letter Lla -\U0D34;Malayalam Letter Llla -\U0D35;Malayalam Letter Va -\U0D36;Malayalam Letter Sha -\U0D37;Malayalam Letter Ssa -\U0D38;Malayalam Letter Sa -\U0D39;Malayalam Letter Ha -\U0D3A;Malayalam Letter Ttta -\U0D3B;Malayalam Sign Vertical Bar Virama -\U0D3C;Malayalam Sign Circular Virama -\U0D3D;Malayalam Sign Avagraha -\U0D3E;Malayalam Vowel Sign Aa -\U0D3F;Malayalam Vowel Sign I -\U0D40;Malayalam Vowel Sign Ii -\U0D41;Malayalam Vowel Sign U -\U0D42;Malayalam Vowel Sign Uu -\U0D43;Malayalam Vowel Sign Vocalic R -\U0D44;Malayalam Vowel Sign Vocalic Rr -\U0D46;Malayalam Vowel Sign E -\U0D47;Malayalam Vowel Sign Ee -\U0D48;Malayalam Vowel Sign Ai -\U0D4A;Malayalam Vowel Sign O -\U0D4B;Malayalam Vowel Sign Oo -\U0D4C;Malayalam Vowel Sign Au -\U0D4D;Malayalam Sign Virama -\U0D4E;Malayalam Letter Dot Reph -\U0D4F;Malayalam Sign Para -\U0D54;Malayalam Letter Chillu M -\U0D55;Malayalam Letter Chillu Y -\U0D56;Malayalam Letter Chillu Lll -\U0D57;Malayalam Au Length Mark -\U0D58;Malayalam Fraction One One-Hundred-And-Sixtieth -\U0D59;Malayalam Fraction One Fortieth -\U0D5A;Malayalam Fraction Three Eightieths -\U0D5B;Malayalam Fraction One Twentieth -\U0D5C;Malayalam Fraction One Tenth -\U0D5D;Malayalam Fraction Three Twentieths -\U0D5E;Malayalam Fraction One Fifth -\U0D5F;Malayalam Letter Archaic Ii -\U0D60;Malayalam Letter Vocalic Rr -\U0D61;Malayalam Letter Vocalic Ll -\U0D62;Malayalam Vowel Sign Vocalic L -\U0D63;Malayalam Vowel Sign Vocalic Ll -\U0D66;Malayalam Digit Zero -\U0D67;Malayalam Digit One -\U0D68;Malayalam Digit Two -\U0D69;Malayalam Digit Three -\U0D6A;Malayalam Digit Four -\U0D6B;Malayalam Digit Five -\U0D6C;Malayalam Digit Six -\U0D6D;Malayalam Digit Seven -\U0D6E;Malayalam Digit Eight -\U0D6F;Malayalam Digit Nine -\U0D70;Malayalam Number Ten -\U0D71;Malayalam Number One Hundred -\U0D72;Malayalam Number One Thousand -\U0D73;Malayalam Fraction One Quarter -\U0D74;Malayalam Fraction One Half -\U0D75;Malayalam Fraction Three Quarters -\U0D76;Malayalam Fraction One Sixteenth -\U0D77;Malayalam Fraction One Eighth -\U0D78;Malayalam Fraction Three Sixteenths -\U0D79;Malayalam Date Mark -\U0D7A;Malayalam Letter Chillu Nn -\U0D7B;Malayalam Letter Chillu N -\U0D7C;Malayalam Letter Chillu Rr -\U0D7D;Malayalam Letter Chillu L -\U0D7E;Malayalam Letter Chillu Ll -\U0D7F;Malayalam Letter Chillu K -\U0D81;Sinhala Sign Candrabindu -\U0D82;Sinhala Sign Anusvaraya -\U0D83;Sinhala Sign Visargaya -\U0D85;Sinhala Letter Ayanna -\U0D86;Sinhala Letter Aayanna -\U0D87;Sinhala Letter Aeyanna -\U0D88;Sinhala Letter Aeeyanna -\U0D89;Sinhala Letter Iyanna -\U0D8A;Sinhala Letter Iiyanna -\U0D8B;Sinhala Letter Uyanna -\U0D8C;Sinhala Letter Uuyanna -\U0D8D;Sinhala Letter Iruyanna -\U0D8E;Sinhala Letter Iruuyanna -\U0D8F;Sinhala Letter Iluyanna -\U0D90;Sinhala Letter Iluuyanna -\U0D91;Sinhala Letter Eyanna -\U0D92;Sinhala Letter Eeyanna -\U0D93;Sinhala Letter Aiyanna -\U0D94;Sinhala Letter Oyanna -\U0D95;Sinhala Letter Ooyanna -\U0D96;Sinhala Letter Auyanna -\U0D9A;Sinhala Letter Alpapraana Kayanna -\U0D9B;Sinhala Letter Mahaapraana Kayanna -\U0D9C;Sinhala Letter Alpapraana Gayanna -\U0D9D;Sinhala Letter Mahaapraana Gayanna -\U0D9E;Sinhala Letter Kantaja Naasikyaya -\U0D9F;Sinhala Letter Sanyaka Gayanna -\U0DA0;Sinhala Letter Alpapraana Cayanna -\U0DA1;Sinhala Letter Mahaapraana Cayanna -\U0DA2;Sinhala Letter Alpapraana Jayanna -\U0DA3;Sinhala Letter Mahaapraana Jayanna -\U0DA4;Sinhala Letter Taaluja Naasikyaya -\U0DA5;Sinhala Letter Taaluja Sanyooga Naaksikyaya -\U0DA6;Sinhala Letter Sanyaka Jayanna -\U0DA7;Sinhala Letter Alpapraana Ttayanna -\U0DA8;Sinhala Letter Mahaapraana Ttayanna -\U0DA9;Sinhala Letter Alpapraana Ddayanna -\U0DAA;Sinhala Letter Mahaapraana Ddayanna -\U0DAB;Sinhala Letter Muurdhaja Nayanna -\U0DAC;Sinhala Letter Sanyaka Ddayanna -\U0DAD;Sinhala Letter Alpapraana Tayanna -\U0DAE;Sinhala Letter Mahaapraana Tayanna -\U0DAF;Sinhala Letter Alpapraana Dayanna -\U0DB0;Sinhala Letter Mahaapraana Dayanna -\U0DB1;Sinhala Letter Dantaja Nayanna -\U0DB3;Sinhala Letter Sanyaka Dayanna -\U0DB4;Sinhala Letter Alpapraana Payanna -\U0DB5;Sinhala Letter Mahaapraana Payanna -\U0DB6;Sinhala Letter Alpapraana Bayanna -\U0DB7;Sinhala Letter Mahaapraana Bayanna -\U0DB8;Sinhala Letter Mayanna -\U0DB9;Sinhala Letter Amba Bayanna -\U0DBA;Sinhala Letter Yayanna -\U0DBB;Sinhala Letter Rayanna -\U0DBD;Sinhala Letter Dantaja Layanna -\U0DC0;Sinhala Letter Vayanna -\U0DC1;Sinhala Letter Taaluja Sayanna -\U0DC2;Sinhala Letter Muurdhaja Sayanna -\U0DC3;Sinhala Letter Dantaja Sayanna -\U0DC4;Sinhala Letter Hayanna -\U0DC5;Sinhala Letter Muurdhaja Layanna -\U0DC6;Sinhala Letter Fayanna -\U0DCA;Sinhala Sign Al-Lakuna -\U0DCF;Sinhala Vowel Sign Aela-Pilla -\U0DD0;Sinhala Vowel Sign Ketti Aeda-Pilla -\U0DD1;Sinhala Vowel Sign Diga Aeda-Pilla -\U0DD2;Sinhala Vowel Sign Ketti Is-Pilla -\U0DD3;Sinhala Vowel Sign Diga Is-Pilla -\U0DD4;Sinhala Vowel Sign Ketti Paa-Pilla -\U0DD6;Sinhala Vowel Sign Diga Paa-Pilla -\U0DD8;Sinhala Vowel Sign Gaetta-Pilla -\U0DD9;Sinhala Vowel Sign Kombuva -\U0DDA;Sinhala Vowel Sign Diga Kombuva -\U0DDB;Sinhala Vowel Sign Kombu Deka -\U0DDC;Sinhala Vowel Sign Kombuva Haa Aela-Pilla -\U0DDD;Sinhala Vowel Sign Kombuva Haa Diga Aela-Pilla -\U0DDE;Sinhala Vowel Sign Kombuva Haa Gayanukitta -\U0DDF;Sinhala Vowel Sign Gayanukitta -\U0DE6;Sinhala Lith Digit Zero -\U0DE7;Sinhala Lith Digit One -\U0DE8;Sinhala Lith Digit Two -\U0DE9;Sinhala Lith Digit Three -\U0DEA;Sinhala Lith Digit Four -\U0DEB;Sinhala Lith Digit Five -\U0DEC;Sinhala Lith Digit Six -\U0DED;Sinhala Lith Digit Seven -\U0DEE;Sinhala Lith Digit Eight -\U0DEF;Sinhala Lith Digit Nine -\U0DF2;Sinhala Vowel Sign Diga Gaetta-Pilla -\U0DF3;Sinhala Vowel Sign Diga Gayanukitta -\U0DF4;Sinhala Punctuation Kunddaliya -\U0E01;Thai Character Ko Kai -\U0E02;Thai Character Kho Khai -\U0E03;Thai Character Kho Khuat -\U0E04;Thai Character Kho Khwai -\U0E05;Thai Character Kho Khon -\U0E06;Thai Character Kho Rakhang -\U0E07;Thai Character Ngo Ngu -\U0E08;Thai Character Cho Chan -\U0E09;Thai Character Cho Ching -\U0E0A;Thai Character Cho Chang -\U0E0B;Thai Character So So -\U0E0C;Thai Character Cho Choe -\U0E0D;Thai Character Yo Ying -\U0E0E;Thai Character Do Chada -\U0E0F;Thai Character To Patak -\U0E10;Thai Character Tho Than -\U0E11;Thai Character Tho Nangmontho -\U0E12;Thai Character Tho Phuthao -\U0E13;Thai Character No Nen -\U0E14;Thai Character Do Dek -\U0E15;Thai Character To Tao -\U0E16;Thai Character Tho Thung -\U0E17;Thai Character Tho Thahan -\U0E18;Thai Character Tho Thong -\U0E19;Thai Character No Nu -\U0E1A;Thai Character Bo Baimai -\U0E1B;Thai Character Po Pla -\U0E1C;Thai Character Pho Phung -\U0E1D;Thai Character Fo Fa -\U0E1E;Thai Character Pho Phan -\U0E1F;Thai Character Fo Fan -\U0E20;Thai Character Pho Samphao -\U0E21;Thai Character Mo Ma -\U0E22;Thai Character Yo Yak -\U0E23;Thai Character Ro Rua -\U0E24;Thai Character Ru -\U0E25;Thai Character Lo Ling -\U0E26;Thai Character Lu -\U0E27;Thai Character Wo Waen -\U0E28;Thai Character So Sala -\U0E29;Thai Character So Rusi -\U0E2A;Thai Character So Sua -\U0E2B;Thai Character Ho Hip -\U0E2C;Thai Character Lo Chula -\U0E2D;Thai Character O Ang -\U0E2E;Thai Character Ho Nokhuk -\U0E2F;Thai Character Paiyannoi -\U0E30;Thai Character Sara A -\U0E31;Thai Character Mai Han-Akat -\U0E32;Thai Character Sara Aa -\U0E33;Thai Character Sara Am -\U0E34;Thai Character Sara I -\U0E35;Thai Character Sara Ii -\U0E36;Thai Character Sara Ue -\U0E37;Thai Character Sara Uee -\U0E38;Thai Character Sara U -\U0E39;Thai Character Sara Uu -\U0E3A;Thai Character Phinthu -\U0E3F;Thai Currency Symbol Baht -\U0E40;Thai Character Sara E -\U0E41;Thai Character Sara Ae -\U0E42;Thai Character Sara O -\U0E43;Thai Character Sara Ai Maimuan -\U0E44;Thai Character Sara Ai Maimalai -\U0E45;Thai Character Lakkhangyao -\U0E46;Thai Character Maiyamok -\U0E47;Thai Character Maitaikhu -\U0E48;Thai Character Mai Ek -\U0E49;Thai Character Mai Tho -\U0E4A;Thai Character Mai Tri -\U0E4B;Thai Character Mai Chattawa -\U0E4C;Thai Character Thanthakhat -\U0E4D;Thai Character Nikhahit -\U0E4E;Thai Character Yamakkan -\U0E4F;Thai Character Fongman -\U0E50;Thai Digit Zero -\U0E51;Thai Digit One -\U0E52;Thai Digit Two -\U0E53;Thai Digit Three -\U0E54;Thai Digit Four -\U0E55;Thai Digit Five -\U0E56;Thai Digit Six -\U0E57;Thai Digit Seven -\U0E58;Thai Digit Eight -\U0E59;Thai Digit Nine -\U0E5A;Thai Character Angkhankhu -\U0E5B;Thai Character Khomut -\U0E81;Lao Letter Ko -\U0E82;Lao Letter Kho Sung -\U0E84;Lao Letter Kho Tam -\U0E86;Lao Letter Pali Gha -\U0E87;Lao Letter Ngo -\U0E88;Lao Letter Co -\U0E89;Lao Letter Pali Cha -\U0E8A;Lao Letter So Tam -\U0E8C;Lao Letter Pali Jha -\U0E8D;Lao Letter Nyo -\U0E8E;Lao Letter Pali Nya -\U0E8F;Lao Letter Pali Tta -\U0E90;Lao Letter Pali Ttha -\U0E91;Lao Letter Pali Dda -\U0E92;Lao Letter Pali Ddha -\U0E93;Lao Letter Pali Nna -\U0E94;Lao Letter Do -\U0E95;Lao Letter To -\U0E96;Lao Letter Tho Sung -\U0E97;Lao Letter Tho Tam -\U0E98;Lao Letter Pali Dha -\U0E99;Lao Letter No -\U0E9A;Lao Letter Bo -\U0E9B;Lao Letter Po -\U0E9C;Lao Letter Pho Sung -\U0E9D;Lao Letter Fo Tam -\U0E9E;Lao Letter Pho Tam -\U0E9F;Lao Letter Fo Sung -\U0EA0;Lao Letter Pali Bha -\U0EA1;Lao Letter Mo -\U0EA2;Lao Letter Yo -\U0EA3;Lao Letter Lo Ling -\U0EA5;Lao Letter Lo Loot -\U0EA7;Lao Letter Wo -\U0EA8;Lao Letter Sanskrit Sha -\U0EA9;Lao Letter Sanskrit Ssa -\U0EAA;Lao Letter So Sung -\U0EAB;Lao Letter Ho Sung -\U0EAC;Lao Letter Pali Lla -\U0EAD;Lao Letter O -\U0EAE;Lao Letter Ho Tam -\U0EAF;Lao Ellipsis -\U0EB0;Lao Vowel Sign A -\U0EB1;Lao Vowel Sign Mai Kan -\U0EB2;Lao Vowel Sign Aa -\U0EB3;Lao Vowel Sign Am -\U0EB4;Lao Vowel Sign I -\U0EB5;Lao Vowel Sign Ii -\U0EB6;Lao Vowel Sign Y -\U0EB7;Lao Vowel Sign Yy -\U0EB8;Lao Vowel Sign U -\U0EB9;Lao Vowel Sign Uu -\U0EBA;Lao Sign Pali Virama -\U0EBB;Lao Vowel Sign Mai Kon -\U0EBC;Lao Semivowel Sign Lo -\U0EBD;Lao Semivowel Sign Nyo -\U0EC0;Lao Vowel Sign E -\U0EC1;Lao Vowel Sign Ei -\U0EC2;Lao Vowel Sign O -\U0EC3;Lao Vowel Sign Ay -\U0EC4;Lao Vowel Sign Ai -\U0EC6;Lao Ko La -\U0EC8;Lao Tone Mai Ek -\U0EC9;Lao Tone Mai Tho -\U0ECA;Lao Tone Mai Ti -\U0ECB;Lao Tone Mai Catawa -\U0ECC;Lao Cancellation Mark -\U0ECD;Lao Niggahita -\U0ECE;Lao Yamakkan -\U0ED0;Lao Digit Zero -\U0ED1;Lao Digit One -\U0ED2;Lao Digit Two -\U0ED3;Lao Digit Three -\U0ED4;Lao Digit Four -\U0ED5;Lao Digit Five -\U0ED6;Lao Digit Six -\U0ED7;Lao Digit Seven -\U0ED8;Lao Digit Eight -\U0ED9;Lao Digit Nine -\U0EDC;Lao Ho No -\U0EDD;Lao Ho Mo -\U0EDE;Lao Letter Khmu Go -\U0EDF;Lao Letter Khmu Nyo -\U0F00;Tibetan Syllable Om -\U0F01;Tibetan Mark Gter Yig Mgo Truncated A -\U0F02;Tibetan Mark Gter Yig Mgo -Um Rnam Bcad Ma -\U0F03;Tibetan Mark Gter Yig Mgo -Um Gter Tsheg Ma -\U0F04;Tibetan Mark Initial Yig Mgo Mdun Ma -\U0F05;Tibetan Mark Closing Yig Mgo Sgab Ma -\U0F06;Tibetan Mark Caret Yig Mgo Phur Shad Ma -\U0F07;Tibetan Mark Yig Mgo Tsheg Shad Ma -\U0F08;Tibetan Mark Sbrul Shad -\U0F09;Tibetan Mark Bskur Yig Mgo -\U0F0A;Tibetan Mark Bka- Shog Yig Mgo -\U0F0B;Tibetan Mark Intersyllabic Tsheg -\U0F0C;Tibetan Mark Delimiter Tsheg Bstar -\U0F0D;Tibetan Mark Shad -\U0F0E;Tibetan Mark Nyis Shad -\U0F0F;Tibetan Mark Tsheg Shad -\U0F10;Tibetan Mark Nyis Tsheg Shad -\U0F11;Tibetan Mark Rin Chen Spungs Shad -\U0F12;Tibetan Mark Rgya Gram Shad -\U0F13;Tibetan Mark Caret -Dzud Rtags Me Long Can -\U0F14;Tibetan Mark Gter Tsheg -\U0F15;Tibetan Logotype Sign Chad Rtags -\U0F16;Tibetan Logotype Sign Lhag Rtags -\U0F17;Tibetan Astrological Sign Sgra Gcan -Char Rtags -\U0F18;Tibetan Astrological Sign -Khyud Pa -\U0F19;Tibetan Astrological Sign Sdong Tshugs -\U0F1A;Tibetan Sign Rdel Dkar Gcig -\U0F1B;Tibetan Sign Rdel Dkar Gnyis -\U0F1C;Tibetan Sign Rdel Dkar Gsum -\U0F1D;Tibetan Sign Rdel Nag Gcig -\U0F1E;Tibetan Sign Rdel Nag Gnyis -\U0F1F;Tibetan Sign Rdel Dkar Rdel Nag -\U0F20;Tibetan Digit Zero -\U0F21;Tibetan Digit One -\U0F22;Tibetan Digit Two -\U0F23;Tibetan Digit Three -\U0F24;Tibetan Digit Four -\U0F25;Tibetan Digit Five -\U0F26;Tibetan Digit Six -\U0F27;Tibetan Digit Seven -\U0F28;Tibetan Digit Eight -\U0F29;Tibetan Digit Nine -\U0F2A;Tibetan Digit Half One -\U0F2B;Tibetan Digit Half Two -\U0F2C;Tibetan Digit Half Three -\U0F2D;Tibetan Digit Half Four -\U0F2E;Tibetan Digit Half Five -\U0F2F;Tibetan Digit Half Six -\U0F30;Tibetan Digit Half Seven -\U0F31;Tibetan Digit Half Eight -\U0F32;Tibetan Digit Half Nine -\U0F33;Tibetan Digit Half Zero -\U0F34;Tibetan Mark Bsdus Rtags -\U0F35;Tibetan Mark Ngas Bzung Nyi Zla -\U0F36;Tibetan Mark Caret -Dzud Rtags Bzhi Mig Can -\U0F37;Tibetan Mark Ngas Bzung Sgor Rtags -\U0F38;Tibetan Mark Che Mgo -\U0F39;Tibetan Mark Tsa -Phru -\U0F3A;Tibetan Mark Gug Rtags Gyon -\U0F3B;Tibetan Mark Gug Rtags Gyas -\U0F3C;Tibetan Mark Ang Khang Gyon -\U0F3D;Tibetan Mark Ang Khang Gyas -\U0F3E;Tibetan Sign Yar Tshes -\U0F3F;Tibetan Sign Mar Tshes -\U0F40;Tibetan Letter Ka -\U0F41;Tibetan Letter Kha -\U0F42;Tibetan Letter Ga -\U0F43;Tibetan Letter Gha -\U0F44;Tibetan Letter Nga -\U0F45;Tibetan Letter Ca -\U0F46;Tibetan Letter Cha -\U0F47;Tibetan Letter Ja -\U0F49;Tibetan Letter Nya -\U0F4A;Tibetan Letter Tta -\U0F4B;Tibetan Letter Ttha -\U0F4C;Tibetan Letter Dda -\U0F4D;Tibetan Letter Ddha -\U0F4E;Tibetan Letter Nna -\U0F4F;Tibetan Letter Ta -\U0F50;Tibetan Letter Tha -\U0F51;Tibetan Letter Da -\U0F52;Tibetan Letter Dha -\U0F53;Tibetan Letter Na -\U0F54;Tibetan Letter Pa -\U0F55;Tibetan Letter Pha -\U0F56;Tibetan Letter Ba -\U0F57;Tibetan Letter Bha -\U0F58;Tibetan Letter Ma -\U0F59;Tibetan Letter Tsa -\U0F5A;Tibetan Letter Tsha -\U0F5B;Tibetan Letter Dza -\U0F5C;Tibetan Letter Dzha -\U0F5D;Tibetan Letter Wa -\U0F5E;Tibetan Letter Zha -\U0F5F;Tibetan Letter Za -\U0F60;Tibetan Letter -A -\U0F61;Tibetan Letter Ya -\U0F62;Tibetan Letter Ra -\U0F63;Tibetan Letter La -\U0F64;Tibetan Letter Sha -\U0F65;Tibetan Letter Ssa -\U0F66;Tibetan Letter Sa -\U0F67;Tibetan Letter Ha -\U0F68;Tibetan Letter A -\U0F69;Tibetan Letter Kssa -\U0F6A;Tibetan Letter Fixed-Form Ra -\U0F6B;Tibetan Letter Kka -\U0F6C;Tibetan Letter Rra -\U0F71;Tibetan Vowel Sign Aa -\U0F72;Tibetan Vowel Sign I -\U0F73;Tibetan Vowel Sign Ii -\U0F74;Tibetan Vowel Sign U -\U0F75;Tibetan Vowel Sign Uu -\U0F76;Tibetan Vowel Sign Vocalic R -\U0F77;Tibetan Vowel Sign Vocalic Rr -\U0F78;Tibetan Vowel Sign Vocalic L -\U0F79;Tibetan Vowel Sign Vocalic Ll -\U0F7A;Tibetan Vowel Sign E -\U0F7B;Tibetan Vowel Sign Ee -\U0F7C;Tibetan Vowel Sign O -\U0F7D;Tibetan Vowel Sign Oo -\U0F7E;Tibetan Sign Rjes Su Nga Ro -\U0F7F;Tibetan Sign Rnam Bcad -\U0F80;Tibetan Vowel Sign Reversed I -\U0F81;Tibetan Vowel Sign Reversed Ii -\U0F82;Tibetan Sign Nyi Zla Naa Da -\U0F83;Tibetan Sign Sna Ldan -\U0F84;Tibetan Mark Halanta -\U0F85;Tibetan Mark Paluta -\U0F86;Tibetan Sign Lci Rtags -\U0F87;Tibetan Sign Yang Rtags -\U0F88;Tibetan Sign Lce Tsa Can -\U0F89;Tibetan Sign Mchu Can -\U0F8A;Tibetan Sign Gru Can Rgyings -\U0F8B;Tibetan Sign Gru Med Rgyings -\U0F8C;Tibetan Sign Inverted Mchu Can -\U0F8D;Tibetan Subjoined Sign Lce Tsa Can -\U0F8E;Tibetan Subjoined Sign Mchu Can -\U0F8F;Tibetan Subjoined Sign Inverted Mchu Can -\U0F90;Tibetan Subjoined Letter Ka -\U0F91;Tibetan Subjoined Letter Kha -\U0F92;Tibetan Subjoined Letter Ga -\U0F93;Tibetan Subjoined Letter Gha -\U0F94;Tibetan Subjoined Letter Nga -\U0F95;Tibetan Subjoined Letter Ca -\U0F96;Tibetan Subjoined Letter Cha -\U0F97;Tibetan Subjoined Letter Ja -\U0F99;Tibetan Subjoined Letter Nya -\U0F9A;Tibetan Subjoined Letter Tta -\U0F9B;Tibetan Subjoined Letter Ttha -\U0F9C;Tibetan Subjoined Letter Dda -\U0F9D;Tibetan Subjoined Letter Ddha -\U0F9E;Tibetan Subjoined Letter Nna -\U0F9F;Tibetan Subjoined Letter Ta -\U0FA0;Tibetan Subjoined Letter Tha -\U0FA1;Tibetan Subjoined Letter Da -\U0FA2;Tibetan Subjoined Letter Dha -\U0FA3;Tibetan Subjoined Letter Na -\U0FA4;Tibetan Subjoined Letter Pa -\U0FA5;Tibetan Subjoined Letter Pha -\U0FA6;Tibetan Subjoined Letter Ba -\U0FA7;Tibetan Subjoined Letter Bha -\U0FA8;Tibetan Subjoined Letter Ma -\U0FA9;Tibetan Subjoined Letter Tsa -\U0FAA;Tibetan Subjoined Letter Tsha -\U0FAB;Tibetan Subjoined Letter Dza -\U0FAC;Tibetan Subjoined Letter Dzha -\U0FAD;Tibetan Subjoined Letter Wa -\U0FAE;Tibetan Subjoined Letter Zha -\U0FAF;Tibetan Subjoined Letter Za -\U0FB0;Tibetan Subjoined Letter -A -\U0FB1;Tibetan Subjoined Letter Ya -\U0FB2;Tibetan Subjoined Letter Ra -\U0FB3;Tibetan Subjoined Letter La -\U0FB4;Tibetan Subjoined Letter Sha -\U0FB5;Tibetan Subjoined Letter Ssa -\U0FB6;Tibetan Subjoined Letter Sa -\U0FB7;Tibetan Subjoined Letter Ha -\U0FB8;Tibetan Subjoined Letter A -\U0FB9;Tibetan Subjoined Letter Kssa -\U0FBA;Tibetan Subjoined Letter Fixed-Form Wa -\U0FBB;Tibetan Subjoined Letter Fixed-Form Ya -\U0FBC;Tibetan Subjoined Letter Fixed-Form Ra -\U0FBE;Tibetan Ku Ru Kha -\U0FBF;Tibetan Ku Ru Kha Bzhi Mig Can -\U0FC0;Tibetan Cantillation Sign Heavy Beat -\U0FC1;Tibetan Cantillation Sign Light Beat -\U0FC2;Tibetan Cantillation Sign Cang Te-U -\U0FC3;Tibetan Cantillation Sign Sbub -Chal -\U0FC4;Tibetan Symbol Dril Bu -\U0FC5;Tibetan Symbol Rdo Rje -\U0FC6;Tibetan Symbol Padma Gdan -\U0FC7;Tibetan Symbol Rdo Rje Rgya Gram -\U0FC8;Tibetan Symbol Phur Pa -\U0FC9;Tibetan Symbol Nor Bu -\U0FCA;Tibetan Symbol Nor Bu Nyis -Khyil -\U0FCB;Tibetan Symbol Nor Bu Gsum -Khyil -\U0FCC;Tibetan Symbol Nor Bu Bzhi -Khyil -\U0FCE;Tibetan Sign Rdel Nag Rdel Dkar -\U0FCF;Tibetan Sign Rdel Nag Gsum -\U0FD0;Tibetan Mark Bska- Shog Gi Mgo Rgyan -\U0FD1;Tibetan Mark Mnyam Yig Gi Mgo Rgyan -\U0FD2;Tibetan Mark Nyis Tsheg -\U0FD3;Tibetan Mark Initial Brda Rnying Yig Mgo Mdun Ma -\U0FD4;Tibetan Mark Closing Brda Rnying Yig Mgo Sgab Ma -\U0FD5;Right-Facing Svasti Sign -\U0FD6;Left-Facing Svasti Sign -\U0FD7;Right-Facing Svasti Sign With Dots -\U0FD8;Left-Facing Svasti Sign With Dots -\U0FD9;Tibetan Mark Leading Mchan Rtags -\U0FDA;Tibetan Mark Trailing Mchan Rtags -\U1000;Myanmar Letter Ka -\U1001;Myanmar Letter Kha -\U1002;Myanmar Letter Ga -\U1003;Myanmar Letter Gha -\U1004;Myanmar Letter Nga -\U1005;Myanmar Letter Ca -\U1006;Myanmar Letter Cha -\U1007;Myanmar Letter Ja -\U1008;Myanmar Letter Jha -\U1009;Myanmar Letter Nya -\U100A;Myanmar Letter Nnya -\U100B;Myanmar Letter Tta -\U100C;Myanmar Letter Ttha -\U100D;Myanmar Letter Dda -\U100E;Myanmar Letter Ddha -\U100F;Myanmar Letter Nna -\U1010;Myanmar Letter Ta -\U1011;Myanmar Letter Tha -\U1012;Myanmar Letter Da -\U1013;Myanmar Letter Dha -\U1014;Myanmar Letter Na -\U1015;Myanmar Letter Pa -\U1016;Myanmar Letter Pha -\U1017;Myanmar Letter Ba -\U1018;Myanmar Letter Bha -\U1019;Myanmar Letter Ma -\U101A;Myanmar Letter Ya -\U101B;Myanmar Letter Ra -\U101C;Myanmar Letter La -\U101D;Myanmar Letter Wa -\U101E;Myanmar Letter Sa -\U101F;Myanmar Letter Ha -\U1020;Myanmar Letter Lla -\U1021;Myanmar Letter A -\U1022;Myanmar Letter Shan A -\U1023;Myanmar Letter I -\U1024;Myanmar Letter Ii -\U1025;Myanmar Letter U -\U1026;Myanmar Letter Uu -\U1027;Myanmar Letter E -\U1028;Myanmar Letter Mon E -\U1029;Myanmar Letter O -\U102A;Myanmar Letter Au -\U102B;Myanmar Vowel Sign Tall Aa -\U102C;Myanmar Vowel Sign Aa -\U102D;Myanmar Vowel Sign I -\U102E;Myanmar Vowel Sign Ii -\U102F;Myanmar Vowel Sign U -\U1030;Myanmar Vowel Sign Uu -\U1031;Myanmar Vowel Sign E -\U1032;Myanmar Vowel Sign Ai -\U1033;Myanmar Vowel Sign Mon Ii -\U1034;Myanmar Vowel Sign Mon O -\U1035;Myanmar Vowel Sign E Above -\U1036;Myanmar Sign Anusvara -\U1037;Myanmar Sign Dot Below -\U1038;Myanmar Sign Visarga -\U1039;Myanmar Sign Virama -\U103A;Myanmar Sign Asat -\U103B;Myanmar Consonant Sign Medial Ya -\U103C;Myanmar Consonant Sign Medial Ra -\U103D;Myanmar Consonant Sign Medial Wa -\U103E;Myanmar Consonant Sign Medial Ha -\U103F;Myanmar Letter Great Sa -\U1040;Myanmar Digit Zero -\U1041;Myanmar Digit One -\U1042;Myanmar Digit Two -\U1043;Myanmar Digit Three -\U1044;Myanmar Digit Four -\U1045;Myanmar Digit Five -\U1046;Myanmar Digit Six -\U1047;Myanmar Digit Seven -\U1048;Myanmar Digit Eight -\U1049;Myanmar Digit Nine -\U104A;Myanmar Sign Little Section -\U104B;Myanmar Sign Section -\U104C;Myanmar Symbol Locative -\U104D;Myanmar Symbol Completed -\U104E;Myanmar Symbol Aforementioned -\U104F;Myanmar Symbol Genitive -\U1050;Myanmar Letter Sha -\U1051;Myanmar Letter Ssa -\U1052;Myanmar Letter Vocalic R -\U1053;Myanmar Letter Vocalic Rr -\U1054;Myanmar Letter Vocalic L -\U1055;Myanmar Letter Vocalic Ll -\U1056;Myanmar Vowel Sign Vocalic R -\U1057;Myanmar Vowel Sign Vocalic Rr -\U1058;Myanmar Vowel Sign Vocalic L -\U1059;Myanmar Vowel Sign Vocalic Ll -\U105A;Myanmar Letter Mon Nga -\U105B;Myanmar Letter Mon Jha -\U105C;Myanmar Letter Mon Bba -\U105D;Myanmar Letter Mon Bbe -\U105E;Myanmar Consonant Sign Mon Medial Na -\U105F;Myanmar Consonant Sign Mon Medial Ma -\U1060;Myanmar Consonant Sign Mon Medial La -\U1061;Myanmar Letter Sgaw Karen Sha -\U1062;Myanmar Vowel Sign Sgaw Karen Eu -\U1063;Myanmar Tone Mark Sgaw Karen Hathi -\U1064;Myanmar Tone Mark Sgaw Karen Ke Pho -\U1065;Myanmar Letter Western Pwo Karen Tha -\U1066;Myanmar Letter Western Pwo Karen Pwa -\U1067;Myanmar Vowel Sign Western Pwo Karen Eu -\U1068;Myanmar Vowel Sign Western Pwo Karen Ue -\U1069;Myanmar Sign Western Pwo Karen Tone-1 -\U106A;Myanmar Sign Western Pwo Karen Tone-2 -\U106B;Myanmar Sign Western Pwo Karen Tone-3 -\U106C;Myanmar Sign Western Pwo Karen Tone-4 -\U106D;Myanmar Sign Western Pwo Karen Tone-5 -\U106E;Myanmar Letter Eastern Pwo Karen Nna -\U106F;Myanmar Letter Eastern Pwo Karen Ywa -\U1070;Myanmar Letter Eastern Pwo Karen Ghwa -\U1071;Myanmar Vowel Sign Geba Karen I -\U1072;Myanmar Vowel Sign Kayah Oe -\U1073;Myanmar Vowel Sign Kayah U -\U1074;Myanmar Vowel Sign Kayah Ee -\U1075;Myanmar Letter Shan Ka -\U1076;Myanmar Letter Shan Kha -\U1077;Myanmar Letter Shan Ga -\U1078;Myanmar Letter Shan Ca -\U1079;Myanmar Letter Shan Za -\U107A;Myanmar Letter Shan Nya -\U107B;Myanmar Letter Shan Da -\U107C;Myanmar Letter Shan Na -\U107D;Myanmar Letter Shan Pha -\U107E;Myanmar Letter Shan Fa -\U107F;Myanmar Letter Shan Ba -\U1080;Myanmar Letter Shan Tha -\U1081;Myanmar Letter Shan Ha -\U1082;Myanmar Consonant Sign Shan Medial Wa -\U1083;Myanmar Vowel Sign Shan Aa -\U1084;Myanmar Vowel Sign Shan E -\U1085;Myanmar Vowel Sign Shan E Above -\U1086;Myanmar Vowel Sign Shan Final Y -\U1087;Myanmar Sign Shan Tone-2 -\U1088;Myanmar Sign Shan Tone-3 -\U1089;Myanmar Sign Shan Tone-5 -\U108A;Myanmar Sign Shan Tone-6 -\U108B;Myanmar Sign Shan Council Tone-2 -\U108C;Myanmar Sign Shan Council Tone-3 -\U108D;Myanmar Sign Shan Council Emphatic Tone -\U108E;Myanmar Letter Rumai Palaung Fa -\U108F;Myanmar Sign Rumai Palaung Tone-5 -\U1090;Myanmar Shan Digit Zero -\U1091;Myanmar Shan Digit One -\U1092;Myanmar Shan Digit Two -\U1093;Myanmar Shan Digit Three -\U1094;Myanmar Shan Digit Four -\U1095;Myanmar Shan Digit Five -\U1096;Myanmar Shan Digit Six -\U1097;Myanmar Shan Digit Seven -\U1098;Myanmar Shan Digit Eight -\U1099;Myanmar Shan Digit Nine -\U109A;Myanmar Sign Khamti Tone-1 -\U109B;Myanmar Sign Khamti Tone-3 -\U109C;Myanmar Vowel Sign Aiton A -\U109D;Myanmar Vowel Sign Aiton Ai -\U109E;Myanmar Symbol Shan One -\U109F;Myanmar Symbol Shan Exclamation -\U10A0;Georgian Capital Letter An -\U10A1;Georgian Capital Letter Ban -\U10A2;Georgian Capital Letter Gan -\U10A3;Georgian Capital Letter Don -\U10A4;Georgian Capital Letter En -\U10A5;Georgian Capital Letter Vin -\U10A6;Georgian Capital Letter Zen -\U10A7;Georgian Capital Letter Tan -\U10A8;Georgian Capital Letter In -\U10A9;Georgian Capital Letter Kan -\U10AA;Georgian Capital Letter Las -\U10AB;Georgian Capital Letter Man -\U10AC;Georgian Capital Letter Nar -\U10AD;Georgian Capital Letter On -\U10AE;Georgian Capital Letter Par -\U10AF;Georgian Capital Letter Zhar -\U10B0;Georgian Capital Letter Rae -\U10B1;Georgian Capital Letter San -\U10B2;Georgian Capital Letter Tar -\U10B3;Georgian Capital Letter Un -\U10B4;Georgian Capital Letter Phar -\U10B5;Georgian Capital Letter Khar -\U10B6;Georgian Capital Letter Ghan -\U10B7;Georgian Capital Letter Qar -\U10B8;Georgian Capital Letter Shin -\U10B9;Georgian Capital Letter Chin -\U10BA;Georgian Capital Letter Can -\U10BB;Georgian Capital Letter Jil -\U10BC;Georgian Capital Letter Cil -\U10BD;Georgian Capital Letter Char -\U10BE;Georgian Capital Letter Xan -\U10BF;Georgian Capital Letter Jhan -\U10C0;Georgian Capital Letter Hae -\U10C1;Georgian Capital Letter He -\U10C2;Georgian Capital Letter Hie -\U10C3;Georgian Capital Letter We -\U10C4;Georgian Capital Letter Har -\U10C5;Georgian Capital Letter Hoe -\U10C7;Georgian Capital Letter Yn -\U10CD;Georgian Capital Letter Aen -\U10D0;Georgian Letter An -\U10D1;Georgian Letter Ban -\U10D2;Georgian Letter Gan -\U10D3;Georgian Letter Don -\U10D4;Georgian Letter En -\U10D5;Georgian Letter Vin -\U10D6;Georgian Letter Zen -\U10D7;Georgian Letter Tan -\U10D8;Georgian Letter In -\U10D9;Georgian Letter Kan -\U10DA;Georgian Letter Las -\U10DB;Georgian Letter Man -\U10DC;Georgian Letter Nar -\U10DD;Georgian Letter On -\U10DE;Georgian Letter Par -\U10DF;Georgian Letter Zhar -\U10E0;Georgian Letter Rae -\U10E1;Georgian Letter San -\U10E2;Georgian Letter Tar -\U10E3;Georgian Letter Un -\U10E4;Georgian Letter Phar -\U10E5;Georgian Letter Khar -\U10E6;Georgian Letter Ghan -\U10E7;Georgian Letter Qar -\U10E8;Georgian Letter Shin -\U10E9;Georgian Letter Chin -\U10EA;Georgian Letter Can -\U10EB;Georgian Letter Jil -\U10EC;Georgian Letter Cil -\U10ED;Georgian Letter Char -\U10EE;Georgian Letter Xan -\U10EF;Georgian Letter Jhan -\U10F0;Georgian Letter Hae -\U10F1;Georgian Letter He -\U10F2;Georgian Letter Hie -\U10F3;Georgian Letter We -\U10F4;Georgian Letter Har -\U10F5;Georgian Letter Hoe -\U10F6;Georgian Letter Fi -\U10F7;Georgian Letter Yn -\U10F8;Georgian Letter Elifi -\U10F9;Georgian Letter Turned Gan -\U10FA;Georgian Letter Ain -\U10FB;Georgian Paragraph Separator -\U10FC;Modifier Letter Georgian Nar -\U10FD;Georgian Letter Aen -\U10FE;Georgian Letter Hard Sign -\U10FF;Georgian Letter Labial Sign -\U1100;Hangul Choseong Kiyeok -\U1101;Hangul Choseong Ssangkiyeok -\U1102;Hangul Choseong Nieun -\U1103;Hangul Choseong Tikeut -\U1104;Hangul Choseong Ssangtikeut -\U1105;Hangul Choseong Rieul -\U1106;Hangul Choseong Mieum -\U1107;Hangul Choseong Pieup -\U1108;Hangul Choseong Ssangpieup -\U1109;Hangul Choseong Sios -\U110A;Hangul Choseong Ssangsios -\U110B;Hangul Choseong Ieung -\U110C;Hangul Choseong Cieuc -\U110D;Hangul Choseong Ssangcieuc -\U110E;Hangul Choseong Chieuch -\U110F;Hangul Choseong Khieukh -\U1110;Hangul Choseong Thieuth -\U1111;Hangul Choseong Phieuph -\U1112;Hangul Choseong Hieuh -\U1113;Hangul Choseong Nieun-Kiyeok -\U1114;Hangul Choseong Ssangnieun -\U1115;Hangul Choseong Nieun-Tikeut -\U1116;Hangul Choseong Nieun-Pieup -\U1117;Hangul Choseong Tikeut-Kiyeok -\U1118;Hangul Choseong Rieul-Nieun -\U1119;Hangul Choseong Ssangrieul -\U111A;Hangul Choseong Rieul-Hieuh -\U111B;Hangul Choseong Kapyeounrieul -\U111C;Hangul Choseong Mieum-Pieup -\U111D;Hangul Choseong Kapyeounmieum -\U111E;Hangul Choseong Pieup-Kiyeok -\U111F;Hangul Choseong Pieup-Nieun -\U1120;Hangul Choseong Pieup-Tikeut -\U1121;Hangul Choseong Pieup-Sios -\U1122;Hangul Choseong Pieup-Sios-Kiyeok -\U1123;Hangul Choseong Pieup-Sios-Tikeut -\U1124;Hangul Choseong Pieup-Sios-Pieup -\U1125;Hangul Choseong Pieup-Ssangsios -\U1126;Hangul Choseong Pieup-Sios-Cieuc -\U1127;Hangul Choseong Pieup-Cieuc -\U1128;Hangul Choseong Pieup-Chieuch -\U1129;Hangul Choseong Pieup-Thieuth -\U112A;Hangul Choseong Pieup-Phieuph -\U112B;Hangul Choseong Kapyeounpieup -\U112C;Hangul Choseong Kapyeounssangpieup -\U112D;Hangul Choseong Sios-Kiyeok -\U112E;Hangul Choseong Sios-Nieun -\U112F;Hangul Choseong Sios-Tikeut -\U1130;Hangul Choseong Sios-Rieul -\U1131;Hangul Choseong Sios-Mieum -\U1132;Hangul Choseong Sios-Pieup -\U1133;Hangul Choseong Sios-Pieup-Kiyeok -\U1134;Hangul Choseong Sios-Ssangsios -\U1135;Hangul Choseong Sios-Ieung -\U1136;Hangul Choseong Sios-Cieuc -\U1137;Hangul Choseong Sios-Chieuch -\U1138;Hangul Choseong Sios-Khieukh -\U1139;Hangul Choseong Sios-Thieuth -\U113A;Hangul Choseong Sios-Phieuph -\U113B;Hangul Choseong Sios-Hieuh -\U113C;Hangul Choseong Chitueumsios -\U113D;Hangul Choseong Chitueumssangsios -\U113E;Hangul Choseong Ceongchieumsios -\U113F;Hangul Choseong Ceongchieumssangsios -\U1140;Hangul Choseong Pansios -\U1141;Hangul Choseong Ieung-Kiyeok -\U1142;Hangul Choseong Ieung-Tikeut -\U1143;Hangul Choseong Ieung-Mieum -\U1144;Hangul Choseong Ieung-Pieup -\U1145;Hangul Choseong Ieung-Sios -\U1146;Hangul Choseong Ieung-Pansios -\U1147;Hangul Choseong Ssangieung -\U1148;Hangul Choseong Ieung-Cieuc -\U1149;Hangul Choseong Ieung-Chieuch -\U114A;Hangul Choseong Ieung-Thieuth -\U114B;Hangul Choseong Ieung-Phieuph -\U114C;Hangul Choseong Yesieung -\U114D;Hangul Choseong Cieuc-Ieung -\U114E;Hangul Choseong Chitueumcieuc -\U114F;Hangul Choseong Chitueumssangcieuc -\U1150;Hangul Choseong Ceongchieumcieuc -\U1151;Hangul Choseong Ceongchieumssangcieuc -\U1152;Hangul Choseong Chieuch-Khieukh -\U1153;Hangul Choseong Chieuch-Hieuh -\U1154;Hangul Choseong Chitueumchieuch -\U1155;Hangul Choseong Ceongchieumchieuch -\U1156;Hangul Choseong Phieuph-Pieup -\U1157;Hangul Choseong Kapyeounphieuph -\U1158;Hangul Choseong Ssanghieuh -\U1159;Hangul Choseong Yeorinhieuh -\U115A;Hangul Choseong Kiyeok-Tikeut -\U115B;Hangul Choseong Nieun-Sios -\U115C;Hangul Choseong Nieun-Cieuc -\U115D;Hangul Choseong Nieun-Hieuh -\U115E;Hangul Choseong Tikeut-Rieul -\U115F;Hangul Choseong Filler -\U1160;Hangul Jungseong Filler -\U1161;Hangul Jungseong A -\U1162;Hangul Jungseong Ae -\U1163;Hangul Jungseong Ya -\U1164;Hangul Jungseong Yae -\U1165;Hangul Jungseong Eo -\U1166;Hangul Jungseong E -\U1167;Hangul Jungseong Yeo -\U1168;Hangul Jungseong Ye -\U1169;Hangul Jungseong O -\U116A;Hangul Jungseong Wa -\U116B;Hangul Jungseong Wae -\U116C;Hangul Jungseong Oe -\U116D;Hangul Jungseong Yo -\U116E;Hangul Jungseong U -\U116F;Hangul Jungseong Weo -\U1170;Hangul Jungseong We -\U1171;Hangul Jungseong Wi -\U1172;Hangul Jungseong Yu -\U1173;Hangul Jungseong Eu -\U1174;Hangul Jungseong Yi -\U1175;Hangul Jungseong I -\U1176;Hangul Jungseong A-O -\U1177;Hangul Jungseong A-U -\U1178;Hangul Jungseong Ya-O -\U1179;Hangul Jungseong Ya-Yo -\U117A;Hangul Jungseong Eo-O -\U117B;Hangul Jungseong Eo-U -\U117C;Hangul Jungseong Eo-Eu -\U117D;Hangul Jungseong Yeo-O -\U117E;Hangul Jungseong Yeo-U -\U117F;Hangul Jungseong O-Eo -\U1180;Hangul Jungseong O-E -\U1181;Hangul Jungseong O-Ye -\U1182;Hangul Jungseong O-O -\U1183;Hangul Jungseong O-U -\U1184;Hangul Jungseong Yo-Ya -\U1185;Hangul Jungseong Yo-Yae -\U1186;Hangul Jungseong Yo-Yeo -\U1187;Hangul Jungseong Yo-O -\U1188;Hangul Jungseong Yo-I -\U1189;Hangul Jungseong U-A -\U118A;Hangul Jungseong U-Ae -\U118B;Hangul Jungseong U-Eo-Eu -\U118C;Hangul Jungseong U-Ye -\U118D;Hangul Jungseong U-U -\U118E;Hangul Jungseong Yu-A -\U118F;Hangul Jungseong Yu-Eo -\U1190;Hangul Jungseong Yu-E -\U1191;Hangul Jungseong Yu-Yeo -\U1192;Hangul Jungseong Yu-Ye -\U1193;Hangul Jungseong Yu-U -\U1194;Hangul Jungseong Yu-I -\U1195;Hangul Jungseong Eu-U -\U1196;Hangul Jungseong Eu-Eu -\U1197;Hangul Jungseong Yi-U -\U1198;Hangul Jungseong I-A -\U1199;Hangul Jungseong I-Ya -\U119A;Hangul Jungseong I-O -\U119B;Hangul Jungseong I-U -\U119C;Hangul Jungseong I-Eu -\U119D;Hangul Jungseong I-Araea -\U119E;Hangul Jungseong Araea -\U119F;Hangul Jungseong Araea-Eo -\U11A0;Hangul Jungseong Araea-U -\U11A1;Hangul Jungseong Araea-I -\U11A2;Hangul Jungseong Ssangaraea -\U11A3;Hangul Jungseong A-Eu -\U11A4;Hangul Jungseong Ya-U -\U11A5;Hangul Jungseong Yeo-Ya -\U11A6;Hangul Jungseong O-Ya -\U11A7;Hangul Jungseong O-Yae -\U11A8;Hangul Jongseong Kiyeok -\U11A9;Hangul Jongseong Ssangkiyeok -\U11AA;Hangul Jongseong Kiyeok-Sios -\U11AB;Hangul Jongseong Nieun -\U11AC;Hangul Jongseong Nieun-Cieuc -\U11AD;Hangul Jongseong Nieun-Hieuh -\U11AE;Hangul Jongseong Tikeut -\U11AF;Hangul Jongseong Rieul -\U11B0;Hangul Jongseong Rieul-Kiyeok -\U11B1;Hangul Jongseong Rieul-Mieum -\U11B2;Hangul Jongseong Rieul-Pieup -\U11B3;Hangul Jongseong Rieul-Sios -\U11B4;Hangul Jongseong Rieul-Thieuth -\U11B5;Hangul Jongseong Rieul-Phieuph -\U11B6;Hangul Jongseong Rieul-Hieuh -\U11B7;Hangul Jongseong Mieum -\U11B8;Hangul Jongseong Pieup -\U11B9;Hangul Jongseong Pieup-Sios -\U11BA;Hangul Jongseong Sios -\U11BB;Hangul Jongseong Ssangsios -\U11BC;Hangul Jongseong Ieung -\U11BD;Hangul Jongseong Cieuc -\U11BE;Hangul Jongseong Chieuch -\U11BF;Hangul Jongseong Khieukh -\U11C0;Hangul Jongseong Thieuth -\U11C1;Hangul Jongseong Phieuph -\U11C2;Hangul Jongseong Hieuh -\U11C3;Hangul Jongseong Kiyeok-Rieul -\U11C4;Hangul Jongseong Kiyeok-Sios-Kiyeok -\U11C5;Hangul Jongseong Nieun-Kiyeok -\U11C6;Hangul Jongseong Nieun-Tikeut -\U11C7;Hangul Jongseong Nieun-Sios -\U11C8;Hangul Jongseong Nieun-Pansios -\U11C9;Hangul Jongseong Nieun-Thieuth -\U11CA;Hangul Jongseong Tikeut-Kiyeok -\U11CB;Hangul Jongseong Tikeut-Rieul -\U11CC;Hangul Jongseong Rieul-Kiyeok-Sios -\U11CD;Hangul Jongseong Rieul-Nieun -\U11CE;Hangul Jongseong Rieul-Tikeut -\U11CF;Hangul Jongseong Rieul-Tikeut-Hieuh -\U11D0;Hangul Jongseong Ssangrieul -\U11D1;Hangul Jongseong Rieul-Mieum-Kiyeok -\U11D2;Hangul Jongseong Rieul-Mieum-Sios -\U11D3;Hangul Jongseong Rieul-Pieup-Sios -\U11D4;Hangul Jongseong Rieul-Pieup-Hieuh -\U11D5;Hangul Jongseong Rieul-Kapyeounpieup -\U11D6;Hangul Jongseong Rieul-Ssangsios -\U11D7;Hangul Jongseong Rieul-Pansios -\U11D8;Hangul Jongseong Rieul-Khieukh -\U11D9;Hangul Jongseong Rieul-Yeorinhieuh -\U11DA;Hangul Jongseong Mieum-Kiyeok -\U11DB;Hangul Jongseong Mieum-Rieul -\U11DC;Hangul Jongseong Mieum-Pieup -\U11DD;Hangul Jongseong Mieum-Sios -\U11DE;Hangul Jongseong Mieum-Ssangsios -\U11DF;Hangul Jongseong Mieum-Pansios -\U11E0;Hangul Jongseong Mieum-Chieuch -\U11E1;Hangul Jongseong Mieum-Hieuh -\U11E2;Hangul Jongseong Kapyeounmieum -\U11E3;Hangul Jongseong Pieup-Rieul -\U11E4;Hangul Jongseong Pieup-Phieuph -\U11E5;Hangul Jongseong Pieup-Hieuh -\U11E6;Hangul Jongseong Kapyeounpieup -\U11E7;Hangul Jongseong Sios-Kiyeok -\U11E8;Hangul Jongseong Sios-Tikeut -\U11E9;Hangul Jongseong Sios-Rieul -\U11EA;Hangul Jongseong Sios-Pieup -\U11EB;Hangul Jongseong Pansios -\U11EC;Hangul Jongseong Ieung-Kiyeok -\U11ED;Hangul Jongseong Ieung-Ssangkiyeok -\U11EE;Hangul Jongseong Ssangieung -\U11EF;Hangul Jongseong Ieung-Khieukh -\U11F0;Hangul Jongseong Yesieung -\U11F1;Hangul Jongseong Yesieung-Sios -\U11F2;Hangul Jongseong Yesieung-Pansios -\U11F3;Hangul Jongseong Phieuph-Pieup -\U11F4;Hangul Jongseong Kapyeounphieuph -\U11F5;Hangul Jongseong Hieuh-Nieun -\U11F6;Hangul Jongseong Hieuh-Rieul -\U11F7;Hangul Jongseong Hieuh-Mieum -\U11F8;Hangul Jongseong Hieuh-Pieup -\U11F9;Hangul Jongseong Yeorinhieuh -\U11FA;Hangul Jongseong Kiyeok-Nieun -\U11FB;Hangul Jongseong Kiyeok-Pieup -\U11FC;Hangul Jongseong Kiyeok-Chieuch -\U11FD;Hangul Jongseong Kiyeok-Khieukh -\U11FE;Hangul Jongseong Kiyeok-Hieuh -\U11FF;Hangul Jongseong Ssangnieun -\U1200;Ethiopic Syllable Ha -\U1201;Ethiopic Syllable Hu -\U1202;Ethiopic Syllable Hi -\U1203;Ethiopic Syllable Haa -\U1204;Ethiopic Syllable Hee -\U1205;Ethiopic Syllable He -\U1206;Ethiopic Syllable Ho -\U1207;Ethiopic Syllable Hoa -\U1208;Ethiopic Syllable La -\U1209;Ethiopic Syllable Lu -\U120A;Ethiopic Syllable Li -\U120B;Ethiopic Syllable Laa -\U120C;Ethiopic Syllable Lee -\U120D;Ethiopic Syllable Le -\U120E;Ethiopic Syllable Lo -\U120F;Ethiopic Syllable Lwa -\U1210;Ethiopic Syllable Hha -\U1211;Ethiopic Syllable Hhu -\U1212;Ethiopic Syllable Hhi -\U1213;Ethiopic Syllable Hhaa -\U1214;Ethiopic Syllable Hhee -\U1215;Ethiopic Syllable Hhe -\U1216;Ethiopic Syllable Hho -\U1217;Ethiopic Syllable Hhwa -\U1218;Ethiopic Syllable Ma -\U1219;Ethiopic Syllable Mu -\U121A;Ethiopic Syllable Mi -\U121B;Ethiopic Syllable Maa -\U121C;Ethiopic Syllable Mee -\U121D;Ethiopic Syllable Me -\U121E;Ethiopic Syllable Mo -\U121F;Ethiopic Syllable Mwa -\U1220;Ethiopic Syllable Sza -\U1221;Ethiopic Syllable Szu -\U1222;Ethiopic Syllable Szi -\U1223;Ethiopic Syllable Szaa -\U1224;Ethiopic Syllable Szee -\U1225;Ethiopic Syllable Sze -\U1226;Ethiopic Syllable Szo -\U1227;Ethiopic Syllable Szwa -\U1228;Ethiopic Syllable Ra -\U1229;Ethiopic Syllable Ru -\U122A;Ethiopic Syllable Ri -\U122B;Ethiopic Syllable Raa -\U122C;Ethiopic Syllable Ree -\U122D;Ethiopic Syllable Re -\U122E;Ethiopic Syllable Ro -\U122F;Ethiopic Syllable Rwa -\U1230;Ethiopic Syllable Sa -\U1231;Ethiopic Syllable Su -\U1232;Ethiopic Syllable Si -\U1233;Ethiopic Syllable Saa -\U1234;Ethiopic Syllable See -\U1235;Ethiopic Syllable Se -\U1236;Ethiopic Syllable So -\U1237;Ethiopic Syllable Swa -\U1238;Ethiopic Syllable Sha -\U1239;Ethiopic Syllable Shu -\U123A;Ethiopic Syllable Shi -\U123B;Ethiopic Syllable Shaa -\U123C;Ethiopic Syllable Shee -\U123D;Ethiopic Syllable She -\U123E;Ethiopic Syllable Sho -\U123F;Ethiopic Syllable Shwa -\U1240;Ethiopic Syllable Qa -\U1241;Ethiopic Syllable Qu -\U1242;Ethiopic Syllable Qi -\U1243;Ethiopic Syllable Qaa -\U1244;Ethiopic Syllable Qee -\U1245;Ethiopic Syllable Qe -\U1246;Ethiopic Syllable Qo -\U1247;Ethiopic Syllable Qoa -\U1248;Ethiopic Syllable Qwa -\U124A;Ethiopic Syllable Qwi -\U124B;Ethiopic Syllable Qwaa -\U124C;Ethiopic Syllable Qwee -\U124D;Ethiopic Syllable Qwe -\U1250;Ethiopic Syllable Qha -\U1251;Ethiopic Syllable Qhu -\U1252;Ethiopic Syllable Qhi -\U1253;Ethiopic Syllable Qhaa -\U1254;Ethiopic Syllable Qhee -\U1255;Ethiopic Syllable Qhe -\U1256;Ethiopic Syllable Qho -\U1258;Ethiopic Syllable Qhwa -\U125A;Ethiopic Syllable Qhwi -\U125B;Ethiopic Syllable Qhwaa -\U125C;Ethiopic Syllable Qhwee -\U125D;Ethiopic Syllable Qhwe -\U1260;Ethiopic Syllable Ba -\U1261;Ethiopic Syllable Bu -\U1262;Ethiopic Syllable Bi -\U1263;Ethiopic Syllable Baa -\U1264;Ethiopic Syllable Bee -\U1265;Ethiopic Syllable Be -\U1266;Ethiopic Syllable Bo -\U1267;Ethiopic Syllable Bwa -\U1268;Ethiopic Syllable Va -\U1269;Ethiopic Syllable Vu -\U126A;Ethiopic Syllable Vi -\U126B;Ethiopic Syllable Vaa -\U126C;Ethiopic Syllable Vee -\U126D;Ethiopic Syllable Ve -\U126E;Ethiopic Syllable Vo -\U126F;Ethiopic Syllable Vwa -\U1270;Ethiopic Syllable Ta -\U1271;Ethiopic Syllable Tu -\U1272;Ethiopic Syllable Ti -\U1273;Ethiopic Syllable Taa -\U1274;Ethiopic Syllable Tee -\U1275;Ethiopic Syllable Te -\U1276;Ethiopic Syllable To -\U1277;Ethiopic Syllable Twa -\U1278;Ethiopic Syllable Ca -\U1279;Ethiopic Syllable Cu -\U127A;Ethiopic Syllable Ci -\U127B;Ethiopic Syllable Caa -\U127C;Ethiopic Syllable Cee -\U127D;Ethiopic Syllable Ce -\U127E;Ethiopic Syllable Co -\U127F;Ethiopic Syllable Cwa -\U1280;Ethiopic Syllable Xa -\U1281;Ethiopic Syllable Xu -\U1282;Ethiopic Syllable Xi -\U1283;Ethiopic Syllable Xaa -\U1284;Ethiopic Syllable Xee -\U1285;Ethiopic Syllable Xe -\U1286;Ethiopic Syllable Xo -\U1287;Ethiopic Syllable Xoa -\U1288;Ethiopic Syllable Xwa -\U128A;Ethiopic Syllable Xwi -\U128B;Ethiopic Syllable Xwaa -\U128C;Ethiopic Syllable Xwee -\U128D;Ethiopic Syllable Xwe -\U1290;Ethiopic Syllable Na -\U1291;Ethiopic Syllable Nu -\U1292;Ethiopic Syllable Ni -\U1293;Ethiopic Syllable Naa -\U1294;Ethiopic Syllable Nee -\U1295;Ethiopic Syllable Ne -\U1296;Ethiopic Syllable No -\U1297;Ethiopic Syllable Nwa -\U1298;Ethiopic Syllable Nya -\U1299;Ethiopic Syllable Nyu -\U129A;Ethiopic Syllable Nyi -\U129B;Ethiopic Syllable Nyaa -\U129C;Ethiopic Syllable Nyee -\U129D;Ethiopic Syllable Nye -\U129E;Ethiopic Syllable Nyo -\U129F;Ethiopic Syllable Nywa -\U12A0;Ethiopic Syllable Glottal A -\U12A1;Ethiopic Syllable Glottal U -\U12A2;Ethiopic Syllable Glottal I -\U12A3;Ethiopic Syllable Glottal Aa -\U12A4;Ethiopic Syllable Glottal Ee -\U12A5;Ethiopic Syllable Glottal E -\U12A6;Ethiopic Syllable Glottal O -\U12A7;Ethiopic Syllable Glottal Wa -\U12A8;Ethiopic Syllable Ka -\U12A9;Ethiopic Syllable Ku -\U12AA;Ethiopic Syllable Ki -\U12AB;Ethiopic Syllable Kaa -\U12AC;Ethiopic Syllable Kee -\U12AD;Ethiopic Syllable Ke -\U12AE;Ethiopic Syllable Ko -\U12AF;Ethiopic Syllable Koa -\U12B0;Ethiopic Syllable Kwa -\U12B2;Ethiopic Syllable Kwi -\U12B3;Ethiopic Syllable Kwaa -\U12B4;Ethiopic Syllable Kwee -\U12B5;Ethiopic Syllable Kwe -\U12B8;Ethiopic Syllable Kxa -\U12B9;Ethiopic Syllable Kxu -\U12BA;Ethiopic Syllable Kxi -\U12BB;Ethiopic Syllable Kxaa -\U12BC;Ethiopic Syllable Kxee -\U12BD;Ethiopic Syllable Kxe -\U12BE;Ethiopic Syllable Kxo -\U12C0;Ethiopic Syllable Kxwa -\U12C2;Ethiopic Syllable Kxwi -\U12C3;Ethiopic Syllable Kxwaa -\U12C4;Ethiopic Syllable Kxwee -\U12C5;Ethiopic Syllable Kxwe -\U12C8;Ethiopic Syllable Wa -\U12C9;Ethiopic Syllable Wu -\U12CA;Ethiopic Syllable Wi -\U12CB;Ethiopic Syllable Waa -\U12CC;Ethiopic Syllable Wee -\U12CD;Ethiopic Syllable We -\U12CE;Ethiopic Syllable Wo -\U12CF;Ethiopic Syllable Woa -\U12D0;Ethiopic Syllable Pharyngeal A -\U12D1;Ethiopic Syllable Pharyngeal U -\U12D2;Ethiopic Syllable Pharyngeal I -\U12D3;Ethiopic Syllable Pharyngeal Aa -\U12D4;Ethiopic Syllable Pharyngeal Ee -\U12D5;Ethiopic Syllable Pharyngeal E -\U12D6;Ethiopic Syllable Pharyngeal O -\U12D8;Ethiopic Syllable Za -\U12D9;Ethiopic Syllable Zu -\U12DA;Ethiopic Syllable Zi -\U12DB;Ethiopic Syllable Zaa -\U12DC;Ethiopic Syllable Zee -\U12DD;Ethiopic Syllable Ze -\U12DE;Ethiopic Syllable Zo -\U12DF;Ethiopic Syllable Zwa -\U12E0;Ethiopic Syllable Zha -\U12E1;Ethiopic Syllable Zhu -\U12E2;Ethiopic Syllable Zhi -\U12E3;Ethiopic Syllable Zhaa -\U12E4;Ethiopic Syllable Zhee -\U12E5;Ethiopic Syllable Zhe -\U12E6;Ethiopic Syllable Zho -\U12E7;Ethiopic Syllable Zhwa -\U12E8;Ethiopic Syllable Ya -\U12E9;Ethiopic Syllable Yu -\U12EA;Ethiopic Syllable Yi -\U12EB;Ethiopic Syllable Yaa -\U12EC;Ethiopic Syllable Yee -\U12ED;Ethiopic Syllable Ye -\U12EE;Ethiopic Syllable Yo -\U12EF;Ethiopic Syllable Yoa -\U12F0;Ethiopic Syllable Da -\U12F1;Ethiopic Syllable Du -\U12F2;Ethiopic Syllable Di -\U12F3;Ethiopic Syllable Daa -\U12F4;Ethiopic Syllable Dee -\U12F5;Ethiopic Syllable De -\U12F6;Ethiopic Syllable Do -\U12F7;Ethiopic Syllable Dwa -\U12F8;Ethiopic Syllable Dda -\U12F9;Ethiopic Syllable Ddu -\U12FA;Ethiopic Syllable Ddi -\U12FB;Ethiopic Syllable Ddaa -\U12FC;Ethiopic Syllable Ddee -\U12FD;Ethiopic Syllable Dde -\U12FE;Ethiopic Syllable Ddo -\U12FF;Ethiopic Syllable Ddwa -\U1300;Ethiopic Syllable Ja -\U1301;Ethiopic Syllable Ju -\U1302;Ethiopic Syllable Ji -\U1303;Ethiopic Syllable Jaa -\U1304;Ethiopic Syllable Jee -\U1305;Ethiopic Syllable Je -\U1306;Ethiopic Syllable Jo -\U1307;Ethiopic Syllable Jwa -\U1308;Ethiopic Syllable Ga -\U1309;Ethiopic Syllable Gu -\U130A;Ethiopic Syllable Gi -\U130B;Ethiopic Syllable Gaa -\U130C;Ethiopic Syllable Gee -\U130D;Ethiopic Syllable Ge -\U130E;Ethiopic Syllable Go -\U130F;Ethiopic Syllable Goa -\U1310;Ethiopic Syllable Gwa -\U1312;Ethiopic Syllable Gwi -\U1313;Ethiopic Syllable Gwaa -\U1314;Ethiopic Syllable Gwee -\U1315;Ethiopic Syllable Gwe -\U1318;Ethiopic Syllable Gga -\U1319;Ethiopic Syllable Ggu -\U131A;Ethiopic Syllable Ggi -\U131B;Ethiopic Syllable Ggaa -\U131C;Ethiopic Syllable Ggee -\U131D;Ethiopic Syllable Gge -\U131E;Ethiopic Syllable Ggo -\U131F;Ethiopic Syllable Ggwaa -\U1320;Ethiopic Syllable Tha -\U1321;Ethiopic Syllable Thu -\U1322;Ethiopic Syllable Thi -\U1323;Ethiopic Syllable Thaa -\U1324;Ethiopic Syllable Thee -\U1325;Ethiopic Syllable The -\U1326;Ethiopic Syllable Tho -\U1327;Ethiopic Syllable Thwa -\U1328;Ethiopic Syllable Cha -\U1329;Ethiopic Syllable Chu -\U132A;Ethiopic Syllable Chi -\U132B;Ethiopic Syllable Chaa -\U132C;Ethiopic Syllable Chee -\U132D;Ethiopic Syllable Che -\U132E;Ethiopic Syllable Cho -\U132F;Ethiopic Syllable Chwa -\U1330;Ethiopic Syllable Pha -\U1331;Ethiopic Syllable Phu -\U1332;Ethiopic Syllable Phi -\U1333;Ethiopic Syllable Phaa -\U1334;Ethiopic Syllable Phee -\U1335;Ethiopic Syllable Phe -\U1336;Ethiopic Syllable Pho -\U1337;Ethiopic Syllable Phwa -\U1338;Ethiopic Syllable Tsa -\U1339;Ethiopic Syllable Tsu -\U133A;Ethiopic Syllable Tsi -\U133B;Ethiopic Syllable Tsaa -\U133C;Ethiopic Syllable Tsee -\U133D;Ethiopic Syllable Tse -\U133E;Ethiopic Syllable Tso -\U133F;Ethiopic Syllable Tswa -\U1340;Ethiopic Syllable Tza -\U1341;Ethiopic Syllable Tzu -\U1342;Ethiopic Syllable Tzi -\U1343;Ethiopic Syllable Tzaa -\U1344;Ethiopic Syllable Tzee -\U1345;Ethiopic Syllable Tze -\U1346;Ethiopic Syllable Tzo -\U1347;Ethiopic Syllable Tzoa -\U1348;Ethiopic Syllable Fa -\U1349;Ethiopic Syllable Fu -\U134A;Ethiopic Syllable Fi -\U134B;Ethiopic Syllable Faa -\U134C;Ethiopic Syllable Fee -\U134D;Ethiopic Syllable Fe -\U134E;Ethiopic Syllable Fo -\U134F;Ethiopic Syllable Fwa -\U1350;Ethiopic Syllable Pa -\U1351;Ethiopic Syllable Pu -\U1352;Ethiopic Syllable Pi -\U1353;Ethiopic Syllable Paa -\U1354;Ethiopic Syllable Pee -\U1355;Ethiopic Syllable Pe -\U1356;Ethiopic Syllable Po -\U1357;Ethiopic Syllable Pwa -\U1358;Ethiopic Syllable Rya -\U1359;Ethiopic Syllable Mya -\U135A;Ethiopic Syllable Fya -\U135D;Ethiopic Combining Gemination And Vowel Length Mark -\U135E;Ethiopic Combining Vowel Length Mark -\U135F;Ethiopic Combining Gemination Mark -\U1360;Ethiopic Section Mark -\U1361;Ethiopic Wordspace -\U1362;Ethiopic Full Stop -\U1363;Ethiopic Comma -\U1364;Ethiopic Semicolon -\U1365;Ethiopic Colon -\U1366;Ethiopic Preface Colon -\U1367;Ethiopic Question Mark -\U1368;Ethiopic Paragraph Separator -\U1369;Ethiopic Digit One -\U136A;Ethiopic Digit Two -\U136B;Ethiopic Digit Three -\U136C;Ethiopic Digit Four -\U136D;Ethiopic Digit Five -\U136E;Ethiopic Digit Six -\U136F;Ethiopic Digit Seven -\U1370;Ethiopic Digit Eight -\U1371;Ethiopic Digit Nine -\U1372;Ethiopic Number Ten -\U1373;Ethiopic Number Twenty -\U1374;Ethiopic Number Thirty -\U1375;Ethiopic Number Forty -\U1376;Ethiopic Number Fifty -\U1377;Ethiopic Number Sixty -\U1378;Ethiopic Number Seventy -\U1379;Ethiopic Number Eighty -\U137A;Ethiopic Number Ninety -\U137B;Ethiopic Number Hundred -\U137C;Ethiopic Number Ten Thousand -\U1380;Ethiopic Syllable Sebatbeit Mwa -\U1381;Ethiopic Syllable Mwi -\U1382;Ethiopic Syllable Mwee -\U1383;Ethiopic Syllable Mwe -\U1384;Ethiopic Syllable Sebatbeit Bwa -\U1385;Ethiopic Syllable Bwi -\U1386;Ethiopic Syllable Bwee -\U1387;Ethiopic Syllable Bwe -\U1388;Ethiopic Syllable Sebatbeit Fwa -\U1389;Ethiopic Syllable Fwi -\U138A;Ethiopic Syllable Fwee -\U138B;Ethiopic Syllable Fwe -\U138C;Ethiopic Syllable Sebatbeit Pwa -\U138D;Ethiopic Syllable Pwi -\U138E;Ethiopic Syllable Pwee -\U138F;Ethiopic Syllable Pwe -\U1390;Ethiopic Tonal Mark Yizet -\U1391;Ethiopic Tonal Mark Deret -\U1392;Ethiopic Tonal Mark Rikrik -\U1393;Ethiopic Tonal Mark Short Rikrik -\U1394;Ethiopic Tonal Mark Difat -\U1395;Ethiopic Tonal Mark Kenat -\U1396;Ethiopic Tonal Mark Chiret -\U1397;Ethiopic Tonal Mark Hidet -\U1398;Ethiopic Tonal Mark Deret-Hidet -\U1399;Ethiopic Tonal Mark Kurt -\U13A0;Cherokee Letter A -\U13A1;Cherokee Letter E -\U13A2;Cherokee Letter I -\U13A3;Cherokee Letter O -\U13A4;Cherokee Letter U -\U13A5;Cherokee Letter V -\U13A6;Cherokee Letter Ga -\U13A7;Cherokee Letter Ka -\U13A8;Cherokee Letter Ge -\U13A9;Cherokee Letter Gi -\U13AA;Cherokee Letter Go -\U13AB;Cherokee Letter Gu -\U13AC;Cherokee Letter Gv -\U13AD;Cherokee Letter Ha -\U13AE;Cherokee Letter He -\U13AF;Cherokee Letter Hi -\U13B0;Cherokee Letter Ho -\U13B1;Cherokee Letter Hu -\U13B2;Cherokee Letter Hv -\U13B3;Cherokee Letter La -\U13B4;Cherokee Letter Le -\U13B5;Cherokee Letter Li -\U13B6;Cherokee Letter Lo -\U13B7;Cherokee Letter Lu -\U13B8;Cherokee Letter Lv -\U13B9;Cherokee Letter Ma -\U13BA;Cherokee Letter Me -\U13BB;Cherokee Letter Mi -\U13BC;Cherokee Letter Mo -\U13BD;Cherokee Letter Mu -\U13BE;Cherokee Letter Na -\U13BF;Cherokee Letter Hna -\U13C0;Cherokee Letter Nah -\U13C1;Cherokee Letter Ne -\U13C2;Cherokee Letter Ni -\U13C3;Cherokee Letter No -\U13C4;Cherokee Letter Nu -\U13C5;Cherokee Letter Nv -\U13C6;Cherokee Letter Qua -\U13C7;Cherokee Letter Que -\U13C8;Cherokee Letter Qui -\U13C9;Cherokee Letter Quo -\U13CA;Cherokee Letter Quu -\U13CB;Cherokee Letter Quv -\U13CC;Cherokee Letter Sa -\U13CD;Cherokee Letter S -\U13CE;Cherokee Letter Se -\U13CF;Cherokee Letter Si -\U13D0;Cherokee Letter So -\U13D1;Cherokee Letter Su -\U13D2;Cherokee Letter Sv -\U13D3;Cherokee Letter Da -\U13D4;Cherokee Letter Ta -\U13D5;Cherokee Letter De -\U13D6;Cherokee Letter Te -\U13D7;Cherokee Letter Di -\U13D8;Cherokee Letter Ti -\U13D9;Cherokee Letter Do -\U13DA;Cherokee Letter Du -\U13DB;Cherokee Letter Dv -\U13DC;Cherokee Letter Dla -\U13DD;Cherokee Letter Tla -\U13DE;Cherokee Letter Tle -\U13DF;Cherokee Letter Tli -\U13E0;Cherokee Letter Tlo -\U13E1;Cherokee Letter Tlu -\U13E2;Cherokee Letter Tlv -\U13E3;Cherokee Letter Tsa -\U13E4;Cherokee Letter Tse -\U13E5;Cherokee Letter Tsi -\U13E6;Cherokee Letter Tso -\U13E7;Cherokee Letter Tsu -\U13E8;Cherokee Letter Tsv -\U13E9;Cherokee Letter Wa -\U13EA;Cherokee Letter We -\U13EB;Cherokee Letter Wi -\U13EC;Cherokee Letter Wo -\U13ED;Cherokee Letter Wu -\U13EE;Cherokee Letter Wv -\U13EF;Cherokee Letter Ya -\U13F0;Cherokee Letter Ye -\U13F1;Cherokee Letter Yi -\U13F2;Cherokee Letter Yo -\U13F3;Cherokee Letter Yu -\U13F4;Cherokee Letter Yv -\U13F5;Cherokee Letter Mv -\U13F8;Cherokee Small Letter Ye -\U13F9;Cherokee Small Letter Yi -\U13FA;Cherokee Small Letter Yo -\U13FB;Cherokee Small Letter Yu -\U13FC;Cherokee Small Letter Yv -\U13FD;Cherokee Small Letter Mv -\U1400;Canadian Syllabics Hyphen -\U1401;Canadian Syllabics E -\U1402;Canadian Syllabics Aai -\U1403;Canadian Syllabics I -\U1404;Canadian Syllabics Ii -\U1405;Canadian Syllabics O -\U1406;Canadian Syllabics Oo -\U1407;Canadian Syllabics Y-Cree Oo -\U1408;Canadian Syllabics Carrier Ee -\U1409;Canadian Syllabics Carrier I -\U140A;Canadian Syllabics A -\U140B;Canadian Syllabics Aa -\U140C;Canadian Syllabics We -\U140D;Canadian Syllabics West-Cree We -\U140E;Canadian Syllabics Wi -\U140F;Canadian Syllabics West-Cree Wi -\U1410;Canadian Syllabics Wii -\U1411;Canadian Syllabics West-Cree Wii -\U1412;Canadian Syllabics Wo -\U1413;Canadian Syllabics West-Cree Wo -\U1414;Canadian Syllabics Woo -\U1415;Canadian Syllabics West-Cree Woo -\U1416;Canadian Syllabics Naskapi Woo -\U1417;Canadian Syllabics Wa -\U1418;Canadian Syllabics West-Cree Wa -\U1419;Canadian Syllabics Waa -\U141A;Canadian Syllabics West-Cree Waa -\U141B;Canadian Syllabics Naskapi Waa -\U141C;Canadian Syllabics Ai -\U141D;Canadian Syllabics Y-Cree W -\U141E;Canadian Syllabics Glottal Stop -\U141F;Canadian Syllabics Final Acute -\U1420;Canadian Syllabics Final Grave -\U1421;Canadian Syllabics Final Bottom Half Ring -\U1422;Canadian Syllabics Final Top Half Ring -\U1423;Canadian Syllabics Final Right Half Ring -\U1424;Canadian Syllabics Final Ring -\U1425;Canadian Syllabics Final Double Acute -\U1426;Canadian Syllabics Final Double Short Vertical Strokes -\U1427;Canadian Syllabics Final Middle Dot -\U1428;Canadian Syllabics Final Short Horizontal Stroke -\U1429;Canadian Syllabics Final Plus -\U142A;Canadian Syllabics Final Down Tack -\U142B;Canadian Syllabics En -\U142C;Canadian Syllabics In -\U142D;Canadian Syllabics On -\U142E;Canadian Syllabics An -\U142F;Canadian Syllabics Pe -\U1430;Canadian Syllabics Paai -\U1431;Canadian Syllabics Pi -\U1432;Canadian Syllabics Pii -\U1433;Canadian Syllabics Po -\U1434;Canadian Syllabics Poo -\U1435;Canadian Syllabics Y-Cree Poo -\U1436;Canadian Syllabics Carrier Hee -\U1437;Canadian Syllabics Carrier Hi -\U1438;Canadian Syllabics Pa -\U1439;Canadian Syllabics Paa -\U143A;Canadian Syllabics Pwe -\U143B;Canadian Syllabics West-Cree Pwe -\U143C;Canadian Syllabics Pwi -\U143D;Canadian Syllabics West-Cree Pwi -\U143E;Canadian Syllabics Pwii -\U143F;Canadian Syllabics West-Cree Pwii -\U1440;Canadian Syllabics Pwo -\U1441;Canadian Syllabics West-Cree Pwo -\U1442;Canadian Syllabics Pwoo -\U1443;Canadian Syllabics West-Cree Pwoo -\U1444;Canadian Syllabics Pwa -\U1445;Canadian Syllabics West-Cree Pwa -\U1446;Canadian Syllabics Pwaa -\U1447;Canadian Syllabics West-Cree Pwaa -\U1448;Canadian Syllabics Y-Cree Pwaa -\U1449;Canadian Syllabics P -\U144A;Canadian Syllabics West-Cree P -\U144B;Canadian Syllabics Carrier H -\U144C;Canadian Syllabics Te -\U144D;Canadian Syllabics Taai -\U144E;Canadian Syllabics Ti -\U144F;Canadian Syllabics Tii -\U1450;Canadian Syllabics To -\U1451;Canadian Syllabics Too -\U1452;Canadian Syllabics Y-Cree Too -\U1453;Canadian Syllabics Carrier Dee -\U1454;Canadian Syllabics Carrier Di -\U1455;Canadian Syllabics Ta -\U1456;Canadian Syllabics Taa -\U1457;Canadian Syllabics Twe -\U1458;Canadian Syllabics West-Cree Twe -\U1459;Canadian Syllabics Twi -\U145A;Canadian Syllabics West-Cree Twi -\U145B;Canadian Syllabics Twii -\U145C;Canadian Syllabics West-Cree Twii -\U145D;Canadian Syllabics Two -\U145E;Canadian Syllabics West-Cree Two -\U145F;Canadian Syllabics Twoo -\U1460;Canadian Syllabics West-Cree Twoo -\U1461;Canadian Syllabics Twa -\U1462;Canadian Syllabics West-Cree Twa -\U1463;Canadian Syllabics Twaa -\U1464;Canadian Syllabics West-Cree Twaa -\U1465;Canadian Syllabics Naskapi Twaa -\U1466;Canadian Syllabics T -\U1467;Canadian Syllabics Tte -\U1468;Canadian Syllabics Tti -\U1469;Canadian Syllabics Tto -\U146A;Canadian Syllabics Tta -\U146B;Canadian Syllabics Ke -\U146C;Canadian Syllabics Kaai -\U146D;Canadian Syllabics Ki -\U146E;Canadian Syllabics Kii -\U146F;Canadian Syllabics Ko -\U1470;Canadian Syllabics Koo -\U1471;Canadian Syllabics Y-Cree Koo -\U1472;Canadian Syllabics Ka -\U1473;Canadian Syllabics Kaa -\U1474;Canadian Syllabics Kwe -\U1475;Canadian Syllabics West-Cree Kwe -\U1476;Canadian Syllabics Kwi -\U1477;Canadian Syllabics West-Cree Kwi -\U1478;Canadian Syllabics Kwii -\U1479;Canadian Syllabics West-Cree Kwii -\U147A;Canadian Syllabics Kwo -\U147B;Canadian Syllabics West-Cree Kwo -\U147C;Canadian Syllabics Kwoo -\U147D;Canadian Syllabics West-Cree Kwoo -\U147E;Canadian Syllabics Kwa -\U147F;Canadian Syllabics West-Cree Kwa -\U1480;Canadian Syllabics Kwaa -\U1481;Canadian Syllabics West-Cree Kwaa -\U1482;Canadian Syllabics Naskapi Kwaa -\U1483;Canadian Syllabics K -\U1484;Canadian Syllabics Kw -\U1485;Canadian Syllabics South-Slavey Keh -\U1486;Canadian Syllabics South-Slavey Kih -\U1487;Canadian Syllabics South-Slavey Koh -\U1488;Canadian Syllabics South-Slavey Kah -\U1489;Canadian Syllabics Ce -\U148A;Canadian Syllabics Caai -\U148B;Canadian Syllabics Ci -\U148C;Canadian Syllabics Cii -\U148D;Canadian Syllabics Co -\U148E;Canadian Syllabics Coo -\U148F;Canadian Syllabics Y-Cree Coo -\U1490;Canadian Syllabics Ca -\U1491;Canadian Syllabics Caa -\U1492;Canadian Syllabics Cwe -\U1493;Canadian Syllabics West-Cree Cwe -\U1494;Canadian Syllabics Cwi -\U1495;Canadian Syllabics West-Cree Cwi -\U1496;Canadian Syllabics Cwii -\U1497;Canadian Syllabics West-Cree Cwii -\U1498;Canadian Syllabics Cwo -\U1499;Canadian Syllabics West-Cree Cwo -\U149A;Canadian Syllabics Cwoo -\U149B;Canadian Syllabics West-Cree Cwoo -\U149C;Canadian Syllabics Cwa -\U149D;Canadian Syllabics West-Cree Cwa -\U149E;Canadian Syllabics Cwaa -\U149F;Canadian Syllabics West-Cree Cwaa -\U14A0;Canadian Syllabics Naskapi Cwaa -\U14A1;Canadian Syllabics C -\U14A2;Canadian Syllabics Sayisi Th -\U14A3;Canadian Syllabics Me -\U14A4;Canadian Syllabics Maai -\U14A5;Canadian Syllabics Mi -\U14A6;Canadian Syllabics Mii -\U14A7;Canadian Syllabics Mo -\U14A8;Canadian Syllabics Moo -\U14A9;Canadian Syllabics Y-Cree Moo -\U14AA;Canadian Syllabics Ma -\U14AB;Canadian Syllabics Maa -\U14AC;Canadian Syllabics Mwe -\U14AD;Canadian Syllabics West-Cree Mwe -\U14AE;Canadian Syllabics Mwi -\U14AF;Canadian Syllabics West-Cree Mwi -\U14B0;Canadian Syllabics Mwii -\U14B1;Canadian Syllabics West-Cree Mwii -\U14B2;Canadian Syllabics Mwo -\U14B3;Canadian Syllabics West-Cree Mwo -\U14B4;Canadian Syllabics Mwoo -\U14B5;Canadian Syllabics West-Cree Mwoo -\U14B6;Canadian Syllabics Mwa -\U14B7;Canadian Syllabics West-Cree Mwa -\U14B8;Canadian Syllabics Mwaa -\U14B9;Canadian Syllabics West-Cree Mwaa -\U14BA;Canadian Syllabics Naskapi Mwaa -\U14BB;Canadian Syllabics M -\U14BC;Canadian Syllabics West-Cree M -\U14BD;Canadian Syllabics Mh -\U14BE;Canadian Syllabics Athapascan M -\U14BF;Canadian Syllabics Sayisi M -\U14C0;Canadian Syllabics Ne -\U14C1;Canadian Syllabics Naai -\U14C2;Canadian Syllabics Ni -\U14C3;Canadian Syllabics Nii -\U14C4;Canadian Syllabics No -\U14C5;Canadian Syllabics Noo -\U14C6;Canadian Syllabics Y-Cree Noo -\U14C7;Canadian Syllabics Na -\U14C8;Canadian Syllabics Naa -\U14C9;Canadian Syllabics Nwe -\U14CA;Canadian Syllabics West-Cree Nwe -\U14CB;Canadian Syllabics Nwa -\U14CC;Canadian Syllabics West-Cree Nwa -\U14CD;Canadian Syllabics Nwaa -\U14CE;Canadian Syllabics West-Cree Nwaa -\U14CF;Canadian Syllabics Naskapi Nwaa -\U14D0;Canadian Syllabics N -\U14D1;Canadian Syllabics Carrier Ng -\U14D2;Canadian Syllabics Nh -\U14D3;Canadian Syllabics Le -\U14D4;Canadian Syllabics Laai -\U14D5;Canadian Syllabics Li -\U14D6;Canadian Syllabics Lii -\U14D7;Canadian Syllabics Lo -\U14D8;Canadian Syllabics Loo -\U14D9;Canadian Syllabics Y-Cree Loo -\U14DA;Canadian Syllabics La -\U14DB;Canadian Syllabics Laa -\U14DC;Canadian Syllabics Lwe -\U14DD;Canadian Syllabics West-Cree Lwe -\U14DE;Canadian Syllabics Lwi -\U14DF;Canadian Syllabics West-Cree Lwi -\U14E0;Canadian Syllabics Lwii -\U14E1;Canadian Syllabics West-Cree Lwii -\U14E2;Canadian Syllabics Lwo -\U14E3;Canadian Syllabics West-Cree Lwo -\U14E4;Canadian Syllabics Lwoo -\U14E5;Canadian Syllabics West-Cree Lwoo -\U14E6;Canadian Syllabics Lwa -\U14E7;Canadian Syllabics West-Cree Lwa -\U14E8;Canadian Syllabics Lwaa -\U14E9;Canadian Syllabics West-Cree Lwaa -\U14EA;Canadian Syllabics L -\U14EB;Canadian Syllabics West-Cree L -\U14EC;Canadian Syllabics Medial L -\U14ED;Canadian Syllabics Se -\U14EE;Canadian Syllabics Saai -\U14EF;Canadian Syllabics Si -\U14F0;Canadian Syllabics Sii -\U14F1;Canadian Syllabics So -\U14F2;Canadian Syllabics Soo -\U14F3;Canadian Syllabics Y-Cree Soo -\U14F4;Canadian Syllabics Sa -\U14F5;Canadian Syllabics Saa -\U14F6;Canadian Syllabics Swe -\U14F7;Canadian Syllabics West-Cree Swe -\U14F8;Canadian Syllabics Swi -\U14F9;Canadian Syllabics West-Cree Swi -\U14FA;Canadian Syllabics Swii -\U14FB;Canadian Syllabics West-Cree Swii -\U14FC;Canadian Syllabics Swo -\U14FD;Canadian Syllabics West-Cree Swo -\U14FE;Canadian Syllabics Swoo -\U14FF;Canadian Syllabics West-Cree Swoo -\U1500;Canadian Syllabics Swa -\U1501;Canadian Syllabics West-Cree Swa -\U1502;Canadian Syllabics Swaa -\U1503;Canadian Syllabics West-Cree Swaa -\U1504;Canadian Syllabics Naskapi Swaa -\U1505;Canadian Syllabics S -\U1506;Canadian Syllabics Athapascan S -\U1507;Canadian Syllabics Sw -\U1508;Canadian Syllabics Blackfoot S -\U1509;Canadian Syllabics Moose-Cree Sk -\U150A;Canadian Syllabics Naskapi Skw -\U150B;Canadian Syllabics Naskapi S-W -\U150C;Canadian Syllabics Naskapi Spwa -\U150D;Canadian Syllabics Naskapi Stwa -\U150E;Canadian Syllabics Naskapi Skwa -\U150F;Canadian Syllabics Naskapi Scwa -\U1510;Canadian Syllabics She -\U1511;Canadian Syllabics Shi -\U1512;Canadian Syllabics Shii -\U1513;Canadian Syllabics Sho -\U1514;Canadian Syllabics Shoo -\U1515;Canadian Syllabics Sha -\U1516;Canadian Syllabics Shaa -\U1517;Canadian Syllabics Shwe -\U1518;Canadian Syllabics West-Cree Shwe -\U1519;Canadian Syllabics Shwi -\U151A;Canadian Syllabics West-Cree Shwi -\U151B;Canadian Syllabics Shwii -\U151C;Canadian Syllabics West-Cree Shwii -\U151D;Canadian Syllabics Shwo -\U151E;Canadian Syllabics West-Cree Shwo -\U151F;Canadian Syllabics Shwoo -\U1520;Canadian Syllabics West-Cree Shwoo -\U1521;Canadian Syllabics Shwa -\U1522;Canadian Syllabics West-Cree Shwa -\U1523;Canadian Syllabics Shwaa -\U1524;Canadian Syllabics West-Cree Shwaa -\U1525;Canadian Syllabics Sh -\U1526;Canadian Syllabics Ye -\U1527;Canadian Syllabics Yaai -\U1528;Canadian Syllabics Yi -\U1529;Canadian Syllabics Yii -\U152A;Canadian Syllabics Yo -\U152B;Canadian Syllabics Yoo -\U152C;Canadian Syllabics Y-Cree Yoo -\U152D;Canadian Syllabics Ya -\U152E;Canadian Syllabics Yaa -\U152F;Canadian Syllabics Ywe -\U1530;Canadian Syllabics West-Cree Ywe -\U1531;Canadian Syllabics Ywi -\U1532;Canadian Syllabics West-Cree Ywi -\U1533;Canadian Syllabics Ywii -\U1534;Canadian Syllabics West-Cree Ywii -\U1535;Canadian Syllabics Ywo -\U1536;Canadian Syllabics West-Cree Ywo -\U1537;Canadian Syllabics Ywoo -\U1538;Canadian Syllabics West-Cree Ywoo -\U1539;Canadian Syllabics Ywa -\U153A;Canadian Syllabics West-Cree Ywa -\U153B;Canadian Syllabics Ywaa -\U153C;Canadian Syllabics West-Cree Ywaa -\U153D;Canadian Syllabics Naskapi Ywaa -\U153E;Canadian Syllabics Y -\U153F;Canadian Syllabics Bible-Cree Y -\U1540;Canadian Syllabics West-Cree Y -\U1541;Canadian Syllabics Sayisi Yi -\U1542;Canadian Syllabics Re -\U1543;Canadian Syllabics R-Cree Re -\U1544;Canadian Syllabics West-Cree Le -\U1545;Canadian Syllabics Raai -\U1546;Canadian Syllabics Ri -\U1547;Canadian Syllabics Rii -\U1548;Canadian Syllabics Ro -\U1549;Canadian Syllabics Roo -\U154A;Canadian Syllabics West-Cree Lo -\U154B;Canadian Syllabics Ra -\U154C;Canadian Syllabics Raa -\U154D;Canadian Syllabics West-Cree La -\U154E;Canadian Syllabics Rwaa -\U154F;Canadian Syllabics West-Cree Rwaa -\U1550;Canadian Syllabics R -\U1551;Canadian Syllabics West-Cree R -\U1552;Canadian Syllabics Medial R -\U1553;Canadian Syllabics Fe -\U1554;Canadian Syllabics Faai -\U1555;Canadian Syllabics Fi -\U1556;Canadian Syllabics Fii -\U1557;Canadian Syllabics Fo -\U1558;Canadian Syllabics Foo -\U1559;Canadian Syllabics Fa -\U155A;Canadian Syllabics Faa -\U155B;Canadian Syllabics Fwaa -\U155C;Canadian Syllabics West-Cree Fwaa -\U155D;Canadian Syllabics F -\U155E;Canadian Syllabics The -\U155F;Canadian Syllabics N-Cree The -\U1560;Canadian Syllabics Thi -\U1561;Canadian Syllabics N-Cree Thi -\U1562;Canadian Syllabics Thii -\U1563;Canadian Syllabics N-Cree Thii -\U1564;Canadian Syllabics Tho -\U1565;Canadian Syllabics Thoo -\U1566;Canadian Syllabics Tha -\U1567;Canadian Syllabics Thaa -\U1568;Canadian Syllabics Thwaa -\U1569;Canadian Syllabics West-Cree Thwaa -\U156A;Canadian Syllabics Th -\U156B;Canadian Syllabics Tthe -\U156C;Canadian Syllabics Tthi -\U156D;Canadian Syllabics Ttho -\U156E;Canadian Syllabics Ttha -\U156F;Canadian Syllabics Tth -\U1570;Canadian Syllabics Tye -\U1571;Canadian Syllabics Tyi -\U1572;Canadian Syllabics Tyo -\U1573;Canadian Syllabics Tya -\U1574;Canadian Syllabics Nunavik He -\U1575;Canadian Syllabics Nunavik Hi -\U1576;Canadian Syllabics Nunavik Hii -\U1577;Canadian Syllabics Nunavik Ho -\U1578;Canadian Syllabics Nunavik Hoo -\U1579;Canadian Syllabics Nunavik Ha -\U157A;Canadian Syllabics Nunavik Haa -\U157B;Canadian Syllabics Nunavik H -\U157C;Canadian Syllabics Nunavut H -\U157D;Canadian Syllabics Hk -\U157E;Canadian Syllabics Qaai -\U157F;Canadian Syllabics Qi -\U1580;Canadian Syllabics Qii -\U1581;Canadian Syllabics Qo -\U1582;Canadian Syllabics Qoo -\U1583;Canadian Syllabics Qa -\U1584;Canadian Syllabics Qaa -\U1585;Canadian Syllabics Q -\U1586;Canadian Syllabics Tlhe -\U1587;Canadian Syllabics Tlhi -\U1588;Canadian Syllabics Tlho -\U1589;Canadian Syllabics Tlha -\U158A;Canadian Syllabics West-Cree Re -\U158B;Canadian Syllabics West-Cree Ri -\U158C;Canadian Syllabics West-Cree Ro -\U158D;Canadian Syllabics West-Cree Ra -\U158E;Canadian Syllabics Ngaai -\U158F;Canadian Syllabics Ngi -\U1590;Canadian Syllabics Ngii -\U1591;Canadian Syllabics Ngo -\U1592;Canadian Syllabics Ngoo -\U1593;Canadian Syllabics Nga -\U1594;Canadian Syllabics Ngaa -\U1595;Canadian Syllabics Ng -\U1596;Canadian Syllabics Nng -\U1597;Canadian Syllabics Sayisi She -\U1598;Canadian Syllabics Sayisi Shi -\U1599;Canadian Syllabics Sayisi Sho -\U159A;Canadian Syllabics Sayisi Sha -\U159B;Canadian Syllabics Woods-Cree The -\U159C;Canadian Syllabics Woods-Cree Thi -\U159D;Canadian Syllabics Woods-Cree Tho -\U159E;Canadian Syllabics Woods-Cree Tha -\U159F;Canadian Syllabics Woods-Cree Th -\U15A0;Canadian Syllabics Lhi -\U15A1;Canadian Syllabics Lhii -\U15A2;Canadian Syllabics Lho -\U15A3;Canadian Syllabics Lhoo -\U15A4;Canadian Syllabics Lha -\U15A5;Canadian Syllabics Lhaa -\U15A6;Canadian Syllabics Lh -\U15A7;Canadian Syllabics Th-Cree The -\U15A8;Canadian Syllabics Th-Cree Thi -\U15A9;Canadian Syllabics Th-Cree Thii -\U15AA;Canadian Syllabics Th-Cree Tho -\U15AB;Canadian Syllabics Th-Cree Thoo -\U15AC;Canadian Syllabics Th-Cree Tha -\U15AD;Canadian Syllabics Th-Cree Thaa -\U15AE;Canadian Syllabics Th-Cree Th -\U15AF;Canadian Syllabics Aivilik B -\U15B0;Canadian Syllabics Blackfoot E -\U15B1;Canadian Syllabics Blackfoot I -\U15B2;Canadian Syllabics Blackfoot O -\U15B3;Canadian Syllabics Blackfoot A -\U15B4;Canadian Syllabics Blackfoot We -\U15B5;Canadian Syllabics Blackfoot Wi -\U15B6;Canadian Syllabics Blackfoot Wo -\U15B7;Canadian Syllabics Blackfoot Wa -\U15B8;Canadian Syllabics Blackfoot Ne -\U15B9;Canadian Syllabics Blackfoot Ni -\U15BA;Canadian Syllabics Blackfoot No -\U15BB;Canadian Syllabics Blackfoot Na -\U15BC;Canadian Syllabics Blackfoot Ke -\U15BD;Canadian Syllabics Blackfoot Ki -\U15BE;Canadian Syllabics Blackfoot Ko -\U15BF;Canadian Syllabics Blackfoot Ka -\U15C0;Canadian Syllabics Sayisi He -\U15C1;Canadian Syllabics Sayisi Hi -\U15C2;Canadian Syllabics Sayisi Ho -\U15C3;Canadian Syllabics Sayisi Ha -\U15C4;Canadian Syllabics Carrier Ghu -\U15C5;Canadian Syllabics Carrier Gho -\U15C6;Canadian Syllabics Carrier Ghe -\U15C7;Canadian Syllabics Carrier Ghee -\U15C8;Canadian Syllabics Carrier Ghi -\U15C9;Canadian Syllabics Carrier Gha -\U15CA;Canadian Syllabics Carrier Ru -\U15CB;Canadian Syllabics Carrier Ro -\U15CC;Canadian Syllabics Carrier Re -\U15CD;Canadian Syllabics Carrier Ree -\U15CE;Canadian Syllabics Carrier Ri -\U15CF;Canadian Syllabics Carrier Ra -\U15D0;Canadian Syllabics Carrier Wu -\U15D1;Canadian Syllabics Carrier Wo -\U15D2;Canadian Syllabics Carrier We -\U15D3;Canadian Syllabics Carrier Wee -\U15D4;Canadian Syllabics Carrier Wi -\U15D5;Canadian Syllabics Carrier Wa -\U15D6;Canadian Syllabics Carrier Hwu -\U15D7;Canadian Syllabics Carrier Hwo -\U15D8;Canadian Syllabics Carrier Hwe -\U15D9;Canadian Syllabics Carrier Hwee -\U15DA;Canadian Syllabics Carrier Hwi -\U15DB;Canadian Syllabics Carrier Hwa -\U15DC;Canadian Syllabics Carrier Thu -\U15DD;Canadian Syllabics Carrier Tho -\U15DE;Canadian Syllabics Carrier The -\U15DF;Canadian Syllabics Carrier Thee -\U15E0;Canadian Syllabics Carrier Thi -\U15E1;Canadian Syllabics Carrier Tha -\U15E2;Canadian Syllabics Carrier Ttu -\U15E3;Canadian Syllabics Carrier Tto -\U15E4;Canadian Syllabics Carrier Tte -\U15E5;Canadian Syllabics Carrier Ttee -\U15E6;Canadian Syllabics Carrier Tti -\U15E7;Canadian Syllabics Carrier Tta -\U15E8;Canadian Syllabics Carrier Pu -\U15E9;Canadian Syllabics Carrier Po -\U15EA;Canadian Syllabics Carrier Pe -\U15EB;Canadian Syllabics Carrier Pee -\U15EC;Canadian Syllabics Carrier Pi -\U15ED;Canadian Syllabics Carrier Pa -\U15EE;Canadian Syllabics Carrier P -\U15EF;Canadian Syllabics Carrier Gu -\U15F0;Canadian Syllabics Carrier Go -\U15F1;Canadian Syllabics Carrier Ge -\U15F2;Canadian Syllabics Carrier Gee -\U15F3;Canadian Syllabics Carrier Gi -\U15F4;Canadian Syllabics Carrier Ga -\U15F5;Canadian Syllabics Carrier Khu -\U15F6;Canadian Syllabics Carrier Kho -\U15F7;Canadian Syllabics Carrier Khe -\U15F8;Canadian Syllabics Carrier Khee -\U15F9;Canadian Syllabics Carrier Khi -\U15FA;Canadian Syllabics Carrier Kha -\U15FB;Canadian Syllabics Carrier Kku -\U15FC;Canadian Syllabics Carrier Kko -\U15FD;Canadian Syllabics Carrier Kke -\U15FE;Canadian Syllabics Carrier Kkee -\U15FF;Canadian Syllabics Carrier Kki -\U1600;Canadian Syllabics Carrier Kka -\U1601;Canadian Syllabics Carrier Kk -\U1602;Canadian Syllabics Carrier Nu -\U1603;Canadian Syllabics Carrier No -\U1604;Canadian Syllabics Carrier Ne -\U1605;Canadian Syllabics Carrier Nee -\U1606;Canadian Syllabics Carrier Ni -\U1607;Canadian Syllabics Carrier Na -\U1608;Canadian Syllabics Carrier Mu -\U1609;Canadian Syllabics Carrier Mo -\U160A;Canadian Syllabics Carrier Me -\U160B;Canadian Syllabics Carrier Mee -\U160C;Canadian Syllabics Carrier Mi -\U160D;Canadian Syllabics Carrier Ma -\U160E;Canadian Syllabics Carrier Yu -\U160F;Canadian Syllabics Carrier Yo -\U1610;Canadian Syllabics Carrier Ye -\U1611;Canadian Syllabics Carrier Yee -\U1612;Canadian Syllabics Carrier Yi -\U1613;Canadian Syllabics Carrier Ya -\U1614;Canadian Syllabics Carrier Ju -\U1615;Canadian Syllabics Sayisi Ju -\U1616;Canadian Syllabics Carrier Jo -\U1617;Canadian Syllabics Carrier Je -\U1618;Canadian Syllabics Carrier Jee -\U1619;Canadian Syllabics Carrier Ji -\U161A;Canadian Syllabics Sayisi Ji -\U161B;Canadian Syllabics Carrier Ja -\U161C;Canadian Syllabics Carrier Jju -\U161D;Canadian Syllabics Carrier Jjo -\U161E;Canadian Syllabics Carrier Jje -\U161F;Canadian Syllabics Carrier Jjee -\U1620;Canadian Syllabics Carrier Jji -\U1621;Canadian Syllabics Carrier Jja -\U1622;Canadian Syllabics Carrier Lu -\U1623;Canadian Syllabics Carrier Lo -\U1624;Canadian Syllabics Carrier Le -\U1625;Canadian Syllabics Carrier Lee -\U1626;Canadian Syllabics Carrier Li -\U1627;Canadian Syllabics Carrier La -\U1628;Canadian Syllabics Carrier Dlu -\U1629;Canadian Syllabics Carrier Dlo -\U162A;Canadian Syllabics Carrier Dle -\U162B;Canadian Syllabics Carrier Dlee -\U162C;Canadian Syllabics Carrier Dli -\U162D;Canadian Syllabics Carrier Dla -\U162E;Canadian Syllabics Carrier Lhu -\U162F;Canadian Syllabics Carrier Lho -\U1630;Canadian Syllabics Carrier Lhe -\U1631;Canadian Syllabics Carrier Lhee -\U1632;Canadian Syllabics Carrier Lhi -\U1633;Canadian Syllabics Carrier Lha -\U1634;Canadian Syllabics Carrier Tlhu -\U1635;Canadian Syllabics Carrier Tlho -\U1636;Canadian Syllabics Carrier Tlhe -\U1637;Canadian Syllabics Carrier Tlhee -\U1638;Canadian Syllabics Carrier Tlhi -\U1639;Canadian Syllabics Carrier Tlha -\U163A;Canadian Syllabics Carrier Tlu -\U163B;Canadian Syllabics Carrier Tlo -\U163C;Canadian Syllabics Carrier Tle -\U163D;Canadian Syllabics Carrier Tlee -\U163E;Canadian Syllabics Carrier Tli -\U163F;Canadian Syllabics Carrier Tla -\U1640;Canadian Syllabics Carrier Zu -\U1641;Canadian Syllabics Carrier Zo -\U1642;Canadian Syllabics Carrier Ze -\U1643;Canadian Syllabics Carrier Zee -\U1644;Canadian Syllabics Carrier Zi -\U1645;Canadian Syllabics Carrier Za -\U1646;Canadian Syllabics Carrier Z -\U1647;Canadian Syllabics Carrier Initial Z -\U1648;Canadian Syllabics Carrier Dzu -\U1649;Canadian Syllabics Carrier Dzo -\U164A;Canadian Syllabics Carrier Dze -\U164B;Canadian Syllabics Carrier Dzee -\U164C;Canadian Syllabics Carrier Dzi -\U164D;Canadian Syllabics Carrier Dza -\U164E;Canadian Syllabics Carrier Su -\U164F;Canadian Syllabics Carrier So -\U1650;Canadian Syllabics Carrier Se -\U1651;Canadian Syllabics Carrier See -\U1652;Canadian Syllabics Carrier Si -\U1653;Canadian Syllabics Carrier Sa -\U1654;Canadian Syllabics Carrier Shu -\U1655;Canadian Syllabics Carrier Sho -\U1656;Canadian Syllabics Carrier She -\U1657;Canadian Syllabics Carrier Shee -\U1658;Canadian Syllabics Carrier Shi -\U1659;Canadian Syllabics Carrier Sha -\U165A;Canadian Syllabics Carrier Sh -\U165B;Canadian Syllabics Carrier Tsu -\U165C;Canadian Syllabics Carrier Tso -\U165D;Canadian Syllabics Carrier Tse -\U165E;Canadian Syllabics Carrier Tsee -\U165F;Canadian Syllabics Carrier Tsi -\U1660;Canadian Syllabics Carrier Tsa -\U1661;Canadian Syllabics Carrier Chu -\U1662;Canadian Syllabics Carrier Cho -\U1663;Canadian Syllabics Carrier Che -\U1664;Canadian Syllabics Carrier Chee -\U1665;Canadian Syllabics Carrier Chi -\U1666;Canadian Syllabics Carrier Cha -\U1667;Canadian Syllabics Carrier Ttsu -\U1668;Canadian Syllabics Carrier Ttso -\U1669;Canadian Syllabics Carrier Ttse -\U166A;Canadian Syllabics Carrier Ttsee -\U166B;Canadian Syllabics Carrier Ttsi -\U166C;Canadian Syllabics Carrier Ttsa -\U166D;Canadian Syllabics Chi Sign -\U166E;Canadian Syllabics Full Stop -\U166F;Canadian Syllabics Qai -\U1670;Canadian Syllabics Ngai -\U1671;Canadian Syllabics Nngi -\U1672;Canadian Syllabics Nngii -\U1673;Canadian Syllabics Nngo -\U1674;Canadian Syllabics Nngoo -\U1675;Canadian Syllabics Nnga -\U1676;Canadian Syllabics Nngaa -\U1677;Canadian Syllabics Woods-Cree Thwee -\U1678;Canadian Syllabics Woods-Cree Thwi -\U1679;Canadian Syllabics Woods-Cree Thwii -\U167A;Canadian Syllabics Woods-Cree Thwo -\U167B;Canadian Syllabics Woods-Cree Thwoo -\U167C;Canadian Syllabics Woods-Cree Thwa -\U167D;Canadian Syllabics Woods-Cree Thwaa -\U167E;Canadian Syllabics Woods-Cree Final Th -\U167F;Canadian Syllabics Blackfoot W -\U1680;Ogham Space Mark -\U1681;Ogham Letter Beith -\U1682;Ogham Letter Luis -\U1683;Ogham Letter Fearn -\U1684;Ogham Letter Sail -\U1685;Ogham Letter Nion -\U1686;Ogham Letter Uath -\U1687;Ogham Letter Dair -\U1688;Ogham Letter Tinne -\U1689;Ogham Letter Coll -\U168A;Ogham Letter Ceirt -\U168B;Ogham Letter Muin -\U168C;Ogham Letter Gort -\U168D;Ogham Letter Ngeadal -\U168E;Ogham Letter Straif -\U168F;Ogham Letter Ruis -\U1690;Ogham Letter Ailm -\U1691;Ogham Letter Onn -\U1692;Ogham Letter Ur -\U1693;Ogham Letter Eadhadh -\U1694;Ogham Letter Iodhadh -\U1695;Ogham Letter Eabhadh -\U1696;Ogham Letter Or -\U1697;Ogham Letter Uilleann -\U1698;Ogham Letter Ifin -\U1699;Ogham Letter Eamhancholl -\U169A;Ogham Letter Peith -\U169B;Ogham Feather Mark -\U169C;Ogham Reversed Feather Mark -\U16A0;Runic Letter Fehu Feoh Fe F -\U16A1;Runic Letter V -\U16A2;Runic Letter Uruz Ur U -\U16A3;Runic Letter Yr -\U16A4;Runic Letter Y -\U16A5;Runic Letter W -\U16A6;Runic Letter Thurisaz Thurs Thorn -\U16A7;Runic Letter Eth -\U16A8;Runic Letter Ansuz A -\U16A9;Runic Letter Os O -\U16AA;Runic Letter Ac A -\U16AB;Runic Letter Aesc -\U16AC;Runic Letter Long-Branch-Oss O -\U16AD;Runic Letter Short-Twig-Oss O -\U16AE;Runic Letter O -\U16AF;Runic Letter Oe -\U16B0;Runic Letter On -\U16B1;Runic Letter Raido Rad Reid R -\U16B2;Runic Letter Kauna -\U16B3;Runic Letter Cen -\U16B4;Runic Letter Kaun K -\U16B5;Runic Letter G -\U16B6;Runic Letter Eng -\U16B7;Runic Letter Gebo Gyfu G -\U16B8;Runic Letter Gar -\U16B9;Runic Letter Wunjo Wynn W -\U16BA;Runic Letter Haglaz H -\U16BB;Runic Letter Haegl H -\U16BC;Runic Letter Long-Branch-Hagall H -\U16BD;Runic Letter Short-Twig-Hagall H -\U16BE;Runic Letter Naudiz Nyd Naud N -\U16BF;Runic Letter Short-Twig-Naud N -\U16C0;Runic Letter Dotted-N -\U16C1;Runic Letter Isaz Is Iss I -\U16C2;Runic Letter E -\U16C3;Runic Letter Jeran J -\U16C4;Runic Letter Ger -\U16C5;Runic Letter Long-Branch-Ar Ae -\U16C6;Runic Letter Short-Twig-Ar A -\U16C7;Runic Letter Iwaz Eoh -\U16C8;Runic Letter Pertho Peorth P -\U16C9;Runic Letter Algiz Eolhx -\U16CA;Runic Letter Sowilo S -\U16CB;Runic Letter Sigel Long-Branch-Sol S -\U16CC;Runic Letter Short-Twig-Sol S -\U16CD;Runic Letter C -\U16CE;Runic Letter Z -\U16CF;Runic Letter Tiwaz Tir Tyr T -\U16D0;Runic Letter Short-Twig-Tyr T -\U16D1;Runic Letter D -\U16D2;Runic Letter Berkanan Beorc Bjarkan B -\U16D3;Runic Letter Short-Twig-Bjarkan B -\U16D4;Runic Letter Dotted-P -\U16D5;Runic Letter Open-P -\U16D6;Runic Letter Ehwaz Eh E -\U16D7;Runic Letter Mannaz Man M -\U16D8;Runic Letter Long-Branch-Madr M -\U16D9;Runic Letter Short-Twig-Madr M -\U16DA;Runic Letter Laukaz Lagu Logr L -\U16DB;Runic Letter Dotted-L -\U16DC;Runic Letter Ingwaz -\U16DD;Runic Letter Ing -\U16DE;Runic Letter Dagaz Daeg D -\U16DF;Runic Letter Othalan Ethel O -\U16E0;Runic Letter Ear -\U16E1;Runic Letter Ior -\U16E2;Runic Letter Cweorth -\U16E3;Runic Letter Calc -\U16E4;Runic Letter Cealc -\U16E5;Runic Letter Stan -\U16E6;Runic Letter Long-Branch-Yr -\U16E7;Runic Letter Short-Twig-Yr -\U16E8;Runic Letter Icelandic-Yr -\U16E9;Runic Letter Q -\U16EA;Runic Letter X -\U16EB;Runic Single Punctuation -\U16EC;Runic Multiple Punctuation -\U16ED;Runic Cross Punctuation -\U16EE;Runic Arlaug Symbol -\U16EF;Runic Tvimadur Symbol -\U16F0;Runic Belgthor Symbol -\U16F1;Runic Letter K -\U16F2;Runic Letter Sh -\U16F3;Runic Letter Oo -\U16F4;Runic Letter Franks Casket Os -\U16F5;Runic Letter Franks Casket Is -\U16F6;Runic Letter Franks Casket Eh -\U16F7;Runic Letter Franks Casket Ac -\U16F8;Runic Letter Franks Casket Aesc -\U1700;Tagalog Letter A -\U1701;Tagalog Letter I -\U1702;Tagalog Letter U -\U1703;Tagalog Letter Ka -\U1704;Tagalog Letter Ga -\U1705;Tagalog Letter Nga -\U1706;Tagalog Letter Ta -\U1707;Tagalog Letter Da -\U1708;Tagalog Letter Na -\U1709;Tagalog Letter Pa -\U170A;Tagalog Letter Ba -\U170B;Tagalog Letter Ma -\U170C;Tagalog Letter Ya -\U170D;Tagalog Letter Ra -\U170E;Tagalog Letter La -\U170F;Tagalog Letter Wa -\U1710;Tagalog Letter Sa -\U1711;Tagalog Letter Ha -\U1712;Tagalog Vowel Sign I -\U1713;Tagalog Vowel Sign U -\U1714;Tagalog Sign Virama -\U1715;Tagalog Sign Pamudpod -\U171F;Tagalog Letter Archaic Ra -\U1720;Hanunoo Letter A -\U1721;Hanunoo Letter I -\U1722;Hanunoo Letter U -\U1723;Hanunoo Letter Ka -\U1724;Hanunoo Letter Ga -\U1725;Hanunoo Letter Nga -\U1726;Hanunoo Letter Ta -\U1727;Hanunoo Letter Da -\U1728;Hanunoo Letter Na -\U1729;Hanunoo Letter Pa -\U172A;Hanunoo Letter Ba -\U172B;Hanunoo Letter Ma -\U172C;Hanunoo Letter Ya -\U172D;Hanunoo Letter Ra -\U172E;Hanunoo Letter La -\U172F;Hanunoo Letter Wa -\U1730;Hanunoo Letter Sa -\U1731;Hanunoo Letter Ha -\U1732;Hanunoo Vowel Sign I -\U1733;Hanunoo Vowel Sign U -\U1734;Hanunoo Sign Pamudpod -\U1735;Philippine Single Punctuation -\U1736;Philippine Double Punctuation -\U1740;Buhid Letter A -\U1741;Buhid Letter I -\U1742;Buhid Letter U -\U1743;Buhid Letter Ka -\U1744;Buhid Letter Ga -\U1745;Buhid Letter Nga -\U1746;Buhid Letter Ta -\U1747;Buhid Letter Da -\U1748;Buhid Letter Na -\U1749;Buhid Letter Pa -\U174A;Buhid Letter Ba -\U174B;Buhid Letter Ma -\U174C;Buhid Letter Ya -\U174D;Buhid Letter Ra -\U174E;Buhid Letter La -\U174F;Buhid Letter Wa -\U1750;Buhid Letter Sa -\U1751;Buhid Letter Ha -\U1752;Buhid Vowel Sign I -\U1753;Buhid Vowel Sign U -\U1760;Tagbanwa Letter A -\U1761;Tagbanwa Letter I -\U1762;Tagbanwa Letter U -\U1763;Tagbanwa Letter Ka -\U1764;Tagbanwa Letter Ga -\U1765;Tagbanwa Letter Nga -\U1766;Tagbanwa Letter Ta -\U1767;Tagbanwa Letter Da -\U1768;Tagbanwa Letter Na -\U1769;Tagbanwa Letter Pa -\U176A;Tagbanwa Letter Ba -\U176B;Tagbanwa Letter Ma -\U176C;Tagbanwa Letter Ya -\U176E;Tagbanwa Letter La -\U176F;Tagbanwa Letter Wa -\U1770;Tagbanwa Letter Sa -\U1772;Tagbanwa Vowel Sign I -\U1773;Tagbanwa Vowel Sign U -\U1780;Khmer Letter Ka -\U1781;Khmer Letter Kha -\U1782;Khmer Letter Ko -\U1783;Khmer Letter Kho -\U1784;Khmer Letter Ngo -\U1785;Khmer Letter Ca -\U1786;Khmer Letter Cha -\U1787;Khmer Letter Co -\U1788;Khmer Letter Cho -\U1789;Khmer Letter Nyo -\U178A;Khmer Letter Da -\U178B;Khmer Letter Ttha -\U178C;Khmer Letter Do -\U178D;Khmer Letter Ttho -\U178E;Khmer Letter Nno -\U178F;Khmer Letter Ta -\U1790;Khmer Letter Tha -\U1791;Khmer Letter To -\U1792;Khmer Letter Tho -\U1793;Khmer Letter No -\U1794;Khmer Letter Ba -\U1795;Khmer Letter Pha -\U1796;Khmer Letter Po -\U1797;Khmer Letter Pho -\U1798;Khmer Letter Mo -\U1799;Khmer Letter Yo -\U179A;Khmer Letter Ro -\U179B;Khmer Letter Lo -\U179C;Khmer Letter Vo -\U179D;Khmer Letter Sha -\U179E;Khmer Letter Sso -\U179F;Khmer Letter Sa -\U17A0;Khmer Letter Ha -\U17A1;Khmer Letter La -\U17A2;Khmer Letter Qa -\U17A3;Khmer Independent Vowel Qaq -\U17A4;Khmer Independent Vowel Qaa -\U17A5;Khmer Independent Vowel Qi -\U17A6;Khmer Independent Vowel Qii -\U17A7;Khmer Independent Vowel Qu -\U17A8;Khmer Independent Vowel Quk -\U17A9;Khmer Independent Vowel Quu -\U17AA;Khmer Independent Vowel Quuv -\U17AB;Khmer Independent Vowel Ry -\U17AC;Khmer Independent Vowel Ryy -\U17AD;Khmer Independent Vowel Ly -\U17AE;Khmer Independent Vowel Lyy -\U17AF;Khmer Independent Vowel Qe -\U17B0;Khmer Independent Vowel Qai -\U17B1;Khmer Independent Vowel Qoo Type One -\U17B2;Khmer Independent Vowel Qoo Type Two -\U17B3;Khmer Independent Vowel Qau -\U17B4;Khmer Vowel Inherent Aq -\U17B5;Khmer Vowel Inherent Aa -\U17B6;Khmer Vowel Sign Aa -\U17B7;Khmer Vowel Sign I -\U17B8;Khmer Vowel Sign Ii -\U17B9;Khmer Vowel Sign Y -\U17BA;Khmer Vowel Sign Yy -\U17BB;Khmer Vowel Sign U -\U17BC;Khmer Vowel Sign Uu -\U17BD;Khmer Vowel Sign Ua -\U17BE;Khmer Vowel Sign Oe -\U17BF;Khmer Vowel Sign Ya -\U17C0;Khmer Vowel Sign Ie -\U17C1;Khmer Vowel Sign E -\U17C2;Khmer Vowel Sign Ae -\U17C3;Khmer Vowel Sign Ai -\U17C4;Khmer Vowel Sign Oo -\U17C5;Khmer Vowel Sign Au -\U17C6;Khmer Sign Nikahit -\U17C7;Khmer Sign Reahmuk -\U17C8;Khmer Sign Yuukaleapintu -\U17C9;Khmer Sign Muusikatoan -\U17CA;Khmer Sign Triisap -\U17CB;Khmer Sign Bantoc -\U17CC;Khmer Sign Robat -\U17CD;Khmer Sign Toandakhiat -\U17CE;Khmer Sign Kakabat -\U17CF;Khmer Sign Ahsda -\U17D0;Khmer Sign Samyok Sannya -\U17D1;Khmer Sign Viriam -\U17D2;Khmer Sign Coeng -\U17D3;Khmer Sign Bathamasat -\U17D4;Khmer Sign Khan -\U17D5;Khmer Sign Bariyoosan -\U17D6;Khmer Sign Camnuc Pii Kuuh -\U17D7;Khmer Sign Lek Too -\U17D8;Khmer Sign Beyyal -\U17D9;Khmer Sign Phnaek Muan -\U17DA;Khmer Sign Koomuut -\U17DB;Khmer Currency Symbol Riel -\U17DC;Khmer Sign Avakrahasanya -\U17DD;Khmer Sign Atthacan -\U17E0;Khmer Digit Zero -\U17E1;Khmer Digit One -\U17E2;Khmer Digit Two -\U17E3;Khmer Digit Three -\U17E4;Khmer Digit Four -\U17E5;Khmer Digit Five -\U17E6;Khmer Digit Six -\U17E7;Khmer Digit Seven -\U17E8;Khmer Digit Eight -\U17E9;Khmer Digit Nine -\U17F0;Khmer Symbol Lek Attak Son -\U17F1;Khmer Symbol Lek Attak Muoy -\U17F2;Khmer Symbol Lek Attak Pii -\U17F3;Khmer Symbol Lek Attak Bei -\U17F4;Khmer Symbol Lek Attak Buon -\U17F5;Khmer Symbol Lek Attak Pram -\U17F6;Khmer Symbol Lek Attak Pram-Muoy -\U17F7;Khmer Symbol Lek Attak Pram-Pii -\U17F8;Khmer Symbol Lek Attak Pram-Bei -\U17F9;Khmer Symbol Lek Attak Pram-Buon -\U1800;Mongolian Birga -\U1801;Mongolian Ellipsis -\U1802;Mongolian Comma -\U1803;Mongolian Full Stop -\U1804;Mongolian Colon -\U1805;Mongolian Four Dots -\U1806;Mongolian Todo Soft Hyphen -\U1807;Mongolian Sibe Syllable Boundary Marker -\U1808;Mongolian Manchu Comma -\U1809;Mongolian Manchu Full Stop -\U180A;Mongolian Nirugu -\U180E;Mongolian Vowel Separator -\U1810;Mongolian Digit Zero -\U1811;Mongolian Digit One -\U1812;Mongolian Digit Two -\U1813;Mongolian Digit Three -\U1814;Mongolian Digit Four -\U1815;Mongolian Digit Five -\U1816;Mongolian Digit Six -\U1817;Mongolian Digit Seven -\U1818;Mongolian Digit Eight -\U1819;Mongolian Digit Nine -\U1820;Mongolian Letter A -\U1821;Mongolian Letter E -\U1822;Mongolian Letter I -\U1823;Mongolian Letter O -\U1824;Mongolian Letter U -\U1825;Mongolian Letter Oe -\U1826;Mongolian Letter Ue -\U1827;Mongolian Letter Ee -\U1828;Mongolian Letter Na -\U1829;Mongolian Letter Ang -\U182A;Mongolian Letter Ba -\U182B;Mongolian Letter Pa -\U182C;Mongolian Letter Qa -\U182D;Mongolian Letter Ga -\U182E;Mongolian Letter Ma -\U182F;Mongolian Letter La -\U1830;Mongolian Letter Sa -\U1831;Mongolian Letter Sha -\U1832;Mongolian Letter Ta -\U1833;Mongolian Letter Da -\U1834;Mongolian Letter Cha -\U1835;Mongolian Letter Ja -\U1836;Mongolian Letter Ya -\U1837;Mongolian Letter Ra -\U1838;Mongolian Letter Wa -\U1839;Mongolian Letter Fa -\U183A;Mongolian Letter Ka -\U183B;Mongolian Letter Kha -\U183C;Mongolian Letter Tsa -\U183D;Mongolian Letter Za -\U183E;Mongolian Letter Haa -\U183F;Mongolian Letter Zra -\U1840;Mongolian Letter Lha -\U1841;Mongolian Letter Zhi -\U1842;Mongolian Letter Chi -\U1843;Mongolian Letter Todo Long Vowel Sign -\U1844;Mongolian Letter Todo E -\U1845;Mongolian Letter Todo I -\U1846;Mongolian Letter Todo O -\U1847;Mongolian Letter Todo U -\U1848;Mongolian Letter Todo Oe -\U1849;Mongolian Letter Todo Ue -\U184A;Mongolian Letter Todo Ang -\U184B;Mongolian Letter Todo Ba -\U184C;Mongolian Letter Todo Pa -\U184D;Mongolian Letter Todo Qa -\U184E;Mongolian Letter Todo Ga -\U184F;Mongolian Letter Todo Ma -\U1850;Mongolian Letter Todo Ta -\U1851;Mongolian Letter Todo Da -\U1852;Mongolian Letter Todo Cha -\U1853;Mongolian Letter Todo Ja -\U1854;Mongolian Letter Todo Tsa -\U1855;Mongolian Letter Todo Ya -\U1856;Mongolian Letter Todo Wa -\U1857;Mongolian Letter Todo Ka -\U1858;Mongolian Letter Todo Gaa -\U1859;Mongolian Letter Todo Haa -\U185A;Mongolian Letter Todo Jia -\U185B;Mongolian Letter Todo Nia -\U185C;Mongolian Letter Todo Dza -\U185D;Mongolian Letter Sibe E -\U185E;Mongolian Letter Sibe I -\U185F;Mongolian Letter Sibe Iy -\U1860;Mongolian Letter Sibe Ue -\U1861;Mongolian Letter Sibe U -\U1862;Mongolian Letter Sibe Ang -\U1863;Mongolian Letter Sibe Ka -\U1864;Mongolian Letter Sibe Ga -\U1865;Mongolian Letter Sibe Ha -\U1866;Mongolian Letter Sibe Pa -\U1867;Mongolian Letter Sibe Sha -\U1868;Mongolian Letter Sibe Ta -\U1869;Mongolian Letter Sibe Da -\U186A;Mongolian Letter Sibe Ja -\U186B;Mongolian Letter Sibe Fa -\U186C;Mongolian Letter Sibe Gaa -\U186D;Mongolian Letter Sibe Haa -\U186E;Mongolian Letter Sibe Tsa -\U186F;Mongolian Letter Sibe Za -\U1870;Mongolian Letter Sibe Raa -\U1871;Mongolian Letter Sibe Cha -\U1872;Mongolian Letter Sibe Zha -\U1873;Mongolian Letter Manchu I -\U1874;Mongolian Letter Manchu Ka -\U1875;Mongolian Letter Manchu Ra -\U1876;Mongolian Letter Manchu Fa -\U1877;Mongolian Letter Manchu Zha -\U1878;Mongolian Letter Cha With Two Dots -\U1880;Mongolian Letter Ali Gali Anusvara One -\U1881;Mongolian Letter Ali Gali Visarga One -\U1882;Mongolian Letter Ali Gali Damaru -\U1883;Mongolian Letter Ali Gali Ubadama -\U1884;Mongolian Letter Ali Gali Inverted Ubadama -\U1885;Mongolian Letter Ali Gali Baluda -\U1886;Mongolian Letter Ali Gali Three Baluda -\U1887;Mongolian Letter Ali Gali A -\U1888;Mongolian Letter Ali Gali I -\U1889;Mongolian Letter Ali Gali Ka -\U188A;Mongolian Letter Ali Gali Nga -\U188B;Mongolian Letter Ali Gali Ca -\U188C;Mongolian Letter Ali Gali Tta -\U188D;Mongolian Letter Ali Gali Ttha -\U188E;Mongolian Letter Ali Gali Dda -\U188F;Mongolian Letter Ali Gali Nna -\U1890;Mongolian Letter Ali Gali Ta -\U1891;Mongolian Letter Ali Gali Da -\U1892;Mongolian Letter Ali Gali Pa -\U1893;Mongolian Letter Ali Gali Pha -\U1894;Mongolian Letter Ali Gali Ssa -\U1895;Mongolian Letter Ali Gali Zha -\U1896;Mongolian Letter Ali Gali Za -\U1897;Mongolian Letter Ali Gali Ah -\U1898;Mongolian Letter Todo Ali Gali Ta -\U1899;Mongolian Letter Todo Ali Gali Zha -\U189A;Mongolian Letter Manchu Ali Gali Gha -\U189B;Mongolian Letter Manchu Ali Gali Nga -\U189C;Mongolian Letter Manchu Ali Gali Ca -\U189D;Mongolian Letter Manchu Ali Gali Jha -\U189E;Mongolian Letter Manchu Ali Gali Tta -\U189F;Mongolian Letter Manchu Ali Gali Ddha -\U18A0;Mongolian Letter Manchu Ali Gali Ta -\U18A1;Mongolian Letter Manchu Ali Gali Dha -\U18A2;Mongolian Letter Manchu Ali Gali Ssa -\U18A3;Mongolian Letter Manchu Ali Gali Cya -\U18A4;Mongolian Letter Manchu Ali Gali Zha -\U18A5;Mongolian Letter Manchu Ali Gali Za -\U18A6;Mongolian Letter Ali Gali Half U -\U18A7;Mongolian Letter Ali Gali Half Ya -\U18A8;Mongolian Letter Manchu Ali Gali Bha -\U18A9;Mongolian Letter Ali Gali Dagalga -\U18AA;Mongolian Letter Manchu Ali Gali Lha -\U18B0;Canadian Syllabics Oy -\U18B1;Canadian Syllabics Ay -\U18B2;Canadian Syllabics Aay -\U18B3;Canadian Syllabics Way -\U18B4;Canadian Syllabics Poy -\U18B5;Canadian Syllabics Pay -\U18B6;Canadian Syllabics Pwoy -\U18B7;Canadian Syllabics Tay -\U18B8;Canadian Syllabics Kay -\U18B9;Canadian Syllabics Kway -\U18BA;Canadian Syllabics May -\U18BB;Canadian Syllabics Noy -\U18BC;Canadian Syllabics Nay -\U18BD;Canadian Syllabics Lay -\U18BE;Canadian Syllabics Soy -\U18BF;Canadian Syllabics Say -\U18C0;Canadian Syllabics Shoy -\U18C1;Canadian Syllabics Shay -\U18C2;Canadian Syllabics Shwoy -\U18C3;Canadian Syllabics Yoy -\U18C4;Canadian Syllabics Yay -\U18C5;Canadian Syllabics Ray -\U18C6;Canadian Syllabics Nwi -\U18C7;Canadian Syllabics Ojibway Nwi -\U18C8;Canadian Syllabics Nwii -\U18C9;Canadian Syllabics Ojibway Nwii -\U18CA;Canadian Syllabics Nwo -\U18CB;Canadian Syllabics Ojibway Nwo -\U18CC;Canadian Syllabics Nwoo -\U18CD;Canadian Syllabics Ojibway Nwoo -\U18CE;Canadian Syllabics Rwee -\U18CF;Canadian Syllabics Rwi -\U18D0;Canadian Syllabics Rwii -\U18D1;Canadian Syllabics Rwo -\U18D2;Canadian Syllabics Rwoo -\U18D3;Canadian Syllabics Rwa -\U18D4;Canadian Syllabics Ojibway P -\U18D5;Canadian Syllabics Ojibway T -\U18D6;Canadian Syllabics Ojibway K -\U18D7;Canadian Syllabics Ojibway C -\U18D8;Canadian Syllabics Ojibway M -\U18D9;Canadian Syllabics Ojibway N -\U18DA;Canadian Syllabics Ojibway S -\U18DB;Canadian Syllabics Ojibway Sh -\U18DC;Canadian Syllabics Eastern W -\U18DD;Canadian Syllabics Western W -\U18DE;Canadian Syllabics Final Small Ring -\U18DF;Canadian Syllabics Final Raised Dot -\U18E0;Canadian Syllabics R-Cree Rwe -\U18E1;Canadian Syllabics West-Cree Loo -\U18E2;Canadian Syllabics West-Cree Laa -\U18E3;Canadian Syllabics Thwe -\U18E4;Canadian Syllabics Thwa -\U18E5;Canadian Syllabics Tthwe -\U18E6;Canadian Syllabics Tthoo -\U18E7;Canadian Syllabics Tthaa -\U18E8;Canadian Syllabics Tlhwe -\U18E9;Canadian Syllabics Tlhoo -\U18EA;Canadian Syllabics Sayisi Shwe -\U18EB;Canadian Syllabics Sayisi Shoo -\U18EC;Canadian Syllabics Sayisi Hoo -\U18ED;Canadian Syllabics Carrier Gwu -\U18EE;Canadian Syllabics Carrier Dene Gee -\U18EF;Canadian Syllabics Carrier Gaa -\U18F0;Canadian Syllabics Carrier Gwa -\U18F1;Canadian Syllabics Sayisi Juu -\U18F2;Canadian Syllabics Carrier Jwa -\U18F3;Canadian Syllabics Beaver Dene L -\U18F4;Canadian Syllabics Beaver Dene R -\U18F5;Canadian Syllabics Carrier Dental S -\U1900;Limbu Vowel-Carrier Letter -\U1901;Limbu Letter Ka -\U1902;Limbu Letter Kha -\U1903;Limbu Letter Ga -\U1904;Limbu Letter Gha -\U1905;Limbu Letter Nga -\U1906;Limbu Letter Ca -\U1907;Limbu Letter Cha -\U1908;Limbu Letter Ja -\U1909;Limbu Letter Jha -\U190A;Limbu Letter Yan -\U190B;Limbu Letter Ta -\U190C;Limbu Letter Tha -\U190D;Limbu Letter Da -\U190E;Limbu Letter Dha -\U190F;Limbu Letter Na -\U1910;Limbu Letter Pa -\U1911;Limbu Letter Pha -\U1912;Limbu Letter Ba -\U1913;Limbu Letter Bha -\U1914;Limbu Letter Ma -\U1915;Limbu Letter Ya -\U1916;Limbu Letter Ra -\U1917;Limbu Letter La -\U1918;Limbu Letter Wa -\U1919;Limbu Letter Sha -\U191A;Limbu Letter Ssa -\U191B;Limbu Letter Sa -\U191C;Limbu Letter Ha -\U191D;Limbu Letter Gyan -\U191E;Limbu Letter Tra -\U1920;Limbu Vowel Sign A -\U1921;Limbu Vowel Sign I -\U1922;Limbu Vowel Sign U -\U1923;Limbu Vowel Sign Ee -\U1924;Limbu Vowel Sign Ai -\U1925;Limbu Vowel Sign Oo -\U1926;Limbu Vowel Sign Au -\U1927;Limbu Vowel Sign E -\U1928;Limbu Vowel Sign O -\U1929;Limbu Subjoined Letter Ya -\U192A;Limbu Subjoined Letter Ra -\U192B;Limbu Subjoined Letter Wa -\U1930;Limbu Small Letter Ka -\U1931;Limbu Small Letter Nga -\U1932;Limbu Small Letter Anusvara -\U1933;Limbu Small Letter Ta -\U1934;Limbu Small Letter Na -\U1935;Limbu Small Letter Pa -\U1936;Limbu Small Letter Ma -\U1937;Limbu Small Letter Ra -\U1938;Limbu Small Letter La -\U1939;Limbu Sign Mukphreng -\U193A;Limbu Sign Kemphreng -\U193B;Limbu Sign Sa-I -\U1940;Limbu Sign Loo -\U1944;Limbu Exclamation Mark -\U1945;Limbu Question Mark -\U1946;Limbu Digit Zero -\U1947;Limbu Digit One -\U1948;Limbu Digit Two -\U1949;Limbu Digit Three -\U194A;Limbu Digit Four -\U194B;Limbu Digit Five -\U194C;Limbu Digit Six -\U194D;Limbu Digit Seven -\U194E;Limbu Digit Eight -\U194F;Limbu Digit Nine -\U1950;Tai Le Letter Ka -\U1951;Tai Le Letter Xa -\U1952;Tai Le Letter Nga -\U1953;Tai Le Letter Tsa -\U1954;Tai Le Letter Sa -\U1955;Tai Le Letter Ya -\U1956;Tai Le Letter Ta -\U1957;Tai Le Letter Tha -\U1958;Tai Le Letter La -\U1959;Tai Le Letter Pa -\U195A;Tai Le Letter Pha -\U195B;Tai Le Letter Ma -\U195C;Tai Le Letter Fa -\U195D;Tai Le Letter Va -\U195E;Tai Le Letter Ha -\U195F;Tai Le Letter Qa -\U1960;Tai Le Letter Kha -\U1961;Tai Le Letter Tsha -\U1962;Tai Le Letter Na -\U1963;Tai Le Letter A -\U1964;Tai Le Letter I -\U1965;Tai Le Letter Ee -\U1966;Tai Le Letter Eh -\U1967;Tai Le Letter U -\U1968;Tai Le Letter Oo -\U1969;Tai Le Letter O -\U196A;Tai Le Letter Ue -\U196B;Tai Le Letter E -\U196C;Tai Le Letter Aue -\U196D;Tai Le Letter Ai -\U1970;Tai Le Letter Tone-2 -\U1971;Tai Le Letter Tone-3 -\U1972;Tai Le Letter Tone-4 -\U1973;Tai Le Letter Tone-5 -\U1974;Tai Le Letter Tone-6 -\U1980;New Tai Lue Letter High Qa -\U1981;New Tai Lue Letter Low Qa -\U1982;New Tai Lue Letter High Ka -\U1983;New Tai Lue Letter High Xa -\U1984;New Tai Lue Letter High Nga -\U1985;New Tai Lue Letter Low Ka -\U1986;New Tai Lue Letter Low Xa -\U1987;New Tai Lue Letter Low Nga -\U1988;New Tai Lue Letter High Tsa -\U1989;New Tai Lue Letter High Sa -\U198A;New Tai Lue Letter High Ya -\U198B;New Tai Lue Letter Low Tsa -\U198C;New Tai Lue Letter Low Sa -\U198D;New Tai Lue Letter Low Ya -\U198E;New Tai Lue Letter High Ta -\U198F;New Tai Lue Letter High Tha -\U1990;New Tai Lue Letter High Na -\U1991;New Tai Lue Letter Low Ta -\U1992;New Tai Lue Letter Low Tha -\U1993;New Tai Lue Letter Low Na -\U1994;New Tai Lue Letter High Pa -\U1995;New Tai Lue Letter High Pha -\U1996;New Tai Lue Letter High Ma -\U1997;New Tai Lue Letter Low Pa -\U1998;New Tai Lue Letter Low Pha -\U1999;New Tai Lue Letter Low Ma -\U199A;New Tai Lue Letter High Fa -\U199B;New Tai Lue Letter High Va -\U199C;New Tai Lue Letter High La -\U199D;New Tai Lue Letter Low Fa -\U199E;New Tai Lue Letter Low Va -\U199F;New Tai Lue Letter Low La -\U19A0;New Tai Lue Letter High Ha -\U19A1;New Tai Lue Letter High Da -\U19A2;New Tai Lue Letter High Ba -\U19A3;New Tai Lue Letter Low Ha -\U19A4;New Tai Lue Letter Low Da -\U19A5;New Tai Lue Letter Low Ba -\U19A6;New Tai Lue Letter High Kva -\U19A7;New Tai Lue Letter High Xva -\U19A8;New Tai Lue Letter Low Kva -\U19A9;New Tai Lue Letter Low Xva -\U19AA;New Tai Lue Letter High Sua -\U19AB;New Tai Lue Letter Low Sua -\U19B0;New Tai Lue Vowel Sign Vowel Shortener -\U19B1;New Tai Lue Vowel Sign Aa -\U19B2;New Tai Lue Vowel Sign Ii -\U19B3;New Tai Lue Vowel Sign U -\U19B4;New Tai Lue Vowel Sign Uu -\U19B5;New Tai Lue Vowel Sign E -\U19B6;New Tai Lue Vowel Sign Ae -\U19B7;New Tai Lue Vowel Sign O -\U19B8;New Tai Lue Vowel Sign Oa -\U19B9;New Tai Lue Vowel Sign Ue -\U19BA;New Tai Lue Vowel Sign Ay -\U19BB;New Tai Lue Vowel Sign Aay -\U19BC;New Tai Lue Vowel Sign Uy -\U19BD;New Tai Lue Vowel Sign Oy -\U19BE;New Tai Lue Vowel Sign Oay -\U19BF;New Tai Lue Vowel Sign Uey -\U19C0;New Tai Lue Vowel Sign Iy -\U19C1;New Tai Lue Letter Final V -\U19C2;New Tai Lue Letter Final Ng -\U19C3;New Tai Lue Letter Final N -\U19C4;New Tai Lue Letter Final M -\U19C5;New Tai Lue Letter Final K -\U19C6;New Tai Lue Letter Final D -\U19C7;New Tai Lue Letter Final B -\U19C8;New Tai Lue Tone Mark-1 -\U19C9;New Tai Lue Tone Mark-2 -\U19D0;New Tai Lue Digit Zero -\U19D1;New Tai Lue Digit One -\U19D2;New Tai Lue Digit Two -\U19D3;New Tai Lue Digit Three -\U19D4;New Tai Lue Digit Four -\U19D5;New Tai Lue Digit Five -\U19D6;New Tai Lue Digit Six -\U19D7;New Tai Lue Digit Seven -\U19D8;New Tai Lue Digit Eight -\U19D9;New Tai Lue Digit Nine -\U19DA;New Tai Lue Tham Digit One -\U19DE;New Tai Lue Sign Lae -\U19DF;New Tai Lue Sign Laev -\U19E0;Khmer Symbol Pathamasat -\U19E1;Khmer Symbol Muoy Koet -\U19E2;Khmer Symbol Pii Koet -\U19E3;Khmer Symbol Bei Koet -\U19E4;Khmer Symbol Buon Koet -\U19E5;Khmer Symbol Pram Koet -\U19E6;Khmer Symbol Pram-Muoy Koet -\U19E7;Khmer Symbol Pram-Pii Koet -\U19E8;Khmer Symbol Pram-Bei Koet -\U19E9;Khmer Symbol Pram-Buon Koet -\U19EA;Khmer Symbol Dap Koet -\U19EB;Khmer Symbol Dap-Muoy Koet -\U19EC;Khmer Symbol Dap-Pii Koet -\U19ED;Khmer Symbol Dap-Bei Koet -\U19EE;Khmer Symbol Dap-Buon Koet -\U19EF;Khmer Symbol Dap-Pram Koet -\U19F0;Khmer Symbol Tuteyasat -\U19F1;Khmer Symbol Muoy Roc -\U19F2;Khmer Symbol Pii Roc -\U19F3;Khmer Symbol Bei Roc -\U19F4;Khmer Symbol Buon Roc -\U19F5;Khmer Symbol Pram Roc -\U19F6;Khmer Symbol Pram-Muoy Roc -\U19F7;Khmer Symbol Pram-Pii Roc -\U19F8;Khmer Symbol Pram-Bei Roc -\U19F9;Khmer Symbol Pram-Buon Roc -\U19FA;Khmer Symbol Dap Roc -\U19FB;Khmer Symbol Dap-Muoy Roc -\U19FC;Khmer Symbol Dap-Pii Roc -\U19FD;Khmer Symbol Dap-Bei Roc -\U19FE;Khmer Symbol Dap-Buon Roc -\U19FF;Khmer Symbol Dap-Pram Roc -\U1A00;Buginese Letter Ka -\U1A01;Buginese Letter Ga -\U1A02;Buginese Letter Nga -\U1A03;Buginese Letter Ngka -\U1A04;Buginese Letter Pa -\U1A05;Buginese Letter Ba -\U1A06;Buginese Letter Ma -\U1A07;Buginese Letter Mpa -\U1A08;Buginese Letter Ta -\U1A09;Buginese Letter Da -\U1A0A;Buginese Letter Na -\U1A0B;Buginese Letter Nra -\U1A0C;Buginese Letter Ca -\U1A0D;Buginese Letter Ja -\U1A0E;Buginese Letter Nya -\U1A0F;Buginese Letter Nyca -\U1A10;Buginese Letter Ya -\U1A11;Buginese Letter Ra -\U1A12;Buginese Letter La -\U1A13;Buginese Letter Va -\U1A14;Buginese Letter Sa -\U1A15;Buginese Letter A -\U1A16;Buginese Letter Ha -\U1A17;Buginese Vowel Sign I -\U1A18;Buginese Vowel Sign U -\U1A19;Buginese Vowel Sign E -\U1A1A;Buginese Vowel Sign O -\U1A1B;Buginese Vowel Sign Ae -\U1A1E;Buginese Pallawa -\U1A1F;Buginese End Of Section -\U1A20;Tai Tham Letter High Ka -\U1A21;Tai Tham Letter High Kha -\U1A22;Tai Tham Letter High Kxa -\U1A23;Tai Tham Letter Low Ka -\U1A24;Tai Tham Letter Low Kxa -\U1A25;Tai Tham Letter Low Kha -\U1A26;Tai Tham Letter Nga -\U1A27;Tai Tham Letter High Ca -\U1A28;Tai Tham Letter High Cha -\U1A29;Tai Tham Letter Low Ca -\U1A2A;Tai Tham Letter Low Sa -\U1A2B;Tai Tham Letter Low Cha -\U1A2C;Tai Tham Letter Nya -\U1A2D;Tai Tham Letter Rata -\U1A2E;Tai Tham Letter High Ratha -\U1A2F;Tai Tham Letter Da -\U1A30;Tai Tham Letter Low Ratha -\U1A31;Tai Tham Letter Rana -\U1A32;Tai Tham Letter High Ta -\U1A33;Tai Tham Letter High Tha -\U1A34;Tai Tham Letter Low Ta -\U1A35;Tai Tham Letter Low Tha -\U1A36;Tai Tham Letter Na -\U1A37;Tai Tham Letter Ba -\U1A38;Tai Tham Letter High Pa -\U1A39;Tai Tham Letter High Pha -\U1A3A;Tai Tham Letter High Fa -\U1A3B;Tai Tham Letter Low Pa -\U1A3C;Tai Tham Letter Low Fa -\U1A3D;Tai Tham Letter Low Pha -\U1A3E;Tai Tham Letter Ma -\U1A3F;Tai Tham Letter Low Ya -\U1A40;Tai Tham Letter High Ya -\U1A41;Tai Tham Letter Ra -\U1A42;Tai Tham Letter Rue -\U1A43;Tai Tham Letter La -\U1A44;Tai Tham Letter Lue -\U1A45;Tai Tham Letter Wa -\U1A46;Tai Tham Letter High Sha -\U1A47;Tai Tham Letter High Ssa -\U1A48;Tai Tham Letter High Sa -\U1A49;Tai Tham Letter High Ha -\U1A4A;Tai Tham Letter Lla -\U1A4B;Tai Tham Letter A -\U1A4C;Tai Tham Letter Low Ha -\U1A4D;Tai Tham Letter I -\U1A4E;Tai Tham Letter Ii -\U1A4F;Tai Tham Letter U -\U1A50;Tai Tham Letter Uu -\U1A51;Tai Tham Letter Ee -\U1A52;Tai Tham Letter Oo -\U1A53;Tai Tham Letter Lae -\U1A54;Tai Tham Letter Great Sa -\U1A55;Tai Tham Consonant Sign Medial Ra -\U1A56;Tai Tham Consonant Sign Medial La -\U1A57;Tai Tham Consonant Sign La Tang Lai -\U1A58;Tai Tham Sign Mai Kang Lai -\U1A59;Tai Tham Consonant Sign Final Nga -\U1A5A;Tai Tham Consonant Sign Low Pa -\U1A5B;Tai Tham Consonant Sign High Ratha Or Low Pa -\U1A5C;Tai Tham Consonant Sign Ma -\U1A5D;Tai Tham Consonant Sign Ba -\U1A5E;Tai Tham Consonant Sign Sa -\U1A60;Tai Tham Sign Sakot -\U1A61;Tai Tham Vowel Sign A -\U1A62;Tai Tham Vowel Sign Mai Sat -\U1A63;Tai Tham Vowel Sign Aa -\U1A64;Tai Tham Vowel Sign Tall Aa -\U1A65;Tai Tham Vowel Sign I -\U1A66;Tai Tham Vowel Sign Ii -\U1A67;Tai Tham Vowel Sign Ue -\U1A68;Tai Tham Vowel Sign Uue -\U1A69;Tai Tham Vowel Sign U -\U1A6A;Tai Tham Vowel Sign Uu -\U1A6B;Tai Tham Vowel Sign O -\U1A6C;Tai Tham Vowel Sign Oa Below -\U1A6D;Tai Tham Vowel Sign Oy -\U1A6E;Tai Tham Vowel Sign E -\U1A6F;Tai Tham Vowel Sign Ae -\U1A70;Tai Tham Vowel Sign Oo -\U1A71;Tai Tham Vowel Sign Ai -\U1A72;Tai Tham Vowel Sign Tham Ai -\U1A73;Tai Tham Vowel Sign Oa Above -\U1A74;Tai Tham Sign Mai Kang -\U1A75;Tai Tham Sign Tone-1 -\U1A76;Tai Tham Sign Tone-2 -\U1A77;Tai Tham Sign Khuen Tone-3 -\U1A78;Tai Tham Sign Khuen Tone-4 -\U1A79;Tai Tham Sign Khuen Tone-5 -\U1A7A;Tai Tham Sign Ra Haam -\U1A7B;Tai Tham Sign Mai Sam -\U1A7C;Tai Tham Sign Khuen-Lue Karan -\U1A7F;Tai Tham Combining Cryptogrammic Dot -\U1A80;Tai Tham Hora Digit Zero -\U1A81;Tai Tham Hora Digit One -\U1A82;Tai Tham Hora Digit Two -\U1A83;Tai Tham Hora Digit Three -\U1A84;Tai Tham Hora Digit Four -\U1A85;Tai Tham Hora Digit Five -\U1A86;Tai Tham Hora Digit Six -\U1A87;Tai Tham Hora Digit Seven -\U1A88;Tai Tham Hora Digit Eight -\U1A89;Tai Tham Hora Digit Nine -\U1A90;Tai Tham Tham Digit Zero -\U1A91;Tai Tham Tham Digit One -\U1A92;Tai Tham Tham Digit Two -\U1A93;Tai Tham Tham Digit Three -\U1A94;Tai Tham Tham Digit Four -\U1A95;Tai Tham Tham Digit Five -\U1A96;Tai Tham Tham Digit Six -\U1A97;Tai Tham Tham Digit Seven -\U1A98;Tai Tham Tham Digit Eight -\U1A99;Tai Tham Tham Digit Nine -\U1AA0;Tai Tham Sign Wiang -\U1AA1;Tai Tham Sign Wiangwaak -\U1AA2;Tai Tham Sign Sawan -\U1AA3;Tai Tham Sign Keow -\U1AA4;Tai Tham Sign Hoy -\U1AA5;Tai Tham Sign Dokmai -\U1AA6;Tai Tham Sign Reversed Rotated Rana -\U1AA7;Tai Tham Sign Mai Yamok -\U1AA8;Tai Tham Sign Kaan -\U1AA9;Tai Tham Sign Kaankuu -\U1AAA;Tai Tham Sign Satkaan -\U1AAB;Tai Tham Sign Satkaankuu -\U1AAC;Tai Tham Sign Hang -\U1AAD;Tai Tham Sign Caang -\U1AB0;Combining Doubled Circumflex Accent -\U1AB1;Combining Diaeresis-Ring -\U1AB2;Combining Infinity -\U1AB3;Combining Downwards Arrow -\U1AB4;Combining Triple Dot -\U1AB5;Combining X-X Below -\U1AB6;Combining Wiggly Line Below -\U1AB7;Combining Open Mark Below -\U1AB8;Combining Double Open Mark Below -\U1AB9;Combining Light Centralization Stroke Below -\U1ABA;Combining Strong Centralization Stroke Below -\U1ABB;Combining Parentheses Above -\U1ABC;Combining Double Parentheses Above -\U1ABD;Combining Parentheses Below -\U1ABE;Combining Parentheses Overlay -\U1ABF;Combining Latin Small Letter W Below -\U1AC0;Combining Latin Small Letter Turned W Below -\U1AC1;Combining Left Parenthesis Above Left -\U1AC2;Combining Right Parenthesis Above Right -\U1AC3;Combining Left Parenthesis Below Left -\U1AC4;Combining Right Parenthesis Below Right -\U1AC5;Combining Square Brackets Above -\U1AC6;Combining Number Sign Above -\U1AC7;Combining Inverted Double Arch Above -\U1AC8;Combining Plus Sign Above -\U1AC9;Combining Double Plus Sign Above -\U1ACA;Combining Double Plus Sign Below -\U1ACB;Combining Triple Acute Accent -\U1ACC;Combining Latin Small Letter Insular G -\U1ACD;Combining Latin Small Letter Insular R -\U1ACE;Combining Latin Small Letter Insular T -\U1B00;Balinese Sign Ulu Ricem -\U1B01;Balinese Sign Ulu Candra -\U1B02;Balinese Sign Cecek -\U1B03;Balinese Sign Surang -\U1B04;Balinese Sign Bisah -\U1B05;Balinese Letter Akara -\U1B06;Balinese Letter Akara Tedung -\U1B07;Balinese Letter Ikara -\U1B08;Balinese Letter Ikara Tedung -\U1B09;Balinese Letter Ukara -\U1B0A;Balinese Letter Ukara Tedung -\U1B0B;Balinese Letter Ra Repa -\U1B0C;Balinese Letter Ra Repa Tedung -\U1B0D;Balinese Letter La Lenga -\U1B0E;Balinese Letter La Lenga Tedung -\U1B0F;Balinese Letter Ekara -\U1B10;Balinese Letter Aikara -\U1B11;Balinese Letter Okara -\U1B12;Balinese Letter Okara Tedung -\U1B13;Balinese Letter Ka -\U1B14;Balinese Letter Ka Mahaprana -\U1B15;Balinese Letter Ga -\U1B16;Balinese Letter Ga Gora -\U1B17;Balinese Letter Nga -\U1B18;Balinese Letter Ca -\U1B19;Balinese Letter Ca Laca -\U1B1A;Balinese Letter Ja -\U1B1B;Balinese Letter Ja Jera -\U1B1C;Balinese Letter Nya -\U1B1D;Balinese Letter Ta Latik -\U1B1E;Balinese Letter Ta Murda Mahaprana -\U1B1F;Balinese Letter Da Murda Alpaprana -\U1B20;Balinese Letter Da Murda Mahaprana -\U1B21;Balinese Letter Na Rambat -\U1B22;Balinese Letter Ta -\U1B23;Balinese Letter Ta Tawa -\U1B24;Balinese Letter Da -\U1B25;Balinese Letter Da Madu -\U1B26;Balinese Letter Na -\U1B27;Balinese Letter Pa -\U1B28;Balinese Letter Pa Kapal -\U1B29;Balinese Letter Ba -\U1B2A;Balinese Letter Ba Kembang -\U1B2B;Balinese Letter Ma -\U1B2C;Balinese Letter Ya -\U1B2D;Balinese Letter Ra -\U1B2E;Balinese Letter La -\U1B2F;Balinese Letter Wa -\U1B30;Balinese Letter Sa Saga -\U1B31;Balinese Letter Sa Sapa -\U1B32;Balinese Letter Sa -\U1B33;Balinese Letter Ha -\U1B34;Balinese Sign Rerekan -\U1B35;Balinese Vowel Sign Tedung -\U1B36;Balinese Vowel Sign Ulu -\U1B37;Balinese Vowel Sign Ulu Sari -\U1B38;Balinese Vowel Sign Suku -\U1B39;Balinese Vowel Sign Suku Ilut -\U1B3A;Balinese Vowel Sign Ra Repa -\U1B3B;Balinese Vowel Sign Ra Repa Tedung -\U1B3C;Balinese Vowel Sign La Lenga -\U1B3D;Balinese Vowel Sign La Lenga Tedung -\U1B3E;Balinese Vowel Sign Taling -\U1B3F;Balinese Vowel Sign Taling Repa -\U1B40;Balinese Vowel Sign Taling Tedung -\U1B41;Balinese Vowel Sign Taling Repa Tedung -\U1B42;Balinese Vowel Sign Pepet -\U1B43;Balinese Vowel Sign Pepet Tedung -\U1B44;Balinese Adeg Adeg -\U1B45;Balinese Letter Kaf Sasak -\U1B46;Balinese Letter Khot Sasak -\U1B47;Balinese Letter Tzir Sasak -\U1B48;Balinese Letter Ef Sasak -\U1B49;Balinese Letter Ve Sasak -\U1B4A;Balinese Letter Zal Sasak -\U1B4B;Balinese Letter Asyura Sasak -\U1B4C;Balinese Letter Archaic Jnya -\U1B50;Balinese Digit Zero -\U1B51;Balinese Digit One -\U1B52;Balinese Digit Two -\U1B53;Balinese Digit Three -\U1B54;Balinese Digit Four -\U1B55;Balinese Digit Five -\U1B56;Balinese Digit Six -\U1B57;Balinese Digit Seven -\U1B58;Balinese Digit Eight -\U1B59;Balinese Digit Nine -\U1B5A;Balinese Panti -\U1B5B;Balinese Pamada -\U1B5C;Balinese Windu -\U1B5D;Balinese Carik Pamungkah -\U1B5E;Balinese Carik Siki -\U1B5F;Balinese Carik Pareren -\U1B60;Balinese Pameneng -\U1B61;Balinese Musical Symbol Dong -\U1B62;Balinese Musical Symbol Deng -\U1B63;Balinese Musical Symbol Dung -\U1B64;Balinese Musical Symbol Dang -\U1B65;Balinese Musical Symbol Dang Surang -\U1B66;Balinese Musical Symbol Ding -\U1B67;Balinese Musical Symbol Daeng -\U1B68;Balinese Musical Symbol Deung -\U1B69;Balinese Musical Symbol Daing -\U1B6A;Balinese Musical Symbol Dang Gede -\U1B6B;Balinese Musical Symbol Combining Tegeh -\U1B6C;Balinese Musical Symbol Combining Endep -\U1B6D;Balinese Musical Symbol Combining Kempul -\U1B6E;Balinese Musical Symbol Combining Kempli -\U1B6F;Balinese Musical Symbol Combining Jegogan -\U1B70;Balinese Musical Symbol Combining Kempul With Jegogan -\U1B71;Balinese Musical Symbol Combining Kempli With Jegogan -\U1B72;Balinese Musical Symbol Combining Bende -\U1B73;Balinese Musical Symbol Combining Gong -\U1B74;Balinese Musical Symbol Right-Hand Open Dug -\U1B75;Balinese Musical Symbol Right-Hand Open Dag -\U1B76;Balinese Musical Symbol Right-Hand Closed Tuk -\U1B77;Balinese Musical Symbol Right-Hand Closed Tak -\U1B78;Balinese Musical Symbol Left-Hand Open Pang -\U1B79;Balinese Musical Symbol Left-Hand Open Pung -\U1B7A;Balinese Musical Symbol Left-Hand Closed Plak -\U1B7B;Balinese Musical Symbol Left-Hand Closed Pluk -\U1B7C;Balinese Musical Symbol Left-Hand Open Ping -\U1B7D;Balinese Panti Lantang -\U1B7E;Balinese Pamada Lantang -\U1B80;Sundanese Sign Panyecek -\U1B81;Sundanese Sign Panglayar -\U1B82;Sundanese Sign Pangwisad -\U1B83;Sundanese Letter A -\U1B84;Sundanese Letter I -\U1B85;Sundanese Letter U -\U1B86;Sundanese Letter Ae -\U1B87;Sundanese Letter O -\U1B88;Sundanese Letter E -\U1B89;Sundanese Letter Eu -\U1B8A;Sundanese Letter Ka -\U1B8B;Sundanese Letter Qa -\U1B8C;Sundanese Letter Ga -\U1B8D;Sundanese Letter Nga -\U1B8E;Sundanese Letter Ca -\U1B8F;Sundanese Letter Ja -\U1B90;Sundanese Letter Za -\U1B91;Sundanese Letter Nya -\U1B92;Sundanese Letter Ta -\U1B93;Sundanese Letter Da -\U1B94;Sundanese Letter Na -\U1B95;Sundanese Letter Pa -\U1B96;Sundanese Letter Fa -\U1B97;Sundanese Letter Va -\U1B98;Sundanese Letter Ba -\U1B99;Sundanese Letter Ma -\U1B9A;Sundanese Letter Ya -\U1B9B;Sundanese Letter Ra -\U1B9C;Sundanese Letter La -\U1B9D;Sundanese Letter Wa -\U1B9E;Sundanese Letter Sa -\U1B9F;Sundanese Letter Xa -\U1BA0;Sundanese Letter Ha -\U1BA1;Sundanese Consonant Sign Pamingkal -\U1BA2;Sundanese Consonant Sign Panyakra -\U1BA3;Sundanese Consonant Sign Panyiku -\U1BA4;Sundanese Vowel Sign Panghulu -\U1BA5;Sundanese Vowel Sign Panyuku -\U1BA6;Sundanese Vowel Sign Panaelaeng -\U1BA7;Sundanese Vowel Sign Panolong -\U1BA8;Sundanese Vowel Sign Pamepet -\U1BA9;Sundanese Vowel Sign Paneuleung -\U1BAA;Sundanese Sign Pamaaeh -\U1BAB;Sundanese Sign Virama -\U1BAC;Sundanese Consonant Sign Pasangan Ma -\U1BAD;Sundanese Consonant Sign Pasangan Wa -\U1BAE;Sundanese Letter Kha -\U1BAF;Sundanese Letter Sya -\U1BB0;Sundanese Digit Zero -\U1BB1;Sundanese Digit One -\U1BB2;Sundanese Digit Two -\U1BB3;Sundanese Digit Three -\U1BB4;Sundanese Digit Four -\U1BB5;Sundanese Digit Five -\U1BB6;Sundanese Digit Six -\U1BB7;Sundanese Digit Seven -\U1BB8;Sundanese Digit Eight -\U1BB9;Sundanese Digit Nine -\U1BBA;Sundanese Avagraha -\U1BBB;Sundanese Letter Reu -\U1BBC;Sundanese Letter Leu -\U1BBD;Sundanese Letter Bha -\U1BBE;Sundanese Letter Final K -\U1BBF;Sundanese Letter Final M -\U1BC0;Batak Letter A -\U1BC1;Batak Letter Simalungun A -\U1BC2;Batak Letter Ha -\U1BC3;Batak Letter Simalungun Ha -\U1BC4;Batak Letter Mandailing Ha -\U1BC5;Batak Letter Ba -\U1BC6;Batak Letter Karo Ba -\U1BC7;Batak Letter Pa -\U1BC8;Batak Letter Simalungun Pa -\U1BC9;Batak Letter Na -\U1BCA;Batak Letter Mandailing Na -\U1BCB;Batak Letter Wa -\U1BCC;Batak Letter Simalungun Wa -\U1BCD;Batak Letter Pakpak Wa -\U1BCE;Batak Letter Ga -\U1BCF;Batak Letter Simalungun Ga -\U1BD0;Batak Letter Ja -\U1BD1;Batak Letter Da -\U1BD2;Batak Letter Ra -\U1BD3;Batak Letter Simalungun Ra -\U1BD4;Batak Letter Ma -\U1BD5;Batak Letter Simalungun Ma -\U1BD6;Batak Letter Southern Ta -\U1BD7;Batak Letter Northern Ta -\U1BD8;Batak Letter Sa -\U1BD9;Batak Letter Simalungun Sa -\U1BDA;Batak Letter Mandailing Sa -\U1BDB;Batak Letter Ya -\U1BDC;Batak Letter Simalungun Ya -\U1BDD;Batak Letter Nga -\U1BDE;Batak Letter La -\U1BDF;Batak Letter Simalungun La -\U1BE0;Batak Letter Nya -\U1BE1;Batak Letter Ca -\U1BE2;Batak Letter Nda -\U1BE3;Batak Letter Mba -\U1BE4;Batak Letter I -\U1BE5;Batak Letter U -\U1BE6;Batak Sign Tompi -\U1BE7;Batak Vowel Sign E -\U1BE8;Batak Vowel Sign Pakpak E -\U1BE9;Batak Vowel Sign Ee -\U1BEA;Batak Vowel Sign I -\U1BEB;Batak Vowel Sign Karo I -\U1BEC;Batak Vowel Sign O -\U1BED;Batak Vowel Sign Karo O -\U1BEE;Batak Vowel Sign U -\U1BEF;Batak Vowel Sign U For Simalungun Sa -\U1BF0;Batak Consonant Sign Ng -\U1BF1;Batak Consonant Sign H -\U1BF2;Batak Pangolat -\U1BF3;Batak Panongonan -\U1BFC;Batak Symbol Bindu Na Metek -\U1BFD;Batak Symbol Bindu Pinarboras -\U1BFE;Batak Symbol Bindu Judul -\U1BFF;Batak Symbol Bindu Pangolat -\U1C00;Lepcha Letter Ka -\U1C01;Lepcha Letter Kla -\U1C02;Lepcha Letter Kha -\U1C03;Lepcha Letter Ga -\U1C04;Lepcha Letter Gla -\U1C05;Lepcha Letter Nga -\U1C06;Lepcha Letter Ca -\U1C07;Lepcha Letter Cha -\U1C08;Lepcha Letter Ja -\U1C09;Lepcha Letter Nya -\U1C0A;Lepcha Letter Ta -\U1C0B;Lepcha Letter Tha -\U1C0C;Lepcha Letter Da -\U1C0D;Lepcha Letter Na -\U1C0E;Lepcha Letter Pa -\U1C0F;Lepcha Letter Pla -\U1C10;Lepcha Letter Pha -\U1C11;Lepcha Letter Fa -\U1C12;Lepcha Letter Fla -\U1C13;Lepcha Letter Ba -\U1C14;Lepcha Letter Bla -\U1C15;Lepcha Letter Ma -\U1C16;Lepcha Letter Mla -\U1C17;Lepcha Letter Tsa -\U1C18;Lepcha Letter Tsha -\U1C19;Lepcha Letter Dza -\U1C1A;Lepcha Letter Ya -\U1C1B;Lepcha Letter Ra -\U1C1C;Lepcha Letter La -\U1C1D;Lepcha Letter Ha -\U1C1E;Lepcha Letter Hla -\U1C1F;Lepcha Letter Va -\U1C20;Lepcha Letter Sa -\U1C21;Lepcha Letter Sha -\U1C22;Lepcha Letter Wa -\U1C23;Lepcha Letter A -\U1C24;Lepcha Subjoined Letter Ya -\U1C25;Lepcha Subjoined Letter Ra -\U1C26;Lepcha Vowel Sign Aa -\U1C27;Lepcha Vowel Sign I -\U1C28;Lepcha Vowel Sign O -\U1C29;Lepcha Vowel Sign Oo -\U1C2A;Lepcha Vowel Sign U -\U1C2B;Lepcha Vowel Sign Uu -\U1C2C;Lepcha Vowel Sign E -\U1C2D;Lepcha Consonant Sign K -\U1C2E;Lepcha Consonant Sign M -\U1C2F;Lepcha Consonant Sign L -\U1C30;Lepcha Consonant Sign N -\U1C31;Lepcha Consonant Sign P -\U1C32;Lepcha Consonant Sign R -\U1C33;Lepcha Consonant Sign T -\U1C34;Lepcha Consonant Sign Nyin-Do -\U1C35;Lepcha Consonant Sign Kang -\U1C36;Lepcha Sign Ran -\U1C37;Lepcha Sign Nukta -\U1C3B;Lepcha Punctuation Ta-Rol -\U1C3C;Lepcha Punctuation Nyet Thyoom Ta-Rol -\U1C3D;Lepcha Punctuation Cer-Wa -\U1C3E;Lepcha Punctuation Tshook Cer-Wa -\U1C3F;Lepcha Punctuation Tshook -\U1C40;Lepcha Digit Zero -\U1C41;Lepcha Digit One -\U1C42;Lepcha Digit Two -\U1C43;Lepcha Digit Three -\U1C44;Lepcha Digit Four -\U1C45;Lepcha Digit Five -\U1C46;Lepcha Digit Six -\U1C47;Lepcha Digit Seven -\U1C48;Lepcha Digit Eight -\U1C49;Lepcha Digit Nine -\U1C4D;Lepcha Letter Tta -\U1C4E;Lepcha Letter Ttha -\U1C4F;Lepcha Letter Dda -\U1C50;Ol Chiki Digit Zero -\U1C51;Ol Chiki Digit One -\U1C52;Ol Chiki Digit Two -\U1C53;Ol Chiki Digit Three -\U1C54;Ol Chiki Digit Four -\U1C55;Ol Chiki Digit Five -\U1C56;Ol Chiki Digit Six -\U1C57;Ol Chiki Digit Seven -\U1C58;Ol Chiki Digit Eight -\U1C59;Ol Chiki Digit Nine -\U1C5A;Ol Chiki Letter La -\U1C5B;Ol Chiki Letter At -\U1C5C;Ol Chiki Letter Ag -\U1C5D;Ol Chiki Letter Ang -\U1C5E;Ol Chiki Letter Al -\U1C5F;Ol Chiki Letter Laa -\U1C60;Ol Chiki Letter Aak -\U1C61;Ol Chiki Letter Aaj -\U1C62;Ol Chiki Letter Aam -\U1C63;Ol Chiki Letter Aaw -\U1C64;Ol Chiki Letter Li -\U1C65;Ol Chiki Letter Is -\U1C66;Ol Chiki Letter Ih -\U1C67;Ol Chiki Letter Iny -\U1C68;Ol Chiki Letter Ir -\U1C69;Ol Chiki Letter Lu -\U1C6A;Ol Chiki Letter Uc -\U1C6B;Ol Chiki Letter Ud -\U1C6C;Ol Chiki Letter Unn -\U1C6D;Ol Chiki Letter Uy -\U1C6E;Ol Chiki Letter Le -\U1C6F;Ol Chiki Letter Ep -\U1C70;Ol Chiki Letter Edd -\U1C71;Ol Chiki Letter En -\U1C72;Ol Chiki Letter Err -\U1C73;Ol Chiki Letter Lo -\U1C74;Ol Chiki Letter Ott -\U1C75;Ol Chiki Letter Ob -\U1C76;Ol Chiki Letter Ov -\U1C77;Ol Chiki Letter Oh -\U1C78;Ol Chiki Mu Ttuddag -\U1C79;Ol Chiki Gaahlaa Ttuddaag -\U1C7A;Ol Chiki Mu-Gaahlaa Ttuddaag -\U1C7B;Ol Chiki Relaa -\U1C7C;Ol Chiki Phaarkaa -\U1C7D;Ol Chiki Ahad -\U1C7E;Ol Chiki Punctuation Mucaad -\U1C7F;Ol Chiki Punctuation Double Mucaad -\U1C80;Cyrillic Small Letter Rounded Ve -\U1C81;Cyrillic Small Letter Long-Legged De -\U1C82;Cyrillic Small Letter Narrow O -\U1C83;Cyrillic Small Letter Wide Es -\U1C84;Cyrillic Small Letter Tall Te -\U1C85;Cyrillic Small Letter Three-Legged Te -\U1C86;Cyrillic Small Letter Tall Hard Sign -\U1C87;Cyrillic Small Letter Tall Yat -\U1C88;Cyrillic Small Letter Unblended Uk -\U1C90;Georgian Mtavruli Capital Letter An -\U1C91;Georgian Mtavruli Capital Letter Ban -\U1C92;Georgian Mtavruli Capital Letter Gan -\U1C93;Georgian Mtavruli Capital Letter Don -\U1C94;Georgian Mtavruli Capital Letter En -\U1C95;Georgian Mtavruli Capital Letter Vin -\U1C96;Georgian Mtavruli Capital Letter Zen -\U1C97;Georgian Mtavruli Capital Letter Tan -\U1C98;Georgian Mtavruli Capital Letter In -\U1C99;Georgian Mtavruli Capital Letter Kan -\U1C9A;Georgian Mtavruli Capital Letter Las -\U1C9B;Georgian Mtavruli Capital Letter Man -\U1C9C;Georgian Mtavruli Capital Letter Nar -\U1C9D;Georgian Mtavruli Capital Letter On -\U1C9E;Georgian Mtavruli Capital Letter Par -\U1C9F;Georgian Mtavruli Capital Letter Zhar -\U1CA0;Georgian Mtavruli Capital Letter Rae -\U1CA1;Georgian Mtavruli Capital Letter San -\U1CA2;Georgian Mtavruli Capital Letter Tar -\U1CA3;Georgian Mtavruli Capital Letter Un -\U1CA4;Georgian Mtavruli Capital Letter Phar -\U1CA5;Georgian Mtavruli Capital Letter Khar -\U1CA6;Georgian Mtavruli Capital Letter Ghan -\U1CA7;Georgian Mtavruli Capital Letter Qar -\U1CA8;Georgian Mtavruli Capital Letter Shin -\U1CA9;Georgian Mtavruli Capital Letter Chin -\U1CAA;Georgian Mtavruli Capital Letter Can -\U1CAB;Georgian Mtavruli Capital Letter Jil -\U1CAC;Georgian Mtavruli Capital Letter Cil -\U1CAD;Georgian Mtavruli Capital Letter Char -\U1CAE;Georgian Mtavruli Capital Letter Xan -\U1CAF;Georgian Mtavruli Capital Letter Jhan -\U1CB0;Georgian Mtavruli Capital Letter Hae -\U1CB1;Georgian Mtavruli Capital Letter He -\U1CB2;Georgian Mtavruli Capital Letter Hie -\U1CB3;Georgian Mtavruli Capital Letter We -\U1CB4;Georgian Mtavruli Capital Letter Har -\U1CB5;Georgian Mtavruli Capital Letter Hoe -\U1CB6;Georgian Mtavruli Capital Letter Fi -\U1CB7;Georgian Mtavruli Capital Letter Yn -\U1CB8;Georgian Mtavruli Capital Letter Elifi -\U1CB9;Georgian Mtavruli Capital Letter Turned Gan -\U1CBA;Georgian Mtavruli Capital Letter Ain -\U1CBD;Georgian Mtavruli Capital Letter Aen -\U1CBE;Georgian Mtavruli Capital Letter Hard Sign -\U1CBF;Georgian Mtavruli Capital Letter Labial Sign -\U1CC0;Sundanese Punctuation Bindu Surya -\U1CC1;Sundanese Punctuation Bindu Panglong -\U1CC2;Sundanese Punctuation Bindu Purnama -\U1CC3;Sundanese Punctuation Bindu Cakra -\U1CC4;Sundanese Punctuation Bindu Leu Satanga -\U1CC5;Sundanese Punctuation Bindu Ka Satanga -\U1CC6;Sundanese Punctuation Bindu Da Satanga -\U1CC7;Sundanese Punctuation Bindu Ba Satanga -\U1CD0;Vedic Tone Karshana -\U1CD1;Vedic Tone Shara -\U1CD2;Vedic Tone Prenkha -\U1CD3;Vedic Sign Nihshvasa -\U1CD4;Vedic Sign Yajurvedic Midline Svarita -\U1CD5;Vedic Tone Yajurvedic Aggravated Independent Svarita -\U1CD6;Vedic Tone Yajurvedic Independent Svarita -\U1CD7;Vedic Tone Yajurvedic Kathaka Independent Svarita -\U1CD8;Vedic Tone Candra Below -\U1CD9;Vedic Tone Yajurvedic Kathaka Independent Svarita Schroeder -\U1CDA;Vedic Tone Double Svarita -\U1CDB;Vedic Tone Triple Svarita -\U1CDC;Vedic Tone Kathaka Anudatta -\U1CDD;Vedic Tone Dot Below -\U1CDE;Vedic Tone Two Dots Below -\U1CDF;Vedic Tone Three Dots Below -\U1CE0;Vedic Tone Rigvedic Kashmiri Independent Svarita -\U1CE1;Vedic Tone Atharvavedic Independent Svarita -\U1CE2;Vedic Sign Visarga Svarita -\U1CE3;Vedic Sign Visarga Udatta -\U1CE4;Vedic Sign Reversed Visarga Udatta -\U1CE5;Vedic Sign Visarga Anudatta -\U1CE6;Vedic Sign Reversed Visarga Anudatta -\U1CE7;Vedic Sign Visarga Udatta With Tail -\U1CE8;Vedic Sign Visarga Anudatta With Tail -\U1CE9;Vedic Sign Anusvara Antargomukha -\U1CEA;Vedic Sign Anusvara Bahirgomukha -\U1CEB;Vedic Sign Anusvara Vamagomukha -\U1CEC;Vedic Sign Anusvara Vamagomukha With Tail -\U1CED;Vedic Sign Tiryak -\U1CEE;Vedic Sign Hexiform Long Anusvara -\U1CEF;Vedic Sign Long Anusvara -\U1CF0;Vedic Sign Rthang Long Anusvara -\U1CF1;Vedic Sign Anusvara Ubhayato Mukha -\U1CF2;Vedic Sign Ardhavisarga -\U1CF3;Vedic Sign Rotated Ardhavisarga -\U1CF4;Vedic Tone Candra Above -\U1CF5;Vedic Sign Jihvamuliya -\U1CF6;Vedic Sign Upadhmaniya -\U1CF7;Vedic Sign Atikrama -\U1CF8;Vedic Tone Ring Above -\U1CF9;Vedic Tone Double Ring Above -\U1CFA;Vedic Sign Double Anusvara Antargomukha -\U1D00;Latin Letter Small Capital A -\U1D01;Latin Letter Small Capital Ae -\U1D02;Latin Small Letter Turned Ae -\U1D03;Latin Letter Small Capital Barred B -\U1D04;Latin Letter Small Capital C -\U1D05;Latin Letter Small Capital D -\U1D06;Latin Letter Small Capital Eth -\U1D07;Latin Letter Small Capital E -\U1D08;Latin Small Letter Turned Open E -\U1D09;Latin Small Letter Turned I -\U1D0A;Latin Letter Small Capital J -\U1D0B;Latin Letter Small Capital K -\U1D0C;Latin Letter Small Capital L With Stroke -\U1D0D;Latin Letter Small Capital M -\U1D0E;Latin Letter Small Capital Reversed N -\U1D0F;Latin Letter Small Capital O -\U1D10;Latin Letter Small Capital Open O -\U1D11;Latin Small Letter Sideways O -\U1D12;Latin Small Letter Sideways Open O -\U1D13;Latin Small Letter Sideways O With Stroke -\U1D14;Latin Small Letter Turned Oe -\U1D15;Latin Letter Small Capital Ou -\U1D16;Latin Small Letter Top Half O -\U1D17;Latin Small Letter Bottom Half O -\U1D18;Latin Letter Small Capital P -\U1D19;Latin Letter Small Capital Reversed R -\U1D1A;Latin Letter Small Capital Turned R -\U1D1B;Latin Letter Small Capital T -\U1D1C;Latin Letter Small Capital U -\U1D1D;Latin Small Letter Sideways U -\U1D1E;Latin Small Letter Sideways Diaeresized U -\U1D1F;Latin Small Letter Sideways Turned M -\U1D20;Latin Letter Small Capital V -\U1D21;Latin Letter Small Capital W -\U1D22;Latin Letter Small Capital Z -\U1D23;Latin Letter Small Capital Ezh -\U1D24;Latin Letter Voiced Laryngeal Spirant -\U1D25;Latin Letter Ain -\U1D26;Greek Letter Small Capital Gamma -\U1D27;Greek Letter Small Capital Lamda -\U1D28;Greek Letter Small Capital Pi -\U1D29;Greek Letter Small Capital Rho -\U1D2A;Greek Letter Small Capital Psi -\U1D2B;Cyrillic Letter Small Capital El -\U1D2C;Modifier Letter Capital A -\U1D2D;Modifier Letter Capital Ae -\U1D2E;Modifier Letter Capital B -\U1D2F;Modifier Letter Capital Barred B -\U1D30;Modifier Letter Capital D -\U1D31;Modifier Letter Capital E -\U1D32;Modifier Letter Capital Reversed E -\U1D33;Modifier Letter Capital G -\U1D34;Modifier Letter Capital H -\U1D35;Modifier Letter Capital I -\U1D36;Modifier Letter Capital J -\U1D37;Modifier Letter Capital K -\U1D38;Modifier Letter Capital L -\U1D39;Modifier Letter Capital M -\U1D3A;Modifier Letter Capital N -\U1D3B;Modifier Letter Capital Reversed N -\U1D3C;Modifier Letter Capital O -\U1D3D;Modifier Letter Capital Ou -\U1D3E;Modifier Letter Capital P -\U1D3F;Modifier Letter Capital R -\U1D40;Modifier Letter Capital T -\U1D41;Modifier Letter Capital U -\U1D42;Modifier Letter Capital W -\U1D43;Modifier Letter Small A -\U1D44;Modifier Letter Small Turned A -\U1D45;Modifier Letter Small Alpha -\U1D46;Modifier Letter Small Turned Ae -\U1D47;Modifier Letter Small B -\U1D48;Modifier Letter Small D -\U1D49;Modifier Letter Small E -\U1D4A;Modifier Letter Small Schwa -\U1D4B;Modifier Letter Small Open E -\U1D4C;Modifier Letter Small Turned Open E -\U1D4D;Modifier Letter Small G -\U1D4E;Modifier Letter Small Turned I -\U1D4F;Modifier Letter Small K -\U1D50;Modifier Letter Small M -\U1D51;Modifier Letter Small Eng -\U1D52;Modifier Letter Small O -\U1D53;Modifier Letter Small Open O -\U1D54;Modifier Letter Small Top Half O -\U1D55;Modifier Letter Small Bottom Half O -\U1D56;Modifier Letter Small P -\U1D57;Modifier Letter Small T -\U1D58;Modifier Letter Small U -\U1D59;Modifier Letter Small Sideways U -\U1D5A;Modifier Letter Small Turned M -\U1D5B;Modifier Letter Small V -\U1D5C;Modifier Letter Small Ain -\U1D5D;Modifier Letter Small Beta -\U1D5E;Modifier Letter Small Greek Gamma -\U1D5F;Modifier Letter Small Delta -\U1D60;Modifier Letter Small Greek Phi -\U1D61;Modifier Letter Small Chi -\U1D62;Latin Subscript Small Letter I -\U1D63;Latin Subscript Small Letter R -\U1D64;Latin Subscript Small Letter U -\U1D65;Latin Subscript Small Letter V -\U1D66;Greek Subscript Small Letter Beta -\U1D67;Greek Subscript Small Letter Gamma -\U1D68;Greek Subscript Small Letter Rho -\U1D69;Greek Subscript Small Letter Phi -\U1D6A;Greek Subscript Small Letter Chi -\U1D6B;Latin Small Letter Ue -\U1D6C;Latin Small Letter B With Middle Tilde -\U1D6D;Latin Small Letter D With Middle Tilde -\U1D6E;Latin Small Letter F With Middle Tilde -\U1D6F;Latin Small Letter M With Middle Tilde -\U1D70;Latin Small Letter N With Middle Tilde -\U1D71;Latin Small Letter P With Middle Tilde -\U1D72;Latin Small Letter R With Middle Tilde -\U1D73;Latin Small Letter R With Fishhook And Middle Tilde -\U1D74;Latin Small Letter S With Middle Tilde -\U1D75;Latin Small Letter T With Middle Tilde -\U1D76;Latin Small Letter Z With Middle Tilde -\U1D77;Latin Small Letter Turned G -\U1D78;Modifier Letter Cyrillic En -\U1D79;Latin Small Letter Insular G -\U1D7A;Latin Small Letter Th With Strikethrough -\U1D7B;Latin Small Capital Letter I With Stroke -\U1D7C;Latin Small Letter Iota With Stroke -\U1D7D;Latin Small Letter P With Stroke -\U1D7E;Latin Small Capital Letter U With Stroke -\U1D7F;Latin Small Letter Upsilon With Stroke -\U1D80;Latin Small Letter B With Palatal Hook -\U1D81;Latin Small Letter D With Palatal Hook -\U1D82;Latin Small Letter F With Palatal Hook -\U1D83;Latin Small Letter G With Palatal Hook -\U1D84;Latin Small Letter K With Palatal Hook -\U1D85;Latin Small Letter L With Palatal Hook -\U1D86;Latin Small Letter M With Palatal Hook -\U1D87;Latin Small Letter N With Palatal Hook -\U1D88;Latin Small Letter P With Palatal Hook -\U1D89;Latin Small Letter R With Palatal Hook -\U1D8A;Latin Small Letter S With Palatal Hook -\U1D8B;Latin Small Letter Esh With Palatal Hook -\U1D8C;Latin Small Letter V With Palatal Hook -\U1D8D;Latin Small Letter X With Palatal Hook -\U1D8E;Latin Small Letter Z With Palatal Hook -\U1D8F;Latin Small Letter A With Retroflex Hook -\U1D90;Latin Small Letter Alpha With Retroflex Hook -\U1D91;Latin Small Letter D With Hook And Tail -\U1D92;Latin Small Letter E With Retroflex Hook -\U1D93;Latin Small Letter Open E With Retroflex Hook -\U1D94;Latin Small Letter Reversed Open E With Retroflex Hook -\U1D95;Latin Small Letter Schwa With Retroflex Hook -\U1D96;Latin Small Letter I With Retroflex Hook -\U1D97;Latin Small Letter Open O With Retroflex Hook -\U1D98;Latin Small Letter Esh With Retroflex Hook -\U1D99;Latin Small Letter U With Retroflex Hook -\U1D9A;Latin Small Letter Ezh With Retroflex Hook -\U1D9B;Modifier Letter Small Turned Alpha -\U1D9C;Modifier Letter Small C -\U1D9D;Modifier Letter Small C With Curl -\U1D9E;Modifier Letter Small Eth -\U1D9F;Modifier Letter Small Reversed Open E -\U1DA0;Modifier Letter Small F -\U1DA1;Modifier Letter Small Dotless J With Stroke -\U1DA2;Modifier Letter Small Script G -\U1DA3;Modifier Letter Small Turned H -\U1DA4;Modifier Letter Small I With Stroke -\U1DA5;Modifier Letter Small Iota -\U1DA6;Modifier Letter Small Capital I -\U1DA7;Modifier Letter Small Capital I With Stroke -\U1DA8;Modifier Letter Small J With Crossed-Tail -\U1DA9;Modifier Letter Small L With Retroflex Hook -\U1DAA;Modifier Letter Small L With Palatal Hook -\U1DAB;Modifier Letter Small Capital L -\U1DAC;Modifier Letter Small M With Hook -\U1DAD;Modifier Letter Small Turned M With Long Leg -\U1DAE;Modifier Letter Small N With Left Hook -\U1DAF;Modifier Letter Small N With Retroflex Hook -\U1DB0;Modifier Letter Small Capital N -\U1DB1;Modifier Letter Small Barred O -\U1DB2;Modifier Letter Small Phi -\U1DB3;Modifier Letter Small S With Hook -\U1DB4;Modifier Letter Small Esh -\U1DB5;Modifier Letter Small T With Palatal Hook -\U1DB6;Modifier Letter Small U Bar -\U1DB7;Modifier Letter Small Upsilon -\U1DB8;Modifier Letter Small Capital U -\U1DB9;Modifier Letter Small V With Hook -\U1DBA;Modifier Letter Small Turned V -\U1DBB;Modifier Letter Small Z -\U1DBC;Modifier Letter Small Z With Retroflex Hook -\U1DBD;Modifier Letter Small Z With Curl -\U1DBE;Modifier Letter Small Ezh -\U1DBF;Modifier Letter Small Theta -\U1DC0;Combining Dotted Grave Accent -\U1DC1;Combining Dotted Acute Accent -\U1DC2;Combining Snake Below -\U1DC3;Combining Suspension Mark -\U1DC4;Combining Macron-Acute -\U1DC5;Combining Grave-Macron -\U1DC6;Combining Macron-Grave -\U1DC7;Combining Acute-Macron -\U1DC8;Combining Grave-Acute-Grave -\U1DC9;Combining Acute-Grave-Acute -\U1DCA;Combining Latin Small Letter R Below -\U1DCB;Combining Breve-Macron -\U1DCC;Combining Macron-Breve -\U1DCD;Combining Double Circumflex Above -\U1DCE;Combining Ogonek Above -\U1DCF;Combining Zigzag Below -\U1DD0;Combining Is Below -\U1DD1;Combining Ur Above -\U1DD2;Combining Us Above -\U1DD3;Combining Latin Small Letter Flattened Open A Above -\U1DD4;Combining Latin Small Letter Ae -\U1DD5;Combining Latin Small Letter Ao -\U1DD6;Combining Latin Small Letter Av -\U1DD7;Combining Latin Small Letter C Cedilla -\U1DD8;Combining Latin Small Letter Insular D -\U1DD9;Combining Latin Small Letter Eth -\U1DDA;Combining Latin Small Letter G -\U1DDB;Combining Latin Letter Small Capital G -\U1DDC;Combining Latin Small Letter K -\U1DDD;Combining Latin Small Letter L -\U1DDE;Combining Latin Letter Small Capital L -\U1DDF;Combining Latin Letter Small Capital M -\U1DE0;Combining Latin Small Letter N -\U1DE1;Combining Latin Letter Small Capital N -\U1DE2;Combining Latin Letter Small Capital R -\U1DE3;Combining Latin Small Letter R Rotunda -\U1DE4;Combining Latin Small Letter S -\U1DE5;Combining Latin Small Letter Long S -\U1DE6;Combining Latin Small Letter Z -\U1DE7;Combining Latin Small Letter Alpha -\U1DE8;Combining Latin Small Letter B -\U1DE9;Combining Latin Small Letter Beta -\U1DEA;Combining Latin Small Letter Schwa -\U1DEB;Combining Latin Small Letter F -\U1DEC;Combining Latin Small Letter L With Double Middle Tilde -\U1DED;Combining Latin Small Letter O With Light Centralization Stroke -\U1DEE;Combining Latin Small Letter P -\U1DEF;Combining Latin Small Letter Esh -\U1DF0;Combining Latin Small Letter U With Light Centralization Stroke -\U1DF1;Combining Latin Small Letter W -\U1DF2;Combining Latin Small Letter A With Diaeresis -\U1DF3;Combining Latin Small Letter O With Diaeresis -\U1DF4;Combining Latin Small Letter U With Diaeresis -\U1DF5;Combining Up Tack Above -\U1DF6;Combining Kavyka Above Right -\U1DF7;Combining Kavyka Above Left -\U1DF8;Combining Dot Above Left -\U1DF9;Combining Wide Inverted Bridge Below -\U1DFA;Combining Dot Below Left -\U1DFB;Combining Deletion Mark -\U1DFC;Combining Double Inverted Breve Below -\U1DFD;Combining Almost Equal To Below -\U1DFE;Combining Left Arrowhead Above -\U1DFF;Combining Right Arrowhead And Down Arrowhead Below -\U1E00;Latin Capital Letter A With Ring Below -\U1E01;Latin Small Letter A With Ring Below -\U1E02;Latin Capital Letter B With Dot Above -\U1E03;Latin Small Letter B With Dot Above -\U1E04;Latin Capital Letter B With Dot Below -\U1E05;Latin Small Letter B With Dot Below -\U1E06;Latin Capital Letter B With Line Below -\U1E07;Latin Small Letter B With Line Below -\U1E08;Latin Capital Letter C With Cedilla And Acute -\U1E09;Latin Small Letter C With Cedilla And Acute -\U1E0A;Latin Capital Letter D With Dot Above -\U1E0B;Latin Small Letter D With Dot Above -\U1E0C;Latin Capital Letter D With Dot Below -\U1E0D;Latin Small Letter D With Dot Below -\U1E0E;Latin Capital Letter D With Line Below -\U1E0F;Latin Small Letter D With Line Below -\U1E10;Latin Capital Letter D With Cedilla -\U1E11;Latin Small Letter D With Cedilla -\U1E12;Latin Capital Letter D With Circumflex Below -\U1E13;Latin Small Letter D With Circumflex Below -\U1E14;Latin Capital Letter E With Macron And Grave -\U1E15;Latin Small Letter E With Macron And Grave -\U1E16;Latin Capital Letter E With Macron And Acute -\U1E17;Latin Small Letter E With Macron And Acute -\U1E18;Latin Capital Letter E With Circumflex Below -\U1E19;Latin Small Letter E With Circumflex Below -\U1E1A;Latin Capital Letter E With Tilde Below -\U1E1B;Latin Small Letter E With Tilde Below -\U1E1C;Latin Capital Letter E With Cedilla And Breve -\U1E1D;Latin Small Letter E With Cedilla And Breve -\U1E1E;Latin Capital Letter F With Dot Above -\U1E1F;Latin Small Letter F With Dot Above -\U1E20;Latin Capital Letter G With Macron -\U1E21;Latin Small Letter G With Macron -\U1E22;Latin Capital Letter H With Dot Above -\U1E23;Latin Small Letter H With Dot Above -\U1E24;Latin Capital Letter H With Dot Below -\U1E25;Latin Small Letter H With Dot Below -\U1E26;Latin Capital Letter H With Diaeresis -\U1E27;Latin Small Letter H With Diaeresis -\U1E28;Latin Capital Letter H With Cedilla -\U1E29;Latin Small Letter H With Cedilla -\U1E2A;Latin Capital Letter H With Breve Below -\U1E2B;Latin Small Letter H With Breve Below -\U1E2C;Latin Capital Letter I With Tilde Below -\U1E2D;Latin Small Letter I With Tilde Below -\U1E2E;Latin Capital Letter I With Diaeresis And Acute -\U1E2F;Latin Small Letter I With Diaeresis And Acute -\U1E30;Latin Capital Letter K With Acute -\U1E31;Latin Small Letter K With Acute -\U1E32;Latin Capital Letter K With Dot Below -\U1E33;Latin Small Letter K With Dot Below -\U1E34;Latin Capital Letter K With Line Below -\U1E35;Latin Small Letter K With Line Below -\U1E36;Latin Capital Letter L With Dot Below -\U1E37;Latin Small Letter L With Dot Below -\U1E38;Latin Capital Letter L With Dot Below And Macron -\U1E39;Latin Small Letter L With Dot Below And Macron -\U1E3A;Latin Capital Letter L With Line Below -\U1E3B;Latin Small Letter L With Line Below -\U1E3C;Latin Capital Letter L With Circumflex Below -\U1E3D;Latin Small Letter L With Circumflex Below -\U1E3E;Latin Capital Letter M With Acute -\U1E3F;Latin Small Letter M With Acute -\U1E40;Latin Capital Letter M With Dot Above -\U1E41;Latin Small Letter M With Dot Above -\U1E42;Latin Capital Letter M With Dot Below -\U1E43;Latin Small Letter M With Dot Below -\U1E44;Latin Capital Letter N With Dot Above -\U1E45;Latin Small Letter N With Dot Above -\U1E46;Latin Capital Letter N With Dot Below -\U1E47;Latin Small Letter N With Dot Below -\U1E48;Latin Capital Letter N With Line Below -\U1E49;Latin Small Letter N With Line Below -\U1E4A;Latin Capital Letter N With Circumflex Below -\U1E4B;Latin Small Letter N With Circumflex Below -\U1E4C;Latin Capital Letter O With Tilde And Acute -\U1E4D;Latin Small Letter O With Tilde And Acute -\U1E4E;Latin Capital Letter O With Tilde And Diaeresis -\U1E4F;Latin Small Letter O With Tilde And Diaeresis -\U1E50;Latin Capital Letter O With Macron And Grave -\U1E51;Latin Small Letter O With Macron And Grave -\U1E52;Latin Capital Letter O With Macron And Acute -\U1E53;Latin Small Letter O With Macron And Acute -\U1E54;Latin Capital Letter P With Acute -\U1E55;Latin Small Letter P With Acute -\U1E56;Latin Capital Letter P With Dot Above -\U1E57;Latin Small Letter P With Dot Above -\U1E58;Latin Capital Letter R With Dot Above -\U1E59;Latin Small Letter R With Dot Above -\U1E5A;Latin Capital Letter R With Dot Below -\U1E5B;Latin Small Letter R With Dot Below -\U1E5C;Latin Capital Letter R With Dot Below And Macron -\U1E5D;Latin Small Letter R With Dot Below And Macron -\U1E5E;Latin Capital Letter R With Line Below -\U1E5F;Latin Small Letter R With Line Below -\U1E60;Latin Capital Letter S With Dot Above -\U1E61;Latin Small Letter S With Dot Above -\U1E62;Latin Capital Letter S With Dot Below -\U1E63;Latin Small Letter S With Dot Below -\U1E64;Latin Capital Letter S With Acute And Dot Above -\U1E65;Latin Small Letter S With Acute And Dot Above -\U1E66;Latin Capital Letter S With Caron And Dot Above -\U1E67;Latin Small Letter S With Caron And Dot Above -\U1E68;Latin Capital Letter S With Dot Below And Dot Above -\U1E69;Latin Small Letter S With Dot Below And Dot Above -\U1E6A;Latin Capital Letter T With Dot Above -\U1E6B;Latin Small Letter T With Dot Above -\U1E6C;Latin Capital Letter T With Dot Below -\U1E6D;Latin Small Letter T With Dot Below -\U1E6E;Latin Capital Letter T With Line Below -\U1E6F;Latin Small Letter T With Line Below -\U1E70;Latin Capital Letter T With Circumflex Below -\U1E71;Latin Small Letter T With Circumflex Below -\U1E72;Latin Capital Letter U With Diaeresis Below -\U1E73;Latin Small Letter U With Diaeresis Below -\U1E74;Latin Capital Letter U With Tilde Below -\U1E75;Latin Small Letter U With Tilde Below -\U1E76;Latin Capital Letter U With Circumflex Below -\U1E77;Latin Small Letter U With Circumflex Below -\U1E78;Latin Capital Letter U With Tilde And Acute -\U1E79;Latin Small Letter U With Tilde And Acute -\U1E7A;Latin Capital Letter U With Macron And Diaeresis -\U1E7B;Latin Small Letter U With Macron And Diaeresis -\U1E7C;Latin Capital Letter V With Tilde -\U1E7D;Latin Small Letter V With Tilde -\U1E7E;Latin Capital Letter V With Dot Below -\U1E7F;Latin Small Letter V With Dot Below -\U1E80;Latin Capital Letter W With Grave -\U1E81;Latin Small Letter W With Grave -\U1E82;Latin Capital Letter W With Acute -\U1E83;Latin Small Letter W With Acute -\U1E84;Latin Capital Letter W With Diaeresis -\U1E85;Latin Small Letter W With Diaeresis -\U1E86;Latin Capital Letter W With Dot Above -\U1E87;Latin Small Letter W With Dot Above -\U1E88;Latin Capital Letter W With Dot Below -\U1E89;Latin Small Letter W With Dot Below -\U1E8A;Latin Capital Letter X With Dot Above -\U1E8B;Latin Small Letter X With Dot Above -\U1E8C;Latin Capital Letter X With Diaeresis -\U1E8D;Latin Small Letter X With Diaeresis -\U1E8E;Latin Capital Letter Y With Dot Above -\U1E8F;Latin Small Letter Y With Dot Above -\U1E90;Latin Capital Letter Z With Circumflex -\U1E91;Latin Small Letter Z With Circumflex -\U1E92;Latin Capital Letter Z With Dot Below -\U1E93;Latin Small Letter Z With Dot Below -\U1E94;Latin Capital Letter Z With Line Below -\U1E95;Latin Small Letter Z With Line Below -\U1E96;Latin Small Letter H With Line Below -\U1E97;Latin Small Letter T With Diaeresis -\U1E98;Latin Small Letter W With Ring Above -\U1E99;Latin Small Letter Y With Ring Above -\U1E9A;Latin Small Letter A With Right Half Ring -\U1E9B;Latin Small Letter Long S With Dot Above -\U1E9C;Latin Small Letter Long S With Diagonal Stroke -\U1E9D;Latin Small Letter Long S With High Stroke -\U1E9E;Latin Capital Letter Sharp S -\U1E9F;Latin Small Letter Delta -\U1EA0;Latin Capital Letter A With Dot Below -\U1EA1;Latin Small Letter A With Dot Below -\U1EA2;Latin Capital Letter A With Hook Above -\U1EA3;Latin Small Letter A With Hook Above -\U1EA4;Latin Capital Letter A With Circumflex And Acute -\U1EA5;Latin Small Letter A With Circumflex And Acute -\U1EA6;Latin Capital Letter A With Circumflex And Grave -\U1EA7;Latin Small Letter A With Circumflex And Grave -\U1EA8;Latin Capital Letter A With Circumflex And Hook Above -\U1EA9;Latin Small Letter A With Circumflex And Hook Above -\U1EAA;Latin Capital Letter A With Circumflex And Tilde -\U1EAB;Latin Small Letter A With Circumflex And Tilde -\U1EAC;Latin Capital Letter A With Circumflex And Dot Below -\U1EAD;Latin Small Letter A With Circumflex And Dot Below -\U1EAE;Latin Capital Letter A With Breve And Acute -\U1EAF;Latin Small Letter A With Breve And Acute -\U1EB0;Latin Capital Letter A With Breve And Grave -\U1EB1;Latin Small Letter A With Breve And Grave -\U1EB2;Latin Capital Letter A With Breve And Hook Above -\U1EB3;Latin Small Letter A With Breve And Hook Above -\U1EB4;Latin Capital Letter A With Breve And Tilde -\U1EB5;Latin Small Letter A With Breve And Tilde -\U1EB6;Latin Capital Letter A With Breve And Dot Below -\U1EB7;Latin Small Letter A With Breve And Dot Below -\U1EB8;Latin Capital Letter E With Dot Below -\U1EB9;Latin Small Letter E With Dot Below -\U1EBA;Latin Capital Letter E With Hook Above -\U1EBB;Latin Small Letter E With Hook Above -\U1EBC;Latin Capital Letter E With Tilde -\U1EBD;Latin Small Letter E With Tilde -\U1EBE;Latin Capital Letter E With Circumflex And Acute -\U1EBF;Latin Small Letter E With Circumflex And Acute -\U1EC0;Latin Capital Letter E With Circumflex And Grave -\U1EC1;Latin Small Letter E With Circumflex And Grave -\U1EC2;Latin Capital Letter E With Circumflex And Hook Above -\U1EC3;Latin Small Letter E With Circumflex And Hook Above -\U1EC4;Latin Capital Letter E With Circumflex And Tilde -\U1EC5;Latin Small Letter E With Circumflex And Tilde -\U1EC6;Latin Capital Letter E With Circumflex And Dot Below -\U1EC7;Latin Small Letter E With Circumflex And Dot Below -\U1EC8;Latin Capital Letter I With Hook Above -\U1EC9;Latin Small Letter I With Hook Above -\U1ECA;Latin Capital Letter I With Dot Below -\U1ECB;Latin Small Letter I With Dot Below -\U1ECC;Latin Capital Letter O With Dot Below -\U1ECD;Latin Small Letter O With Dot Below -\U1ECE;Latin Capital Letter O With Hook Above -\U1ECF;Latin Small Letter O With Hook Above -\U1ED0;Latin Capital Letter O With Circumflex And Acute -\U1ED1;Latin Small Letter O With Circumflex And Acute -\U1ED2;Latin Capital Letter O With Circumflex And Grave -\U1ED3;Latin Small Letter O With Circumflex And Grave -\U1ED4;Latin Capital Letter O With Circumflex And Hook Above -\U1ED5;Latin Small Letter O With Circumflex And Hook Above -\U1ED6;Latin Capital Letter O With Circumflex And Tilde -\U1ED7;Latin Small Letter O With Circumflex And Tilde -\U1ED8;Latin Capital Letter O With Circumflex And Dot Below -\U1ED9;Latin Small Letter O With Circumflex And Dot Below -\U1EDA;Latin Capital Letter O With Horn And Acute -\U1EDB;Latin Small Letter O With Horn And Acute -\U1EDC;Latin Capital Letter O With Horn And Grave -\U1EDD;Latin Small Letter O With Horn And Grave -\U1EDE;Latin Capital Letter O With Horn And Hook Above -\U1EDF;Latin Small Letter O With Horn And Hook Above -\U1EE0;Latin Capital Letter O With Horn And Tilde -\U1EE1;Latin Small Letter O With Horn And Tilde -\U1EE2;Latin Capital Letter O With Horn And Dot Below -\U1EE3;Latin Small Letter O With Horn And Dot Below -\U1EE4;Latin Capital Letter U With Dot Below -\U1EE5;Latin Small Letter U With Dot Below -\U1EE6;Latin Capital Letter U With Hook Above -\U1EE7;Latin Small Letter U With Hook Above -\U1EE8;Latin Capital Letter U With Horn And Acute -\U1EE9;Latin Small Letter U With Horn And Acute -\U1EEA;Latin Capital Letter U With Horn And Grave -\U1EEB;Latin Small Letter U With Horn And Grave -\U1EEC;Latin Capital Letter U With Horn And Hook Above -\U1EED;Latin Small Letter U With Horn And Hook Above -\U1EEE;Latin Capital Letter U With Horn And Tilde -\U1EEF;Latin Small Letter U With Horn And Tilde -\U1EF0;Latin Capital Letter U With Horn And Dot Below -\U1EF1;Latin Small Letter U With Horn And Dot Below -\U1EF2;Latin Capital Letter Y With Grave -\U1EF3;Latin Small Letter Y With Grave -\U1EF4;Latin Capital Letter Y With Dot Below -\U1EF5;Latin Small Letter Y With Dot Below -\U1EF6;Latin Capital Letter Y With Hook Above -\U1EF7;Latin Small Letter Y With Hook Above -\U1EF8;Latin Capital Letter Y With Tilde -\U1EF9;Latin Small Letter Y With Tilde -\U1EFA;Latin Capital Letter Middle-Welsh Ll -\U1EFB;Latin Small Letter Middle-Welsh Ll -\U1EFC;Latin Capital Letter Middle-Welsh V -\U1EFD;Latin Small Letter Middle-Welsh V -\U1EFE;Latin Capital Letter Y With Loop -\U1EFF;Latin Small Letter Y With Loop -\U1F00;Greek Small Letter Alpha With Psili -\U1F01;Greek Small Letter Alpha With Dasia -\U1F02;Greek Small Letter Alpha With Psili And Varia -\U1F03;Greek Small Letter Alpha With Dasia And Varia -\U1F04;Greek Small Letter Alpha With Psili And Oxia -\U1F05;Greek Small Letter Alpha With Dasia And Oxia -\U1F06;Greek Small Letter Alpha With Psili And Perispomeni -\U1F07;Greek Small Letter Alpha With Dasia And Perispomeni -\U1F08;Greek Capital Letter Alpha With Psili -\U1F09;Greek Capital Letter Alpha With Dasia -\U1F0A;Greek Capital Letter Alpha With Psili And Varia -\U1F0B;Greek Capital Letter Alpha With Dasia And Varia -\U1F0C;Greek Capital Letter Alpha With Psili And Oxia -\U1F0D;Greek Capital Letter Alpha With Dasia And Oxia -\U1F0E;Greek Capital Letter Alpha With Psili And Perispomeni -\U1F0F;Greek Capital Letter Alpha With Dasia And Perispomeni -\U1F10;Greek Small Letter Epsilon With Psili -\U1F11;Greek Small Letter Epsilon With Dasia -\U1F12;Greek Small Letter Epsilon With Psili And Varia -\U1F13;Greek Small Letter Epsilon With Dasia And Varia -\U1F14;Greek Small Letter Epsilon With Psili And Oxia -\U1F15;Greek Small Letter Epsilon With Dasia And Oxia -\U1F18;Greek Capital Letter Epsilon With Psili -\U1F19;Greek Capital Letter Epsilon With Dasia -\U1F1A;Greek Capital Letter Epsilon With Psili And Varia -\U1F1B;Greek Capital Letter Epsilon With Dasia And Varia -\U1F1C;Greek Capital Letter Epsilon With Psili And Oxia -\U1F1D;Greek Capital Letter Epsilon With Dasia And Oxia -\U1F20;Greek Small Letter Eta With Psili -\U1F21;Greek Small Letter Eta With Dasia -\U1F22;Greek Small Letter Eta With Psili And Varia -\U1F23;Greek Small Letter Eta With Dasia And Varia -\U1F24;Greek Small Letter Eta With Psili And Oxia -\U1F25;Greek Small Letter Eta With Dasia And Oxia -\U1F26;Greek Small Letter Eta With Psili And Perispomeni -\U1F27;Greek Small Letter Eta With Dasia And Perispomeni -\U1F28;Greek Capital Letter Eta With Psili -\U1F29;Greek Capital Letter Eta With Dasia -\U1F2A;Greek Capital Letter Eta With Psili And Varia -\U1F2B;Greek Capital Letter Eta With Dasia And Varia -\U1F2C;Greek Capital Letter Eta With Psili And Oxia -\U1F2D;Greek Capital Letter Eta With Dasia And Oxia -\U1F2E;Greek Capital Letter Eta With Psili And Perispomeni -\U1F2F;Greek Capital Letter Eta With Dasia And Perispomeni -\U1F30;Greek Small Letter Iota With Psili -\U1F31;Greek Small Letter Iota With Dasia -\U1F32;Greek Small Letter Iota With Psili And Varia -\U1F33;Greek Small Letter Iota With Dasia And Varia -\U1F34;Greek Small Letter Iota With Psili And Oxia -\U1F35;Greek Small Letter Iota With Dasia And Oxia -\U1F36;Greek Small Letter Iota With Psili And Perispomeni -\U1F37;Greek Small Letter Iota With Dasia And Perispomeni -\U1F38;Greek Capital Letter Iota With Psili -\U1F39;Greek Capital Letter Iota With Dasia -\U1F3A;Greek Capital Letter Iota With Psili And Varia -\U1F3B;Greek Capital Letter Iota With Dasia And Varia -\U1F3C;Greek Capital Letter Iota With Psili And Oxia -\U1F3D;Greek Capital Letter Iota With Dasia And Oxia -\U1F3E;Greek Capital Letter Iota With Psili And Perispomeni -\U1F3F;Greek Capital Letter Iota With Dasia And Perispomeni -\U1F40;Greek Small Letter Omicron With Psili -\U1F41;Greek Small Letter Omicron With Dasia -\U1F42;Greek Small Letter Omicron With Psili And Varia -\U1F43;Greek Small Letter Omicron With Dasia And Varia -\U1F44;Greek Small Letter Omicron With Psili And Oxia -\U1F45;Greek Small Letter Omicron With Dasia And Oxia -\U1F48;Greek Capital Letter Omicron With Psili -\U1F49;Greek Capital Letter Omicron With Dasia -\U1F4A;Greek Capital Letter Omicron With Psili And Varia -\U1F4B;Greek Capital Letter Omicron With Dasia And Varia -\U1F4C;Greek Capital Letter Omicron With Psili And Oxia -\U1F4D;Greek Capital Letter Omicron With Dasia And Oxia -\U1F50;Greek Small Letter Upsilon With Psili -\U1F51;Greek Small Letter Upsilon With Dasia -\U1F52;Greek Small Letter Upsilon With Psili And Varia -\U1F53;Greek Small Letter Upsilon With Dasia And Varia -\U1F54;Greek Small Letter Upsilon With Psili And Oxia -\U1F55;Greek Small Letter Upsilon With Dasia And Oxia -\U1F56;Greek Small Letter Upsilon With Psili And Perispomeni -\U1F57;Greek Small Letter Upsilon With Dasia And Perispomeni -\U1F59;Greek Capital Letter Upsilon With Dasia -\U1F5B;Greek Capital Letter Upsilon With Dasia And Varia -\U1F5D;Greek Capital Letter Upsilon With Dasia And Oxia -\U1F5F;Greek Capital Letter Upsilon With Dasia And Perispomeni -\U1F60;Greek Small Letter Omega With Psili -\U1F61;Greek Small Letter Omega With Dasia -\U1F62;Greek Small Letter Omega With Psili And Varia -\U1F63;Greek Small Letter Omega With Dasia And Varia -\U1F64;Greek Small Letter Omega With Psili And Oxia -\U1F65;Greek Small Letter Omega With Dasia And Oxia -\U1F66;Greek Small Letter Omega With Psili And Perispomeni -\U1F67;Greek Small Letter Omega With Dasia And Perispomeni -\U1F68;Greek Capital Letter Omega With Psili -\U1F69;Greek Capital Letter Omega With Dasia -\U1F6A;Greek Capital Letter Omega With Psili And Varia -\U1F6B;Greek Capital Letter Omega With Dasia And Varia -\U1F6C;Greek Capital Letter Omega With Psili And Oxia -\U1F6D;Greek Capital Letter Omega With Dasia And Oxia -\U1F6E;Greek Capital Letter Omega With Psili And Perispomeni -\U1F6F;Greek Capital Letter Omega With Dasia And Perispomeni -\U1F70;Greek Small Letter Alpha With Varia -\U1F71;Greek Small Letter Alpha With Oxia -\U1F72;Greek Small Letter Epsilon With Varia -\U1F73;Greek Small Letter Epsilon With Oxia -\U1F74;Greek Small Letter Eta With Varia -\U1F75;Greek Small Letter Eta With Oxia -\U1F76;Greek Small Letter Iota With Varia -\U1F77;Greek Small Letter Iota With Oxia -\U1F78;Greek Small Letter Omicron With Varia -\U1F79;Greek Small Letter Omicron With Oxia -\U1F7A;Greek Small Letter Upsilon With Varia -\U1F7B;Greek Small Letter Upsilon With Oxia -\U1F7C;Greek Small Letter Omega With Varia -\U1F7D;Greek Small Letter Omega With Oxia -\U1F80;Greek Small Letter Alpha With Psili And Ypogegrammeni -\U1F81;Greek Small Letter Alpha With Dasia And Ypogegrammeni -\U1F82;Greek Small Letter Alpha With Psili And Varia And Ypogegrammeni -\U1F83;Greek Small Letter Alpha With Dasia And Varia And Ypogegrammeni -\U1F84;Greek Small Letter Alpha With Psili And Oxia And Ypogegrammeni -\U1F85;Greek Small Letter Alpha With Dasia And Oxia And Ypogegrammeni -\U1F86;Greek Small Letter Alpha With Psili And Perispomeni And Ypogegrammeni -\U1F87;Greek Small Letter Alpha With Dasia And Perispomeni And Ypogegrammeni -\U1F88;Greek Capital Letter Alpha With Psili And Prosgegrammeni -\U1F89;Greek Capital Letter Alpha With Dasia And Prosgegrammeni -\U1F8A;Greek Capital Letter Alpha With Psili And Varia And Prosgegrammeni -\U1F8B;Greek Capital Letter Alpha With Dasia And Varia And Prosgegrammeni -\U1F8C;Greek Capital Letter Alpha With Psili And Oxia And Prosgegrammeni -\U1F8D;Greek Capital Letter Alpha With Dasia And Oxia And Prosgegrammeni -\U1F8E;Greek Capital Letter Alpha With Psili And Perispomeni And Prosgegrammeni -\U1F8F;Greek Capital Letter Alpha With Dasia And Perispomeni And Prosgegrammeni -\U1F90;Greek Small Letter Eta With Psili And Ypogegrammeni -\U1F91;Greek Small Letter Eta With Dasia And Ypogegrammeni -\U1F92;Greek Small Letter Eta With Psili And Varia And Ypogegrammeni -\U1F93;Greek Small Letter Eta With Dasia And Varia And Ypogegrammeni -\U1F94;Greek Small Letter Eta With Psili And Oxia And Ypogegrammeni -\U1F95;Greek Small Letter Eta With Dasia And Oxia And Ypogegrammeni -\U1F96;Greek Small Letter Eta With Psili And Perispomeni And Ypogegrammeni -\U1F97;Greek Small Letter Eta With Dasia And Perispomeni And Ypogegrammeni -\U1F98;Greek Capital Letter Eta With Psili And Prosgegrammeni -\U1F99;Greek Capital Letter Eta With Dasia And Prosgegrammeni -\U1F9A;Greek Capital Letter Eta With Psili And Varia And Prosgegrammeni -\U1F9B;Greek Capital Letter Eta With Dasia And Varia And Prosgegrammeni -\U1F9C;Greek Capital Letter Eta With Psili And Oxia And Prosgegrammeni -\U1F9D;Greek Capital Letter Eta With Dasia And Oxia And Prosgegrammeni -\U1F9E;Greek Capital Letter Eta With Psili And Perispomeni And Prosgegrammeni -\U1F9F;Greek Capital Letter Eta With Dasia And Perispomeni And Prosgegrammeni -\U1FA0;Greek Small Letter Omega With Psili And Ypogegrammeni -\U1FA1;Greek Small Letter Omega With Dasia And Ypogegrammeni -\U1FA2;Greek Small Letter Omega With Psili And Varia And Ypogegrammeni -\U1FA3;Greek Small Letter Omega With Dasia And Varia And Ypogegrammeni -\U1FA4;Greek Small Letter Omega With Psili And Oxia And Ypogegrammeni -\U1FA5;Greek Small Letter Omega With Dasia And Oxia And Ypogegrammeni -\U1FA6;Greek Small Letter Omega With Psili And Perispomeni And Ypogegrammeni -\U1FA7;Greek Small Letter Omega With Dasia And Perispomeni And Ypogegrammeni -\U1FA8;Greek Capital Letter Omega With Psili And Prosgegrammeni -\U1FA9;Greek Capital Letter Omega With Dasia And Prosgegrammeni -\U1FAA;Greek Capital Letter Omega With Psili And Varia And Prosgegrammeni -\U1FAB;Greek Capital Letter Omega With Dasia And Varia And Prosgegrammeni -\U1FAC;Greek Capital Letter Omega With Psili And Oxia And Prosgegrammeni -\U1FAD;Greek Capital Letter Omega With Dasia And Oxia And Prosgegrammeni -\U1FAE;Greek Capital Letter Omega With Psili And Perispomeni And Prosgegrammeni -\U1FAF;Greek Capital Letter Omega With Dasia And Perispomeni And Prosgegrammeni -\U1FB0;Greek Small Letter Alpha With Vrachy -\U1FB1;Greek Small Letter Alpha With Macron -\U1FB2;Greek Small Letter Alpha With Varia And Ypogegrammeni -\U1FB3;Greek Small Letter Alpha With Ypogegrammeni -\U1FB4;Greek Small Letter Alpha With Oxia And Ypogegrammeni -\U1FB6;Greek Small Letter Alpha With Perispomeni -\U1FB7;Greek Small Letter Alpha With Perispomeni And Ypogegrammeni -\U1FB8;Greek Capital Letter Alpha With Vrachy -\U1FB9;Greek Capital Letter Alpha With Macron -\U1FBA;Greek Capital Letter Alpha With Varia -\U1FBB;Greek Capital Letter Alpha With Oxia -\U1FBC;Greek Capital Letter Alpha With Prosgegrammeni -\U1FBD;Greek Koronis -\U1FBE;Greek Prosgegrammeni -\U1FBF;Greek Psili -\U1FC0;Greek Perispomeni -\U1FC1;Greek Dialytika And Perispomeni -\U1FC2;Greek Small Letter Eta With Varia And Ypogegrammeni -\U1FC3;Greek Small Letter Eta With Ypogegrammeni -\U1FC4;Greek Small Letter Eta With Oxia And Ypogegrammeni -\U1FC6;Greek Small Letter Eta With Perispomeni -\U1FC7;Greek Small Letter Eta With Perispomeni And Ypogegrammeni -\U1FC8;Greek Capital Letter Epsilon With Varia -\U1FC9;Greek Capital Letter Epsilon With Oxia -\U1FCA;Greek Capital Letter Eta With Varia -\U1FCB;Greek Capital Letter Eta With Oxia -\U1FCC;Greek Capital Letter Eta With Prosgegrammeni -\U1FCD;Greek Psili And Varia -\U1FCE;Greek Psili And Oxia -\U1FCF;Greek Psili And Perispomeni -\U1FD0;Greek Small Letter Iota With Vrachy -\U1FD1;Greek Small Letter Iota With Macron -\U1FD2;Greek Small Letter Iota With Dialytika And Varia -\U1FD3;Greek Small Letter Iota With Dialytika And Oxia -\U1FD6;Greek Small Letter Iota With Perispomeni -\U1FD7;Greek Small Letter Iota With Dialytika And Perispomeni -\U1FD8;Greek Capital Letter Iota With Vrachy -\U1FD9;Greek Capital Letter Iota With Macron -\U1FDA;Greek Capital Letter Iota With Varia -\U1FDB;Greek Capital Letter Iota With Oxia -\U1FDD;Greek Dasia And Varia -\U1FDE;Greek Dasia And Oxia -\U1FDF;Greek Dasia And Perispomeni -\U1FE0;Greek Small Letter Upsilon With Vrachy -\U1FE1;Greek Small Letter Upsilon With Macron -\U1FE2;Greek Small Letter Upsilon With Dialytika And Varia -\U1FE3;Greek Small Letter Upsilon With Dialytika And Oxia -\U1FE4;Greek Small Letter Rho With Psili -\U1FE5;Greek Small Letter Rho With Dasia -\U1FE6;Greek Small Letter Upsilon With Perispomeni -\U1FE7;Greek Small Letter Upsilon With Dialytika And Perispomeni -\U1FE8;Greek Capital Letter Upsilon With Vrachy -\U1FE9;Greek Capital Letter Upsilon With Macron -\U1FEA;Greek Capital Letter Upsilon With Varia -\U1FEB;Greek Capital Letter Upsilon With Oxia -\U1FEC;Greek Capital Letter Rho With Dasia -\U1FED;Greek Dialytika And Varia -\U1FEE;Greek Dialytika And Oxia -\U1FEF;Greek Varia -\U1FF2;Greek Small Letter Omega With Varia And Ypogegrammeni -\U1FF3;Greek Small Letter Omega With Ypogegrammeni -\U1FF4;Greek Small Letter Omega With Oxia And Ypogegrammeni -\U1FF6;Greek Small Letter Omega With Perispomeni -\U1FF7;Greek Small Letter Omega With Perispomeni And Ypogegrammeni -\U1FF8;Greek Capital Letter Omicron With Varia -\U1FF9;Greek Capital Letter Omicron With Oxia -\U1FFA;Greek Capital Letter Omega With Varia -\U1FFB;Greek Capital Letter Omega With Oxia -\U1FFC;Greek Capital Letter Omega With Prosgegrammeni -\U1FFD;Greek Oxia -\U1FFE;Greek Dasia -\U2000;En Quad -\U2001;Em Quad -\U2002;En Space -\U2003;Em Space -\U2004;Three-Per-Em Space -\U2005;Four-Per-Em Space -\U2006;Six-Per-Em Space -\U2007;Figure Space -\U2008;Punctuation Space -\U2009;Thin Space -\U200A;Hair Space -\U200B;Zero Width Space -\U200C;Zero Width Non-Joiner -\U200D;Zero Width Joiner -\U200E;Left-To-Right Mark -\U200F;Right-To-Left Mark -\U2010;Hyphen -\U2011;Non-Breaking Hyphen -\U2012;Figure Dash -\U2013;En Dash -\U2014;Em Dash -\U2015;Horizontal Bar -\U2016;Double Vertical Line -\U2017;Double Low Line -\U2018;Left Single Quotation Mark -\U2019;Right Single Quotation Mark -\U201A;Single Low-9 Quotation Mark -\U201B;Single High-Reversed-9 Quotation Mark -\U201C;Left Double Quotation Mark -\U201D;Right Double Quotation Mark -\U201E;Double Low-9 Quotation Mark -\U201F;Double High-Reversed-9 Quotation Mark -\U2020;Dagger -\U2021;Double Dagger -\U2022;Bullet -\U2023;Triangular Bullet -\U2024;One Dot Leader -\U2025;Two Dot Leader -\U2026;Horizontal Ellipsis -\U2027;Hyphenation Point -\U2028;Line Separator -\U2029;Paragraph Separator -\U202A;Left-To-Right Embedding -\U202B;Right-To-Left Embedding -\U202C;Pop Directional Formatting -\U202D;Left-To-Right Override -\U202E;Right-To-Left Override -\U202F;Narrow No-Break Space -\U2030;Per Mille Sign -\U2031;Per Ten Thousand Sign -\U2032;Prime -\U2033;Double Prime -\U2034;Triple Prime -\U2035;Reversed Prime -\U2036;Reversed Double Prime -\U2037;Reversed Triple Prime -\U2038;Caret -\U2039;Single Left-Pointing Angle Quotation Mark -\U203A;Single Right-Pointing Angle Quotation Mark -\U203B;Reference Mark -\U203C;Double Exclamation Mark -\U203D;Interrobang -\U203E;Overline -\U203F;Undertie -\U2040;Character Tie -\U2041;Caret Insertion Point -\U2042;Asterism -\U2043;Hyphen Bullet -\U2044;Fraction Slash -\U2045;Left Square Bracket With Quill -\U2046;Right Square Bracket With Quill -\U2047;Double Question Mark -\U2048;Question Exclamation Mark -\U2049;Exclamation Question Mark -\U204A;Tironian Sign Et -\U204B;Reversed Pilcrow Sign -\U204C;Black Leftwards Bullet -\U204D;Black Rightwards Bullet -\U204E;Low Asterisk -\U204F;Reversed Semicolon -\U2050;Close Up -\U2051;Two Asterisks Aligned Vertically -\U2052;Commercial Minus Sign -\U2053;Swung Dash -\U2054;Inverted Undertie -\U2055;Flower Punctuation Mark -\U2056;Three Dot Punctuation -\U2057;Quadruple Prime -\U2058;Four Dot Punctuation -\U2059;Five Dot Punctuation -\U205A;Two Dot Punctuation -\U205B;Four Dot Mark -\U205C;Dotted Cross -\U205D;Tricolon -\U205E;Vertical Four Dots -\U205F;Medium Mathematical Space -\U2060;Word Joiner -\U2061;Function Application -\U2062;Invisible Times -\U2063;Invisible Separator -\U2064;Invisible Plus -\U2066;Left-To-Right Isolate -\U2067;Right-To-Left Isolate -\U2068;First Strong Isolate -\U2069;Pop Directional Isolate -\U206A;Inhibit Symmetric Swapping -\U206B;Activate Symmetric Swapping -\U206C;Inhibit Arabic Form Shaping -\U206D;Activate Arabic Form Shaping -\U206E;National Digit Shapes -\U206F;Nominal Digit Shapes -\U2070;Superscript Zero -\U2071;Superscript Latin Small Letter I -\U2074;Superscript Four -\U2075;Superscript Five -\U2076;Superscript Six -\U2077;Superscript Seven -\U2078;Superscript Eight -\U2079;Superscript Nine -\U207A;Superscript Plus Sign -\U207B;Superscript Minus -\U207C;Superscript Equals Sign -\U207D;Superscript Left Parenthesis -\U207E;Superscript Right Parenthesis -\U207F;Superscript Latin Small Letter N -\U2080;Subscript Zero -\U2081;Subscript One -\U2082;Subscript Two -\U2083;Subscript Three -\U2084;Subscript Four -\U2085;Subscript Five -\U2086;Subscript Six -\U2087;Subscript Seven -\U2088;Subscript Eight -\U2089;Subscript Nine -\U208A;Subscript Plus Sign -\U208B;Subscript Minus -\U208C;Subscript Equals Sign -\U208D;Subscript Left Parenthesis -\U208E;Subscript Right Parenthesis -\U2090;Latin Subscript Small Letter A -\U2091;Latin Subscript Small Letter E -\U2092;Latin Subscript Small Letter O -\U2093;Latin Subscript Small Letter X -\U2094;Latin Subscript Small Letter Schwa -\U2095;Latin Subscript Small Letter H -\U2096;Latin Subscript Small Letter K -\U2097;Latin Subscript Small Letter L -\U2098;Latin Subscript Small Letter M -\U2099;Latin Subscript Small Letter N -\U209A;Latin Subscript Small Letter P -\U209B;Latin Subscript Small Letter S -\U209C;Latin Subscript Small Letter T -\U20A0;Euro-Currency Sign -\U20A1;Colon Sign -\U20A2;Cruzeiro Sign -\U20A3;French Franc Sign -\U20A4;Lira Sign -\U20A5;Mill Sign -\U20A6;Naira Sign -\U20A7;Peseta Sign -\U20A8;Rupee Sign -\U20A9;Won Sign -\U20AA;New Sheqel Sign -\U20AB;Dong Sign -\U20AC;Euro Sign -\U20AD;Kip Sign -\U20AE;Tugrik Sign -\U20AF;Drachma Sign -\U20B0;German Penny Sign -\U20B1;Peso Sign -\U20B2;Guarani Sign -\U20B3;Austral Sign -\U20B4;Hryvnia Sign -\U20B5;Cedi Sign -\U20B6;Livre Tournois Sign -\U20B7;Spesmilo Sign -\U20B8;Tenge Sign -\U20B9;Indian Rupee Sign -\U20BA;Turkish Lira Sign -\U20BB;Nordic Mark Sign -\U20BC;Manat Sign -\U20BD;Ruble Sign -\U20BE;Lari Sign -\U20BF;Bitcoin Sign -\U20C0;Som Sign -\U20D0;Combining Left Harpoon Above -\U20D1;Combining Right Harpoon Above -\U20D2;Combining Long Vertical Line Overlay -\U20D3;Combining Short Vertical Line Overlay -\U20D4;Combining Anticlockwise Arrow Above -\U20D5;Combining Clockwise Arrow Above -\U20D6;Combining Left Arrow Above -\U20D7;Combining Right Arrow Above -\U20D8;Combining Ring Overlay -\U20D9;Combining Clockwise Ring Overlay -\U20DA;Combining Anticlockwise Ring Overlay -\U20DB;Combining Three Dots Above -\U20DC;Combining Four Dots Above -\U20DD;Combining Enclosing Circle -\U20DE;Combining Enclosing Square -\U20DF;Combining Enclosing Diamond -\U20E0;Combining Enclosing Circle Backslash -\U20E1;Combining Left Right Arrow Above -\U20E2;Combining Enclosing Screen -\U20E3;Combining Enclosing Keycap -\U20E4;Combining Enclosing Upward Pointing Triangle -\U20E5;Combining Reverse Solidus Overlay -\U20E6;Combining Double Vertical Stroke Overlay -\U20E7;Combining Annuity Symbol -\U20E8;Combining Triple Underdot -\U20E9;Combining Wide Bridge Above -\U20EA;Combining Leftwards Arrow Overlay -\U20EB;Combining Long Double Solidus Overlay -\U20EC;Combining Rightwards Harpoon With Barb Downwards -\U20ED;Combining Leftwards Harpoon With Barb Downwards -\U20EE;Combining Left Arrow Below -\U20EF;Combining Right Arrow Below -\U20F0;Combining Asterisk Above -\U2100;Account Of -\U2101;Addressed To The Subject -\U2102;Double-Struck Capital C -\U2103;Degree Celsius -\U2104;Centre Line Symbol -\U2105;Care Of -\U2106;Cada Una -\U2107;Euler Constant -\U2108;Scruple -\U2109;Degree Fahrenheit -\U210A;Script Small G -\U210B;Script Capital H -\U210C;Black-Letter Capital H -\U210D;Double-Struck Capital H -\U210E;Planck Constant -\U210F;Planck Constant Over Two Pi -\U2110;Script Capital I -\U2111;Black-Letter Capital I -\U2112;Script Capital L -\U2113;Script Small L -\U2114;L B Bar Symbol -\U2115;Double-Struck Capital N -\U2116;Numero Sign -\U2117;Sound Recording Copyright -\U2118;Script Capital P -\U2119;Double-Struck Capital P -\U211A;Double-Struck Capital Q -\U211B;Script Capital R -\U211C;Black-Letter Capital R -\U211D;Double-Struck Capital R -\U211E;Prescription Take -\U211F;Response -\U2120;Service Mark -\U2121;Telephone Sign -\U2122;Trade Mark Sign -\U2123;Versicle -\U2124;Double-Struck Capital Z -\U2125;Ounce Sign -\U2126;Ohm Sign -\U2127;Inverted Ohm Sign -\U2128;Black-Letter Capital Z -\U2129;Turned Greek Small Letter Iota -\U212A;Kelvin Sign -\U212B;Angstrom Sign -\U212C;Script Capital B -\U212D;Black-Letter Capital C -\U212E;Estimated Symbol -\U212F;Script Small E -\U2130;Script Capital E -\U2131;Script Capital F -\U2132;Turned Capital F -\U2133;Script Capital M -\U2134;Script Small O -\U2135;Alef Symbol -\U2136;Bet Symbol -\U2137;Gimel Symbol -\U2138;Dalet Symbol -\U2139;Information Source -\U213A;Rotated Capital Q -\U213B;Facsimile Sign -\U213C;Double-Struck Small Pi -\U213D;Double-Struck Small Gamma -\U213E;Double-Struck Capital Gamma -\U213F;Double-Struck Capital Pi -\U2140;Double-Struck N-Ary Summation -\U2141;Turned Sans-Serif Capital G -\U2142;Turned Sans-Serif Capital L -\U2143;Reversed Sans-Serif Capital L -\U2144;Turned Sans-Serif Capital Y -\U2145;Double-Struck Italic Capital D -\U2146;Double-Struck Italic Small D -\U2147;Double-Struck Italic Small E -\U2148;Double-Struck Italic Small I -\U2149;Double-Struck Italic Small J -\U214A;Property Line -\U214B;Turned Ampersand -\U214C;Per Sign -\U214D;Aktieselskab -\U214E;Turned Small F -\U214F;Symbol For Samaritan Source -\U2150;Vulgar Fraction One Seventh -\U2151;Vulgar Fraction One Ninth -\U2152;Vulgar Fraction One Tenth -\U2153;Vulgar Fraction One Third -\U2154;Vulgar Fraction Two Thirds -\U2155;Vulgar Fraction One Fifth -\U2156;Vulgar Fraction Two Fifths -\U2157;Vulgar Fraction Three Fifths -\U2158;Vulgar Fraction Four Fifths -\U2159;Vulgar Fraction One Sixth -\U215A;Vulgar Fraction Five Sixths -\U215B;Vulgar Fraction One Eighth -\U215C;Vulgar Fraction Three Eighths -\U215D;Vulgar Fraction Five Eighths -\U215E;Vulgar Fraction Seven Eighths -\U215F;Fraction Numerator One -\U2160;Roman Numeral One -\U2161;Roman Numeral Two -\U2162;Roman Numeral Three -\U2163;Roman Numeral Four -\U2164;Roman Numeral Five -\U2165;Roman Numeral Six -\U2166;Roman Numeral Seven -\U2167;Roman Numeral Eight -\U2168;Roman Numeral Nine -\U2169;Roman Numeral Ten -\U216A;Roman Numeral Eleven -\U216B;Roman Numeral Twelve -\U216C;Roman Numeral Fifty -\U216D;Roman Numeral One Hundred -\U216E;Roman Numeral Five Hundred -\U216F;Roman Numeral One Thousand -\U2170;Small Roman Numeral One -\U2171;Small Roman Numeral Two -\U2172;Small Roman Numeral Three -\U2173;Small Roman Numeral Four -\U2174;Small Roman Numeral Five -\U2175;Small Roman Numeral Six -\U2176;Small Roman Numeral Seven -\U2177;Small Roman Numeral Eight -\U2178;Small Roman Numeral Nine -\U2179;Small Roman Numeral Ten -\U217A;Small Roman Numeral Eleven -\U217B;Small Roman Numeral Twelve -\U217C;Small Roman Numeral Fifty -\U217D;Small Roman Numeral One Hundred -\U217E;Small Roman Numeral Five Hundred -\U217F;Small Roman Numeral One Thousand -\U2180;Roman Numeral One Thousand C D -\U2181;Roman Numeral Five Thousand -\U2182;Roman Numeral Ten Thousand -\U2183;Roman Numeral Reversed One Hundred -\U2184;Latin Small Letter Reversed C -\U2185;Roman Numeral Six Late Form -\U2186;Roman Numeral Fifty Early Form -\U2187;Roman Numeral Fifty Thousand -\U2188;Roman Numeral One Hundred Thousand -\U2189;Vulgar Fraction Zero Thirds -\U218A;Turned Digit Two -\U218B;Turned Digit Three -\U2190;Leftwards Arrow -\U2191;Upwards Arrow -\U2192;Rightwards Arrow -\U2193;Downwards Arrow -\U2194;Left Right Arrow -\U2195;Up Down Arrow -\U2196;North West Arrow -\U2197;North East Arrow -\U2198;South East Arrow -\U2199;South West Arrow -\U219A;Leftwards Arrow With Stroke -\U219B;Rightwards Arrow With Stroke -\U219C;Leftwards Wave Arrow -\U219D;Rightwards Wave Arrow -\U219E;Leftwards Two Headed Arrow -\U219F;Upwards Two Headed Arrow -\U21A0;Rightwards Two Headed Arrow -\U21A1;Downwards Two Headed Arrow -\U21A2;Leftwards Arrow With Tail -\U21A3;Rightwards Arrow With Tail -\U21A4;Leftwards Arrow From Bar -\U21A5;Upwards Arrow From Bar -\U21A6;Rightwards Arrow From Bar -\U21A7;Downwards Arrow From Bar -\U21A8;Up Down Arrow With Base -\U21A9;Leftwards Arrow With Hook -\U21AA;Rightwards Arrow With Hook -\U21AB;Leftwards Arrow With Loop -\U21AC;Rightwards Arrow With Loop -\U21AD;Left Right Wave Arrow -\U21AE;Left Right Arrow With Stroke -\U21AF;Downwards Zigzag Arrow -\U21B0;Upwards Arrow With Tip Leftwards -\U21B1;Upwards Arrow With Tip Rightwards -\U21B2;Downwards Arrow With Tip Leftwards -\U21B3;Downwards Arrow With Tip Rightwards -\U21B4;Rightwards Arrow With Corner Downwards -\U21B5;Downwards Arrow With Corner Leftwards -\U21B6;Anticlockwise Top Semicircle Arrow -\U21B7;Clockwise Top Semicircle Arrow -\U21B8;North West Arrow To Long Bar -\U21B9;Leftwards Arrow To Bar Over Rightwards Arrow To Bar -\U21BA;Anticlockwise Open Circle Arrow -\U21BB;Clockwise Open Circle Arrow -\U21BC;Leftwards Harpoon With Barb Upwards -\U21BD;Leftwards Harpoon With Barb Downwards -\U21BE;Upwards Harpoon With Barb Rightwards -\U21BF;Upwards Harpoon With Barb Leftwards -\U21C0;Rightwards Harpoon With Barb Upwards -\U21C1;Rightwards Harpoon With Barb Downwards -\U21C2;Downwards Harpoon With Barb Rightwards -\U21C3;Downwards Harpoon With Barb Leftwards -\U21C4;Rightwards Arrow Over Leftwards Arrow -\U21C5;Upwards Arrow Leftwards Of Downwards Arrow -\U21C6;Leftwards Arrow Over Rightwards Arrow -\U21C7;Leftwards Paired Arrows -\U21C8;Upwards Paired Arrows -\U21C9;Rightwards Paired Arrows -\U21CA;Downwards Paired Arrows -\U21CB;Leftwards Harpoon Over Rightwards Harpoon -\U21CC;Rightwards Harpoon Over Leftwards Harpoon -\U21CD;Leftwards Double Arrow With Stroke -\U21CE;Left Right Double Arrow With Stroke -\U21CF;Rightwards Double Arrow With Stroke -\U21D0;Leftwards Double Arrow -\U21D1;Upwards Double Arrow -\U21D2;Rightwards Double Arrow -\U21D3;Downwards Double Arrow -\U21D4;Left Right Double Arrow -\U21D5;Up Down Double Arrow -\U21D6;North West Double Arrow -\U21D7;North East Double Arrow -\U21D8;South East Double Arrow -\U21D9;South West Double Arrow -\U21DA;Leftwards Triple Arrow -\U21DB;Rightwards Triple Arrow -\U21DC;Leftwards Squiggle Arrow -\U21DD;Rightwards Squiggle Arrow -\U21DE;Upwards Arrow With Double Stroke -\U21DF;Downwards Arrow With Double Stroke -\U21E0;Leftwards Dashed Arrow -\U21E1;Upwards Dashed Arrow -\U21E2;Rightwards Dashed Arrow -\U21E3;Downwards Dashed Arrow -\U21E4;Leftwards Arrow To Bar -\U21E5;Rightwards Arrow To Bar -\U21E6;Leftwards White Arrow -\U21E7;Upwards White Arrow -\U21E8;Rightwards White Arrow -\U21E9;Downwards White Arrow -\U21EA;Upwards White Arrow From Bar -\U21EB;Upwards White Arrow On Pedestal -\U21EC;Upwards White Arrow On Pedestal With Horizontal Bar -\U21ED;Upwards White Arrow On Pedestal With Vertical Bar -\U21EE;Upwards White Double Arrow -\U21EF;Upwards White Double Arrow On Pedestal -\U21F0;Rightwards White Arrow From Wall -\U21F1;North West Arrow To Corner -\U21F2;South East Arrow To Corner -\U21F3;Up Down White Arrow -\U21F4;Right Arrow With Small Circle -\U21F5;Downwards Arrow Leftwards Of Upwards Arrow -\U21F6;Three Rightwards Arrows -\U21F7;Leftwards Arrow With Vertical Stroke -\U21F8;Rightwards Arrow With Vertical Stroke -\U21F9;Left Right Arrow With Vertical Stroke -\U21FA;Leftwards Arrow With Double Vertical Stroke -\U21FB;Rightwards Arrow With Double Vertical Stroke -\U21FC;Left Right Arrow With Double Vertical Stroke -\U21FD;Leftwards Open-Headed Arrow -\U21FE;Rightwards Open-Headed Arrow -\U21FF;Left Right Open-Headed Arrow -\U2200;For All -\U2201;Complement -\U2202;Partial Differential -\U2203;There Exists -\U2204;There Does Not Exist -\U2205;Empty Set -\U2206;Increment -\U2207;Nabla -\U2208;Element Of -\U2209;Not An Element Of -\U220A;Small Element Of -\U220B;Contains As Member -\U220C;Does Not Contain As Member -\U220D;Small Contains As Member -\U220E;End Of Proof -\U220F;N-Ary Product -\U2210;N-Ary Coproduct -\U2211;N-Ary Summation -\U2212;Minus Sign -\U2213;Minus-Or-Plus Sign -\U2214;Dot Plus -\U2215;Division Slash -\U2216;Set Minus -\U2217;Asterisk Operator -\U2218;Ring Operator -\U2219;Bullet Operator -\U221A;Square Root -\U221B;Cube Root -\U221C;Fourth Root -\U221D;Proportional To -\U221E;Infinity -\U221F;Right Angle -\U2220;Angle -\U2221;Measured Angle -\U2222;Spherical Angle -\U2223;Divides -\U2224;Does Not Divide -\U2225;Parallel To -\U2226;Not Parallel To -\U2227;Logical And -\U2228;Logical Or -\U2229;Intersection -\U222A;Union -\U222B;Integral -\U222C;Double Integral -\U222D;Triple Integral -\U222E;Contour Integral -\U222F;Surface Integral -\U2230;Volume Integral -\U2231;Clockwise Integral -\U2232;Clockwise Contour Integral -\U2233;Anticlockwise Contour Integral -\U2234;Therefore -\U2235;Because -\U2236;Ratio -\U2237;Proportion -\U2238;Dot Minus -\U2239;Excess -\U223A;Geometric Proportion -\U223B;Homothetic -\U223C;Tilde Operator -\U223D;Reversed Tilde -\U223E;Inverted Lazy S -\U223F;Sine Wave -\U2240;Wreath Product -\U2241;Not Tilde -\U2242;Minus Tilde -\U2243;Asymptotically Equal To -\U2244;Not Asymptotically Equal To -\U2245;Approximately Equal To -\U2246;Approximately But Not Actually Equal To -\U2247;Neither Approximately Nor Actually Equal To -\U2248;Almost Equal To -\U2249;Not Almost Equal To -\U224A;Almost Equal Or Equal To -\U224B;Triple Tilde -\U224C;All Equal To -\U224D;Equivalent To -\U224E;Geometrically Equivalent To -\U224F;Difference Between -\U2250;Approaches The Limit -\U2251;Geometrically Equal To -\U2252;Approximately Equal To Or The Image Of -\U2253;Image Of Or Approximately Equal To -\U2254;Colon Equals -\U2255;Equals Colon -\U2256;Ring In Equal To -\U2257;Ring Equal To -\U2258;Corresponds To -\U2259;Estimates -\U225A;Equiangular To -\U225B;Star Equals -\U225C;Delta Equal To -\U225D;Equal To By Definition -\U225E;Measured By -\U225F;Questioned Equal To -\U2260;Not Equal To -\U2261;Identical To -\U2262;Not Identical To -\U2263;Strictly Equivalent To -\U2264;Less-Than Or Equal To -\U2265;Greater-Than Or Equal To -\U2266;Less-Than Over Equal To -\U2267;Greater-Than Over Equal To -\U2268;Less-Than But Not Equal To -\U2269;Greater-Than But Not Equal To -\U226A;Much Less-Than -\U226B;Much Greater-Than -\U226C;Between -\U226D;Not Equivalent To -\U226E;Not Less-Than -\U226F;Not Greater-Than -\U2270;Neither Less-Than Nor Equal To -\U2271;Neither Greater-Than Nor Equal To -\U2272;Less-Than Or Equivalent To -\U2273;Greater-Than Or Equivalent To -\U2274;Neither Less-Than Nor Equivalent To -\U2275;Neither Greater-Than Nor Equivalent To -\U2276;Less-Than Or Greater-Than -\U2277;Greater-Than Or Less-Than -\U2278;Neither Less-Than Nor Greater-Than -\U2279;Neither Greater-Than Nor Less-Than -\U227A;Precedes -\U227B;Succeeds -\U227C;Precedes Or Equal To -\U227D;Succeeds Or Equal To -\U227E;Precedes Or Equivalent To -\U227F;Succeeds Or Equivalent To -\U2280;Does Not Precede -\U2281;Does Not Succeed -\U2282;Subset Of -\U2283;Superset Of -\U2284;Not A Subset Of -\U2285;Not A Superset Of -\U2286;Subset Of Or Equal To -\U2287;Superset Of Or Equal To -\U2288;Neither A Subset Of Nor Equal To -\U2289;Neither A Superset Of Nor Equal To -\U228A;Subset Of With Not Equal To -\U228B;Superset Of With Not Equal To -\U228C;Multiset -\U228D;Multiset Multiplication -\U228E;Multiset Union -\U228F;Square Image Of -\U2290;Square Original Of -\U2291;Square Image Of Or Equal To -\U2292;Square Original Of Or Equal To -\U2293;Square Cap -\U2294;Square Cup -\U2295;Circled Plus -\U2296;Circled Minus -\U2297;Circled Times -\U2298;Circled Division Slash -\U2299;Circled Dot Operator -\U229A;Circled Ring Operator -\U229B;Circled Asterisk Operator -\U229C;Circled Equals -\U229D;Circled Dash -\U229E;Squared Plus -\U229F;Squared Minus -\U22A0;Squared Times -\U22A1;Squared Dot Operator -\U22A2;Right Tack -\U22A3;Left Tack -\U22A4;Down Tack -\U22A5;Up Tack -\U22A6;Assertion -\U22A7;Models -\U22A8;True -\U22A9;Forces -\U22AA;Triple Vertical Bar Right Turnstile -\U22AB;Double Vertical Bar Double Right Turnstile -\U22AC;Does Not Prove -\U22AD;Not True -\U22AE;Does Not Force -\U22AF;Negated Double Vertical Bar Double Right Turnstile -\U22B0;Precedes Under Relation -\U22B1;Succeeds Under Relation -\U22B2;Normal Subgroup Of -\U22B3;Contains As Normal Subgroup -\U22B4;Normal Subgroup Of Or Equal To -\U22B5;Contains As Normal Subgroup Or Equal To -\U22B6;Original Of -\U22B7;Image Of -\U22B8;Multimap -\U22B9;Hermitian Conjugate Matrix -\U22BA;Intercalate -\U22BB;Xor -\U22BC;Nand -\U22BD;Nor -\U22BE;Right Angle With Arc -\U22BF;Right Triangle -\U22C0;N-Ary Logical And -\U22C1;N-Ary Logical Or -\U22C2;N-Ary Intersection -\U22C3;N-Ary Union -\U22C4;Diamond Operator -\U22C5;Dot Operator -\U22C6;Star Operator -\U22C7;Division Times -\U22C8;Bowtie -\U22C9;Left Normal Factor Semidirect Product -\U22CA;Right Normal Factor Semidirect Product -\U22CB;Left Semidirect Product -\U22CC;Right Semidirect Product -\U22CD;Reversed Tilde Equals -\U22CE;Curly Logical Or -\U22CF;Curly Logical And -\U22D0;Double Subset -\U22D1;Double Superset -\U22D2;Double Intersection -\U22D3;Double Union -\U22D4;Pitchfork -\U22D5;Equal And Parallel To -\U22D6;Less-Than With Dot -\U22D7;Greater-Than With Dot -\U22D8;Very Much Less-Than -\U22D9;Very Much Greater-Than -\U22DA;Less-Than Equal To Or Greater-Than -\U22DB;Greater-Than Equal To Or Less-Than -\U22DC;Equal To Or Less-Than -\U22DD;Equal To Or Greater-Than -\U22DE;Equal To Or Precedes -\U22DF;Equal To Or Succeeds -\U22E0;Does Not Precede Or Equal -\U22E1;Does Not Succeed Or Equal -\U22E2;Not Square Image Of Or Equal To -\U22E3;Not Square Original Of Or Equal To -\U22E4;Square Image Of Or Not Equal To -\U22E5;Square Original Of Or Not Equal To -\U22E6;Less-Than But Not Equivalent To -\U22E7;Greater-Than But Not Equivalent To -\U22E8;Precedes But Not Equivalent To -\U22E9;Succeeds But Not Equivalent To -\U22EA;Not Normal Subgroup Of -\U22EB;Does Not Contain As Normal Subgroup -\U22EC;Not Normal Subgroup Of Or Equal To -\U22ED;Does Not Contain As Normal Subgroup Or Equal -\U22EE;Vertical Ellipsis -\U22EF;Midline Horizontal Ellipsis -\U22F0;Up Right Diagonal Ellipsis -\U22F1;Down Right Diagonal Ellipsis -\U22F2;Element Of With Long Horizontal Stroke -\U22F3;Element Of With Vertical Bar At End Of Horizontal Stroke -\U22F4;Small Element Of With Vertical Bar At End Of Horizontal Stroke -\U22F5;Element Of With Dot Above -\U22F6;Element Of With Overbar -\U22F7;Small Element Of With Overbar -\U22F8;Element Of With Underbar -\U22F9;Element Of With Two Horizontal Strokes -\U22FA;Contains With Long Horizontal Stroke -\U22FB;Contains With Vertical Bar At End Of Horizontal Stroke -\U22FC;Small Contains With Vertical Bar At End Of Horizontal Stroke -\U22FD;Contains With Overbar -\U22FE;Small Contains With Overbar -\U22FF;Z Notation Bag Membership -\U2300;Diameter Sign -\U2301;Electric Arrow -\U2302;House -\U2303;Up Arrowhead -\U2304;Down Arrowhead -\U2305;Projective -\U2306;Perspective -\U2307;Wavy Line -\U2308;Left Ceiling -\U2309;Right Ceiling -\U230A;Left Floor -\U230B;Right Floor -\U230C;Bottom Right Crop -\U230D;Bottom Left Crop -\U230E;Top Right Crop -\U230F;Top Left Crop -\U2310;Reversed Not Sign -\U2311;Square Lozenge -\U2312;Arc -\U2313;Segment -\U2314;Sector -\U2315;Telephone Recorder -\U2316;Position Indicator -\U2317;Viewdata Square -\U2318;Place Of Interest Sign -\U2319;Turned Not Sign -\U231A;Watch -\U231B;Hourglass -\U231C;Top Left Corner -\U231D;Top Right Corner -\U231E;Bottom Left Corner -\U231F;Bottom Right Corner -\U2320;Top Half Integral -\U2321;Bottom Half Integral -\U2322;Frown -\U2323;Smile -\U2324;Up Arrowhead Between Two Horizontal Bars -\U2325;Option Key -\U2326;Erase To The Right -\U2327;X In A Rectangle Box -\U2328;Keyboard -\U2329;Left-Pointing Angle Bracket -\U232A;Right-Pointing Angle Bracket -\U232B;Erase To The Left -\U232C;Benzene Ring -\U232D;Cylindricity -\U232E;All Around-Profile -\U232F;Symmetry -\U2330;Total Runout -\U2331;Dimension Origin -\U2332;Conical Taper -\U2333;Slope -\U2334;Counterbore -\U2335;Countersink -\U2336;Apl Functional Symbol I-Beam -\U2337;Apl Functional Symbol Squish Quad -\U2338;Apl Functional Symbol Quad Equal -\U2339;Apl Functional Symbol Quad Divide -\U233A;Apl Functional Symbol Quad Diamond -\U233B;Apl Functional Symbol Quad Jot -\U233C;Apl Functional Symbol Quad Circle -\U233D;Apl Functional Symbol Circle Stile -\U233E;Apl Functional Symbol Circle Jot -\U233F;Apl Functional Symbol Slash Bar -\U2340;Apl Functional Symbol Backslash Bar -\U2341;Apl Functional Symbol Quad Slash -\U2342;Apl Functional Symbol Quad Backslash -\U2343;Apl Functional Symbol Quad Less-Than -\U2344;Apl Functional Symbol Quad Greater-Than -\U2345;Apl Functional Symbol Leftwards Vane -\U2346;Apl Functional Symbol Rightwards Vane -\U2347;Apl Functional Symbol Quad Leftwards Arrow -\U2348;Apl Functional Symbol Quad Rightwards Arrow -\U2349;Apl Functional Symbol Circle Backslash -\U234A;Apl Functional Symbol Down Tack Underbar -\U234B;Apl Functional Symbol Delta Stile -\U234C;Apl Functional Symbol Quad Down Caret -\U234D;Apl Functional Symbol Quad Delta -\U234E;Apl Functional Symbol Down Tack Jot -\U234F;Apl Functional Symbol Upwards Vane -\U2350;Apl Functional Symbol Quad Upwards Arrow -\U2351;Apl Functional Symbol Up Tack Overbar -\U2352;Apl Functional Symbol Del Stile -\U2353;Apl Functional Symbol Quad Up Caret -\U2354;Apl Functional Symbol Quad Del -\U2355;Apl Functional Symbol Up Tack Jot -\U2356;Apl Functional Symbol Downwards Vane -\U2357;Apl Functional Symbol Quad Downwards Arrow -\U2358;Apl Functional Symbol Quote Underbar -\U2359;Apl Functional Symbol Delta Underbar -\U235A;Apl Functional Symbol Diamond Underbar -\U235B;Apl Functional Symbol Jot Underbar -\U235C;Apl Functional Symbol Circle Underbar -\U235D;Apl Functional Symbol Up Shoe Jot -\U235E;Apl Functional Symbol Quote Quad -\U235F;Apl Functional Symbol Circle Star -\U2360;Apl Functional Symbol Quad Colon -\U2361;Apl Functional Symbol Up Tack Diaeresis -\U2362;Apl Functional Symbol Del Diaeresis -\U2363;Apl Functional Symbol Star Diaeresis -\U2364;Apl Functional Symbol Jot Diaeresis -\U2365;Apl Functional Symbol Circle Diaeresis -\U2366;Apl Functional Symbol Down Shoe Stile -\U2367;Apl Functional Symbol Left Shoe Stile -\U2368;Apl Functional Symbol Tilde Diaeresis -\U2369;Apl Functional Symbol Greater-Than Diaeresis -\U236A;Apl Functional Symbol Comma Bar -\U236B;Apl Functional Symbol Del Tilde -\U236C;Apl Functional Symbol Zilde -\U236D;Apl Functional Symbol Stile Tilde -\U236E;Apl Functional Symbol Semicolon Underbar -\U236F;Apl Functional Symbol Quad Not Equal -\U2370;Apl Functional Symbol Quad Question -\U2371;Apl Functional Symbol Down Caret Tilde -\U2372;Apl Functional Symbol Up Caret Tilde -\U2373;Apl Functional Symbol Iota -\U2374;Apl Functional Symbol Rho -\U2375;Apl Functional Symbol Omega -\U2376;Apl Functional Symbol Alpha Underbar -\U2377;Apl Functional Symbol Epsilon Underbar -\U2378;Apl Functional Symbol Iota Underbar -\U2379;Apl Functional Symbol Omega Underbar -\U237A;Apl Functional Symbol Alpha -\U237B;Not Check Mark -\U237C;Right Angle With Downwards Zigzag Arrow -\U237D;Shouldered Open Box -\U237E;Bell Symbol -\U237F;Vertical Line With Middle Dot -\U2380;Insertion Symbol -\U2381;Continuous Underline Symbol -\U2382;Discontinuous Underline Symbol -\U2383;Emphasis Symbol -\U2384;Composition Symbol -\U2385;White Square With Centre Vertical Line -\U2386;Enter Symbol -\U2387;Alternative Key Symbol -\U2388;Helm Symbol -\U2389;Circled Horizontal Bar With Notch -\U238A;Circled Triangle Down -\U238B;Broken Circle With Northwest Arrow -\U238C;Undo Symbol -\U238D;Monostable Symbol -\U238E;Hysteresis Symbol -\U238F;Open-Circuit-Output H-Type Symbol -\U2390;Open-Circuit-Output L-Type Symbol -\U2391;Passive-Pull-Down-Output Symbol -\U2392;Passive-Pull-Up-Output Symbol -\U2393;Direct Current Symbol Form Two -\U2394;Software-Function Symbol -\U2395;Apl Functional Symbol Quad -\U2396;Decimal Separator Key Symbol -\U2397;Previous Page -\U2398;Next Page -\U2399;Print Screen Symbol -\U239A;Clear Screen Symbol -\U239B;Left Parenthesis Upper Hook -\U239C;Left Parenthesis Extension -\U239D;Left Parenthesis Lower Hook -\U239E;Right Parenthesis Upper Hook -\U239F;Right Parenthesis Extension -\U23A0;Right Parenthesis Lower Hook -\U23A1;Left Square Bracket Upper Corner -\U23A2;Left Square Bracket Extension -\U23A3;Left Square Bracket Lower Corner -\U23A4;Right Square Bracket Upper Corner -\U23A5;Right Square Bracket Extension -\U23A6;Right Square Bracket Lower Corner -\U23A7;Left Curly Bracket Upper Hook -\U23A8;Left Curly Bracket Middle Piece -\U23A9;Left Curly Bracket Lower Hook -\U23AA;Curly Bracket Extension -\U23AB;Right Curly Bracket Upper Hook -\U23AC;Right Curly Bracket Middle Piece -\U23AD;Right Curly Bracket Lower Hook -\U23AE;Integral Extension -\U23AF;Horizontal Line Extension -\U23B0;Upper Left Or Lower Right Curly Bracket Section -\U23B1;Upper Right Or Lower Left Curly Bracket Section -\U23B2;Summation Top -\U23B3;Summation Bottom -\U23B4;Top Square Bracket -\U23B5;Bottom Square Bracket -\U23B6;Bottom Square Bracket Over Top Square Bracket -\U23B7;Radical Symbol Bottom -\U23B8;Left Vertical Box Line -\U23B9;Right Vertical Box Line -\U23BA;Horizontal Scan Line-1 -\U23BB;Horizontal Scan Line-3 -\U23BC;Horizontal Scan Line-7 -\U23BD;Horizontal Scan Line-9 -\U23BE;Dentistry Symbol Light Vertical And Top Right -\U23BF;Dentistry Symbol Light Vertical And Bottom Right -\U23C0;Dentistry Symbol Light Vertical With Circle -\U23C1;Dentistry Symbol Light Down And Horizontal With Circle -\U23C2;Dentistry Symbol Light Up And Horizontal With Circle -\U23C3;Dentistry Symbol Light Vertical With Triangle -\U23C4;Dentistry Symbol Light Down And Horizontal With Triangle -\U23C5;Dentistry Symbol Light Up And Horizontal With Triangle -\U23C6;Dentistry Symbol Light Vertical And Wave -\U23C7;Dentistry Symbol Light Down And Horizontal With Wave -\U23C8;Dentistry Symbol Light Up And Horizontal With Wave -\U23C9;Dentistry Symbol Light Down And Horizontal -\U23CA;Dentistry Symbol Light Up And Horizontal -\U23CB;Dentistry Symbol Light Vertical And Top Left -\U23CC;Dentistry Symbol Light Vertical And Bottom Left -\U23CD;Square Foot -\U23CE;Return Symbol -\U23CF;Eject Symbol -\U23D0;Vertical Line Extension -\U23D1;Metrical Breve -\U23D2;Metrical Long Over Short -\U23D3;Metrical Short Over Long -\U23D4;Metrical Long Over Two Shorts -\U23D5;Metrical Two Shorts Over Long -\U23D6;Metrical Two Shorts Joined -\U23D7;Metrical Triseme -\U23D8;Metrical Tetraseme -\U23D9;Metrical Pentaseme -\U23DA;Earth Ground -\U23DB;Fuse -\U23DC;Top Parenthesis -\U23DD;Bottom Parenthesis -\U23DE;Top Curly Bracket -\U23DF;Bottom Curly Bracket -\U23E0;Top Tortoise Shell Bracket -\U23E1;Bottom Tortoise Shell Bracket -\U23E2;White Trapezium -\U23E3;Benzene Ring With Circle -\U23E4;Straightness -\U23E5;Flatness -\U23E6;Ac Current -\U23E7;Electrical Intersection -\U23E8;Decimal Exponent Symbol -\U23E9;Black Right-Pointing Double Triangle -\U23EA;Black Left-Pointing Double Triangle -\U23EB;Black Up-Pointing Double Triangle -\U23EC;Black Down-Pointing Double Triangle -\U23ED;Black Right-Pointing Double Triangle With Vertical Bar -\U23EE;Black Left-Pointing Double Triangle With Vertical Bar -\U23EF;Black Right-Pointing Triangle With Double Vertical Bar -\U23F0;Alarm Clock -\U23F1;Stopwatch -\U23F2;Timer Clock -\U23F3;Hourglass With Flowing Sand -\U23F4;Black Medium Left-Pointing Triangle -\U23F5;Black Medium Right-Pointing Triangle -\U23F6;Black Medium Up-Pointing Triangle -\U23F7;Black Medium Down-Pointing Triangle -\U23F8;Double Vertical Bar -\U23F9;Black Square For Stop -\U23FA;Black Circle For Record -\U23FB;Power Symbol -\U23FC;Power On-Off Symbol -\U23FD;Power On Symbol -\U23FE;Power Sleep Symbol -\U23FF;Observer Eye Symbol -\U2400;Symbol For Null -\U2401;Symbol For Start Of Heading -\U2402;Symbol For Start Of Text -\U2403;Symbol For End Of Text -\U2404;Symbol For End Of Transmission -\U2405;Symbol For Enquiry -\U2406;Symbol For Acknowledge -\U2407;Symbol For Bell -\U2408;Symbol For Backspace -\U2409;Symbol For Horizontal Tabulation -\U240A;Symbol For Line Feed -\U240B;Symbol For Vertical Tabulation -\U240C;Symbol For Form Feed -\U240D;Symbol For Carriage Return -\U240E;Symbol For Shift Out -\U240F;Symbol For Shift In -\U2410;Symbol For Data Link Escape -\U2411;Symbol For Device Control One -\U2412;Symbol For Device Control Two -\U2413;Symbol For Device Control Three -\U2414;Symbol For Device Control Four -\U2415;Symbol For Negative Acknowledge -\U2416;Symbol For Synchronous Idle -\U2417;Symbol For End Of Transmission Block -\U2418;Symbol For Cancel -\U2419;Symbol For End Of Medium -\U241A;Symbol For Substitute -\U241B;Symbol For Escape -\U241C;Symbol For File Separator -\U241D;Symbol For Group Separator -\U241E;Symbol For Record Separator -\U241F;Symbol For Unit Separator -\U2420;Symbol For Space -\U2421;Symbol For Delete -\U2422;Blank Symbol -\U2423;Open Box -\U2424;Symbol For Newline -\U2425;Symbol For Delete Form Two -\U2426;Symbol For Substitute Form Two -\U2440;Ocr Hook -\U2441;Ocr Chair -\U2442;Ocr Fork -\U2443;Ocr Inverted Fork -\U2444;Ocr Belt Buckle -\U2445;Ocr Bow Tie -\U2446;Ocr Branch Bank Identification -\U2447;Ocr Amount Of Check -\U2448;Ocr Dash -\U2449;Ocr Customer Account Number -\U244A;Ocr Double Backslash -\U2460;Circled Digit One -\U2461;Circled Digit Two -\U2462;Circled Digit Three -\U2463;Circled Digit Four -\U2464;Circled Digit Five -\U2465;Circled Digit Six -\U2466;Circled Digit Seven -\U2467;Circled Digit Eight -\U2468;Circled Digit Nine -\U2469;Circled Number Ten -\U246A;Circled Number Eleven -\U246B;Circled Number Twelve -\U246C;Circled Number Thirteen -\U246D;Circled Number Fourteen -\U246E;Circled Number Fifteen -\U246F;Circled Number Sixteen -\U2470;Circled Number Seventeen -\U2471;Circled Number Eighteen -\U2472;Circled Number Nineteen -\U2473;Circled Number Twenty -\U2474;Parenthesized Digit One -\U2475;Parenthesized Digit Two -\U2476;Parenthesized Digit Three -\U2477;Parenthesized Digit Four -\U2478;Parenthesized Digit Five -\U2479;Parenthesized Digit Six -\U247A;Parenthesized Digit Seven -\U247B;Parenthesized Digit Eight -\U247C;Parenthesized Digit Nine -\U247D;Parenthesized Number Ten -\U247E;Parenthesized Number Eleven -\U247F;Parenthesized Number Twelve -\U2480;Parenthesized Number Thirteen -\U2481;Parenthesized Number Fourteen -\U2482;Parenthesized Number Fifteen -\U2483;Parenthesized Number Sixteen -\U2484;Parenthesized Number Seventeen -\U2485;Parenthesized Number Eighteen -\U2486;Parenthesized Number Nineteen -\U2487;Parenthesized Number Twenty -\U2488;Digit One Full Stop -\U2489;Digit Two Full Stop -\U248A;Digit Three Full Stop -\U248B;Digit Four Full Stop -\U248C;Digit Five Full Stop -\U248D;Digit Six Full Stop -\U248E;Digit Seven Full Stop -\U248F;Digit Eight Full Stop -\U2490;Digit Nine Full Stop -\U2491;Number Ten Full Stop -\U2492;Number Eleven Full Stop -\U2493;Number Twelve Full Stop -\U2494;Number Thirteen Full Stop -\U2495;Number Fourteen Full Stop -\U2496;Number Fifteen Full Stop -\U2497;Number Sixteen Full Stop -\U2498;Number Seventeen Full Stop -\U2499;Number Eighteen Full Stop -\U249A;Number Nineteen Full Stop -\U249B;Number Twenty Full Stop -\U249C;Parenthesized Latin Small Letter A -\U249D;Parenthesized Latin Small Letter B -\U249E;Parenthesized Latin Small Letter C -\U249F;Parenthesized Latin Small Letter D -\U24A0;Parenthesized Latin Small Letter E -\U24A1;Parenthesized Latin Small Letter F -\U24A2;Parenthesized Latin Small Letter G -\U24A3;Parenthesized Latin Small Letter H -\U24A4;Parenthesized Latin Small Letter I -\U24A5;Parenthesized Latin Small Letter J -\U24A6;Parenthesized Latin Small Letter K -\U24A7;Parenthesized Latin Small Letter L -\U24A8;Parenthesized Latin Small Letter M -\U24A9;Parenthesized Latin Small Letter N -\U24AA;Parenthesized Latin Small Letter O -\U24AB;Parenthesized Latin Small Letter P -\U24AC;Parenthesized Latin Small Letter Q -\U24AD;Parenthesized Latin Small Letter R -\U24AE;Parenthesized Latin Small Letter S -\U24AF;Parenthesized Latin Small Letter T -\U24B0;Parenthesized Latin Small Letter U -\U24B1;Parenthesized Latin Small Letter V -\U24B2;Parenthesized Latin Small Letter W -\U24B3;Parenthesized Latin Small Letter X -\U24B4;Parenthesized Latin Small Letter Y -\U24B5;Parenthesized Latin Small Letter Z -\U24B6;Circled Latin Capital Letter A -\U24B7;Circled Latin Capital Letter B -\U24B8;Circled Latin Capital Letter C -\U24B9;Circled Latin Capital Letter D -\U24BA;Circled Latin Capital Letter E -\U24BB;Circled Latin Capital Letter F -\U24BC;Circled Latin Capital Letter G -\U24BD;Circled Latin Capital Letter H -\U24BE;Circled Latin Capital Letter I -\U24BF;Circled Latin Capital Letter J -\U24C0;Circled Latin Capital Letter K -\U24C1;Circled Latin Capital Letter L -\U24C2;Circled Latin Capital Letter M -\U24C3;Circled Latin Capital Letter N -\U24C4;Circled Latin Capital Letter O -\U24C5;Circled Latin Capital Letter P -\U24C6;Circled Latin Capital Letter Q -\U24C7;Circled Latin Capital Letter R -\U24C8;Circled Latin Capital Letter S -\U24C9;Circled Latin Capital Letter T -\U24CA;Circled Latin Capital Letter U -\U24CB;Circled Latin Capital Letter V -\U24CC;Circled Latin Capital Letter W -\U24CD;Circled Latin Capital Letter X -\U24CE;Circled Latin Capital Letter Y -\U24CF;Circled Latin Capital Letter Z -\U24D0;Circled Latin Small Letter A -\U24D1;Circled Latin Small Letter B -\U24D2;Circled Latin Small Letter C -\U24D3;Circled Latin Small Letter D -\U24D4;Circled Latin Small Letter E -\U24D5;Circled Latin Small Letter F -\U24D6;Circled Latin Small Letter G -\U24D7;Circled Latin Small Letter H -\U24D8;Circled Latin Small Letter I -\U24D9;Circled Latin Small Letter J -\U24DA;Circled Latin Small Letter K -\U24DB;Circled Latin Small Letter L -\U24DC;Circled Latin Small Letter M -\U24DD;Circled Latin Small Letter N -\U24DE;Circled Latin Small Letter O -\U24DF;Circled Latin Small Letter P -\U24E0;Circled Latin Small Letter Q -\U24E1;Circled Latin Small Letter R -\U24E2;Circled Latin Small Letter S -\U24E3;Circled Latin Small Letter T -\U24E4;Circled Latin Small Letter U -\U24E5;Circled Latin Small Letter V -\U24E6;Circled Latin Small Letter W -\U24E7;Circled Latin Small Letter X -\U24E8;Circled Latin Small Letter Y -\U24E9;Circled Latin Small Letter Z -\U24EA;Circled Digit Zero -\U24EB;Negative Circled Number Eleven -\U24EC;Negative Circled Number Twelve -\U24ED;Negative Circled Number Thirteen -\U24EE;Negative Circled Number Fourteen -\U24EF;Negative Circled Number Fifteen -\U24F0;Negative Circled Number Sixteen -\U24F1;Negative Circled Number Seventeen -\U24F2;Negative Circled Number Eighteen -\U24F3;Negative Circled Number Nineteen -\U24F4;Negative Circled Number Twenty -\U24F5;Double Circled Digit One -\U24F6;Double Circled Digit Two -\U24F7;Double Circled Digit Three -\U24F8;Double Circled Digit Four -\U24F9;Double Circled Digit Five -\U24FA;Double Circled Digit Six -\U24FB;Double Circled Digit Seven -\U24FC;Double Circled Digit Eight -\U24FD;Double Circled Digit Nine -\U24FE;Double Circled Number Ten -\U24FF;Negative Circled Digit Zero -\U2500;Box Drawings Light Horizontal -\U2501;Box Drawings Heavy Horizontal -\U2502;Box Drawings Light Vertical -\U2503;Box Drawings Heavy Vertical -\U2504;Box Drawings Light Triple Dash Horizontal -\U2505;Box Drawings Heavy Triple Dash Horizontal -\U2506;Box Drawings Light Triple Dash Vertical -\U2507;Box Drawings Heavy Triple Dash Vertical -\U2508;Box Drawings Light Quadruple Dash Horizontal -\U2509;Box Drawings Heavy Quadruple Dash Horizontal -\U250A;Box Drawings Light Quadruple Dash Vertical -\U250B;Box Drawings Heavy Quadruple Dash Vertical -\U250C;Box Drawings Light Down And Right -\U250D;Box Drawings Down Light And Right Heavy -\U250E;Box Drawings Down Heavy And Right Light -\U250F;Box Drawings Heavy Down And Right -\U2510;Box Drawings Light Down And Left -\U2511;Box Drawings Down Light And Left Heavy -\U2512;Box Drawings Down Heavy And Left Light -\U2513;Box Drawings Heavy Down And Left -\U2514;Box Drawings Light Up And Right -\U2515;Box Drawings Up Light And Right Heavy -\U2516;Box Drawings Up Heavy And Right Light -\U2517;Box Drawings Heavy Up And Right -\U2518;Box Drawings Light Up And Left -\U2519;Box Drawings Up Light And Left Heavy -\U251A;Box Drawings Up Heavy And Left Light -\U251B;Box Drawings Heavy Up And Left -\U251C;Box Drawings Light Vertical And Right -\U251D;Box Drawings Vertical Light And Right Heavy -\U251E;Box Drawings Up Heavy And Right Down Light -\U251F;Box Drawings Down Heavy And Right Up Light -\U2520;Box Drawings Vertical Heavy And Right Light -\U2521;Box Drawings Down Light And Right Up Heavy -\U2522;Box Drawings Up Light And Right Down Heavy -\U2523;Box Drawings Heavy Vertical And Right -\U2524;Box Drawings Light Vertical And Left -\U2525;Box Drawings Vertical Light And Left Heavy -\U2526;Box Drawings Up Heavy And Left Down Light -\U2527;Box Drawings Down Heavy And Left Up Light -\U2528;Box Drawings Vertical Heavy And Left Light -\U2529;Box Drawings Down Light And Left Up Heavy -\U252A;Box Drawings Up Light And Left Down Heavy -\U252B;Box Drawings Heavy Vertical And Left -\U252C;Box Drawings Light Down And Horizontal -\U252D;Box Drawings Left Heavy And Right Down Light -\U252E;Box Drawings Right Heavy And Left Down Light -\U252F;Box Drawings Down Light And Horizontal Heavy -\U2530;Box Drawings Down Heavy And Horizontal Light -\U2531;Box Drawings Right Light And Left Down Heavy -\U2532;Box Drawings Left Light And Right Down Heavy -\U2533;Box Drawings Heavy Down And Horizontal -\U2534;Box Drawings Light Up And Horizontal -\U2535;Box Drawings Left Heavy And Right Up Light -\U2536;Box Drawings Right Heavy And Left Up Light -\U2537;Box Drawings Up Light And Horizontal Heavy -\U2538;Box Drawings Up Heavy And Horizontal Light -\U2539;Box Drawings Right Light And Left Up Heavy -\U253A;Box Drawings Left Light And Right Up Heavy -\U253B;Box Drawings Heavy Up And Horizontal -\U253C;Box Drawings Light Vertical And Horizontal -\U253D;Box Drawings Left Heavy And Right Vertical Light -\U253E;Box Drawings Right Heavy And Left Vertical Light -\U253F;Box Drawings Vertical Light And Horizontal Heavy -\U2540;Box Drawings Up Heavy And Down Horizontal Light -\U2541;Box Drawings Down Heavy And Up Horizontal Light -\U2542;Box Drawings Vertical Heavy And Horizontal Light -\U2543;Box Drawings Left Up Heavy And Right Down Light -\U2544;Box Drawings Right Up Heavy And Left Down Light -\U2545;Box Drawings Left Down Heavy And Right Up Light -\U2546;Box Drawings Right Down Heavy And Left Up Light -\U2547;Box Drawings Down Light And Up Horizontal Heavy -\U2548;Box Drawings Up Light And Down Horizontal Heavy -\U2549;Box Drawings Right Light And Left Vertical Heavy -\U254A;Box Drawings Left Light And Right Vertical Heavy -\U254B;Box Drawings Heavy Vertical And Horizontal -\U254C;Box Drawings Light Double Dash Horizontal -\U254D;Box Drawings Heavy Double Dash Horizontal -\U254E;Box Drawings Light Double Dash Vertical -\U254F;Box Drawings Heavy Double Dash Vertical -\U2550;Box Drawings Double Horizontal -\U2551;Box Drawings Double Vertical -\U2552;Box Drawings Down Single And Right Double -\U2553;Box Drawings Down Double And Right Single -\U2554;Box Drawings Double Down And Right -\U2555;Box Drawings Down Single And Left Double -\U2556;Box Drawings Down Double And Left Single -\U2557;Box Drawings Double Down And Left -\U2558;Box Drawings Up Single And Right Double -\U2559;Box Drawings Up Double And Right Single -\U255A;Box Drawings Double Up And Right -\U255B;Box Drawings Up Single And Left Double -\U255C;Box Drawings Up Double And Left Single -\U255D;Box Drawings Double Up And Left -\U255E;Box Drawings Vertical Single And Right Double -\U255F;Box Drawings Vertical Double And Right Single -\U2560;Box Drawings Double Vertical And Right -\U2561;Box Drawings Vertical Single And Left Double -\U2562;Box Drawings Vertical Double And Left Single -\U2563;Box Drawings Double Vertical And Left -\U2564;Box Drawings Down Single And Horizontal Double -\U2565;Box Drawings Down Double And Horizontal Single -\U2566;Box Drawings Double Down And Horizontal -\U2567;Box Drawings Up Single And Horizontal Double -\U2568;Box Drawings Up Double And Horizontal Single -\U2569;Box Drawings Double Up And Horizontal -\U256A;Box Drawings Vertical Single And Horizontal Double -\U256B;Box Drawings Vertical Double And Horizontal Single -\U256C;Box Drawings Double Vertical And Horizontal -\U256D;Box Drawings Light Arc Down And Right -\U256E;Box Drawings Light Arc Down And Left -\U256F;Box Drawings Light Arc Up And Left -\U2570;Box Drawings Light Arc Up And Right -\U2571;Box Drawings Light Diagonal Upper Right To Lower Left -\U2572;Box Drawings Light Diagonal Upper Left To Lower Right -\U2573;Box Drawings Light Diagonal Cross -\U2574;Box Drawings Light Left -\U2575;Box Drawings Light Up -\U2576;Box Drawings Light Right -\U2577;Box Drawings Light Down -\U2578;Box Drawings Heavy Left -\U2579;Box Drawings Heavy Up -\U257A;Box Drawings Heavy Right -\U257B;Box Drawings Heavy Down -\U257C;Box Drawings Light Left And Heavy Right -\U257D;Box Drawings Light Up And Heavy Down -\U257E;Box Drawings Heavy Left And Light Right -\U257F;Box Drawings Heavy Up And Light Down -\U2580;Upper Half Block -\U2581;Lower One Eighth Block -\U2582;Lower One Quarter Block -\U2583;Lower Three Eighths Block -\U2584;Lower Half Block -\U2585;Lower Five Eighths Block -\U2586;Lower Three Quarters Block -\U2587;Lower Seven Eighths Block -\U2588;Full Block -\U2589;Left Seven Eighths Block -\U258A;Left Three Quarters Block -\U258B;Left Five Eighths Block -\U258C;Left Half Block -\U258D;Left Three Eighths Block -\U258E;Left One Quarter Block -\U258F;Left One Eighth Block -\U2590;Right Half Block -\U2591;Light Shade -\U2592;Medium Shade -\U2593;Dark Shade -\U2594;Upper One Eighth Block -\U2595;Right One Eighth Block -\U2596;Quadrant Lower Left -\U2597;Quadrant Lower Right -\U2598;Quadrant Upper Left -\U2599;Quadrant Upper Left And Lower Left And Lower Right -\U259A;Quadrant Upper Left And Lower Right -\U259B;Quadrant Upper Left And Upper Right And Lower Left -\U259C;Quadrant Upper Left And Upper Right And Lower Right -\U259D;Quadrant Upper Right -\U259E;Quadrant Upper Right And Lower Left -\U259F;Quadrant Upper Right And Lower Left And Lower Right -\U25A0;Black Square -\U25A1;White Square -\U25A2;White Square With Rounded Corners -\U25A3;White Square Containing Black Small Square -\U25A4;Square With Horizontal Fill -\U25A5;Square With Vertical Fill -\U25A6;Square With Orthogonal Crosshatch Fill -\U25A7;Square With Upper Left To Lower Right Fill -\U25A8;Square With Upper Right To Lower Left Fill -\U25A9;Square With Diagonal Crosshatch Fill -\U25AA;Black Small Square -\U25AB;White Small Square -\U25AC;Black Rectangle -\U25AD;White Rectangle -\U25AE;Black Vertical Rectangle -\U25AF;White Vertical Rectangle -\U25B0;Black Parallelogram -\U25B1;White Parallelogram -\U25B2;Black Up-Pointing Triangle -\U25B3;White Up-Pointing Triangle -\U25B4;Black Up-Pointing Small Triangle -\U25B5;White Up-Pointing Small Triangle -\U25B6;Black Right-Pointing Triangle -\U25B7;White Right-Pointing Triangle -\U25B8;Black Right-Pointing Small Triangle -\U25B9;White Right-Pointing Small Triangle -\U25BA;Black Right-Pointing Pointer -\U25BB;White Right-Pointing Pointer -\U25BC;Black Down-Pointing Triangle -\U25BD;White Down-Pointing Triangle -\U25BE;Black Down-Pointing Small Triangle -\U25BF;White Down-Pointing Small Triangle -\U25C0;Black Left-Pointing Triangle -\U25C1;White Left-Pointing Triangle -\U25C2;Black Left-Pointing Small Triangle -\U25C3;White Left-Pointing Small Triangle -\U25C4;Black Left-Pointing Pointer -\U25C5;White Left-Pointing Pointer -\U25C6;Black Diamond -\U25C7;White Diamond -\U25C8;White Diamond Containing Black Small Diamond -\U25C9;Fisheye -\U25CA;Lozenge -\U25CB;White Circle -\U25CC;Dotted Circle -\U25CD;Circle With Vertical Fill -\U25CE;Bullseye -\U25CF;Black Circle -\U25D0;Circle With Left Half Black -\U25D1;Circle With Right Half Black -\U25D2;Circle With Lower Half Black -\U25D3;Circle With Upper Half Black -\U25D4;Circle With Upper Right Quadrant Black -\U25D5;Circle With All But Upper Left Quadrant Black -\U25D6;Left Half Black Circle -\U25D7;Right Half Black Circle -\U25D8;Inverse Bullet -\U25D9;Inverse White Circle -\U25DA;Upper Half Inverse White Circle -\U25DB;Lower Half Inverse White Circle -\U25DC;Upper Left Quadrant Circular Arc -\U25DD;Upper Right Quadrant Circular Arc -\U25DE;Lower Right Quadrant Circular Arc -\U25DF;Lower Left Quadrant Circular Arc -\U25E0;Upper Half Circle -\U25E1;Lower Half Circle -\U25E2;Black Lower Right Triangle -\U25E3;Black Lower Left Triangle -\U25E4;Black Upper Left Triangle -\U25E5;Black Upper Right Triangle -\U25E6;White Bullet -\U25E7;Square With Left Half Black -\U25E8;Square With Right Half Black -\U25E9;Square With Upper Left Diagonal Half Black -\U25EA;Square With Lower Right Diagonal Half Black -\U25EB;White Square With Vertical Bisecting Line -\U25EC;White Up-Pointing Triangle With Dot -\U25ED;Up-Pointing Triangle With Left Half Black -\U25EE;Up-Pointing Triangle With Right Half Black -\U25EF;Large Circle -\U25F0;White Square With Upper Left Quadrant -\U25F1;White Square With Lower Left Quadrant -\U25F2;White Square With Lower Right Quadrant -\U25F3;White Square With Upper Right Quadrant -\U25F4;White Circle With Upper Left Quadrant -\U25F5;White Circle With Lower Left Quadrant -\U25F6;White Circle With Lower Right Quadrant -\U25F7;White Circle With Upper Right Quadrant -\U25F8;Upper Left Triangle -\U25F9;Upper Right Triangle -\U25FA;Lower Left Triangle -\U25FB;White Medium Square -\U25FC;Black Medium Square -\U25FD;White Medium Small Square -\U25FE;Black Medium Small Square -\U25FF;Lower Right Triangle -\U2600;Black Sun With Rays -\U2601;Cloud -\U2602;Umbrella -\U2603;Snowman -\U2604;Comet -\U2605;Black Star -\U2606;White Star -\U2607;Lightning -\U2608;Thunderstorm -\U2609;Sun -\U260A;Ascending Node -\U260B;Descending Node -\U260C;Conjunction -\U260D;Opposition -\U260E;Black Telephone -\U260F;White Telephone -\U2610;Ballot Box -\U2611;Ballot Box With Check -\U2612;Ballot Box With X -\U2613;Saltire -\U2614;Umbrella With Rain Drops -\U2615;Hot Beverage -\U2616;White Shogi Piece -\U2617;Black Shogi Piece -\U2618;Shamrock -\U2619;Reversed Rotated Floral Heart Bullet -\U261A;Black Left Pointing Index -\U261B;Black Right Pointing Index -\U261C;White Left Pointing Index -\U261D;White Up Pointing Index -\U261E;White Right Pointing Index -\U261F;White Down Pointing Index -\U2620;Skull And Crossbones -\U2621;Caution Sign -\U2622;Radioactive Sign -\U2623;Biohazard Sign -\U2624;Caduceus -\U2625;Ankh -\U2626;Orthodox Cross -\U2627;Chi Rho -\U2628;Cross Of Lorraine -\U2629;Cross Of Jerusalem -\U262A;Star And Crescent -\U262B;Farsi Symbol -\U262C;Adi Shakti -\U262D;Hammer And Sickle -\U262E;Peace Symbol -\U262F;Yin Yang -\U2630;Trigram For Heaven -\U2631;Trigram For Lake -\U2632;Trigram For Fire -\U2633;Trigram For Thunder -\U2634;Trigram For Wind -\U2635;Trigram For Water -\U2636;Trigram For Mountain -\U2637;Trigram For Earth -\U2638;Wheel Of Dharma -\U2639;White Frowning Face -\U263A;White Smiling Face -\U263B;Black Smiling Face -\U263C;White Sun With Rays -\U263D;First Quarter Moon -\U263E;Last Quarter Moon -\U263F;Mercury -\U2640;Female Sign -\U2641;Earth -\U2642;Male Sign -\U2643;Jupiter -\U2644;Saturn -\U2645;Uranus -\U2646;Neptune -\U2647;Pluto -\U2648;Aries -\U2649;Taurus -\U264A;Gemini -\U264B;Cancer -\U264C;Leo -\U264D;Virgo -\U264E;Libra -\U264F;Scorpius -\U2650;Sagittarius -\U2651;Capricorn -\U2652;Aquarius -\U2653;Pisces -\U2654;White Chess King -\U2655;White Chess Queen -\U2656;White Chess Rook -\U2657;White Chess Bishop -\U2658;White Chess Knight -\U2659;White Chess Pawn -\U265A;Black Chess King -\U265B;Black Chess Queen -\U265C;Black Chess Rook -\U265D;Black Chess Bishop -\U265E;Black Chess Knight -\U265F;Black Chess Pawn -\U2660;Black Spade Suit -\U2661;White Heart Suit -\U2662;White Diamond Suit -\U2663;Black Club Suit -\U2664;White Spade Suit -\U2665;Black Heart Suit -\U2666;Black Diamond Suit -\U2667;White Club Suit -\U2668;Hot Springs -\U2669;Quarter Note -\U266A;Eighth Note -\U266B;Beamed Eighth Notes -\U266C;Beamed Sixteenth Notes -\U266D;Music Flat Sign -\U266E;Music Natural Sign -\U266F;Music Sharp Sign -\U2670;West Syriac Cross -\U2671;East Syriac Cross -\U2672;Universal Recycling Symbol -\U2673;Recycling Symbol For Type-1 Plastics -\U2674;Recycling Symbol For Type-2 Plastics -\U2675;Recycling Symbol For Type-3 Plastics -\U2676;Recycling Symbol For Type-4 Plastics -\U2677;Recycling Symbol For Type-5 Plastics -\U2678;Recycling Symbol For Type-6 Plastics -\U2679;Recycling Symbol For Type-7 Plastics -\U267A;Recycling Symbol For Generic Materials -\U267B;Black Universal Recycling Symbol -\U267C;Recycled Paper Symbol -\U267D;Partially-Recycled Paper Symbol -\U267E;Permanent Paper Sign -\U267F;Wheelchair Symbol -\U2680;Die Face-1 -\U2681;Die Face-2 -\U2682;Die Face-3 -\U2683;Die Face-4 -\U2684;Die Face-5 -\U2685;Die Face-6 -\U2686;White Circle With Dot Right -\U2687;White Circle With Two Dots -\U2688;Black Circle With White Dot Right -\U2689;Black Circle With Two White Dots -\U268A;Monogram For Yang -\U268B;Monogram For Yin -\U268C;Digram For Greater Yang -\U268D;Digram For Lesser Yin -\U268E;Digram For Lesser Yang -\U268F;Digram For Greater Yin -\U2690;White Flag -\U2691;Black Flag -\U2692;Hammer And Pick -\U2693;Anchor -\U2694;Crossed Swords -\U2695;Staff Of Aesculapius -\U2696;Scales -\U2697;Alembic -\U2698;Flower -\U2699;Gear -\U269A;Staff Of Hermes -\U269B;Atom Symbol -\U269C;Fleur-De-Lis -\U269D;Outlined White Star -\U269E;Three Lines Converging Right -\U269F;Three Lines Converging Left -\U26A0;Warning Sign -\U26A1;High Voltage Sign -\U26A2;Doubled Female Sign -\U26A3;Doubled Male Sign -\U26A4;Interlocked Female And Male Sign -\U26A5;Male And Female Sign -\U26A6;Male With Stroke Sign -\U26A7;Male With Stroke And Male And Female Sign -\U26A8;Vertical Male With Stroke Sign -\U26A9;Horizontal Male With Stroke Sign -\U26AA;Medium White Circle -\U26AB;Medium Black Circle -\U26AC;Medium Small White Circle -\U26AD;Marriage Symbol -\U26AE;Divorce Symbol -\U26AF;Unmarried Partnership Symbol -\U26B0;Coffin -\U26B1;Funeral Urn -\U26B2;Neuter -\U26B3;Ceres -\U26B4;Pallas -\U26B5;Juno -\U26B6;Vesta -\U26B7;Chiron -\U26B8;Black Moon Lilith -\U26B9;Sextile -\U26BA;Semisextile -\U26BB;Quincunx -\U26BC;Sesquiquadrate -\U26BD;Soccer Ball -\U26BE;Baseball -\U26BF;Squared Key -\U26C0;White Draughts Man -\U26C1;White Draughts King -\U26C2;Black Draughts Man -\U26C3;Black Draughts King -\U26C4;Snowman Without Snow -\U26C5;Sun Behind Cloud -\U26C6;Rain -\U26C7;Black Snowman -\U26C8;Thunder Cloud And Rain -\U26C9;Turned White Shogi Piece -\U26CA;Turned Black Shogi Piece -\U26CB;White Diamond In Square -\U26CC;Crossing Lanes -\U26CD;Disabled Car -\U26CE;Ophiuchus -\U26CF;Pick -\U26D0;Car Sliding -\U26D1;Helmet With White Cross -\U26D2;Circled Crossing Lanes -\U26D3;Chains -\U26D4;No Entry -\U26D5;Alternate One-Way Left Way Traffic -\U26D6;Black Two-Way Left Way Traffic -\U26D7;White Two-Way Left Way Traffic -\U26D8;Black Left Lane Merge -\U26D9;White Left Lane Merge -\U26DA;Drive Slow Sign -\U26DB;Heavy White Down-Pointing Triangle -\U26DC;Left Closed Entry -\U26DD;Squared Saltire -\U26DE;Falling Diagonal In White Circle In Black Square -\U26DF;Black Truck -\U26E0;Restricted Left Entry-1 -\U26E1;Restricted Left Entry-2 -\U26E2;Astronomical Symbol For Uranus -\U26E3;Heavy Circle With Stroke And Two Dots Above -\U26E4;Pentagram -\U26E5;Right-Handed Interlaced Pentagram -\U26E6;Left-Handed Interlaced Pentagram -\U26E7;Inverted Pentagram -\U26E8;Black Cross On Shield -\U26E9;Shinto Shrine -\U26EA;Church -\U26EB;Castle -\U26EC;Historic Site -\U26ED;Gear Without Hub -\U26EE;Gear With Handles -\U26EF;Map Symbol For Lighthouse -\U26F0;Mountain -\U26F1;Umbrella On Ground -\U26F2;Fountain -\U26F3;Flag In Hole -\U26F4;Ferry -\U26F5;Sailboat -\U26F6;Square Four Corners -\U26F7;Skier -\U26F8;Ice Skate -\U26F9;Person With Ball -\U26FA;Tent -\U26FB;Japanese Bank Symbol -\U26FC;Headstone Graveyard Symbol -\U26FD;Fuel Pump -\U26FE;Cup On Black Square -\U26FF;White Flag With Horizontal Middle Black Stripe -\U2700;Black Safety Scissors -\U2701;Upper Blade Scissors -\U2702;Black Scissors -\U2703;Lower Blade Scissors -\U2704;White Scissors -\U2705;White Heavy Check Mark -\U2706;Telephone Location Sign -\U2707;Tape Drive -\U2708;Airplane -\U2709;Envelope -\U270A;Raised Fist -\U270B;Raised Hand -\U270C;Victory Hand -\U270D;Writing Hand -\U270E;Lower Right Pencil -\U270F;Pencil -\U2710;Upper Right Pencil -\U2711;White Nib -\U2712;Black Nib -\U2713;Check Mark -\U2714;Heavy Check Mark -\U2715;Multiplication X -\U2716;Heavy Multiplication X -\U2717;Ballot X -\U2718;Heavy Ballot X -\U2719;Outlined Greek Cross -\U271A;Heavy Greek Cross -\U271B;Open Centre Cross -\U271C;Heavy Open Centre Cross -\U271D;Latin Cross -\U271E;Shadowed White Latin Cross -\U271F;Outlined Latin Cross -\U2720;Maltese Cross -\U2721;Star Of David -\U2722;Four Teardrop-Spoked Asterisk -\U2723;Four Balloon-Spoked Asterisk -\U2724;Heavy Four Balloon-Spoked Asterisk -\U2725;Four Club-Spoked Asterisk -\U2726;Black Four Pointed Star -\U2727;White Four Pointed Star -\U2728;Sparkles -\U2729;Stress Outlined White Star -\U272A;Circled White Star -\U272B;Open Centre Black Star -\U272C;Black Centre White Star -\U272D;Outlined Black Star -\U272E;Heavy Outlined Black Star -\U272F;Pinwheel Star -\U2730;Shadowed White Star -\U2731;Heavy Asterisk -\U2732;Open Centre Asterisk -\U2733;Eight Spoked Asterisk -\U2734;Eight Pointed Black Star -\U2735;Eight Pointed Pinwheel Star -\U2736;Six Pointed Black Star -\U2737;Eight Pointed Rectilinear Black Star -\U2738;Heavy Eight Pointed Rectilinear Black Star -\U2739;Twelve Pointed Black Star -\U273A;Sixteen Pointed Asterisk -\U273B;Teardrop-Spoked Asterisk -\U273C;Open Centre Teardrop-Spoked Asterisk -\U273D;Heavy Teardrop-Spoked Asterisk -\U273E;Six Petalled Black And White Florette -\U273F;Black Florette -\U2740;White Florette -\U2741;Eight Petalled Outlined Black Florette -\U2742;Circled Open Centre Eight Pointed Star -\U2743;Heavy Teardrop-Spoked Pinwheel Asterisk -\U2744;Snowflake -\U2745;Tight Trifoliate Snowflake -\U2746;Heavy Chevron Snowflake -\U2747;Sparkle -\U2748;Heavy Sparkle -\U2749;Balloon-Spoked Asterisk -\U274A;Eight Teardrop-Spoked Propeller Asterisk -\U274B;Heavy Eight Teardrop-Spoked Propeller Asterisk -\U274C;Cross Mark -\U274D;Shadowed White Circle -\U274E;Negative Squared Cross Mark -\U274F;Lower Right Drop-Shadowed White Square -\U2750;Upper Right Drop-Shadowed White Square -\U2751;Lower Right Shadowed White Square -\U2752;Upper Right Shadowed White Square -\U2753;Black Question Mark Ornament -\U2754;White Question Mark Ornament -\U2755;White Exclamation Mark Ornament -\U2756;Black Diamond Minus White X -\U2757;Heavy Exclamation Mark Symbol -\U2758;Light Vertical Bar -\U2759;Medium Vertical Bar -\U275A;Heavy Vertical Bar -\U275B;Heavy Single Turned Comma Quotation Mark Ornament -\U275C;Heavy Single Comma Quotation Mark Ornament -\U275D;Heavy Double Turned Comma Quotation Mark Ornament -\U275E;Heavy Double Comma Quotation Mark Ornament -\U275F;Heavy Low Single Comma Quotation Mark Ornament -\U2760;Heavy Low Double Comma Quotation Mark Ornament -\U2761;Curved Stem Paragraph Sign Ornament -\U2762;Heavy Exclamation Mark Ornament -\U2763;Heavy Heart Exclamation Mark Ornament -\U2764;Heavy Black Heart -\U2765;Rotated Heavy Black Heart Bullet -\U2766;Floral Heart -\U2767;Rotated Floral Heart Bullet -\U2768;Medium Left Parenthesis Ornament -\U2769;Medium Right Parenthesis Ornament -\U276A;Medium Flattened Left Parenthesis Ornament -\U276B;Medium Flattened Right Parenthesis Ornament -\U276C;Medium Left-Pointing Angle Bracket Ornament -\U276D;Medium Right-Pointing Angle Bracket Ornament -\U276E;Heavy Left-Pointing Angle Quotation Mark Ornament -\U276F;Heavy Right-Pointing Angle Quotation Mark Ornament -\U2770;Heavy Left-Pointing Angle Bracket Ornament -\U2771;Heavy Right-Pointing Angle Bracket Ornament -\U2772;Light Left Tortoise Shell Bracket Ornament -\U2773;Light Right Tortoise Shell Bracket Ornament -\U2774;Medium Left Curly Bracket Ornament -\U2775;Medium Right Curly Bracket Ornament -\U2776;Dingbat Negative Circled Digit One -\U2777;Dingbat Negative Circled Digit Two -\U2778;Dingbat Negative Circled Digit Three -\U2779;Dingbat Negative Circled Digit Four -\U277A;Dingbat Negative Circled Digit Five -\U277B;Dingbat Negative Circled Digit Six -\U277C;Dingbat Negative Circled Digit Seven -\U277D;Dingbat Negative Circled Digit Eight -\U277E;Dingbat Negative Circled Digit Nine -\U277F;Dingbat Negative Circled Number Ten -\U2780;Dingbat Circled Sans-Serif Digit One -\U2781;Dingbat Circled Sans-Serif Digit Two -\U2782;Dingbat Circled Sans-Serif Digit Three -\U2783;Dingbat Circled Sans-Serif Digit Four -\U2784;Dingbat Circled Sans-Serif Digit Five -\U2785;Dingbat Circled Sans-Serif Digit Six -\U2786;Dingbat Circled Sans-Serif Digit Seven -\U2787;Dingbat Circled Sans-Serif Digit Eight -\U2788;Dingbat Circled Sans-Serif Digit Nine -\U2789;Dingbat Circled Sans-Serif Number Ten -\U278A;Dingbat Negative Circled Sans-Serif Digit One -\U278B;Dingbat Negative Circled Sans-Serif Digit Two -\U278C;Dingbat Negative Circled Sans-Serif Digit Three -\U278D;Dingbat Negative Circled Sans-Serif Digit Four -\U278E;Dingbat Negative Circled Sans-Serif Digit Five -\U278F;Dingbat Negative Circled Sans-Serif Digit Six -\U2790;Dingbat Negative Circled Sans-Serif Digit Seven -\U2791;Dingbat Negative Circled Sans-Serif Digit Eight -\U2792;Dingbat Negative Circled Sans-Serif Digit Nine -\U2793;Dingbat Negative Circled Sans-Serif Number Ten -\U2794;Heavy Wide-Headed Rightwards Arrow -\U2795;Heavy Plus Sign -\U2796;Heavy Minus Sign -\U2797;Heavy Division Sign -\U2798;Heavy South East Arrow -\U2799;Heavy Rightwards Arrow -\U279A;Heavy North East Arrow -\U279B;Drafting Point Rightwards Arrow -\U279C;Heavy Round-Tipped Rightwards Arrow -\U279D;Triangle-Headed Rightwards Arrow -\U279E;Heavy Triangle-Headed Rightwards Arrow -\U279F;Dashed Triangle-Headed Rightwards Arrow -\U27A0;Heavy Dashed Triangle-Headed Rightwards Arrow -\U27A1;Black Rightwards Arrow -\U27A2;Three-D Top-Lighted Rightwards Arrowhead -\U27A3;Three-D Bottom-Lighted Rightwards Arrowhead -\U27A4;Black Rightwards Arrowhead -\U27A5;Heavy Black Curved Downwards And Rightwards Arrow -\U27A6;Heavy Black Curved Upwards And Rightwards Arrow -\U27A7;Squat Black Rightwards Arrow -\U27A8;Heavy Concave-Pointed Black Rightwards Arrow -\U27A9;Right-Shaded White Rightwards Arrow -\U27AA;Left-Shaded White Rightwards Arrow -\U27AB;Back-Tilted Shadowed White Rightwards Arrow -\U27AC;Front-Tilted Shadowed White Rightwards Arrow -\U27AD;Heavy Lower Right-Shadowed White Rightwards Arrow -\U27AE;Heavy Upper Right-Shadowed White Rightwards Arrow -\U27AF;Notched Lower Right-Shadowed White Rightwards Arrow -\U27B0;Curly Loop -\U27B1;Notched Upper Right-Shadowed White Rightwards Arrow -\U27B2;Circled Heavy White Rightwards Arrow -\U27B3;White-Feathered Rightwards Arrow -\U27B4;Black-Feathered South East Arrow -\U27B5;Black-Feathered Rightwards Arrow -\U27B6;Black-Feathered North East Arrow -\U27B7;Heavy Black-Feathered South East Arrow -\U27B8;Heavy Black-Feathered Rightwards Arrow -\U27B9;Heavy Black-Feathered North East Arrow -\U27BA;Teardrop-Barbed Rightwards Arrow -\U27BB;Heavy Teardrop-Shanked Rightwards Arrow -\U27BC;Wedge-Tailed Rightwards Arrow -\U27BD;Heavy Wedge-Tailed Rightwards Arrow -\U27BE;Open-Outlined Rightwards Arrow -\U27BF;Double Curly Loop -\U27C0;Three Dimensional Angle -\U27C1;White Triangle Containing Small White Triangle -\U27C2;Perpendicular -\U27C3;Open Subset -\U27C4;Open Superset -\U27C5;Left S-Shaped Bag Delimiter -\U27C6;Right S-Shaped Bag Delimiter -\U27C7;Or With Dot Inside -\U27C8;Reverse Solidus Preceding Subset -\U27C9;Superset Preceding Solidus -\U27CA;Vertical Bar With Horizontal Stroke -\U27CB;Mathematical Rising Diagonal -\U27CC;Long Division -\U27CD;Mathematical Falling Diagonal -\U27CE;Squared Logical And -\U27CF;Squared Logical Or -\U27D0;White Diamond With Centred Dot -\U27D1;And With Dot -\U27D2;Element Of Opening Upwards -\U27D3;Lower Right Corner With Dot -\U27D4;Upper Left Corner With Dot -\U27D5;Left Outer Join -\U27D6;Right Outer Join -\U27D7;Full Outer Join -\U27D8;Large Up Tack -\U27D9;Large Down Tack -\U27DA;Left And Right Double Turnstile -\U27DB;Left And Right Tack -\U27DC;Left Multimap -\U27DD;Long Right Tack -\U27DE;Long Left Tack -\U27DF;Up Tack With Circle Above -\U27E0;Lozenge Divided By Horizontal Rule -\U27E1;White Concave-Sided Diamond -\U27E2;White Concave-Sided Diamond With Leftwards Tick -\U27E3;White Concave-Sided Diamond With Rightwards Tick -\U27E4;White Square With Leftwards Tick -\U27E5;White Square With Rightwards Tick -\U27E6;Mathematical Left White Square Bracket -\U27E7;Mathematical Right White Square Bracket -\U27E8;Mathematical Left Angle Bracket -\U27E9;Mathematical Right Angle Bracket -\U27EA;Mathematical Left Double Angle Bracket -\U27EB;Mathematical Right Double Angle Bracket -\U27EC;Mathematical Left White Tortoise Shell Bracket -\U27ED;Mathematical Right White Tortoise Shell Bracket -\U27EE;Mathematical Left Flattened Parenthesis -\U27EF;Mathematical Right Flattened Parenthesis -\U27F0;Upwards Quadruple Arrow -\U27F1;Downwards Quadruple Arrow -\U27F2;Anticlockwise Gapped Circle Arrow -\U27F3;Clockwise Gapped Circle Arrow -\U27F4;Right Arrow With Circled Plus -\U27F5;Long Leftwards Arrow -\U27F6;Long Rightwards Arrow -\U27F7;Long Left Right Arrow -\U27F8;Long Leftwards Double Arrow -\U27F9;Long Rightwards Double Arrow -\U27FA;Long Left Right Double Arrow -\U27FB;Long Leftwards Arrow From Bar -\U27FC;Long Rightwards Arrow From Bar -\U27FD;Long Leftwards Double Arrow From Bar -\U27FE;Long Rightwards Double Arrow From Bar -\U27FF;Long Rightwards Squiggle Arrow -\U2800;Braille Pattern Blank -\U2801;Braille Pattern Dots-1 -\U2802;Braille Pattern Dots-2 -\U2803;Braille Pattern Dots-12 -\U2804;Braille Pattern Dots-3 -\U2805;Braille Pattern Dots-13 -\U2806;Braille Pattern Dots-23 -\U2807;Braille Pattern Dots-123 -\U2808;Braille Pattern Dots-4 -\U2809;Braille Pattern Dots-14 -\U280A;Braille Pattern Dots-24 -\U280B;Braille Pattern Dots-124 -\U280C;Braille Pattern Dots-34 -\U280D;Braille Pattern Dots-134 -\U280E;Braille Pattern Dots-234 -\U280F;Braille Pattern Dots-1234 -\U2810;Braille Pattern Dots-5 -\U2811;Braille Pattern Dots-15 -\U2812;Braille Pattern Dots-25 -\U2813;Braille Pattern Dots-125 -\U2814;Braille Pattern Dots-35 -\U2815;Braille Pattern Dots-135 -\U2816;Braille Pattern Dots-235 -\U2817;Braille Pattern Dots-1235 -\U2818;Braille Pattern Dots-45 -\U2819;Braille Pattern Dots-145 -\U281A;Braille Pattern Dots-245 -\U281B;Braille Pattern Dots-1245 -\U281C;Braille Pattern Dots-345 -\U281D;Braille Pattern Dots-1345 -\U281E;Braille Pattern Dots-2345 -\U281F;Braille Pattern Dots-12345 -\U2820;Braille Pattern Dots-6 -\U2821;Braille Pattern Dots-16 -\U2822;Braille Pattern Dots-26 -\U2823;Braille Pattern Dots-126 -\U2824;Braille Pattern Dots-36 -\U2825;Braille Pattern Dots-136 -\U2826;Braille Pattern Dots-236 -\U2827;Braille Pattern Dots-1236 -\U2828;Braille Pattern Dots-46 -\U2829;Braille Pattern Dots-146 -\U282A;Braille Pattern Dots-246 -\U282B;Braille Pattern Dots-1246 -\U282C;Braille Pattern Dots-346 -\U282D;Braille Pattern Dots-1346 -\U282E;Braille Pattern Dots-2346 -\U282F;Braille Pattern Dots-12346 -\U2830;Braille Pattern Dots-56 -\U2831;Braille Pattern Dots-156 -\U2832;Braille Pattern Dots-256 -\U2833;Braille Pattern Dots-1256 -\U2834;Braille Pattern Dots-356 -\U2835;Braille Pattern Dots-1356 -\U2836;Braille Pattern Dots-2356 -\U2837;Braille Pattern Dots-12356 -\U2838;Braille Pattern Dots-456 -\U2839;Braille Pattern Dots-1456 -\U283A;Braille Pattern Dots-2456 -\U283B;Braille Pattern Dots-12456 -\U283C;Braille Pattern Dots-3456 -\U283D;Braille Pattern Dots-13456 -\U283E;Braille Pattern Dots-23456 -\U283F;Braille Pattern Dots-123456 -\U2840;Braille Pattern Dots-7 -\U2841;Braille Pattern Dots-17 -\U2842;Braille Pattern Dots-27 -\U2843;Braille Pattern Dots-127 -\U2844;Braille Pattern Dots-37 -\U2845;Braille Pattern Dots-137 -\U2846;Braille Pattern Dots-237 -\U2847;Braille Pattern Dots-1237 -\U2848;Braille Pattern Dots-47 -\U2849;Braille Pattern Dots-147 -\U284A;Braille Pattern Dots-247 -\U284B;Braille Pattern Dots-1247 -\U284C;Braille Pattern Dots-347 -\U284D;Braille Pattern Dots-1347 -\U284E;Braille Pattern Dots-2347 -\U284F;Braille Pattern Dots-12347 -\U2850;Braille Pattern Dots-57 -\U2851;Braille Pattern Dots-157 -\U2852;Braille Pattern Dots-257 -\U2853;Braille Pattern Dots-1257 -\U2854;Braille Pattern Dots-357 -\U2855;Braille Pattern Dots-1357 -\U2856;Braille Pattern Dots-2357 -\U2857;Braille Pattern Dots-12357 -\U2858;Braille Pattern Dots-457 -\U2859;Braille Pattern Dots-1457 -\U285A;Braille Pattern Dots-2457 -\U285B;Braille Pattern Dots-12457 -\U285C;Braille Pattern Dots-3457 -\U285D;Braille Pattern Dots-13457 -\U285E;Braille Pattern Dots-23457 -\U285F;Braille Pattern Dots-123457 -\U2860;Braille Pattern Dots-67 -\U2861;Braille Pattern Dots-167 -\U2862;Braille Pattern Dots-267 -\U2863;Braille Pattern Dots-1267 -\U2864;Braille Pattern Dots-367 -\U2865;Braille Pattern Dots-1367 -\U2866;Braille Pattern Dots-2367 -\U2867;Braille Pattern Dots-12367 -\U2868;Braille Pattern Dots-467 -\U2869;Braille Pattern Dots-1467 -\U286A;Braille Pattern Dots-2467 -\U286B;Braille Pattern Dots-12467 -\U286C;Braille Pattern Dots-3467 -\U286D;Braille Pattern Dots-13467 -\U286E;Braille Pattern Dots-23467 -\U286F;Braille Pattern Dots-123467 -\U2870;Braille Pattern Dots-567 -\U2871;Braille Pattern Dots-1567 -\U2872;Braille Pattern Dots-2567 -\U2873;Braille Pattern Dots-12567 -\U2874;Braille Pattern Dots-3567 -\U2875;Braille Pattern Dots-13567 -\U2876;Braille Pattern Dots-23567 -\U2877;Braille Pattern Dots-123567 -\U2878;Braille Pattern Dots-4567 -\U2879;Braille Pattern Dots-14567 -\U287A;Braille Pattern Dots-24567 -\U287B;Braille Pattern Dots-124567 -\U287C;Braille Pattern Dots-34567 -\U287D;Braille Pattern Dots-134567 -\U287E;Braille Pattern Dots-234567 -\U287F;Braille Pattern Dots-1234567 -\U2880;Braille Pattern Dots-8 -\U2881;Braille Pattern Dots-18 -\U2882;Braille Pattern Dots-28 -\U2883;Braille Pattern Dots-128 -\U2884;Braille Pattern Dots-38 -\U2885;Braille Pattern Dots-138 -\U2886;Braille Pattern Dots-238 -\U2887;Braille Pattern Dots-1238 -\U2888;Braille Pattern Dots-48 -\U2889;Braille Pattern Dots-148 -\U288A;Braille Pattern Dots-248 -\U288B;Braille Pattern Dots-1248 -\U288C;Braille Pattern Dots-348 -\U288D;Braille Pattern Dots-1348 -\U288E;Braille Pattern Dots-2348 -\U288F;Braille Pattern Dots-12348 -\U2890;Braille Pattern Dots-58 -\U2891;Braille Pattern Dots-158 -\U2892;Braille Pattern Dots-258 -\U2893;Braille Pattern Dots-1258 -\U2894;Braille Pattern Dots-358 -\U2895;Braille Pattern Dots-1358 -\U2896;Braille Pattern Dots-2358 -\U2897;Braille Pattern Dots-12358 -\U2898;Braille Pattern Dots-458 -\U2899;Braille Pattern Dots-1458 -\U289A;Braille Pattern Dots-2458 -\U289B;Braille Pattern Dots-12458 -\U289C;Braille Pattern Dots-3458 -\U289D;Braille Pattern Dots-13458 -\U289E;Braille Pattern Dots-23458 -\U289F;Braille Pattern Dots-123458 -\U28A0;Braille Pattern Dots-68 -\U28A1;Braille Pattern Dots-168 -\U28A2;Braille Pattern Dots-268 -\U28A3;Braille Pattern Dots-1268 -\U28A4;Braille Pattern Dots-368 -\U28A5;Braille Pattern Dots-1368 -\U28A6;Braille Pattern Dots-2368 -\U28A7;Braille Pattern Dots-12368 -\U28A8;Braille Pattern Dots-468 -\U28A9;Braille Pattern Dots-1468 -\U28AA;Braille Pattern Dots-2468 -\U28AB;Braille Pattern Dots-12468 -\U28AC;Braille Pattern Dots-3468 -\U28AD;Braille Pattern Dots-13468 -\U28AE;Braille Pattern Dots-23468 -\U28AF;Braille Pattern Dots-123468 -\U28B0;Braille Pattern Dots-568 -\U28B1;Braille Pattern Dots-1568 -\U28B2;Braille Pattern Dots-2568 -\U28B3;Braille Pattern Dots-12568 -\U28B4;Braille Pattern Dots-3568 -\U28B5;Braille Pattern Dots-13568 -\U28B6;Braille Pattern Dots-23568 -\U28B7;Braille Pattern Dots-123568 -\U28B8;Braille Pattern Dots-4568 -\U28B9;Braille Pattern Dots-14568 -\U28BA;Braille Pattern Dots-24568 -\U28BB;Braille Pattern Dots-124568 -\U28BC;Braille Pattern Dots-34568 -\U28BD;Braille Pattern Dots-134568 -\U28BE;Braille Pattern Dots-234568 -\U28BF;Braille Pattern Dots-1234568 -\U28C0;Braille Pattern Dots-78 -\U28C1;Braille Pattern Dots-178 -\U28C2;Braille Pattern Dots-278 -\U28C3;Braille Pattern Dots-1278 -\U28C4;Braille Pattern Dots-378 -\U28C5;Braille Pattern Dots-1378 -\U28C6;Braille Pattern Dots-2378 -\U28C7;Braille Pattern Dots-12378 -\U28C8;Braille Pattern Dots-478 -\U28C9;Braille Pattern Dots-1478 -\U28CA;Braille Pattern Dots-2478 -\U28CB;Braille Pattern Dots-12478 -\U28CC;Braille Pattern Dots-3478 -\U28CD;Braille Pattern Dots-13478 -\U28CE;Braille Pattern Dots-23478 -\U28CF;Braille Pattern Dots-123478 -\U28D0;Braille Pattern Dots-578 -\U28D1;Braille Pattern Dots-1578 -\U28D2;Braille Pattern Dots-2578 -\U28D3;Braille Pattern Dots-12578 -\U28D4;Braille Pattern Dots-3578 -\U28D5;Braille Pattern Dots-13578 -\U28D6;Braille Pattern Dots-23578 -\U28D7;Braille Pattern Dots-123578 -\U28D8;Braille Pattern Dots-4578 -\U28D9;Braille Pattern Dots-14578 -\U28DA;Braille Pattern Dots-24578 -\U28DB;Braille Pattern Dots-124578 -\U28DC;Braille Pattern Dots-34578 -\U28DD;Braille Pattern Dots-134578 -\U28DE;Braille Pattern Dots-234578 -\U28DF;Braille Pattern Dots-1234578 -\U28E0;Braille Pattern Dots-678 -\U28E1;Braille Pattern Dots-1678 -\U28E2;Braille Pattern Dots-2678 -\U28E3;Braille Pattern Dots-12678 -\U28E4;Braille Pattern Dots-3678 -\U28E5;Braille Pattern Dots-13678 -\U28E6;Braille Pattern Dots-23678 -\U28E7;Braille Pattern Dots-123678 -\U28E8;Braille Pattern Dots-4678 -\U28E9;Braille Pattern Dots-14678 -\U28EA;Braille Pattern Dots-24678 -\U28EB;Braille Pattern Dots-124678 -\U28EC;Braille Pattern Dots-34678 -\U28ED;Braille Pattern Dots-134678 -\U28EE;Braille Pattern Dots-234678 -\U28EF;Braille Pattern Dots-1234678 -\U28F0;Braille Pattern Dots-5678 -\U28F1;Braille Pattern Dots-15678 -\U28F2;Braille Pattern Dots-25678 -\U28F3;Braille Pattern Dots-125678 -\U28F4;Braille Pattern Dots-35678 -\U28F5;Braille Pattern Dots-135678 -\U28F6;Braille Pattern Dots-235678 -\U28F7;Braille Pattern Dots-1235678 -\U28F8;Braille Pattern Dots-45678 -\U28F9;Braille Pattern Dots-145678 -\U28FA;Braille Pattern Dots-245678 -\U28FB;Braille Pattern Dots-1245678 -\U28FC;Braille Pattern Dots-345678 -\U28FD;Braille Pattern Dots-1345678 -\U28FE;Braille Pattern Dots-2345678 -\U28FF;Braille Pattern Dots-12345678 -\U2900;Rightwards Two-Headed Arrow With Vertical Stroke -\U2901;Rightwards Two-Headed Arrow With Double Vertical Stroke -\U2902;Leftwards Double Arrow With Vertical Stroke -\U2903;Rightwards Double Arrow With Vertical Stroke -\U2904;Left Right Double Arrow With Vertical Stroke -\U2905;Rightwards Two-Headed Arrow From Bar -\U2906;Leftwards Double Arrow From Bar -\U2907;Rightwards Double Arrow From Bar -\U2908;Downwards Arrow With Horizontal Stroke -\U2909;Upwards Arrow With Horizontal Stroke -\U290A;Upwards Triple Arrow -\U290B;Downwards Triple Arrow -\U290C;Leftwards Double Dash Arrow -\U290D;Rightwards Double Dash Arrow -\U290E;Leftwards Triple Dash Arrow -\U290F;Rightwards Triple Dash Arrow -\U2910;Rightwards Two-Headed Triple Dash Arrow -\U2911;Rightwards Arrow With Dotted Stem -\U2912;Upwards Arrow To Bar -\U2913;Downwards Arrow To Bar -\U2914;Rightwards Arrow With Tail With Vertical Stroke -\U2915;Rightwards Arrow With Tail With Double Vertical Stroke -\U2916;Rightwards Two-Headed Arrow With Tail -\U2917;Rightwards Two-Headed Arrow With Tail With Vertical Stroke -\U2918;Rightwards Two-Headed Arrow With Tail With Double Vertical Stroke -\U2919;Leftwards Arrow-Tail -\U291A;Rightwards Arrow-Tail -\U291B;Leftwards Double Arrow-Tail -\U291C;Rightwards Double Arrow-Tail -\U291D;Leftwards Arrow To Black Diamond -\U291E;Rightwards Arrow To Black Diamond -\U291F;Leftwards Arrow From Bar To Black Diamond -\U2920;Rightwards Arrow From Bar To Black Diamond -\U2921;North West And South East Arrow -\U2922;North East And South West Arrow -\U2923;North West Arrow With Hook -\U2924;North East Arrow With Hook -\U2925;South East Arrow With Hook -\U2926;South West Arrow With Hook -\U2927;North West Arrow And North East Arrow -\U2928;North East Arrow And South East Arrow -\U2929;South East Arrow And South West Arrow -\U292A;South West Arrow And North West Arrow -\U292B;Rising Diagonal Crossing Falling Diagonal -\U292C;Falling Diagonal Crossing Rising Diagonal -\U292D;South East Arrow Crossing North East Arrow -\U292E;North East Arrow Crossing South East Arrow -\U292F;Falling Diagonal Crossing North East Arrow -\U2930;Rising Diagonal Crossing South East Arrow -\U2931;North East Arrow Crossing North West Arrow -\U2932;North West Arrow Crossing North East Arrow -\U2933;Wave Arrow Pointing Directly Right -\U2934;Arrow Pointing Rightwards Then Curving Upwards -\U2935;Arrow Pointing Rightwards Then Curving Downwards -\U2936;Arrow Pointing Downwards Then Curving Leftwards -\U2937;Arrow Pointing Downwards Then Curving Rightwards -\U2938;Right-Side Arc Clockwise Arrow -\U2939;Left-Side Arc Anticlockwise Arrow -\U293A;Top Arc Anticlockwise Arrow -\U293B;Bottom Arc Anticlockwise Arrow -\U293C;Top Arc Clockwise Arrow With Minus -\U293D;Top Arc Anticlockwise Arrow With Plus -\U293E;Lower Right Semicircular Clockwise Arrow -\U293F;Lower Left Semicircular Anticlockwise Arrow -\U2940;Anticlockwise Closed Circle Arrow -\U2941;Clockwise Closed Circle Arrow -\U2942;Rightwards Arrow Above Short Leftwards Arrow -\U2943;Leftwards Arrow Above Short Rightwards Arrow -\U2944;Short Rightwards Arrow Above Leftwards Arrow -\U2945;Rightwards Arrow With Plus Below -\U2946;Leftwards Arrow With Plus Below -\U2947;Rightwards Arrow Through X -\U2948;Left Right Arrow Through Small Circle -\U2949;Upwards Two-Headed Arrow From Small Circle -\U294A;Left Barb Up Right Barb Down Harpoon -\U294B;Left Barb Down Right Barb Up Harpoon -\U294C;Up Barb Right Down Barb Left Harpoon -\U294D;Up Barb Left Down Barb Right Harpoon -\U294E;Left Barb Up Right Barb Up Harpoon -\U294F;Up Barb Right Down Barb Right Harpoon -\U2950;Left Barb Down Right Barb Down Harpoon -\U2951;Up Barb Left Down Barb Left Harpoon -\U2952;Leftwards Harpoon With Barb Up To Bar -\U2953;Rightwards Harpoon With Barb Up To Bar -\U2954;Upwards Harpoon With Barb Right To Bar -\U2955;Downwards Harpoon With Barb Right To Bar -\U2956;Leftwards Harpoon With Barb Down To Bar -\U2957;Rightwards Harpoon With Barb Down To Bar -\U2958;Upwards Harpoon With Barb Left To Bar -\U2959;Downwards Harpoon With Barb Left To Bar -\U295A;Leftwards Harpoon With Barb Up From Bar -\U295B;Rightwards Harpoon With Barb Up From Bar -\U295C;Upwards Harpoon With Barb Right From Bar -\U295D;Downwards Harpoon With Barb Right From Bar -\U295E;Leftwards Harpoon With Barb Down From Bar -\U295F;Rightwards Harpoon With Barb Down From Bar -\U2960;Upwards Harpoon With Barb Left From Bar -\U2961;Downwards Harpoon With Barb Left From Bar -\U2962;Leftwards Harpoon With Barb Up Above Leftwards Harpoon With Barb Down -\U2963;Upwards Harpoon With Barb Left Beside Upwards Harpoon With Barb Right -\U2964;Rightwards Harpoon With Barb Up Above Rightwards Harpoon With Barb Down -\U2965;Downwards Harpoon With Barb Left Beside Downwards Harpoon With Barb Right -\U2966;Leftwards Harpoon With Barb Up Above Rightwards Harpoon With Barb Up -\U2967;Leftwards Harpoon With Barb Down Above Rightwards Harpoon With Barb Down -\U2968;Rightwards Harpoon With Barb Up Above Leftwards Harpoon With Barb Up -\U2969;Rightwards Harpoon With Barb Down Above Leftwards Harpoon With Barb Down -\U296A;Leftwards Harpoon With Barb Up Above Long Dash -\U296B;Leftwards Harpoon With Barb Down Below Long Dash -\U296C;Rightwards Harpoon With Barb Up Above Long Dash -\U296D;Rightwards Harpoon With Barb Down Below Long Dash -\U296E;Upwards Harpoon With Barb Left Beside Downwards Harpoon With Barb Right -\U296F;Downwards Harpoon With Barb Left Beside Upwards Harpoon With Barb Right -\U2970;Right Double Arrow With Rounded Head -\U2971;Equals Sign Above Rightwards Arrow -\U2972;Tilde Operator Above Rightwards Arrow -\U2973;Leftwards Arrow Above Tilde Operator -\U2974;Rightwards Arrow Above Tilde Operator -\U2975;Rightwards Arrow Above Almost Equal To -\U2976;Less-Than Above Leftwards Arrow -\U2977;Leftwards Arrow Through Less-Than -\U2978;Greater-Than Above Rightwards Arrow -\U2979;Subset Above Rightwards Arrow -\U297A;Leftwards Arrow Through Subset -\U297B;Superset Above Leftwards Arrow -\U297C;Left Fish Tail -\U297D;Right Fish Tail -\U297E;Up Fish Tail -\U297F;Down Fish Tail -\U2980;Triple Vertical Bar Delimiter -\U2981;Z Notation Spot -\U2982;Z Notation Type Colon -\U2983;Left White Curly Bracket -\U2984;Right White Curly Bracket -\U2985;Left White Parenthesis -\U2986;Right White Parenthesis -\U2987;Z Notation Left Image Bracket -\U2988;Z Notation Right Image Bracket -\U2989;Z Notation Left Binding Bracket -\U298A;Z Notation Right Binding Bracket -\U298B;Left Square Bracket With Underbar -\U298C;Right Square Bracket With Underbar -\U298D;Left Square Bracket With Tick In Top Corner -\U298E;Right Square Bracket With Tick In Bottom Corner -\U298F;Left Square Bracket With Tick In Bottom Corner -\U2990;Right Square Bracket With Tick In Top Corner -\U2991;Left Angle Bracket With Dot -\U2992;Right Angle Bracket With Dot -\U2993;Left Arc Less-Than Bracket -\U2994;Right Arc Greater-Than Bracket -\U2995;Double Left Arc Greater-Than Bracket -\U2996;Double Right Arc Less-Than Bracket -\U2997;Left Black Tortoise Shell Bracket -\U2998;Right Black Tortoise Shell Bracket -\U2999;Dotted Fence -\U299A;Vertical Zigzag Line -\U299B;Measured Angle Opening Left -\U299C;Right Angle Variant With Square -\U299D;Measured Right Angle With Dot -\U299E;Angle With S Inside -\U299F;Acute Angle -\U29A0;Spherical Angle Opening Left -\U29A1;Spherical Angle Opening Up -\U29A2;Turned Angle -\U29A3;Reversed Angle -\U29A4;Angle With Underbar -\U29A5;Reversed Angle With Underbar -\U29A6;Oblique Angle Opening Up -\U29A7;Oblique Angle Opening Down -\U29A8;Measured Angle With Open Arm Ending In Arrow Pointing Up And Right -\U29A9;Measured Angle With Open Arm Ending In Arrow Pointing Up And Left -\U29AA;Measured Angle With Open Arm Ending In Arrow Pointing Down And Right -\U29AB;Measured Angle With Open Arm Ending In Arrow Pointing Down And Left -\U29AC;Measured Angle With Open Arm Ending In Arrow Pointing Right And Up -\U29AD;Measured Angle With Open Arm Ending In Arrow Pointing Left And Up -\U29AE;Measured Angle With Open Arm Ending In Arrow Pointing Right And Down -\U29AF;Measured Angle With Open Arm Ending In Arrow Pointing Left And Down -\U29B0;Reversed Empty Set -\U29B1;Empty Set With Overbar -\U29B2;Empty Set With Small Circle Above -\U29B3;Empty Set With Right Arrow Above -\U29B4;Empty Set With Left Arrow Above -\U29B5;Circle With Horizontal Bar -\U29B6;Circled Vertical Bar -\U29B7;Circled Parallel -\U29B8;Circled Reverse Solidus -\U29B9;Circled Perpendicular -\U29BA;Circle Divided By Horizontal Bar And Top Half Divided By Vertical Bar -\U29BB;Circle With Superimposed X -\U29BC;Circled Anticlockwise-Rotated Division Sign -\U29BD;Up Arrow Through Circle -\U29BE;Circled White Bullet -\U29BF;Circled Bullet -\U29C0;Circled Less-Than -\U29C1;Circled Greater-Than -\U29C2;Circle With Small Circle To The Right -\U29C3;Circle With Two Horizontal Strokes To The Right -\U29C4;Squared Rising Diagonal Slash -\U29C5;Squared Falling Diagonal Slash -\U29C6;Squared Asterisk -\U29C7;Squared Small Circle -\U29C8;Squared Square -\U29C9;Two Joined Squares -\U29CA;Triangle With Dot Above -\U29CB;Triangle With Underbar -\U29CC;S In Triangle -\U29CD;Triangle With Serifs At Bottom -\U29CE;Right Triangle Above Left Triangle -\U29CF;Left Triangle Beside Vertical Bar -\U29D0;Vertical Bar Beside Right Triangle -\U29D1;Bowtie With Left Half Black -\U29D2;Bowtie With Right Half Black -\U29D3;Black Bowtie -\U29D4;Times With Left Half Black -\U29D5;Times With Right Half Black -\U29D6;White Hourglass -\U29D7;Black Hourglass -\U29D8;Left Wiggly Fence -\U29D9;Right Wiggly Fence -\U29DA;Left Double Wiggly Fence -\U29DB;Right Double Wiggly Fence -\U29DC;Incomplete Infinity -\U29DD;Tie Over Infinity -\U29DE;Infinity Negated With Vertical Bar -\U29DF;Double-Ended Multimap -\U29E0;Square With Contoured Outline -\U29E1;Increases As -\U29E2;Shuffle Product -\U29E3;Equals Sign And Slanted Parallel -\U29E4;Equals Sign And Slanted Parallel With Tilde Above -\U29E5;Identical To And Slanted Parallel -\U29E6;Gleich Stark -\U29E7;Thermodynamic -\U29E8;Down-Pointing Triangle With Left Half Black -\U29E9;Down-Pointing Triangle With Right Half Black -\U29EA;Black Diamond With Down Arrow -\U29EB;Black Lozenge -\U29EC;White Circle With Down Arrow -\U29ED;Black Circle With Down Arrow -\U29EE;Error-Barred White Square -\U29EF;Error-Barred Black Square -\U29F0;Error-Barred White Diamond -\U29F1;Error-Barred Black Diamond -\U29F2;Error-Barred White Circle -\U29F3;Error-Barred Black Circle -\U29F4;Rule-Delayed -\U29F5;Reverse Solidus Operator -\U29F6;Solidus With Overbar -\U29F7;Reverse Solidus With Horizontal Stroke -\U29F8;Big Solidus -\U29F9;Big Reverse Solidus -\U29FA;Double Plus -\U29FB;Triple Plus -\U29FC;Left-Pointing Curved Angle Bracket -\U29FD;Right-Pointing Curved Angle Bracket -\U29FE;Tiny -\U29FF;Miny -\U2A00;N-Ary Circled Dot Operator -\U2A01;N-Ary Circled Plus Operator -\U2A02;N-Ary Circled Times Operator -\U2A03;N-Ary Union Operator With Dot -\U2A04;N-Ary Union Operator With Plus -\U2A05;N-Ary Square Intersection Operator -\U2A06;N-Ary Square Union Operator -\U2A07;Two Logical And Operator -\U2A08;Two Logical Or Operator -\U2A09;N-Ary Times Operator -\U2A0A;Modulo Two Sum -\U2A0B;Summation With Integral -\U2A0C;Quadruple Integral Operator -\U2A0D;Finite Part Integral -\U2A0E;Integral With Double Stroke -\U2A0F;Integral Average With Slash -\U2A10;Circulation Function -\U2A11;Anticlockwise Integration -\U2A12;Line Integration With Rectangular Path Around Pole -\U2A13;Line Integration With Semicircular Path Around Pole -\U2A14;Line Integration Not Including The Pole -\U2A15;Integral Around A Point Operator -\U2A16;Quaternion Integral Operator -\U2A17;Integral With Leftwards Arrow With Hook -\U2A18;Integral With Times Sign -\U2A19;Integral With Intersection -\U2A1A;Integral With Union -\U2A1B;Integral With Overbar -\U2A1C;Integral With Underbar -\U2A1D;Join -\U2A1E;Large Left Triangle Operator -\U2A1F;Z Notation Schema Composition -\U2A20;Z Notation Schema Piping -\U2A21;Z Notation Schema Projection -\U2A22;Plus Sign With Small Circle Above -\U2A23;Plus Sign With Circumflex Accent Above -\U2A24;Plus Sign With Tilde Above -\U2A25;Plus Sign With Dot Below -\U2A26;Plus Sign With Tilde Below -\U2A27;Plus Sign With Subscript Two -\U2A28;Plus Sign With Black Triangle -\U2A29;Minus Sign With Comma Above -\U2A2A;Minus Sign With Dot Below -\U2A2B;Minus Sign With Falling Dots -\U2A2C;Minus Sign With Rising Dots -\U2A2D;Plus Sign In Left Half Circle -\U2A2E;Plus Sign In Right Half Circle -\U2A2F;Vector Or Cross Product -\U2A30;Multiplication Sign With Dot Above -\U2A31;Multiplication Sign With Underbar -\U2A32;Semidirect Product With Bottom Closed -\U2A33;Smash Product -\U2A34;Multiplication Sign In Left Half Circle -\U2A35;Multiplication Sign In Right Half Circle -\U2A36;Circled Multiplication Sign With Circumflex Accent -\U2A37;Multiplication Sign In Double Circle -\U2A38;Circled Division Sign -\U2A39;Plus Sign In Triangle -\U2A3A;Minus Sign In Triangle -\U2A3B;Multiplication Sign In Triangle -\U2A3C;Interior Product -\U2A3D;Righthand Interior Product -\U2A3E;Z Notation Relational Composition -\U2A3F;Amalgamation Or Coproduct -\U2A40;Intersection With Dot -\U2A41;Union With Minus Sign -\U2A42;Union With Overbar -\U2A43;Intersection With Overbar -\U2A44;Intersection With Logical And -\U2A45;Union With Logical Or -\U2A46;Union Above Intersection -\U2A47;Intersection Above Union -\U2A48;Union Above Bar Above Intersection -\U2A49;Intersection Above Bar Above Union -\U2A4A;Union Beside And Joined With Union -\U2A4B;Intersection Beside And Joined With Intersection -\U2A4C;Closed Union With Serifs -\U2A4D;Closed Intersection With Serifs -\U2A4E;Double Square Intersection -\U2A4F;Double Square Union -\U2A50;Closed Union With Serifs And Smash Product -\U2A51;Logical And With Dot Above -\U2A52;Logical Or With Dot Above -\U2A53;Double Logical And -\U2A54;Double Logical Or -\U2A55;Two Intersecting Logical And -\U2A56;Two Intersecting Logical Or -\U2A57;Sloping Large Or -\U2A58;Sloping Large And -\U2A59;Logical Or Overlapping Logical And -\U2A5A;Logical And With Middle Stem -\U2A5B;Logical Or With Middle Stem -\U2A5C;Logical And With Horizontal Dash -\U2A5D;Logical Or With Horizontal Dash -\U2A5E;Logical And With Double Overbar -\U2A5F;Logical And With Underbar -\U2A60;Logical And With Double Underbar -\U2A61;Small Vee With Underbar -\U2A62;Logical Or With Double Overbar -\U2A63;Logical Or With Double Underbar -\U2A64;Z Notation Domain Antirestriction -\U2A65;Z Notation Range Antirestriction -\U2A66;Equals Sign With Dot Below -\U2A67;Identical With Dot Above -\U2A68;Triple Horizontal Bar With Double Vertical Stroke -\U2A69;Triple Horizontal Bar With Triple Vertical Stroke -\U2A6A;Tilde Operator With Dot Above -\U2A6B;Tilde Operator With Rising Dots -\U2A6C;Similar Minus Similar -\U2A6D;Congruent With Dot Above -\U2A6E;Equals With Asterisk -\U2A6F;Almost Equal To With Circumflex Accent -\U2A70;Approximately Equal Or Equal To -\U2A71;Equals Sign Above Plus Sign -\U2A72;Plus Sign Above Equals Sign -\U2A73;Equals Sign Above Tilde Operator -\U2A74;Double Colon Equal -\U2A75;Two Consecutive Equals Signs -\U2A76;Three Consecutive Equals Signs -\U2A77;Equals Sign With Two Dots Above And Two Dots Below -\U2A78;Equivalent With Four Dots Above -\U2A79;Less-Than With Circle Inside -\U2A7A;Greater-Than With Circle Inside -\U2A7B;Less-Than With Question Mark Above -\U2A7C;Greater-Than With Question Mark Above -\U2A7D;Less-Than Or Slanted Equal To -\U2A7E;Greater-Than Or Slanted Equal To -\U2A7F;Less-Than Or Slanted Equal To With Dot Inside -\U2A80;Greater-Than Or Slanted Equal To With Dot Inside -\U2A81;Less-Than Or Slanted Equal To With Dot Above -\U2A82;Greater-Than Or Slanted Equal To With Dot Above -\U2A83;Less-Than Or Slanted Equal To With Dot Above Right -\U2A84;Greater-Than Or Slanted Equal To With Dot Above Left -\U2A85;Less-Than Or Approximate -\U2A86;Greater-Than Or Approximate -\U2A87;Less-Than And Single-Line Not Equal To -\U2A88;Greater-Than And Single-Line Not Equal To -\U2A89;Less-Than And Not Approximate -\U2A8A;Greater-Than And Not Approximate -\U2A8B;Less-Than Above Double-Line Equal Above Greater-Than -\U2A8C;Greater-Than Above Double-Line Equal Above Less-Than -\U2A8D;Less-Than Above Similar Or Equal -\U2A8E;Greater-Than Above Similar Or Equal -\U2A8F;Less-Than Above Similar Above Greater-Than -\U2A90;Greater-Than Above Similar Above Less-Than -\U2A91;Less-Than Above Greater-Than Above Double-Line Equal -\U2A92;Greater-Than Above Less-Than Above Double-Line Equal -\U2A93;Less-Than Above Slanted Equal Above Greater-Than Above Slanted Equal -\U2A94;Greater-Than Above Slanted Equal Above Less-Than Above Slanted Equal -\U2A95;Slanted Equal To Or Less-Than -\U2A96;Slanted Equal To Or Greater-Than -\U2A97;Slanted Equal To Or Less-Than With Dot Inside -\U2A98;Slanted Equal To Or Greater-Than With Dot Inside -\U2A99;Double-Line Equal To Or Less-Than -\U2A9A;Double-Line Equal To Or Greater-Than -\U2A9B;Double-Line Slanted Equal To Or Less-Than -\U2A9C;Double-Line Slanted Equal To Or Greater-Than -\U2A9D;Similar Or Less-Than -\U2A9E;Similar Or Greater-Than -\U2A9F;Similar Above Less-Than Above Equals Sign -\U2AA0;Similar Above Greater-Than Above Equals Sign -\U2AA1;Double Nested Less-Than -\U2AA2;Double Nested Greater-Than -\U2AA3;Double Nested Less-Than With Underbar -\U2AA4;Greater-Than Overlapping Less-Than -\U2AA5;Greater-Than Beside Less-Than -\U2AA6;Less-Than Closed By Curve -\U2AA7;Greater-Than Closed By Curve -\U2AA8;Less-Than Closed By Curve Above Slanted Equal -\U2AA9;Greater-Than Closed By Curve Above Slanted Equal -\U2AAA;Smaller Than -\U2AAB;Larger Than -\U2AAC;Smaller Than Or Equal To -\U2AAD;Larger Than Or Equal To -\U2AAE;Equals Sign With Bumpy Above -\U2AAF;Precedes Above Single-Line Equals Sign -\U2AB0;Succeeds Above Single-Line Equals Sign -\U2AB1;Precedes Above Single-Line Not Equal To -\U2AB2;Succeeds Above Single-Line Not Equal To -\U2AB3;Precedes Above Equals Sign -\U2AB4;Succeeds Above Equals Sign -\U2AB5;Precedes Above Not Equal To -\U2AB6;Succeeds Above Not Equal To -\U2AB7;Precedes Above Almost Equal To -\U2AB8;Succeeds Above Almost Equal To -\U2AB9;Precedes Above Not Almost Equal To -\U2ABA;Succeeds Above Not Almost Equal To -\U2ABB;Double Precedes -\U2ABC;Double Succeeds -\U2ABD;Subset With Dot -\U2ABE;Superset With Dot -\U2ABF;Subset With Plus Sign Below -\U2AC0;Superset With Plus Sign Below -\U2AC1;Subset With Multiplication Sign Below -\U2AC2;Superset With Multiplication Sign Below -\U2AC3;Subset Of Or Equal To With Dot Above -\U2AC4;Superset Of Or Equal To With Dot Above -\U2AC5;Subset Of Above Equals Sign -\U2AC6;Superset Of Above Equals Sign -\U2AC7;Subset Of Above Tilde Operator -\U2AC8;Superset Of Above Tilde Operator -\U2AC9;Subset Of Above Almost Equal To -\U2ACA;Superset Of Above Almost Equal To -\U2ACB;Subset Of Above Not Equal To -\U2ACC;Superset Of Above Not Equal To -\U2ACD;Square Left Open Box Operator -\U2ACE;Square Right Open Box Operator -\U2ACF;Closed Subset -\U2AD0;Closed Superset -\U2AD1;Closed Subset Or Equal To -\U2AD2;Closed Superset Or Equal To -\U2AD3;Subset Above Superset -\U2AD4;Superset Above Subset -\U2AD5;Subset Above Subset -\U2AD6;Superset Above Superset -\U2AD7;Superset Beside Subset -\U2AD8;Superset Beside And Joined By Dash With Subset -\U2AD9;Element Of Opening Downwards -\U2ADA;Pitchfork With Tee Top -\U2ADB;Transversal Intersection -\U2ADC;Forking -\U2ADD;Nonforking -\U2ADE;Short Left Tack -\U2ADF;Short Down Tack -\U2AE0;Short Up Tack -\U2AE1;Perpendicular With S -\U2AE2;Vertical Bar Triple Right Turnstile -\U2AE3;Double Vertical Bar Left Turnstile -\U2AE4;Vertical Bar Double Left Turnstile -\U2AE5;Double Vertical Bar Double Left Turnstile -\U2AE6;Long Dash From Left Member Of Double Vertical -\U2AE7;Short Down Tack With Overbar -\U2AE8;Short Up Tack With Underbar -\U2AE9;Short Up Tack Above Short Down Tack -\U2AEA;Double Down Tack -\U2AEB;Double Up Tack -\U2AEC;Double Stroke Not Sign -\U2AED;Reversed Double Stroke Not Sign -\U2AEE;Does Not Divide With Reversed Negation Slash -\U2AEF;Vertical Line With Circle Above -\U2AF0;Vertical Line With Circle Below -\U2AF1;Down Tack With Circle Below -\U2AF2;Parallel With Horizontal Stroke -\U2AF3;Parallel With Tilde Operator -\U2AF4;Triple Vertical Bar Binary Relation -\U2AF5;Triple Vertical Bar With Horizontal Stroke -\U2AF6;Triple Colon Operator -\U2AF7;Triple Nested Less-Than -\U2AF8;Triple Nested Greater-Than -\U2AF9;Double-Line Slanted Less-Than Or Equal To -\U2AFA;Double-Line Slanted Greater-Than Or Equal To -\U2AFB;Triple Solidus Binary Relation -\U2AFC;Large Triple Vertical Bar Operator -\U2AFD;Double Solidus Operator -\U2AFE;White Vertical Bar -\U2AFF;N-Ary White Vertical Bar -\U2B00;North East White Arrow -\U2B01;North West White Arrow -\U2B02;South East White Arrow -\U2B03;South West White Arrow -\U2B04;Left Right White Arrow -\U2B05;Leftwards Black Arrow -\U2B06;Upwards Black Arrow -\U2B07;Downwards Black Arrow -\U2B08;North East Black Arrow -\U2B09;North West Black Arrow -\U2B0A;South East Black Arrow -\U2B0B;South West Black Arrow -\U2B0C;Left Right Black Arrow -\U2B0D;Up Down Black Arrow -\U2B0E;Rightwards Arrow With Tip Downwards -\U2B0F;Rightwards Arrow With Tip Upwards -\U2B10;Leftwards Arrow With Tip Downwards -\U2B11;Leftwards Arrow With Tip Upwards -\U2B12;Square With Top Half Black -\U2B13;Square With Bottom Half Black -\U2B14;Square With Upper Right Diagonal Half Black -\U2B15;Square With Lower Left Diagonal Half Black -\U2B16;Diamond With Left Half Black -\U2B17;Diamond With Right Half Black -\U2B18;Diamond With Top Half Black -\U2B19;Diamond With Bottom Half Black -\U2B1A;Dotted Square -\U2B1B;Black Large Square -\U2B1C;White Large Square -\U2B1D;Black Very Small Square -\U2B1E;White Very Small Square -\U2B1F;Black Pentagon -\U2B20;White Pentagon -\U2B21;White Hexagon -\U2B22;Black Hexagon -\U2B23;Horizontal Black Hexagon -\U2B24;Black Large Circle -\U2B25;Black Medium Diamond -\U2B26;White Medium Diamond -\U2B27;Black Medium Lozenge -\U2B28;White Medium Lozenge -\U2B29;Black Small Diamond -\U2B2A;Black Small Lozenge -\U2B2B;White Small Lozenge -\U2B2C;Black Horizontal Ellipse -\U2B2D;White Horizontal Ellipse -\U2B2E;Black Vertical Ellipse -\U2B2F;White Vertical Ellipse -\U2B30;Left Arrow With Small Circle -\U2B31;Three Leftwards Arrows -\U2B32;Left Arrow With Circled Plus -\U2B33;Long Leftwards Squiggle Arrow -\U2B34;Leftwards Two-Headed Arrow With Vertical Stroke -\U2B35;Leftwards Two-Headed Arrow With Double Vertical Stroke -\U2B36;Leftwards Two-Headed Arrow From Bar -\U2B37;Leftwards Two-Headed Triple Dash Arrow -\U2B38;Leftwards Arrow With Dotted Stem -\U2B39;Leftwards Arrow With Tail With Vertical Stroke -\U2B3A;Leftwards Arrow With Tail With Double Vertical Stroke -\U2B3B;Leftwards Two-Headed Arrow With Tail -\U2B3C;Leftwards Two-Headed Arrow With Tail With Vertical Stroke -\U2B3D;Leftwards Two-Headed Arrow With Tail With Double Vertical Stroke -\U2B3E;Leftwards Arrow Through X -\U2B3F;Wave Arrow Pointing Directly Left -\U2B40;Equals Sign Above Leftwards Arrow -\U2B41;Reverse Tilde Operator Above Leftwards Arrow -\U2B42;Leftwards Arrow Above Reverse Almost Equal To -\U2B43;Rightwards Arrow Through Greater-Than -\U2B44;Rightwards Arrow Through Superset -\U2B45;Leftwards Quadruple Arrow -\U2B46;Rightwards Quadruple Arrow -\U2B47;Reverse Tilde Operator Above Rightwards Arrow -\U2B48;Rightwards Arrow Above Reverse Almost Equal To -\U2B49;Tilde Operator Above Leftwards Arrow -\U2B4A;Leftwards Arrow Above Almost Equal To -\U2B4B;Leftwards Arrow Above Reverse Tilde Operator -\U2B4C;Rightwards Arrow Above Reverse Tilde Operator -\U2B4D;Downwards Triangle-Headed Zigzag Arrow -\U2B4E;Short Slanted North Arrow -\U2B4F;Short Backslanted South Arrow -\U2B50;White Medium Star -\U2B51;Black Small Star -\U2B52;White Small Star -\U2B53;Black Right-Pointing Pentagon -\U2B54;White Right-Pointing Pentagon -\U2B55;Heavy Large Circle -\U2B56;Heavy Oval With Oval Inside -\U2B57;Heavy Circle With Circle Inside -\U2B58;Heavy Circle -\U2B59;Heavy Circled Saltire -\U2B5A;Slanted North Arrow With Hooked Head -\U2B5B;Backslanted South Arrow With Hooked Tail -\U2B5C;Slanted North Arrow With Horizontal Tail -\U2B5D;Backslanted South Arrow With Horizontal Tail -\U2B5E;Bent Arrow Pointing Downwards Then North East -\U2B5F;Short Bent Arrow Pointing Downwards Then North East -\U2B60;Leftwards Triangle-Headed Arrow -\U2B61;Upwards Triangle-Headed Arrow -\U2B62;Rightwards Triangle-Headed Arrow -\U2B63;Downwards Triangle-Headed Arrow -\U2B64;Left Right Triangle-Headed Arrow -\U2B65;Up Down Triangle-Headed Arrow -\U2B66;North West Triangle-Headed Arrow -\U2B67;North East Triangle-Headed Arrow -\U2B68;South East Triangle-Headed Arrow -\U2B69;South West Triangle-Headed Arrow -\U2B6A;Leftwards Triangle-Headed Dashed Arrow -\U2B6B;Upwards Triangle-Headed Dashed Arrow -\U2B6C;Rightwards Triangle-Headed Dashed Arrow -\U2B6D;Downwards Triangle-Headed Dashed Arrow -\U2B6E;Clockwise Triangle-Headed Open Circle Arrow -\U2B6F;Anticlockwise Triangle-Headed Open Circle Arrow -\U2B70;Leftwards Triangle-Headed Arrow To Bar -\U2B71;Upwards Triangle-Headed Arrow To Bar -\U2B72;Rightwards Triangle-Headed Arrow To Bar -\U2B73;Downwards Triangle-Headed Arrow To Bar -\U2B76;North West Triangle-Headed Arrow To Bar -\U2B77;North East Triangle-Headed Arrow To Bar -\U2B78;South East Triangle-Headed Arrow To Bar -\U2B79;South West Triangle-Headed Arrow To Bar -\U2B7A;Leftwards Triangle-Headed Arrow With Double Horizontal Stroke -\U2B7B;Upwards Triangle-Headed Arrow With Double Horizontal Stroke -\U2B7C;Rightwards Triangle-Headed Arrow With Double Horizontal Stroke -\U2B7D;Downwards Triangle-Headed Arrow With Double Horizontal Stroke -\U2B7E;Horizontal Tab Key -\U2B7F;Vertical Tab Key -\U2B80;Leftwards Triangle-Headed Arrow Over Rightwards Triangle-Headed Arrow -\U2B81;Upwards Triangle-Headed Arrow Leftwards Of Downwards Triangle-Headed Arrow -\U2B82;Rightwards Triangle-Headed Arrow Over Leftwards Triangle-Headed Arrow -\U2B83;Downwards Triangle-Headed Arrow Leftwards Of Upwards Triangle-Headed Arrow -\U2B84;Leftwards Triangle-Headed Paired Arrows -\U2B85;Upwards Triangle-Headed Paired Arrows -\U2B86;Rightwards Triangle-Headed Paired Arrows -\U2B87;Downwards Triangle-Headed Paired Arrows -\U2B88;Leftwards Black Circled White Arrow -\U2B89;Upwards Black Circled White Arrow -\U2B8A;Rightwards Black Circled White Arrow -\U2B8B;Downwards Black Circled White Arrow -\U2B8C;Anticlockwise Triangle-Headed Right U-Shaped Arrow -\U2B8D;Anticlockwise Triangle-Headed Bottom U-Shaped Arrow -\U2B8E;Anticlockwise Triangle-Headed Left U-Shaped Arrow -\U2B8F;Anticlockwise Triangle-Headed Top U-Shaped Arrow -\U2B90;Return Left -\U2B91;Return Right -\U2B92;Newline Left -\U2B93;Newline Right -\U2B94;Four Corner Arrows Circling Anticlockwise -\U2B95;Rightwards Black Arrow -\U2B97;Symbol For Type A Electronics -\U2B98;Three-D Top-Lighted Leftwards Equilateral Arrowhead -\U2B99;Three-D Right-Lighted Upwards Equilateral Arrowhead -\U2B9A;Three-D Top-Lighted Rightwards Equilateral Arrowhead -\U2B9B;Three-D Left-Lighted Downwards Equilateral Arrowhead -\U2B9C;Black Leftwards Equilateral Arrowhead -\U2B9D;Black Upwards Equilateral Arrowhead -\U2B9E;Black Rightwards Equilateral Arrowhead -\U2B9F;Black Downwards Equilateral Arrowhead -\U2BA0;Downwards Triangle-Headed Arrow With Long Tip Leftwards -\U2BA1;Downwards Triangle-Headed Arrow With Long Tip Rightwards -\U2BA2;Upwards Triangle-Headed Arrow With Long Tip Leftwards -\U2BA3;Upwards Triangle-Headed Arrow With Long Tip Rightwards -\U2BA4;Leftwards Triangle-Headed Arrow With Long Tip Upwards -\U2BA5;Rightwards Triangle-Headed Arrow With Long Tip Upwards -\U2BA6;Leftwards Triangle-Headed Arrow With Long Tip Downwards -\U2BA7;Rightwards Triangle-Headed Arrow With Long Tip Downwards -\U2BA8;Black Curved Downwards And Leftwards Arrow -\U2BA9;Black Curved Downwards And Rightwards Arrow -\U2BAA;Black Curved Upwards And Leftwards Arrow -\U2BAB;Black Curved Upwards And Rightwards Arrow -\U2BAC;Black Curved Leftwards And Upwards Arrow -\U2BAD;Black Curved Rightwards And Upwards Arrow -\U2BAE;Black Curved Leftwards And Downwards Arrow -\U2BAF;Black Curved Rightwards And Downwards Arrow -\U2BB0;Ribbon Arrow Down Left -\U2BB1;Ribbon Arrow Down Right -\U2BB2;Ribbon Arrow Up Left -\U2BB3;Ribbon Arrow Up Right -\U2BB4;Ribbon Arrow Left Up -\U2BB5;Ribbon Arrow Right Up -\U2BB6;Ribbon Arrow Left Down -\U2BB7;Ribbon Arrow Right Down -\U2BB8;Upwards White Arrow From Bar With Horizontal Bar -\U2BB9;Up Arrowhead In A Rectangle Box -\U2BBA;Overlapping White Squares -\U2BBB;Overlapping White And Black Squares -\U2BBC;Overlapping Black Squares -\U2BBD;Ballot Box With Light X -\U2BBE;Circled X -\U2BBF;Circled Bold X -\U2BC0;Black Square Centred -\U2BC1;Black Diamond Centred -\U2BC2;Turned Black Pentagon -\U2BC3;Horizontal Black Octagon -\U2BC4;Black Octagon -\U2BC5;Black Medium Up-Pointing Triangle Centred -\U2BC6;Black Medium Down-Pointing Triangle Centred -\U2BC7;Black Medium Left-Pointing Triangle Centred -\U2BC8;Black Medium Right-Pointing Triangle Centred -\U2BC9;Neptune Form Two -\U2BCA;Top Half Black Circle -\U2BCB;Bottom Half Black Circle -\U2BCC;Light Four Pointed Black Cusp -\U2BCD;Rotated Light Four Pointed Black Cusp -\U2BCE;White Four Pointed Cusp -\U2BCF;Rotated White Four Pointed Cusp -\U2BD0;Square Position Indicator -\U2BD1;Uncertainty Sign -\U2BD2;Group Mark -\U2BD3;Pluto Form Two -\U2BD4;Pluto Form Three -\U2BD5;Pluto Form Four -\U2BD6;Pluto Form Five -\U2BD7;Transpluto -\U2BD8;Proserpina -\U2BD9;Astraea -\U2BDA;Hygiea -\U2BDB;Pholus -\U2BDC;Nessus -\U2BDD;White Moon Selena -\U2BDE;Black Diamond On Cross -\U2BDF;True Light Moon Arta -\U2BE0;Cupido -\U2BE1;Hades -\U2BE2;Zeus -\U2BE3;Kronos -\U2BE4;Apollon -\U2BE5;Admetos -\U2BE6;Vulcanus -\U2BE7;Poseidon -\U2BE8;Left Half Black Star -\U2BE9;Right Half Black Star -\U2BEA;Star With Left Half Black -\U2BEB;Star With Right Half Black -\U2BEC;Leftwards Two-Headed Arrow With Triangle Arrowheads -\U2BED;Upwards Two-Headed Arrow With Triangle Arrowheads -\U2BEE;Rightwards Two-Headed Arrow With Triangle Arrowheads -\U2BEF;Downwards Two-Headed Arrow With Triangle Arrowheads -\U2BF0;Eris Form One -\U2BF1;Eris Form Two -\U2BF2;Sedna -\U2BF3;Russian Astrological Symbol Vigintile -\U2BF4;Russian Astrological Symbol Novile -\U2BF5;Russian Astrological Symbol Quintile -\U2BF6;Russian Astrological Symbol Binovile -\U2BF7;Russian Astrological Symbol Sentagon -\U2BF8;Russian Astrological Symbol Tredecile -\U2BF9;Equals Sign With Infinity Below -\U2BFA;United Symbol -\U2BFB;Separated Symbol -\U2BFC;Doubled Symbol -\U2BFD;Passed Symbol -\U2BFE;Reversed Right Angle -\U2BFF;Hellschreiber Pause Symbol -\U2C00;Glagolitic Capital Letter Azu -\U2C01;Glagolitic Capital Letter Buky -\U2C02;Glagolitic Capital Letter Vede -\U2C03;Glagolitic Capital Letter Glagoli -\U2C04;Glagolitic Capital Letter Dobro -\U2C05;Glagolitic Capital Letter Yestu -\U2C06;Glagolitic Capital Letter Zhivete -\U2C07;Glagolitic Capital Letter Dzelo -\U2C08;Glagolitic Capital Letter Zemlja -\U2C09;Glagolitic Capital Letter Izhe -\U2C0A;Glagolitic Capital Letter Initial Izhe -\U2C0B;Glagolitic Capital Letter I -\U2C0C;Glagolitic Capital Letter Djervi -\U2C0D;Glagolitic Capital Letter Kako -\U2C0E;Glagolitic Capital Letter Ljudije -\U2C0F;Glagolitic Capital Letter Myslite -\U2C10;Glagolitic Capital Letter Nashi -\U2C11;Glagolitic Capital Letter Onu -\U2C12;Glagolitic Capital Letter Pokoji -\U2C13;Glagolitic Capital Letter Ritsi -\U2C14;Glagolitic Capital Letter Slovo -\U2C15;Glagolitic Capital Letter Tvrido -\U2C16;Glagolitic Capital Letter Uku -\U2C17;Glagolitic Capital Letter Fritu -\U2C18;Glagolitic Capital Letter Heru -\U2C19;Glagolitic Capital Letter Otu -\U2C1A;Glagolitic Capital Letter Pe -\U2C1B;Glagolitic Capital Letter Shta -\U2C1C;Glagolitic Capital Letter Tsi -\U2C1D;Glagolitic Capital Letter Chrivi -\U2C1E;Glagolitic Capital Letter Sha -\U2C1F;Glagolitic Capital Letter Yeru -\U2C20;Glagolitic Capital Letter Yeri -\U2C21;Glagolitic Capital Letter Yati -\U2C22;Glagolitic Capital Letter Spidery Ha -\U2C23;Glagolitic Capital Letter Yu -\U2C24;Glagolitic Capital Letter Small Yus -\U2C25;Glagolitic Capital Letter Small Yus With Tail -\U2C26;Glagolitic Capital Letter Yo -\U2C27;Glagolitic Capital Letter Iotated Small Yus -\U2C28;Glagolitic Capital Letter Big Yus -\U2C29;Glagolitic Capital Letter Iotated Big Yus -\U2C2A;Glagolitic Capital Letter Fita -\U2C2B;Glagolitic Capital Letter Izhitsa -\U2C2C;Glagolitic Capital Letter Shtapic -\U2C2D;Glagolitic Capital Letter Trokutasti A -\U2C2E;Glagolitic Capital Letter Latinate Myslite -\U2C2F;Glagolitic Capital Letter Caudate Chrivi -\U2C30;Glagolitic Small Letter Azu -\U2C31;Glagolitic Small Letter Buky -\U2C32;Glagolitic Small Letter Vede -\U2C33;Glagolitic Small Letter Glagoli -\U2C34;Glagolitic Small Letter Dobro -\U2C35;Glagolitic Small Letter Yestu -\U2C36;Glagolitic Small Letter Zhivete -\U2C37;Glagolitic Small Letter Dzelo -\U2C38;Glagolitic Small Letter Zemlja -\U2C39;Glagolitic Small Letter Izhe -\U2C3A;Glagolitic Small Letter Initial Izhe -\U2C3B;Glagolitic Small Letter I -\U2C3C;Glagolitic Small Letter Djervi -\U2C3D;Glagolitic Small Letter Kako -\U2C3E;Glagolitic Small Letter Ljudije -\U2C3F;Glagolitic Small Letter Myslite -\U2C40;Glagolitic Small Letter Nashi -\U2C41;Glagolitic Small Letter Onu -\U2C42;Glagolitic Small Letter Pokoji -\U2C43;Glagolitic Small Letter Ritsi -\U2C44;Glagolitic Small Letter Slovo -\U2C45;Glagolitic Small Letter Tvrido -\U2C46;Glagolitic Small Letter Uku -\U2C47;Glagolitic Small Letter Fritu -\U2C48;Glagolitic Small Letter Heru -\U2C49;Glagolitic Small Letter Otu -\U2C4A;Glagolitic Small Letter Pe -\U2C4B;Glagolitic Small Letter Shta -\U2C4C;Glagolitic Small Letter Tsi -\U2C4D;Glagolitic Small Letter Chrivi -\U2C4E;Glagolitic Small Letter Sha -\U2C4F;Glagolitic Small Letter Yeru -\U2C50;Glagolitic Small Letter Yeri -\U2C51;Glagolitic Small Letter Yati -\U2C52;Glagolitic Small Letter Spidery Ha -\U2C53;Glagolitic Small Letter Yu -\U2C54;Glagolitic Small Letter Small Yus -\U2C55;Glagolitic Small Letter Small Yus With Tail -\U2C56;Glagolitic Small Letter Yo -\U2C57;Glagolitic Small Letter Iotated Small Yus -\U2C58;Glagolitic Small Letter Big Yus -\U2C59;Glagolitic Small Letter Iotated Big Yus -\U2C5A;Glagolitic Small Letter Fita -\U2C5B;Glagolitic Small Letter Izhitsa -\U2C5C;Glagolitic Small Letter Shtapic -\U2C5D;Glagolitic Small Letter Trokutasti A -\U2C5E;Glagolitic Small Letter Latinate Myslite -\U2C5F;Glagolitic Small Letter Caudate Chrivi -\U2C60;Latin Capital Letter L With Double Bar -\U2C61;Latin Small Letter L With Double Bar -\U2C62;Latin Capital Letter L With Middle Tilde -\U2C63;Latin Capital Letter P With Stroke -\U2C64;Latin Capital Letter R With Tail -\U2C65;Latin Small Letter A With Stroke -\U2C66;Latin Small Letter T With Diagonal Stroke -\U2C67;Latin Capital Letter H With Descender -\U2C68;Latin Small Letter H With Descender -\U2C69;Latin Capital Letter K With Descender -\U2C6A;Latin Small Letter K With Descender -\U2C6B;Latin Capital Letter Z With Descender -\U2C6C;Latin Small Letter Z With Descender -\U2C6D;Latin Capital Letter Alpha -\U2C6E;Latin Capital Letter M With Hook -\U2C6F;Latin Capital Letter Turned A -\U2C70;Latin Capital Letter Turned Alpha -\U2C71;Latin Small Letter V With Right Hook -\U2C72;Latin Capital Letter W With Hook -\U2C73;Latin Small Letter W With Hook -\U2C74;Latin Small Letter V With Curl -\U2C75;Latin Capital Letter Half H -\U2C76;Latin Small Letter Half H -\U2C77;Latin Small Letter Tailless Phi -\U2C78;Latin Small Letter E With Notch -\U2C79;Latin Small Letter Turned R With Tail -\U2C7A;Latin Small Letter O With Low Ring Inside -\U2C7B;Latin Letter Small Capital Turned E -\U2C7C;Latin Subscript Small Letter J -\U2C7D;Modifier Letter Capital V -\U2C7E;Latin Capital Letter S With Swash Tail -\U2C7F;Latin Capital Letter Z With Swash Tail -\U2C80;Coptic Capital Letter Alfa -\U2C81;Coptic Small Letter Alfa -\U2C82;Coptic Capital Letter Vida -\U2C83;Coptic Small Letter Vida -\U2C84;Coptic Capital Letter Gamma -\U2C85;Coptic Small Letter Gamma -\U2C86;Coptic Capital Letter Dalda -\U2C87;Coptic Small Letter Dalda -\U2C88;Coptic Capital Letter Eie -\U2C89;Coptic Small Letter Eie -\U2C8A;Coptic Capital Letter Sou -\U2C8B;Coptic Small Letter Sou -\U2C8C;Coptic Capital Letter Zata -\U2C8D;Coptic Small Letter Zata -\U2C8E;Coptic Capital Letter Hate -\U2C8F;Coptic Small Letter Hate -\U2C90;Coptic Capital Letter Thethe -\U2C91;Coptic Small Letter Thethe -\U2C92;Coptic Capital Letter Iauda -\U2C93;Coptic Small Letter Iauda -\U2C94;Coptic Capital Letter Kapa -\U2C95;Coptic Small Letter Kapa -\U2C96;Coptic Capital Letter Laula -\U2C97;Coptic Small Letter Laula -\U2C98;Coptic Capital Letter Mi -\U2C99;Coptic Small Letter Mi -\U2C9A;Coptic Capital Letter Ni -\U2C9B;Coptic Small Letter Ni -\U2C9C;Coptic Capital Letter Ksi -\U2C9D;Coptic Small Letter Ksi -\U2C9E;Coptic Capital Letter O -\U2C9F;Coptic Small Letter O -\U2CA0;Coptic Capital Letter Pi -\U2CA1;Coptic Small Letter Pi -\U2CA2;Coptic Capital Letter Ro -\U2CA3;Coptic Small Letter Ro -\U2CA4;Coptic Capital Letter Sima -\U2CA5;Coptic Small Letter Sima -\U2CA6;Coptic Capital Letter Tau -\U2CA7;Coptic Small Letter Tau -\U2CA8;Coptic Capital Letter Ua -\U2CA9;Coptic Small Letter Ua -\U2CAA;Coptic Capital Letter Fi -\U2CAB;Coptic Small Letter Fi -\U2CAC;Coptic Capital Letter Khi -\U2CAD;Coptic Small Letter Khi -\U2CAE;Coptic Capital Letter Psi -\U2CAF;Coptic Small Letter Psi -\U2CB0;Coptic Capital Letter Oou -\U2CB1;Coptic Small Letter Oou -\U2CB2;Coptic Capital Letter Dialect-P Alef -\U2CB3;Coptic Small Letter Dialect-P Alef -\U2CB4;Coptic Capital Letter Old Coptic Ain -\U2CB5;Coptic Small Letter Old Coptic Ain -\U2CB6;Coptic Capital Letter Cryptogrammic Eie -\U2CB7;Coptic Small Letter Cryptogrammic Eie -\U2CB8;Coptic Capital Letter Dialect-P Kapa -\U2CB9;Coptic Small Letter Dialect-P Kapa -\U2CBA;Coptic Capital Letter Dialect-P Ni -\U2CBB;Coptic Small Letter Dialect-P Ni -\U2CBC;Coptic Capital Letter Cryptogrammic Ni -\U2CBD;Coptic Small Letter Cryptogrammic Ni -\U2CBE;Coptic Capital Letter Old Coptic Oou -\U2CBF;Coptic Small Letter Old Coptic Oou -\U2CC0;Coptic Capital Letter Sampi -\U2CC1;Coptic Small Letter Sampi -\U2CC2;Coptic Capital Letter Crossed Shei -\U2CC3;Coptic Small Letter Crossed Shei -\U2CC4;Coptic Capital Letter Old Coptic Shei -\U2CC5;Coptic Small Letter Old Coptic Shei -\U2CC6;Coptic Capital Letter Old Coptic Esh -\U2CC7;Coptic Small Letter Old Coptic Esh -\U2CC8;Coptic Capital Letter Akhmimic Khei -\U2CC9;Coptic Small Letter Akhmimic Khei -\U2CCA;Coptic Capital Letter Dialect-P Hori -\U2CCB;Coptic Small Letter Dialect-P Hori -\U2CCC;Coptic Capital Letter Old Coptic Hori -\U2CCD;Coptic Small Letter Old Coptic Hori -\U2CCE;Coptic Capital Letter Old Coptic Ha -\U2CCF;Coptic Small Letter Old Coptic Ha -\U2CD0;Coptic Capital Letter L-Shaped Ha -\U2CD1;Coptic Small Letter L-Shaped Ha -\U2CD2;Coptic Capital Letter Old Coptic Hei -\U2CD3;Coptic Small Letter Old Coptic Hei -\U2CD4;Coptic Capital Letter Old Coptic Hat -\U2CD5;Coptic Small Letter Old Coptic Hat -\U2CD6;Coptic Capital Letter Old Coptic Gangia -\U2CD7;Coptic Small Letter Old Coptic Gangia -\U2CD8;Coptic Capital Letter Old Coptic Dja -\U2CD9;Coptic Small Letter Old Coptic Dja -\U2CDA;Coptic Capital Letter Old Coptic Shima -\U2CDB;Coptic Small Letter Old Coptic Shima -\U2CDC;Coptic Capital Letter Old Nubian Shima -\U2CDD;Coptic Small Letter Old Nubian Shima -\U2CDE;Coptic Capital Letter Old Nubian Ngi -\U2CDF;Coptic Small Letter Old Nubian Ngi -\U2CE0;Coptic Capital Letter Old Nubian Nyi -\U2CE1;Coptic Small Letter Old Nubian Nyi -\U2CE2;Coptic Capital Letter Old Nubian Wau -\U2CE3;Coptic Small Letter Old Nubian Wau -\U2CE4;Coptic Symbol Kai -\U2CE5;Coptic Symbol Mi Ro -\U2CE6;Coptic Symbol Pi Ro -\U2CE7;Coptic Symbol Stauros -\U2CE8;Coptic Symbol Tau Ro -\U2CE9;Coptic Symbol Khi Ro -\U2CEA;Coptic Symbol Shima Sima -\U2CEB;Coptic Capital Letter Cryptogrammic Shei -\U2CEC;Coptic Small Letter Cryptogrammic Shei -\U2CED;Coptic Capital Letter Cryptogrammic Gangia -\U2CEE;Coptic Small Letter Cryptogrammic Gangia -\U2CEF;Coptic Combining Ni Above -\U2CF0;Coptic Combining Spiritus Asper -\U2CF1;Coptic Combining Spiritus Lenis -\U2CF2;Coptic Capital Letter Bohairic Khei -\U2CF3;Coptic Small Letter Bohairic Khei -\U2CF9;Coptic Old Nubian Full Stop -\U2CFA;Coptic Old Nubian Direct Question Mark -\U2CFB;Coptic Old Nubian Indirect Question Mark -\U2CFC;Coptic Old Nubian Verse Divider -\U2CFD;Coptic Fraction One Half -\U2CFE;Coptic Full Stop -\U2CFF;Coptic Morphological Divider -\U2D00;Georgian Small Letter An -\U2D01;Georgian Small Letter Ban -\U2D02;Georgian Small Letter Gan -\U2D03;Georgian Small Letter Don -\U2D04;Georgian Small Letter En -\U2D05;Georgian Small Letter Vin -\U2D06;Georgian Small Letter Zen -\U2D07;Georgian Small Letter Tan -\U2D08;Georgian Small Letter In -\U2D09;Georgian Small Letter Kan -\U2D0A;Georgian Small Letter Las -\U2D0B;Georgian Small Letter Man -\U2D0C;Georgian Small Letter Nar -\U2D0D;Georgian Small Letter On -\U2D0E;Georgian Small Letter Par -\U2D0F;Georgian Small Letter Zhar -\U2D10;Georgian Small Letter Rae -\U2D11;Georgian Small Letter San -\U2D12;Georgian Small Letter Tar -\U2D13;Georgian Small Letter Un -\U2D14;Georgian Small Letter Phar -\U2D15;Georgian Small Letter Khar -\U2D16;Georgian Small Letter Ghan -\U2D17;Georgian Small Letter Qar -\U2D18;Georgian Small Letter Shin -\U2D19;Georgian Small Letter Chin -\U2D1A;Georgian Small Letter Can -\U2D1B;Georgian Small Letter Jil -\U2D1C;Georgian Small Letter Cil -\U2D1D;Georgian Small Letter Char -\U2D1E;Georgian Small Letter Xan -\U2D1F;Georgian Small Letter Jhan -\U2D20;Georgian Small Letter Hae -\U2D21;Georgian Small Letter He -\U2D22;Georgian Small Letter Hie -\U2D23;Georgian Small Letter We -\U2D24;Georgian Small Letter Har -\U2D25;Georgian Small Letter Hoe -\U2D27;Georgian Small Letter Yn -\U2D2D;Georgian Small Letter Aen -\U2D30;Tifinagh Letter Ya -\U2D31;Tifinagh Letter Yab -\U2D32;Tifinagh Letter Yabh -\U2D33;Tifinagh Letter Yag -\U2D34;Tifinagh Letter Yaghh -\U2D35;Tifinagh Letter Berber Academy Yaj -\U2D36;Tifinagh Letter Yaj -\U2D37;Tifinagh Letter Yad -\U2D38;Tifinagh Letter Yadh -\U2D39;Tifinagh Letter Yadd -\U2D3A;Tifinagh Letter Yaddh -\U2D3B;Tifinagh Letter Yey -\U2D3C;Tifinagh Letter Yaf -\U2D3D;Tifinagh Letter Yak -\U2D3E;Tifinagh Letter Tuareg Yak -\U2D3F;Tifinagh Letter Yakhh -\U2D40;Tifinagh Letter Yah -\U2D41;Tifinagh Letter Berber Academy Yah -\U2D42;Tifinagh Letter Tuareg Yah -\U2D43;Tifinagh Letter Yahh -\U2D44;Tifinagh Letter Yaa -\U2D45;Tifinagh Letter Yakh -\U2D46;Tifinagh Letter Tuareg Yakh -\U2D47;Tifinagh Letter Yaq -\U2D48;Tifinagh Letter Tuareg Yaq -\U2D49;Tifinagh Letter Yi -\U2D4A;Tifinagh Letter Yazh -\U2D4B;Tifinagh Letter Ahaggar Yazh -\U2D4C;Tifinagh Letter Tuareg Yazh -\U2D4D;Tifinagh Letter Yal -\U2D4E;Tifinagh Letter Yam -\U2D4F;Tifinagh Letter Yan -\U2D50;Tifinagh Letter Tuareg Yagn -\U2D51;Tifinagh Letter Tuareg Yang -\U2D52;Tifinagh Letter Yap -\U2D53;Tifinagh Letter Yu -\U2D54;Tifinagh Letter Yar -\U2D55;Tifinagh Letter Yarr -\U2D56;Tifinagh Letter Yagh -\U2D57;Tifinagh Letter Tuareg Yagh -\U2D58;Tifinagh Letter Ayer Yagh -\U2D59;Tifinagh Letter Yas -\U2D5A;Tifinagh Letter Yass -\U2D5B;Tifinagh Letter Yash -\U2D5C;Tifinagh Letter Yat -\U2D5D;Tifinagh Letter Yath -\U2D5E;Tifinagh Letter Yach -\U2D5F;Tifinagh Letter Yatt -\U2D60;Tifinagh Letter Yav -\U2D61;Tifinagh Letter Yaw -\U2D62;Tifinagh Letter Yay -\U2D63;Tifinagh Letter Yaz -\U2D64;Tifinagh Letter Tawellemet Yaz -\U2D65;Tifinagh Letter Yazz -\U2D66;Tifinagh Letter Ye -\U2D67;Tifinagh Letter Yo -\U2D6F;Tifinagh Modifier Letter Labialization Mark -\U2D70;Tifinagh Separator Mark -\U2D7F;Tifinagh Consonant Joiner -\U2D80;Ethiopic Syllable Loa -\U2D81;Ethiopic Syllable Moa -\U2D82;Ethiopic Syllable Roa -\U2D83;Ethiopic Syllable Soa -\U2D84;Ethiopic Syllable Shoa -\U2D85;Ethiopic Syllable Boa -\U2D86;Ethiopic Syllable Toa -\U2D87;Ethiopic Syllable Coa -\U2D88;Ethiopic Syllable Noa -\U2D89;Ethiopic Syllable Nyoa -\U2D8A;Ethiopic Syllable Glottal Oa -\U2D8B;Ethiopic Syllable Zoa -\U2D8C;Ethiopic Syllable Doa -\U2D8D;Ethiopic Syllable Ddoa -\U2D8E;Ethiopic Syllable Joa -\U2D8F;Ethiopic Syllable Thoa -\U2D90;Ethiopic Syllable Choa -\U2D91;Ethiopic Syllable Phoa -\U2D92;Ethiopic Syllable Poa -\U2D93;Ethiopic Syllable Ggwa -\U2D94;Ethiopic Syllable Ggwi -\U2D95;Ethiopic Syllable Ggwee -\U2D96;Ethiopic Syllable Ggwe -\U2DA0;Ethiopic Syllable Ssa -\U2DA1;Ethiopic Syllable Ssu -\U2DA2;Ethiopic Syllable Ssi -\U2DA3;Ethiopic Syllable Ssaa -\U2DA4;Ethiopic Syllable Ssee -\U2DA5;Ethiopic Syllable Sse -\U2DA6;Ethiopic Syllable Sso -\U2DA8;Ethiopic Syllable Cca -\U2DA9;Ethiopic Syllable Ccu -\U2DAA;Ethiopic Syllable Cci -\U2DAB;Ethiopic Syllable Ccaa -\U2DAC;Ethiopic Syllable Ccee -\U2DAD;Ethiopic Syllable Cce -\U2DAE;Ethiopic Syllable Cco -\U2DB0;Ethiopic Syllable Zza -\U2DB1;Ethiopic Syllable Zzu -\U2DB2;Ethiopic Syllable Zzi -\U2DB3;Ethiopic Syllable Zzaa -\U2DB4;Ethiopic Syllable Zzee -\U2DB5;Ethiopic Syllable Zze -\U2DB6;Ethiopic Syllable Zzo -\U2DB8;Ethiopic Syllable Ccha -\U2DB9;Ethiopic Syllable Cchu -\U2DBA;Ethiopic Syllable Cchi -\U2DBB;Ethiopic Syllable Cchaa -\U2DBC;Ethiopic Syllable Cchee -\U2DBD;Ethiopic Syllable Cche -\U2DBE;Ethiopic Syllable Ccho -\U2DC0;Ethiopic Syllable Qya -\U2DC1;Ethiopic Syllable Qyu -\U2DC2;Ethiopic Syllable Qyi -\U2DC3;Ethiopic Syllable Qyaa -\U2DC4;Ethiopic Syllable Qyee -\U2DC5;Ethiopic Syllable Qye -\U2DC6;Ethiopic Syllable Qyo -\U2DC8;Ethiopic Syllable Kya -\U2DC9;Ethiopic Syllable Kyu -\U2DCA;Ethiopic Syllable Kyi -\U2DCB;Ethiopic Syllable Kyaa -\U2DCC;Ethiopic Syllable Kyee -\U2DCD;Ethiopic Syllable Kye -\U2DCE;Ethiopic Syllable Kyo -\U2DD0;Ethiopic Syllable Xya -\U2DD1;Ethiopic Syllable Xyu -\U2DD2;Ethiopic Syllable Xyi -\U2DD3;Ethiopic Syllable Xyaa -\U2DD4;Ethiopic Syllable Xyee -\U2DD5;Ethiopic Syllable Xye -\U2DD6;Ethiopic Syllable Xyo -\U2DD8;Ethiopic Syllable Gya -\U2DD9;Ethiopic Syllable Gyu -\U2DDA;Ethiopic Syllable Gyi -\U2DDB;Ethiopic Syllable Gyaa -\U2DDC;Ethiopic Syllable Gyee -\U2DDD;Ethiopic Syllable Gye -\U2DDE;Ethiopic Syllable Gyo -\U2DE0;Combining Cyrillic Letter Be -\U2DE1;Combining Cyrillic Letter Ve -\U2DE2;Combining Cyrillic Letter Ghe -\U2DE3;Combining Cyrillic Letter De -\U2DE4;Combining Cyrillic Letter Zhe -\U2DE5;Combining Cyrillic Letter Ze -\U2DE6;Combining Cyrillic Letter Ka -\U2DE7;Combining Cyrillic Letter El -\U2DE8;Combining Cyrillic Letter Em -\U2DE9;Combining Cyrillic Letter En -\U2DEA;Combining Cyrillic Letter O -\U2DEB;Combining Cyrillic Letter Pe -\U2DEC;Combining Cyrillic Letter Er -\U2DED;Combining Cyrillic Letter Es -\U2DEE;Combining Cyrillic Letter Te -\U2DEF;Combining Cyrillic Letter Ha -\U2DF0;Combining Cyrillic Letter Tse -\U2DF1;Combining Cyrillic Letter Che -\U2DF2;Combining Cyrillic Letter Sha -\U2DF3;Combining Cyrillic Letter Shcha -\U2DF4;Combining Cyrillic Letter Fita -\U2DF5;Combining Cyrillic Letter Es-Te -\U2DF6;Combining Cyrillic Letter A -\U2DF7;Combining Cyrillic Letter Ie -\U2DF8;Combining Cyrillic Letter Djerv -\U2DF9;Combining Cyrillic Letter Monograph Uk -\U2DFA;Combining Cyrillic Letter Yat -\U2DFB;Combining Cyrillic Letter Yu -\U2DFC;Combining Cyrillic Letter Iotified A -\U2DFD;Combining Cyrillic Letter Little Yus -\U2DFE;Combining Cyrillic Letter Big Yus -\U2DFF;Combining Cyrillic Letter Iotified Big Yus -\U2E00;Right Angle Substitution Marker -\U2E01;Right Angle Dotted Substitution Marker -\U2E02;Left Substitution Bracket -\U2E03;Right Substitution Bracket -\U2E04;Left Dotted Substitution Bracket -\U2E05;Right Dotted Substitution Bracket -\U2E06;Raised Interpolation Marker -\U2E07;Raised Dotted Interpolation Marker -\U2E08;Dotted Transposition Marker -\U2E09;Left Transposition Bracket -\U2E0A;Right Transposition Bracket -\U2E0B;Raised Square -\U2E0C;Left Raised Omission Bracket -\U2E0D;Right Raised Omission Bracket -\U2E0E;Editorial Coronis -\U2E0F;Paragraphos -\U2E10;Forked Paragraphos -\U2E11;Reversed Forked Paragraphos -\U2E12;Hypodiastole -\U2E13;Dotted Obelos -\U2E14;Downwards Ancora -\U2E15;Upwards Ancora -\U2E16;Dotted Right-Pointing Angle -\U2E17;Double Oblique Hyphen -\U2E18;Inverted Interrobang -\U2E19;Palm Branch -\U2E1A;Hyphen With Diaeresis -\U2E1B;Tilde With Ring Above -\U2E1C;Left Low Paraphrase Bracket -\U2E1D;Right Low Paraphrase Bracket -\U2E1E;Tilde With Dot Above -\U2E1F;Tilde With Dot Below -\U2E20;Left Vertical Bar With Quill -\U2E21;Right Vertical Bar With Quill -\U2E22;Top Left Half Bracket -\U2E23;Top Right Half Bracket -\U2E24;Bottom Left Half Bracket -\U2E25;Bottom Right Half Bracket -\U2E26;Left Sideways U Bracket -\U2E27;Right Sideways U Bracket -\U2E28;Left Double Parenthesis -\U2E29;Right Double Parenthesis -\U2E2A;Two Dots Over One Dot Punctuation -\U2E2B;One Dot Over Two Dots Punctuation -\U2E2C;Squared Four Dot Punctuation -\U2E2D;Five Dot Mark -\U2E2E;Reversed Question Mark -\U2E2F;Vertical Tilde -\U2E30;Ring Point -\U2E31;Word Separator Middle Dot -\U2E32;Turned Comma -\U2E33;Raised Dot -\U2E34;Raised Comma -\U2E35;Turned Semicolon -\U2E36;Dagger With Left Guard -\U2E37;Dagger With Right Guard -\U2E38;Turned Dagger -\U2E39;Top Half Section Sign -\U2E3A;Two-Em Dash -\U2E3B;Three-Em Dash -\U2E3C;Stenographic Full Stop -\U2E3D;Vertical Six Dots -\U2E3E;Wiggly Vertical Line -\U2E3F;Capitulum -\U2E40;Double Hyphen -\U2E41;Reversed Comma -\U2E42;Double Low-Reversed-9 Quotation Mark -\U2E43;Dash With Left Upturn -\U2E44;Double Suspension Mark -\U2E45;Inverted Low Kavyka -\U2E46;Inverted Low Kavyka With Kavyka Above -\U2E47;Low Kavyka -\U2E48;Low Kavyka With Dot -\U2E49;Double Stacked Comma -\U2E4A;Dotted Solidus -\U2E4B;Triple Dagger -\U2E4C;Medieval Comma -\U2E4D;Paragraphus Mark -\U2E4E;Punctus Elevatus Mark -\U2E4F;Cornish Verse Divider -\U2E50;Cross Patty With Right Crossbar -\U2E51;Cross Patty With Left Crossbar -\U2E52;Tironian Sign Capital Et -\U2E53;Medieval Exclamation Mark -\U2E54;Medieval Question Mark -\U2E55;Left Square Bracket With Stroke -\U2E56;Right Square Bracket With Stroke -\U2E57;Left Square Bracket With Double Stroke -\U2E58;Right Square Bracket With Double Stroke -\U2E59;Top Half Left Parenthesis -\U2E5A;Top Half Right Parenthesis -\U2E5B;Bottom Half Left Parenthesis -\U2E5C;Bottom Half Right Parenthesis -\U2E5D;Oblique Hyphen -\U2E80;Cjk Radical Repeat -\U2E81;Cjk Radical Cliff -\U2E82;Cjk Radical Second One -\U2E83;Cjk Radical Second Two -\U2E84;Cjk Radical Second Three -\U2E85;Cjk Radical Person -\U2E86;Cjk Radical Box -\U2E87;Cjk Radical Table -\U2E88;Cjk Radical Knife One -\U2E89;Cjk Radical Knife Two -\U2E8A;Cjk Radical Divination -\U2E8B;Cjk Radical Seal -\U2E8C;Cjk Radical Small One -\U2E8D;Cjk Radical Small Two -\U2E8E;Cjk Radical Lame One -\U2E8F;Cjk Radical Lame Two -\U2E90;Cjk Radical Lame Three -\U2E91;Cjk Radical Lame Four -\U2E92;Cjk Radical Snake -\U2E93;Cjk Radical Thread -\U2E94;Cjk Radical Snout One -\U2E95;Cjk Radical Snout Two -\U2E96;Cjk Radical Heart One -\U2E97;Cjk Radical Heart Two -\U2E98;Cjk Radical Hand -\U2E99;Cjk Radical Rap -\U2E9B;Cjk Radical Choke -\U2E9C;Cjk Radical Sun -\U2E9D;Cjk Radical Moon -\U2E9E;Cjk Radical Death -\U2E9F;Cjk Radical Mother -\U2EA0;Cjk Radical Civilian -\U2EA1;Cjk Radical Water One -\U2EA2;Cjk Radical Water Two -\U2EA3;Cjk Radical Fire -\U2EA4;Cjk Radical Paw One -\U2EA5;Cjk Radical Paw Two -\U2EA6;Cjk Radical Simplified Half Tree Trunk -\U2EA7;Cjk Radical Cow -\U2EA8;Cjk Radical Dog -\U2EA9;Cjk Radical Jade -\U2EAA;Cjk Radical Bolt Of Cloth -\U2EAB;Cjk Radical Eye -\U2EAC;Cjk Radical Spirit One -\U2EAD;Cjk Radical Spirit Two -\U2EAE;Cjk Radical Bamboo -\U2EAF;Cjk Radical Silk -\U2EB0;Cjk Radical C-Simplified Silk -\U2EB1;Cjk Radical Net One -\U2EB2;Cjk Radical Net Two -\U2EB3;Cjk Radical Net Three -\U2EB4;Cjk Radical Net Four -\U2EB5;Cjk Radical Mesh -\U2EB6;Cjk Radical Sheep -\U2EB7;Cjk Radical Ram -\U2EB8;Cjk Radical Ewe -\U2EB9;Cjk Radical Old -\U2EBA;Cjk Radical Brush One -\U2EBB;Cjk Radical Brush Two -\U2EBC;Cjk Radical Meat -\U2EBD;Cjk Radical Mortar -\U2EBE;Cjk Radical Grass One -\U2EBF;Cjk Radical Grass Two -\U2EC0;Cjk Radical Grass Three -\U2EC1;Cjk Radical Tiger -\U2EC2;Cjk Radical Clothes -\U2EC3;Cjk Radical West One -\U2EC4;Cjk Radical West Two -\U2EC5;Cjk Radical C-Simplified See -\U2EC6;Cjk Radical Simplified Horn -\U2EC7;Cjk Radical Horn -\U2EC8;Cjk Radical C-Simplified Speech -\U2EC9;Cjk Radical C-Simplified Shell -\U2ECA;Cjk Radical Foot -\U2ECB;Cjk Radical C-Simplified Cart -\U2ECC;Cjk Radical Simplified Walk -\U2ECD;Cjk Radical Walk One -\U2ECE;Cjk Radical Walk Two -\U2ECF;Cjk Radical City -\U2ED0;Cjk Radical C-Simplified Gold -\U2ED1;Cjk Radical Long One -\U2ED2;Cjk Radical Long Two -\U2ED3;Cjk Radical C-Simplified Long -\U2ED4;Cjk Radical C-Simplified Gate -\U2ED5;Cjk Radical Mound One -\U2ED6;Cjk Radical Mound Two -\U2ED7;Cjk Radical Rain -\U2ED8;Cjk Radical Blue -\U2ED9;Cjk Radical C-Simplified Tanned Leather -\U2EDA;Cjk Radical C-Simplified Leaf -\U2EDB;Cjk Radical C-Simplified Wind -\U2EDC;Cjk Radical C-Simplified Fly -\U2EDD;Cjk Radical Eat One -\U2EDE;Cjk Radical Eat Two -\U2EDF;Cjk Radical Eat Three -\U2EE0;Cjk Radical C-Simplified Eat -\U2EE1;Cjk Radical Head -\U2EE2;Cjk Radical C-Simplified Horse -\U2EE3;Cjk Radical Bone -\U2EE4;Cjk Radical Ghost -\U2EE5;Cjk Radical C-Simplified Fish -\U2EE6;Cjk Radical C-Simplified Bird -\U2EE7;Cjk Radical C-Simplified Salt -\U2EE8;Cjk Radical Simplified Wheat -\U2EE9;Cjk Radical Simplified Yellow -\U2EEA;Cjk Radical C-Simplified Frog -\U2EEB;Cjk Radical J-Simplified Even -\U2EEC;Cjk Radical C-Simplified Even -\U2EED;Cjk Radical J-Simplified Tooth -\U2EEE;Cjk Radical C-Simplified Tooth -\U2EEF;Cjk Radical J-Simplified Dragon -\U2EF0;Cjk Radical C-Simplified Dragon -\U2EF1;Cjk Radical Turtle -\U2EF2;Cjk Radical J-Simplified Turtle -\U2EF3;Cjk Radical C-Simplified Turtle -\U2F00;Kangxi Radical One -\U2F01;Kangxi Radical Line -\U2F02;Kangxi Radical Dot -\U2F03;Kangxi Radical Slash -\U2F04;Kangxi Radical Second -\U2F05;Kangxi Radical Hook -\U2F06;Kangxi Radical Two -\U2F07;Kangxi Radical Lid -\U2F08;Kangxi Radical Man -\U2F09;Kangxi Radical Legs -\U2F0A;Kangxi Radical Enter -\U2F0B;Kangxi Radical Eight -\U2F0C;Kangxi Radical Down Box -\U2F0D;Kangxi Radical Cover -\U2F0E;Kangxi Radical Ice -\U2F0F;Kangxi Radical Table -\U2F10;Kangxi Radical Open Box -\U2F11;Kangxi Radical Knife -\U2F12;Kangxi Radical Power -\U2F13;Kangxi Radical Wrap -\U2F14;Kangxi Radical Spoon -\U2F15;Kangxi Radical Right Open Box -\U2F16;Kangxi Radical Hiding Enclosure -\U2F17;Kangxi Radical Ten -\U2F18;Kangxi Radical Divination -\U2F19;Kangxi Radical Seal -\U2F1A;Kangxi Radical Cliff -\U2F1B;Kangxi Radical Private -\U2F1C;Kangxi Radical Again -\U2F1D;Kangxi Radical Mouth -\U2F1E;Kangxi Radical Enclosure -\U2F1F;Kangxi Radical Earth -\U2F20;Kangxi Radical Scholar -\U2F21;Kangxi Radical Go -\U2F22;Kangxi Radical Go Slowly -\U2F23;Kangxi Radical Evening -\U2F24;Kangxi Radical Big -\U2F25;Kangxi Radical Woman -\U2F26;Kangxi Radical Child -\U2F27;Kangxi Radical Roof -\U2F28;Kangxi Radical Inch -\U2F29;Kangxi Radical Small -\U2F2A;Kangxi Radical Lame -\U2F2B;Kangxi Radical Corpse -\U2F2C;Kangxi Radical Sprout -\U2F2D;Kangxi Radical Mountain -\U2F2E;Kangxi Radical River -\U2F2F;Kangxi Radical Work -\U2F30;Kangxi Radical Oneself -\U2F31;Kangxi Radical Turban -\U2F32;Kangxi Radical Dry -\U2F33;Kangxi Radical Short Thread -\U2F34;Kangxi Radical Dotted Cliff -\U2F35;Kangxi Radical Long Stride -\U2F36;Kangxi Radical Two Hands -\U2F37;Kangxi Radical Shoot -\U2F38;Kangxi Radical Bow -\U2F39;Kangxi Radical Snout -\U2F3A;Kangxi Radical Bristle -\U2F3B;Kangxi Radical Step -\U2F3C;Kangxi Radical Heart -\U2F3D;Kangxi Radical Halberd -\U2F3E;Kangxi Radical Door -\U2F3F;Kangxi Radical Hand -\U2F40;Kangxi Radical Branch -\U2F41;Kangxi Radical Rap -\U2F42;Kangxi Radical Script -\U2F43;Kangxi Radical Dipper -\U2F44;Kangxi Radical Axe -\U2F45;Kangxi Radical Square -\U2F46;Kangxi Radical Not -\U2F47;Kangxi Radical Sun -\U2F48;Kangxi Radical Say -\U2F49;Kangxi Radical Moon -\U2F4A;Kangxi Radical Tree -\U2F4B;Kangxi Radical Lack -\U2F4C;Kangxi Radical Stop -\U2F4D;Kangxi Radical Death -\U2F4E;Kangxi Radical Weapon -\U2F4F;Kangxi Radical Do Not -\U2F50;Kangxi Radical Compare -\U2F51;Kangxi Radical Fur -\U2F52;Kangxi Radical Clan -\U2F53;Kangxi Radical Steam -\U2F54;Kangxi Radical Water -\U2F55;Kangxi Radical Fire -\U2F56;Kangxi Radical Claw -\U2F57;Kangxi Radical Father -\U2F58;Kangxi Radical Double X -\U2F59;Kangxi Radical Half Tree Trunk -\U2F5A;Kangxi Radical Slice -\U2F5B;Kangxi Radical Fang -\U2F5C;Kangxi Radical Cow -\U2F5D;Kangxi Radical Dog -\U2F5E;Kangxi Radical Profound -\U2F5F;Kangxi Radical Jade -\U2F60;Kangxi Radical Melon -\U2F61;Kangxi Radical Tile -\U2F62;Kangxi Radical Sweet -\U2F63;Kangxi Radical Life -\U2F64;Kangxi Radical Use -\U2F65;Kangxi Radical Field -\U2F66;Kangxi Radical Bolt Of Cloth -\U2F67;Kangxi Radical Sickness -\U2F68;Kangxi Radical Dotted Tent -\U2F69;Kangxi Radical White -\U2F6A;Kangxi Radical Skin -\U2F6B;Kangxi Radical Dish -\U2F6C;Kangxi Radical Eye -\U2F6D;Kangxi Radical Spear -\U2F6E;Kangxi Radical Arrow -\U2F6F;Kangxi Radical Stone -\U2F70;Kangxi Radical Spirit -\U2F71;Kangxi Radical Track -\U2F72;Kangxi Radical Grain -\U2F73;Kangxi Radical Cave -\U2F74;Kangxi Radical Stand -\U2F75;Kangxi Radical Bamboo -\U2F76;Kangxi Radical Rice -\U2F77;Kangxi Radical Silk -\U2F78;Kangxi Radical Jar -\U2F79;Kangxi Radical Net -\U2F7A;Kangxi Radical Sheep -\U2F7B;Kangxi Radical Feather -\U2F7C;Kangxi Radical Old -\U2F7D;Kangxi Radical And -\U2F7E;Kangxi Radical Plow -\U2F7F;Kangxi Radical Ear -\U2F80;Kangxi Radical Brush -\U2F81;Kangxi Radical Meat -\U2F82;Kangxi Radical Minister -\U2F83;Kangxi Radical Self -\U2F84;Kangxi Radical Arrive -\U2F85;Kangxi Radical Mortar -\U2F86;Kangxi Radical Tongue -\U2F87;Kangxi Radical Oppose -\U2F88;Kangxi Radical Boat -\U2F89;Kangxi Radical Stopping -\U2F8A;Kangxi Radical Color -\U2F8B;Kangxi Radical Grass -\U2F8C;Kangxi Radical Tiger -\U2F8D;Kangxi Radical Insect -\U2F8E;Kangxi Radical Blood -\U2F8F;Kangxi Radical Walk Enclosure -\U2F90;Kangxi Radical Clothes -\U2F91;Kangxi Radical West -\U2F92;Kangxi Radical See -\U2F93;Kangxi Radical Horn -\U2F94;Kangxi Radical Speech -\U2F95;Kangxi Radical Valley -\U2F96;Kangxi Radical Bean -\U2F97;Kangxi Radical Pig -\U2F98;Kangxi Radical Badger -\U2F99;Kangxi Radical Shell -\U2F9A;Kangxi Radical Red -\U2F9B;Kangxi Radical Run -\U2F9C;Kangxi Radical Foot -\U2F9D;Kangxi Radical Body -\U2F9E;Kangxi Radical Cart -\U2F9F;Kangxi Radical Bitter -\U2FA0;Kangxi Radical Morning -\U2FA1;Kangxi Radical Walk -\U2FA2;Kangxi Radical City -\U2FA3;Kangxi Radical Wine -\U2FA4;Kangxi Radical Distinguish -\U2FA5;Kangxi Radical Village -\U2FA6;Kangxi Radical Gold -\U2FA7;Kangxi Radical Long -\U2FA8;Kangxi Radical Gate -\U2FA9;Kangxi Radical Mound -\U2FAA;Kangxi Radical Slave -\U2FAB;Kangxi Radical Short Tailed Bird -\U2FAC;Kangxi Radical Rain -\U2FAD;Kangxi Radical Blue -\U2FAE;Kangxi Radical Wrong -\U2FAF;Kangxi Radical Face -\U2FB0;Kangxi Radical Leather -\U2FB1;Kangxi Radical Tanned Leather -\U2FB2;Kangxi Radical Leek -\U2FB3;Kangxi Radical Sound -\U2FB4;Kangxi Radical Leaf -\U2FB5;Kangxi Radical Wind -\U2FB6;Kangxi Radical Fly -\U2FB7;Kangxi Radical Eat -\U2FB8;Kangxi Radical Head -\U2FB9;Kangxi Radical Fragrant -\U2FBA;Kangxi Radical Horse -\U2FBB;Kangxi Radical Bone -\U2FBC;Kangxi Radical Tall -\U2FBD;Kangxi Radical Hair -\U2FBE;Kangxi Radical Fight -\U2FBF;Kangxi Radical Sacrificial Wine -\U2FC0;Kangxi Radical Cauldron -\U2FC1;Kangxi Radical Ghost -\U2FC2;Kangxi Radical Fish -\U2FC3;Kangxi Radical Bird -\U2FC4;Kangxi Radical Salt -\U2FC5;Kangxi Radical Deer -\U2FC6;Kangxi Radical Wheat -\U2FC7;Kangxi Radical Hemp -\U2FC8;Kangxi Radical Yellow -\U2FC9;Kangxi Radical Millet -\U2FCA;Kangxi Radical Black -\U2FCB;Kangxi Radical Embroidery -\U2FCC;Kangxi Radical Frog -\U2FCD;Kangxi Radical Tripod -\U2FCE;Kangxi Radical Drum -\U2FCF;Kangxi Radical Rat -\U2FD0;Kangxi Radical Nose -\U2FD1;Kangxi Radical Even -\U2FD2;Kangxi Radical Tooth -\U2FD3;Kangxi Radical Dragon -\U2FD4;Kangxi Radical Turtle -\U2FD5;Kangxi Radical Flute -\U2FF0;Ideographic Description Character Left To Right -\U2FF1;Ideographic Description Character Above To Below -\U2FF2;Ideographic Description Character Left To Middle And Right -\U2FF3;Ideographic Description Character Above To Middle And Below -\U2FF4;Ideographic Description Character Full Surround -\U2FF5;Ideographic Description Character Surround From Above -\U2FF6;Ideographic Description Character Surround From Below -\U2FF7;Ideographic Description Character Surround From Left -\U2FF8;Ideographic Description Character Surround From Upper Left -\U2FF9;Ideographic Description Character Surround From Upper Right -\U2FFA;Ideographic Description Character Surround From Lower Left -\U2FFB;Ideographic Description Character Overlaid -\U2FFC;Ideographic Description Character Surround From Right -\U2FFD;Ideographic Description Character Surround From Lower Right -\U2FFE;Ideographic Description Character Horizontal Reflection -\U2FFF;Ideographic Description Character Rotation -\U3000;Ideographic Space -\U3001;Ideographic Comma -\U3002;Ideographic Full Stop -\U3003;Ditto Mark -\U3004;Japanese Industrial Standard Symbol -\U3005;Ideographic Iteration Mark -\U3006;Ideographic Closing Mark -\U3007;Ideographic Number Zero -\U3008;Left Angle Bracket -\U3009;Right Angle Bracket -\U300A;Left Double Angle Bracket -\U300B;Right Double Angle Bracket -\U300C;Left Corner Bracket -\U300D;Right Corner Bracket -\U300E;Left White Corner Bracket -\U300F;Right White Corner Bracket -\U3010;Left Black Lenticular Bracket -\U3011;Right Black Lenticular Bracket -\U3012;Postal Mark -\U3013;Geta Mark -\U3014;Left Tortoise Shell Bracket -\U3015;Right Tortoise Shell Bracket -\U3016;Left White Lenticular Bracket -\U3017;Right White Lenticular Bracket -\U3018;Left White Tortoise Shell Bracket -\U3019;Right White Tortoise Shell Bracket -\U301A;Left White Square Bracket -\U301B;Right White Square Bracket -\U301C;Wave Dash -\U301D;Reversed Double Prime Quotation Mark -\U301E;Double Prime Quotation Mark -\U301F;Low Double Prime Quotation Mark -\U3020;Postal Mark Face -\U3021;Hangzhou Numeral One -\U3022;Hangzhou Numeral Two -\U3023;Hangzhou Numeral Three -\U3024;Hangzhou Numeral Four -\U3025;Hangzhou Numeral Five -\U3026;Hangzhou Numeral Six -\U3027;Hangzhou Numeral Seven -\U3028;Hangzhou Numeral Eight -\U3029;Hangzhou Numeral Nine -\U302A;Ideographic Level Tone Mark -\U302B;Ideographic Rising Tone Mark -\U302C;Ideographic Departing Tone Mark -\U302D;Ideographic Entering Tone Mark -\U302E;Hangul Single Dot Tone Mark -\U302F;Hangul Double Dot Tone Mark -\U3030;Wavy Dash -\U3031;Vertical Kana Repeat Mark -\U3032;Vertical Kana Repeat With Voiced Sound Mark -\U3033;Vertical Kana Repeat Mark Upper Half -\U3034;Vertical Kana Repeat With Voiced Sound Mark Upper Half -\U3035;Vertical Kana Repeat Mark Lower Half -\U3036;Circled Postal Mark -\U3037;Ideographic Telegraph Line Feed Separator Symbol -\U3038;Hangzhou Numeral Ten -\U3039;Hangzhou Numeral Twenty -\U303A;Hangzhou Numeral Thirty -\U303B;Vertical Ideographic Iteration Mark -\U303C;Masu Mark -\U303D;Part Alternation Mark -\U303E;Ideographic Variation Indicator -\U303F;Ideographic Half Fill Space -\U3041;Hiragana Letter Small A -\U3042;Hiragana Letter A -\U3043;Hiragana Letter Small I -\U3044;Hiragana Letter I -\U3045;Hiragana Letter Small U -\U3046;Hiragana Letter U -\U3047;Hiragana Letter Small E -\U3048;Hiragana Letter E -\U3049;Hiragana Letter Small O -\U304A;Hiragana Letter O -\U304B;Hiragana Letter Ka -\U304C;Hiragana Letter Ga -\U304D;Hiragana Letter Ki -\U304E;Hiragana Letter Gi -\U304F;Hiragana Letter Ku -\U3050;Hiragana Letter Gu -\U3051;Hiragana Letter Ke -\U3052;Hiragana Letter Ge -\U3053;Hiragana Letter Ko -\U3054;Hiragana Letter Go -\U3055;Hiragana Letter Sa -\U3056;Hiragana Letter Za -\U3057;Hiragana Letter Si -\U3058;Hiragana Letter Zi -\U3059;Hiragana Letter Su -\U305A;Hiragana Letter Zu -\U305B;Hiragana Letter Se -\U305C;Hiragana Letter Ze -\U305D;Hiragana Letter So -\U305E;Hiragana Letter Zo -\U305F;Hiragana Letter Ta -\U3060;Hiragana Letter Da -\U3061;Hiragana Letter Ti -\U3062;Hiragana Letter Di -\U3063;Hiragana Letter Small Tu -\U3064;Hiragana Letter Tu -\U3065;Hiragana Letter Du -\U3066;Hiragana Letter Te -\U3067;Hiragana Letter De -\U3068;Hiragana Letter To -\U3069;Hiragana Letter Do -\U306A;Hiragana Letter Na -\U306B;Hiragana Letter Ni -\U306C;Hiragana Letter Nu -\U306D;Hiragana Letter Ne -\U306E;Hiragana Letter No -\U306F;Hiragana Letter Ha -\U3070;Hiragana Letter Ba -\U3071;Hiragana Letter Pa -\U3072;Hiragana Letter Hi -\U3073;Hiragana Letter Bi -\U3074;Hiragana Letter Pi -\U3075;Hiragana Letter Hu -\U3076;Hiragana Letter Bu -\U3077;Hiragana Letter Pu -\U3078;Hiragana Letter He -\U3079;Hiragana Letter Be -\U307A;Hiragana Letter Pe -\U307B;Hiragana Letter Ho -\U307C;Hiragana Letter Bo -\U307D;Hiragana Letter Po -\U307E;Hiragana Letter Ma -\U307F;Hiragana Letter Mi -\U3080;Hiragana Letter Mu -\U3081;Hiragana Letter Me -\U3082;Hiragana Letter Mo -\U3083;Hiragana Letter Small Ya -\U3084;Hiragana Letter Ya -\U3085;Hiragana Letter Small Yu -\U3086;Hiragana Letter Yu -\U3087;Hiragana Letter Small Yo -\U3088;Hiragana Letter Yo -\U3089;Hiragana Letter Ra -\U308A;Hiragana Letter Ri -\U308B;Hiragana Letter Ru -\U308C;Hiragana Letter Re -\U308D;Hiragana Letter Ro -\U308E;Hiragana Letter Small Wa -\U308F;Hiragana Letter Wa -\U3090;Hiragana Letter Wi -\U3091;Hiragana Letter We -\U3092;Hiragana Letter Wo -\U3093;Hiragana Letter N -\U3094;Hiragana Letter Vu -\U3095;Hiragana Letter Small Ka -\U3096;Hiragana Letter Small Ke -\U3099;Combining Katakana-Hiragana Voiced Sound Mark -\U309A;Combining Katakana-Hiragana Semi-Voiced Sound Mark -\U309B;Katakana-Hiragana Voiced Sound Mark -\U309C;Katakana-Hiragana Semi-Voiced Sound Mark -\U309D;Hiragana Iteration Mark -\U309E;Hiragana Voiced Iteration Mark -\U309F;Hiragana Digraph Yori -\U30A0;Katakana-Hiragana Double Hyphen -\U30A1;Katakana Letter Small A -\U30A2;Katakana Letter A -\U30A3;Katakana Letter Small I -\U30A4;Katakana Letter I -\U30A5;Katakana Letter Small U -\U30A6;Katakana Letter U -\U30A7;Katakana Letter Small E -\U30A8;Katakana Letter E -\U30A9;Katakana Letter Small O -\U30AA;Katakana Letter O -\U30AB;Katakana Letter Ka -\U30AC;Katakana Letter Ga -\U30AD;Katakana Letter Ki -\U30AE;Katakana Letter Gi -\U30AF;Katakana Letter Ku -\U30B0;Katakana Letter Gu -\U30B1;Katakana Letter Ke -\U30B2;Katakana Letter Ge -\U30B3;Katakana Letter Ko -\U30B4;Katakana Letter Go -\U30B5;Katakana Letter Sa -\U30B6;Katakana Letter Za -\U30B7;Katakana Letter Si -\U30B8;Katakana Letter Zi -\U30B9;Katakana Letter Su -\U30BA;Katakana Letter Zu -\U30BB;Katakana Letter Se -\U30BC;Katakana Letter Ze -\U30BD;Katakana Letter So -\U30BE;Katakana Letter Zo -\U30BF;Katakana Letter Ta -\U30C0;Katakana Letter Da -\U30C1;Katakana Letter Ti -\U30C2;Katakana Letter Di -\U30C3;Katakana Letter Small Tu -\U30C4;Katakana Letter Tu -\U30C5;Katakana Letter Du -\U30C6;Katakana Letter Te -\U30C7;Katakana Letter De -\U30C8;Katakana Letter To -\U30C9;Katakana Letter Do -\U30CA;Katakana Letter Na -\U30CB;Katakana Letter Ni -\U30CC;Katakana Letter Nu -\U30CD;Katakana Letter Ne -\U30CE;Katakana Letter No -\U30CF;Katakana Letter Ha -\U30D0;Katakana Letter Ba -\U30D1;Katakana Letter Pa -\U30D2;Katakana Letter Hi -\U30D3;Katakana Letter Bi -\U30D4;Katakana Letter Pi -\U30D5;Katakana Letter Hu -\U30D6;Katakana Letter Bu -\U30D7;Katakana Letter Pu -\U30D8;Katakana Letter He -\U30D9;Katakana Letter Be -\U30DA;Katakana Letter Pe -\U30DB;Katakana Letter Ho -\U30DC;Katakana Letter Bo -\U30DD;Katakana Letter Po -\U30DE;Katakana Letter Ma -\U30DF;Katakana Letter Mi -\U30E0;Katakana Letter Mu -\U30E1;Katakana Letter Me -\U30E2;Katakana Letter Mo -\U30E3;Katakana Letter Small Ya -\U30E4;Katakana Letter Ya -\U30E5;Katakana Letter Small Yu -\U30E6;Katakana Letter Yu -\U30E7;Katakana Letter Small Yo -\U30E8;Katakana Letter Yo -\U30E9;Katakana Letter Ra -\U30EA;Katakana Letter Ri -\U30EB;Katakana Letter Ru -\U30EC;Katakana Letter Re -\U30ED;Katakana Letter Ro -\U30EE;Katakana Letter Small Wa -\U30EF;Katakana Letter Wa -\U30F0;Katakana Letter Wi -\U30F1;Katakana Letter We -\U30F2;Katakana Letter Wo -\U30F3;Katakana Letter N -\U30F4;Katakana Letter Vu -\U30F5;Katakana Letter Small Ka -\U30F6;Katakana Letter Small Ke -\U30F7;Katakana Letter Va -\U30F8;Katakana Letter Vi -\U30F9;Katakana Letter Ve -\U30FA;Katakana Letter Vo -\U30FB;Katakana Middle Dot -\U30FC;Katakana-Hiragana Prolonged Sound Mark -\U30FD;Katakana Iteration Mark -\U30FE;Katakana Voiced Iteration Mark -\U30FF;Katakana Digraph Koto -\U3105;Bopomofo Letter B -\U3106;Bopomofo Letter P -\U3107;Bopomofo Letter M -\U3108;Bopomofo Letter F -\U3109;Bopomofo Letter D -\U310A;Bopomofo Letter T -\U310B;Bopomofo Letter N -\U310C;Bopomofo Letter L -\U310D;Bopomofo Letter G -\U310E;Bopomofo Letter K -\U310F;Bopomofo Letter H -\U3110;Bopomofo Letter J -\U3111;Bopomofo Letter Q -\U3112;Bopomofo Letter X -\U3113;Bopomofo Letter Zh -\U3114;Bopomofo Letter Ch -\U3115;Bopomofo Letter Sh -\U3116;Bopomofo Letter R -\U3117;Bopomofo Letter Z -\U3118;Bopomofo Letter C -\U3119;Bopomofo Letter S -\U311A;Bopomofo Letter A -\U311B;Bopomofo Letter O -\U311C;Bopomofo Letter E -\U311D;Bopomofo Letter Eh -\U311E;Bopomofo Letter Ai -\U311F;Bopomofo Letter Ei -\U3120;Bopomofo Letter Au -\U3121;Bopomofo Letter Ou -\U3122;Bopomofo Letter An -\U3123;Bopomofo Letter En -\U3124;Bopomofo Letter Ang -\U3125;Bopomofo Letter Eng -\U3126;Bopomofo Letter Er -\U3127;Bopomofo Letter I -\U3128;Bopomofo Letter U -\U3129;Bopomofo Letter Iu -\U312A;Bopomofo Letter V -\U312B;Bopomofo Letter Ng -\U312C;Bopomofo Letter Gn -\U312D;Bopomofo Letter Ih -\U312E;Bopomofo Letter O With Dot Above -\U312F;Bopomofo Letter Nn -\U3131;Hangul Letter Kiyeok -\U3132;Hangul Letter Ssangkiyeok -\U3133;Hangul Letter Kiyeok-Sios -\U3134;Hangul Letter Nieun -\U3135;Hangul Letter Nieun-Cieuc -\U3136;Hangul Letter Nieun-Hieuh -\U3137;Hangul Letter Tikeut -\U3138;Hangul Letter Ssangtikeut -\U3139;Hangul Letter Rieul -\U313A;Hangul Letter Rieul-Kiyeok -\U313B;Hangul Letter Rieul-Mieum -\U313C;Hangul Letter Rieul-Pieup -\U313D;Hangul Letter Rieul-Sios -\U313E;Hangul Letter Rieul-Thieuth -\U313F;Hangul Letter Rieul-Phieuph -\U3140;Hangul Letter Rieul-Hieuh -\U3141;Hangul Letter Mieum -\U3142;Hangul Letter Pieup -\U3143;Hangul Letter Ssangpieup -\U3144;Hangul Letter Pieup-Sios -\U3145;Hangul Letter Sios -\U3146;Hangul Letter Ssangsios -\U3147;Hangul Letter Ieung -\U3148;Hangul Letter Cieuc -\U3149;Hangul Letter Ssangcieuc -\U314A;Hangul Letter Chieuch -\U314B;Hangul Letter Khieukh -\U314C;Hangul Letter Thieuth -\U314D;Hangul Letter Phieuph -\U314E;Hangul Letter Hieuh -\U314F;Hangul Letter A -\U3150;Hangul Letter Ae -\U3151;Hangul Letter Ya -\U3152;Hangul Letter Yae -\U3153;Hangul Letter Eo -\U3154;Hangul Letter E -\U3155;Hangul Letter Yeo -\U3156;Hangul Letter Ye -\U3157;Hangul Letter O -\U3158;Hangul Letter Wa -\U3159;Hangul Letter Wae -\U315A;Hangul Letter Oe -\U315B;Hangul Letter Yo -\U315C;Hangul Letter U -\U315D;Hangul Letter Weo -\U315E;Hangul Letter We -\U315F;Hangul Letter Wi -\U3160;Hangul Letter Yu -\U3161;Hangul Letter Eu -\U3162;Hangul Letter Yi -\U3163;Hangul Letter I -\U3164;Hangul Filler -\U3165;Hangul Letter Ssangnieun -\U3166;Hangul Letter Nieun-Tikeut -\U3167;Hangul Letter Nieun-Sios -\U3168;Hangul Letter Nieun-Pansios -\U3169;Hangul Letter Rieul-Kiyeok-Sios -\U316A;Hangul Letter Rieul-Tikeut -\U316B;Hangul Letter Rieul-Pieup-Sios -\U316C;Hangul Letter Rieul-Pansios -\U316D;Hangul Letter Rieul-Yeorinhieuh -\U316E;Hangul Letter Mieum-Pieup -\U316F;Hangul Letter Mieum-Sios -\U3170;Hangul Letter Mieum-Pansios -\U3171;Hangul Letter Kapyeounmieum -\U3172;Hangul Letter Pieup-Kiyeok -\U3173;Hangul Letter Pieup-Tikeut -\U3174;Hangul Letter Pieup-Sios-Kiyeok -\U3175;Hangul Letter Pieup-Sios-Tikeut -\U3176;Hangul Letter Pieup-Cieuc -\U3177;Hangul Letter Pieup-Thieuth -\U3178;Hangul Letter Kapyeounpieup -\U3179;Hangul Letter Kapyeounssangpieup -\U317A;Hangul Letter Sios-Kiyeok -\U317B;Hangul Letter Sios-Nieun -\U317C;Hangul Letter Sios-Tikeut -\U317D;Hangul Letter Sios-Pieup -\U317E;Hangul Letter Sios-Cieuc -\U317F;Hangul Letter Pansios -\U3180;Hangul Letter Ssangieung -\U3181;Hangul Letter Yesieung -\U3182;Hangul Letter Yesieung-Sios -\U3183;Hangul Letter Yesieung-Pansios -\U3184;Hangul Letter Kapyeounphieuph -\U3185;Hangul Letter Ssanghieuh -\U3186;Hangul Letter Yeorinhieuh -\U3187;Hangul Letter Yo-Ya -\U3188;Hangul Letter Yo-Yae -\U3189;Hangul Letter Yo-I -\U318A;Hangul Letter Yu-Yeo -\U318B;Hangul Letter Yu-Ye -\U318C;Hangul Letter Yu-I -\U318D;Hangul Letter Araea -\U318E;Hangul Letter Araeae -\U3190;Ideographic Annotation Linking Mark -\U3191;Ideographic Annotation Reverse Mark -\U3192;Ideographic Annotation One Mark -\U3193;Ideographic Annotation Two Mark -\U3194;Ideographic Annotation Three Mark -\U3195;Ideographic Annotation Four Mark -\U3196;Ideographic Annotation Top Mark -\U3197;Ideographic Annotation Middle Mark -\U3198;Ideographic Annotation Bottom Mark -\U3199;Ideographic Annotation First Mark -\U319A;Ideographic Annotation Second Mark -\U319B;Ideographic Annotation Third Mark -\U319C;Ideographic Annotation Fourth Mark -\U319D;Ideographic Annotation Heaven Mark -\U319E;Ideographic Annotation Earth Mark -\U319F;Ideographic Annotation Man Mark -\U31A0;Bopomofo Letter Bu -\U31A1;Bopomofo Letter Zi -\U31A2;Bopomofo Letter Ji -\U31A3;Bopomofo Letter Gu -\U31A4;Bopomofo Letter Ee -\U31A5;Bopomofo Letter Enn -\U31A6;Bopomofo Letter Oo -\U31A7;Bopomofo Letter Onn -\U31A8;Bopomofo Letter Ir -\U31A9;Bopomofo Letter Ann -\U31AA;Bopomofo Letter Inn -\U31AB;Bopomofo Letter Unn -\U31AC;Bopomofo Letter Im -\U31AD;Bopomofo Letter Ngg -\U31AE;Bopomofo Letter Ainn -\U31AF;Bopomofo Letter Aunn -\U31B0;Bopomofo Letter Am -\U31B1;Bopomofo Letter Om -\U31B2;Bopomofo Letter Ong -\U31B3;Bopomofo Letter Innn -\U31B4;Bopomofo Final Letter P -\U31B5;Bopomofo Final Letter T -\U31B6;Bopomofo Final Letter K -\U31B7;Bopomofo Final Letter H -\U31B8;Bopomofo Letter Gh -\U31B9;Bopomofo Letter Lh -\U31BA;Bopomofo Letter Zy -\U31BB;Bopomofo Final Letter G -\U31BC;Bopomofo Letter Gw -\U31BD;Bopomofo Letter Kw -\U31BE;Bopomofo Letter Oe -\U31BF;Bopomofo Letter Ah -\U31C0;Cjk Stroke T -\U31C1;Cjk Stroke Wg -\U31C2;Cjk Stroke Xg -\U31C3;Cjk Stroke Bxg -\U31C4;Cjk Stroke Sw -\U31C5;Cjk Stroke Hzz -\U31C6;Cjk Stroke Hzg -\U31C7;Cjk Stroke Hp -\U31C8;Cjk Stroke Hzwg -\U31C9;Cjk Stroke Szwg -\U31CA;Cjk Stroke Hzt -\U31CB;Cjk Stroke Hzzp -\U31CC;Cjk Stroke Hpwg -\U31CD;Cjk Stroke Hzw -\U31CE;Cjk Stroke Hzzz -\U31CF;Cjk Stroke N -\U31D0;Cjk Stroke H -\U31D1;Cjk Stroke S -\U31D2;Cjk Stroke P -\U31D3;Cjk Stroke Sp -\U31D4;Cjk Stroke D -\U31D5;Cjk Stroke Hz -\U31D6;Cjk Stroke Hg -\U31D7;Cjk Stroke Sz -\U31D8;Cjk Stroke Swz -\U31D9;Cjk Stroke St -\U31DA;Cjk Stroke Sg -\U31DB;Cjk Stroke Pd -\U31DC;Cjk Stroke Pz -\U31DD;Cjk Stroke Tn -\U31DE;Cjk Stroke Szz -\U31DF;Cjk Stroke Swg -\U31E0;Cjk Stroke Hxwg -\U31E1;Cjk Stroke Hzzzg -\U31E2;Cjk Stroke Pg -\U31E3;Cjk Stroke Q -\U31EF;Ideographic Description Character Subtraction -\U31F0;Katakana Letter Small Ku -\U31F1;Katakana Letter Small Si -\U31F2;Katakana Letter Small Su -\U31F3;Katakana Letter Small To -\U31F4;Katakana Letter Small Nu -\U31F5;Katakana Letter Small Ha -\U31F6;Katakana Letter Small Hi -\U31F7;Katakana Letter Small Hu -\U31F8;Katakana Letter Small He -\U31F9;Katakana Letter Small Ho -\U31FA;Katakana Letter Small Mu -\U31FB;Katakana Letter Small Ra -\U31FC;Katakana Letter Small Ri -\U31FD;Katakana Letter Small Ru -\U31FE;Katakana Letter Small Re -\U31FF;Katakana Letter Small Ro -\U3200;Parenthesized Hangul Kiyeok -\U3201;Parenthesized Hangul Nieun -\U3202;Parenthesized Hangul Tikeut -\U3203;Parenthesized Hangul Rieul -\U3204;Parenthesized Hangul Mieum -\U3205;Parenthesized Hangul Pieup -\U3206;Parenthesized Hangul Sios -\U3207;Parenthesized Hangul Ieung -\U3208;Parenthesized Hangul Cieuc -\U3209;Parenthesized Hangul Chieuch -\U320A;Parenthesized Hangul Khieukh -\U320B;Parenthesized Hangul Thieuth -\U320C;Parenthesized Hangul Phieuph -\U320D;Parenthesized Hangul Hieuh -\U320E;Parenthesized Hangul Kiyeok A -\U320F;Parenthesized Hangul Nieun A -\U3210;Parenthesized Hangul Tikeut A -\U3211;Parenthesized Hangul Rieul A -\U3212;Parenthesized Hangul Mieum A -\U3213;Parenthesized Hangul Pieup A -\U3214;Parenthesized Hangul Sios A -\U3215;Parenthesized Hangul Ieung A -\U3216;Parenthesized Hangul Cieuc A -\U3217;Parenthesized Hangul Chieuch A -\U3218;Parenthesized Hangul Khieukh A -\U3219;Parenthesized Hangul Thieuth A -\U321A;Parenthesized Hangul Phieuph A -\U321B;Parenthesized Hangul Hieuh A -\U321C;Parenthesized Hangul Cieuc U -\U321D;Parenthesized Korean Character Ojeon -\U321E;Parenthesized Korean Character O Hu -\U3220;Parenthesized Ideograph One -\U3221;Parenthesized Ideograph Two -\U3222;Parenthesized Ideograph Three -\U3223;Parenthesized Ideograph Four -\U3224;Parenthesized Ideograph Five -\U3225;Parenthesized Ideograph Six -\U3226;Parenthesized Ideograph Seven -\U3227;Parenthesized Ideograph Eight -\U3228;Parenthesized Ideograph Nine -\U3229;Parenthesized Ideograph Ten -\U322A;Parenthesized Ideograph Moon -\U322B;Parenthesized Ideograph Fire -\U322C;Parenthesized Ideograph Water -\U322D;Parenthesized Ideograph Wood -\U322E;Parenthesized Ideograph Metal -\U322F;Parenthesized Ideograph Earth -\U3230;Parenthesized Ideograph Sun -\U3231;Parenthesized Ideograph Stock -\U3232;Parenthesized Ideograph Have -\U3233;Parenthesized Ideograph Society -\U3234;Parenthesized Ideograph Name -\U3235;Parenthesized Ideograph Special -\U3236;Parenthesized Ideograph Financial -\U3237;Parenthesized Ideograph Congratulation -\U3238;Parenthesized Ideograph Labor -\U3239;Parenthesized Ideograph Represent -\U323A;Parenthesized Ideograph Call -\U323B;Parenthesized Ideograph Study -\U323C;Parenthesized Ideograph Supervise -\U323D;Parenthesized Ideograph Enterprise -\U323E;Parenthesized Ideograph Resource -\U323F;Parenthesized Ideograph Alliance -\U3240;Parenthesized Ideograph Festival -\U3241;Parenthesized Ideograph Rest -\U3242;Parenthesized Ideograph Self -\U3243;Parenthesized Ideograph Reach -\U3244;Circled Ideograph Question -\U3245;Circled Ideograph Kindergarten -\U3246;Circled Ideograph School -\U3247;Circled Ideograph Koto -\U3248;Circled Number Ten On Black Square -\U3249;Circled Number Twenty On Black Square -\U324A;Circled Number Thirty On Black Square -\U324B;Circled Number Forty On Black Square -\U324C;Circled Number Fifty On Black Square -\U324D;Circled Number Sixty On Black Square -\U324E;Circled Number Seventy On Black Square -\U324F;Circled Number Eighty On Black Square -\U3250;Partnership Sign -\U3251;Circled Number Twenty One -\U3252;Circled Number Twenty Two -\U3253;Circled Number Twenty Three -\U3254;Circled Number Twenty Four -\U3255;Circled Number Twenty Five -\U3256;Circled Number Twenty Six -\U3257;Circled Number Twenty Seven -\U3258;Circled Number Twenty Eight -\U3259;Circled Number Twenty Nine -\U325A;Circled Number Thirty -\U325B;Circled Number Thirty One -\U325C;Circled Number Thirty Two -\U325D;Circled Number Thirty Three -\U325E;Circled Number Thirty Four -\U325F;Circled Number Thirty Five -\U3260;Circled Hangul Kiyeok -\U3261;Circled Hangul Nieun -\U3262;Circled Hangul Tikeut -\U3263;Circled Hangul Rieul -\U3264;Circled Hangul Mieum -\U3265;Circled Hangul Pieup -\U3266;Circled Hangul Sios -\U3267;Circled Hangul Ieung -\U3268;Circled Hangul Cieuc -\U3269;Circled Hangul Chieuch -\U326A;Circled Hangul Khieukh -\U326B;Circled Hangul Thieuth -\U326C;Circled Hangul Phieuph -\U326D;Circled Hangul Hieuh -\U326E;Circled Hangul Kiyeok A -\U326F;Circled Hangul Nieun A -\U3270;Circled Hangul Tikeut A -\U3271;Circled Hangul Rieul A -\U3272;Circled Hangul Mieum A -\U3273;Circled Hangul Pieup A -\U3274;Circled Hangul Sios A -\U3275;Circled Hangul Ieung A -\U3276;Circled Hangul Cieuc A -\U3277;Circled Hangul Chieuch A -\U3278;Circled Hangul Khieukh A -\U3279;Circled Hangul Thieuth A -\U327A;Circled Hangul Phieuph A -\U327B;Circled Hangul Hieuh A -\U327C;Circled Korean Character Chamko -\U327D;Circled Korean Character Jueui -\U327E;Circled Hangul Ieung U -\U327F;Korean Standard Symbol -\U3280;Circled Ideograph One -\U3281;Circled Ideograph Two -\U3282;Circled Ideograph Three -\U3283;Circled Ideograph Four -\U3284;Circled Ideograph Five -\U3285;Circled Ideograph Six -\U3286;Circled Ideograph Seven -\U3287;Circled Ideograph Eight -\U3288;Circled Ideograph Nine -\U3289;Circled Ideograph Ten -\U328A;Circled Ideograph Moon -\U328B;Circled Ideograph Fire -\U328C;Circled Ideograph Water -\U328D;Circled Ideograph Wood -\U328E;Circled Ideograph Metal -\U328F;Circled Ideograph Earth -\U3290;Circled Ideograph Sun -\U3291;Circled Ideograph Stock -\U3292;Circled Ideograph Have -\U3293;Circled Ideograph Society -\U3294;Circled Ideograph Name -\U3295;Circled Ideograph Special -\U3296;Circled Ideograph Financial -\U3297;Circled Ideograph Congratulation -\U3298;Circled Ideograph Labor -\U3299;Circled Ideograph Secret -\U329A;Circled Ideograph Male -\U329B;Circled Ideograph Female -\U329C;Circled Ideograph Suitable -\U329D;Circled Ideograph Excellent -\U329E;Circled Ideograph Print -\U329F;Circled Ideograph Attention -\U32A0;Circled Ideograph Item -\U32A1;Circled Ideograph Rest -\U32A2;Circled Ideograph Copy -\U32A3;Circled Ideograph Correct -\U32A4;Circled Ideograph High -\U32A5;Circled Ideograph Centre -\U32A6;Circled Ideograph Low -\U32A7;Circled Ideograph Left -\U32A8;Circled Ideograph Right -\U32A9;Circled Ideograph Medicine -\U32AA;Circled Ideograph Religion -\U32AB;Circled Ideograph Study -\U32AC;Circled Ideograph Supervise -\U32AD;Circled Ideograph Enterprise -\U32AE;Circled Ideograph Resource -\U32AF;Circled Ideograph Alliance -\U32B0;Circled Ideograph Night -\U32B1;Circled Number Thirty Six -\U32B2;Circled Number Thirty Seven -\U32B3;Circled Number Thirty Eight -\U32B4;Circled Number Thirty Nine -\U32B5;Circled Number Forty -\U32B6;Circled Number Forty One -\U32B7;Circled Number Forty Two -\U32B8;Circled Number Forty Three -\U32B9;Circled Number Forty Four -\U32BA;Circled Number Forty Five -\U32BB;Circled Number Forty Six -\U32BC;Circled Number Forty Seven -\U32BD;Circled Number Forty Eight -\U32BE;Circled Number Forty Nine -\U32BF;Circled Number Fifty -\U32C0;Ideographic Telegraph Symbol For January -\U32C1;Ideographic Telegraph Symbol For February -\U32C2;Ideographic Telegraph Symbol For March -\U32C3;Ideographic Telegraph Symbol For April -\U32C4;Ideographic Telegraph Symbol For May -\U32C5;Ideographic Telegraph Symbol For June -\U32C6;Ideographic Telegraph Symbol For July -\U32C7;Ideographic Telegraph Symbol For August -\U32C8;Ideographic Telegraph Symbol For September -\U32C9;Ideographic Telegraph Symbol For October -\U32CA;Ideographic Telegraph Symbol For November -\U32CB;Ideographic Telegraph Symbol For December -\U32CC;Square Hg -\U32CD;Square Erg -\U32CE;Square Ev -\U32CF;Limited Liability Sign -\U32D0;Circled Katakana A -\U32D1;Circled Katakana I -\U32D2;Circled Katakana U -\U32D3;Circled Katakana E -\U32D4;Circled Katakana O -\U32D5;Circled Katakana Ka -\U32D6;Circled Katakana Ki -\U32D7;Circled Katakana Ku -\U32D8;Circled Katakana Ke -\U32D9;Circled Katakana Ko -\U32DA;Circled Katakana Sa -\U32DB;Circled Katakana Si -\U32DC;Circled Katakana Su -\U32DD;Circled Katakana Se -\U32DE;Circled Katakana So -\U32DF;Circled Katakana Ta -\U32E0;Circled Katakana Ti -\U32E1;Circled Katakana Tu -\U32E2;Circled Katakana Te -\U32E3;Circled Katakana To -\U32E4;Circled Katakana Na -\U32E5;Circled Katakana Ni -\U32E6;Circled Katakana Nu -\U32E7;Circled Katakana Ne -\U32E8;Circled Katakana No -\U32E9;Circled Katakana Ha -\U32EA;Circled Katakana Hi -\U32EB;Circled Katakana Hu -\U32EC;Circled Katakana He -\U32ED;Circled Katakana Ho -\U32EE;Circled Katakana Ma -\U32EF;Circled Katakana Mi -\U32F0;Circled Katakana Mu -\U32F1;Circled Katakana Me -\U32F2;Circled Katakana Mo -\U32F3;Circled Katakana Ya -\U32F4;Circled Katakana Yu -\U32F5;Circled Katakana Yo -\U32F6;Circled Katakana Ra -\U32F7;Circled Katakana Ri -\U32F8;Circled Katakana Ru -\U32F9;Circled Katakana Re -\U32FA;Circled Katakana Ro -\U32FB;Circled Katakana Wa -\U32FC;Circled Katakana Wi -\U32FD;Circled Katakana We -\U32FE;Circled Katakana Wo -\U32FF;Square Era Name Reiwa -\U3300;Square Apaato -\U3301;Square Aruhua -\U3302;Square Anpea -\U3303;Square Aaru -\U3304;Square Iningu -\U3305;Square Inti -\U3306;Square Uon -\U3307;Square Esukuudo -\U3308;Square Eekaa -\U3309;Square Onsu -\U330A;Square Oomu -\U330B;Square Kairi -\U330C;Square Karatto -\U330D;Square Karorii -\U330E;Square Garon -\U330F;Square Ganma -\U3310;Square Giga -\U3311;Square Ginii -\U3312;Square Kyurii -\U3313;Square Girudaa -\U3314;Square Kiro -\U3315;Square Kiroguramu -\U3316;Square Kiromeetoru -\U3317;Square Kirowatto -\U3318;Square Guramu -\U3319;Square Guramuton -\U331A;Square Kuruzeiro -\U331B;Square Kuroone -\U331C;Square Keesu -\U331D;Square Koruna -\U331E;Square Koopo -\U331F;Square Saikuru -\U3320;Square Santiimu -\U3321;Square Siringu -\U3322;Square Senti -\U3323;Square Sento -\U3324;Square Daasu -\U3325;Square Desi -\U3326;Square Doru -\U3327;Square Ton -\U3328;Square Nano -\U3329;Square Notto -\U332A;Square Haitu -\U332B;Square Paasento -\U332C;Square Paatu -\U332D;Square Baareru -\U332E;Square Piasutoru -\U332F;Square Pikuru -\U3330;Square Piko -\U3331;Square Biru -\U3332;Square Huaraddo -\U3333;Square Huiito -\U3334;Square Bussyeru -\U3335;Square Huran -\U3336;Square Hekutaaru -\U3337;Square Peso -\U3338;Square Penihi -\U3339;Square Herutu -\U333A;Square Pensu -\U333B;Square Peezi -\U333C;Square Beeta -\U333D;Square Pointo -\U333E;Square Boruto -\U333F;Square Hon -\U3340;Square Pondo -\U3341;Square Hooru -\U3342;Square Hoon -\U3343;Square Maikuro -\U3344;Square Mairu -\U3345;Square Mahha -\U3346;Square Maruku -\U3347;Square Mansyon -\U3348;Square Mikuron -\U3349;Square Miri -\U334A;Square Miribaaru -\U334B;Square Mega -\U334C;Square Megaton -\U334D;Square Meetoru -\U334E;Square Yaado -\U334F;Square Yaaru -\U3350;Square Yuan -\U3351;Square Rittoru -\U3352;Square Rira -\U3353;Square Rupii -\U3354;Square Ruuburu -\U3355;Square Remu -\U3356;Square Rentogen -\U3357;Square Watto -\U3358;Ideographic Telegraph Symbol For Hour Zero -\U3359;Ideographic Telegraph Symbol For Hour One -\U335A;Ideographic Telegraph Symbol For Hour Two -\U335B;Ideographic Telegraph Symbol For Hour Three -\U335C;Ideographic Telegraph Symbol For Hour Four -\U335D;Ideographic Telegraph Symbol For Hour Five -\U335E;Ideographic Telegraph Symbol For Hour Six -\U335F;Ideographic Telegraph Symbol For Hour Seven -\U3360;Ideographic Telegraph Symbol For Hour Eight -\U3361;Ideographic Telegraph Symbol For Hour Nine -\U3362;Ideographic Telegraph Symbol For Hour Ten -\U3363;Ideographic Telegraph Symbol For Hour Eleven -\U3364;Ideographic Telegraph Symbol For Hour Twelve -\U3365;Ideographic Telegraph Symbol For Hour Thirteen -\U3366;Ideographic Telegraph Symbol For Hour Fourteen -\U3367;Ideographic Telegraph Symbol For Hour Fifteen -\U3368;Ideographic Telegraph Symbol For Hour Sixteen -\U3369;Ideographic Telegraph Symbol For Hour Seventeen -\U336A;Ideographic Telegraph Symbol For Hour Eighteen -\U336B;Ideographic Telegraph Symbol For Hour Nineteen -\U336C;Ideographic Telegraph Symbol For Hour Twenty -\U336D;Ideographic Telegraph Symbol For Hour Twenty-One -\U336E;Ideographic Telegraph Symbol For Hour Twenty-Two -\U336F;Ideographic Telegraph Symbol For Hour Twenty-Three -\U3370;Ideographic Telegraph Symbol For Hour Twenty-Four -\U3371;Square Hpa -\U3372;Square Da -\U3373;Square Au -\U3374;Square Bar -\U3375;Square Ov -\U3376;Square Pc -\U3377;Square Dm -\U3378;Square Dm Squared -\U3379;Square Dm Cubed -\U337A;Square Iu -\U337B;Square Era Name Heisei -\U337C;Square Era Name Syouwa -\U337D;Square Era Name Taisyou -\U337E;Square Era Name Meizi -\U337F;Square Corporation -\U3380;Square Pa Amps -\U3381;Square Na -\U3382;Square Mu A -\U3383;Square Ma -\U3384;Square Ka -\U3385;Square Kb -\U3386;Square Mb -\U3387;Square Gb -\U3388;Square Cal -\U3389;Square Kcal -\U338A;Square Pf -\U338B;Square Nf -\U338C;Square Mu F -\U338D;Square Mu G -\U338E;Square Mg -\U338F;Square Kg -\U3390;Square Hz -\U3391;Square Khz -\U3392;Square Mhz -\U3393;Square Ghz -\U3394;Square Thz -\U3395;Square Mu L -\U3396;Square Ml -\U3397;Square Dl -\U3398;Square Kl -\U3399;Square Fm -\U339A;Square Nm -\U339B;Square Mu M -\U339C;Square Mm -\U339D;Square Cm -\U339E;Square Km -\U339F;Square Mm Squared -\U33A0;Square Cm Squared -\U33A1;Square M Squared -\U33A2;Square Km Squared -\U33A3;Square Mm Cubed -\U33A4;Square Cm Cubed -\U33A5;Square M Cubed -\U33A6;Square Km Cubed -\U33A7;Square M Over S -\U33A8;Square M Over S Squared -\U33A9;Square Pa -\U33AA;Square Kpa -\U33AB;Square Mpa -\U33AC;Square Gpa -\U33AD;Square Rad -\U33AE;Square Rad Over S -\U33AF;Square Rad Over S Squared -\U33B0;Square Ps -\U33B1;Square Ns -\U33B2;Square Mu S -\U33B3;Square Ms -\U33B4;Square Pv -\U33B5;Square Nv -\U33B6;Square Mu V -\U33B7;Square Mv -\U33B8;Square Kv -\U33B9;Square Mv Mega -\U33BA;Square Pw -\U33BB;Square Nw -\U33BC;Square Mu W -\U33BD;Square Mw -\U33BE;Square Kw -\U33BF;Square Mw Mega -\U33C0;Square K Ohm -\U33C1;Square M Ohm -\U33C2;Square Am -\U33C3;Square Bq -\U33C4;Square Cc -\U33C5;Square Cd -\U33C6;Square C Over Kg -\U33C7;Square Co -\U33C8;Square Db -\U33C9;Square Gy -\U33CA;Square Ha -\U33CB;Square Hp -\U33CC;Square In -\U33CD;Square Kk -\U33CE;Square Km Capital -\U33CF;Square Kt -\U33D0;Square Lm -\U33D1;Square Ln -\U33D2;Square Log -\U33D3;Square Lx -\U33D4;Square Mb Small -\U33D5;Square Mil -\U33D6;Square Mol -\U33D7;Square Ph -\U33D8;Square Pm -\U33D9;Square Ppm -\U33DA;Square Pr -\U33DB;Square Sr -\U33DC;Square Sv -\U33DD;Square Wb -\U33DE;Square V Over M -\U33DF;Square A Over M -\U33E0;Ideographic Telegraph Symbol For Day One -\U33E1;Ideographic Telegraph Symbol For Day Two -\U33E2;Ideographic Telegraph Symbol For Day Three -\U33E3;Ideographic Telegraph Symbol For Day Four -\U33E4;Ideographic Telegraph Symbol For Day Five -\U33E5;Ideographic Telegraph Symbol For Day Six -\U33E6;Ideographic Telegraph Symbol For Day Seven -\U33E7;Ideographic Telegraph Symbol For Day Eight -\U33E8;Ideographic Telegraph Symbol For Day Nine -\U33E9;Ideographic Telegraph Symbol For Day Ten -\U33EA;Ideographic Telegraph Symbol For Day Eleven -\U33EB;Ideographic Telegraph Symbol For Day Twelve -\U33EC;Ideographic Telegraph Symbol For Day Thirteen -\U33ED;Ideographic Telegraph Symbol For Day Fourteen -\U33EE;Ideographic Telegraph Symbol For Day Fifteen -\U33EF;Ideographic Telegraph Symbol For Day Sixteen -\U33F0;Ideographic Telegraph Symbol For Day Seventeen -\U33F1;Ideographic Telegraph Symbol For Day Eighteen -\U33F2;Ideographic Telegraph Symbol For Day Nineteen -\U33F3;Ideographic Telegraph Symbol For Day Twenty -\U33F4;Ideographic Telegraph Symbol For Day Twenty-One -\U33F5;Ideographic Telegraph Symbol For Day Twenty-Two -\U33F6;Ideographic Telegraph Symbol For Day Twenty-Three -\U33F7;Ideographic Telegraph Symbol For Day Twenty-Four -\U33F8;Ideographic Telegraph Symbol For Day Twenty-Five -\U33F9;Ideographic Telegraph Symbol For Day Twenty-Six -\U33FA;Ideographic Telegraph Symbol For Day Twenty-Seven -\U33FB;Ideographic Telegraph Symbol For Day Twenty-Eight -\U33FC;Ideographic Telegraph Symbol For Day Twenty-Nine -\U33FD;Ideographic Telegraph Symbol For Day Thirty -\U33FE;Ideographic Telegraph Symbol For Day Thirty-One -\U33FF;Square Gal -\U4DC0;Hexagram For The Creative Heaven -\U4DC1;Hexagram For The Receptive Earth -\U4DC2;Hexagram For Difficulty At The Beginning -\U4DC3;Hexagram For Youthful Folly -\U4DC4;Hexagram For Waiting -\U4DC5;Hexagram For Conflict -\U4DC6;Hexagram For The Army -\U4DC7;Hexagram For Holding Together -\U4DC8;Hexagram For Small Taming -\U4DC9;Hexagram For Treading -\U4DCA;Hexagram For Peace -\U4DCB;Hexagram For Standstill -\U4DCC;Hexagram For Fellowship -\U4DCD;Hexagram For Great Possession -\U4DCE;Hexagram For Modesty -\U4DCF;Hexagram For Enthusiasm -\U4DD0;Hexagram For Following -\U4DD1;Hexagram For Work On The Decayed -\U4DD2;Hexagram For Approach -\U4DD3;Hexagram For Contemplation -\U4DD4;Hexagram For Biting Through -\U4DD5;Hexagram For Grace -\U4DD6;Hexagram For Splitting Apart -\U4DD7;Hexagram For Return -\U4DD8;Hexagram For Innocence -\U4DD9;Hexagram For Great Taming -\U4DDA;Hexagram For Mouth Corners -\U4DDB;Hexagram For Great Preponderance -\U4DDC;Hexagram For The Abysmal Water -\U4DDD;Hexagram For The Clinging Fire -\U4DDE;Hexagram For Influence -\U4DDF;Hexagram For Duration -\U4DE0;Hexagram For Retreat -\U4DE1;Hexagram For Great Power -\U4DE2;Hexagram For Progress -\U4DE3;Hexagram For Darkening Of The Light -\U4DE4;Hexagram For The Family -\U4DE5;Hexagram For Opposition -\U4DE6;Hexagram For Obstruction -\U4DE7;Hexagram For Deliverance -\U4DE8;Hexagram For Decrease -\U4DE9;Hexagram For Increase -\U4DEA;Hexagram For Breakthrough -\U4DEB;Hexagram For Coming To Meet -\U4DEC;Hexagram For Gathering Together -\U4DED;Hexagram For Pushing Upward -\U4DEE;Hexagram For Oppression -\U4DEF;Hexagram For The Well -\U4DF0;Hexagram For Revolution -\U4DF1;Hexagram For The Cauldron -\U4DF2;Hexagram For The Arousing Thunder -\U4DF3;Hexagram For The Keeping Still Mountain -\U4DF4;Hexagram For Development -\U4DF5;Hexagram For The Marrying Maiden -\U4DF6;Hexagram For Abundance -\U4DF7;Hexagram For The Wanderer -\U4DF8;Hexagram For The Gentle Wind -\U4DF9;Hexagram For The Joyous Lake -\U4DFA;Hexagram For Dispersion -\U4DFB;Hexagram For Limitation -\U4DFC;Hexagram For Inner Truth -\U4DFD;Hexagram For Small Preponderance -\U4DFE;Hexagram For After Completion -\U4DFF;Hexagram For Before Completion -\UA000;Yi Syllable It -\UA001;Yi Syllable Ix -\UA002;Yi Syllable I -\UA003;Yi Syllable Ip -\UA004;Yi Syllable Iet -\UA005;Yi Syllable Iex -\UA006;Yi Syllable Ie -\UA007;Yi Syllable Iep -\UA008;Yi Syllable At -\UA009;Yi Syllable Ax -\UA00A;Yi Syllable A -\UA00B;Yi Syllable Ap -\UA00C;Yi Syllable Uox -\UA00D;Yi Syllable Uo -\UA00E;Yi Syllable Uop -\UA00F;Yi Syllable Ot -\UA010;Yi Syllable Ox -\UA011;Yi Syllable O -\UA012;Yi Syllable Op -\UA013;Yi Syllable Ex -\UA014;Yi Syllable E -\UA015;Yi Syllable Wu -\UA016;Yi Syllable Bit -\UA017;Yi Syllable Bix -\UA018;Yi Syllable Bi -\UA019;Yi Syllable Bip -\UA01A;Yi Syllable Biet -\UA01B;Yi Syllable Biex -\UA01C;Yi Syllable Bie -\UA01D;Yi Syllable Biep -\UA01E;Yi Syllable Bat -\UA01F;Yi Syllable Bax -\UA020;Yi Syllable Ba -\UA021;Yi Syllable Bap -\UA022;Yi Syllable Buox -\UA023;Yi Syllable Buo -\UA024;Yi Syllable Buop -\UA025;Yi Syllable Bot -\UA026;Yi Syllable Box -\UA027;Yi Syllable Bo -\UA028;Yi Syllable Bop -\UA029;Yi Syllable Bex -\UA02A;Yi Syllable Be -\UA02B;Yi Syllable Bep -\UA02C;Yi Syllable But -\UA02D;Yi Syllable Bux -\UA02E;Yi Syllable Bu -\UA02F;Yi Syllable Bup -\UA030;Yi Syllable Burx -\UA031;Yi Syllable Bur -\UA032;Yi Syllable Byt -\UA033;Yi Syllable Byx -\UA034;Yi Syllable By -\UA035;Yi Syllable Byp -\UA036;Yi Syllable Byrx -\UA037;Yi Syllable Byr -\UA038;Yi Syllable Pit -\UA039;Yi Syllable Pix -\UA03A;Yi Syllable Pi -\UA03B;Yi Syllable Pip -\UA03C;Yi Syllable Piex -\UA03D;Yi Syllable Pie -\UA03E;Yi Syllable Piep -\UA03F;Yi Syllable Pat -\UA040;Yi Syllable Pax -\UA041;Yi Syllable Pa -\UA042;Yi Syllable Pap -\UA043;Yi Syllable Puox -\UA044;Yi Syllable Puo -\UA045;Yi Syllable Puop -\UA046;Yi Syllable Pot -\UA047;Yi Syllable Pox -\UA048;Yi Syllable Po -\UA049;Yi Syllable Pop -\UA04A;Yi Syllable Put -\UA04B;Yi Syllable Pux -\UA04C;Yi Syllable Pu -\UA04D;Yi Syllable Pup -\UA04E;Yi Syllable Purx -\UA04F;Yi Syllable Pur -\UA050;Yi Syllable Pyt -\UA051;Yi Syllable Pyx -\UA052;Yi Syllable Py -\UA053;Yi Syllable Pyp -\UA054;Yi Syllable Pyrx -\UA055;Yi Syllable Pyr -\UA056;Yi Syllable Bbit -\UA057;Yi Syllable Bbix -\UA058;Yi Syllable Bbi -\UA059;Yi Syllable Bbip -\UA05A;Yi Syllable Bbiet -\UA05B;Yi Syllable Bbiex -\UA05C;Yi Syllable Bbie -\UA05D;Yi Syllable Bbiep -\UA05E;Yi Syllable Bbat -\UA05F;Yi Syllable Bbax -\UA060;Yi Syllable Bba -\UA061;Yi Syllable Bbap -\UA062;Yi Syllable Bbuox -\UA063;Yi Syllable Bbuo -\UA064;Yi Syllable Bbuop -\UA065;Yi Syllable Bbot -\UA066;Yi Syllable Bbox -\UA067;Yi Syllable Bbo -\UA068;Yi Syllable Bbop -\UA069;Yi Syllable Bbex -\UA06A;Yi Syllable Bbe -\UA06B;Yi Syllable Bbep -\UA06C;Yi Syllable Bbut -\UA06D;Yi Syllable Bbux -\UA06E;Yi Syllable Bbu -\UA06F;Yi Syllable Bbup -\UA070;Yi Syllable Bburx -\UA071;Yi Syllable Bbur -\UA072;Yi Syllable Bbyt -\UA073;Yi Syllable Bbyx -\UA074;Yi Syllable Bby -\UA075;Yi Syllable Bbyp -\UA076;Yi Syllable Nbit -\UA077;Yi Syllable Nbix -\UA078;Yi Syllable Nbi -\UA079;Yi Syllable Nbip -\UA07A;Yi Syllable Nbiex -\UA07B;Yi Syllable Nbie -\UA07C;Yi Syllable Nbiep -\UA07D;Yi Syllable Nbat -\UA07E;Yi Syllable Nbax -\UA07F;Yi Syllable Nba -\UA080;Yi Syllable Nbap -\UA081;Yi Syllable Nbot -\UA082;Yi Syllable Nbox -\UA083;Yi Syllable Nbo -\UA084;Yi Syllable Nbop -\UA085;Yi Syllable Nbut -\UA086;Yi Syllable Nbux -\UA087;Yi Syllable Nbu -\UA088;Yi Syllable Nbup -\UA089;Yi Syllable Nburx -\UA08A;Yi Syllable Nbur -\UA08B;Yi Syllable Nbyt -\UA08C;Yi Syllable Nbyx -\UA08D;Yi Syllable Nby -\UA08E;Yi Syllable Nbyp -\UA08F;Yi Syllable Nbyrx -\UA090;Yi Syllable Nbyr -\UA091;Yi Syllable Hmit -\UA092;Yi Syllable Hmix -\UA093;Yi Syllable Hmi -\UA094;Yi Syllable Hmip -\UA095;Yi Syllable Hmiex -\UA096;Yi Syllable Hmie -\UA097;Yi Syllable Hmiep -\UA098;Yi Syllable Hmat -\UA099;Yi Syllable Hmax -\UA09A;Yi Syllable Hma -\UA09B;Yi Syllable Hmap -\UA09C;Yi Syllable Hmuox -\UA09D;Yi Syllable Hmuo -\UA09E;Yi Syllable Hmuop -\UA09F;Yi Syllable Hmot -\UA0A0;Yi Syllable Hmox -\UA0A1;Yi Syllable Hmo -\UA0A2;Yi Syllable Hmop -\UA0A3;Yi Syllable Hmut -\UA0A4;Yi Syllable Hmux -\UA0A5;Yi Syllable Hmu -\UA0A6;Yi Syllable Hmup -\UA0A7;Yi Syllable Hmurx -\UA0A8;Yi Syllable Hmur -\UA0A9;Yi Syllable Hmyx -\UA0AA;Yi Syllable Hmy -\UA0AB;Yi Syllable Hmyp -\UA0AC;Yi Syllable Hmyrx -\UA0AD;Yi Syllable Hmyr -\UA0AE;Yi Syllable Mit -\UA0AF;Yi Syllable Mix -\UA0B0;Yi Syllable Mi -\UA0B1;Yi Syllable Mip -\UA0B2;Yi Syllable Miex -\UA0B3;Yi Syllable Mie -\UA0B4;Yi Syllable Miep -\UA0B5;Yi Syllable Mat -\UA0B6;Yi Syllable Max -\UA0B7;Yi Syllable Ma -\UA0B8;Yi Syllable Map -\UA0B9;Yi Syllable Muot -\UA0BA;Yi Syllable Muox -\UA0BB;Yi Syllable Muo -\UA0BC;Yi Syllable Muop -\UA0BD;Yi Syllable Mot -\UA0BE;Yi Syllable Mox -\UA0BF;Yi Syllable Mo -\UA0C0;Yi Syllable Mop -\UA0C1;Yi Syllable Mex -\UA0C2;Yi Syllable Me -\UA0C3;Yi Syllable Mut -\UA0C4;Yi Syllable Mux -\UA0C5;Yi Syllable Mu -\UA0C6;Yi Syllable Mup -\UA0C7;Yi Syllable Murx -\UA0C8;Yi Syllable Mur -\UA0C9;Yi Syllable Myt -\UA0CA;Yi Syllable Myx -\UA0CB;Yi Syllable My -\UA0CC;Yi Syllable Myp -\UA0CD;Yi Syllable Fit -\UA0CE;Yi Syllable Fix -\UA0CF;Yi Syllable Fi -\UA0D0;Yi Syllable Fip -\UA0D1;Yi Syllable Fat -\UA0D2;Yi Syllable Fax -\UA0D3;Yi Syllable Fa -\UA0D4;Yi Syllable Fap -\UA0D5;Yi Syllable Fox -\UA0D6;Yi Syllable Fo -\UA0D7;Yi Syllable Fop -\UA0D8;Yi Syllable Fut -\UA0D9;Yi Syllable Fux -\UA0DA;Yi Syllable Fu -\UA0DB;Yi Syllable Fup -\UA0DC;Yi Syllable Furx -\UA0DD;Yi Syllable Fur -\UA0DE;Yi Syllable Fyt -\UA0DF;Yi Syllable Fyx -\UA0E0;Yi Syllable Fy -\UA0E1;Yi Syllable Fyp -\UA0E2;Yi Syllable Vit -\UA0E3;Yi Syllable Vix -\UA0E4;Yi Syllable Vi -\UA0E5;Yi Syllable Vip -\UA0E6;Yi Syllable Viet -\UA0E7;Yi Syllable Viex -\UA0E8;Yi Syllable Vie -\UA0E9;Yi Syllable Viep -\UA0EA;Yi Syllable Vat -\UA0EB;Yi Syllable Vax -\UA0EC;Yi Syllable Va -\UA0ED;Yi Syllable Vap -\UA0EE;Yi Syllable Vot -\UA0EF;Yi Syllable Vox -\UA0F0;Yi Syllable Vo -\UA0F1;Yi Syllable Vop -\UA0F2;Yi Syllable Vex -\UA0F3;Yi Syllable Vep -\UA0F4;Yi Syllable Vut -\UA0F5;Yi Syllable Vux -\UA0F6;Yi Syllable Vu -\UA0F7;Yi Syllable Vup -\UA0F8;Yi Syllable Vurx -\UA0F9;Yi Syllable Vur -\UA0FA;Yi Syllable Vyt -\UA0FB;Yi Syllable Vyx -\UA0FC;Yi Syllable Vy -\UA0FD;Yi Syllable Vyp -\UA0FE;Yi Syllable Vyrx -\UA0FF;Yi Syllable Vyr -\UA100;Yi Syllable Dit -\UA101;Yi Syllable Dix -\UA102;Yi Syllable Di -\UA103;Yi Syllable Dip -\UA104;Yi Syllable Diex -\UA105;Yi Syllable Die -\UA106;Yi Syllable Diep -\UA107;Yi Syllable Dat -\UA108;Yi Syllable Dax -\UA109;Yi Syllable Da -\UA10A;Yi Syllable Dap -\UA10B;Yi Syllable Duox -\UA10C;Yi Syllable Duo -\UA10D;Yi Syllable Dot -\UA10E;Yi Syllable Dox -\UA10F;Yi Syllable Do -\UA110;Yi Syllable Dop -\UA111;Yi Syllable Dex -\UA112;Yi Syllable De -\UA113;Yi Syllable Dep -\UA114;Yi Syllable Dut -\UA115;Yi Syllable Dux -\UA116;Yi Syllable Du -\UA117;Yi Syllable Dup -\UA118;Yi Syllable Durx -\UA119;Yi Syllable Dur -\UA11A;Yi Syllable Tit -\UA11B;Yi Syllable Tix -\UA11C;Yi Syllable Ti -\UA11D;Yi Syllable Tip -\UA11E;Yi Syllable Tiex -\UA11F;Yi Syllable Tie -\UA120;Yi Syllable Tiep -\UA121;Yi Syllable Tat -\UA122;Yi Syllable Tax -\UA123;Yi Syllable Ta -\UA124;Yi Syllable Tap -\UA125;Yi Syllable Tuot -\UA126;Yi Syllable Tuox -\UA127;Yi Syllable Tuo -\UA128;Yi Syllable Tuop -\UA129;Yi Syllable Tot -\UA12A;Yi Syllable Tox -\UA12B;Yi Syllable To -\UA12C;Yi Syllable Top -\UA12D;Yi Syllable Tex -\UA12E;Yi Syllable Te -\UA12F;Yi Syllable Tep -\UA130;Yi Syllable Tut -\UA131;Yi Syllable Tux -\UA132;Yi Syllable Tu -\UA133;Yi Syllable Tup -\UA134;Yi Syllable Turx -\UA135;Yi Syllable Tur -\UA136;Yi Syllable Ddit -\UA137;Yi Syllable Ddix -\UA138;Yi Syllable Ddi -\UA139;Yi Syllable Ddip -\UA13A;Yi Syllable Ddiex -\UA13B;Yi Syllable Ddie -\UA13C;Yi Syllable Ddiep -\UA13D;Yi Syllable Ddat -\UA13E;Yi Syllable Ddax -\UA13F;Yi Syllable Dda -\UA140;Yi Syllable Ddap -\UA141;Yi Syllable Dduox -\UA142;Yi Syllable Dduo -\UA143;Yi Syllable Dduop -\UA144;Yi Syllable Ddot -\UA145;Yi Syllable Ddox -\UA146;Yi Syllable Ddo -\UA147;Yi Syllable Ddop -\UA148;Yi Syllable Ddex -\UA149;Yi Syllable Dde -\UA14A;Yi Syllable Ddep -\UA14B;Yi Syllable Ddut -\UA14C;Yi Syllable Ddux -\UA14D;Yi Syllable Ddu -\UA14E;Yi Syllable Ddup -\UA14F;Yi Syllable Ddurx -\UA150;Yi Syllable Ddur -\UA151;Yi Syllable Ndit -\UA152;Yi Syllable Ndix -\UA153;Yi Syllable Ndi -\UA154;Yi Syllable Ndip -\UA155;Yi Syllable Ndiex -\UA156;Yi Syllable Ndie -\UA157;Yi Syllable Ndat -\UA158;Yi Syllable Ndax -\UA159;Yi Syllable Nda -\UA15A;Yi Syllable Ndap -\UA15B;Yi Syllable Ndot -\UA15C;Yi Syllable Ndox -\UA15D;Yi Syllable Ndo -\UA15E;Yi Syllable Ndop -\UA15F;Yi Syllable Ndex -\UA160;Yi Syllable Nde -\UA161;Yi Syllable Ndep -\UA162;Yi Syllable Ndut -\UA163;Yi Syllable Ndux -\UA164;Yi Syllable Ndu -\UA165;Yi Syllable Ndup -\UA166;Yi Syllable Ndurx -\UA167;Yi Syllable Ndur -\UA168;Yi Syllable Hnit -\UA169;Yi Syllable Hnix -\UA16A;Yi Syllable Hni -\UA16B;Yi Syllable Hnip -\UA16C;Yi Syllable Hniet -\UA16D;Yi Syllable Hniex -\UA16E;Yi Syllable Hnie -\UA16F;Yi Syllable Hniep -\UA170;Yi Syllable Hnat -\UA171;Yi Syllable Hnax -\UA172;Yi Syllable Hna -\UA173;Yi Syllable Hnap -\UA174;Yi Syllable Hnuox -\UA175;Yi Syllable Hnuo -\UA176;Yi Syllable Hnot -\UA177;Yi Syllable Hnox -\UA178;Yi Syllable Hnop -\UA179;Yi Syllable Hnex -\UA17A;Yi Syllable Hne -\UA17B;Yi Syllable Hnep -\UA17C;Yi Syllable Hnut -\UA17D;Yi Syllable Nit -\UA17E;Yi Syllable Nix -\UA17F;Yi Syllable Ni -\UA180;Yi Syllable Nip -\UA181;Yi Syllable Niex -\UA182;Yi Syllable Nie -\UA183;Yi Syllable Niep -\UA184;Yi Syllable Nax -\UA185;Yi Syllable Na -\UA186;Yi Syllable Nap -\UA187;Yi Syllable Nuox -\UA188;Yi Syllable Nuo -\UA189;Yi Syllable Nuop -\UA18A;Yi Syllable Not -\UA18B;Yi Syllable Nox -\UA18C;Yi Syllable No -\UA18D;Yi Syllable Nop -\UA18E;Yi Syllable Nex -\UA18F;Yi Syllable Ne -\UA190;Yi Syllable Nep -\UA191;Yi Syllable Nut -\UA192;Yi Syllable Nux -\UA193;Yi Syllable Nu -\UA194;Yi Syllable Nup -\UA195;Yi Syllable Nurx -\UA196;Yi Syllable Nur -\UA197;Yi Syllable Hlit -\UA198;Yi Syllable Hlix -\UA199;Yi Syllable Hli -\UA19A;Yi Syllable Hlip -\UA19B;Yi Syllable Hliex -\UA19C;Yi Syllable Hlie -\UA19D;Yi Syllable Hliep -\UA19E;Yi Syllable Hlat -\UA19F;Yi Syllable Hlax -\UA1A0;Yi Syllable Hla -\UA1A1;Yi Syllable Hlap -\UA1A2;Yi Syllable Hluox -\UA1A3;Yi Syllable Hluo -\UA1A4;Yi Syllable Hluop -\UA1A5;Yi Syllable Hlox -\UA1A6;Yi Syllable Hlo -\UA1A7;Yi Syllable Hlop -\UA1A8;Yi Syllable Hlex -\UA1A9;Yi Syllable Hle -\UA1AA;Yi Syllable Hlep -\UA1AB;Yi Syllable Hlut -\UA1AC;Yi Syllable Hlux -\UA1AD;Yi Syllable Hlu -\UA1AE;Yi Syllable Hlup -\UA1AF;Yi Syllable Hlurx -\UA1B0;Yi Syllable Hlur -\UA1B1;Yi Syllable Hlyt -\UA1B2;Yi Syllable Hlyx -\UA1B3;Yi Syllable Hly -\UA1B4;Yi Syllable Hlyp -\UA1B5;Yi Syllable Hlyrx -\UA1B6;Yi Syllable Hlyr -\UA1B7;Yi Syllable Lit -\UA1B8;Yi Syllable Lix -\UA1B9;Yi Syllable Li -\UA1BA;Yi Syllable Lip -\UA1BB;Yi Syllable Liet -\UA1BC;Yi Syllable Liex -\UA1BD;Yi Syllable Lie -\UA1BE;Yi Syllable Liep -\UA1BF;Yi Syllable Lat -\UA1C0;Yi Syllable Lax -\UA1C1;Yi Syllable La -\UA1C2;Yi Syllable Lap -\UA1C3;Yi Syllable Luot -\UA1C4;Yi Syllable Luox -\UA1C5;Yi Syllable Luo -\UA1C6;Yi Syllable Luop -\UA1C7;Yi Syllable Lot -\UA1C8;Yi Syllable Lox -\UA1C9;Yi Syllable Lo -\UA1CA;Yi Syllable Lop -\UA1CB;Yi Syllable Lex -\UA1CC;Yi Syllable Le -\UA1CD;Yi Syllable Lep -\UA1CE;Yi Syllable Lut -\UA1CF;Yi Syllable Lux -\UA1D0;Yi Syllable Lu -\UA1D1;Yi Syllable Lup -\UA1D2;Yi Syllable Lurx -\UA1D3;Yi Syllable Lur -\UA1D4;Yi Syllable Lyt -\UA1D5;Yi Syllable Lyx -\UA1D6;Yi Syllable Ly -\UA1D7;Yi Syllable Lyp -\UA1D8;Yi Syllable Lyrx -\UA1D9;Yi Syllable Lyr -\UA1DA;Yi Syllable Git -\UA1DB;Yi Syllable Gix -\UA1DC;Yi Syllable Gi -\UA1DD;Yi Syllable Gip -\UA1DE;Yi Syllable Giet -\UA1DF;Yi Syllable Giex -\UA1E0;Yi Syllable Gie -\UA1E1;Yi Syllable Giep -\UA1E2;Yi Syllable Gat -\UA1E3;Yi Syllable Gax -\UA1E4;Yi Syllable Ga -\UA1E5;Yi Syllable Gap -\UA1E6;Yi Syllable Guot -\UA1E7;Yi Syllable Guox -\UA1E8;Yi Syllable Guo -\UA1E9;Yi Syllable Guop -\UA1EA;Yi Syllable Got -\UA1EB;Yi Syllable Gox -\UA1EC;Yi Syllable Go -\UA1ED;Yi Syllable Gop -\UA1EE;Yi Syllable Get -\UA1EF;Yi Syllable Gex -\UA1F0;Yi Syllable Ge -\UA1F1;Yi Syllable Gep -\UA1F2;Yi Syllable Gut -\UA1F3;Yi Syllable Gux -\UA1F4;Yi Syllable Gu -\UA1F5;Yi Syllable Gup -\UA1F6;Yi Syllable Gurx -\UA1F7;Yi Syllable Gur -\UA1F8;Yi Syllable Kit -\UA1F9;Yi Syllable Kix -\UA1FA;Yi Syllable Ki -\UA1FB;Yi Syllable Kip -\UA1FC;Yi Syllable Kiex -\UA1FD;Yi Syllable Kie -\UA1FE;Yi Syllable Kiep -\UA1FF;Yi Syllable Kat -\UA200;Yi Syllable Kax -\UA201;Yi Syllable Ka -\UA202;Yi Syllable Kap -\UA203;Yi Syllable Kuox -\UA204;Yi Syllable Kuo -\UA205;Yi Syllable Kuop -\UA206;Yi Syllable Kot -\UA207;Yi Syllable Kox -\UA208;Yi Syllable Ko -\UA209;Yi Syllable Kop -\UA20A;Yi Syllable Ket -\UA20B;Yi Syllable Kex -\UA20C;Yi Syllable Ke -\UA20D;Yi Syllable Kep -\UA20E;Yi Syllable Kut -\UA20F;Yi Syllable Kux -\UA210;Yi Syllable Ku -\UA211;Yi Syllable Kup -\UA212;Yi Syllable Kurx -\UA213;Yi Syllable Kur -\UA214;Yi Syllable Ggit -\UA215;Yi Syllable Ggix -\UA216;Yi Syllable Ggi -\UA217;Yi Syllable Ggiex -\UA218;Yi Syllable Ggie -\UA219;Yi Syllable Ggiep -\UA21A;Yi Syllable Ggat -\UA21B;Yi Syllable Ggax -\UA21C;Yi Syllable Gga -\UA21D;Yi Syllable Ggap -\UA21E;Yi Syllable Gguot -\UA21F;Yi Syllable Gguox -\UA220;Yi Syllable Gguo -\UA221;Yi Syllable Gguop -\UA222;Yi Syllable Ggot -\UA223;Yi Syllable Ggox -\UA224;Yi Syllable Ggo -\UA225;Yi Syllable Ggop -\UA226;Yi Syllable Gget -\UA227;Yi Syllable Ggex -\UA228;Yi Syllable Gge -\UA229;Yi Syllable Ggep -\UA22A;Yi Syllable Ggut -\UA22B;Yi Syllable Ggux -\UA22C;Yi Syllable Ggu -\UA22D;Yi Syllable Ggup -\UA22E;Yi Syllable Ggurx -\UA22F;Yi Syllable Ggur -\UA230;Yi Syllable Mgiex -\UA231;Yi Syllable Mgie -\UA232;Yi Syllable Mgat -\UA233;Yi Syllable Mgax -\UA234;Yi Syllable Mga -\UA235;Yi Syllable Mgap -\UA236;Yi Syllable Mguox -\UA237;Yi Syllable Mguo -\UA238;Yi Syllable Mguop -\UA239;Yi Syllable Mgot -\UA23A;Yi Syllable Mgox -\UA23B;Yi Syllable Mgo -\UA23C;Yi Syllable Mgop -\UA23D;Yi Syllable Mgex -\UA23E;Yi Syllable Mge -\UA23F;Yi Syllable Mgep -\UA240;Yi Syllable Mgut -\UA241;Yi Syllable Mgux -\UA242;Yi Syllable Mgu -\UA243;Yi Syllable Mgup -\UA244;Yi Syllable Mgurx -\UA245;Yi Syllable Mgur -\UA246;Yi Syllable Hxit -\UA247;Yi Syllable Hxix -\UA248;Yi Syllable Hxi -\UA249;Yi Syllable Hxip -\UA24A;Yi Syllable Hxiet -\UA24B;Yi Syllable Hxiex -\UA24C;Yi Syllable Hxie -\UA24D;Yi Syllable Hxiep -\UA24E;Yi Syllable Hxat -\UA24F;Yi Syllable Hxax -\UA250;Yi Syllable Hxa -\UA251;Yi Syllable Hxap -\UA252;Yi Syllable Hxuot -\UA253;Yi Syllable Hxuox -\UA254;Yi Syllable Hxuo -\UA255;Yi Syllable Hxuop -\UA256;Yi Syllable Hxot -\UA257;Yi Syllable Hxox -\UA258;Yi Syllable Hxo -\UA259;Yi Syllable Hxop -\UA25A;Yi Syllable Hxex -\UA25B;Yi Syllable Hxe -\UA25C;Yi Syllable Hxep -\UA25D;Yi Syllable Ngiex -\UA25E;Yi Syllable Ngie -\UA25F;Yi Syllable Ngiep -\UA260;Yi Syllable Ngat -\UA261;Yi Syllable Ngax -\UA262;Yi Syllable Nga -\UA263;Yi Syllable Ngap -\UA264;Yi Syllable Nguot -\UA265;Yi Syllable Nguox -\UA266;Yi Syllable Nguo -\UA267;Yi Syllable Ngot -\UA268;Yi Syllable Ngox -\UA269;Yi Syllable Ngo -\UA26A;Yi Syllable Ngop -\UA26B;Yi Syllable Ngex -\UA26C;Yi Syllable Nge -\UA26D;Yi Syllable Ngep -\UA26E;Yi Syllable Hit -\UA26F;Yi Syllable Hiex -\UA270;Yi Syllable Hie -\UA271;Yi Syllable Hat -\UA272;Yi Syllable Hax -\UA273;Yi Syllable Ha -\UA274;Yi Syllable Hap -\UA275;Yi Syllable Huot -\UA276;Yi Syllable Huox -\UA277;Yi Syllable Huo -\UA278;Yi Syllable Huop -\UA279;Yi Syllable Hot -\UA27A;Yi Syllable Hox -\UA27B;Yi Syllable Ho -\UA27C;Yi Syllable Hop -\UA27D;Yi Syllable Hex -\UA27E;Yi Syllable He -\UA27F;Yi Syllable Hep -\UA280;Yi Syllable Wat -\UA281;Yi Syllable Wax -\UA282;Yi Syllable Wa -\UA283;Yi Syllable Wap -\UA284;Yi Syllable Wuox -\UA285;Yi Syllable Wuo -\UA286;Yi Syllable Wuop -\UA287;Yi Syllable Wox -\UA288;Yi Syllable Wo -\UA289;Yi Syllable Wop -\UA28A;Yi Syllable Wex -\UA28B;Yi Syllable We -\UA28C;Yi Syllable Wep -\UA28D;Yi Syllable Zit -\UA28E;Yi Syllable Zix -\UA28F;Yi Syllable Zi -\UA290;Yi Syllable Zip -\UA291;Yi Syllable Ziex -\UA292;Yi Syllable Zie -\UA293;Yi Syllable Ziep -\UA294;Yi Syllable Zat -\UA295;Yi Syllable Zax -\UA296;Yi Syllable Za -\UA297;Yi Syllable Zap -\UA298;Yi Syllable Zuox -\UA299;Yi Syllable Zuo -\UA29A;Yi Syllable Zuop -\UA29B;Yi Syllable Zot -\UA29C;Yi Syllable Zox -\UA29D;Yi Syllable Zo -\UA29E;Yi Syllable Zop -\UA29F;Yi Syllable Zex -\UA2A0;Yi Syllable Ze -\UA2A1;Yi Syllable Zep -\UA2A2;Yi Syllable Zut -\UA2A3;Yi Syllable Zux -\UA2A4;Yi Syllable Zu -\UA2A5;Yi Syllable Zup -\UA2A6;Yi Syllable Zurx -\UA2A7;Yi Syllable Zur -\UA2A8;Yi Syllable Zyt -\UA2A9;Yi Syllable Zyx -\UA2AA;Yi Syllable Zy -\UA2AB;Yi Syllable Zyp -\UA2AC;Yi Syllable Zyrx -\UA2AD;Yi Syllable Zyr -\UA2AE;Yi Syllable Cit -\UA2AF;Yi Syllable Cix -\UA2B0;Yi Syllable Ci -\UA2B1;Yi Syllable Cip -\UA2B2;Yi Syllable Ciet -\UA2B3;Yi Syllable Ciex -\UA2B4;Yi Syllable Cie -\UA2B5;Yi Syllable Ciep -\UA2B6;Yi Syllable Cat -\UA2B7;Yi Syllable Cax -\UA2B8;Yi Syllable Ca -\UA2B9;Yi Syllable Cap -\UA2BA;Yi Syllable Cuox -\UA2BB;Yi Syllable Cuo -\UA2BC;Yi Syllable Cuop -\UA2BD;Yi Syllable Cot -\UA2BE;Yi Syllable Cox -\UA2BF;Yi Syllable Co -\UA2C0;Yi Syllable Cop -\UA2C1;Yi Syllable Cex -\UA2C2;Yi Syllable Ce -\UA2C3;Yi Syllable Cep -\UA2C4;Yi Syllable Cut -\UA2C5;Yi Syllable Cux -\UA2C6;Yi Syllable Cu -\UA2C7;Yi Syllable Cup -\UA2C8;Yi Syllable Curx -\UA2C9;Yi Syllable Cur -\UA2CA;Yi Syllable Cyt -\UA2CB;Yi Syllable Cyx -\UA2CC;Yi Syllable Cy -\UA2CD;Yi Syllable Cyp -\UA2CE;Yi Syllable Cyrx -\UA2CF;Yi Syllable Cyr -\UA2D0;Yi Syllable Zzit -\UA2D1;Yi Syllable Zzix -\UA2D2;Yi Syllable Zzi -\UA2D3;Yi Syllable Zzip -\UA2D4;Yi Syllable Zziet -\UA2D5;Yi Syllable Zziex -\UA2D6;Yi Syllable Zzie -\UA2D7;Yi Syllable Zziep -\UA2D8;Yi Syllable Zzat -\UA2D9;Yi Syllable Zzax -\UA2DA;Yi Syllable Zza -\UA2DB;Yi Syllable Zzap -\UA2DC;Yi Syllable Zzox -\UA2DD;Yi Syllable Zzo -\UA2DE;Yi Syllable Zzop -\UA2DF;Yi Syllable Zzex -\UA2E0;Yi Syllable Zze -\UA2E1;Yi Syllable Zzep -\UA2E2;Yi Syllable Zzux -\UA2E3;Yi Syllable Zzu -\UA2E4;Yi Syllable Zzup -\UA2E5;Yi Syllable Zzurx -\UA2E6;Yi Syllable Zzur -\UA2E7;Yi Syllable Zzyt -\UA2E8;Yi Syllable Zzyx -\UA2E9;Yi Syllable Zzy -\UA2EA;Yi Syllable Zzyp -\UA2EB;Yi Syllable Zzyrx -\UA2EC;Yi Syllable Zzyr -\UA2ED;Yi Syllable Nzit -\UA2EE;Yi Syllable Nzix -\UA2EF;Yi Syllable Nzi -\UA2F0;Yi Syllable Nzip -\UA2F1;Yi Syllable Nziex -\UA2F2;Yi Syllable Nzie -\UA2F3;Yi Syllable Nziep -\UA2F4;Yi Syllable Nzat -\UA2F5;Yi Syllable Nzax -\UA2F6;Yi Syllable Nza -\UA2F7;Yi Syllable Nzap -\UA2F8;Yi Syllable Nzuox -\UA2F9;Yi Syllable Nzuo -\UA2FA;Yi Syllable Nzox -\UA2FB;Yi Syllable Nzop -\UA2FC;Yi Syllable Nzex -\UA2FD;Yi Syllable Nze -\UA2FE;Yi Syllable Nzux -\UA2FF;Yi Syllable Nzu -\UA300;Yi Syllable Nzup -\UA301;Yi Syllable Nzurx -\UA302;Yi Syllable Nzur -\UA303;Yi Syllable Nzyt -\UA304;Yi Syllable Nzyx -\UA305;Yi Syllable Nzy -\UA306;Yi Syllable Nzyp -\UA307;Yi Syllable Nzyrx -\UA308;Yi Syllable Nzyr -\UA309;Yi Syllable Sit -\UA30A;Yi Syllable Six -\UA30B;Yi Syllable Si -\UA30C;Yi Syllable Sip -\UA30D;Yi Syllable Siex -\UA30E;Yi Syllable Sie -\UA30F;Yi Syllable Siep -\UA310;Yi Syllable Sat -\UA311;Yi Syllable Sax -\UA312;Yi Syllable Sa -\UA313;Yi Syllable Sap -\UA314;Yi Syllable Suox -\UA315;Yi Syllable Suo -\UA316;Yi Syllable Suop -\UA317;Yi Syllable Sot -\UA318;Yi Syllable Sox -\UA319;Yi Syllable So -\UA31A;Yi Syllable Sop -\UA31B;Yi Syllable Sex -\UA31C;Yi Syllable Se -\UA31D;Yi Syllable Sep -\UA31E;Yi Syllable Sut -\UA31F;Yi Syllable Sux -\UA320;Yi Syllable Su -\UA321;Yi Syllable Sup -\UA322;Yi Syllable Surx -\UA323;Yi Syllable Sur -\UA324;Yi Syllable Syt -\UA325;Yi Syllable Syx -\UA326;Yi Syllable Sy -\UA327;Yi Syllable Syp -\UA328;Yi Syllable Syrx -\UA329;Yi Syllable Syr -\UA32A;Yi Syllable Ssit -\UA32B;Yi Syllable Ssix -\UA32C;Yi Syllable Ssi -\UA32D;Yi Syllable Ssip -\UA32E;Yi Syllable Ssiex -\UA32F;Yi Syllable Ssie -\UA330;Yi Syllable Ssiep -\UA331;Yi Syllable Ssat -\UA332;Yi Syllable Ssax -\UA333;Yi Syllable Ssa -\UA334;Yi Syllable Ssap -\UA335;Yi Syllable Ssot -\UA336;Yi Syllable Ssox -\UA337;Yi Syllable Sso -\UA338;Yi Syllable Ssop -\UA339;Yi Syllable Ssex -\UA33A;Yi Syllable Sse -\UA33B;Yi Syllable Ssep -\UA33C;Yi Syllable Ssut -\UA33D;Yi Syllable Ssux -\UA33E;Yi Syllable Ssu -\UA33F;Yi Syllable Ssup -\UA340;Yi Syllable Ssyt -\UA341;Yi Syllable Ssyx -\UA342;Yi Syllable Ssy -\UA343;Yi Syllable Ssyp -\UA344;Yi Syllable Ssyrx -\UA345;Yi Syllable Ssyr -\UA346;Yi Syllable Zhat -\UA347;Yi Syllable Zhax -\UA348;Yi Syllable Zha -\UA349;Yi Syllable Zhap -\UA34A;Yi Syllable Zhuox -\UA34B;Yi Syllable Zhuo -\UA34C;Yi Syllable Zhuop -\UA34D;Yi Syllable Zhot -\UA34E;Yi Syllable Zhox -\UA34F;Yi Syllable Zho -\UA350;Yi Syllable Zhop -\UA351;Yi Syllable Zhet -\UA352;Yi Syllable Zhex -\UA353;Yi Syllable Zhe -\UA354;Yi Syllable Zhep -\UA355;Yi Syllable Zhut -\UA356;Yi Syllable Zhux -\UA357;Yi Syllable Zhu -\UA358;Yi Syllable Zhup -\UA359;Yi Syllable Zhurx -\UA35A;Yi Syllable Zhur -\UA35B;Yi Syllable Zhyt -\UA35C;Yi Syllable Zhyx -\UA35D;Yi Syllable Zhy -\UA35E;Yi Syllable Zhyp -\UA35F;Yi Syllable Zhyrx -\UA360;Yi Syllable Zhyr -\UA361;Yi Syllable Chat -\UA362;Yi Syllable Chax -\UA363;Yi Syllable Cha -\UA364;Yi Syllable Chap -\UA365;Yi Syllable Chuot -\UA366;Yi Syllable Chuox -\UA367;Yi Syllable Chuo -\UA368;Yi Syllable Chuop -\UA369;Yi Syllable Chot -\UA36A;Yi Syllable Chox -\UA36B;Yi Syllable Cho -\UA36C;Yi Syllable Chop -\UA36D;Yi Syllable Chet -\UA36E;Yi Syllable Chex -\UA36F;Yi Syllable Che -\UA370;Yi Syllable Chep -\UA371;Yi Syllable Chux -\UA372;Yi Syllable Chu -\UA373;Yi Syllable Chup -\UA374;Yi Syllable Churx -\UA375;Yi Syllable Chur -\UA376;Yi Syllable Chyt -\UA377;Yi Syllable Chyx -\UA378;Yi Syllable Chy -\UA379;Yi Syllable Chyp -\UA37A;Yi Syllable Chyrx -\UA37B;Yi Syllable Chyr -\UA37C;Yi Syllable Rrax -\UA37D;Yi Syllable Rra -\UA37E;Yi Syllable Rruox -\UA37F;Yi Syllable Rruo -\UA380;Yi Syllable Rrot -\UA381;Yi Syllable Rrox -\UA382;Yi Syllable Rro -\UA383;Yi Syllable Rrop -\UA384;Yi Syllable Rret -\UA385;Yi Syllable Rrex -\UA386;Yi Syllable Rre -\UA387;Yi Syllable Rrep -\UA388;Yi Syllable Rrut -\UA389;Yi Syllable Rrux -\UA38A;Yi Syllable Rru -\UA38B;Yi Syllable Rrup -\UA38C;Yi Syllable Rrurx -\UA38D;Yi Syllable Rrur -\UA38E;Yi Syllable Rryt -\UA38F;Yi Syllable Rryx -\UA390;Yi Syllable Rry -\UA391;Yi Syllable Rryp -\UA392;Yi Syllable Rryrx -\UA393;Yi Syllable Rryr -\UA394;Yi Syllable Nrat -\UA395;Yi Syllable Nrax -\UA396;Yi Syllable Nra -\UA397;Yi Syllable Nrap -\UA398;Yi Syllable Nrox -\UA399;Yi Syllable Nro -\UA39A;Yi Syllable Nrop -\UA39B;Yi Syllable Nret -\UA39C;Yi Syllable Nrex -\UA39D;Yi Syllable Nre -\UA39E;Yi Syllable Nrep -\UA39F;Yi Syllable Nrut -\UA3A0;Yi Syllable Nrux -\UA3A1;Yi Syllable Nru -\UA3A2;Yi Syllable Nrup -\UA3A3;Yi Syllable Nrurx -\UA3A4;Yi Syllable Nrur -\UA3A5;Yi Syllable Nryt -\UA3A6;Yi Syllable Nryx -\UA3A7;Yi Syllable Nry -\UA3A8;Yi Syllable Nryp -\UA3A9;Yi Syllable Nryrx -\UA3AA;Yi Syllable Nryr -\UA3AB;Yi Syllable Shat -\UA3AC;Yi Syllable Shax -\UA3AD;Yi Syllable Sha -\UA3AE;Yi Syllable Shap -\UA3AF;Yi Syllable Shuox -\UA3B0;Yi Syllable Shuo -\UA3B1;Yi Syllable Shuop -\UA3B2;Yi Syllable Shot -\UA3B3;Yi Syllable Shox -\UA3B4;Yi Syllable Sho -\UA3B5;Yi Syllable Shop -\UA3B6;Yi Syllable Shet -\UA3B7;Yi Syllable Shex -\UA3B8;Yi Syllable She -\UA3B9;Yi Syllable Shep -\UA3BA;Yi Syllable Shut -\UA3BB;Yi Syllable Shux -\UA3BC;Yi Syllable Shu -\UA3BD;Yi Syllable Shup -\UA3BE;Yi Syllable Shurx -\UA3BF;Yi Syllable Shur -\UA3C0;Yi Syllable Shyt -\UA3C1;Yi Syllable Shyx -\UA3C2;Yi Syllable Shy -\UA3C3;Yi Syllable Shyp -\UA3C4;Yi Syllable Shyrx -\UA3C5;Yi Syllable Shyr -\UA3C6;Yi Syllable Rat -\UA3C7;Yi Syllable Rax -\UA3C8;Yi Syllable Ra -\UA3C9;Yi Syllable Rap -\UA3CA;Yi Syllable Ruox -\UA3CB;Yi Syllable Ruo -\UA3CC;Yi Syllable Ruop -\UA3CD;Yi Syllable Rot -\UA3CE;Yi Syllable Rox -\UA3CF;Yi Syllable Ro -\UA3D0;Yi Syllable Rop -\UA3D1;Yi Syllable Rex -\UA3D2;Yi Syllable Re -\UA3D3;Yi Syllable Rep -\UA3D4;Yi Syllable Rut -\UA3D5;Yi Syllable Rux -\UA3D6;Yi Syllable Ru -\UA3D7;Yi Syllable Rup -\UA3D8;Yi Syllable Rurx -\UA3D9;Yi Syllable Rur -\UA3DA;Yi Syllable Ryt -\UA3DB;Yi Syllable Ryx -\UA3DC;Yi Syllable Ry -\UA3DD;Yi Syllable Ryp -\UA3DE;Yi Syllable Ryrx -\UA3DF;Yi Syllable Ryr -\UA3E0;Yi Syllable Jit -\UA3E1;Yi Syllable Jix -\UA3E2;Yi Syllable Ji -\UA3E3;Yi Syllable Jip -\UA3E4;Yi Syllable Jiet -\UA3E5;Yi Syllable Jiex -\UA3E6;Yi Syllable Jie -\UA3E7;Yi Syllable Jiep -\UA3E8;Yi Syllable Juot -\UA3E9;Yi Syllable Juox -\UA3EA;Yi Syllable Juo -\UA3EB;Yi Syllable Juop -\UA3EC;Yi Syllable Jot -\UA3ED;Yi Syllable Jox -\UA3EE;Yi Syllable Jo -\UA3EF;Yi Syllable Jop -\UA3F0;Yi Syllable Jut -\UA3F1;Yi Syllable Jux -\UA3F2;Yi Syllable Ju -\UA3F3;Yi Syllable Jup -\UA3F4;Yi Syllable Jurx -\UA3F5;Yi Syllable Jur -\UA3F6;Yi Syllable Jyt -\UA3F7;Yi Syllable Jyx -\UA3F8;Yi Syllable Jy -\UA3F9;Yi Syllable Jyp -\UA3FA;Yi Syllable Jyrx -\UA3FB;Yi Syllable Jyr -\UA3FC;Yi Syllable Qit -\UA3FD;Yi Syllable Qix -\UA3FE;Yi Syllable Qi -\UA3FF;Yi Syllable Qip -\UA400;Yi Syllable Qiet -\UA401;Yi Syllable Qiex -\UA402;Yi Syllable Qie -\UA403;Yi Syllable Qiep -\UA404;Yi Syllable Quot -\UA405;Yi Syllable Quox -\UA406;Yi Syllable Quo -\UA407;Yi Syllable Quop -\UA408;Yi Syllable Qot -\UA409;Yi Syllable Qox -\UA40A;Yi Syllable Qo -\UA40B;Yi Syllable Qop -\UA40C;Yi Syllable Qut -\UA40D;Yi Syllable Qux -\UA40E;Yi Syllable Qu -\UA40F;Yi Syllable Qup -\UA410;Yi Syllable Qurx -\UA411;Yi Syllable Qur -\UA412;Yi Syllable Qyt -\UA413;Yi Syllable Qyx -\UA414;Yi Syllable Qy -\UA415;Yi Syllable Qyp -\UA416;Yi Syllable Qyrx -\UA417;Yi Syllable Qyr -\UA418;Yi Syllable Jjit -\UA419;Yi Syllable Jjix -\UA41A;Yi Syllable Jji -\UA41B;Yi Syllable Jjip -\UA41C;Yi Syllable Jjiet -\UA41D;Yi Syllable Jjiex -\UA41E;Yi Syllable Jjie -\UA41F;Yi Syllable Jjiep -\UA420;Yi Syllable Jjuox -\UA421;Yi Syllable Jjuo -\UA422;Yi Syllable Jjuop -\UA423;Yi Syllable Jjot -\UA424;Yi Syllable Jjox -\UA425;Yi Syllable Jjo -\UA426;Yi Syllable Jjop -\UA427;Yi Syllable Jjut -\UA428;Yi Syllable Jjux -\UA429;Yi Syllable Jju -\UA42A;Yi Syllable Jjup -\UA42B;Yi Syllable Jjurx -\UA42C;Yi Syllable Jjur -\UA42D;Yi Syllable Jjyt -\UA42E;Yi Syllable Jjyx -\UA42F;Yi Syllable Jjy -\UA430;Yi Syllable Jjyp -\UA431;Yi Syllable Njit -\UA432;Yi Syllable Njix -\UA433;Yi Syllable Nji -\UA434;Yi Syllable Njip -\UA435;Yi Syllable Njiet -\UA436;Yi Syllable Njiex -\UA437;Yi Syllable Njie -\UA438;Yi Syllable Njiep -\UA439;Yi Syllable Njuox -\UA43A;Yi Syllable Njuo -\UA43B;Yi Syllable Njot -\UA43C;Yi Syllable Njox -\UA43D;Yi Syllable Njo -\UA43E;Yi Syllable Njop -\UA43F;Yi Syllable Njux -\UA440;Yi Syllable Nju -\UA441;Yi Syllable Njup -\UA442;Yi Syllable Njurx -\UA443;Yi Syllable Njur -\UA444;Yi Syllable Njyt -\UA445;Yi Syllable Njyx -\UA446;Yi Syllable Njy -\UA447;Yi Syllable Njyp -\UA448;Yi Syllable Njyrx -\UA449;Yi Syllable Njyr -\UA44A;Yi Syllable Nyit -\UA44B;Yi Syllable Nyix -\UA44C;Yi Syllable Nyi -\UA44D;Yi Syllable Nyip -\UA44E;Yi Syllable Nyiet -\UA44F;Yi Syllable Nyiex -\UA450;Yi Syllable Nyie -\UA451;Yi Syllable Nyiep -\UA452;Yi Syllable Nyuox -\UA453;Yi Syllable Nyuo -\UA454;Yi Syllable Nyuop -\UA455;Yi Syllable Nyot -\UA456;Yi Syllable Nyox -\UA457;Yi Syllable Nyo -\UA458;Yi Syllable Nyop -\UA459;Yi Syllable Nyut -\UA45A;Yi Syllable Nyux -\UA45B;Yi Syllable Nyu -\UA45C;Yi Syllable Nyup -\UA45D;Yi Syllable Xit -\UA45E;Yi Syllable Xix -\UA45F;Yi Syllable Xi -\UA460;Yi Syllable Xip -\UA461;Yi Syllable Xiet -\UA462;Yi Syllable Xiex -\UA463;Yi Syllable Xie -\UA464;Yi Syllable Xiep -\UA465;Yi Syllable Xuox -\UA466;Yi Syllable Xuo -\UA467;Yi Syllable Xot -\UA468;Yi Syllable Xox -\UA469;Yi Syllable Xo -\UA46A;Yi Syllable Xop -\UA46B;Yi Syllable Xyt -\UA46C;Yi Syllable Xyx -\UA46D;Yi Syllable Xy -\UA46E;Yi Syllable Xyp -\UA46F;Yi Syllable Xyrx -\UA470;Yi Syllable Xyr -\UA471;Yi Syllable Yit -\UA472;Yi Syllable Yix -\UA473;Yi Syllable Yi -\UA474;Yi Syllable Yip -\UA475;Yi Syllable Yiet -\UA476;Yi Syllable Yiex -\UA477;Yi Syllable Yie -\UA478;Yi Syllable Yiep -\UA479;Yi Syllable Yuot -\UA47A;Yi Syllable Yuox -\UA47B;Yi Syllable Yuo -\UA47C;Yi Syllable Yuop -\UA47D;Yi Syllable Yot -\UA47E;Yi Syllable Yox -\UA47F;Yi Syllable Yo -\UA480;Yi Syllable Yop -\UA481;Yi Syllable Yut -\UA482;Yi Syllable Yux -\UA483;Yi Syllable Yu -\UA484;Yi Syllable Yup -\UA485;Yi Syllable Yurx -\UA486;Yi Syllable Yur -\UA487;Yi Syllable Yyt -\UA488;Yi Syllable Yyx -\UA489;Yi Syllable Yy -\UA48A;Yi Syllable Yyp -\UA48B;Yi Syllable Yyrx -\UA48C;Yi Syllable Yyr -\UA490;Yi Radical Qot -\UA491;Yi Radical Li -\UA492;Yi Radical Kit -\UA493;Yi Radical Nyip -\UA494;Yi Radical Cyp -\UA495;Yi Radical Ssi -\UA496;Yi Radical Ggop -\UA497;Yi Radical Gep -\UA498;Yi Radical Mi -\UA499;Yi Radical Hxit -\UA49A;Yi Radical Lyr -\UA49B;Yi Radical Bbut -\UA49C;Yi Radical Mop -\UA49D;Yi Radical Yo -\UA49E;Yi Radical Put -\UA49F;Yi Radical Hxuo -\UA4A0;Yi Radical Tat -\UA4A1;Yi Radical Ga -\UA4A2;Yi Radical Zup -\UA4A3;Yi Radical Cyt -\UA4A4;Yi Radical Ddur -\UA4A5;Yi Radical Bur -\UA4A6;Yi Radical Gguo -\UA4A7;Yi Radical Nyop -\UA4A8;Yi Radical Tu -\UA4A9;Yi Radical Op -\UA4AA;Yi Radical Jjut -\UA4AB;Yi Radical Zot -\UA4AC;Yi Radical Pyt -\UA4AD;Yi Radical Hmo -\UA4AE;Yi Radical Yit -\UA4AF;Yi Radical Vur -\UA4B0;Yi Radical Shy -\UA4B1;Yi Radical Vep -\UA4B2;Yi Radical Za -\UA4B3;Yi Radical Jo -\UA4B4;Yi Radical Nzup -\UA4B5;Yi Radical Jjy -\UA4B6;Yi Radical Got -\UA4B7;Yi Radical Jjie -\UA4B8;Yi Radical Wo -\UA4B9;Yi Radical Du -\UA4BA;Yi Radical Shur -\UA4BB;Yi Radical Lie -\UA4BC;Yi Radical Cy -\UA4BD;Yi Radical Cuop -\UA4BE;Yi Radical Cip -\UA4BF;Yi Radical Hxop -\UA4C0;Yi Radical Shat -\UA4C1;Yi Radical Zur -\UA4C2;Yi Radical Shop -\UA4C3;Yi Radical Che -\UA4C4;Yi Radical Zziet -\UA4C5;Yi Radical Nbie -\UA4C6;Yi Radical Ke -\UA4D0;Lisu Letter Ba -\UA4D1;Lisu Letter Pa -\UA4D2;Lisu Letter Pha -\UA4D3;Lisu Letter Da -\UA4D4;Lisu Letter Ta -\UA4D5;Lisu Letter Tha -\UA4D6;Lisu Letter Ga -\UA4D7;Lisu Letter Ka -\UA4D8;Lisu Letter Kha -\UA4D9;Lisu Letter Ja -\UA4DA;Lisu Letter Ca -\UA4DB;Lisu Letter Cha -\UA4DC;Lisu Letter Dza -\UA4DD;Lisu Letter Tsa -\UA4DE;Lisu Letter Tsha -\UA4DF;Lisu Letter Ma -\UA4E0;Lisu Letter Na -\UA4E1;Lisu Letter La -\UA4E2;Lisu Letter Sa -\UA4E3;Lisu Letter Zha -\UA4E4;Lisu Letter Za -\UA4E5;Lisu Letter Nga -\UA4E6;Lisu Letter Ha -\UA4E7;Lisu Letter Xa -\UA4E8;Lisu Letter Hha -\UA4E9;Lisu Letter Fa -\UA4EA;Lisu Letter Wa -\UA4EB;Lisu Letter Sha -\UA4EC;Lisu Letter Ya -\UA4ED;Lisu Letter Gha -\UA4EE;Lisu Letter A -\UA4EF;Lisu Letter Ae -\UA4F0;Lisu Letter E -\UA4F1;Lisu Letter Eu -\UA4F2;Lisu Letter I -\UA4F3;Lisu Letter O -\UA4F4;Lisu Letter U -\UA4F5;Lisu Letter Ue -\UA4F6;Lisu Letter Uh -\UA4F7;Lisu Letter Oe -\UA4F8;Lisu Letter Tone Mya Ti -\UA4F9;Lisu Letter Tone Na Po -\UA4FA;Lisu Letter Tone Mya Cya -\UA4FB;Lisu Letter Tone Mya Bo -\UA4FC;Lisu Letter Tone Mya Na -\UA4FD;Lisu Letter Tone Mya Jeu -\UA4FE;Lisu Punctuation Comma -\UA4FF;Lisu Punctuation Full Stop -\UA500;Vai Syllable Ee -\UA501;Vai Syllable Een -\UA502;Vai Syllable Hee -\UA503;Vai Syllable Wee -\UA504;Vai Syllable Ween -\UA505;Vai Syllable Pee -\UA506;Vai Syllable Bhee -\UA507;Vai Syllable Bee -\UA508;Vai Syllable Mbee -\UA509;Vai Syllable Kpee -\UA50A;Vai Syllable Mgbee -\UA50B;Vai Syllable Gbee -\UA50C;Vai Syllable Fee -\UA50D;Vai Syllable Vee -\UA50E;Vai Syllable Tee -\UA50F;Vai Syllable Thee -\UA510;Vai Syllable Dhee -\UA511;Vai Syllable Dhhee -\UA512;Vai Syllable Lee -\UA513;Vai Syllable Ree -\UA514;Vai Syllable Dee -\UA515;Vai Syllable Ndee -\UA516;Vai Syllable See -\UA517;Vai Syllable Shee -\UA518;Vai Syllable Zee -\UA519;Vai Syllable Zhee -\UA51A;Vai Syllable Cee -\UA51B;Vai Syllable Jee -\UA51C;Vai Syllable Njee -\UA51D;Vai Syllable Yee -\UA51E;Vai Syllable Kee -\UA51F;Vai Syllable Nggee -\UA520;Vai Syllable Gee -\UA521;Vai Syllable Mee -\UA522;Vai Syllable Nee -\UA523;Vai Syllable Nyee -\UA524;Vai Syllable I -\UA525;Vai Syllable In -\UA526;Vai Syllable Hi -\UA527;Vai Syllable Hin -\UA528;Vai Syllable Wi -\UA529;Vai Syllable Win -\UA52A;Vai Syllable Pi -\UA52B;Vai Syllable Bhi -\UA52C;Vai Syllable Bi -\UA52D;Vai Syllable Mbi -\UA52E;Vai Syllable Kpi -\UA52F;Vai Syllable Mgbi -\UA530;Vai Syllable Gbi -\UA531;Vai Syllable Fi -\UA532;Vai Syllable Vi -\UA533;Vai Syllable Ti -\UA534;Vai Syllable Thi -\UA535;Vai Syllable Dhi -\UA536;Vai Syllable Dhhi -\UA537;Vai Syllable Li -\UA538;Vai Syllable Ri -\UA539;Vai Syllable Di -\UA53A;Vai Syllable Ndi -\UA53B;Vai Syllable Si -\UA53C;Vai Syllable Shi -\UA53D;Vai Syllable Zi -\UA53E;Vai Syllable Zhi -\UA53F;Vai Syllable Ci -\UA540;Vai Syllable Ji -\UA541;Vai Syllable Nji -\UA542;Vai Syllable Yi -\UA543;Vai Syllable Ki -\UA544;Vai Syllable Nggi -\UA545;Vai Syllable Gi -\UA546;Vai Syllable Mi -\UA547;Vai Syllable Ni -\UA548;Vai Syllable Nyi -\UA549;Vai Syllable A -\UA54A;Vai Syllable An -\UA54B;Vai Syllable Ngan -\UA54C;Vai Syllable Ha -\UA54D;Vai Syllable Han -\UA54E;Vai Syllable Wa -\UA54F;Vai Syllable Wan -\UA550;Vai Syllable Pa -\UA551;Vai Syllable Bha -\UA552;Vai Syllable Ba -\UA553;Vai Syllable Mba -\UA554;Vai Syllable Kpa -\UA555;Vai Syllable Kpan -\UA556;Vai Syllable Mgba -\UA557;Vai Syllable Gba -\UA558;Vai Syllable Fa -\UA559;Vai Syllable Va -\UA55A;Vai Syllable Ta -\UA55B;Vai Syllable Tha -\UA55C;Vai Syllable Dha -\UA55D;Vai Syllable Dhha -\UA55E;Vai Syllable La -\UA55F;Vai Syllable Ra -\UA560;Vai Syllable Da -\UA561;Vai Syllable Nda -\UA562;Vai Syllable Sa -\UA563;Vai Syllable Sha -\UA564;Vai Syllable Za -\UA565;Vai Syllable Zha -\UA566;Vai Syllable Ca -\UA567;Vai Syllable Ja -\UA568;Vai Syllable Nja -\UA569;Vai Syllable Ya -\UA56A;Vai Syllable Ka -\UA56B;Vai Syllable Kan -\UA56C;Vai Syllable Ngga -\UA56D;Vai Syllable Ga -\UA56E;Vai Syllable Ma -\UA56F;Vai Syllable Na -\UA570;Vai Syllable Nya -\UA571;Vai Syllable Oo -\UA572;Vai Syllable Oon -\UA573;Vai Syllable Hoo -\UA574;Vai Syllable Woo -\UA575;Vai Syllable Woon -\UA576;Vai Syllable Poo -\UA577;Vai Syllable Bhoo -\UA578;Vai Syllable Boo -\UA579;Vai Syllable Mboo -\UA57A;Vai Syllable Kpoo -\UA57B;Vai Syllable Mgboo -\UA57C;Vai Syllable Gboo -\UA57D;Vai Syllable Foo -\UA57E;Vai Syllable Voo -\UA57F;Vai Syllable Too -\UA580;Vai Syllable Thoo -\UA581;Vai Syllable Dhoo -\UA582;Vai Syllable Dhhoo -\UA583;Vai Syllable Loo -\UA584;Vai Syllable Roo -\UA585;Vai Syllable Doo -\UA586;Vai Syllable Ndoo -\UA587;Vai Syllable Soo -\UA588;Vai Syllable Shoo -\UA589;Vai Syllable Zoo -\UA58A;Vai Syllable Zhoo -\UA58B;Vai Syllable Coo -\UA58C;Vai Syllable Joo -\UA58D;Vai Syllable Njoo -\UA58E;Vai Syllable Yoo -\UA58F;Vai Syllable Koo -\UA590;Vai Syllable Nggoo -\UA591;Vai Syllable Goo -\UA592;Vai Syllable Moo -\UA593;Vai Syllable Noo -\UA594;Vai Syllable Nyoo -\UA595;Vai Syllable U -\UA596;Vai Syllable Un -\UA597;Vai Syllable Hu -\UA598;Vai Syllable Hun -\UA599;Vai Syllable Wu -\UA59A;Vai Syllable Wun -\UA59B;Vai Syllable Pu -\UA59C;Vai Syllable Bhu -\UA59D;Vai Syllable Bu -\UA59E;Vai Syllable Mbu -\UA59F;Vai Syllable Kpu -\UA5A0;Vai Syllable Mgbu -\UA5A1;Vai Syllable Gbu -\UA5A2;Vai Syllable Fu -\UA5A3;Vai Syllable Vu -\UA5A4;Vai Syllable Tu -\UA5A5;Vai Syllable Thu -\UA5A6;Vai Syllable Dhu -\UA5A7;Vai Syllable Dhhu -\UA5A8;Vai Syllable Lu -\UA5A9;Vai Syllable Ru -\UA5AA;Vai Syllable Du -\UA5AB;Vai Syllable Ndu -\UA5AC;Vai Syllable Su -\UA5AD;Vai Syllable Shu -\UA5AE;Vai Syllable Zu -\UA5AF;Vai Syllable Zhu -\UA5B0;Vai Syllable Cu -\UA5B1;Vai Syllable Ju -\UA5B2;Vai Syllable Nju -\UA5B3;Vai Syllable Yu -\UA5B4;Vai Syllable Ku -\UA5B5;Vai Syllable Nggu -\UA5B6;Vai Syllable Gu -\UA5B7;Vai Syllable Mu -\UA5B8;Vai Syllable Nu -\UA5B9;Vai Syllable Nyu -\UA5BA;Vai Syllable O -\UA5BB;Vai Syllable On -\UA5BC;Vai Syllable Ngon -\UA5BD;Vai Syllable Ho -\UA5BE;Vai Syllable Hon -\UA5BF;Vai Syllable Wo -\UA5C0;Vai Syllable Won -\UA5C1;Vai Syllable Po -\UA5C2;Vai Syllable Bho -\UA5C3;Vai Syllable Bo -\UA5C4;Vai Syllable Mbo -\UA5C5;Vai Syllable Kpo -\UA5C6;Vai Syllable Mgbo -\UA5C7;Vai Syllable Gbo -\UA5C8;Vai Syllable Gbon -\UA5C9;Vai Syllable Fo -\UA5CA;Vai Syllable Vo -\UA5CB;Vai Syllable To -\UA5CC;Vai Syllable Tho -\UA5CD;Vai Syllable Dho -\UA5CE;Vai Syllable Dhho -\UA5CF;Vai Syllable Lo -\UA5D0;Vai Syllable Ro -\UA5D1;Vai Syllable Do -\UA5D2;Vai Syllable Ndo -\UA5D3;Vai Syllable So -\UA5D4;Vai Syllable Sho -\UA5D5;Vai Syllable Zo -\UA5D6;Vai Syllable Zho -\UA5D7;Vai Syllable Co -\UA5D8;Vai Syllable Jo -\UA5D9;Vai Syllable Njo -\UA5DA;Vai Syllable Yo -\UA5DB;Vai Syllable Ko -\UA5DC;Vai Syllable Nggo -\UA5DD;Vai Syllable Go -\UA5DE;Vai Syllable Mo -\UA5DF;Vai Syllable No -\UA5E0;Vai Syllable Nyo -\UA5E1;Vai Syllable E -\UA5E2;Vai Syllable En -\UA5E3;Vai Syllable Ngen -\UA5E4;Vai Syllable He -\UA5E5;Vai Syllable Hen -\UA5E6;Vai Syllable We -\UA5E7;Vai Syllable Wen -\UA5E8;Vai Syllable Pe -\UA5E9;Vai Syllable Bhe -\UA5EA;Vai Syllable Be -\UA5EB;Vai Syllable Mbe -\UA5EC;Vai Syllable Kpe -\UA5ED;Vai Syllable Kpen -\UA5EE;Vai Syllable Mgbe -\UA5EF;Vai Syllable Gbe -\UA5F0;Vai Syllable Gben -\UA5F1;Vai Syllable Fe -\UA5F2;Vai Syllable Ve -\UA5F3;Vai Syllable Te -\UA5F4;Vai Syllable The -\UA5F5;Vai Syllable Dhe -\UA5F6;Vai Syllable Dhhe -\UA5F7;Vai Syllable Le -\UA5F8;Vai Syllable Re -\UA5F9;Vai Syllable De -\UA5FA;Vai Syllable Nde -\UA5FB;Vai Syllable Se -\UA5FC;Vai Syllable She -\UA5FD;Vai Syllable Ze -\UA5FE;Vai Syllable Zhe -\UA5FF;Vai Syllable Ce -\UA600;Vai Syllable Je -\UA601;Vai Syllable Nje -\UA602;Vai Syllable Ye -\UA603;Vai Syllable Ke -\UA604;Vai Syllable Ngge -\UA605;Vai Syllable Nggen -\UA606;Vai Syllable Ge -\UA607;Vai Syllable Gen -\UA608;Vai Syllable Me -\UA609;Vai Syllable Ne -\UA60A;Vai Syllable Nye -\UA60B;Vai Syllable Ng -\UA60C;Vai Syllable Lengthener -\UA60D;Vai Comma -\UA60E;Vai Full Stop -\UA60F;Vai Question Mark -\UA610;Vai Syllable Ndole Fa -\UA611;Vai Syllable Ndole Ka -\UA612;Vai Syllable Ndole Soo -\UA613;Vai Symbol Feeng -\UA614;Vai Symbol Keeng -\UA615;Vai Symbol Ting -\UA616;Vai Symbol Nii -\UA617;Vai Symbol Bang -\UA618;Vai Symbol Faa -\UA619;Vai Symbol Taa -\UA61A;Vai Symbol Dang -\UA61B;Vai Symbol Doong -\UA61C;Vai Symbol Kung -\UA61D;Vai Symbol Tong -\UA61E;Vai Symbol Do-O -\UA61F;Vai Symbol Jong -\UA620;Vai Digit Zero -\UA621;Vai Digit One -\UA622;Vai Digit Two -\UA623;Vai Digit Three -\UA624;Vai Digit Four -\UA625;Vai Digit Five -\UA626;Vai Digit Six -\UA627;Vai Digit Seven -\UA628;Vai Digit Eight -\UA629;Vai Digit Nine -\UA62A;Vai Syllable Ndole Ma -\UA62B;Vai Syllable Ndole Do -\UA640;Cyrillic Capital Letter Zemlya -\UA641;Cyrillic Small Letter Zemlya -\UA642;Cyrillic Capital Letter Dzelo -\UA643;Cyrillic Small Letter Dzelo -\UA644;Cyrillic Capital Letter Reversed Dze -\UA645;Cyrillic Small Letter Reversed Dze -\UA646;Cyrillic Capital Letter Iota -\UA647;Cyrillic Small Letter Iota -\UA648;Cyrillic Capital Letter Djerv -\UA649;Cyrillic Small Letter Djerv -\UA64A;Cyrillic Capital Letter Monograph Uk -\UA64B;Cyrillic Small Letter Monograph Uk -\UA64C;Cyrillic Capital Letter Broad Omega -\UA64D;Cyrillic Small Letter Broad Omega -\UA64E;Cyrillic Capital Letter Neutral Yer -\UA64F;Cyrillic Small Letter Neutral Yer -\UA650;Cyrillic Capital Letter Yeru With Back Yer -\UA651;Cyrillic Small Letter Yeru With Back Yer -\UA652;Cyrillic Capital Letter Iotified Yat -\UA653;Cyrillic Small Letter Iotified Yat -\UA654;Cyrillic Capital Letter Reversed Yu -\UA655;Cyrillic Small Letter Reversed Yu -\UA656;Cyrillic Capital Letter Iotified A -\UA657;Cyrillic Small Letter Iotified A -\UA658;Cyrillic Capital Letter Closed Little Yus -\UA659;Cyrillic Small Letter Closed Little Yus -\UA65A;Cyrillic Capital Letter Blended Yus -\UA65B;Cyrillic Small Letter Blended Yus -\UA65C;Cyrillic Capital Letter Iotified Closed Little Yus -\UA65D;Cyrillic Small Letter Iotified Closed Little Yus -\UA65E;Cyrillic Capital Letter Yn -\UA65F;Cyrillic Small Letter Yn -\UA660;Cyrillic Capital Letter Reversed Tse -\UA661;Cyrillic Small Letter Reversed Tse -\UA662;Cyrillic Capital Letter Soft De -\UA663;Cyrillic Small Letter Soft De -\UA664;Cyrillic Capital Letter Soft El -\UA665;Cyrillic Small Letter Soft El -\UA666;Cyrillic Capital Letter Soft Em -\UA667;Cyrillic Small Letter Soft Em -\UA668;Cyrillic Capital Letter Monocular O -\UA669;Cyrillic Small Letter Monocular O -\UA66A;Cyrillic Capital Letter Binocular O -\UA66B;Cyrillic Small Letter Binocular O -\UA66C;Cyrillic Capital Letter Double Monocular O -\UA66D;Cyrillic Small Letter Double Monocular O -\UA66E;Cyrillic Letter Multiocular O -\UA66F;Combining Cyrillic Vzmet -\UA670;Combining Cyrillic Ten Millions Sign -\UA671;Combining Cyrillic Hundred Millions Sign -\UA672;Combining Cyrillic Thousand Millions Sign -\UA673;Slavonic Asterisk -\UA674;Combining Cyrillic Letter Ukrainian Ie -\UA675;Combining Cyrillic Letter I -\UA676;Combining Cyrillic Letter Yi -\UA677;Combining Cyrillic Letter U -\UA678;Combining Cyrillic Letter Hard Sign -\UA679;Combining Cyrillic Letter Yeru -\UA67A;Combining Cyrillic Letter Soft Sign -\UA67B;Combining Cyrillic Letter Omega -\UA67C;Combining Cyrillic Kavyka -\UA67D;Combining Cyrillic Payerok -\UA67E;Cyrillic Kavyka -\UA67F;Cyrillic Payerok -\UA680;Cyrillic Capital Letter Dwe -\UA681;Cyrillic Small Letter Dwe -\UA682;Cyrillic Capital Letter Dzwe -\UA683;Cyrillic Small Letter Dzwe -\UA684;Cyrillic Capital Letter Zhwe -\UA685;Cyrillic Small Letter Zhwe -\UA686;Cyrillic Capital Letter Cche -\UA687;Cyrillic Small Letter Cche -\UA688;Cyrillic Capital Letter Dzze -\UA689;Cyrillic Small Letter Dzze -\UA68A;Cyrillic Capital Letter Te With Middle Hook -\UA68B;Cyrillic Small Letter Te With Middle Hook -\UA68C;Cyrillic Capital Letter Twe -\UA68D;Cyrillic Small Letter Twe -\UA68E;Cyrillic Capital Letter Tswe -\UA68F;Cyrillic Small Letter Tswe -\UA690;Cyrillic Capital Letter Tsse -\UA691;Cyrillic Small Letter Tsse -\UA692;Cyrillic Capital Letter Tche -\UA693;Cyrillic Small Letter Tche -\UA694;Cyrillic Capital Letter Hwe -\UA695;Cyrillic Small Letter Hwe -\UA696;Cyrillic Capital Letter Shwe -\UA697;Cyrillic Small Letter Shwe -\UA698;Cyrillic Capital Letter Double O -\UA699;Cyrillic Small Letter Double O -\UA69A;Cyrillic Capital Letter Crossed O -\UA69B;Cyrillic Small Letter Crossed O -\UA69C;Modifier Letter Cyrillic Hard Sign -\UA69D;Modifier Letter Cyrillic Soft Sign -\UA69E;Combining Cyrillic Letter Ef -\UA69F;Combining Cyrillic Letter Iotified E -\UA6A0;Bamum Letter A -\UA6A1;Bamum Letter Ka -\UA6A2;Bamum Letter U -\UA6A3;Bamum Letter Ku -\UA6A4;Bamum Letter Ee -\UA6A5;Bamum Letter Ree -\UA6A6;Bamum Letter Tae -\UA6A7;Bamum Letter O -\UA6A8;Bamum Letter Nyi -\UA6A9;Bamum Letter I -\UA6AA;Bamum Letter La -\UA6AB;Bamum Letter Pa -\UA6AC;Bamum Letter Rii -\UA6AD;Bamum Letter Riee -\UA6AE;Bamum Letter Leeee -\UA6AF;Bamum Letter Meeee -\UA6B0;Bamum Letter Taa -\UA6B1;Bamum Letter Ndaa -\UA6B2;Bamum Letter Njaem -\UA6B3;Bamum Letter M -\UA6B4;Bamum Letter Suu -\UA6B5;Bamum Letter Mu -\UA6B6;Bamum Letter Shii -\UA6B7;Bamum Letter Si -\UA6B8;Bamum Letter Sheux -\UA6B9;Bamum Letter Seux -\UA6BA;Bamum Letter Kyee -\UA6BB;Bamum Letter Ket -\UA6BC;Bamum Letter Nuae -\UA6BD;Bamum Letter Nu -\UA6BE;Bamum Letter Njuae -\UA6BF;Bamum Letter Yoq -\UA6C0;Bamum Letter Shu -\UA6C1;Bamum Letter Yuq -\UA6C2;Bamum Letter Ya -\UA6C3;Bamum Letter Nsha -\UA6C4;Bamum Letter Keux -\UA6C5;Bamum Letter Peux -\UA6C6;Bamum Letter Njee -\UA6C7;Bamum Letter Ntee -\UA6C8;Bamum Letter Pue -\UA6C9;Bamum Letter Wue -\UA6CA;Bamum Letter Pee -\UA6CB;Bamum Letter Fee -\UA6CC;Bamum Letter Ru -\UA6CD;Bamum Letter Lu -\UA6CE;Bamum Letter Mi -\UA6CF;Bamum Letter Ni -\UA6D0;Bamum Letter Reux -\UA6D1;Bamum Letter Rae -\UA6D2;Bamum Letter Ken -\UA6D3;Bamum Letter Ngkwaen -\UA6D4;Bamum Letter Ngga -\UA6D5;Bamum Letter Nga -\UA6D6;Bamum Letter Sho -\UA6D7;Bamum Letter Puae -\UA6D8;Bamum Letter Fu -\UA6D9;Bamum Letter Fom -\UA6DA;Bamum Letter Wa -\UA6DB;Bamum Letter Na -\UA6DC;Bamum Letter Li -\UA6DD;Bamum Letter Pi -\UA6DE;Bamum Letter Loq -\UA6DF;Bamum Letter Ko -\UA6E0;Bamum Letter Mben -\UA6E1;Bamum Letter Ren -\UA6E2;Bamum Letter Men -\UA6E3;Bamum Letter Ma -\UA6E4;Bamum Letter Ti -\UA6E5;Bamum Letter Ki -\UA6E6;Bamum Letter Mo -\UA6E7;Bamum Letter Mbaa -\UA6E8;Bamum Letter Tet -\UA6E9;Bamum Letter Kpa -\UA6EA;Bamum Letter Ten -\UA6EB;Bamum Letter Ntuu -\UA6EC;Bamum Letter Samba -\UA6ED;Bamum Letter Faamae -\UA6EE;Bamum Letter Kovuu -\UA6EF;Bamum Letter Koghom -\UA6F0;Bamum Combining Mark Koqndon -\UA6F1;Bamum Combining Mark Tukwentis -\UA6F2;Bamum Njaemli -\UA6F3;Bamum Full Stop -\UA6F4;Bamum Colon -\UA6F5;Bamum Comma -\UA6F6;Bamum Semicolon -\UA6F7;Bamum Question Mark -\UA700;Modifier Letter Chinese Tone Yin Ping -\UA701;Modifier Letter Chinese Tone Yang Ping -\UA702;Modifier Letter Chinese Tone Yin Shang -\UA703;Modifier Letter Chinese Tone Yang Shang -\UA704;Modifier Letter Chinese Tone Yin Qu -\UA705;Modifier Letter Chinese Tone Yang Qu -\UA706;Modifier Letter Chinese Tone Yin Ru -\UA707;Modifier Letter Chinese Tone Yang Ru -\UA708;Modifier Letter Extra-High Dotted Tone Bar -\UA709;Modifier Letter High Dotted Tone Bar -\UA70A;Modifier Letter Mid Dotted Tone Bar -\UA70B;Modifier Letter Low Dotted Tone Bar -\UA70C;Modifier Letter Extra-Low Dotted Tone Bar -\UA70D;Modifier Letter Extra-High Dotted Left-Stem Tone Bar -\UA70E;Modifier Letter High Dotted Left-Stem Tone Bar -\UA70F;Modifier Letter Mid Dotted Left-Stem Tone Bar -\UA710;Modifier Letter Low Dotted Left-Stem Tone Bar -\UA711;Modifier Letter Extra-Low Dotted Left-Stem Tone Bar -\UA712;Modifier Letter Extra-High Left-Stem Tone Bar -\UA713;Modifier Letter High Left-Stem Tone Bar -\UA714;Modifier Letter Mid Left-Stem Tone Bar -\UA715;Modifier Letter Low Left-Stem Tone Bar -\UA716;Modifier Letter Extra-Low Left-Stem Tone Bar -\UA717;Modifier Letter Dot Vertical Bar -\UA718;Modifier Letter Dot Slash -\UA719;Modifier Letter Dot Horizontal Bar -\UA71A;Modifier Letter Lower Right Corner Angle -\UA71B;Modifier Letter Raised Up Arrow -\UA71C;Modifier Letter Raised Down Arrow -\UA71D;Modifier Letter Raised Exclamation Mark -\UA71E;Modifier Letter Raised Inverted Exclamation Mark -\UA71F;Modifier Letter Low Inverted Exclamation Mark -\UA720;Modifier Letter Stress And High Tone -\UA721;Modifier Letter Stress And Low Tone -\UA722;Latin Capital Letter Egyptological Alef -\UA723;Latin Small Letter Egyptological Alef -\UA724;Latin Capital Letter Egyptological Ain -\UA725;Latin Small Letter Egyptological Ain -\UA726;Latin Capital Letter Heng -\UA727;Latin Small Letter Heng -\UA728;Latin Capital Letter Tz -\UA729;Latin Small Letter Tz -\UA72A;Latin Capital Letter Tresillo -\UA72B;Latin Small Letter Tresillo -\UA72C;Latin Capital Letter Cuatrillo -\UA72D;Latin Small Letter Cuatrillo -\UA72E;Latin Capital Letter Cuatrillo With Comma -\UA72F;Latin Small Letter Cuatrillo With Comma -\UA730;Latin Letter Small Capital F -\UA731;Latin Letter Small Capital S -\UA732;Latin Capital Letter Aa -\UA733;Latin Small Letter Aa -\UA734;Latin Capital Letter Ao -\UA735;Latin Small Letter Ao -\UA736;Latin Capital Letter Au -\UA737;Latin Small Letter Au -\UA738;Latin Capital Letter Av -\UA739;Latin Small Letter Av -\UA73A;Latin Capital Letter Av With Horizontal Bar -\UA73B;Latin Small Letter Av With Horizontal Bar -\UA73C;Latin Capital Letter Ay -\UA73D;Latin Small Letter Ay -\UA73E;Latin Capital Letter Reversed C With Dot -\UA73F;Latin Small Letter Reversed C With Dot -\UA740;Latin Capital Letter K With Stroke -\UA741;Latin Small Letter K With Stroke -\UA742;Latin Capital Letter K With Diagonal Stroke -\UA743;Latin Small Letter K With Diagonal Stroke -\UA744;Latin Capital Letter K With Stroke And Diagonal Stroke -\UA745;Latin Small Letter K With Stroke And Diagonal Stroke -\UA746;Latin Capital Letter Broken L -\UA747;Latin Small Letter Broken L -\UA748;Latin Capital Letter L With High Stroke -\UA749;Latin Small Letter L With High Stroke -\UA74A;Latin Capital Letter O With Long Stroke Overlay -\UA74B;Latin Small Letter O With Long Stroke Overlay -\UA74C;Latin Capital Letter O With Loop -\UA74D;Latin Small Letter O With Loop -\UA74E;Latin Capital Letter Oo -\UA74F;Latin Small Letter Oo -\UA750;Latin Capital Letter P With Stroke Through Descender -\UA751;Latin Small Letter P With Stroke Through Descender -\UA752;Latin Capital Letter P With Flourish -\UA753;Latin Small Letter P With Flourish -\UA754;Latin Capital Letter P With Squirrel Tail -\UA755;Latin Small Letter P With Squirrel Tail -\UA756;Latin Capital Letter Q With Stroke Through Descender -\UA757;Latin Small Letter Q With Stroke Through Descender -\UA758;Latin Capital Letter Q With Diagonal Stroke -\UA759;Latin Small Letter Q With Diagonal Stroke -\UA75A;Latin Capital Letter R Rotunda -\UA75B;Latin Small Letter R Rotunda -\UA75C;Latin Capital Letter Rum Rotunda -\UA75D;Latin Small Letter Rum Rotunda -\UA75E;Latin Capital Letter V With Diagonal Stroke -\UA75F;Latin Small Letter V With Diagonal Stroke -\UA760;Latin Capital Letter Vy -\UA761;Latin Small Letter Vy -\UA762;Latin Capital Letter Visigothic Z -\UA763;Latin Small Letter Visigothic Z -\UA764;Latin Capital Letter Thorn With Stroke -\UA765;Latin Small Letter Thorn With Stroke -\UA766;Latin Capital Letter Thorn With Stroke Through Descender -\UA767;Latin Small Letter Thorn With Stroke Through Descender -\UA768;Latin Capital Letter Vend -\UA769;Latin Small Letter Vend -\UA76A;Latin Capital Letter Et -\UA76B;Latin Small Letter Et -\UA76C;Latin Capital Letter Is -\UA76D;Latin Small Letter Is -\UA76E;Latin Capital Letter Con -\UA76F;Latin Small Letter Con -\UA770;Modifier Letter Us -\UA771;Latin Small Letter Dum -\UA772;Latin Small Letter Lum -\UA773;Latin Small Letter Mum -\UA774;Latin Small Letter Num -\UA775;Latin Small Letter Rum -\UA776;Latin Letter Small Capital Rum -\UA777;Latin Small Letter Tum -\UA778;Latin Small Letter Um -\UA779;Latin Capital Letter Insular D -\UA77A;Latin Small Letter Insular D -\UA77B;Latin Capital Letter Insular F -\UA77C;Latin Small Letter Insular F -\UA77D;Latin Capital Letter Insular G -\UA77E;Latin Capital Letter Turned Insular G -\UA77F;Latin Small Letter Turned Insular G -\UA780;Latin Capital Letter Turned L -\UA781;Latin Small Letter Turned L -\UA782;Latin Capital Letter Insular R -\UA783;Latin Small Letter Insular R -\UA784;Latin Capital Letter Insular S -\UA785;Latin Small Letter Insular S -\UA786;Latin Capital Letter Insular T -\UA787;Latin Small Letter Insular T -\UA788;Modifier Letter Low Circumflex Accent -\UA789;Modifier Letter Colon -\UA78A;Modifier Letter Short Equals Sign -\UA78B;Latin Capital Letter Saltillo -\UA78C;Latin Small Letter Saltillo -\UA78D;Latin Capital Letter Turned H -\UA78E;Latin Small Letter L With Retroflex Hook And Belt -\UA78F;Latin Letter Sinological Dot -\UA790;Latin Capital Letter N With Descender -\UA791;Latin Small Letter N With Descender -\UA792;Latin Capital Letter C With Bar -\UA793;Latin Small Letter C With Bar -\UA794;Latin Small Letter C With Palatal Hook -\UA795;Latin Small Letter H With Palatal Hook -\UA796;Latin Capital Letter B With Flourish -\UA797;Latin Small Letter B With Flourish -\UA798;Latin Capital Letter F With Stroke -\UA799;Latin Small Letter F With Stroke -\UA79A;Latin Capital Letter Volapuk Ae -\UA79B;Latin Small Letter Volapuk Ae -\UA79C;Latin Capital Letter Volapuk Oe -\UA79D;Latin Small Letter Volapuk Oe -\UA79E;Latin Capital Letter Volapuk Ue -\UA79F;Latin Small Letter Volapuk Ue -\UA7A0;Latin Capital Letter G With Oblique Stroke -\UA7A1;Latin Small Letter G With Oblique Stroke -\UA7A2;Latin Capital Letter K With Oblique Stroke -\UA7A3;Latin Small Letter K With Oblique Stroke -\UA7A4;Latin Capital Letter N With Oblique Stroke -\UA7A5;Latin Small Letter N With Oblique Stroke -\UA7A6;Latin Capital Letter R With Oblique Stroke -\UA7A7;Latin Small Letter R With Oblique Stroke -\UA7A8;Latin Capital Letter S With Oblique Stroke -\UA7A9;Latin Small Letter S With Oblique Stroke -\UA7AA;Latin Capital Letter H With Hook -\UA7AB;Latin Capital Letter Reversed Open E -\UA7AC;Latin Capital Letter Script G -\UA7AD;Latin Capital Letter L With Belt -\UA7AE;Latin Capital Letter Small Capital I -\UA7AF;Latin Letter Small Capital Q -\UA7B0;Latin Capital Letter Turned K -\UA7B1;Latin Capital Letter Turned T -\UA7B2;Latin Capital Letter J With Crossed-Tail -\UA7B3;Latin Capital Letter Chi -\UA7B4;Latin Capital Letter Beta -\UA7B5;Latin Small Letter Beta -\UA7B6;Latin Capital Letter Omega -\UA7B7;Latin Small Letter Omega -\UA7B8;Latin Capital Letter U With Stroke -\UA7B9;Latin Small Letter U With Stroke -\UA7BA;Latin Capital Letter Glottal A -\UA7BB;Latin Small Letter Glottal A -\UA7BC;Latin Capital Letter Glottal I -\UA7BD;Latin Small Letter Glottal I -\UA7BE;Latin Capital Letter Glottal U -\UA7BF;Latin Small Letter Glottal U -\UA7C0;Latin Capital Letter Old Polish O -\UA7C1;Latin Small Letter Old Polish O -\UA7C2;Latin Capital Letter Anglicana W -\UA7C3;Latin Small Letter Anglicana W -\UA7C4;Latin Capital Letter C With Palatal Hook -\UA7C5;Latin Capital Letter S With Hook -\UA7C6;Latin Capital Letter Z With Palatal Hook -\UA7C7;Latin Capital Letter D With Short Stroke Overlay -\UA7C8;Latin Small Letter D With Short Stroke Overlay -\UA7C9;Latin Capital Letter S With Short Stroke Overlay -\UA7CA;Latin Small Letter S With Short Stroke Overlay -\UA7D0;Latin Capital Letter Closed Insular G -\UA7D1;Latin Small Letter Closed Insular G -\UA7D3;Latin Small Letter Double Thorn -\UA7D5;Latin Small Letter Double Wynn -\UA7D6;Latin Capital Letter Middle Scots S -\UA7D7;Latin Small Letter Middle Scots S -\UA7D8;Latin Capital Letter Sigmoid S -\UA7D9;Latin Small Letter Sigmoid S -\UA7F2;Modifier Letter Capital C -\UA7F3;Modifier Letter Capital F -\UA7F4;Modifier Letter Capital Q -\UA7F5;Latin Capital Letter Reversed Half H -\UA7F6;Latin Small Letter Reversed Half H -\UA7F7;Latin Epigraphic Letter Sideways I -\UA7F8;Modifier Letter Capital H With Stroke -\UA7F9;Modifier Letter Small Ligature Oe -\UA7FA;Latin Letter Small Capital Turned M -\UA7FB;Latin Epigraphic Letter Reversed F -\UA7FC;Latin Epigraphic Letter Reversed P -\UA7FD;Latin Epigraphic Letter Inverted M -\UA7FE;Latin Epigraphic Letter I Longa -\UA7FF;Latin Epigraphic Letter Archaic M -\UA800;Syloti Nagri Letter A -\UA801;Syloti Nagri Letter I -\UA802;Syloti Nagri Sign Dvisvara -\UA803;Syloti Nagri Letter U -\UA804;Syloti Nagri Letter E -\UA805;Syloti Nagri Letter O -\UA806;Syloti Nagri Sign Hasanta -\UA807;Syloti Nagri Letter Ko -\UA808;Syloti Nagri Letter Kho -\UA809;Syloti Nagri Letter Go -\UA80A;Syloti Nagri Letter Gho -\UA80B;Syloti Nagri Sign Anusvara -\UA80C;Syloti Nagri Letter Co -\UA80D;Syloti Nagri Letter Cho -\UA80E;Syloti Nagri Letter Jo -\UA80F;Syloti Nagri Letter Jho -\UA810;Syloti Nagri Letter Tto -\UA811;Syloti Nagri Letter Ttho -\UA812;Syloti Nagri Letter Ddo -\UA813;Syloti Nagri Letter Ddho -\UA814;Syloti Nagri Letter To -\UA815;Syloti Nagri Letter Tho -\UA816;Syloti Nagri Letter Do -\UA817;Syloti Nagri Letter Dho -\UA818;Syloti Nagri Letter No -\UA819;Syloti Nagri Letter Po -\UA81A;Syloti Nagri Letter Pho -\UA81B;Syloti Nagri Letter Bo -\UA81C;Syloti Nagri Letter Bho -\UA81D;Syloti Nagri Letter Mo -\UA81E;Syloti Nagri Letter Ro -\UA81F;Syloti Nagri Letter Lo -\UA820;Syloti Nagri Letter Rro -\UA821;Syloti Nagri Letter So -\UA822;Syloti Nagri Letter Ho -\UA823;Syloti Nagri Vowel Sign A -\UA824;Syloti Nagri Vowel Sign I -\UA825;Syloti Nagri Vowel Sign U -\UA826;Syloti Nagri Vowel Sign E -\UA827;Syloti Nagri Vowel Sign Oo -\UA828;Syloti Nagri Poetry Mark-1 -\UA829;Syloti Nagri Poetry Mark-2 -\UA82A;Syloti Nagri Poetry Mark-3 -\UA82B;Syloti Nagri Poetry Mark-4 -\UA82C;Syloti Nagri Sign Alternate Hasanta -\UA830;North Indic Fraction One Quarter -\UA831;North Indic Fraction One Half -\UA832;North Indic Fraction Three Quarters -\UA833;North Indic Fraction One Sixteenth -\UA834;North Indic Fraction One Eighth -\UA835;North Indic Fraction Three Sixteenths -\UA836;North Indic Quarter Mark -\UA837;North Indic Placeholder Mark -\UA838;North Indic Rupee Mark -\UA839;North Indic Quantity Mark -\UA840;Phags-Pa Letter Ka -\UA841;Phags-Pa Letter Kha -\UA842;Phags-Pa Letter Ga -\UA843;Phags-Pa Letter Nga -\UA844;Phags-Pa Letter Ca -\UA845;Phags-Pa Letter Cha -\UA846;Phags-Pa Letter Ja -\UA847;Phags-Pa Letter Nya -\UA848;Phags-Pa Letter Ta -\UA849;Phags-Pa Letter Tha -\UA84A;Phags-Pa Letter Da -\UA84B;Phags-Pa Letter Na -\UA84C;Phags-Pa Letter Pa -\UA84D;Phags-Pa Letter Pha -\UA84E;Phags-Pa Letter Ba -\UA84F;Phags-Pa Letter Ma -\UA850;Phags-Pa Letter Tsa -\UA851;Phags-Pa Letter Tsha -\UA852;Phags-Pa Letter Dza -\UA853;Phags-Pa Letter Wa -\UA854;Phags-Pa Letter Zha -\UA855;Phags-Pa Letter Za -\UA856;Phags-Pa Letter Small A -\UA857;Phags-Pa Letter Ya -\UA858;Phags-Pa Letter Ra -\UA859;Phags-Pa Letter La -\UA85A;Phags-Pa Letter Sha -\UA85B;Phags-Pa Letter Sa -\UA85C;Phags-Pa Letter Ha -\UA85D;Phags-Pa Letter A -\UA85E;Phags-Pa Letter I -\UA85F;Phags-Pa Letter U -\UA860;Phags-Pa Letter E -\UA861;Phags-Pa Letter O -\UA862;Phags-Pa Letter Qa -\UA863;Phags-Pa Letter Xa -\UA864;Phags-Pa Letter Fa -\UA865;Phags-Pa Letter Gga -\UA866;Phags-Pa Letter Ee -\UA867;Phags-Pa Subjoined Letter Wa -\UA868;Phags-Pa Subjoined Letter Ya -\UA869;Phags-Pa Letter Tta -\UA86A;Phags-Pa Letter Ttha -\UA86B;Phags-Pa Letter Dda -\UA86C;Phags-Pa Letter Nna -\UA86D;Phags-Pa Letter Alternate Ya -\UA86E;Phags-Pa Letter Voiceless Sha -\UA86F;Phags-Pa Letter Voiced Ha -\UA870;Phags-Pa Letter Aspirated Fa -\UA871;Phags-Pa Subjoined Letter Ra -\UA872;Phags-Pa Superfixed Letter Ra -\UA873;Phags-Pa Letter Candrabindu -\UA874;Phags-Pa Single Head Mark -\UA875;Phags-Pa Double Head Mark -\UA876;Phags-Pa Mark Shad -\UA877;Phags-Pa Mark Double Shad -\UA880;Saurashtra Sign Anusvara -\UA881;Saurashtra Sign Visarga -\UA882;Saurashtra Letter A -\UA883;Saurashtra Letter Aa -\UA884;Saurashtra Letter I -\UA885;Saurashtra Letter Ii -\UA886;Saurashtra Letter U -\UA887;Saurashtra Letter Uu -\UA888;Saurashtra Letter Vocalic R -\UA889;Saurashtra Letter Vocalic Rr -\UA88A;Saurashtra Letter Vocalic L -\UA88B;Saurashtra Letter Vocalic Ll -\UA88C;Saurashtra Letter E -\UA88D;Saurashtra Letter Ee -\UA88E;Saurashtra Letter Ai -\UA88F;Saurashtra Letter O -\UA890;Saurashtra Letter Oo -\UA891;Saurashtra Letter Au -\UA892;Saurashtra Letter Ka -\UA893;Saurashtra Letter Kha -\UA894;Saurashtra Letter Ga -\UA895;Saurashtra Letter Gha -\UA896;Saurashtra Letter Nga -\UA897;Saurashtra Letter Ca -\UA898;Saurashtra Letter Cha -\UA899;Saurashtra Letter Ja -\UA89A;Saurashtra Letter Jha -\UA89B;Saurashtra Letter Nya -\UA89C;Saurashtra Letter Tta -\UA89D;Saurashtra Letter Ttha -\UA89E;Saurashtra Letter Dda -\UA89F;Saurashtra Letter Ddha -\UA8A0;Saurashtra Letter Nna -\UA8A1;Saurashtra Letter Ta -\UA8A2;Saurashtra Letter Tha -\UA8A3;Saurashtra Letter Da -\UA8A4;Saurashtra Letter Dha -\UA8A5;Saurashtra Letter Na -\UA8A6;Saurashtra Letter Pa -\UA8A7;Saurashtra Letter Pha -\UA8A8;Saurashtra Letter Ba -\UA8A9;Saurashtra Letter Bha -\UA8AA;Saurashtra Letter Ma -\UA8AB;Saurashtra Letter Ya -\UA8AC;Saurashtra Letter Ra -\UA8AD;Saurashtra Letter La -\UA8AE;Saurashtra Letter Va -\UA8AF;Saurashtra Letter Sha -\UA8B0;Saurashtra Letter Ssa -\UA8B1;Saurashtra Letter Sa -\UA8B2;Saurashtra Letter Ha -\UA8B3;Saurashtra Letter Lla -\UA8B4;Saurashtra Consonant Sign Haaru -\UA8B5;Saurashtra Vowel Sign Aa -\UA8B6;Saurashtra Vowel Sign I -\UA8B7;Saurashtra Vowel Sign Ii -\UA8B8;Saurashtra Vowel Sign U -\UA8B9;Saurashtra Vowel Sign Uu -\UA8BA;Saurashtra Vowel Sign Vocalic R -\UA8BB;Saurashtra Vowel Sign Vocalic Rr -\UA8BC;Saurashtra Vowel Sign Vocalic L -\UA8BD;Saurashtra Vowel Sign Vocalic Ll -\UA8BE;Saurashtra Vowel Sign E -\UA8BF;Saurashtra Vowel Sign Ee -\UA8C0;Saurashtra Vowel Sign Ai -\UA8C1;Saurashtra Vowel Sign O -\UA8C2;Saurashtra Vowel Sign Oo -\UA8C3;Saurashtra Vowel Sign Au -\UA8C4;Saurashtra Sign Virama -\UA8C5;Saurashtra Sign Candrabindu -\UA8CE;Saurashtra Danda -\UA8CF;Saurashtra Double Danda -\UA8D0;Saurashtra Digit Zero -\UA8D1;Saurashtra Digit One -\UA8D2;Saurashtra Digit Two -\UA8D3;Saurashtra Digit Three -\UA8D4;Saurashtra Digit Four -\UA8D5;Saurashtra Digit Five -\UA8D6;Saurashtra Digit Six -\UA8D7;Saurashtra Digit Seven -\UA8D8;Saurashtra Digit Eight -\UA8D9;Saurashtra Digit Nine -\UA8E0;Combining Devanagari Digit Zero -\UA8E1;Combining Devanagari Digit One -\UA8E2;Combining Devanagari Digit Two -\UA8E3;Combining Devanagari Digit Three -\UA8E4;Combining Devanagari Digit Four -\UA8E5;Combining Devanagari Digit Five -\UA8E6;Combining Devanagari Digit Six -\UA8E7;Combining Devanagari Digit Seven -\UA8E8;Combining Devanagari Digit Eight -\UA8E9;Combining Devanagari Digit Nine -\UA8EA;Combining Devanagari Letter A -\UA8EB;Combining Devanagari Letter U -\UA8EC;Combining Devanagari Letter Ka -\UA8ED;Combining Devanagari Letter Na -\UA8EE;Combining Devanagari Letter Pa -\UA8EF;Combining Devanagari Letter Ra -\UA8F0;Combining Devanagari Letter Vi -\UA8F1;Combining Devanagari Sign Avagraha -\UA8F2;Devanagari Sign Spacing Candrabindu -\UA8F3;Devanagari Sign Candrabindu Virama -\UA8F4;Devanagari Sign Double Candrabindu Virama -\UA8F5;Devanagari Sign Candrabindu Two -\UA8F6;Devanagari Sign Candrabindu Three -\UA8F7;Devanagari Sign Candrabindu Avagraha -\UA8F8;Devanagari Sign Pushpika -\UA8F9;Devanagari Gap Filler -\UA8FA;Devanagari Caret -\UA8FB;Devanagari Headstroke -\UA8FC;Devanagari Sign Siddham -\UA8FD;Devanagari Jain Om -\UA8FE;Devanagari Letter Ay -\UA8FF;Devanagari Vowel Sign Ay -\UA900;Kayah Li Digit Zero -\UA901;Kayah Li Digit One -\UA902;Kayah Li Digit Two -\UA903;Kayah Li Digit Three -\UA904;Kayah Li Digit Four -\UA905;Kayah Li Digit Five -\UA906;Kayah Li Digit Six -\UA907;Kayah Li Digit Seven -\UA908;Kayah Li Digit Eight -\UA909;Kayah Li Digit Nine -\UA90A;Kayah Li Letter Ka -\UA90B;Kayah Li Letter Kha -\UA90C;Kayah Li Letter Ga -\UA90D;Kayah Li Letter Nga -\UA90E;Kayah Li Letter Sa -\UA90F;Kayah Li Letter Sha -\UA910;Kayah Li Letter Za -\UA911;Kayah Li Letter Nya -\UA912;Kayah Li Letter Ta -\UA913;Kayah Li Letter Hta -\UA914;Kayah Li Letter Na -\UA915;Kayah Li Letter Pa -\UA916;Kayah Li Letter Pha -\UA917;Kayah Li Letter Ma -\UA918;Kayah Li Letter Da -\UA919;Kayah Li Letter Ba -\UA91A;Kayah Li Letter Ra -\UA91B;Kayah Li Letter Ya -\UA91C;Kayah Li Letter La -\UA91D;Kayah Li Letter Wa -\UA91E;Kayah Li Letter Tha -\UA91F;Kayah Li Letter Ha -\UA920;Kayah Li Letter Va -\UA921;Kayah Li Letter Ca -\UA922;Kayah Li Letter A -\UA923;Kayah Li Letter Oe -\UA924;Kayah Li Letter I -\UA925;Kayah Li Letter Oo -\UA926;Kayah Li Vowel Ue -\UA927;Kayah Li Vowel E -\UA928;Kayah Li Vowel U -\UA929;Kayah Li Vowel Ee -\UA92A;Kayah Li Vowel O -\UA92B;Kayah Li Tone Plophu -\UA92C;Kayah Li Tone Calya -\UA92D;Kayah Li Tone Calya Plophu -\UA92E;Kayah Li Sign Cwi -\UA92F;Kayah Li Sign Shya -\UA930;Rejang Letter Ka -\UA931;Rejang Letter Ga -\UA932;Rejang Letter Nga -\UA933;Rejang Letter Ta -\UA934;Rejang Letter Da -\UA935;Rejang Letter Na -\UA936;Rejang Letter Pa -\UA937;Rejang Letter Ba -\UA938;Rejang Letter Ma -\UA939;Rejang Letter Ca -\UA93A;Rejang Letter Ja -\UA93B;Rejang Letter Nya -\UA93C;Rejang Letter Sa -\UA93D;Rejang Letter Ra -\UA93E;Rejang Letter La -\UA93F;Rejang Letter Ya -\UA940;Rejang Letter Wa -\UA941;Rejang Letter Ha -\UA942;Rejang Letter Mba -\UA943;Rejang Letter Ngga -\UA944;Rejang Letter Nda -\UA945;Rejang Letter Nyja -\UA946;Rejang Letter A -\UA947;Rejang Vowel Sign I -\UA948;Rejang Vowel Sign U -\UA949;Rejang Vowel Sign E -\UA94A;Rejang Vowel Sign Ai -\UA94B;Rejang Vowel Sign O -\UA94C;Rejang Vowel Sign Au -\UA94D;Rejang Vowel Sign Eu -\UA94E;Rejang Vowel Sign Ea -\UA94F;Rejang Consonant Sign Ng -\UA950;Rejang Consonant Sign N -\UA951;Rejang Consonant Sign R -\UA952;Rejang Consonant Sign H -\UA953;Rejang Virama -\UA95F;Rejang Section Mark -\UA960;Hangul Choseong Tikeut-Mieum -\UA961;Hangul Choseong Tikeut-Pieup -\UA962;Hangul Choseong Tikeut-Sios -\UA963;Hangul Choseong Tikeut-Cieuc -\UA964;Hangul Choseong Rieul-Kiyeok -\UA965;Hangul Choseong Rieul-Ssangkiyeok -\UA966;Hangul Choseong Rieul-Tikeut -\UA967;Hangul Choseong Rieul-Ssangtikeut -\UA968;Hangul Choseong Rieul-Mieum -\UA969;Hangul Choseong Rieul-Pieup -\UA96A;Hangul Choseong Rieul-Ssangpieup -\UA96B;Hangul Choseong Rieul-Kapyeounpieup -\UA96C;Hangul Choseong Rieul-Sios -\UA96D;Hangul Choseong Rieul-Cieuc -\UA96E;Hangul Choseong Rieul-Khieukh -\UA96F;Hangul Choseong Mieum-Kiyeok -\UA970;Hangul Choseong Mieum-Tikeut -\UA971;Hangul Choseong Mieum-Sios -\UA972;Hangul Choseong Pieup-Sios-Thieuth -\UA973;Hangul Choseong Pieup-Khieukh -\UA974;Hangul Choseong Pieup-Hieuh -\UA975;Hangul Choseong Ssangsios-Pieup -\UA976;Hangul Choseong Ieung-Rieul -\UA977;Hangul Choseong Ieung-Hieuh -\UA978;Hangul Choseong Ssangcieuc-Hieuh -\UA979;Hangul Choseong Ssangthieuth -\UA97A;Hangul Choseong Phieuph-Hieuh -\UA97B;Hangul Choseong Hieuh-Sios -\UA97C;Hangul Choseong Ssangyeorinhieuh -\UA980;Javanese Sign Panyangga -\UA981;Javanese Sign Cecak -\UA982;Javanese Sign Layar -\UA983;Javanese Sign Wignyan -\UA984;Javanese Letter A -\UA985;Javanese Letter I Kawi -\UA986;Javanese Letter I -\UA987;Javanese Letter Ii -\UA988;Javanese Letter U -\UA989;Javanese Letter Pa Cerek -\UA98A;Javanese Letter Nga Lelet -\UA98B;Javanese Letter Nga Lelet Raswadi -\UA98C;Javanese Letter E -\UA98D;Javanese Letter Ai -\UA98E;Javanese Letter O -\UA98F;Javanese Letter Ka -\UA990;Javanese Letter Ka Sasak -\UA991;Javanese Letter Ka Murda -\UA992;Javanese Letter Ga -\UA993;Javanese Letter Ga Murda -\UA994;Javanese Letter Nga -\UA995;Javanese Letter Ca -\UA996;Javanese Letter Ca Murda -\UA997;Javanese Letter Ja -\UA998;Javanese Letter Nya Murda -\UA999;Javanese Letter Ja Mahaprana -\UA99A;Javanese Letter Nya -\UA99B;Javanese Letter Tta -\UA99C;Javanese Letter Tta Mahaprana -\UA99D;Javanese Letter Dda -\UA99E;Javanese Letter Dda Mahaprana -\UA99F;Javanese Letter Na Murda -\UA9A0;Javanese Letter Ta -\UA9A1;Javanese Letter Ta Murda -\UA9A2;Javanese Letter Da -\UA9A3;Javanese Letter Da Mahaprana -\UA9A4;Javanese Letter Na -\UA9A5;Javanese Letter Pa -\UA9A6;Javanese Letter Pa Murda -\UA9A7;Javanese Letter Ba -\UA9A8;Javanese Letter Ba Murda -\UA9A9;Javanese Letter Ma -\UA9AA;Javanese Letter Ya -\UA9AB;Javanese Letter Ra -\UA9AC;Javanese Letter Ra Agung -\UA9AD;Javanese Letter La -\UA9AE;Javanese Letter Wa -\UA9AF;Javanese Letter Sa Murda -\UA9B0;Javanese Letter Sa Mahaprana -\UA9B1;Javanese Letter Sa -\UA9B2;Javanese Letter Ha -\UA9B3;Javanese Sign Cecak Telu -\UA9B4;Javanese Vowel Sign Tarung -\UA9B5;Javanese Vowel Sign Tolong -\UA9B6;Javanese Vowel Sign Wulu -\UA9B7;Javanese Vowel Sign Wulu Melik -\UA9B8;Javanese Vowel Sign Suku -\UA9B9;Javanese Vowel Sign Suku Mendut -\UA9BA;Javanese Vowel Sign Taling -\UA9BB;Javanese Vowel Sign Dirga Mure -\UA9BC;Javanese Vowel Sign Pepet -\UA9BD;Javanese Consonant Sign Keret -\UA9BE;Javanese Consonant Sign Pengkal -\UA9BF;Javanese Consonant Sign Cakra -\UA9C0;Javanese Pangkon -\UA9C1;Javanese Left Rerenggan -\UA9C2;Javanese Right Rerenggan -\UA9C3;Javanese Pada Andap -\UA9C4;Javanese Pada Madya -\UA9C5;Javanese Pada Luhur -\UA9C6;Javanese Pada Windu -\UA9C7;Javanese Pada Pangkat -\UA9C8;Javanese Pada Lingsa -\UA9C9;Javanese Pada Lungsi -\UA9CA;Javanese Pada Adeg -\UA9CB;Javanese Pada Adeg Adeg -\UA9CC;Javanese Pada Piseleh -\UA9CD;Javanese Turned Pada Piseleh -\UA9CF;Javanese Pangrangkep -\UA9D0;Javanese Digit Zero -\UA9D1;Javanese Digit One -\UA9D2;Javanese Digit Two -\UA9D3;Javanese Digit Three -\UA9D4;Javanese Digit Four -\UA9D5;Javanese Digit Five -\UA9D6;Javanese Digit Six -\UA9D7;Javanese Digit Seven -\UA9D8;Javanese Digit Eight -\UA9D9;Javanese Digit Nine -\UA9DE;Javanese Pada Tirta Tumetes -\UA9DF;Javanese Pada Isen-Isen -\UA9E0;Myanmar Letter Shan Gha -\UA9E1;Myanmar Letter Shan Cha -\UA9E2;Myanmar Letter Shan Jha -\UA9E3;Myanmar Letter Shan Nna -\UA9E4;Myanmar Letter Shan Bha -\UA9E5;Myanmar Sign Shan Saw -\UA9E6;Myanmar Modifier Letter Shan Reduplication -\UA9E7;Myanmar Letter Tai Laing Nya -\UA9E8;Myanmar Letter Tai Laing Fa -\UA9E9;Myanmar Letter Tai Laing Ga -\UA9EA;Myanmar Letter Tai Laing Gha -\UA9EB;Myanmar Letter Tai Laing Ja -\UA9EC;Myanmar Letter Tai Laing Jha -\UA9ED;Myanmar Letter Tai Laing Dda -\UA9EE;Myanmar Letter Tai Laing Ddha -\UA9EF;Myanmar Letter Tai Laing Nna -\UA9F0;Myanmar Tai Laing Digit Zero -\UA9F1;Myanmar Tai Laing Digit One -\UA9F2;Myanmar Tai Laing Digit Two -\UA9F3;Myanmar Tai Laing Digit Three -\UA9F4;Myanmar Tai Laing Digit Four -\UA9F5;Myanmar Tai Laing Digit Five -\UA9F6;Myanmar Tai Laing Digit Six -\UA9F7;Myanmar Tai Laing Digit Seven -\UA9F8;Myanmar Tai Laing Digit Eight -\UA9F9;Myanmar Tai Laing Digit Nine -\UA9FA;Myanmar Letter Tai Laing Lla -\UA9FB;Myanmar Letter Tai Laing Da -\UA9FC;Myanmar Letter Tai Laing Dha -\UA9FD;Myanmar Letter Tai Laing Ba -\UA9FE;Myanmar Letter Tai Laing Bha -\UAA00;Cham Letter A -\UAA01;Cham Letter I -\UAA02;Cham Letter U -\UAA03;Cham Letter E -\UAA04;Cham Letter Ai -\UAA05;Cham Letter O -\UAA06;Cham Letter Ka -\UAA07;Cham Letter Kha -\UAA08;Cham Letter Ga -\UAA09;Cham Letter Gha -\UAA0A;Cham Letter Ngue -\UAA0B;Cham Letter Nga -\UAA0C;Cham Letter Cha -\UAA0D;Cham Letter Chha -\UAA0E;Cham Letter Ja -\UAA0F;Cham Letter Jha -\UAA10;Cham Letter Nhue -\UAA11;Cham Letter Nha -\UAA12;Cham Letter Nhja -\UAA13;Cham Letter Ta -\UAA14;Cham Letter Tha -\UAA15;Cham Letter Da -\UAA16;Cham Letter Dha -\UAA17;Cham Letter Nue -\UAA18;Cham Letter Na -\UAA19;Cham Letter Dda -\UAA1A;Cham Letter Pa -\UAA1B;Cham Letter Ppa -\UAA1C;Cham Letter Pha -\UAA1D;Cham Letter Ba -\UAA1E;Cham Letter Bha -\UAA1F;Cham Letter Mue -\UAA20;Cham Letter Ma -\UAA21;Cham Letter Bba -\UAA22;Cham Letter Ya -\UAA23;Cham Letter Ra -\UAA24;Cham Letter La -\UAA25;Cham Letter Va -\UAA26;Cham Letter Ssa -\UAA27;Cham Letter Sa -\UAA28;Cham Letter Ha -\UAA29;Cham Vowel Sign Aa -\UAA2A;Cham Vowel Sign I -\UAA2B;Cham Vowel Sign Ii -\UAA2C;Cham Vowel Sign Ei -\UAA2D;Cham Vowel Sign U -\UAA2E;Cham Vowel Sign Oe -\UAA2F;Cham Vowel Sign O -\UAA30;Cham Vowel Sign Ai -\UAA31;Cham Vowel Sign Au -\UAA32;Cham Vowel Sign Ue -\UAA33;Cham Consonant Sign Ya -\UAA34;Cham Consonant Sign Ra -\UAA35;Cham Consonant Sign La -\UAA36;Cham Consonant Sign Wa -\UAA40;Cham Letter Final K -\UAA41;Cham Letter Final G -\UAA42;Cham Letter Final Ng -\UAA43;Cham Consonant Sign Final Ng -\UAA44;Cham Letter Final Ch -\UAA45;Cham Letter Final T -\UAA46;Cham Letter Final N -\UAA47;Cham Letter Final P -\UAA48;Cham Letter Final Y -\UAA49;Cham Letter Final R -\UAA4A;Cham Letter Final L -\UAA4B;Cham Letter Final Ss -\UAA4C;Cham Consonant Sign Final M -\UAA4D;Cham Consonant Sign Final H -\UAA50;Cham Digit Zero -\UAA51;Cham Digit One -\UAA52;Cham Digit Two -\UAA53;Cham Digit Three -\UAA54;Cham Digit Four -\UAA55;Cham Digit Five -\UAA56;Cham Digit Six -\UAA57;Cham Digit Seven -\UAA58;Cham Digit Eight -\UAA59;Cham Digit Nine -\UAA5C;Cham Punctuation Spiral -\UAA5D;Cham Punctuation Danda -\UAA5E;Cham Punctuation Double Danda -\UAA5F;Cham Punctuation Triple Danda -\UAA60;Myanmar Letter Khamti Ga -\UAA61;Myanmar Letter Khamti Ca -\UAA62;Myanmar Letter Khamti Cha -\UAA63;Myanmar Letter Khamti Ja -\UAA64;Myanmar Letter Khamti Jha -\UAA65;Myanmar Letter Khamti Nya -\UAA66;Myanmar Letter Khamti Tta -\UAA67;Myanmar Letter Khamti Ttha -\UAA68;Myanmar Letter Khamti Dda -\UAA69;Myanmar Letter Khamti Ddha -\UAA6A;Myanmar Letter Khamti Dha -\UAA6B;Myanmar Letter Khamti Na -\UAA6C;Myanmar Letter Khamti Sa -\UAA6D;Myanmar Letter Khamti Ha -\UAA6E;Myanmar Letter Khamti Hha -\UAA6F;Myanmar Letter Khamti Fa -\UAA70;Myanmar Modifier Letter Khamti Reduplication -\UAA71;Myanmar Letter Khamti Xa -\UAA72;Myanmar Letter Khamti Za -\UAA73;Myanmar Letter Khamti Ra -\UAA74;Myanmar Logogram Khamti Oay -\UAA75;Myanmar Logogram Khamti Qn -\UAA76;Myanmar Logogram Khamti Hm -\UAA77;Myanmar Symbol Aiton Exclamation -\UAA78;Myanmar Symbol Aiton One -\UAA79;Myanmar Symbol Aiton Two -\UAA7A;Myanmar Letter Aiton Ra -\UAA7B;Myanmar Sign Pao Karen Tone -\UAA7C;Myanmar Sign Tai Laing Tone-2 -\UAA7D;Myanmar Sign Tai Laing Tone-5 -\UAA7E;Myanmar Letter Shwe Palaung Cha -\UAA7F;Myanmar Letter Shwe Palaung Sha -\UAA80;Tai Viet Letter Low Ko -\UAA81;Tai Viet Letter High Ko -\UAA82;Tai Viet Letter Low Kho -\UAA83;Tai Viet Letter High Kho -\UAA84;Tai Viet Letter Low Khho -\UAA85;Tai Viet Letter High Khho -\UAA86;Tai Viet Letter Low Go -\UAA87;Tai Viet Letter High Go -\UAA88;Tai Viet Letter Low Ngo -\UAA89;Tai Viet Letter High Ngo -\UAA8A;Tai Viet Letter Low Co -\UAA8B;Tai Viet Letter High Co -\UAA8C;Tai Viet Letter Low Cho -\UAA8D;Tai Viet Letter High Cho -\UAA8E;Tai Viet Letter Low So -\UAA8F;Tai Viet Letter High So -\UAA90;Tai Viet Letter Low Nyo -\UAA91;Tai Viet Letter High Nyo -\UAA92;Tai Viet Letter Low Do -\UAA93;Tai Viet Letter High Do -\UAA94;Tai Viet Letter Low To -\UAA95;Tai Viet Letter High To -\UAA96;Tai Viet Letter Low Tho -\UAA97;Tai Viet Letter High Tho -\UAA98;Tai Viet Letter Low No -\UAA99;Tai Viet Letter High No -\UAA9A;Tai Viet Letter Low Bo -\UAA9B;Tai Viet Letter High Bo -\UAA9C;Tai Viet Letter Low Po -\UAA9D;Tai Viet Letter High Po -\UAA9E;Tai Viet Letter Low Pho -\UAA9F;Tai Viet Letter High Pho -\UAAA0;Tai Viet Letter Low Fo -\UAAA1;Tai Viet Letter High Fo -\UAAA2;Tai Viet Letter Low Mo -\UAAA3;Tai Viet Letter High Mo -\UAAA4;Tai Viet Letter Low Yo -\UAAA5;Tai Viet Letter High Yo -\UAAA6;Tai Viet Letter Low Ro -\UAAA7;Tai Viet Letter High Ro -\UAAA8;Tai Viet Letter Low Lo -\UAAA9;Tai Viet Letter High Lo -\UAAAA;Tai Viet Letter Low Vo -\UAAAB;Tai Viet Letter High Vo -\UAAAC;Tai Viet Letter Low Ho -\UAAAD;Tai Viet Letter High Ho -\UAAAE;Tai Viet Letter Low O -\UAAAF;Tai Viet Letter High O -\UAAB0;Tai Viet Mai Kang -\UAAB1;Tai Viet Vowel Aa -\UAAB2;Tai Viet Vowel I -\UAAB3;Tai Viet Vowel Ue -\UAAB4;Tai Viet Vowel U -\UAAB5;Tai Viet Vowel E -\UAAB6;Tai Viet Vowel O -\UAAB7;Tai Viet Mai Khit -\UAAB8;Tai Viet Vowel Ia -\UAAB9;Tai Viet Vowel Uea -\UAABA;Tai Viet Vowel Ua -\UAABB;Tai Viet Vowel Aue -\UAABC;Tai Viet Vowel Ay -\UAABD;Tai Viet Vowel An -\UAABE;Tai Viet Vowel Am -\UAABF;Tai Viet Tone Mai Ek -\UAAC0;Tai Viet Tone Mai Nueng -\UAAC1;Tai Viet Tone Mai Tho -\UAAC2;Tai Viet Tone Mai Song -\UAADB;Tai Viet Symbol Kon -\UAADC;Tai Viet Symbol Nueng -\UAADD;Tai Viet Symbol Sam -\UAADE;Tai Viet Symbol Ho Hoi -\UAADF;Tai Viet Symbol Koi Koi -\UAAE0;Meetei Mayek Letter E -\UAAE1;Meetei Mayek Letter O -\UAAE2;Meetei Mayek Letter Cha -\UAAE3;Meetei Mayek Letter Nya -\UAAE4;Meetei Mayek Letter Tta -\UAAE5;Meetei Mayek Letter Ttha -\UAAE6;Meetei Mayek Letter Dda -\UAAE7;Meetei Mayek Letter Ddha -\UAAE8;Meetei Mayek Letter Nna -\UAAE9;Meetei Mayek Letter Sha -\UAAEA;Meetei Mayek Letter Ssa -\UAAEB;Meetei Mayek Vowel Sign Ii -\UAAEC;Meetei Mayek Vowel Sign Uu -\UAAED;Meetei Mayek Vowel Sign Aai -\UAAEE;Meetei Mayek Vowel Sign Au -\UAAEF;Meetei Mayek Vowel Sign Aau -\UAAF0;Meetei Mayek Cheikhan -\UAAF1;Meetei Mayek Ahang Khudam -\UAAF2;Meetei Mayek Anji -\UAAF3;Meetei Mayek Syllable Repetition Mark -\UAAF4;Meetei Mayek Word Repetition Mark -\UAAF5;Meetei Mayek Vowel Sign Visarga -\UAAF6;Meetei Mayek Virama -\UAB01;Ethiopic Syllable Tthu -\UAB02;Ethiopic Syllable Tthi -\UAB03;Ethiopic Syllable Tthaa -\UAB04;Ethiopic Syllable Tthee -\UAB05;Ethiopic Syllable Tthe -\UAB06;Ethiopic Syllable Ttho -\UAB09;Ethiopic Syllable Ddhu -\UAB0A;Ethiopic Syllable Ddhi -\UAB0B;Ethiopic Syllable Ddhaa -\UAB0C;Ethiopic Syllable Ddhee -\UAB0D;Ethiopic Syllable Ddhe -\UAB0E;Ethiopic Syllable Ddho -\UAB11;Ethiopic Syllable Dzu -\UAB12;Ethiopic Syllable Dzi -\UAB13;Ethiopic Syllable Dzaa -\UAB14;Ethiopic Syllable Dzee -\UAB15;Ethiopic Syllable Dze -\UAB16;Ethiopic Syllable Dzo -\UAB20;Ethiopic Syllable Cchha -\UAB21;Ethiopic Syllable Cchhu -\UAB22;Ethiopic Syllable Cchhi -\UAB23;Ethiopic Syllable Cchhaa -\UAB24;Ethiopic Syllable Cchhee -\UAB25;Ethiopic Syllable Cchhe -\UAB26;Ethiopic Syllable Cchho -\UAB28;Ethiopic Syllable Bba -\UAB29;Ethiopic Syllable Bbu -\UAB2A;Ethiopic Syllable Bbi -\UAB2B;Ethiopic Syllable Bbaa -\UAB2C;Ethiopic Syllable Bbee -\UAB2D;Ethiopic Syllable Bbe -\UAB2E;Ethiopic Syllable Bbo -\UAB30;Latin Small Letter Barred Alpha -\UAB31;Latin Small Letter A Reversed-Schwa -\UAB32;Latin Small Letter Blackletter E -\UAB33;Latin Small Letter Barred E -\UAB34;Latin Small Letter E With Flourish -\UAB35;Latin Small Letter Lenis F -\UAB36;Latin Small Letter Script G With Crossed-Tail -\UAB37;Latin Small Letter L With Inverted Lazy S -\UAB38;Latin Small Letter L With Double Middle Tilde -\UAB39;Latin Small Letter L With Middle Ring -\UAB3A;Latin Small Letter M With Crossed-Tail -\UAB3B;Latin Small Letter N With Crossed-Tail -\UAB3C;Latin Small Letter Eng With Crossed-Tail -\UAB3D;Latin Small Letter Blackletter O -\UAB3E;Latin Small Letter Blackletter O With Stroke -\UAB3F;Latin Small Letter Open O With Stroke -\UAB40;Latin Small Letter Inverted Oe -\UAB41;Latin Small Letter Turned Oe With Stroke -\UAB42;Latin Small Letter Turned Oe With Horizontal Stroke -\UAB43;Latin Small Letter Turned O Open-O -\UAB44;Latin Small Letter Turned O Open-O With Stroke -\UAB45;Latin Small Letter Stirrup R -\UAB46;Latin Letter Small Capital R With Right Leg -\UAB47;Latin Small Letter R Without Handle -\UAB48;Latin Small Letter Double R -\UAB49;Latin Small Letter R With Crossed-Tail -\UAB4A;Latin Small Letter Double R With Crossed-Tail -\UAB4B;Latin Small Letter Script R -\UAB4C;Latin Small Letter Script R With Ring -\UAB4D;Latin Small Letter Baseline Esh -\UAB4E;Latin Small Letter U With Short Right Leg -\UAB4F;Latin Small Letter U Bar With Short Right Leg -\UAB50;Latin Small Letter Ui -\UAB51;Latin Small Letter Turned Ui -\UAB52;Latin Small Letter U With Left Hook -\UAB53;Latin Small Letter Chi -\UAB54;Latin Small Letter Chi With Low Right Ring -\UAB55;Latin Small Letter Chi With Low Left Serif -\UAB56;Latin Small Letter X With Low Right Ring -\UAB57;Latin Small Letter X With Long Left Leg -\UAB58;Latin Small Letter X With Long Left Leg And Low Right Ring -\UAB59;Latin Small Letter X With Long Left Leg With Serif -\UAB5A;Latin Small Letter Y With Short Right Leg -\UAB5B;Modifier Breve With Inverted Breve -\UAB5C;Modifier Letter Small Heng -\UAB5D;Modifier Letter Small L With Inverted Lazy S -\UAB5E;Modifier Letter Small L With Middle Tilde -\UAB5F;Modifier Letter Small U With Left Hook -\UAB60;Latin Small Letter Sakha Yat -\UAB61;Latin Small Letter Iotified E -\UAB62;Latin Small Letter Open Oe -\UAB63;Latin Small Letter Uo -\UAB64;Latin Small Letter Inverted Alpha -\UAB65;Greek Letter Small Capital Omega -\UAB66;Latin Small Letter Dz Digraph With Retroflex Hook -\UAB67;Latin Small Letter Ts Digraph With Retroflex Hook -\UAB68;Latin Small Letter Turned R With Middle Tilde -\UAB69;Modifier Letter Small Turned W -\UAB6A;Modifier Letter Left Tack -\UAB6B;Modifier Letter Right Tack -\UAB70;Cherokee Small Letter A -\UAB71;Cherokee Small Letter E -\UAB72;Cherokee Small Letter I -\UAB73;Cherokee Small Letter O -\UAB74;Cherokee Small Letter U -\UAB75;Cherokee Small Letter V -\UAB76;Cherokee Small Letter Ga -\UAB77;Cherokee Small Letter Ka -\UAB78;Cherokee Small Letter Ge -\UAB79;Cherokee Small Letter Gi -\UAB7A;Cherokee Small Letter Go -\UAB7B;Cherokee Small Letter Gu -\UAB7C;Cherokee Small Letter Gv -\UAB7D;Cherokee Small Letter Ha -\UAB7E;Cherokee Small Letter He -\UAB7F;Cherokee Small Letter Hi -\UAB80;Cherokee Small Letter Ho -\UAB81;Cherokee Small Letter Hu -\UAB82;Cherokee Small Letter Hv -\UAB83;Cherokee Small Letter La -\UAB84;Cherokee Small Letter Le -\UAB85;Cherokee Small Letter Li -\UAB86;Cherokee Small Letter Lo -\UAB87;Cherokee Small Letter Lu -\UAB88;Cherokee Small Letter Lv -\UAB89;Cherokee Small Letter Ma -\UAB8A;Cherokee Small Letter Me -\UAB8B;Cherokee Small Letter Mi -\UAB8C;Cherokee Small Letter Mo -\UAB8D;Cherokee Small Letter Mu -\UAB8E;Cherokee Small Letter Na -\UAB8F;Cherokee Small Letter Hna -\UAB90;Cherokee Small Letter Nah -\UAB91;Cherokee Small Letter Ne -\UAB92;Cherokee Small Letter Ni -\UAB93;Cherokee Small Letter No -\UAB94;Cherokee Small Letter Nu -\UAB95;Cherokee Small Letter Nv -\UAB96;Cherokee Small Letter Qua -\UAB97;Cherokee Small Letter Que -\UAB98;Cherokee Small Letter Qui -\UAB99;Cherokee Small Letter Quo -\UAB9A;Cherokee Small Letter Quu -\UAB9B;Cherokee Small Letter Quv -\UAB9C;Cherokee Small Letter Sa -\UAB9D;Cherokee Small Letter S -\UAB9E;Cherokee Small Letter Se -\UAB9F;Cherokee Small Letter Si -\UABA0;Cherokee Small Letter So -\UABA1;Cherokee Small Letter Su -\UABA2;Cherokee Small Letter Sv -\UABA3;Cherokee Small Letter Da -\UABA4;Cherokee Small Letter Ta -\UABA5;Cherokee Small Letter De -\UABA6;Cherokee Small Letter Te -\UABA7;Cherokee Small Letter Di -\UABA8;Cherokee Small Letter Ti -\UABA9;Cherokee Small Letter Do -\UABAA;Cherokee Small Letter Du -\UABAB;Cherokee Small Letter Dv -\UABAC;Cherokee Small Letter Dla -\UABAD;Cherokee Small Letter Tla -\UABAE;Cherokee Small Letter Tle -\UABAF;Cherokee Small Letter Tli -\UABB0;Cherokee Small Letter Tlo -\UABB1;Cherokee Small Letter Tlu -\UABB2;Cherokee Small Letter Tlv -\UABB3;Cherokee Small Letter Tsa -\UABB4;Cherokee Small Letter Tse -\UABB5;Cherokee Small Letter Tsi -\UABB6;Cherokee Small Letter Tso -\UABB7;Cherokee Small Letter Tsu -\UABB8;Cherokee Small Letter Tsv -\UABB9;Cherokee Small Letter Wa -\UABBA;Cherokee Small Letter We -\UABBB;Cherokee Small Letter Wi -\UABBC;Cherokee Small Letter Wo -\UABBD;Cherokee Small Letter Wu -\UABBE;Cherokee Small Letter Wv -\UABBF;Cherokee Small Letter Ya -\UABC0;Meetei Mayek Letter Kok -\UABC1;Meetei Mayek Letter Sam -\UABC2;Meetei Mayek Letter Lai -\UABC3;Meetei Mayek Letter Mit -\UABC4;Meetei Mayek Letter Pa -\UABC5;Meetei Mayek Letter Na -\UABC6;Meetei Mayek Letter Chil -\UABC7;Meetei Mayek Letter Til -\UABC8;Meetei Mayek Letter Khou -\UABC9;Meetei Mayek Letter Ngou -\UABCA;Meetei Mayek Letter Thou -\UABCB;Meetei Mayek Letter Wai -\UABCC;Meetei Mayek Letter Yang -\UABCD;Meetei Mayek Letter Huk -\UABCE;Meetei Mayek Letter Un -\UABCF;Meetei Mayek Letter I -\UABD0;Meetei Mayek Letter Pham -\UABD1;Meetei Mayek Letter Atiya -\UABD2;Meetei Mayek Letter Gok -\UABD3;Meetei Mayek Letter Jham -\UABD4;Meetei Mayek Letter Rai -\UABD5;Meetei Mayek Letter Ba -\UABD6;Meetei Mayek Letter Jil -\UABD7;Meetei Mayek Letter Dil -\UABD8;Meetei Mayek Letter Ghou -\UABD9;Meetei Mayek Letter Dhou -\UABDA;Meetei Mayek Letter Bham -\UABDB;Meetei Mayek Letter Kok Lonsum -\UABDC;Meetei Mayek Letter Lai Lonsum -\UABDD;Meetei Mayek Letter Mit Lonsum -\UABDE;Meetei Mayek Letter Pa Lonsum -\UABDF;Meetei Mayek Letter Na Lonsum -\UABE0;Meetei Mayek Letter Til Lonsum -\UABE1;Meetei Mayek Letter Ngou Lonsum -\UABE2;Meetei Mayek Letter I Lonsum -\UABE3;Meetei Mayek Vowel Sign Onap -\UABE4;Meetei Mayek Vowel Sign Inap -\UABE5;Meetei Mayek Vowel Sign Anap -\UABE6;Meetei Mayek Vowel Sign Yenap -\UABE7;Meetei Mayek Vowel Sign Sounap -\UABE8;Meetei Mayek Vowel Sign Unap -\UABE9;Meetei Mayek Vowel Sign Cheinap -\UABEA;Meetei Mayek Vowel Sign Nung -\UABEB;Meetei Mayek Cheikhei -\UABEC;Meetei Mayek Lum Iyek -\UABED;Meetei Mayek Apun Iyek -\UABF0;Meetei Mayek Digit Zero -\UABF1;Meetei Mayek Digit One -\UABF2;Meetei Mayek Digit Two -\UABF3;Meetei Mayek Digit Three -\UABF4;Meetei Mayek Digit Four -\UABF5;Meetei Mayek Digit Five -\UABF6;Meetei Mayek Digit Six -\UABF7;Meetei Mayek Digit Seven -\UABF8;Meetei Mayek Digit Eight -\UABF9;Meetei Mayek Digit Nine -\UD7B0;Hangul Jungseong O-Yeo -\UD7B1;Hangul Jungseong O-O-I -\UD7B2;Hangul Jungseong Yo-A -\UD7B3;Hangul Jungseong Yo-Ae -\UD7B4;Hangul Jungseong Yo-Eo -\UD7B5;Hangul Jungseong U-Yeo -\UD7B6;Hangul Jungseong U-I-I -\UD7B7;Hangul Jungseong Yu-Ae -\UD7B8;Hangul Jungseong Yu-O -\UD7B9;Hangul Jungseong Eu-A -\UD7BA;Hangul Jungseong Eu-Eo -\UD7BB;Hangul Jungseong Eu-E -\UD7BC;Hangul Jungseong Eu-O -\UD7BD;Hangul Jungseong I-Ya-O -\UD7BE;Hangul Jungseong I-Yae -\UD7BF;Hangul Jungseong I-Yeo -\UD7C0;Hangul Jungseong I-Ye -\UD7C1;Hangul Jungseong I-O-I -\UD7C2;Hangul Jungseong I-Yo -\UD7C3;Hangul Jungseong I-Yu -\UD7C4;Hangul Jungseong I-I -\UD7C5;Hangul Jungseong Araea-A -\UD7C6;Hangul Jungseong Araea-E -\UD7CB;Hangul Jongseong Nieun-Rieul -\UD7CC;Hangul Jongseong Nieun-Chieuch -\UD7CD;Hangul Jongseong Ssangtikeut -\UD7CE;Hangul Jongseong Ssangtikeut-Pieup -\UD7CF;Hangul Jongseong Tikeut-Pieup -\UD7D0;Hangul Jongseong Tikeut-Sios -\UD7D1;Hangul Jongseong Tikeut-Sios-Kiyeok -\UD7D2;Hangul Jongseong Tikeut-Cieuc -\UD7D3;Hangul Jongseong Tikeut-Chieuch -\UD7D4;Hangul Jongseong Tikeut-Thieuth -\UD7D5;Hangul Jongseong Rieul-Ssangkiyeok -\UD7D6;Hangul Jongseong Rieul-Kiyeok-Hieuh -\UD7D7;Hangul Jongseong Ssangrieul-Khieukh -\UD7D8;Hangul Jongseong Rieul-Mieum-Hieuh -\UD7D9;Hangul Jongseong Rieul-Pieup-Tikeut -\UD7DA;Hangul Jongseong Rieul-Pieup-Phieuph -\UD7DB;Hangul Jongseong Rieul-Yesieung -\UD7DC;Hangul Jongseong Rieul-Yeorinhieuh-Hieuh -\UD7DD;Hangul Jongseong Kapyeounrieul -\UD7DE;Hangul Jongseong Mieum-Nieun -\UD7DF;Hangul Jongseong Mieum-Ssangnieun -\UD7E0;Hangul Jongseong Ssangmieum -\UD7E1;Hangul Jongseong Mieum-Pieup-Sios -\UD7E2;Hangul Jongseong Mieum-Cieuc -\UD7E3;Hangul Jongseong Pieup-Tikeut -\UD7E4;Hangul Jongseong Pieup-Rieul-Phieuph -\UD7E5;Hangul Jongseong Pieup-Mieum -\UD7E6;Hangul Jongseong Ssangpieup -\UD7E7;Hangul Jongseong Pieup-Sios-Tikeut -\UD7E8;Hangul Jongseong Pieup-Cieuc -\UD7E9;Hangul Jongseong Pieup-Chieuch -\UD7EA;Hangul Jongseong Sios-Mieum -\UD7EB;Hangul Jongseong Sios-Kapyeounpieup -\UD7EC;Hangul Jongseong Ssangsios-Kiyeok -\UD7ED;Hangul Jongseong Ssangsios-Tikeut -\UD7EE;Hangul Jongseong Sios-Pansios -\UD7EF;Hangul Jongseong Sios-Cieuc -\UD7F0;Hangul Jongseong Sios-Chieuch -\UD7F1;Hangul Jongseong Sios-Thieuth -\UD7F2;Hangul Jongseong Sios-Hieuh -\UD7F3;Hangul Jongseong Pansios-Pieup -\UD7F4;Hangul Jongseong Pansios-Kapyeounpieup -\UD7F5;Hangul Jongseong Yesieung-Mieum -\UD7F6;Hangul Jongseong Yesieung-Hieuh -\UD7F7;Hangul Jongseong Cieuc-Pieup -\UD7F8;Hangul Jongseong Cieuc-Ssangpieup -\UD7F9;Hangul Jongseong Ssangcieuc -\UD7FA;Hangul Jongseong Phieuph-Sios -\UD7FB;Hangul Jongseong Phieuph-Thieuth -\UFB00;Latin Small Ligature Ff -\UFB01;Latin Small Ligature Fi -\UFB02;Latin Small Ligature Fl -\UFB03;Latin Small Ligature Ffi -\UFB04;Latin Small Ligature Ffl -\UFB05;Latin Small Ligature Long S T -\UFB06;Latin Small Ligature St -\UFB13;Armenian Small Ligature Men Now -\UFB14;Armenian Small Ligature Men Ech -\UFB15;Armenian Small Ligature Men Ini -\UFB16;Armenian Small Ligature Vew Now -\UFB17;Armenian Small Ligature Men Xeh -\UFB1D;Hebrew Letter Yod With Hiriq -\UFB1E;Hebrew Point Judeo-Spanish Varika -\UFB1F;Hebrew Ligature Yiddish Yod Yod Patah -\UFB20;Hebrew Letter Alternative Ayin -\UFB21;Hebrew Letter Wide Alef -\UFB22;Hebrew Letter Wide Dalet -\UFB23;Hebrew Letter Wide He -\UFB24;Hebrew Letter Wide Kaf -\UFB25;Hebrew Letter Wide Lamed -\UFB26;Hebrew Letter Wide Final Mem -\UFB27;Hebrew Letter Wide Resh -\UFB28;Hebrew Letter Wide Tav -\UFB29;Hebrew Letter Alternative Plus Sign -\UFB2A;Hebrew Letter Shin With Shin Dot -\UFB2B;Hebrew Letter Shin With Sin Dot -\UFB2C;Hebrew Letter Shin With Dagesh And Shin Dot -\UFB2D;Hebrew Letter Shin With Dagesh And Sin Dot -\UFB2E;Hebrew Letter Alef With Patah -\UFB2F;Hebrew Letter Alef With Qamats -\UFB30;Hebrew Letter Alef With Mapiq -\UFB31;Hebrew Letter Bet With Dagesh -\UFB32;Hebrew Letter Gimel With Dagesh -\UFB33;Hebrew Letter Dalet With Dagesh -\UFB34;Hebrew Letter He With Mapiq -\UFB35;Hebrew Letter Vav With Dagesh -\UFB36;Hebrew Letter Zayin With Dagesh -\UFB38;Hebrew Letter Tet With Dagesh -\UFB39;Hebrew Letter Yod With Dagesh -\UFB3A;Hebrew Letter Final Kaf With Dagesh -\UFB3B;Hebrew Letter Kaf With Dagesh -\UFB3C;Hebrew Letter Lamed With Dagesh -\UFB3E;Hebrew Letter Mem With Dagesh -\UFB40;Hebrew Letter Nun With Dagesh -\UFB41;Hebrew Letter Samekh With Dagesh -\UFB43;Hebrew Letter Final Pe With Dagesh -\UFB44;Hebrew Letter Pe With Dagesh -\UFB46;Hebrew Letter Tsadi With Dagesh -\UFB47;Hebrew Letter Qof With Dagesh -\UFB48;Hebrew Letter Resh With Dagesh -\UFB49;Hebrew Letter Shin With Dagesh -\UFB4A;Hebrew Letter Tav With Dagesh -\UFB4B;Hebrew Letter Vav With Holam -\UFB4C;Hebrew Letter Bet With Rafe -\UFB4D;Hebrew Letter Kaf With Rafe -\UFB4E;Hebrew Letter Pe With Rafe -\UFB4F;Hebrew Ligature Alef Lamed -\UFB50;Arabic Letter Alef Wasla Isolated Form -\UFB51;Arabic Letter Alef Wasla Final Form -\UFB52;Arabic Letter Beeh Isolated Form -\UFB53;Arabic Letter Beeh Final Form -\UFB54;Arabic Letter Beeh Initial Form -\UFB55;Arabic Letter Beeh Medial Form -\UFB56;Arabic Letter Peh Isolated Form -\UFB57;Arabic Letter Peh Final Form -\UFB58;Arabic Letter Peh Initial Form -\UFB59;Arabic Letter Peh Medial Form -\UFB5A;Arabic Letter Beheh Isolated Form -\UFB5B;Arabic Letter Beheh Final Form -\UFB5C;Arabic Letter Beheh Initial Form -\UFB5D;Arabic Letter Beheh Medial Form -\UFB5E;Arabic Letter Tteheh Isolated Form -\UFB5F;Arabic Letter Tteheh Final Form -\UFB60;Arabic Letter Tteheh Initial Form -\UFB61;Arabic Letter Tteheh Medial Form -\UFB62;Arabic Letter Teheh Isolated Form -\UFB63;Arabic Letter Teheh Final Form -\UFB64;Arabic Letter Teheh Initial Form -\UFB65;Arabic Letter Teheh Medial Form -\UFB66;Arabic Letter Tteh Isolated Form -\UFB67;Arabic Letter Tteh Final Form -\UFB68;Arabic Letter Tteh Initial Form -\UFB69;Arabic Letter Tteh Medial Form -\UFB6A;Arabic Letter Veh Isolated Form -\UFB6B;Arabic Letter Veh Final Form -\UFB6C;Arabic Letter Veh Initial Form -\UFB6D;Arabic Letter Veh Medial Form -\UFB6E;Arabic Letter Peheh Isolated Form -\UFB6F;Arabic Letter Peheh Final Form -\UFB70;Arabic Letter Peheh Initial Form -\UFB71;Arabic Letter Peheh Medial Form -\UFB72;Arabic Letter Dyeh Isolated Form -\UFB73;Arabic Letter Dyeh Final Form -\UFB74;Arabic Letter Dyeh Initial Form -\UFB75;Arabic Letter Dyeh Medial Form -\UFB76;Arabic Letter Nyeh Isolated Form -\UFB77;Arabic Letter Nyeh Final Form -\UFB78;Arabic Letter Nyeh Initial Form -\UFB79;Arabic Letter Nyeh Medial Form -\UFB7A;Arabic Letter Tcheh Isolated Form -\UFB7B;Arabic Letter Tcheh Final Form -\UFB7C;Arabic Letter Tcheh Initial Form -\UFB7D;Arabic Letter Tcheh Medial Form -\UFB7E;Arabic Letter Tcheheh Isolated Form -\UFB7F;Arabic Letter Tcheheh Final Form -\UFB80;Arabic Letter Tcheheh Initial Form -\UFB81;Arabic Letter Tcheheh Medial Form -\UFB82;Arabic Letter Ddahal Isolated Form -\UFB83;Arabic Letter Ddahal Final Form -\UFB84;Arabic Letter Dahal Isolated Form -\UFB85;Arabic Letter Dahal Final Form -\UFB86;Arabic Letter Dul Isolated Form -\UFB87;Arabic Letter Dul Final Form -\UFB88;Arabic Letter Ddal Isolated Form -\UFB89;Arabic Letter Ddal Final Form -\UFB8A;Arabic Letter Jeh Isolated Form -\UFB8B;Arabic Letter Jeh Final Form -\UFB8C;Arabic Letter Rreh Isolated Form -\UFB8D;Arabic Letter Rreh Final Form -\UFB8E;Arabic Letter Keheh Isolated Form -\UFB8F;Arabic Letter Keheh Final Form -\UFB90;Arabic Letter Keheh Initial Form -\UFB91;Arabic Letter Keheh Medial Form -\UFB92;Arabic Letter Gaf Isolated Form -\UFB93;Arabic Letter Gaf Final Form -\UFB94;Arabic Letter Gaf Initial Form -\UFB95;Arabic Letter Gaf Medial Form -\UFB96;Arabic Letter Gueh Isolated Form -\UFB97;Arabic Letter Gueh Final Form -\UFB98;Arabic Letter Gueh Initial Form -\UFB99;Arabic Letter Gueh Medial Form -\UFB9A;Arabic Letter Ngoeh Isolated Form -\UFB9B;Arabic Letter Ngoeh Final Form -\UFB9C;Arabic Letter Ngoeh Initial Form -\UFB9D;Arabic Letter Ngoeh Medial Form -\UFB9E;Arabic Letter Noon Ghunna Isolated Form -\UFB9F;Arabic Letter Noon Ghunna Final Form -\UFBA0;Arabic Letter Rnoon Isolated Form -\UFBA1;Arabic Letter Rnoon Final Form -\UFBA2;Arabic Letter Rnoon Initial Form -\UFBA3;Arabic Letter Rnoon Medial Form -\UFBA4;Arabic Letter Heh With Yeh Above Isolated Form -\UFBA5;Arabic Letter Heh With Yeh Above Final Form -\UFBA6;Arabic Letter Heh Goal Isolated Form -\UFBA7;Arabic Letter Heh Goal Final Form -\UFBA8;Arabic Letter Heh Goal Initial Form -\UFBA9;Arabic Letter Heh Goal Medial Form -\UFBAA;Arabic Letter Heh Doachashmee Isolated Form -\UFBAB;Arabic Letter Heh Doachashmee Final Form -\UFBAC;Arabic Letter Heh Doachashmee Initial Form -\UFBAD;Arabic Letter Heh Doachashmee Medial Form -\UFBAE;Arabic Letter Yeh Barree Isolated Form -\UFBAF;Arabic Letter Yeh Barree Final Form -\UFBB0;Arabic Letter Yeh Barree With Hamza Above Isolated Form -\UFBB1;Arabic Letter Yeh Barree With Hamza Above Final Form -\UFBB2;Arabic Symbol Dot Above -\UFBB3;Arabic Symbol Dot Below -\UFBB4;Arabic Symbol Two Dots Above -\UFBB5;Arabic Symbol Two Dots Below -\UFBB6;Arabic Symbol Three Dots Above -\UFBB7;Arabic Symbol Three Dots Below -\UFBB8;Arabic Symbol Three Dots Pointing Downwards Above -\UFBB9;Arabic Symbol Three Dots Pointing Downwards Below -\UFBBA;Arabic Symbol Four Dots Above -\UFBBB;Arabic Symbol Four Dots Below -\UFBBC;Arabic Symbol Double Vertical Bar Below -\UFBBD;Arabic Symbol Two Dots Vertically Above -\UFBBE;Arabic Symbol Two Dots Vertically Below -\UFBBF;Arabic Symbol Ring -\UFBC0;Arabic Symbol Small Tah Above -\UFBC1;Arabic Symbol Small Tah Below -\UFBC2;Arabic Symbol Wasla Above -\UFBD3;Arabic Letter Ng Isolated Form -\UFBD4;Arabic Letter Ng Final Form -\UFBD5;Arabic Letter Ng Initial Form -\UFBD6;Arabic Letter Ng Medial Form -\UFBD7;Arabic Letter U Isolated Form -\UFBD8;Arabic Letter U Final Form -\UFBD9;Arabic Letter Oe Isolated Form -\UFBDA;Arabic Letter Oe Final Form -\UFBDB;Arabic Letter Yu Isolated Form -\UFBDC;Arabic Letter Yu Final Form -\UFBDD;Arabic Letter U With Hamza Above Isolated Form -\UFBDE;Arabic Letter Ve Isolated Form -\UFBDF;Arabic Letter Ve Final Form -\UFBE0;Arabic Letter Kirghiz Oe Isolated Form -\UFBE1;Arabic Letter Kirghiz Oe Final Form -\UFBE2;Arabic Letter Kirghiz Yu Isolated Form -\UFBE3;Arabic Letter Kirghiz Yu Final Form -\UFBE4;Arabic Letter E Isolated Form -\UFBE5;Arabic Letter E Final Form -\UFBE6;Arabic Letter E Initial Form -\UFBE7;Arabic Letter E Medial Form -\UFBE8;Arabic Letter Uighur Kazakh Kirghiz Alef Maksura Initial Form -\UFBE9;Arabic Letter Uighur Kazakh Kirghiz Alef Maksura Medial Form -\UFBEA;Arabic Ligature Yeh With Hamza Above With Alef Isolated Form -\UFBEB;Arabic Ligature Yeh With Hamza Above With Alef Final Form -\UFBEC;Arabic Ligature Yeh With Hamza Above With Ae Isolated Form -\UFBED;Arabic Ligature Yeh With Hamza Above With Ae Final Form -\UFBEE;Arabic Ligature Yeh With Hamza Above With Waw Isolated Form -\UFBEF;Arabic Ligature Yeh With Hamza Above With Waw Final Form -\UFBF0;Arabic Ligature Yeh With Hamza Above With U Isolated Form -\UFBF1;Arabic Ligature Yeh With Hamza Above With U Final Form -\UFBF2;Arabic Ligature Yeh With Hamza Above With Oe Isolated Form -\UFBF3;Arabic Ligature Yeh With Hamza Above With Oe Final Form -\UFBF4;Arabic Ligature Yeh With Hamza Above With Yu Isolated Form -\UFBF5;Arabic Ligature Yeh With Hamza Above With Yu Final Form -\UFBF6;Arabic Ligature Yeh With Hamza Above With E Isolated Form -\UFBF7;Arabic Ligature Yeh With Hamza Above With E Final Form -\UFBF8;Arabic Ligature Yeh With Hamza Above With E Initial Form -\UFBF9;Arabic Ligature Uighur Kirghiz Yeh With Hamza Above With Alef Maksura Isolated Form -\UFBFA;Arabic Ligature Uighur Kirghiz Yeh With Hamza Above With Alef Maksura Final Form -\UFBFB;Arabic Ligature Uighur Kirghiz Yeh With Hamza Above With Alef Maksura Initial Form -\UFBFC;Arabic Letter Farsi Yeh Isolated Form -\UFBFD;Arabic Letter Farsi Yeh Final Form -\UFBFE;Arabic Letter Farsi Yeh Initial Form -\UFBFF;Arabic Letter Farsi Yeh Medial Form -\UFC00;Arabic Ligature Yeh With Hamza Above With Jeem Isolated Form -\UFC01;Arabic Ligature Yeh With Hamza Above With Hah Isolated Form -\UFC02;Arabic Ligature Yeh With Hamza Above With Meem Isolated Form -\UFC03;Arabic Ligature Yeh With Hamza Above With Alef Maksura Isolated Form -\UFC04;Arabic Ligature Yeh With Hamza Above With Yeh Isolated Form -\UFC05;Arabic Ligature Beh With Jeem Isolated Form -\UFC06;Arabic Ligature Beh With Hah Isolated Form -\UFC07;Arabic Ligature Beh With Khah Isolated Form -\UFC08;Arabic Ligature Beh With Meem Isolated Form -\UFC09;Arabic Ligature Beh With Alef Maksura Isolated Form -\UFC0A;Arabic Ligature Beh With Yeh Isolated Form -\UFC0B;Arabic Ligature Teh With Jeem Isolated Form -\UFC0C;Arabic Ligature Teh With Hah Isolated Form -\UFC0D;Arabic Ligature Teh With Khah Isolated Form -\UFC0E;Arabic Ligature Teh With Meem Isolated Form -\UFC0F;Arabic Ligature Teh With Alef Maksura Isolated Form -\UFC10;Arabic Ligature Teh With Yeh Isolated Form -\UFC11;Arabic Ligature Theh With Jeem Isolated Form -\UFC12;Arabic Ligature Theh With Meem Isolated Form -\UFC13;Arabic Ligature Theh With Alef Maksura Isolated Form -\UFC14;Arabic Ligature Theh With Yeh Isolated Form -\UFC15;Arabic Ligature Jeem With Hah Isolated Form -\UFC16;Arabic Ligature Jeem With Meem Isolated Form -\UFC17;Arabic Ligature Hah With Jeem Isolated Form -\UFC18;Arabic Ligature Hah With Meem Isolated Form -\UFC19;Arabic Ligature Khah With Jeem Isolated Form -\UFC1A;Arabic Ligature Khah With Hah Isolated Form -\UFC1B;Arabic Ligature Khah With Meem Isolated Form -\UFC1C;Arabic Ligature Seen With Jeem Isolated Form -\UFC1D;Arabic Ligature Seen With Hah Isolated Form -\UFC1E;Arabic Ligature Seen With Khah Isolated Form -\UFC1F;Arabic Ligature Seen With Meem Isolated Form -\UFC20;Arabic Ligature Sad With Hah Isolated Form -\UFC21;Arabic Ligature Sad With Meem Isolated Form -\UFC22;Arabic Ligature Dad With Jeem Isolated Form -\UFC23;Arabic Ligature Dad With Hah Isolated Form -\UFC24;Arabic Ligature Dad With Khah Isolated Form -\UFC25;Arabic Ligature Dad With Meem Isolated Form -\UFC26;Arabic Ligature Tah With Hah Isolated Form -\UFC27;Arabic Ligature Tah With Meem Isolated Form -\UFC28;Arabic Ligature Zah With Meem Isolated Form -\UFC29;Arabic Ligature Ain With Jeem Isolated Form -\UFC2A;Arabic Ligature Ain With Meem Isolated Form -\UFC2B;Arabic Ligature Ghain With Jeem Isolated Form -\UFC2C;Arabic Ligature Ghain With Meem Isolated Form -\UFC2D;Arabic Ligature Feh With Jeem Isolated Form -\UFC2E;Arabic Ligature Feh With Hah Isolated Form -\UFC2F;Arabic Ligature Feh With Khah Isolated Form -\UFC30;Arabic Ligature Feh With Meem Isolated Form -\UFC31;Arabic Ligature Feh With Alef Maksura Isolated Form -\UFC32;Arabic Ligature Feh With Yeh Isolated Form -\UFC33;Arabic Ligature Qaf With Hah Isolated Form -\UFC34;Arabic Ligature Qaf With Meem Isolated Form -\UFC35;Arabic Ligature Qaf With Alef Maksura Isolated Form -\UFC36;Arabic Ligature Qaf With Yeh Isolated Form -\UFC37;Arabic Ligature Kaf With Alef Isolated Form -\UFC38;Arabic Ligature Kaf With Jeem Isolated Form -\UFC39;Arabic Ligature Kaf With Hah Isolated Form -\UFC3A;Arabic Ligature Kaf With Khah Isolated Form -\UFC3B;Arabic Ligature Kaf With Lam Isolated Form -\UFC3C;Arabic Ligature Kaf With Meem Isolated Form -\UFC3D;Arabic Ligature Kaf With Alef Maksura Isolated Form -\UFC3E;Arabic Ligature Kaf With Yeh Isolated Form -\UFC3F;Arabic Ligature Lam With Jeem Isolated Form -\UFC40;Arabic Ligature Lam With Hah Isolated Form -\UFC41;Arabic Ligature Lam With Khah Isolated Form -\UFC42;Arabic Ligature Lam With Meem Isolated Form -\UFC43;Arabic Ligature Lam With Alef Maksura Isolated Form -\UFC44;Arabic Ligature Lam With Yeh Isolated Form -\UFC45;Arabic Ligature Meem With Jeem Isolated Form -\UFC46;Arabic Ligature Meem With Hah Isolated Form -\UFC47;Arabic Ligature Meem With Khah Isolated Form -\UFC48;Arabic Ligature Meem With Meem Isolated Form -\UFC49;Arabic Ligature Meem With Alef Maksura Isolated Form -\UFC4A;Arabic Ligature Meem With Yeh Isolated Form -\UFC4B;Arabic Ligature Noon With Jeem Isolated Form -\UFC4C;Arabic Ligature Noon With Hah Isolated Form -\UFC4D;Arabic Ligature Noon With Khah Isolated Form -\UFC4E;Arabic Ligature Noon With Meem Isolated Form -\UFC4F;Arabic Ligature Noon With Alef Maksura Isolated Form -\UFC50;Arabic Ligature Noon With Yeh Isolated Form -\UFC51;Arabic Ligature Heh With Jeem Isolated Form -\UFC52;Arabic Ligature Heh With Meem Isolated Form -\UFC53;Arabic Ligature Heh With Alef Maksura Isolated Form -\UFC54;Arabic Ligature Heh With Yeh Isolated Form -\UFC55;Arabic Ligature Yeh With Jeem Isolated Form -\UFC56;Arabic Ligature Yeh With Hah Isolated Form -\UFC57;Arabic Ligature Yeh With Khah Isolated Form -\UFC58;Arabic Ligature Yeh With Meem Isolated Form -\UFC59;Arabic Ligature Yeh With Alef Maksura Isolated Form -\UFC5A;Arabic Ligature Yeh With Yeh Isolated Form -\UFC5B;Arabic Ligature Thal With Superscript Alef Isolated Form -\UFC5C;Arabic Ligature Reh With Superscript Alef Isolated Form -\UFC5D;Arabic Ligature Alef Maksura With Superscript Alef Isolated Form -\UFC5E;Arabic Ligature Shadda With Dammatan Isolated Form -\UFC5F;Arabic Ligature Shadda With Kasratan Isolated Form -\UFC60;Arabic Ligature Shadda With Fatha Isolated Form -\UFC61;Arabic Ligature Shadda With Damma Isolated Form -\UFC62;Arabic Ligature Shadda With Kasra Isolated Form -\UFC63;Arabic Ligature Shadda With Superscript Alef Isolated Form -\UFC64;Arabic Ligature Yeh With Hamza Above With Reh Final Form -\UFC65;Arabic Ligature Yeh With Hamza Above With Zain Final Form -\UFC66;Arabic Ligature Yeh With Hamza Above With Meem Final Form -\UFC67;Arabic Ligature Yeh With Hamza Above With Noon Final Form -\UFC68;Arabic Ligature Yeh With Hamza Above With Alef Maksura Final Form -\UFC69;Arabic Ligature Yeh With Hamza Above With Yeh Final Form -\UFC6A;Arabic Ligature Beh With Reh Final Form -\UFC6B;Arabic Ligature Beh With Zain Final Form -\UFC6C;Arabic Ligature Beh With Meem Final Form -\UFC6D;Arabic Ligature Beh With Noon Final Form -\UFC6E;Arabic Ligature Beh With Alef Maksura Final Form -\UFC6F;Arabic Ligature Beh With Yeh Final Form -\UFC70;Arabic Ligature Teh With Reh Final Form -\UFC71;Arabic Ligature Teh With Zain Final Form -\UFC72;Arabic Ligature Teh With Meem Final Form -\UFC73;Arabic Ligature Teh With Noon Final Form -\UFC74;Arabic Ligature Teh With Alef Maksura Final Form -\UFC75;Arabic Ligature Teh With Yeh Final Form -\UFC76;Arabic Ligature Theh With Reh Final Form -\UFC77;Arabic Ligature Theh With Zain Final Form -\UFC78;Arabic Ligature Theh With Meem Final Form -\UFC79;Arabic Ligature Theh With Noon Final Form -\UFC7A;Arabic Ligature Theh With Alef Maksura Final Form -\UFC7B;Arabic Ligature Theh With Yeh Final Form -\UFC7C;Arabic Ligature Feh With Alef Maksura Final Form -\UFC7D;Arabic Ligature Feh With Yeh Final Form -\UFC7E;Arabic Ligature Qaf With Alef Maksura Final Form -\UFC7F;Arabic Ligature Qaf With Yeh Final Form -\UFC80;Arabic Ligature Kaf With Alef Final Form -\UFC81;Arabic Ligature Kaf With Lam Final Form -\UFC82;Arabic Ligature Kaf With Meem Final Form -\UFC83;Arabic Ligature Kaf With Alef Maksura Final Form -\UFC84;Arabic Ligature Kaf With Yeh Final Form -\UFC85;Arabic Ligature Lam With Meem Final Form -\UFC86;Arabic Ligature Lam With Alef Maksura Final Form -\UFC87;Arabic Ligature Lam With Yeh Final Form -\UFC88;Arabic Ligature Meem With Alef Final Form -\UFC89;Arabic Ligature Meem With Meem Final Form -\UFC8A;Arabic Ligature Noon With Reh Final Form -\UFC8B;Arabic Ligature Noon With Zain Final Form -\UFC8C;Arabic Ligature Noon With Meem Final Form -\UFC8D;Arabic Ligature Noon With Noon Final Form -\UFC8E;Arabic Ligature Noon With Alef Maksura Final Form -\UFC8F;Arabic Ligature Noon With Yeh Final Form -\UFC90;Arabic Ligature Alef Maksura With Superscript Alef Final Form -\UFC91;Arabic Ligature Yeh With Reh Final Form -\UFC92;Arabic Ligature Yeh With Zain Final Form -\UFC93;Arabic Ligature Yeh With Meem Final Form -\UFC94;Arabic Ligature Yeh With Noon Final Form -\UFC95;Arabic Ligature Yeh With Alef Maksura Final Form -\UFC96;Arabic Ligature Yeh With Yeh Final Form -\UFC97;Arabic Ligature Yeh With Hamza Above With Jeem Initial Form -\UFC98;Arabic Ligature Yeh With Hamza Above With Hah Initial Form -\UFC99;Arabic Ligature Yeh With Hamza Above With Khah Initial Form -\UFC9A;Arabic Ligature Yeh With Hamza Above With Meem Initial Form -\UFC9B;Arabic Ligature Yeh With Hamza Above With Heh Initial Form -\UFC9C;Arabic Ligature Beh With Jeem Initial Form -\UFC9D;Arabic Ligature Beh With Hah Initial Form -\UFC9E;Arabic Ligature Beh With Khah Initial Form -\UFC9F;Arabic Ligature Beh With Meem Initial Form -\UFCA0;Arabic Ligature Beh With Heh Initial Form -\UFCA1;Arabic Ligature Teh With Jeem Initial Form -\UFCA2;Arabic Ligature Teh With Hah Initial Form -\UFCA3;Arabic Ligature Teh With Khah Initial Form -\UFCA4;Arabic Ligature Teh With Meem Initial Form -\UFCA5;Arabic Ligature Teh With Heh Initial Form -\UFCA6;Arabic Ligature Theh With Meem Initial Form -\UFCA7;Arabic Ligature Jeem With Hah Initial Form -\UFCA8;Arabic Ligature Jeem With Meem Initial Form -\UFCA9;Arabic Ligature Hah With Jeem Initial Form -\UFCAA;Arabic Ligature Hah With Meem Initial Form -\UFCAB;Arabic Ligature Khah With Jeem Initial Form -\UFCAC;Arabic Ligature Khah With Meem Initial Form -\UFCAD;Arabic Ligature Seen With Jeem Initial Form -\UFCAE;Arabic Ligature Seen With Hah Initial Form -\UFCAF;Arabic Ligature Seen With Khah Initial Form -\UFCB0;Arabic Ligature Seen With Meem Initial Form -\UFCB1;Arabic Ligature Sad With Hah Initial Form -\UFCB2;Arabic Ligature Sad With Khah Initial Form -\UFCB3;Arabic Ligature Sad With Meem Initial Form -\UFCB4;Arabic Ligature Dad With Jeem Initial Form -\UFCB5;Arabic Ligature Dad With Hah Initial Form -\UFCB6;Arabic Ligature Dad With Khah Initial Form -\UFCB7;Arabic Ligature Dad With Meem Initial Form -\UFCB8;Arabic Ligature Tah With Hah Initial Form -\UFCB9;Arabic Ligature Zah With Meem Initial Form -\UFCBA;Arabic Ligature Ain With Jeem Initial Form -\UFCBB;Arabic Ligature Ain With Meem Initial Form -\UFCBC;Arabic Ligature Ghain With Jeem Initial Form -\UFCBD;Arabic Ligature Ghain With Meem Initial Form -\UFCBE;Arabic Ligature Feh With Jeem Initial Form -\UFCBF;Arabic Ligature Feh With Hah Initial Form -\UFCC0;Arabic Ligature Feh With Khah Initial Form -\UFCC1;Arabic Ligature Feh With Meem Initial Form -\UFCC2;Arabic Ligature Qaf With Hah Initial Form -\UFCC3;Arabic Ligature Qaf With Meem Initial Form -\UFCC4;Arabic Ligature Kaf With Jeem Initial Form -\UFCC5;Arabic Ligature Kaf With Hah Initial Form -\UFCC6;Arabic Ligature Kaf With Khah Initial Form -\UFCC7;Arabic Ligature Kaf With Lam Initial Form -\UFCC8;Arabic Ligature Kaf With Meem Initial Form -\UFCC9;Arabic Ligature Lam With Jeem Initial Form -\UFCCA;Arabic Ligature Lam With Hah Initial Form -\UFCCB;Arabic Ligature Lam With Khah Initial Form -\UFCCC;Arabic Ligature Lam With Meem Initial Form -\UFCCD;Arabic Ligature Lam With Heh Initial Form -\UFCCE;Arabic Ligature Meem With Jeem Initial Form -\UFCCF;Arabic Ligature Meem With Hah Initial Form -\UFCD0;Arabic Ligature Meem With Khah Initial Form -\UFCD1;Arabic Ligature Meem With Meem Initial Form -\UFCD2;Arabic Ligature Noon With Jeem Initial Form -\UFCD3;Arabic Ligature Noon With Hah Initial Form -\UFCD4;Arabic Ligature Noon With Khah Initial Form -\UFCD5;Arabic Ligature Noon With Meem Initial Form -\UFCD6;Arabic Ligature Noon With Heh Initial Form -\UFCD7;Arabic Ligature Heh With Jeem Initial Form -\UFCD8;Arabic Ligature Heh With Meem Initial Form -\UFCD9;Arabic Ligature Heh With Superscript Alef Initial Form -\UFCDA;Arabic Ligature Yeh With Jeem Initial Form -\UFCDB;Arabic Ligature Yeh With Hah Initial Form -\UFCDC;Arabic Ligature Yeh With Khah Initial Form -\UFCDD;Arabic Ligature Yeh With Meem Initial Form -\UFCDE;Arabic Ligature Yeh With Heh Initial Form -\UFCDF;Arabic Ligature Yeh With Hamza Above With Meem Medial Form -\UFCE0;Arabic Ligature Yeh With Hamza Above With Heh Medial Form -\UFCE1;Arabic Ligature Beh With Meem Medial Form -\UFCE2;Arabic Ligature Beh With Heh Medial Form -\UFCE3;Arabic Ligature Teh With Meem Medial Form -\UFCE4;Arabic Ligature Teh With Heh Medial Form -\UFCE5;Arabic Ligature Theh With Meem Medial Form -\UFCE6;Arabic Ligature Theh With Heh Medial Form -\UFCE7;Arabic Ligature Seen With Meem Medial Form -\UFCE8;Arabic Ligature Seen With Heh Medial Form -\UFCE9;Arabic Ligature Sheen With Meem Medial Form -\UFCEA;Arabic Ligature Sheen With Heh Medial Form -\UFCEB;Arabic Ligature Kaf With Lam Medial Form -\UFCEC;Arabic Ligature Kaf With Meem Medial Form -\UFCED;Arabic Ligature Lam With Meem Medial Form -\UFCEE;Arabic Ligature Noon With Meem Medial Form -\UFCEF;Arabic Ligature Noon With Heh Medial Form -\UFCF0;Arabic Ligature Yeh With Meem Medial Form -\UFCF1;Arabic Ligature Yeh With Heh Medial Form -\UFCF2;Arabic Ligature Shadda With Fatha Medial Form -\UFCF3;Arabic Ligature Shadda With Damma Medial Form -\UFCF4;Arabic Ligature Shadda With Kasra Medial Form -\UFCF5;Arabic Ligature Tah With Alef Maksura Isolated Form -\UFCF6;Arabic Ligature Tah With Yeh Isolated Form -\UFCF7;Arabic Ligature Ain With Alef Maksura Isolated Form -\UFCF8;Arabic Ligature Ain With Yeh Isolated Form -\UFCF9;Arabic Ligature Ghain With Alef Maksura Isolated Form -\UFCFA;Arabic Ligature Ghain With Yeh Isolated Form -\UFCFB;Arabic Ligature Seen With Alef Maksura Isolated Form -\UFCFC;Arabic Ligature Seen With Yeh Isolated Form -\UFCFD;Arabic Ligature Sheen With Alef Maksura Isolated Form -\UFCFE;Arabic Ligature Sheen With Yeh Isolated Form -\UFCFF;Arabic Ligature Hah With Alef Maksura Isolated Form -\UFD00;Arabic Ligature Hah With Yeh Isolated Form -\UFD01;Arabic Ligature Jeem With Alef Maksura Isolated Form -\UFD02;Arabic Ligature Jeem With Yeh Isolated Form -\UFD03;Arabic Ligature Khah With Alef Maksura Isolated Form -\UFD04;Arabic Ligature Khah With Yeh Isolated Form -\UFD05;Arabic Ligature Sad With Alef Maksura Isolated Form -\UFD06;Arabic Ligature Sad With Yeh Isolated Form -\UFD07;Arabic Ligature Dad With Alef Maksura Isolated Form -\UFD08;Arabic Ligature Dad With Yeh Isolated Form -\UFD09;Arabic Ligature Sheen With Jeem Isolated Form -\UFD0A;Arabic Ligature Sheen With Hah Isolated Form -\UFD0B;Arabic Ligature Sheen With Khah Isolated Form -\UFD0C;Arabic Ligature Sheen With Meem Isolated Form -\UFD0D;Arabic Ligature Sheen With Reh Isolated Form -\UFD0E;Arabic Ligature Seen With Reh Isolated Form -\UFD0F;Arabic Ligature Sad With Reh Isolated Form -\UFD10;Arabic Ligature Dad With Reh Isolated Form -\UFD11;Arabic Ligature Tah With Alef Maksura Final Form -\UFD12;Arabic Ligature Tah With Yeh Final Form -\UFD13;Arabic Ligature Ain With Alef Maksura Final Form -\UFD14;Arabic Ligature Ain With Yeh Final Form -\UFD15;Arabic Ligature Ghain With Alef Maksura Final Form -\UFD16;Arabic Ligature Ghain With Yeh Final Form -\UFD17;Arabic Ligature Seen With Alef Maksura Final Form -\UFD18;Arabic Ligature Seen With Yeh Final Form -\UFD19;Arabic Ligature Sheen With Alef Maksura Final Form -\UFD1A;Arabic Ligature Sheen With Yeh Final Form -\UFD1B;Arabic Ligature Hah With Alef Maksura Final Form -\UFD1C;Arabic Ligature Hah With Yeh Final Form -\UFD1D;Arabic Ligature Jeem With Alef Maksura Final Form -\UFD1E;Arabic Ligature Jeem With Yeh Final Form -\UFD1F;Arabic Ligature Khah With Alef Maksura Final Form -\UFD20;Arabic Ligature Khah With Yeh Final Form -\UFD21;Arabic Ligature Sad With Alef Maksura Final Form -\UFD22;Arabic Ligature Sad With Yeh Final Form -\UFD23;Arabic Ligature Dad With Alef Maksura Final Form -\UFD24;Arabic Ligature Dad With Yeh Final Form -\UFD25;Arabic Ligature Sheen With Jeem Final Form -\UFD26;Arabic Ligature Sheen With Hah Final Form -\UFD27;Arabic Ligature Sheen With Khah Final Form -\UFD28;Arabic Ligature Sheen With Meem Final Form -\UFD29;Arabic Ligature Sheen With Reh Final Form -\UFD2A;Arabic Ligature Seen With Reh Final Form -\UFD2B;Arabic Ligature Sad With Reh Final Form -\UFD2C;Arabic Ligature Dad With Reh Final Form -\UFD2D;Arabic Ligature Sheen With Jeem Initial Form -\UFD2E;Arabic Ligature Sheen With Hah Initial Form -\UFD2F;Arabic Ligature Sheen With Khah Initial Form -\UFD30;Arabic Ligature Sheen With Meem Initial Form -\UFD31;Arabic Ligature Seen With Heh Initial Form -\UFD32;Arabic Ligature Sheen With Heh Initial Form -\UFD33;Arabic Ligature Tah With Meem Initial Form -\UFD34;Arabic Ligature Seen With Jeem Medial Form -\UFD35;Arabic Ligature Seen With Hah Medial Form -\UFD36;Arabic Ligature Seen With Khah Medial Form -\UFD37;Arabic Ligature Sheen With Jeem Medial Form -\UFD38;Arabic Ligature Sheen With Hah Medial Form -\UFD39;Arabic Ligature Sheen With Khah Medial Form -\UFD3A;Arabic Ligature Tah With Meem Medial Form -\UFD3B;Arabic Ligature Zah With Meem Medial Form -\UFD3C;Arabic Ligature Alef With Fathatan Final Form -\UFD3D;Arabic Ligature Alef With Fathatan Isolated Form -\UFD3E;Ornate Left Parenthesis -\UFD3F;Ornate Right Parenthesis -\UFD40;Arabic Ligature Rahimahu Allaah -\UFD41;Arabic Ligature Radi Allaahu Anh -\UFD42;Arabic Ligature Radi Allaahu Anhaa -\UFD43;Arabic Ligature Radi Allaahu Anhum -\UFD44;Arabic Ligature Radi Allaahu Anhumaa -\UFD45;Arabic Ligature Radi Allaahu Anhunna -\UFD46;Arabic Ligature Sallallaahu Alayhi Wa-Aalih -\UFD47;Arabic Ligature Alayhi As-Salaam -\UFD48;Arabic Ligature Alayhim As-Salaam -\UFD49;Arabic Ligature Alayhimaa As-Salaam -\UFD4A;Arabic Ligature Alayhi As-Salaatu Was-Salaam -\UFD4B;Arabic Ligature Quddisa Sirrah -\UFD4C;Arabic Ligature Sallallahu Alayhi Waaalihee Wa-Sallam -\UFD4D;Arabic Ligature Alayhaa As-Salaam -\UFD4E;Arabic Ligature Tabaaraka Wa-Taaalaa -\UFD4F;Arabic Ligature Rahimahum Allaah -\UFD50;Arabic Ligature Teh With Jeem With Meem Initial Form -\UFD51;Arabic Ligature Teh With Hah With Jeem Final Form -\UFD52;Arabic Ligature Teh With Hah With Jeem Initial Form -\UFD53;Arabic Ligature Teh With Hah With Meem Initial Form -\UFD54;Arabic Ligature Teh With Khah With Meem Initial Form -\UFD55;Arabic Ligature Teh With Meem With Jeem Initial Form -\UFD56;Arabic Ligature Teh With Meem With Hah Initial Form -\UFD57;Arabic Ligature Teh With Meem With Khah Initial Form -\UFD58;Arabic Ligature Jeem With Meem With Hah Final Form -\UFD59;Arabic Ligature Jeem With Meem With Hah Initial Form -\UFD5A;Arabic Ligature Hah With Meem With Yeh Final Form -\UFD5B;Arabic Ligature Hah With Meem With Alef Maksura Final Form -\UFD5C;Arabic Ligature Seen With Hah With Jeem Initial Form -\UFD5D;Arabic Ligature Seen With Jeem With Hah Initial Form -\UFD5E;Arabic Ligature Seen With Jeem With Alef Maksura Final Form -\UFD5F;Arabic Ligature Seen With Meem With Hah Final Form -\UFD60;Arabic Ligature Seen With Meem With Hah Initial Form -\UFD61;Arabic Ligature Seen With Meem With Jeem Initial Form -\UFD62;Arabic Ligature Seen With Meem With Meem Final Form -\UFD63;Arabic Ligature Seen With Meem With Meem Initial Form -\UFD64;Arabic Ligature Sad With Hah With Hah Final Form -\UFD65;Arabic Ligature Sad With Hah With Hah Initial Form -\UFD66;Arabic Ligature Sad With Meem With Meem Final Form -\UFD67;Arabic Ligature Sheen With Hah With Meem Final Form -\UFD68;Arabic Ligature Sheen With Hah With Meem Initial Form -\UFD69;Arabic Ligature Sheen With Jeem With Yeh Final Form -\UFD6A;Arabic Ligature Sheen With Meem With Khah Final Form -\UFD6B;Arabic Ligature Sheen With Meem With Khah Initial Form -\UFD6C;Arabic Ligature Sheen With Meem With Meem Final Form -\UFD6D;Arabic Ligature Sheen With Meem With Meem Initial Form -\UFD6E;Arabic Ligature Dad With Hah With Alef Maksura Final Form -\UFD6F;Arabic Ligature Dad With Khah With Meem Final Form -\UFD70;Arabic Ligature Dad With Khah With Meem Initial Form -\UFD71;Arabic Ligature Tah With Meem With Hah Final Form -\UFD72;Arabic Ligature Tah With Meem With Hah Initial Form -\UFD73;Arabic Ligature Tah With Meem With Meem Initial Form -\UFD74;Arabic Ligature Tah With Meem With Yeh Final Form -\UFD75;Arabic Ligature Ain With Jeem With Meem Final Form -\UFD76;Arabic Ligature Ain With Meem With Meem Final Form -\UFD77;Arabic Ligature Ain With Meem With Meem Initial Form -\UFD78;Arabic Ligature Ain With Meem With Alef Maksura Final Form -\UFD79;Arabic Ligature Ghain With Meem With Meem Final Form -\UFD7A;Arabic Ligature Ghain With Meem With Yeh Final Form -\UFD7B;Arabic Ligature Ghain With Meem With Alef Maksura Final Form -\UFD7C;Arabic Ligature Feh With Khah With Meem Final Form -\UFD7D;Arabic Ligature Feh With Khah With Meem Initial Form -\UFD7E;Arabic Ligature Qaf With Meem With Hah Final Form -\UFD7F;Arabic Ligature Qaf With Meem With Meem Final Form -\UFD80;Arabic Ligature Lam With Hah With Meem Final Form -\UFD81;Arabic Ligature Lam With Hah With Yeh Final Form -\UFD82;Arabic Ligature Lam With Hah With Alef Maksura Final Form -\UFD83;Arabic Ligature Lam With Jeem With Jeem Initial Form -\UFD84;Arabic Ligature Lam With Jeem With Jeem Final Form -\UFD85;Arabic Ligature Lam With Khah With Meem Final Form -\UFD86;Arabic Ligature Lam With Khah With Meem Initial Form -\UFD87;Arabic Ligature Lam With Meem With Hah Final Form -\UFD88;Arabic Ligature Lam With Meem With Hah Initial Form -\UFD89;Arabic Ligature Meem With Hah With Jeem Initial Form -\UFD8A;Arabic Ligature Meem With Hah With Meem Initial Form -\UFD8B;Arabic Ligature Meem With Hah With Yeh Final Form -\UFD8C;Arabic Ligature Meem With Jeem With Hah Initial Form -\UFD8D;Arabic Ligature Meem With Jeem With Meem Initial Form -\UFD8E;Arabic Ligature Meem With Khah With Jeem Initial Form -\UFD8F;Arabic Ligature Meem With Khah With Meem Initial Form -\UFD92;Arabic Ligature Meem With Jeem With Khah Initial Form -\UFD93;Arabic Ligature Heh With Meem With Jeem Initial Form -\UFD94;Arabic Ligature Heh With Meem With Meem Initial Form -\UFD95;Arabic Ligature Noon With Hah With Meem Initial Form -\UFD96;Arabic Ligature Noon With Hah With Alef Maksura Final Form -\UFD97;Arabic Ligature Noon With Jeem With Meem Final Form -\UFD98;Arabic Ligature Noon With Jeem With Meem Initial Form -\UFD99;Arabic Ligature Noon With Jeem With Alef Maksura Final Form -\UFD9A;Arabic Ligature Noon With Meem With Yeh Final Form -\UFD9B;Arabic Ligature Noon With Meem With Alef Maksura Final Form -\UFD9C;Arabic Ligature Yeh With Meem With Meem Final Form -\UFD9D;Arabic Ligature Yeh With Meem With Meem Initial Form -\UFD9E;Arabic Ligature Beh With Khah With Yeh Final Form -\UFD9F;Arabic Ligature Teh With Jeem With Yeh Final Form -\UFDA0;Arabic Ligature Teh With Jeem With Alef Maksura Final Form -\UFDA1;Arabic Ligature Teh With Khah With Yeh Final Form -\UFDA2;Arabic Ligature Teh With Khah With Alef Maksura Final Form -\UFDA3;Arabic Ligature Teh With Meem With Yeh Final Form -\UFDA4;Arabic Ligature Teh With Meem With Alef Maksura Final Form -\UFDA5;Arabic Ligature Jeem With Meem With Yeh Final Form -\UFDA6;Arabic Ligature Jeem With Hah With Alef Maksura Final Form -\UFDA7;Arabic Ligature Jeem With Meem With Alef Maksura Final Form -\UFDA8;Arabic Ligature Seen With Khah With Alef Maksura Final Form -\UFDA9;Arabic Ligature Sad With Hah With Yeh Final Form -\UFDAA;Arabic Ligature Sheen With Hah With Yeh Final Form -\UFDAB;Arabic Ligature Dad With Hah With Yeh Final Form -\UFDAC;Arabic Ligature Lam With Jeem With Yeh Final Form -\UFDAD;Arabic Ligature Lam With Meem With Yeh Final Form -\UFDAE;Arabic Ligature Yeh With Hah With Yeh Final Form -\UFDAF;Arabic Ligature Yeh With Jeem With Yeh Final Form -\UFDB0;Arabic Ligature Yeh With Meem With Yeh Final Form -\UFDB1;Arabic Ligature Meem With Meem With Yeh Final Form -\UFDB2;Arabic Ligature Qaf With Meem With Yeh Final Form -\UFDB3;Arabic Ligature Noon With Hah With Yeh Final Form -\UFDB4;Arabic Ligature Qaf With Meem With Hah Initial Form -\UFDB5;Arabic Ligature Lam With Hah With Meem Initial Form -\UFDB6;Arabic Ligature Ain With Meem With Yeh Final Form -\UFDB7;Arabic Ligature Kaf With Meem With Yeh Final Form -\UFDB8;Arabic Ligature Noon With Jeem With Hah Initial Form -\UFDB9;Arabic Ligature Meem With Khah With Yeh Final Form -\UFDBA;Arabic Ligature Lam With Jeem With Meem Initial Form -\UFDBB;Arabic Ligature Kaf With Meem With Meem Final Form -\UFDBC;Arabic Ligature Lam With Jeem With Meem Final Form -\UFDBD;Arabic Ligature Noon With Jeem With Hah Final Form -\UFDBE;Arabic Ligature Jeem With Hah With Yeh Final Form -\UFDBF;Arabic Ligature Hah With Jeem With Yeh Final Form -\UFDC0;Arabic Ligature Meem With Jeem With Yeh Final Form -\UFDC1;Arabic Ligature Feh With Meem With Yeh Final Form -\UFDC2;Arabic Ligature Beh With Hah With Yeh Final Form -\UFDC3;Arabic Ligature Kaf With Meem With Meem Initial Form -\UFDC4;Arabic Ligature Ain With Jeem With Meem Initial Form -\UFDC5;Arabic Ligature Sad With Meem With Meem Initial Form -\UFDC6;Arabic Ligature Seen With Khah With Yeh Final Form -\UFDC7;Arabic Ligature Noon With Jeem With Yeh Final Form -\UFDCF;Arabic Ligature Salaamuhu Alaynaa -\UFDF0;Arabic Ligature Salla Used As Koranic Stop Sign Isolated Form -\UFDF1;Arabic Ligature Qala Used As Koranic Stop Sign Isolated Form -\UFDF2;Arabic Ligature Allah Isolated Form -\UFDF3;Arabic Ligature Akbar Isolated Form -\UFDF4;Arabic Ligature Mohammad Isolated Form -\UFDF5;Arabic Ligature Salam Isolated Form -\UFDF6;Arabic Ligature Rasoul Isolated Form -\UFDF7;Arabic Ligature Alayhe Isolated Form -\UFDF8;Arabic Ligature Wasallam Isolated Form -\UFDF9;Arabic Ligature Salla Isolated Form -\UFDFA;Arabic Ligature Sallallahou Alayhe Wasallam -\UFDFB;Arabic Ligature Jallajalalouhou -\UFDFC;Rial Sign -\UFDFD;Arabic Ligature Bismillah Ar-Rahman Ar-Raheem -\UFDFE;Arabic Ligature Subhaanahu Wa Taaalaa -\UFDFF;Arabic Ligature Azza Wa Jall -\UFE10;Presentation Form For Vertical Comma -\UFE11;Presentation Form For Vertical Ideographic Comma -\UFE12;Presentation Form For Vertical Ideographic Full Stop -\UFE13;Presentation Form For Vertical Colon -\UFE14;Presentation Form For Vertical Semicolon -\UFE15;Presentation Form For Vertical Exclamation Mark -\UFE16;Presentation Form For Vertical Question Mark -\UFE17;Presentation Form For Vertical Left White Lenticular Bracket -\UFE18;Presentation Form For Vertical Right White Lenticular Brakcet -\UFE19;Presentation Form For Vertical Horizontal Ellipsis -\UFE20;Combining Ligature Left Half -\UFE21;Combining Ligature Right Half -\UFE22;Combining Double Tilde Left Half -\UFE23;Combining Double Tilde Right Half -\UFE24;Combining Macron Left Half -\UFE25;Combining Macron Right Half -\UFE26;Combining Conjoining Macron -\UFE27;Combining Ligature Left Half Below -\UFE28;Combining Ligature Right Half Below -\UFE29;Combining Tilde Left Half Below -\UFE2A;Combining Tilde Right Half Below -\UFE2B;Combining Macron Left Half Below -\UFE2C;Combining Macron Right Half Below -\UFE2D;Combining Conjoining Macron Below -\UFE2E;Combining Cyrillic Titlo Left Half -\UFE2F;Combining Cyrillic Titlo Right Half -\UFE30;Presentation Form For Vertical Two Dot Leader -\UFE31;Presentation Form For Vertical Em Dash -\UFE32;Presentation Form For Vertical En Dash -\UFE33;Presentation Form For Vertical Low Line -\UFE34;Presentation Form For Vertical Wavy Low Line -\UFE35;Presentation Form For Vertical Left Parenthesis -\UFE36;Presentation Form For Vertical Right Parenthesis -\UFE37;Presentation Form For Vertical Left Curly Bracket -\UFE38;Presentation Form For Vertical Right Curly Bracket -\UFE39;Presentation Form For Vertical Left Tortoise Shell Bracket -\UFE3A;Presentation Form For Vertical Right Tortoise Shell Bracket -\UFE3B;Presentation Form For Vertical Left Black Lenticular Bracket -\UFE3C;Presentation Form For Vertical Right Black Lenticular Bracket -\UFE3D;Presentation Form For Vertical Left Double Angle Bracket -\UFE3E;Presentation Form For Vertical Right Double Angle Bracket -\UFE3F;Presentation Form For Vertical Left Angle Bracket -\UFE40;Presentation Form For Vertical Right Angle Bracket -\UFE41;Presentation Form For Vertical Left Corner Bracket -\UFE42;Presentation Form For Vertical Right Corner Bracket -\UFE43;Presentation Form For Vertical Left White Corner Bracket -\UFE44;Presentation Form For Vertical Right White Corner Bracket -\UFE45;Sesame Dot -\UFE46;White Sesame Dot -\UFE47;Presentation Form For Vertical Left Square Bracket -\UFE48;Presentation Form For Vertical Right Square Bracket -\UFE49;Dashed Overline -\UFE4A;Centreline Overline -\UFE4B;Wavy Overline -\UFE4C;Double Wavy Overline -\UFE4D;Dashed Low Line -\UFE4E;Centreline Low Line -\UFE4F;Wavy Low Line -\UFE50;Small Comma -\UFE51;Small Ideographic Comma -\UFE52;Small Full Stop -\UFE54;Small Semicolon -\UFE55;Small Colon -\UFE56;Small Question Mark -\UFE57;Small Exclamation Mark -\UFE58;Small Em Dash -\UFE59;Small Left Parenthesis -\UFE5A;Small Right Parenthesis -\UFE5B;Small Left Curly Bracket -\UFE5C;Small Right Curly Bracket -\UFE5D;Small Left Tortoise Shell Bracket -\UFE5E;Small Right Tortoise Shell Bracket -\UFE5F;Small Number Sign -\UFE60;Small Ampersand -\UFE61;Small Asterisk -\UFE62;Small Plus Sign -\UFE63;Small Hyphen-Minus -\UFE64;Small Less-Than Sign -\UFE65;Small Greater-Than Sign -\UFE66;Small Equals Sign -\UFE68;Small Reverse Solidus -\UFE69;Small Dollar Sign -\UFE6A;Small Percent Sign -\UFE6B;Small Commercial At -\UFE70;Arabic Fathatan Isolated Form -\UFE71;Arabic Tatweel With Fathatan Above -\UFE72;Arabic Dammatan Isolated Form -\UFE73;Arabic Tail Fragment -\UFE74;Arabic Kasratan Isolated Form -\UFE76;Arabic Fatha Isolated Form -\UFE77;Arabic Fatha Medial Form -\UFE78;Arabic Damma Isolated Form -\UFE79;Arabic Damma Medial Form -\UFE7A;Arabic Kasra Isolated Form -\UFE7B;Arabic Kasra Medial Form -\UFE7C;Arabic Shadda Isolated Form -\UFE7D;Arabic Shadda Medial Form -\UFE7E;Arabic Sukun Isolated Form -\UFE7F;Arabic Sukun Medial Form -\UFE80;Arabic Letter Hamza Isolated Form -\UFE81;Arabic Letter Alef With Madda Above Isolated Form -\UFE82;Arabic Letter Alef With Madda Above Final Form -\UFE83;Arabic Letter Alef With Hamza Above Isolated Form -\UFE84;Arabic Letter Alef With Hamza Above Final Form -\UFE85;Arabic Letter Waw With Hamza Above Isolated Form -\UFE86;Arabic Letter Waw With Hamza Above Final Form -\UFE87;Arabic Letter Alef With Hamza Below Isolated Form -\UFE88;Arabic Letter Alef With Hamza Below Final Form -\UFE89;Arabic Letter Yeh With Hamza Above Isolated Form -\UFE8A;Arabic Letter Yeh With Hamza Above Final Form -\UFE8B;Arabic Letter Yeh With Hamza Above Initial Form -\UFE8C;Arabic Letter Yeh With Hamza Above Medial Form -\UFE8D;Arabic Letter Alef Isolated Form -\UFE8E;Arabic Letter Alef Final Form -\UFE8F;Arabic Letter Beh Isolated Form -\UFE90;Arabic Letter Beh Final Form -\UFE91;Arabic Letter Beh Initial Form -\UFE92;Arabic Letter Beh Medial Form -\UFE93;Arabic Letter Teh Marbuta Isolated Form -\UFE94;Arabic Letter Teh Marbuta Final Form -\UFE95;Arabic Letter Teh Isolated Form -\UFE96;Arabic Letter Teh Final Form -\UFE97;Arabic Letter Teh Initial Form -\UFE98;Arabic Letter Teh Medial Form -\UFE99;Arabic Letter Theh Isolated Form -\UFE9A;Arabic Letter Theh Final Form -\UFE9B;Arabic Letter Theh Initial Form -\UFE9C;Arabic Letter Theh Medial Form -\UFE9D;Arabic Letter Jeem Isolated Form -\UFE9E;Arabic Letter Jeem Final Form -\UFE9F;Arabic Letter Jeem Initial Form -\UFEA0;Arabic Letter Jeem Medial Form -\UFEA1;Arabic Letter Hah Isolated Form -\UFEA2;Arabic Letter Hah Final Form -\UFEA3;Arabic Letter Hah Initial Form -\UFEA4;Arabic Letter Hah Medial Form -\UFEA5;Arabic Letter Khah Isolated Form -\UFEA6;Arabic Letter Khah Final Form -\UFEA7;Arabic Letter Khah Initial Form -\UFEA8;Arabic Letter Khah Medial Form -\UFEA9;Arabic Letter Dal Isolated Form -\UFEAA;Arabic Letter Dal Final Form -\UFEAB;Arabic Letter Thal Isolated Form -\UFEAC;Arabic Letter Thal Final Form -\UFEAD;Arabic Letter Reh Isolated Form -\UFEAE;Arabic Letter Reh Final Form -\UFEAF;Arabic Letter Zain Isolated Form -\UFEB0;Arabic Letter Zain Final Form -\UFEB1;Arabic Letter Seen Isolated Form -\UFEB2;Arabic Letter Seen Final Form -\UFEB3;Arabic Letter Seen Initial Form -\UFEB4;Arabic Letter Seen Medial Form -\UFEB5;Arabic Letter Sheen Isolated Form -\UFEB6;Arabic Letter Sheen Final Form -\UFEB7;Arabic Letter Sheen Initial Form -\UFEB8;Arabic Letter Sheen Medial Form -\UFEB9;Arabic Letter Sad Isolated Form -\UFEBA;Arabic Letter Sad Final Form -\UFEBB;Arabic Letter Sad Initial Form -\UFEBC;Arabic Letter Sad Medial Form -\UFEBD;Arabic Letter Dad Isolated Form -\UFEBE;Arabic Letter Dad Final Form -\UFEBF;Arabic Letter Dad Initial Form -\UFEC0;Arabic Letter Dad Medial Form -\UFEC1;Arabic Letter Tah Isolated Form -\UFEC2;Arabic Letter Tah Final Form -\UFEC3;Arabic Letter Tah Initial Form -\UFEC4;Arabic Letter Tah Medial Form -\UFEC5;Arabic Letter Zah Isolated Form -\UFEC6;Arabic Letter Zah Final Form -\UFEC7;Arabic Letter Zah Initial Form -\UFEC8;Arabic Letter Zah Medial Form -\UFEC9;Arabic Letter Ain Isolated Form -\UFECA;Arabic Letter Ain Final Form -\UFECB;Arabic Letter Ain Initial Form -\UFECC;Arabic Letter Ain Medial Form -\UFECD;Arabic Letter Ghain Isolated Form -\UFECE;Arabic Letter Ghain Final Form -\UFECF;Arabic Letter Ghain Initial Form -\UFED0;Arabic Letter Ghain Medial Form -\UFED1;Arabic Letter Feh Isolated Form -\UFED2;Arabic Letter Feh Final Form -\UFED3;Arabic Letter Feh Initial Form -\UFED4;Arabic Letter Feh Medial Form -\UFED5;Arabic Letter Qaf Isolated Form -\UFED6;Arabic Letter Qaf Final Form -\UFED7;Arabic Letter Qaf Initial Form -\UFED8;Arabic Letter Qaf Medial Form -\UFED9;Arabic Letter Kaf Isolated Form -\UFEDA;Arabic Letter Kaf Final Form -\UFEDB;Arabic Letter Kaf Initial Form -\UFEDC;Arabic Letter Kaf Medial Form -\UFEDD;Arabic Letter Lam Isolated Form -\UFEDE;Arabic Letter Lam Final Form -\UFEDF;Arabic Letter Lam Initial Form -\UFEE0;Arabic Letter Lam Medial Form -\UFEE1;Arabic Letter Meem Isolated Form -\UFEE2;Arabic Letter Meem Final Form -\UFEE3;Arabic Letter Meem Initial Form -\UFEE4;Arabic Letter Meem Medial Form -\UFEE5;Arabic Letter Noon Isolated Form -\UFEE6;Arabic Letter Noon Final Form -\UFEE7;Arabic Letter Noon Initial Form -\UFEE8;Arabic Letter Noon Medial Form -\UFEE9;Arabic Letter Heh Isolated Form -\UFEEA;Arabic Letter Heh Final Form -\UFEEB;Arabic Letter Heh Initial Form -\UFEEC;Arabic Letter Heh Medial Form -\UFEED;Arabic Letter Waw Isolated Form -\UFEEE;Arabic Letter Waw Final Form -\UFEEF;Arabic Letter Alef Maksura Isolated Form -\UFEF0;Arabic Letter Alef Maksura Final Form -\UFEF1;Arabic Letter Yeh Isolated Form -\UFEF2;Arabic Letter Yeh Final Form -\UFEF3;Arabic Letter Yeh Initial Form -\UFEF4;Arabic Letter Yeh Medial Form -\UFEF5;Arabic Ligature Lam With Alef With Madda Above Isolated Form -\UFEF6;Arabic Ligature Lam With Alef With Madda Above Final Form -\UFEF7;Arabic Ligature Lam With Alef With Hamza Above Isolated Form -\UFEF8;Arabic Ligature Lam With Alef With Hamza Above Final Form -\UFEF9;Arabic Ligature Lam With Alef With Hamza Below Isolated Form -\UFEFA;Arabic Ligature Lam With Alef With Hamza Below Final Form -\UFEFB;Arabic Ligature Lam With Alef Isolated Form -\UFEFC;Arabic Ligature Lam With Alef Final Form -\UFEFF;Zero Width No-Break Space -\UFF01;Fullwidth Exclamation Mark -\UFF02;Fullwidth Quotation Mark -\UFF03;Fullwidth Number Sign -\UFF04;Fullwidth Dollar Sign -\UFF05;Fullwidth Percent Sign -\UFF06;Fullwidth Ampersand -\UFF07;Fullwidth Apostrophe -\UFF08;Fullwidth Left Parenthesis -\UFF09;Fullwidth Right Parenthesis -\UFF0A;Fullwidth Asterisk -\UFF0B;Fullwidth Plus Sign -\UFF0C;Fullwidth Comma -\UFF0D;Fullwidth Hyphen-Minus -\UFF0E;Fullwidth Full Stop -\UFF0F;Fullwidth Solidus -\UFF10;Fullwidth Digit Zero -\UFF11;Fullwidth Digit One -\UFF12;Fullwidth Digit Two -\UFF13;Fullwidth Digit Three -\UFF14;Fullwidth Digit Four -\UFF15;Fullwidth Digit Five -\UFF16;Fullwidth Digit Six -\UFF17;Fullwidth Digit Seven -\UFF18;Fullwidth Digit Eight -\UFF19;Fullwidth Digit Nine -\UFF1A;Fullwidth Colon -\UFF1B;Fullwidth Semicolon -\UFF1C;Fullwidth Less-Than Sign -\UFF1D;Fullwidth Equals Sign -\UFF1E;Fullwidth Greater-Than Sign -\UFF1F;Fullwidth Question Mark -\UFF20;Fullwidth Commercial At -\UFF21;Fullwidth Latin Capital Letter A -\UFF22;Fullwidth Latin Capital Letter B -\UFF23;Fullwidth Latin Capital Letter C -\UFF24;Fullwidth Latin Capital Letter D -\UFF25;Fullwidth Latin Capital Letter E -\UFF26;Fullwidth Latin Capital Letter F -\UFF27;Fullwidth Latin Capital Letter G -\UFF28;Fullwidth Latin Capital Letter H -\UFF29;Fullwidth Latin Capital Letter I -\UFF2A;Fullwidth Latin Capital Letter J -\UFF2B;Fullwidth Latin Capital Letter K -\UFF2C;Fullwidth Latin Capital Letter L -\UFF2D;Fullwidth Latin Capital Letter M -\UFF2E;Fullwidth Latin Capital Letter N -\UFF2F;Fullwidth Latin Capital Letter O -\UFF30;Fullwidth Latin Capital Letter P -\UFF31;Fullwidth Latin Capital Letter Q -\UFF32;Fullwidth Latin Capital Letter R -\UFF33;Fullwidth Latin Capital Letter S -\UFF34;Fullwidth Latin Capital Letter T -\UFF35;Fullwidth Latin Capital Letter U -\UFF36;Fullwidth Latin Capital Letter V -\UFF37;Fullwidth Latin Capital Letter W -\UFF38;Fullwidth Latin Capital Letter X -\UFF39;Fullwidth Latin Capital Letter Y -\UFF3A;Fullwidth Latin Capital Letter Z -\UFF3B;Fullwidth Left Square Bracket -\UFF3C;Fullwidth Reverse Solidus -\UFF3D;Fullwidth Right Square Bracket -\UFF3E;Fullwidth Circumflex Accent -\UFF3F;Fullwidth Low Line -\UFF40;Fullwidth Grave Accent -\UFF41;Fullwidth Latin Small Letter A -\UFF42;Fullwidth Latin Small Letter B -\UFF43;Fullwidth Latin Small Letter C -\UFF44;Fullwidth Latin Small Letter D -\UFF45;Fullwidth Latin Small Letter E -\UFF46;Fullwidth Latin Small Letter F -\UFF47;Fullwidth Latin Small Letter G -\UFF48;Fullwidth Latin Small Letter H -\UFF49;Fullwidth Latin Small Letter I -\UFF4A;Fullwidth Latin Small Letter J -\UFF4B;Fullwidth Latin Small Letter K -\UFF4C;Fullwidth Latin Small Letter L -\UFF4D;Fullwidth Latin Small Letter M -\UFF4E;Fullwidth Latin Small Letter N -\UFF4F;Fullwidth Latin Small Letter O -\UFF50;Fullwidth Latin Small Letter P -\UFF51;Fullwidth Latin Small Letter Q -\UFF52;Fullwidth Latin Small Letter R -\UFF53;Fullwidth Latin Small Letter S -\UFF54;Fullwidth Latin Small Letter T -\UFF55;Fullwidth Latin Small Letter U -\UFF56;Fullwidth Latin Small Letter V -\UFF57;Fullwidth Latin Small Letter W -\UFF58;Fullwidth Latin Small Letter X -\UFF59;Fullwidth Latin Small Letter Y -\UFF5A;Fullwidth Latin Small Letter Z -\UFF5B;Fullwidth Left Curly Bracket -\UFF5C;Fullwidth Vertical Line -\UFF5D;Fullwidth Right Curly Bracket -\UFF5E;Fullwidth Tilde -\UFF5F;Fullwidth Left White Parenthesis -\UFF60;Fullwidth Right White Parenthesis -\UFF61;Halfwidth Ideographic Full Stop -\UFF62;Halfwidth Left Corner Bracket -\UFF63;Halfwidth Right Corner Bracket -\UFF64;Halfwidth Ideographic Comma -\UFF65;Halfwidth Katakana Middle Dot -\UFF66;Halfwidth Katakana Letter Wo -\UFF67;Halfwidth Katakana Letter Small A -\UFF68;Halfwidth Katakana Letter Small I -\UFF69;Halfwidth Katakana Letter Small U -\UFF6A;Halfwidth Katakana Letter Small E -\UFF6B;Halfwidth Katakana Letter Small O -\UFF6C;Halfwidth Katakana Letter Small Ya -\UFF6D;Halfwidth Katakana Letter Small Yu -\UFF6E;Halfwidth Katakana Letter Small Yo -\UFF6F;Halfwidth Katakana Letter Small Tu -\UFF70;Halfwidth Katakana-Hiragana Prolonged Sound Mark -\UFF71;Halfwidth Katakana Letter A -\UFF72;Halfwidth Katakana Letter I -\UFF73;Halfwidth Katakana Letter U -\UFF74;Halfwidth Katakana Letter E -\UFF75;Halfwidth Katakana Letter O -\UFF76;Halfwidth Katakana Letter Ka -\UFF77;Halfwidth Katakana Letter Ki -\UFF78;Halfwidth Katakana Letter Ku -\UFF79;Halfwidth Katakana Letter Ke -\UFF7A;Halfwidth Katakana Letter Ko -\UFF7B;Halfwidth Katakana Letter Sa -\UFF7C;Halfwidth Katakana Letter Si -\UFF7D;Halfwidth Katakana Letter Su -\UFF7E;Halfwidth Katakana Letter Se -\UFF7F;Halfwidth Katakana Letter So -\UFF80;Halfwidth Katakana Letter Ta -\UFF81;Halfwidth Katakana Letter Ti -\UFF82;Halfwidth Katakana Letter Tu -\UFF83;Halfwidth Katakana Letter Te -\UFF84;Halfwidth Katakana Letter To -\UFF85;Halfwidth Katakana Letter Na -\UFF86;Halfwidth Katakana Letter Ni -\UFF87;Halfwidth Katakana Letter Nu -\UFF88;Halfwidth Katakana Letter Ne -\UFF89;Halfwidth Katakana Letter No -\UFF8A;Halfwidth Katakana Letter Ha -\UFF8B;Halfwidth Katakana Letter Hi -\UFF8C;Halfwidth Katakana Letter Hu -\UFF8D;Halfwidth Katakana Letter He -\UFF8E;Halfwidth Katakana Letter Ho -\UFF8F;Halfwidth Katakana Letter Ma -\UFF90;Halfwidth Katakana Letter Mi -\UFF91;Halfwidth Katakana Letter Mu -\UFF92;Halfwidth Katakana Letter Me -\UFF93;Halfwidth Katakana Letter Mo -\UFF94;Halfwidth Katakana Letter Ya -\UFF95;Halfwidth Katakana Letter Yu -\UFF96;Halfwidth Katakana Letter Yo -\UFF97;Halfwidth Katakana Letter Ra -\UFF98;Halfwidth Katakana Letter Ri -\UFF99;Halfwidth Katakana Letter Ru -\UFF9A;Halfwidth Katakana Letter Re -\UFF9B;Halfwidth Katakana Letter Ro -\UFF9C;Halfwidth Katakana Letter Wa -\UFF9D;Halfwidth Katakana Letter N -\UFF9E;Halfwidth Katakana Voiced Sound Mark -\UFF9F;Halfwidth Katakana Semi-Voiced Sound Mark -\UFFA0;Halfwidth Hangul Filler -\UFFA1;Halfwidth Hangul Letter Kiyeok -\UFFA2;Halfwidth Hangul Letter Ssangkiyeok -\UFFA3;Halfwidth Hangul Letter Kiyeok-Sios -\UFFA4;Halfwidth Hangul Letter Nieun -\UFFA5;Halfwidth Hangul Letter Nieun-Cieuc -\UFFA6;Halfwidth Hangul Letter Nieun-Hieuh -\UFFA7;Halfwidth Hangul Letter Tikeut -\UFFA8;Halfwidth Hangul Letter Ssangtikeut -\UFFA9;Halfwidth Hangul Letter Rieul -\UFFAA;Halfwidth Hangul Letter Rieul-Kiyeok -\UFFAB;Halfwidth Hangul Letter Rieul-Mieum -\UFFAC;Halfwidth Hangul Letter Rieul-Pieup -\UFFAD;Halfwidth Hangul Letter Rieul-Sios -\UFFAE;Halfwidth Hangul Letter Rieul-Thieuth -\UFFAF;Halfwidth Hangul Letter Rieul-Phieuph -\UFFB0;Halfwidth Hangul Letter Rieul-Hieuh -\UFFB1;Halfwidth Hangul Letter Mieum -\UFFB2;Halfwidth Hangul Letter Pieup -\UFFB3;Halfwidth Hangul Letter Ssangpieup -\UFFB4;Halfwidth Hangul Letter Pieup-Sios -\UFFB5;Halfwidth Hangul Letter Sios -\UFFB6;Halfwidth Hangul Letter Ssangsios -\UFFB7;Halfwidth Hangul Letter Ieung -\UFFB8;Halfwidth Hangul Letter Cieuc -\UFFB9;Halfwidth Hangul Letter Ssangcieuc -\UFFBA;Halfwidth Hangul Letter Chieuch -\UFFBB;Halfwidth Hangul Letter Khieukh -\UFFBC;Halfwidth Hangul Letter Thieuth -\UFFBD;Halfwidth Hangul Letter Phieuph -\UFFBE;Halfwidth Hangul Letter Hieuh -\UFFC2;Halfwidth Hangul Letter A -\UFFC3;Halfwidth Hangul Letter Ae -\UFFC4;Halfwidth Hangul Letter Ya -\UFFC5;Halfwidth Hangul Letter Yae -\UFFC6;Halfwidth Hangul Letter Eo -\UFFC7;Halfwidth Hangul Letter E -\UFFCA;Halfwidth Hangul Letter Yeo -\UFFCB;Halfwidth Hangul Letter Ye -\UFFCC;Halfwidth Hangul Letter O -\UFFCD;Halfwidth Hangul Letter Wa -\UFFCE;Halfwidth Hangul Letter Wae -\UFFCF;Halfwidth Hangul Letter Oe -\UFFD2;Halfwidth Hangul Letter Yo -\UFFD3;Halfwidth Hangul Letter U -\UFFD4;Halfwidth Hangul Letter Weo -\UFFD5;Halfwidth Hangul Letter We -\UFFD6;Halfwidth Hangul Letter Wi -\UFFD7;Halfwidth Hangul Letter Yu -\UFFDA;Halfwidth Hangul Letter Eu -\UFFDB;Halfwidth Hangul Letter Yi -\UFFDC;Halfwidth Hangul Letter I -\UFFE0;Fullwidth Cent Sign -\UFFE1;Fullwidth Pound Sign -\UFFE2;Fullwidth Not Sign -\UFFE3;Fullwidth Macron -\UFFE4;Fullwidth Broken Bar -\UFFE5;Fullwidth Yen Sign -\UFFE6;Fullwidth Won Sign -\UFFE8;Halfwidth Forms Light Vertical -\UFFE9;Halfwidth Leftwards Arrow -\UFFEA;Halfwidth Upwards Arrow -\UFFEB;Halfwidth Rightwards Arrow -\UFFEC;Halfwidth Downwards Arrow -\UFFED;Halfwidth Black Square -\UFFEE;Halfwidth White Circle -\UFFF9;Interlinear Annotation Anchor -\UFFFA;Interlinear Annotation Separator -\UFFFB;Interlinear Annotation Terminator -\UFFFC;Object Replacement Character -\UFFFD;Replacement Character -\U10000;Linear B Syllable B008 A -\U10001;Linear B Syllable B038 E -\U10002;Linear B Syllable B028 I -\U10003;Linear B Syllable B061 O -\U10004;Linear B Syllable B010 U -\U10005;Linear B Syllable B001 Da -\U10006;Linear B Syllable B045 De -\U10007;Linear B Syllable B007 Di -\U10008;Linear B Syllable B014 Do -\U10009;Linear B Syllable B051 Du -\U1000A;Linear B Syllable B057 Ja -\U1000B;Linear B Syllable B046 Je -\U1000D;Linear B Syllable B036 Jo -\U1000E;Linear B Syllable B065 Ju -\U1000F;Linear B Syllable B077 Ka -\U10010;Linear B Syllable B044 Ke -\U10011;Linear B Syllable B067 Ki -\U10012;Linear B Syllable B070 Ko -\U10013;Linear B Syllable B081 Ku -\U10014;Linear B Syllable B080 Ma -\U10015;Linear B Syllable B013 Me -\U10016;Linear B Syllable B073 Mi -\U10017;Linear B Syllable B015 Mo -\U10018;Linear B Syllable B023 Mu -\U10019;Linear B Syllable B006 Na -\U1001A;Linear B Syllable B024 Ne -\U1001B;Linear B Syllable B030 Ni -\U1001C;Linear B Syllable B052 No -\U1001D;Linear B Syllable B055 Nu -\U1001E;Linear B Syllable B003 Pa -\U1001F;Linear B Syllable B072 Pe -\U10020;Linear B Syllable B039 Pi -\U10021;Linear B Syllable B011 Po -\U10022;Linear B Syllable B050 Pu -\U10023;Linear B Syllable B016 Qa -\U10024;Linear B Syllable B078 Qe -\U10025;Linear B Syllable B021 Qi -\U10026;Linear B Syllable B032 Qo -\U10028;Linear B Syllable B060 Ra -\U10029;Linear B Syllable B027 Re -\U1002A;Linear B Syllable B053 Ri -\U1002B;Linear B Syllable B002 Ro -\U1002C;Linear B Syllable B026 Ru -\U1002D;Linear B Syllable B031 Sa -\U1002E;Linear B Syllable B009 Se -\U1002F;Linear B Syllable B041 Si -\U10030;Linear B Syllable B012 So -\U10031;Linear B Syllable B058 Su -\U10032;Linear B Syllable B059 Ta -\U10033;Linear B Syllable B004 Te -\U10034;Linear B Syllable B037 Ti -\U10035;Linear B Syllable B005 To -\U10036;Linear B Syllable B069 Tu -\U10037;Linear B Syllable B054 Wa -\U10038;Linear B Syllable B075 We -\U10039;Linear B Syllable B040 Wi -\U1003A;Linear B Syllable B042 Wo -\U1003C;Linear B Syllable B017 Za -\U1003D;Linear B Syllable B074 Ze -\U1003F;Linear B Syllable B020 Zo -\U10040;Linear B Syllable B025 A2 -\U10041;Linear B Syllable B043 A3 -\U10042;Linear B Syllable B085 Au -\U10043;Linear B Syllable B071 Dwe -\U10044;Linear B Syllable B090 Dwo -\U10045;Linear B Syllable B048 Nwa -\U10046;Linear B Syllable B029 Pu2 -\U10047;Linear B Syllable B062 Pte -\U10048;Linear B Syllable B076 Ra2 -\U10049;Linear B Syllable B033 Ra3 -\U1004A;Linear B Syllable B068 Ro2 -\U1004B;Linear B Syllable B066 Ta2 -\U1004C;Linear B Syllable B087 Twe -\U1004D;Linear B Syllable B091 Two -\U10050;Linear B Symbol B018 -\U10051;Linear B Symbol B019 -\U10052;Linear B Symbol B022 -\U10053;Linear B Symbol B034 -\U10054;Linear B Symbol B047 -\U10055;Linear B Symbol B049 -\U10056;Linear B Symbol B056 -\U10057;Linear B Symbol B063 -\U10058;Linear B Symbol B064 -\U10059;Linear B Symbol B079 -\U1005A;Linear B Symbol B082 -\U1005B;Linear B Symbol B083 -\U1005C;Linear B Symbol B086 -\U1005D;Linear B Symbol B089 -\U10080;Linear B Ideogram B100 Man -\U10081;Linear B Ideogram B102 Woman -\U10082;Linear B Ideogram B104 Deer -\U10083;Linear B Ideogram B105 Equid -\U10084;Linear B Ideogram B105F Mare -\U10085;Linear B Ideogram B105M Stallion -\U10086;Linear B Ideogram B106F Ewe -\U10087;Linear B Ideogram B106M Ram -\U10088;Linear B Ideogram B107F She-Goat -\U10089;Linear B Ideogram B107M He-Goat -\U1008A;Linear B Ideogram B108F Sow -\U1008B;Linear B Ideogram B108M Boar -\U1008C;Linear B Ideogram B109F Cow -\U1008D;Linear B Ideogram B109M Bull -\U1008E;Linear B Ideogram B120 Wheat -\U1008F;Linear B Ideogram B121 Barley -\U10090;Linear B Ideogram B122 Olive -\U10091;Linear B Ideogram B123 Spice -\U10092;Linear B Ideogram B125 Cyperus -\U10093;Linear B Monogram B127 Kapo -\U10094;Linear B Monogram B128 Kanako -\U10095;Linear B Ideogram B130 Oil -\U10096;Linear B Ideogram B131 Wine -\U10097;Linear B Ideogram B132 -\U10098;Linear B Monogram B133 Arepa -\U10099;Linear B Monogram B135 Meri -\U1009A;Linear B Ideogram B140 Bronze -\U1009B;Linear B Ideogram B141 Gold -\U1009C;Linear B Ideogram B142 -\U1009D;Linear B Ideogram B145 Wool -\U1009E;Linear B Ideogram B146 -\U1009F;Linear B Ideogram B150 -\U100A0;Linear B Ideogram B151 Horn -\U100A1;Linear B Ideogram B152 -\U100A2;Linear B Ideogram B153 -\U100A3;Linear B Ideogram B154 -\U100A4;Linear B Monogram B156 Turo2 -\U100A5;Linear B Ideogram B157 -\U100A6;Linear B Ideogram B158 -\U100A7;Linear B Ideogram B159 Cloth -\U100A8;Linear B Ideogram B160 -\U100A9;Linear B Ideogram B161 -\U100AA;Linear B Ideogram B162 Garment -\U100AB;Linear B Ideogram B163 Armour -\U100AC;Linear B Ideogram B164 -\U100AD;Linear B Ideogram B165 -\U100AE;Linear B Ideogram B166 -\U100AF;Linear B Ideogram B167 -\U100B0;Linear B Ideogram B168 -\U100B1;Linear B Ideogram B169 -\U100B2;Linear B Ideogram B170 -\U100B3;Linear B Ideogram B171 -\U100B4;Linear B Ideogram B172 -\U100B5;Linear B Ideogram B173 Month -\U100B6;Linear B Ideogram B174 -\U100B7;Linear B Ideogram B176 Tree -\U100B8;Linear B Ideogram B177 -\U100B9;Linear B Ideogram B178 -\U100BA;Linear B Ideogram B179 -\U100BB;Linear B Ideogram B180 -\U100BC;Linear B Ideogram B181 -\U100BD;Linear B Ideogram B182 -\U100BE;Linear B Ideogram B183 -\U100BF;Linear B Ideogram B184 -\U100C0;Linear B Ideogram B185 -\U100C1;Linear B Ideogram B189 -\U100C2;Linear B Ideogram B190 -\U100C3;Linear B Ideogram B191 Helmet -\U100C4;Linear B Ideogram B220 Footstool -\U100C5;Linear B Ideogram B225 Bathtub -\U100C6;Linear B Ideogram B230 Spear -\U100C7;Linear B Ideogram B231 Arrow -\U100C8;Linear B Ideogram B232 -\U100C9;Linear B Ideogram B233 Sword -\U100CA;Linear B Ideogram B234 -\U100CB;Linear B Ideogram B236 -\U100CC;Linear B Ideogram B240 Wheeled Chariot -\U100CD;Linear B Ideogram B241 Chariot -\U100CE;Linear B Ideogram B242 Chariot Frame -\U100CF;Linear B Ideogram B243 Wheel -\U100D0;Linear B Ideogram B245 -\U100D1;Linear B Ideogram B246 -\U100D2;Linear B Monogram B247 Dipte -\U100D3;Linear B Ideogram B248 -\U100D4;Linear B Ideogram B249 -\U100D5;Linear B Ideogram B251 -\U100D6;Linear B Ideogram B252 -\U100D7;Linear B Ideogram B253 -\U100D8;Linear B Ideogram B254 Dart -\U100D9;Linear B Ideogram B255 -\U100DA;Linear B Ideogram B256 -\U100DB;Linear B Ideogram B257 -\U100DC;Linear B Ideogram B258 -\U100DD;Linear B Ideogram B259 -\U100DE;Linear B Ideogram Vessel B155 -\U100DF;Linear B Ideogram Vessel B200 -\U100E0;Linear B Ideogram Vessel B201 -\U100E1;Linear B Ideogram Vessel B202 -\U100E2;Linear B Ideogram Vessel B203 -\U100E3;Linear B Ideogram Vessel B204 -\U100E4;Linear B Ideogram Vessel B205 -\U100E5;Linear B Ideogram Vessel B206 -\U100E6;Linear B Ideogram Vessel B207 -\U100E7;Linear B Ideogram Vessel B208 -\U100E8;Linear B Ideogram Vessel B209 -\U100E9;Linear B Ideogram Vessel B210 -\U100EA;Linear B Ideogram Vessel B211 -\U100EB;Linear B Ideogram Vessel B212 -\U100EC;Linear B Ideogram Vessel B213 -\U100ED;Linear B Ideogram Vessel B214 -\U100EE;Linear B Ideogram Vessel B215 -\U100EF;Linear B Ideogram Vessel B216 -\U100F0;Linear B Ideogram Vessel B217 -\U100F1;Linear B Ideogram Vessel B218 -\U100F2;Linear B Ideogram Vessel B219 -\U100F3;Linear B Ideogram Vessel B221 -\U100F4;Linear B Ideogram Vessel B222 -\U100F5;Linear B Ideogram Vessel B226 -\U100F6;Linear B Ideogram Vessel B227 -\U100F7;Linear B Ideogram Vessel B228 -\U100F8;Linear B Ideogram Vessel B229 -\U100F9;Linear B Ideogram Vessel B250 -\U100FA;Linear B Ideogram Vessel B305 -\U10100;Aegean Word Separator Line -\U10101;Aegean Word Separator Dot -\U10102;Aegean Check Mark -\U10107;Aegean Number One -\U10108;Aegean Number Two -\U10109;Aegean Number Three -\U1010A;Aegean Number Four -\U1010B;Aegean Number Five -\U1010C;Aegean Number Six -\U1010D;Aegean Number Seven -\U1010E;Aegean Number Eight -\U1010F;Aegean Number Nine -\U10110;Aegean Number Ten -\U10111;Aegean Number Twenty -\U10112;Aegean Number Thirty -\U10113;Aegean Number Forty -\U10114;Aegean Number Fifty -\U10115;Aegean Number Sixty -\U10116;Aegean Number Seventy -\U10117;Aegean Number Eighty -\U10118;Aegean Number Ninety -\U10119;Aegean Number One Hundred -\U1011A;Aegean Number Two Hundred -\U1011B;Aegean Number Three Hundred -\U1011C;Aegean Number Four Hundred -\U1011D;Aegean Number Five Hundred -\U1011E;Aegean Number Six Hundred -\U1011F;Aegean Number Seven Hundred -\U10120;Aegean Number Eight Hundred -\U10121;Aegean Number Nine Hundred -\U10122;Aegean Number One Thousand -\U10123;Aegean Number Two Thousand -\U10124;Aegean Number Three Thousand -\U10125;Aegean Number Four Thousand -\U10126;Aegean Number Five Thousand -\U10127;Aegean Number Six Thousand -\U10128;Aegean Number Seven Thousand -\U10129;Aegean Number Eight Thousand -\U1012A;Aegean Number Nine Thousand -\U1012B;Aegean Number Ten Thousand -\U1012C;Aegean Number Twenty Thousand -\U1012D;Aegean Number Thirty Thousand -\U1012E;Aegean Number Forty Thousand -\U1012F;Aegean Number Fifty Thousand -\U10130;Aegean Number Sixty Thousand -\U10131;Aegean Number Seventy Thousand -\U10132;Aegean Number Eighty Thousand -\U10133;Aegean Number Ninety Thousand -\U10137;Aegean Weight Base Unit -\U10138;Aegean Weight First Subunit -\U10139;Aegean Weight Second Subunit -\U1013A;Aegean Weight Third Subunit -\U1013B;Aegean Weight Fourth Subunit -\U1013C;Aegean Dry Measure First Subunit -\U1013D;Aegean Liquid Measure First Subunit -\U1013E;Aegean Measure Second Subunit -\U1013F;Aegean Measure Third Subunit -\U10140;Greek Acrophonic Attic One Quarter -\U10141;Greek Acrophonic Attic One Half -\U10142;Greek Acrophonic Attic One Drachma -\U10143;Greek Acrophonic Attic Five -\U10144;Greek Acrophonic Attic Fifty -\U10145;Greek Acrophonic Attic Five Hundred -\U10146;Greek Acrophonic Attic Five Thousand -\U10147;Greek Acrophonic Attic Fifty Thousand -\U10148;Greek Acrophonic Attic Five Talents -\U10149;Greek Acrophonic Attic Ten Talents -\U1014A;Greek Acrophonic Attic Fifty Talents -\U1014B;Greek Acrophonic Attic One Hundred Talents -\U1014C;Greek Acrophonic Attic Five Hundred Talents -\U1014D;Greek Acrophonic Attic One Thousand Talents -\U1014E;Greek Acrophonic Attic Five Thousand Talents -\U1014F;Greek Acrophonic Attic Five Staters -\U10150;Greek Acrophonic Attic Ten Staters -\U10151;Greek Acrophonic Attic Fifty Staters -\U10152;Greek Acrophonic Attic One Hundred Staters -\U10153;Greek Acrophonic Attic Five Hundred Staters -\U10154;Greek Acrophonic Attic One Thousand Staters -\U10155;Greek Acrophonic Attic Ten Thousand Staters -\U10156;Greek Acrophonic Attic Fifty Thousand Staters -\U10157;Greek Acrophonic Attic Ten Mnas -\U10158;Greek Acrophonic Heraeum One Plethron -\U10159;Greek Acrophonic Thespian One -\U1015A;Greek Acrophonic Hermionian One -\U1015B;Greek Acrophonic Epidaurean Two -\U1015C;Greek Acrophonic Thespian Two -\U1015D;Greek Acrophonic Cyrenaic Two Drachmas -\U1015E;Greek Acrophonic Epidaurean Two Drachmas -\U1015F;Greek Acrophonic Troezenian Five -\U10160;Greek Acrophonic Troezenian Ten -\U10161;Greek Acrophonic Troezenian Ten Alternate Form -\U10162;Greek Acrophonic Hermionian Ten -\U10163;Greek Acrophonic Messenian Ten -\U10164;Greek Acrophonic Thespian Ten -\U10165;Greek Acrophonic Thespian Thirty -\U10166;Greek Acrophonic Troezenian Fifty -\U10167;Greek Acrophonic Troezenian Fifty Alternate Form -\U10168;Greek Acrophonic Hermionian Fifty -\U10169;Greek Acrophonic Thespian Fifty -\U1016A;Greek Acrophonic Thespian One Hundred -\U1016B;Greek Acrophonic Thespian Three Hundred -\U1016C;Greek Acrophonic Epidaurean Five Hundred -\U1016D;Greek Acrophonic Troezenian Five Hundred -\U1016E;Greek Acrophonic Thespian Five Hundred -\U1016F;Greek Acrophonic Carystian Five Hundred -\U10170;Greek Acrophonic Naxian Five Hundred -\U10171;Greek Acrophonic Thespian One Thousand -\U10172;Greek Acrophonic Thespian Five Thousand -\U10173;Greek Acrophonic Delphic Five Mnas -\U10174;Greek Acrophonic Stratian Fifty Mnas -\U10175;Greek One Half Sign -\U10176;Greek One Half Sign Alternate Form -\U10177;Greek Two Thirds Sign -\U10178;Greek Three Quarters Sign -\U10179;Greek Year Sign -\U1017A;Greek Talent Sign -\U1017B;Greek Drachma Sign -\U1017C;Greek Obol Sign -\U1017D;Greek Two Obols Sign -\U1017E;Greek Three Obols Sign -\U1017F;Greek Four Obols Sign -\U10180;Greek Five Obols Sign -\U10181;Greek Metretes Sign -\U10182;Greek Kyathos Base Sign -\U10183;Greek Litra Sign -\U10184;Greek Ounkia Sign -\U10185;Greek Xestes Sign -\U10186;Greek Artabe Sign -\U10187;Greek Aroura Sign -\U10188;Greek Gramma Sign -\U10189;Greek Tryblion Base Sign -\U1018A;Greek Zero Sign -\U1018B;Greek One Quarter Sign -\U1018C;Greek Sinusoid Sign -\U1018D;Greek Indiction Sign -\U1018E;Nomisma Sign -\U10190;Roman Sextans Sign -\U10191;Roman Uncia Sign -\U10192;Roman Semuncia Sign -\U10193;Roman Sextula Sign -\U10194;Roman Dimidia Sextula Sign -\U10195;Roman Siliqua Sign -\U10196;Roman Denarius Sign -\U10197;Roman Quinarius Sign -\U10198;Roman Sestertius Sign -\U10199;Roman Dupondius Sign -\U1019A;Roman As Sign -\U1019B;Roman Centurial Sign -\U1019C;Ascia Symbol -\U101A0;Greek Symbol Tau Rho -\U101D0;Phaistos Disc Sign Pedestrian -\U101D1;Phaistos Disc Sign Plumed Head -\U101D2;Phaistos Disc Sign Tattooed Head -\U101D3;Phaistos Disc Sign Captive -\U101D4;Phaistos Disc Sign Child -\U101D5;Phaistos Disc Sign Woman -\U101D6;Phaistos Disc Sign Helmet -\U101D7;Phaistos Disc Sign Gauntlet -\U101D8;Phaistos Disc Sign Tiara -\U101D9;Phaistos Disc Sign Arrow -\U101DA;Phaistos Disc Sign Bow -\U101DB;Phaistos Disc Sign Shield -\U101DC;Phaistos Disc Sign Club -\U101DD;Phaistos Disc Sign Manacles -\U101DE;Phaistos Disc Sign Mattock -\U101DF;Phaistos Disc Sign Saw -\U101E0;Phaistos Disc Sign Lid -\U101E1;Phaistos Disc Sign Boomerang -\U101E2;Phaistos Disc Sign Carpentry Plane -\U101E3;Phaistos Disc Sign Dolium -\U101E4;Phaistos Disc Sign Comb -\U101E5;Phaistos Disc Sign Sling -\U101E6;Phaistos Disc Sign Column -\U101E7;Phaistos Disc Sign Beehive -\U101E8;Phaistos Disc Sign Ship -\U101E9;Phaistos Disc Sign Horn -\U101EA;Phaistos Disc Sign Hide -\U101EB;Phaistos Disc Sign Bulls Leg -\U101EC;Phaistos Disc Sign Cat -\U101ED;Phaistos Disc Sign Ram -\U101EE;Phaistos Disc Sign Eagle -\U101EF;Phaistos Disc Sign Dove -\U101F0;Phaistos Disc Sign Tunny -\U101F1;Phaistos Disc Sign Bee -\U101F2;Phaistos Disc Sign Plane Tree -\U101F3;Phaistos Disc Sign Vine -\U101F4;Phaistos Disc Sign Papyrus -\U101F5;Phaistos Disc Sign Rosette -\U101F6;Phaistos Disc Sign Lily -\U101F7;Phaistos Disc Sign Ox Back -\U101F8;Phaistos Disc Sign Flute -\U101F9;Phaistos Disc Sign Grater -\U101FA;Phaistos Disc Sign Strainer -\U101FB;Phaistos Disc Sign Small Axe -\U101FC;Phaistos Disc Sign Wavy Band -\U101FD;Phaistos Disc Sign Combining Oblique Stroke -\U10280;Lycian Letter A -\U10281;Lycian Letter E -\U10282;Lycian Letter B -\U10283;Lycian Letter Bh -\U10284;Lycian Letter G -\U10285;Lycian Letter D -\U10286;Lycian Letter I -\U10287;Lycian Letter W -\U10288;Lycian Letter Z -\U10289;Lycian Letter Th -\U1028A;Lycian Letter J -\U1028B;Lycian Letter K -\U1028C;Lycian Letter Q -\U1028D;Lycian Letter L -\U1028E;Lycian Letter M -\U1028F;Lycian Letter N -\U10290;Lycian Letter Mm -\U10291;Lycian Letter Nn -\U10292;Lycian Letter U -\U10293;Lycian Letter P -\U10294;Lycian Letter Kk -\U10295;Lycian Letter R -\U10296;Lycian Letter S -\U10297;Lycian Letter T -\U10298;Lycian Letter Tt -\U10299;Lycian Letter An -\U1029A;Lycian Letter En -\U1029B;Lycian Letter H -\U1029C;Lycian Letter X -\U102A0;Carian Letter A -\U102A1;Carian Letter P2 -\U102A2;Carian Letter D -\U102A3;Carian Letter L -\U102A4;Carian Letter Uuu -\U102A5;Carian Letter R -\U102A6;Carian Letter Ld -\U102A7;Carian Letter A2 -\U102A8;Carian Letter Q -\U102A9;Carian Letter B -\U102AA;Carian Letter M -\U102AB;Carian Letter O -\U102AC;Carian Letter D2 -\U102AD;Carian Letter T -\U102AE;Carian Letter Sh -\U102AF;Carian Letter Sh2 -\U102B0;Carian Letter S -\U102B1;Carian Letter C-18 -\U102B2;Carian Letter U -\U102B3;Carian Letter Nn -\U102B4;Carian Letter X -\U102B5;Carian Letter N -\U102B6;Carian Letter Tt2 -\U102B7;Carian Letter P -\U102B8;Carian Letter Ss -\U102B9;Carian Letter I -\U102BA;Carian Letter E -\U102BB;Carian Letter Uuuu -\U102BC;Carian Letter K -\U102BD;Carian Letter K2 -\U102BE;Carian Letter Nd -\U102BF;Carian Letter Uu -\U102C0;Carian Letter G -\U102C1;Carian Letter G2 -\U102C2;Carian Letter St -\U102C3;Carian Letter St2 -\U102C4;Carian Letter Ng -\U102C5;Carian Letter Ii -\U102C6;Carian Letter C-39 -\U102C7;Carian Letter Tt -\U102C8;Carian Letter Uuu2 -\U102C9;Carian Letter Rr -\U102CA;Carian Letter Mb -\U102CB;Carian Letter Mb2 -\U102CC;Carian Letter Mb3 -\U102CD;Carian Letter Mb4 -\U102CE;Carian Letter Ld2 -\U102CF;Carian Letter E2 -\U102D0;Carian Letter Uuu3 -\U102E0;Coptic Epact Thousands Mark -\U102E1;Coptic Epact Digit One -\U102E2;Coptic Epact Digit Two -\U102E3;Coptic Epact Digit Three -\U102E4;Coptic Epact Digit Four -\U102E5;Coptic Epact Digit Five -\U102E6;Coptic Epact Digit Six -\U102E7;Coptic Epact Digit Seven -\U102E8;Coptic Epact Digit Eight -\U102E9;Coptic Epact Digit Nine -\U102EA;Coptic Epact Number Ten -\U102EB;Coptic Epact Number Twenty -\U102EC;Coptic Epact Number Thirty -\U102ED;Coptic Epact Number Forty -\U102EE;Coptic Epact Number Fifty -\U102EF;Coptic Epact Number Sixty -\U102F0;Coptic Epact Number Seventy -\U102F1;Coptic Epact Number Eighty -\U102F2;Coptic Epact Number Ninety -\U102F3;Coptic Epact Number One Hundred -\U102F4;Coptic Epact Number Two Hundred -\U102F5;Coptic Epact Number Three Hundred -\U102F6;Coptic Epact Number Four Hundred -\U102F7;Coptic Epact Number Five Hundred -\U102F8;Coptic Epact Number Six Hundred -\U102F9;Coptic Epact Number Seven Hundred -\U102FA;Coptic Epact Number Eight Hundred -\U102FB;Coptic Epact Number Nine Hundred -\U10300;Old Italic Letter A -\U10301;Old Italic Letter Be -\U10302;Old Italic Letter Ke -\U10303;Old Italic Letter De -\U10304;Old Italic Letter E -\U10305;Old Italic Letter Ve -\U10306;Old Italic Letter Ze -\U10307;Old Italic Letter He -\U10308;Old Italic Letter The -\U10309;Old Italic Letter I -\U1030A;Old Italic Letter Ka -\U1030B;Old Italic Letter El -\U1030C;Old Italic Letter Em -\U1030D;Old Italic Letter En -\U1030E;Old Italic Letter Esh -\U1030F;Old Italic Letter O -\U10310;Old Italic Letter Pe -\U10311;Old Italic Letter She -\U10312;Old Italic Letter Ku -\U10313;Old Italic Letter Er -\U10314;Old Italic Letter Es -\U10315;Old Italic Letter Te -\U10316;Old Italic Letter U -\U10317;Old Italic Letter Eks -\U10318;Old Italic Letter Phe -\U10319;Old Italic Letter Khe -\U1031A;Old Italic Letter Ef -\U1031B;Old Italic Letter Ers -\U1031C;Old Italic Letter Che -\U1031D;Old Italic Letter Ii -\U1031E;Old Italic Letter Uu -\U1031F;Old Italic Letter Ess -\U10320;Old Italic Numeral One -\U10321;Old Italic Numeral Five -\U10322;Old Italic Numeral Ten -\U10323;Old Italic Numeral Fifty -\U1032D;Old Italic Letter Ye -\U1032E;Old Italic Letter Northern Tse -\U1032F;Old Italic Letter Southern Tse -\U10330;Gothic Letter Ahsa -\U10331;Gothic Letter Bairkan -\U10332;Gothic Letter Giba -\U10333;Gothic Letter Dags -\U10334;Gothic Letter Aihvus -\U10335;Gothic Letter Qairthra -\U10336;Gothic Letter Iuja -\U10337;Gothic Letter Hagl -\U10338;Gothic Letter Thiuth -\U10339;Gothic Letter Eis -\U1033A;Gothic Letter Kusma -\U1033B;Gothic Letter Lagus -\U1033C;Gothic Letter Manna -\U1033D;Gothic Letter Nauths -\U1033E;Gothic Letter Jer -\U1033F;Gothic Letter Urus -\U10340;Gothic Letter Pairthra -\U10341;Gothic Letter Ninety -\U10342;Gothic Letter Raida -\U10343;Gothic Letter Sauil -\U10344;Gothic Letter Teiws -\U10345;Gothic Letter Winja -\U10346;Gothic Letter Faihu -\U10347;Gothic Letter Iggws -\U10348;Gothic Letter Hwair -\U10349;Gothic Letter Othal -\U1034A;Gothic Letter Nine Hundred -\U10350;Old Permic Letter An -\U10351;Old Permic Letter Bur -\U10352;Old Permic Letter Gai -\U10353;Old Permic Letter Doi -\U10354;Old Permic Letter E -\U10355;Old Permic Letter Zhoi -\U10356;Old Permic Letter Dzhoi -\U10357;Old Permic Letter Zata -\U10358;Old Permic Letter Dzita -\U10359;Old Permic Letter I -\U1035A;Old Permic Letter Koke -\U1035B;Old Permic Letter Lei -\U1035C;Old Permic Letter Menoe -\U1035D;Old Permic Letter Nenoe -\U1035E;Old Permic Letter Vooi -\U1035F;Old Permic Letter Peei -\U10360;Old Permic Letter Rei -\U10361;Old Permic Letter Sii -\U10362;Old Permic Letter Tai -\U10363;Old Permic Letter U -\U10364;Old Permic Letter Chery -\U10365;Old Permic Letter Shooi -\U10366;Old Permic Letter Shchooi -\U10367;Old Permic Letter Yry -\U10368;Old Permic Letter Yeru -\U10369;Old Permic Letter O -\U1036A;Old Permic Letter Oo -\U1036B;Old Permic Letter Ef -\U1036C;Old Permic Letter Ha -\U1036D;Old Permic Letter Tsiu -\U1036E;Old Permic Letter Ver -\U1036F;Old Permic Letter Yer -\U10370;Old Permic Letter Yeri -\U10371;Old Permic Letter Yat -\U10372;Old Permic Letter Ie -\U10373;Old Permic Letter Yu -\U10374;Old Permic Letter Ya -\U10375;Old Permic Letter Ia -\U10376;Combining Old Permic Letter An -\U10377;Combining Old Permic Letter Doi -\U10378;Combining Old Permic Letter Zata -\U10379;Combining Old Permic Letter Nenoe -\U1037A;Combining Old Permic Letter Sii -\U10380;Ugaritic Letter Alpa -\U10381;Ugaritic Letter Beta -\U10382;Ugaritic Letter Gamla -\U10383;Ugaritic Letter Kha -\U10384;Ugaritic Letter Delta -\U10385;Ugaritic Letter Ho -\U10386;Ugaritic Letter Wo -\U10387;Ugaritic Letter Zeta -\U10388;Ugaritic Letter Hota -\U10389;Ugaritic Letter Tet -\U1038A;Ugaritic Letter Yod -\U1038B;Ugaritic Letter Kaf -\U1038C;Ugaritic Letter Shin -\U1038D;Ugaritic Letter Lamda -\U1038E;Ugaritic Letter Mem -\U1038F;Ugaritic Letter Dhal -\U10390;Ugaritic Letter Nun -\U10391;Ugaritic Letter Zu -\U10392;Ugaritic Letter Samka -\U10393;Ugaritic Letter Ain -\U10394;Ugaritic Letter Pu -\U10395;Ugaritic Letter Sade -\U10396;Ugaritic Letter Qopa -\U10397;Ugaritic Letter Rasha -\U10398;Ugaritic Letter Thanna -\U10399;Ugaritic Letter Ghain -\U1039A;Ugaritic Letter To -\U1039B;Ugaritic Letter I -\U1039C;Ugaritic Letter U -\U1039D;Ugaritic Letter Ssu -\U1039F;Ugaritic Word Divider -\U103A0;Old Persian Sign A -\U103A1;Old Persian Sign I -\U103A2;Old Persian Sign U -\U103A3;Old Persian Sign Ka -\U103A4;Old Persian Sign Ku -\U103A5;Old Persian Sign Ga -\U103A6;Old Persian Sign Gu -\U103A7;Old Persian Sign Xa -\U103A8;Old Persian Sign Ca -\U103A9;Old Persian Sign Ja -\U103AA;Old Persian Sign Ji -\U103AB;Old Persian Sign Ta -\U103AC;Old Persian Sign Tu -\U103AD;Old Persian Sign Da -\U103AE;Old Persian Sign Di -\U103AF;Old Persian Sign Du -\U103B0;Old Persian Sign Tha -\U103B1;Old Persian Sign Pa -\U103B2;Old Persian Sign Ba -\U103B3;Old Persian Sign Fa -\U103B4;Old Persian Sign Na -\U103B5;Old Persian Sign Nu -\U103B6;Old Persian Sign Ma -\U103B7;Old Persian Sign Mi -\U103B8;Old Persian Sign Mu -\U103B9;Old Persian Sign Ya -\U103BA;Old Persian Sign Va -\U103BB;Old Persian Sign Vi -\U103BC;Old Persian Sign Ra -\U103BD;Old Persian Sign Ru -\U103BE;Old Persian Sign La -\U103BF;Old Persian Sign Sa -\U103C0;Old Persian Sign Za -\U103C1;Old Persian Sign Sha -\U103C2;Old Persian Sign Ssa -\U103C3;Old Persian Sign Ha -\U103C8;Old Persian Sign Auramazdaa -\U103C9;Old Persian Sign Auramazdaa-2 -\U103CA;Old Persian Sign Auramazdaaha -\U103CB;Old Persian Sign Xshaayathiya -\U103CC;Old Persian Sign Dahyaaush -\U103CD;Old Persian Sign Dahyaaush-2 -\U103CE;Old Persian Sign Baga -\U103CF;Old Persian Sign Buumish -\U103D0;Old Persian Word Divider -\U103D1;Old Persian Number One -\U103D2;Old Persian Number Two -\U103D3;Old Persian Number Ten -\U103D4;Old Persian Number Twenty -\U103D5;Old Persian Number Hundred -\U10400;Deseret Capital Letter Long I -\U10401;Deseret Capital Letter Long E -\U10402;Deseret Capital Letter Long A -\U10403;Deseret Capital Letter Long Ah -\U10404;Deseret Capital Letter Long O -\U10405;Deseret Capital Letter Long Oo -\U10406;Deseret Capital Letter Short I -\U10407;Deseret Capital Letter Short E -\U10408;Deseret Capital Letter Short A -\U10409;Deseret Capital Letter Short Ah -\U1040A;Deseret Capital Letter Short O -\U1040B;Deseret Capital Letter Short Oo -\U1040C;Deseret Capital Letter Ay -\U1040D;Deseret Capital Letter Ow -\U1040E;Deseret Capital Letter Wu -\U1040F;Deseret Capital Letter Yee -\U10410;Deseret Capital Letter H -\U10411;Deseret Capital Letter Pee -\U10412;Deseret Capital Letter Bee -\U10413;Deseret Capital Letter Tee -\U10414;Deseret Capital Letter Dee -\U10415;Deseret Capital Letter Chee -\U10416;Deseret Capital Letter Jee -\U10417;Deseret Capital Letter Kay -\U10418;Deseret Capital Letter Gay -\U10419;Deseret Capital Letter Ef -\U1041A;Deseret Capital Letter Vee -\U1041B;Deseret Capital Letter Eth -\U1041C;Deseret Capital Letter Thee -\U1041D;Deseret Capital Letter Es -\U1041E;Deseret Capital Letter Zee -\U1041F;Deseret Capital Letter Esh -\U10420;Deseret Capital Letter Zhee -\U10421;Deseret Capital Letter Er -\U10422;Deseret Capital Letter El -\U10423;Deseret Capital Letter Em -\U10424;Deseret Capital Letter En -\U10425;Deseret Capital Letter Eng -\U10426;Deseret Capital Letter Oi -\U10427;Deseret Capital Letter Ew -\U10428;Deseret Small Letter Long I -\U10429;Deseret Small Letter Long E -\U1042A;Deseret Small Letter Long A -\U1042B;Deseret Small Letter Long Ah -\U1042C;Deseret Small Letter Long O -\U1042D;Deseret Small Letter Long Oo -\U1042E;Deseret Small Letter Short I -\U1042F;Deseret Small Letter Short E -\U10430;Deseret Small Letter Short A -\U10431;Deseret Small Letter Short Ah -\U10432;Deseret Small Letter Short O -\U10433;Deseret Small Letter Short Oo -\U10434;Deseret Small Letter Ay -\U10435;Deseret Small Letter Ow -\U10436;Deseret Small Letter Wu -\U10437;Deseret Small Letter Yee -\U10438;Deseret Small Letter H -\U10439;Deseret Small Letter Pee -\U1043A;Deseret Small Letter Bee -\U1043B;Deseret Small Letter Tee -\U1043C;Deseret Small Letter Dee -\U1043D;Deseret Small Letter Chee -\U1043E;Deseret Small Letter Jee -\U1043F;Deseret Small Letter Kay -\U10440;Deseret Small Letter Gay -\U10441;Deseret Small Letter Ef -\U10442;Deseret Small Letter Vee -\U10443;Deseret Small Letter Eth -\U10444;Deseret Small Letter Thee -\U10445;Deseret Small Letter Es -\U10446;Deseret Small Letter Zee -\U10447;Deseret Small Letter Esh -\U10448;Deseret Small Letter Zhee -\U10449;Deseret Small Letter Er -\U1044A;Deseret Small Letter El -\U1044B;Deseret Small Letter Em -\U1044C;Deseret Small Letter En -\U1044D;Deseret Small Letter Eng -\U1044E;Deseret Small Letter Oi -\U1044F;Deseret Small Letter Ew -\U10450;Shavian Letter Peep -\U10451;Shavian Letter Tot -\U10452;Shavian Letter Kick -\U10453;Shavian Letter Fee -\U10454;Shavian Letter Thigh -\U10455;Shavian Letter So -\U10456;Shavian Letter Sure -\U10457;Shavian Letter Church -\U10458;Shavian Letter Yea -\U10459;Shavian Letter Hung -\U1045A;Shavian Letter Bib -\U1045B;Shavian Letter Dead -\U1045C;Shavian Letter Gag -\U1045D;Shavian Letter Vow -\U1045E;Shavian Letter They -\U1045F;Shavian Letter Zoo -\U10460;Shavian Letter Measure -\U10461;Shavian Letter Judge -\U10462;Shavian Letter Woe -\U10463;Shavian Letter Ha-Ha -\U10464;Shavian Letter Loll -\U10465;Shavian Letter Mime -\U10466;Shavian Letter If -\U10467;Shavian Letter Egg -\U10468;Shavian Letter Ash -\U10469;Shavian Letter Ado -\U1046A;Shavian Letter On -\U1046B;Shavian Letter Wool -\U1046C;Shavian Letter Out -\U1046D;Shavian Letter Ah -\U1046E;Shavian Letter Roar -\U1046F;Shavian Letter Nun -\U10470;Shavian Letter Eat -\U10471;Shavian Letter Age -\U10472;Shavian Letter Ice -\U10473;Shavian Letter Up -\U10474;Shavian Letter Oak -\U10475;Shavian Letter Ooze -\U10476;Shavian Letter Oil -\U10477;Shavian Letter Awe -\U10478;Shavian Letter Are -\U10479;Shavian Letter Or -\U1047A;Shavian Letter Air -\U1047B;Shavian Letter Err -\U1047C;Shavian Letter Array -\U1047D;Shavian Letter Ear -\U1047E;Shavian Letter Ian -\U1047F;Shavian Letter Yew -\U10480;Osmanya Letter Alef -\U10481;Osmanya Letter Ba -\U10482;Osmanya Letter Ta -\U10483;Osmanya Letter Ja -\U10484;Osmanya Letter Xa -\U10485;Osmanya Letter Kha -\U10486;Osmanya Letter Deel -\U10487;Osmanya Letter Ra -\U10488;Osmanya Letter Sa -\U10489;Osmanya Letter Shiin -\U1048A;Osmanya Letter Dha -\U1048B;Osmanya Letter Cayn -\U1048C;Osmanya Letter Ga -\U1048D;Osmanya Letter Fa -\U1048E;Osmanya Letter Qaaf -\U1048F;Osmanya Letter Kaaf -\U10490;Osmanya Letter Laan -\U10491;Osmanya Letter Miin -\U10492;Osmanya Letter Nuun -\U10493;Osmanya Letter Waw -\U10494;Osmanya Letter Ha -\U10495;Osmanya Letter Ya -\U10496;Osmanya Letter A -\U10497;Osmanya Letter E -\U10498;Osmanya Letter I -\U10499;Osmanya Letter O -\U1049A;Osmanya Letter U -\U1049B;Osmanya Letter Aa -\U1049C;Osmanya Letter Ee -\U1049D;Osmanya Letter Oo -\U104A0;Osmanya Digit Zero -\U104A1;Osmanya Digit One -\U104A2;Osmanya Digit Two -\U104A3;Osmanya Digit Three -\U104A4;Osmanya Digit Four -\U104A5;Osmanya Digit Five -\U104A6;Osmanya Digit Six -\U104A7;Osmanya Digit Seven -\U104A8;Osmanya Digit Eight -\U104A9;Osmanya Digit Nine -\U104B0;Osage Capital Letter A -\U104B1;Osage Capital Letter Ai -\U104B2;Osage Capital Letter Ain -\U104B3;Osage Capital Letter Ah -\U104B4;Osage Capital Letter Bra -\U104B5;Osage Capital Letter Cha -\U104B6;Osage Capital Letter Ehcha -\U104B7;Osage Capital Letter E -\U104B8;Osage Capital Letter Ein -\U104B9;Osage Capital Letter Ha -\U104BA;Osage Capital Letter Hya -\U104BB;Osage Capital Letter I -\U104BC;Osage Capital Letter Ka -\U104BD;Osage Capital Letter Ehka -\U104BE;Osage Capital Letter Kya -\U104BF;Osage Capital Letter La -\U104C0;Osage Capital Letter Ma -\U104C1;Osage Capital Letter Na -\U104C2;Osage Capital Letter O -\U104C3;Osage Capital Letter Oin -\U104C4;Osage Capital Letter Pa -\U104C5;Osage Capital Letter Ehpa -\U104C6;Osage Capital Letter Sa -\U104C7;Osage Capital Letter Sha -\U104C8;Osage Capital Letter Ta -\U104C9;Osage Capital Letter Ehta -\U104CA;Osage Capital Letter Tsa -\U104CB;Osage Capital Letter Ehtsa -\U104CC;Osage Capital Letter Tsha -\U104CD;Osage Capital Letter Dha -\U104CE;Osage Capital Letter U -\U104CF;Osage Capital Letter Wa -\U104D0;Osage Capital Letter Kha -\U104D1;Osage Capital Letter Gha -\U104D2;Osage Capital Letter Za -\U104D3;Osage Capital Letter Zha -\U104D8;Osage Small Letter A -\U104D9;Osage Small Letter Ai -\U104DA;Osage Small Letter Ain -\U104DB;Osage Small Letter Ah -\U104DC;Osage Small Letter Bra -\U104DD;Osage Small Letter Cha -\U104DE;Osage Small Letter Ehcha -\U104DF;Osage Small Letter E -\U104E0;Osage Small Letter Ein -\U104E1;Osage Small Letter Ha -\U104E2;Osage Small Letter Hya -\U104E3;Osage Small Letter I -\U104E4;Osage Small Letter Ka -\U104E5;Osage Small Letter Ehka -\U104E6;Osage Small Letter Kya -\U104E7;Osage Small Letter La -\U104E8;Osage Small Letter Ma -\U104E9;Osage Small Letter Na -\U104EA;Osage Small Letter O -\U104EB;Osage Small Letter Oin -\U104EC;Osage Small Letter Pa -\U104ED;Osage Small Letter Ehpa -\U104EE;Osage Small Letter Sa -\U104EF;Osage Small Letter Sha -\U104F0;Osage Small Letter Ta -\U104F1;Osage Small Letter Ehta -\U104F2;Osage Small Letter Tsa -\U104F3;Osage Small Letter Ehtsa -\U104F4;Osage Small Letter Tsha -\U104F5;Osage Small Letter Dha -\U104F6;Osage Small Letter U -\U104F7;Osage Small Letter Wa -\U104F8;Osage Small Letter Kha -\U104F9;Osage Small Letter Gha -\U104FA;Osage Small Letter Za -\U104FB;Osage Small Letter Zha -\U10500;Elbasan Letter A -\U10501;Elbasan Letter Be -\U10502;Elbasan Letter Ce -\U10503;Elbasan Letter Che -\U10504;Elbasan Letter De -\U10505;Elbasan Letter Nde -\U10506;Elbasan Letter Dhe -\U10507;Elbasan Letter Ei -\U10508;Elbasan Letter E -\U10509;Elbasan Letter Fe -\U1050A;Elbasan Letter Ge -\U1050B;Elbasan Letter Gje -\U1050C;Elbasan Letter He -\U1050D;Elbasan Letter I -\U1050E;Elbasan Letter Je -\U1050F;Elbasan Letter Ke -\U10510;Elbasan Letter Le -\U10511;Elbasan Letter Lle -\U10512;Elbasan Letter Me -\U10513;Elbasan Letter Ne -\U10514;Elbasan Letter Na -\U10515;Elbasan Letter Nje -\U10516;Elbasan Letter O -\U10517;Elbasan Letter Pe -\U10518;Elbasan Letter Qe -\U10519;Elbasan Letter Re -\U1051A;Elbasan Letter Rre -\U1051B;Elbasan Letter Se -\U1051C;Elbasan Letter She -\U1051D;Elbasan Letter Te -\U1051E;Elbasan Letter The -\U1051F;Elbasan Letter U -\U10520;Elbasan Letter Ve -\U10521;Elbasan Letter Xe -\U10522;Elbasan Letter Y -\U10523;Elbasan Letter Ze -\U10524;Elbasan Letter Zhe -\U10525;Elbasan Letter Ghe -\U10526;Elbasan Letter Ghamma -\U10527;Elbasan Letter Khe -\U10530;Caucasian Albanian Letter Alt -\U10531;Caucasian Albanian Letter Bet -\U10532;Caucasian Albanian Letter Gim -\U10533;Caucasian Albanian Letter Dat -\U10534;Caucasian Albanian Letter Eb -\U10535;Caucasian Albanian Letter Zarl -\U10536;Caucasian Albanian Letter Eyn -\U10537;Caucasian Albanian Letter Zhil -\U10538;Caucasian Albanian Letter Tas -\U10539;Caucasian Albanian Letter Cha -\U1053A;Caucasian Albanian Letter Yowd -\U1053B;Caucasian Albanian Letter Zha -\U1053C;Caucasian Albanian Letter Irb -\U1053D;Caucasian Albanian Letter Sha -\U1053E;Caucasian Albanian Letter Lan -\U1053F;Caucasian Albanian Letter Inya -\U10540;Caucasian Albanian Letter Xeyn -\U10541;Caucasian Albanian Letter Dyan -\U10542;Caucasian Albanian Letter Car -\U10543;Caucasian Albanian Letter Jhox -\U10544;Caucasian Albanian Letter Kar -\U10545;Caucasian Albanian Letter Lyit -\U10546;Caucasian Albanian Letter Heyt -\U10547;Caucasian Albanian Letter Qay -\U10548;Caucasian Albanian Letter Aor -\U10549;Caucasian Albanian Letter Choy -\U1054A;Caucasian Albanian Letter Chi -\U1054B;Caucasian Albanian Letter Cyay -\U1054C;Caucasian Albanian Letter Maq -\U1054D;Caucasian Albanian Letter Qar -\U1054E;Caucasian Albanian Letter Nowc -\U1054F;Caucasian Albanian Letter Dzyay -\U10550;Caucasian Albanian Letter Shak -\U10551;Caucasian Albanian Letter Jayn -\U10552;Caucasian Albanian Letter On -\U10553;Caucasian Albanian Letter Tyay -\U10554;Caucasian Albanian Letter Fam -\U10555;Caucasian Albanian Letter Dzay -\U10556;Caucasian Albanian Letter Chat -\U10557;Caucasian Albanian Letter Pen -\U10558;Caucasian Albanian Letter Gheys -\U10559;Caucasian Albanian Letter Rat -\U1055A;Caucasian Albanian Letter Seyk -\U1055B;Caucasian Albanian Letter Veyz -\U1055C;Caucasian Albanian Letter Tiwr -\U1055D;Caucasian Albanian Letter Shoy -\U1055E;Caucasian Albanian Letter Iwn -\U1055F;Caucasian Albanian Letter Cyaw -\U10560;Caucasian Albanian Letter Cayn -\U10561;Caucasian Albanian Letter Yayd -\U10562;Caucasian Albanian Letter Piwr -\U10563;Caucasian Albanian Letter Kiw -\U1056F;Caucasian Albanian Citation Mark -\U10570;Vithkuqi Capital Letter A -\U10571;Vithkuqi Capital Letter Bbe -\U10572;Vithkuqi Capital Letter Be -\U10573;Vithkuqi Capital Letter Ce -\U10574;Vithkuqi Capital Letter Che -\U10575;Vithkuqi Capital Letter De -\U10576;Vithkuqi Capital Letter Dhe -\U10577;Vithkuqi Capital Letter Ei -\U10578;Vithkuqi Capital Letter E -\U10579;Vithkuqi Capital Letter Fe -\U1057A;Vithkuqi Capital Letter Ga -\U1057C;Vithkuqi Capital Letter Ha -\U1057D;Vithkuqi Capital Letter Hha -\U1057E;Vithkuqi Capital Letter I -\U1057F;Vithkuqi Capital Letter Ije -\U10580;Vithkuqi Capital Letter Je -\U10581;Vithkuqi Capital Letter Ka -\U10582;Vithkuqi Capital Letter La -\U10583;Vithkuqi Capital Letter Lla -\U10584;Vithkuqi Capital Letter Me -\U10585;Vithkuqi Capital Letter Ne -\U10586;Vithkuqi Capital Letter Nje -\U10587;Vithkuqi Capital Letter O -\U10588;Vithkuqi Capital Letter Pe -\U10589;Vithkuqi Capital Letter Qa -\U1058A;Vithkuqi Capital Letter Re -\U1058C;Vithkuqi Capital Letter Se -\U1058D;Vithkuqi Capital Letter She -\U1058E;Vithkuqi Capital Letter Te -\U1058F;Vithkuqi Capital Letter The -\U10590;Vithkuqi Capital Letter U -\U10591;Vithkuqi Capital Letter Ve -\U10592;Vithkuqi Capital Letter Xe -\U10594;Vithkuqi Capital Letter Y -\U10595;Vithkuqi Capital Letter Ze -\U10597;Vithkuqi Small Letter A -\U10598;Vithkuqi Small Letter Bbe -\U10599;Vithkuqi Small Letter Be -\U1059A;Vithkuqi Small Letter Ce -\U1059B;Vithkuqi Small Letter Che -\U1059C;Vithkuqi Small Letter De -\U1059D;Vithkuqi Small Letter Dhe -\U1059E;Vithkuqi Small Letter Ei -\U1059F;Vithkuqi Small Letter E -\U105A0;Vithkuqi Small Letter Fe -\U105A1;Vithkuqi Small Letter Ga -\U105A3;Vithkuqi Small Letter Ha -\U105A4;Vithkuqi Small Letter Hha -\U105A5;Vithkuqi Small Letter I -\U105A6;Vithkuqi Small Letter Ije -\U105A7;Vithkuqi Small Letter Je -\U105A8;Vithkuqi Small Letter Ka -\U105A9;Vithkuqi Small Letter La -\U105AA;Vithkuqi Small Letter Lla -\U105AB;Vithkuqi Small Letter Me -\U105AC;Vithkuqi Small Letter Ne -\U105AD;Vithkuqi Small Letter Nje -\U105AE;Vithkuqi Small Letter O -\U105AF;Vithkuqi Small Letter Pe -\U105B0;Vithkuqi Small Letter Qa -\U105B1;Vithkuqi Small Letter Re -\U105B3;Vithkuqi Small Letter Se -\U105B4;Vithkuqi Small Letter She -\U105B5;Vithkuqi Small Letter Te -\U105B6;Vithkuqi Small Letter The -\U105B7;Vithkuqi Small Letter U -\U105B8;Vithkuqi Small Letter Ve -\U105B9;Vithkuqi Small Letter Xe -\U105BB;Vithkuqi Small Letter Y -\U105BC;Vithkuqi Small Letter Ze -\U10600;Linear A Sign Ab001 -\U10601;Linear A Sign Ab002 -\U10602;Linear A Sign Ab003 -\U10603;Linear A Sign Ab004 -\U10604;Linear A Sign Ab005 -\U10605;Linear A Sign Ab006 -\U10606;Linear A Sign Ab007 -\U10607;Linear A Sign Ab008 -\U10608;Linear A Sign Ab009 -\U10609;Linear A Sign Ab010 -\U1060A;Linear A Sign Ab011 -\U1060B;Linear A Sign Ab013 -\U1060C;Linear A Sign Ab016 -\U1060D;Linear A Sign Ab017 -\U1060E;Linear A Sign Ab020 -\U1060F;Linear A Sign Ab021 -\U10610;Linear A Sign Ab021F -\U10611;Linear A Sign Ab021M -\U10612;Linear A Sign Ab022 -\U10613;Linear A Sign Ab022F -\U10614;Linear A Sign Ab022M -\U10615;Linear A Sign Ab023 -\U10616;Linear A Sign Ab023M -\U10617;Linear A Sign Ab024 -\U10618;Linear A Sign Ab026 -\U10619;Linear A Sign Ab027 -\U1061A;Linear A Sign Ab028 -\U1061B;Linear A Sign A028B -\U1061C;Linear A Sign Ab029 -\U1061D;Linear A Sign Ab030 -\U1061E;Linear A Sign Ab031 -\U1061F;Linear A Sign Ab034 -\U10620;Linear A Sign Ab037 -\U10621;Linear A Sign Ab038 -\U10622;Linear A Sign Ab039 -\U10623;Linear A Sign Ab040 -\U10624;Linear A Sign Ab041 -\U10625;Linear A Sign Ab044 -\U10626;Linear A Sign Ab045 -\U10627;Linear A Sign Ab046 -\U10628;Linear A Sign Ab047 -\U10629;Linear A Sign Ab048 -\U1062A;Linear A Sign Ab049 -\U1062B;Linear A Sign Ab050 -\U1062C;Linear A Sign Ab051 -\U1062D;Linear A Sign Ab053 -\U1062E;Linear A Sign Ab054 -\U1062F;Linear A Sign Ab055 -\U10630;Linear A Sign Ab056 -\U10631;Linear A Sign Ab057 -\U10632;Linear A Sign Ab058 -\U10633;Linear A Sign Ab059 -\U10634;Linear A Sign Ab060 -\U10635;Linear A Sign Ab061 -\U10636;Linear A Sign Ab065 -\U10637;Linear A Sign Ab066 -\U10638;Linear A Sign Ab067 -\U10639;Linear A Sign Ab069 -\U1063A;Linear A Sign Ab070 -\U1063B;Linear A Sign Ab073 -\U1063C;Linear A Sign Ab074 -\U1063D;Linear A Sign Ab076 -\U1063E;Linear A Sign Ab077 -\U1063F;Linear A Sign Ab078 -\U10640;Linear A Sign Ab079 -\U10641;Linear A Sign Ab080 -\U10642;Linear A Sign Ab081 -\U10643;Linear A Sign Ab082 -\U10644;Linear A Sign Ab085 -\U10645;Linear A Sign Ab086 -\U10646;Linear A Sign Ab087 -\U10647;Linear A Sign A100-102 -\U10648;Linear A Sign Ab118 -\U10649;Linear A Sign Ab120 -\U1064A;Linear A Sign A120B -\U1064B;Linear A Sign Ab122 -\U1064C;Linear A Sign Ab123 -\U1064D;Linear A Sign Ab131A -\U1064E;Linear A Sign Ab131B -\U1064F;Linear A Sign A131C -\U10650;Linear A Sign Ab164 -\U10651;Linear A Sign Ab171 -\U10652;Linear A Sign Ab180 -\U10653;Linear A Sign Ab188 -\U10654;Linear A Sign Ab191 -\U10655;Linear A Sign A301 -\U10656;Linear A Sign A302 -\U10657;Linear A Sign A303 -\U10658;Linear A Sign A304 -\U10659;Linear A Sign A305 -\U1065A;Linear A Sign A306 -\U1065B;Linear A Sign A307 -\U1065C;Linear A Sign A308 -\U1065D;Linear A Sign A309A -\U1065E;Linear A Sign A309B -\U1065F;Linear A Sign A309C -\U10660;Linear A Sign A310 -\U10661;Linear A Sign A311 -\U10662;Linear A Sign A312 -\U10663;Linear A Sign A313A -\U10664;Linear A Sign A313B -\U10665;Linear A Sign A313C -\U10666;Linear A Sign A314 -\U10667;Linear A Sign A315 -\U10668;Linear A Sign A316 -\U10669;Linear A Sign A317 -\U1066A;Linear A Sign A318 -\U1066B;Linear A Sign A319 -\U1066C;Linear A Sign A320 -\U1066D;Linear A Sign A321 -\U1066E;Linear A Sign A322 -\U1066F;Linear A Sign A323 -\U10670;Linear A Sign A324 -\U10671;Linear A Sign A325 -\U10672;Linear A Sign A326 -\U10673;Linear A Sign A327 -\U10674;Linear A Sign A328 -\U10675;Linear A Sign A329 -\U10676;Linear A Sign A330 -\U10677;Linear A Sign A331 -\U10678;Linear A Sign A332 -\U10679;Linear A Sign A333 -\U1067A;Linear A Sign A334 -\U1067B;Linear A Sign A335 -\U1067C;Linear A Sign A336 -\U1067D;Linear A Sign A337 -\U1067E;Linear A Sign A338 -\U1067F;Linear A Sign A339 -\U10680;Linear A Sign A340 -\U10681;Linear A Sign A341 -\U10682;Linear A Sign A342 -\U10683;Linear A Sign A343 -\U10684;Linear A Sign A344 -\U10685;Linear A Sign A345 -\U10686;Linear A Sign A346 -\U10687;Linear A Sign A347 -\U10688;Linear A Sign A348 -\U10689;Linear A Sign A349 -\U1068A;Linear A Sign A350 -\U1068B;Linear A Sign A351 -\U1068C;Linear A Sign A352 -\U1068D;Linear A Sign A353 -\U1068E;Linear A Sign A354 -\U1068F;Linear A Sign A355 -\U10690;Linear A Sign A356 -\U10691;Linear A Sign A357 -\U10692;Linear A Sign A358 -\U10693;Linear A Sign A359 -\U10694;Linear A Sign A360 -\U10695;Linear A Sign A361 -\U10696;Linear A Sign A362 -\U10697;Linear A Sign A363 -\U10698;Linear A Sign A364 -\U10699;Linear A Sign A365 -\U1069A;Linear A Sign A366 -\U1069B;Linear A Sign A367 -\U1069C;Linear A Sign A368 -\U1069D;Linear A Sign A369 -\U1069E;Linear A Sign A370 -\U1069F;Linear A Sign A371 -\U106A0;Linear A Sign A400-Vas -\U106A1;Linear A Sign A401-Vas -\U106A2;Linear A Sign A402-Vas -\U106A3;Linear A Sign A403-Vas -\U106A4;Linear A Sign A404-Vas -\U106A5;Linear A Sign A405-Vas -\U106A6;Linear A Sign A406-Vas -\U106A7;Linear A Sign A407-Vas -\U106A8;Linear A Sign A408-Vas -\U106A9;Linear A Sign A409-Vas -\U106AA;Linear A Sign A410-Vas -\U106AB;Linear A Sign A411-Vas -\U106AC;Linear A Sign A412-Vas -\U106AD;Linear A Sign A413-Vas -\U106AE;Linear A Sign A414-Vas -\U106AF;Linear A Sign A415-Vas -\U106B0;Linear A Sign A416-Vas -\U106B1;Linear A Sign A417-Vas -\U106B2;Linear A Sign A418-Vas -\U106B3;Linear A Sign A501 -\U106B4;Linear A Sign A502 -\U106B5;Linear A Sign A503 -\U106B6;Linear A Sign A504 -\U106B7;Linear A Sign A505 -\U106B8;Linear A Sign A506 -\U106B9;Linear A Sign A508 -\U106BA;Linear A Sign A509 -\U106BB;Linear A Sign A510 -\U106BC;Linear A Sign A511 -\U106BD;Linear A Sign A512 -\U106BE;Linear A Sign A513 -\U106BF;Linear A Sign A515 -\U106C0;Linear A Sign A516 -\U106C1;Linear A Sign A520 -\U106C2;Linear A Sign A521 -\U106C3;Linear A Sign A523 -\U106C4;Linear A Sign A524 -\U106C5;Linear A Sign A525 -\U106C6;Linear A Sign A526 -\U106C7;Linear A Sign A527 -\U106C8;Linear A Sign A528 -\U106C9;Linear A Sign A529 -\U106CA;Linear A Sign A530 -\U106CB;Linear A Sign A531 -\U106CC;Linear A Sign A532 -\U106CD;Linear A Sign A534 -\U106CE;Linear A Sign A535 -\U106CF;Linear A Sign A536 -\U106D0;Linear A Sign A537 -\U106D1;Linear A Sign A538 -\U106D2;Linear A Sign A539 -\U106D3;Linear A Sign A540 -\U106D4;Linear A Sign A541 -\U106D5;Linear A Sign A542 -\U106D6;Linear A Sign A545 -\U106D7;Linear A Sign A547 -\U106D8;Linear A Sign A548 -\U106D9;Linear A Sign A549 -\U106DA;Linear A Sign A550 -\U106DB;Linear A Sign A551 -\U106DC;Linear A Sign A552 -\U106DD;Linear A Sign A553 -\U106DE;Linear A Sign A554 -\U106DF;Linear A Sign A555 -\U106E0;Linear A Sign A556 -\U106E1;Linear A Sign A557 -\U106E2;Linear A Sign A559 -\U106E3;Linear A Sign A563 -\U106E4;Linear A Sign A564 -\U106E5;Linear A Sign A565 -\U106E6;Linear A Sign A566 -\U106E7;Linear A Sign A568 -\U106E8;Linear A Sign A569 -\U106E9;Linear A Sign A570 -\U106EA;Linear A Sign A571 -\U106EB;Linear A Sign A572 -\U106EC;Linear A Sign A573 -\U106ED;Linear A Sign A574 -\U106EE;Linear A Sign A575 -\U106EF;Linear A Sign A576 -\U106F0;Linear A Sign A577 -\U106F1;Linear A Sign A578 -\U106F2;Linear A Sign A579 -\U106F3;Linear A Sign A580 -\U106F4;Linear A Sign A581 -\U106F5;Linear A Sign A582 -\U106F6;Linear A Sign A583 -\U106F7;Linear A Sign A584 -\U106F8;Linear A Sign A585 -\U106F9;Linear A Sign A586 -\U106FA;Linear A Sign A587 -\U106FB;Linear A Sign A588 -\U106FC;Linear A Sign A589 -\U106FD;Linear A Sign A591 -\U106FE;Linear A Sign A592 -\U106FF;Linear A Sign A594 -\U10700;Linear A Sign A595 -\U10701;Linear A Sign A596 -\U10702;Linear A Sign A598 -\U10703;Linear A Sign A600 -\U10704;Linear A Sign A601 -\U10705;Linear A Sign A602 -\U10706;Linear A Sign A603 -\U10707;Linear A Sign A604 -\U10708;Linear A Sign A606 -\U10709;Linear A Sign A608 -\U1070A;Linear A Sign A609 -\U1070B;Linear A Sign A610 -\U1070C;Linear A Sign A611 -\U1070D;Linear A Sign A612 -\U1070E;Linear A Sign A613 -\U1070F;Linear A Sign A614 -\U10710;Linear A Sign A615 -\U10711;Linear A Sign A616 -\U10712;Linear A Sign A617 -\U10713;Linear A Sign A618 -\U10714;Linear A Sign A619 -\U10715;Linear A Sign A620 -\U10716;Linear A Sign A621 -\U10717;Linear A Sign A622 -\U10718;Linear A Sign A623 -\U10719;Linear A Sign A624 -\U1071A;Linear A Sign A626 -\U1071B;Linear A Sign A627 -\U1071C;Linear A Sign A628 -\U1071D;Linear A Sign A629 -\U1071E;Linear A Sign A634 -\U1071F;Linear A Sign A637 -\U10720;Linear A Sign A638 -\U10721;Linear A Sign A640 -\U10722;Linear A Sign A642 -\U10723;Linear A Sign A643 -\U10724;Linear A Sign A644 -\U10725;Linear A Sign A645 -\U10726;Linear A Sign A646 -\U10727;Linear A Sign A648 -\U10728;Linear A Sign A649 -\U10729;Linear A Sign A651 -\U1072A;Linear A Sign A652 -\U1072B;Linear A Sign A653 -\U1072C;Linear A Sign A654 -\U1072D;Linear A Sign A655 -\U1072E;Linear A Sign A656 -\U1072F;Linear A Sign A657 -\U10730;Linear A Sign A658 -\U10731;Linear A Sign A659 -\U10732;Linear A Sign A660 -\U10733;Linear A Sign A661 -\U10734;Linear A Sign A662 -\U10735;Linear A Sign A663 -\U10736;Linear A Sign A664 -\U10740;Linear A Sign A701 A -\U10741;Linear A Sign A702 B -\U10742;Linear A Sign A703 D -\U10743;Linear A Sign A704 E -\U10744;Linear A Sign A705 F -\U10745;Linear A Sign A706 H -\U10746;Linear A Sign A707 J -\U10747;Linear A Sign A708 K -\U10748;Linear A Sign A709 L -\U10749;Linear A Sign A709-2 L2 -\U1074A;Linear A Sign A709-3 L3 -\U1074B;Linear A Sign A709-4 L4 -\U1074C;Linear A Sign A709-6 L6 -\U1074D;Linear A Sign A710 W -\U1074E;Linear A Sign A711 X -\U1074F;Linear A Sign A712 Y -\U10750;Linear A Sign A713 Omega -\U10751;Linear A Sign A714 Abb -\U10752;Linear A Sign A715 Bb -\U10753;Linear A Sign A717 Dd -\U10754;Linear A Sign A726 Eyyy -\U10755;Linear A Sign A732 Je -\U10760;Linear A Sign A800 -\U10761;Linear A Sign A801 -\U10762;Linear A Sign A802 -\U10763;Linear A Sign A803 -\U10764;Linear A Sign A804 -\U10765;Linear A Sign A805 -\U10766;Linear A Sign A806 -\U10767;Linear A Sign A807 -\U10780;Modifier Letter Small Capital Aa -\U10781;Modifier Letter Superscript Triangular Colon -\U10782;Modifier Letter Superscript Half Triangular Colon -\U10783;Modifier Letter Small Ae -\U10784;Modifier Letter Small Capital B -\U10785;Modifier Letter Small B With Hook -\U10787;Modifier Letter Small Dz Digraph -\U10788;Modifier Letter Small Dz Digraph With Retroflex Hook -\U10789;Modifier Letter Small Dz Digraph With Curl -\U1078A;Modifier Letter Small Dezh Digraph -\U1078B;Modifier Letter Small D With Tail -\U1078C;Modifier Letter Small D With Hook -\U1078D;Modifier Letter Small D With Hook And Tail -\U1078E;Modifier Letter Small Reversed E -\U1078F;Modifier Letter Small Closed Reversed Open E -\U10790;Modifier Letter Small Feng Digraph -\U10791;Modifier Letter Small Rams Horn -\U10792;Modifier Letter Small Capital G -\U10793;Modifier Letter Small G With Hook -\U10794;Modifier Letter Small Capital G With Hook -\U10795;Modifier Letter Small H With Stroke -\U10796;Modifier Letter Small Capital H -\U10797;Modifier Letter Small Heng With Hook -\U10798;Modifier Letter Small Dotless J With Stroke And Hook -\U10799;Modifier Letter Small Ls Digraph -\U1079A;Modifier Letter Small Lz Digraph -\U1079B;Modifier Letter Small L With Belt -\U1079C;Modifier Letter Small Capital L With Belt -\U1079D;Modifier Letter Small L With Retroflex Hook And Belt -\U1079E;Modifier Letter Small Lezh -\U1079F;Modifier Letter Small Lezh With Retroflex Hook -\U107A0;Modifier Letter Small Turned Y -\U107A1;Modifier Letter Small Turned Y With Belt -\U107A2;Modifier Letter Small O With Stroke -\U107A3;Modifier Letter Small Capital Oe -\U107A4;Modifier Letter Small Closed Omega -\U107A5;Modifier Letter Small Q -\U107A6;Modifier Letter Small Turned R With Long Leg -\U107A7;Modifier Letter Small Turned R With Long Leg And Retroflex Hook -\U107A8;Modifier Letter Small R With Tail -\U107A9;Modifier Letter Small R With Fishhook -\U107AA;Modifier Letter Small Capital R -\U107AB;Modifier Letter Small Tc Digraph With Curl -\U107AC;Modifier Letter Small Ts Digraph -\U107AD;Modifier Letter Small Ts Digraph With Retroflex Hook -\U107AE;Modifier Letter Small Tesh Digraph -\U107AF;Modifier Letter Small T With Retroflex Hook -\U107B0;Modifier Letter Small V With Right Hook -\U107B2;Modifier Letter Small Capital Y -\U107B3;Modifier Letter Glottal Stop With Stroke -\U107B4;Modifier Letter Reversed Glottal Stop With Stroke -\U107B5;Modifier Letter Bilabial Click -\U107B6;Modifier Letter Dental Click -\U107B7;Modifier Letter Lateral Click -\U107B8;Modifier Letter Alveolar Click -\U107B9;Modifier Letter Retroflex Click With Retroflex Hook -\U107BA;Modifier Letter Small S With Curl -\U10800;Cypriot Syllable A -\U10801;Cypriot Syllable E -\U10802;Cypriot Syllable I -\U10803;Cypriot Syllable O -\U10804;Cypriot Syllable U -\U10805;Cypriot Syllable Ja -\U10808;Cypriot Syllable Jo -\U1080A;Cypriot Syllable Ka -\U1080B;Cypriot Syllable Ke -\U1080C;Cypriot Syllable Ki -\U1080D;Cypriot Syllable Ko -\U1080E;Cypriot Syllable Ku -\U1080F;Cypriot Syllable La -\U10810;Cypriot Syllable Le -\U10811;Cypriot Syllable Li -\U10812;Cypriot Syllable Lo -\U10813;Cypriot Syllable Lu -\U10814;Cypriot Syllable Ma -\U10815;Cypriot Syllable Me -\U10816;Cypriot Syllable Mi -\U10817;Cypriot Syllable Mo -\U10818;Cypriot Syllable Mu -\U10819;Cypriot Syllable Na -\U1081A;Cypriot Syllable Ne -\U1081B;Cypriot Syllable Ni -\U1081C;Cypriot Syllable No -\U1081D;Cypriot Syllable Nu -\U1081E;Cypriot Syllable Pa -\U1081F;Cypriot Syllable Pe -\U10820;Cypriot Syllable Pi -\U10821;Cypriot Syllable Po -\U10822;Cypriot Syllable Pu -\U10823;Cypriot Syllable Ra -\U10824;Cypriot Syllable Re -\U10825;Cypriot Syllable Ri -\U10826;Cypriot Syllable Ro -\U10827;Cypriot Syllable Ru -\U10828;Cypriot Syllable Sa -\U10829;Cypriot Syllable Se -\U1082A;Cypriot Syllable Si -\U1082B;Cypriot Syllable So -\U1082C;Cypriot Syllable Su -\U1082D;Cypriot Syllable Ta -\U1082E;Cypriot Syllable Te -\U1082F;Cypriot Syllable Ti -\U10830;Cypriot Syllable To -\U10831;Cypriot Syllable Tu -\U10832;Cypriot Syllable Wa -\U10833;Cypriot Syllable We -\U10834;Cypriot Syllable Wi -\U10835;Cypriot Syllable Wo -\U10837;Cypriot Syllable Xa -\U10838;Cypriot Syllable Xe -\U1083C;Cypriot Syllable Za -\U1083F;Cypriot Syllable Zo -\U10840;Imperial Aramaic Letter Aleph -\U10841;Imperial Aramaic Letter Beth -\U10842;Imperial Aramaic Letter Gimel -\U10843;Imperial Aramaic Letter Daleth -\U10844;Imperial Aramaic Letter He -\U10845;Imperial Aramaic Letter Waw -\U10846;Imperial Aramaic Letter Zayin -\U10847;Imperial Aramaic Letter Heth -\U10848;Imperial Aramaic Letter Teth -\U10849;Imperial Aramaic Letter Yodh -\U1084A;Imperial Aramaic Letter Kaph -\U1084B;Imperial Aramaic Letter Lamedh -\U1084C;Imperial Aramaic Letter Mem -\U1084D;Imperial Aramaic Letter Nun -\U1084E;Imperial Aramaic Letter Samekh -\U1084F;Imperial Aramaic Letter Ayin -\U10850;Imperial Aramaic Letter Pe -\U10851;Imperial Aramaic Letter Sadhe -\U10852;Imperial Aramaic Letter Qoph -\U10853;Imperial Aramaic Letter Resh -\U10854;Imperial Aramaic Letter Shin -\U10855;Imperial Aramaic Letter Taw -\U10857;Imperial Aramaic Section Sign -\U10858;Imperial Aramaic Number One -\U10859;Imperial Aramaic Number Two -\U1085A;Imperial Aramaic Number Three -\U1085B;Imperial Aramaic Number Ten -\U1085C;Imperial Aramaic Number Twenty -\U1085D;Imperial Aramaic Number One Hundred -\U1085E;Imperial Aramaic Number One Thousand -\U1085F;Imperial Aramaic Number Ten Thousand -\U10860;Palmyrene Letter Aleph -\U10861;Palmyrene Letter Beth -\U10862;Palmyrene Letter Gimel -\U10863;Palmyrene Letter Daleth -\U10864;Palmyrene Letter He -\U10865;Palmyrene Letter Waw -\U10866;Palmyrene Letter Zayin -\U10867;Palmyrene Letter Heth -\U10868;Palmyrene Letter Teth -\U10869;Palmyrene Letter Yodh -\U1086A;Palmyrene Letter Kaph -\U1086B;Palmyrene Letter Lamedh -\U1086C;Palmyrene Letter Mem -\U1086D;Palmyrene Letter Final Nun -\U1086E;Palmyrene Letter Nun -\U1086F;Palmyrene Letter Samekh -\U10870;Palmyrene Letter Ayin -\U10871;Palmyrene Letter Pe -\U10872;Palmyrene Letter Sadhe -\U10873;Palmyrene Letter Qoph -\U10874;Palmyrene Letter Resh -\U10875;Palmyrene Letter Shin -\U10876;Palmyrene Letter Taw -\U10877;Palmyrene Left-Pointing Fleuron -\U10878;Palmyrene Right-Pointing Fleuron -\U10879;Palmyrene Number One -\U1087A;Palmyrene Number Two -\U1087B;Palmyrene Number Three -\U1087C;Palmyrene Number Four -\U1087D;Palmyrene Number Five -\U1087E;Palmyrene Number Ten -\U1087F;Palmyrene Number Twenty -\U10880;Nabataean Letter Final Aleph -\U10881;Nabataean Letter Aleph -\U10882;Nabataean Letter Final Beth -\U10883;Nabataean Letter Beth -\U10884;Nabataean Letter Gimel -\U10885;Nabataean Letter Daleth -\U10886;Nabataean Letter Final He -\U10887;Nabataean Letter He -\U10888;Nabataean Letter Waw -\U10889;Nabataean Letter Zayin -\U1088A;Nabataean Letter Heth -\U1088B;Nabataean Letter Teth -\U1088C;Nabataean Letter Final Yodh -\U1088D;Nabataean Letter Yodh -\U1088E;Nabataean Letter Final Kaph -\U1088F;Nabataean Letter Kaph -\U10890;Nabataean Letter Final Lamedh -\U10891;Nabataean Letter Lamedh -\U10892;Nabataean Letter Final Mem -\U10893;Nabataean Letter Mem -\U10894;Nabataean Letter Final Nun -\U10895;Nabataean Letter Nun -\U10896;Nabataean Letter Samekh -\U10897;Nabataean Letter Ayin -\U10898;Nabataean Letter Pe -\U10899;Nabataean Letter Sadhe -\U1089A;Nabataean Letter Qoph -\U1089B;Nabataean Letter Resh -\U1089C;Nabataean Letter Final Shin -\U1089D;Nabataean Letter Shin -\U1089E;Nabataean Letter Taw -\U108A7;Nabataean Number One -\U108A8;Nabataean Number Two -\U108A9;Nabataean Number Three -\U108AA;Nabataean Number Four -\U108AB;Nabataean Cruciform Number Four -\U108AC;Nabataean Number Five -\U108AD;Nabataean Number Ten -\U108AE;Nabataean Number Twenty -\U108AF;Nabataean Number One Hundred -\U108E0;Hatran Letter Aleph -\U108E1;Hatran Letter Beth -\U108E2;Hatran Letter Gimel -\U108E3;Hatran Letter Daleth-Resh -\U108E4;Hatran Letter He -\U108E5;Hatran Letter Waw -\U108E6;Hatran Letter Zayn -\U108E7;Hatran Letter Heth -\U108E8;Hatran Letter Teth -\U108E9;Hatran Letter Yodh -\U108EA;Hatran Letter Kaph -\U108EB;Hatran Letter Lamedh -\U108EC;Hatran Letter Mem -\U108ED;Hatran Letter Nun -\U108EE;Hatran Letter Samekh -\U108EF;Hatran Letter Ayn -\U108F0;Hatran Letter Pe -\U108F1;Hatran Letter Sadhe -\U108F2;Hatran Letter Qoph -\U108F4;Hatran Letter Shin -\U108F5;Hatran Letter Taw -\U108FB;Hatran Number One -\U108FC;Hatran Number Five -\U108FD;Hatran Number Ten -\U108FE;Hatran Number Twenty -\U108FF;Hatran Number One Hundred -\U10900;Phoenician Letter Alf -\U10901;Phoenician Letter Bet -\U10902;Phoenician Letter Gaml -\U10903;Phoenician Letter Delt -\U10904;Phoenician Letter He -\U10905;Phoenician Letter Wau -\U10906;Phoenician Letter Zai -\U10907;Phoenician Letter Het -\U10908;Phoenician Letter Tet -\U10909;Phoenician Letter Yod -\U1090A;Phoenician Letter Kaf -\U1090B;Phoenician Letter Lamd -\U1090C;Phoenician Letter Mem -\U1090D;Phoenician Letter Nun -\U1090E;Phoenician Letter Semk -\U1090F;Phoenician Letter Ain -\U10910;Phoenician Letter Pe -\U10911;Phoenician Letter Sade -\U10912;Phoenician Letter Qof -\U10913;Phoenician Letter Rosh -\U10914;Phoenician Letter Shin -\U10915;Phoenician Letter Tau -\U10916;Phoenician Number One -\U10917;Phoenician Number Ten -\U10918;Phoenician Number Twenty -\U10919;Phoenician Number One Hundred -\U1091A;Phoenician Number Two -\U1091B;Phoenician Number Three -\U1091F;Phoenician Word Separator -\U10920;Lydian Letter A -\U10921;Lydian Letter B -\U10922;Lydian Letter G -\U10923;Lydian Letter D -\U10924;Lydian Letter E -\U10925;Lydian Letter V -\U10926;Lydian Letter I -\U10927;Lydian Letter Y -\U10928;Lydian Letter K -\U10929;Lydian Letter L -\U1092A;Lydian Letter M -\U1092B;Lydian Letter N -\U1092C;Lydian Letter O -\U1092D;Lydian Letter R -\U1092E;Lydian Letter Ss -\U1092F;Lydian Letter T -\U10930;Lydian Letter U -\U10931;Lydian Letter F -\U10932;Lydian Letter Q -\U10933;Lydian Letter S -\U10934;Lydian Letter Tt -\U10935;Lydian Letter An -\U10936;Lydian Letter En -\U10937;Lydian Letter Ly -\U10938;Lydian Letter Nn -\U10939;Lydian Letter C -\U1093F;Lydian Triangular Mark -\U10980;Meroitic Hieroglyphic Letter A -\U10981;Meroitic Hieroglyphic Letter E -\U10982;Meroitic Hieroglyphic Letter I -\U10983;Meroitic Hieroglyphic Letter O -\U10984;Meroitic Hieroglyphic Letter Ya -\U10985;Meroitic Hieroglyphic Letter Wa -\U10986;Meroitic Hieroglyphic Letter Ba -\U10987;Meroitic Hieroglyphic Letter Ba-2 -\U10988;Meroitic Hieroglyphic Letter Pa -\U10989;Meroitic Hieroglyphic Letter Ma -\U1098A;Meroitic Hieroglyphic Letter Na -\U1098B;Meroitic Hieroglyphic Letter Na-2 -\U1098C;Meroitic Hieroglyphic Letter Ne -\U1098D;Meroitic Hieroglyphic Letter Ne-2 -\U1098E;Meroitic Hieroglyphic Letter Ra -\U1098F;Meroitic Hieroglyphic Letter Ra-2 -\U10990;Meroitic Hieroglyphic Letter La -\U10991;Meroitic Hieroglyphic Letter Kha -\U10992;Meroitic Hieroglyphic Letter Hha -\U10993;Meroitic Hieroglyphic Letter Sa -\U10994;Meroitic Hieroglyphic Letter Sa-2 -\U10995;Meroitic Hieroglyphic Letter Se -\U10996;Meroitic Hieroglyphic Letter Ka -\U10997;Meroitic Hieroglyphic Letter Qa -\U10998;Meroitic Hieroglyphic Letter Ta -\U10999;Meroitic Hieroglyphic Letter Ta-2 -\U1099A;Meroitic Hieroglyphic Letter Te -\U1099B;Meroitic Hieroglyphic Letter Te-2 -\U1099C;Meroitic Hieroglyphic Letter To -\U1099D;Meroitic Hieroglyphic Letter Da -\U1099E;Meroitic Hieroglyphic Symbol Vidj -\U1099F;Meroitic Hieroglyphic Symbol Vidj-2 -\U109A0;Meroitic Cursive Letter A -\U109A1;Meroitic Cursive Letter E -\U109A2;Meroitic Cursive Letter I -\U109A3;Meroitic Cursive Letter O -\U109A4;Meroitic Cursive Letter Ya -\U109A5;Meroitic Cursive Letter Wa -\U109A6;Meroitic Cursive Letter Ba -\U109A7;Meroitic Cursive Letter Pa -\U109A8;Meroitic Cursive Letter Ma -\U109A9;Meroitic Cursive Letter Na -\U109AA;Meroitic Cursive Letter Ne -\U109AB;Meroitic Cursive Letter Ra -\U109AC;Meroitic Cursive Letter La -\U109AD;Meroitic Cursive Letter Kha -\U109AE;Meroitic Cursive Letter Hha -\U109AF;Meroitic Cursive Letter Sa -\U109B0;Meroitic Cursive Letter Archaic Sa -\U109B1;Meroitic Cursive Letter Se -\U109B2;Meroitic Cursive Letter Ka -\U109B3;Meroitic Cursive Letter Qa -\U109B4;Meroitic Cursive Letter Ta -\U109B5;Meroitic Cursive Letter Te -\U109B6;Meroitic Cursive Letter To -\U109B7;Meroitic Cursive Letter Da -\U109BC;Meroitic Cursive Fraction Eleven Twelfths -\U109BD;Meroitic Cursive Fraction One Half -\U109BE;Meroitic Cursive Logogram Rmt -\U109BF;Meroitic Cursive Logogram Imn -\U109C0;Meroitic Cursive Number One -\U109C1;Meroitic Cursive Number Two -\U109C2;Meroitic Cursive Number Three -\U109C3;Meroitic Cursive Number Four -\U109C4;Meroitic Cursive Number Five -\U109C5;Meroitic Cursive Number Six -\U109C6;Meroitic Cursive Number Seven -\U109C7;Meroitic Cursive Number Eight -\U109C8;Meroitic Cursive Number Nine -\U109C9;Meroitic Cursive Number Ten -\U109CA;Meroitic Cursive Number Twenty -\U109CB;Meroitic Cursive Number Thirty -\U109CC;Meroitic Cursive Number Forty -\U109CD;Meroitic Cursive Number Fifty -\U109CE;Meroitic Cursive Number Sixty -\U109CF;Meroitic Cursive Number Seventy -\U109D2;Meroitic Cursive Number One Hundred -\U109D3;Meroitic Cursive Number Two Hundred -\U109D4;Meroitic Cursive Number Three Hundred -\U109D5;Meroitic Cursive Number Four Hundred -\U109D6;Meroitic Cursive Number Five Hundred -\U109D7;Meroitic Cursive Number Six Hundred -\U109D8;Meroitic Cursive Number Seven Hundred -\U109D9;Meroitic Cursive Number Eight Hundred -\U109DA;Meroitic Cursive Number Nine Hundred -\U109DB;Meroitic Cursive Number One Thousand -\U109DC;Meroitic Cursive Number Two Thousand -\U109DD;Meroitic Cursive Number Three Thousand -\U109DE;Meroitic Cursive Number Four Thousand -\U109DF;Meroitic Cursive Number Five Thousand -\U109E0;Meroitic Cursive Number Six Thousand -\U109E1;Meroitic Cursive Number Seven Thousand -\U109E2;Meroitic Cursive Number Eight Thousand -\U109E3;Meroitic Cursive Number Nine Thousand -\U109E4;Meroitic Cursive Number Ten Thousand -\U109E5;Meroitic Cursive Number Twenty Thousand -\U109E6;Meroitic Cursive Number Thirty Thousand -\U109E7;Meroitic Cursive Number Forty Thousand -\U109E8;Meroitic Cursive Number Fifty Thousand -\U109E9;Meroitic Cursive Number Sixty Thousand -\U109EA;Meroitic Cursive Number Seventy Thousand -\U109EB;Meroitic Cursive Number Eighty Thousand -\U109EC;Meroitic Cursive Number Ninety Thousand -\U109ED;Meroitic Cursive Number One Hundred Thousand -\U109EE;Meroitic Cursive Number Two Hundred Thousand -\U109EF;Meroitic Cursive Number Three Hundred Thousand -\U109F0;Meroitic Cursive Number Four Hundred Thousand -\U109F1;Meroitic Cursive Number Five Hundred Thousand -\U109F2;Meroitic Cursive Number Six Hundred Thousand -\U109F3;Meroitic Cursive Number Seven Hundred Thousand -\U109F4;Meroitic Cursive Number Eight Hundred Thousand -\U109F5;Meroitic Cursive Number Nine Hundred Thousand -\U109F6;Meroitic Cursive Fraction One Twelfth -\U109F7;Meroitic Cursive Fraction Two Twelfths -\U109F8;Meroitic Cursive Fraction Three Twelfths -\U109F9;Meroitic Cursive Fraction Four Twelfths -\U109FA;Meroitic Cursive Fraction Five Twelfths -\U109FB;Meroitic Cursive Fraction Six Twelfths -\U109FC;Meroitic Cursive Fraction Seven Twelfths -\U109FD;Meroitic Cursive Fraction Eight Twelfths -\U109FE;Meroitic Cursive Fraction Nine Twelfths -\U109FF;Meroitic Cursive Fraction Ten Twelfths -\U10A00;Kharoshthi Letter A -\U10A01;Kharoshthi Vowel Sign I -\U10A02;Kharoshthi Vowel Sign U -\U10A03;Kharoshthi Vowel Sign Vocalic R -\U10A05;Kharoshthi Vowel Sign E -\U10A06;Kharoshthi Vowel Sign O -\U10A0C;Kharoshthi Vowel Length Mark -\U10A0D;Kharoshthi Sign Double Ring Below -\U10A0E;Kharoshthi Sign Anusvara -\U10A0F;Kharoshthi Sign Visarga -\U10A10;Kharoshthi Letter Ka -\U10A11;Kharoshthi Letter Kha -\U10A12;Kharoshthi Letter Ga -\U10A13;Kharoshthi Letter Gha -\U10A15;Kharoshthi Letter Ca -\U10A16;Kharoshthi Letter Cha -\U10A17;Kharoshthi Letter Ja -\U10A19;Kharoshthi Letter Nya -\U10A1A;Kharoshthi Letter Tta -\U10A1B;Kharoshthi Letter Ttha -\U10A1C;Kharoshthi Letter Dda -\U10A1D;Kharoshthi Letter Ddha -\U10A1E;Kharoshthi Letter Nna -\U10A1F;Kharoshthi Letter Ta -\U10A20;Kharoshthi Letter Tha -\U10A21;Kharoshthi Letter Da -\U10A22;Kharoshthi Letter Dha -\U10A23;Kharoshthi Letter Na -\U10A24;Kharoshthi Letter Pa -\U10A25;Kharoshthi Letter Pha -\U10A26;Kharoshthi Letter Ba -\U10A27;Kharoshthi Letter Bha -\U10A28;Kharoshthi Letter Ma -\U10A29;Kharoshthi Letter Ya -\U10A2A;Kharoshthi Letter Ra -\U10A2B;Kharoshthi Letter La -\U10A2C;Kharoshthi Letter Va -\U10A2D;Kharoshthi Letter Sha -\U10A2E;Kharoshthi Letter Ssa -\U10A2F;Kharoshthi Letter Sa -\U10A30;Kharoshthi Letter Za -\U10A31;Kharoshthi Letter Ha -\U10A32;Kharoshthi Letter Kka -\U10A33;Kharoshthi Letter Tttha -\U10A34;Kharoshthi Letter Ttta -\U10A35;Kharoshthi Letter Vha -\U10A38;Kharoshthi Sign Bar Above -\U10A39;Kharoshthi Sign Cauda -\U10A3A;Kharoshthi Sign Dot Below -\U10A3F;Kharoshthi Virama -\U10A40;Kharoshthi Digit One -\U10A41;Kharoshthi Digit Two -\U10A42;Kharoshthi Digit Three -\U10A43;Kharoshthi Digit Four -\U10A44;Kharoshthi Number Ten -\U10A45;Kharoshthi Number Twenty -\U10A46;Kharoshthi Number One Hundred -\U10A47;Kharoshthi Number One Thousand -\U10A48;Kharoshthi Fraction One Half -\U10A50;Kharoshthi Punctuation Dot -\U10A51;Kharoshthi Punctuation Small Circle -\U10A52;Kharoshthi Punctuation Circle -\U10A53;Kharoshthi Punctuation Crescent Bar -\U10A54;Kharoshthi Punctuation Mangalam -\U10A55;Kharoshthi Punctuation Lotus -\U10A56;Kharoshthi Punctuation Danda -\U10A57;Kharoshthi Punctuation Double Danda -\U10A58;Kharoshthi Punctuation Lines -\U10A60;Old South Arabian Letter He -\U10A61;Old South Arabian Letter Lamedh -\U10A62;Old South Arabian Letter Heth -\U10A63;Old South Arabian Letter Mem -\U10A64;Old South Arabian Letter Qoph -\U10A65;Old South Arabian Letter Waw -\U10A66;Old South Arabian Letter Shin -\U10A67;Old South Arabian Letter Resh -\U10A68;Old South Arabian Letter Beth -\U10A69;Old South Arabian Letter Taw -\U10A6A;Old South Arabian Letter Sat -\U10A6B;Old South Arabian Letter Kaph -\U10A6C;Old South Arabian Letter Nun -\U10A6D;Old South Arabian Letter Kheth -\U10A6E;Old South Arabian Letter Sadhe -\U10A6F;Old South Arabian Letter Samekh -\U10A70;Old South Arabian Letter Fe -\U10A71;Old South Arabian Letter Alef -\U10A72;Old South Arabian Letter Ayn -\U10A73;Old South Arabian Letter Dhadhe -\U10A74;Old South Arabian Letter Gimel -\U10A75;Old South Arabian Letter Daleth -\U10A76;Old South Arabian Letter Ghayn -\U10A77;Old South Arabian Letter Teth -\U10A78;Old South Arabian Letter Zayn -\U10A79;Old South Arabian Letter Dhaleth -\U10A7A;Old South Arabian Letter Yodh -\U10A7B;Old South Arabian Letter Thaw -\U10A7C;Old South Arabian Letter Theth -\U10A7D;Old South Arabian Number One -\U10A7E;Old South Arabian Number Fifty -\U10A7F;Old South Arabian Numeric Indicator -\U10A80;Old North Arabian Letter Heh -\U10A81;Old North Arabian Letter Lam -\U10A82;Old North Arabian Letter Hah -\U10A83;Old North Arabian Letter Meem -\U10A84;Old North Arabian Letter Qaf -\U10A85;Old North Arabian Letter Waw -\U10A86;Old North Arabian Letter Es-2 -\U10A87;Old North Arabian Letter Reh -\U10A88;Old North Arabian Letter Beh -\U10A89;Old North Arabian Letter Teh -\U10A8A;Old North Arabian Letter Es-1 -\U10A8B;Old North Arabian Letter Kaf -\U10A8C;Old North Arabian Letter Noon -\U10A8D;Old North Arabian Letter Khah -\U10A8E;Old North Arabian Letter Sad -\U10A8F;Old North Arabian Letter Es-3 -\U10A90;Old North Arabian Letter Feh -\U10A91;Old North Arabian Letter Alef -\U10A92;Old North Arabian Letter Ain -\U10A93;Old North Arabian Letter Dad -\U10A94;Old North Arabian Letter Geem -\U10A95;Old North Arabian Letter Dal -\U10A96;Old North Arabian Letter Ghain -\U10A97;Old North Arabian Letter Tah -\U10A98;Old North Arabian Letter Zain -\U10A99;Old North Arabian Letter Thal -\U10A9A;Old North Arabian Letter Yeh -\U10A9B;Old North Arabian Letter Theh -\U10A9C;Old North Arabian Letter Zah -\U10A9D;Old North Arabian Number One -\U10A9E;Old North Arabian Number Ten -\U10A9F;Old North Arabian Number Twenty -\U10AC0;Manichaean Letter Aleph -\U10AC1;Manichaean Letter Beth -\U10AC2;Manichaean Letter Bheth -\U10AC3;Manichaean Letter Gimel -\U10AC4;Manichaean Letter Ghimel -\U10AC5;Manichaean Letter Daleth -\U10AC6;Manichaean Letter He -\U10AC7;Manichaean Letter Waw -\U10AC8;Manichaean Sign Ud -\U10AC9;Manichaean Letter Zayin -\U10ACA;Manichaean Letter Zhayin -\U10ACB;Manichaean Letter Jayin -\U10ACC;Manichaean Letter Jhayin -\U10ACD;Manichaean Letter Heth -\U10ACE;Manichaean Letter Teth -\U10ACF;Manichaean Letter Yodh -\U10AD0;Manichaean Letter Kaph -\U10AD1;Manichaean Letter Xaph -\U10AD2;Manichaean Letter Khaph -\U10AD3;Manichaean Letter Lamedh -\U10AD4;Manichaean Letter Dhamedh -\U10AD5;Manichaean Letter Thamedh -\U10AD6;Manichaean Letter Mem -\U10AD7;Manichaean Letter Nun -\U10AD8;Manichaean Letter Samekh -\U10AD9;Manichaean Letter Ayin -\U10ADA;Manichaean Letter Aayin -\U10ADB;Manichaean Letter Pe -\U10ADC;Manichaean Letter Fe -\U10ADD;Manichaean Letter Sadhe -\U10ADE;Manichaean Letter Qoph -\U10ADF;Manichaean Letter Xoph -\U10AE0;Manichaean Letter Qhoph -\U10AE1;Manichaean Letter Resh -\U10AE2;Manichaean Letter Shin -\U10AE3;Manichaean Letter Sshin -\U10AE4;Manichaean Letter Taw -\U10AE5;Manichaean Abbreviation Mark Above -\U10AE6;Manichaean Abbreviation Mark Below -\U10AEB;Manichaean Number One -\U10AEC;Manichaean Number Five -\U10AED;Manichaean Number Ten -\U10AEE;Manichaean Number Twenty -\U10AEF;Manichaean Number One Hundred -\U10AF0;Manichaean Punctuation Star -\U10AF1;Manichaean Punctuation Fleuron -\U10AF2;Manichaean Punctuation Double Dot Within Dot -\U10AF3;Manichaean Punctuation Dot Within Dot -\U10AF4;Manichaean Punctuation Dot -\U10AF5;Manichaean Punctuation Two Dots -\U10AF6;Manichaean Punctuation Line Filler -\U10B00;Avestan Letter A -\U10B01;Avestan Letter Aa -\U10B02;Avestan Letter Ao -\U10B03;Avestan Letter Aao -\U10B04;Avestan Letter An -\U10B05;Avestan Letter Aan -\U10B06;Avestan Letter Ae -\U10B07;Avestan Letter Aee -\U10B08;Avestan Letter E -\U10B09;Avestan Letter Ee -\U10B0A;Avestan Letter O -\U10B0B;Avestan Letter Oo -\U10B0C;Avestan Letter I -\U10B0D;Avestan Letter Ii -\U10B0E;Avestan Letter U -\U10B0F;Avestan Letter Uu -\U10B10;Avestan Letter Ke -\U10B11;Avestan Letter Xe -\U10B12;Avestan Letter Xye -\U10B13;Avestan Letter Xve -\U10B14;Avestan Letter Ge -\U10B15;Avestan Letter Gge -\U10B16;Avestan Letter Ghe -\U10B17;Avestan Letter Ce -\U10B18;Avestan Letter Je -\U10B19;Avestan Letter Te -\U10B1A;Avestan Letter The -\U10B1B;Avestan Letter De -\U10B1C;Avestan Letter Dhe -\U10B1D;Avestan Letter Tte -\U10B1E;Avestan Letter Pe -\U10B1F;Avestan Letter Fe -\U10B20;Avestan Letter Be -\U10B21;Avestan Letter Bhe -\U10B22;Avestan Letter Nge -\U10B23;Avestan Letter Ngye -\U10B24;Avestan Letter Ngve -\U10B25;Avestan Letter Ne -\U10B26;Avestan Letter Nye -\U10B27;Avestan Letter Nne -\U10B28;Avestan Letter Me -\U10B29;Avestan Letter Hme -\U10B2A;Avestan Letter Yye -\U10B2B;Avestan Letter Ye -\U10B2C;Avestan Letter Ve -\U10B2D;Avestan Letter Re -\U10B2E;Avestan Letter Le -\U10B2F;Avestan Letter Se -\U10B30;Avestan Letter Ze -\U10B31;Avestan Letter She -\U10B32;Avestan Letter Zhe -\U10B33;Avestan Letter Shye -\U10B34;Avestan Letter Sshe -\U10B35;Avestan Letter He -\U10B39;Avestan Abbreviation Mark -\U10B3A;Tiny Two Dots Over One Dot Punctuation -\U10B3B;Small Two Dots Over One Dot Punctuation -\U10B3C;Large Two Dots Over One Dot Punctuation -\U10B3D;Large One Dot Over Two Dots Punctuation -\U10B3E;Large Two Rings Over One Ring Punctuation -\U10B3F;Large One Ring Over Two Rings Punctuation -\U10B40;Inscriptional Parthian Letter Aleph -\U10B41;Inscriptional Parthian Letter Beth -\U10B42;Inscriptional Parthian Letter Gimel -\U10B43;Inscriptional Parthian Letter Daleth -\U10B44;Inscriptional Parthian Letter He -\U10B45;Inscriptional Parthian Letter Waw -\U10B46;Inscriptional Parthian Letter Zayin -\U10B47;Inscriptional Parthian Letter Heth -\U10B48;Inscriptional Parthian Letter Teth -\U10B49;Inscriptional Parthian Letter Yodh -\U10B4A;Inscriptional Parthian Letter Kaph -\U10B4B;Inscriptional Parthian Letter Lamedh -\U10B4C;Inscriptional Parthian Letter Mem -\U10B4D;Inscriptional Parthian Letter Nun -\U10B4E;Inscriptional Parthian Letter Samekh -\U10B4F;Inscriptional Parthian Letter Ayin -\U10B50;Inscriptional Parthian Letter Pe -\U10B51;Inscriptional Parthian Letter Sadhe -\U10B52;Inscriptional Parthian Letter Qoph -\U10B53;Inscriptional Parthian Letter Resh -\U10B54;Inscriptional Parthian Letter Shin -\U10B55;Inscriptional Parthian Letter Taw -\U10B58;Inscriptional Parthian Number One -\U10B59;Inscriptional Parthian Number Two -\U10B5A;Inscriptional Parthian Number Three -\U10B5B;Inscriptional Parthian Number Four -\U10B5C;Inscriptional Parthian Number Ten -\U10B5D;Inscriptional Parthian Number Twenty -\U10B5E;Inscriptional Parthian Number One Hundred -\U10B5F;Inscriptional Parthian Number One Thousand -\U10B60;Inscriptional Pahlavi Letter Aleph -\U10B61;Inscriptional Pahlavi Letter Beth -\U10B62;Inscriptional Pahlavi Letter Gimel -\U10B63;Inscriptional Pahlavi Letter Daleth -\U10B64;Inscriptional Pahlavi Letter He -\U10B65;Inscriptional Pahlavi Letter Waw-Ayin-Resh -\U10B66;Inscriptional Pahlavi Letter Zayin -\U10B67;Inscriptional Pahlavi Letter Heth -\U10B68;Inscriptional Pahlavi Letter Teth -\U10B69;Inscriptional Pahlavi Letter Yodh -\U10B6A;Inscriptional Pahlavi Letter Kaph -\U10B6B;Inscriptional Pahlavi Letter Lamedh -\U10B6C;Inscriptional Pahlavi Letter Mem-Qoph -\U10B6D;Inscriptional Pahlavi Letter Nun -\U10B6E;Inscriptional Pahlavi Letter Samekh -\U10B6F;Inscriptional Pahlavi Letter Pe -\U10B70;Inscriptional Pahlavi Letter Sadhe -\U10B71;Inscriptional Pahlavi Letter Shin -\U10B72;Inscriptional Pahlavi Letter Taw -\U10B78;Inscriptional Pahlavi Number One -\U10B79;Inscriptional Pahlavi Number Two -\U10B7A;Inscriptional Pahlavi Number Three -\U10B7B;Inscriptional Pahlavi Number Four -\U10B7C;Inscriptional Pahlavi Number Ten -\U10B7D;Inscriptional Pahlavi Number Twenty -\U10B7E;Inscriptional Pahlavi Number One Hundred -\U10B7F;Inscriptional Pahlavi Number One Thousand -\U10B80;Psalter Pahlavi Letter Aleph -\U10B81;Psalter Pahlavi Letter Beth -\U10B82;Psalter Pahlavi Letter Gimel -\U10B83;Psalter Pahlavi Letter Daleth -\U10B84;Psalter Pahlavi Letter He -\U10B85;Psalter Pahlavi Letter Waw-Ayin-Resh -\U10B86;Psalter Pahlavi Letter Zayin -\U10B87;Psalter Pahlavi Letter Heth -\U10B88;Psalter Pahlavi Letter Yodh -\U10B89;Psalter Pahlavi Letter Kaph -\U10B8A;Psalter Pahlavi Letter Lamedh -\U10B8B;Psalter Pahlavi Letter Mem-Qoph -\U10B8C;Psalter Pahlavi Letter Nun -\U10B8D;Psalter Pahlavi Letter Samekh -\U10B8E;Psalter Pahlavi Letter Pe -\U10B8F;Psalter Pahlavi Letter Sadhe -\U10B90;Psalter Pahlavi Letter Shin -\U10B91;Psalter Pahlavi Letter Taw -\U10B99;Psalter Pahlavi Section Mark -\U10B9A;Psalter Pahlavi Turned Section Mark -\U10B9B;Psalter Pahlavi Four Dots With Cross -\U10B9C;Psalter Pahlavi Four Dots With Dot -\U10BA9;Psalter Pahlavi Number One -\U10BAA;Psalter Pahlavi Number Two -\U10BAB;Psalter Pahlavi Number Three -\U10BAC;Psalter Pahlavi Number Four -\U10BAD;Psalter Pahlavi Number Ten -\U10BAE;Psalter Pahlavi Number Twenty -\U10BAF;Psalter Pahlavi Number One Hundred -\U10C00;Old Turkic Letter Orkhon A -\U10C01;Old Turkic Letter Yenisei A -\U10C02;Old Turkic Letter Yenisei Ae -\U10C03;Old Turkic Letter Orkhon I -\U10C04;Old Turkic Letter Yenisei I -\U10C05;Old Turkic Letter Yenisei E -\U10C06;Old Turkic Letter Orkhon O -\U10C07;Old Turkic Letter Orkhon Oe -\U10C08;Old Turkic Letter Yenisei Oe -\U10C09;Old Turkic Letter Orkhon Ab -\U10C0A;Old Turkic Letter Yenisei Ab -\U10C0B;Old Turkic Letter Orkhon Aeb -\U10C0C;Old Turkic Letter Yenisei Aeb -\U10C0D;Old Turkic Letter Orkhon Ag -\U10C0E;Old Turkic Letter Yenisei Ag -\U10C0F;Old Turkic Letter Orkhon Aeg -\U10C10;Old Turkic Letter Yenisei Aeg -\U10C11;Old Turkic Letter Orkhon Ad -\U10C12;Old Turkic Letter Yenisei Ad -\U10C13;Old Turkic Letter Orkhon Aed -\U10C14;Old Turkic Letter Orkhon Ez -\U10C15;Old Turkic Letter Yenisei Ez -\U10C16;Old Turkic Letter Orkhon Ay -\U10C17;Old Turkic Letter Yenisei Ay -\U10C18;Old Turkic Letter Orkhon Aey -\U10C19;Old Turkic Letter Yenisei Aey -\U10C1A;Old Turkic Letter Orkhon Aek -\U10C1B;Old Turkic Letter Yenisei Aek -\U10C1C;Old Turkic Letter Orkhon Oek -\U10C1D;Old Turkic Letter Yenisei Oek -\U10C1E;Old Turkic Letter Orkhon Al -\U10C1F;Old Turkic Letter Yenisei Al -\U10C20;Old Turkic Letter Orkhon Ael -\U10C21;Old Turkic Letter Orkhon Elt -\U10C22;Old Turkic Letter Orkhon Em -\U10C23;Old Turkic Letter Orkhon An -\U10C24;Old Turkic Letter Orkhon Aen -\U10C25;Old Turkic Letter Yenisei Aen -\U10C26;Old Turkic Letter Orkhon Ent -\U10C27;Old Turkic Letter Yenisei Ent -\U10C28;Old Turkic Letter Orkhon Enc -\U10C29;Old Turkic Letter Yenisei Enc -\U10C2A;Old Turkic Letter Orkhon Eny -\U10C2B;Old Turkic Letter Yenisei Eny -\U10C2C;Old Turkic Letter Yenisei Ang -\U10C2D;Old Turkic Letter Orkhon Eng -\U10C2E;Old Turkic Letter Yenisei Aeng -\U10C2F;Old Turkic Letter Orkhon Ep -\U10C30;Old Turkic Letter Orkhon Op -\U10C31;Old Turkic Letter Orkhon Ic -\U10C32;Old Turkic Letter Orkhon Ec -\U10C33;Old Turkic Letter Yenisei Ec -\U10C34;Old Turkic Letter Orkhon Aq -\U10C35;Old Turkic Letter Yenisei Aq -\U10C36;Old Turkic Letter Orkhon Iq -\U10C37;Old Turkic Letter Yenisei Iq -\U10C38;Old Turkic Letter Orkhon Oq -\U10C39;Old Turkic Letter Yenisei Oq -\U10C3A;Old Turkic Letter Orkhon Ar -\U10C3B;Old Turkic Letter Yenisei Ar -\U10C3C;Old Turkic Letter Orkhon Aer -\U10C3D;Old Turkic Letter Orkhon As -\U10C3E;Old Turkic Letter Orkhon Aes -\U10C3F;Old Turkic Letter Orkhon Ash -\U10C40;Old Turkic Letter Yenisei Ash -\U10C41;Old Turkic Letter Orkhon Esh -\U10C42;Old Turkic Letter Yenisei Esh -\U10C43;Old Turkic Letter Orkhon At -\U10C44;Old Turkic Letter Yenisei At -\U10C45;Old Turkic Letter Orkhon Aet -\U10C46;Old Turkic Letter Yenisei Aet -\U10C47;Old Turkic Letter Orkhon Ot -\U10C48;Old Turkic Letter Orkhon Bash -\U10C80;Old Hungarian Capital Letter A -\U10C81;Old Hungarian Capital Letter Aa -\U10C82;Old Hungarian Capital Letter Eb -\U10C83;Old Hungarian Capital Letter Amb -\U10C84;Old Hungarian Capital Letter Ec -\U10C85;Old Hungarian Capital Letter Enc -\U10C86;Old Hungarian Capital Letter Ecs -\U10C87;Old Hungarian Capital Letter Ed -\U10C88;Old Hungarian Capital Letter And -\U10C89;Old Hungarian Capital Letter E -\U10C8A;Old Hungarian Capital Letter Close E -\U10C8B;Old Hungarian Capital Letter Ee -\U10C8C;Old Hungarian Capital Letter Ef -\U10C8D;Old Hungarian Capital Letter Eg -\U10C8E;Old Hungarian Capital Letter Egy -\U10C8F;Old Hungarian Capital Letter Eh -\U10C90;Old Hungarian Capital Letter I -\U10C91;Old Hungarian Capital Letter Ii -\U10C92;Old Hungarian Capital Letter Ej -\U10C93;Old Hungarian Capital Letter Ek -\U10C94;Old Hungarian Capital Letter Ak -\U10C95;Old Hungarian Capital Letter Unk -\U10C96;Old Hungarian Capital Letter El -\U10C97;Old Hungarian Capital Letter Ely -\U10C98;Old Hungarian Capital Letter Em -\U10C99;Old Hungarian Capital Letter En -\U10C9A;Old Hungarian Capital Letter Eny -\U10C9B;Old Hungarian Capital Letter O -\U10C9C;Old Hungarian Capital Letter Oo -\U10C9D;Old Hungarian Capital Letter Nikolsburg Oe -\U10C9E;Old Hungarian Capital Letter Rudimenta Oe -\U10C9F;Old Hungarian Capital Letter Oee -\U10CA0;Old Hungarian Capital Letter Ep -\U10CA1;Old Hungarian Capital Letter Emp -\U10CA2;Old Hungarian Capital Letter Er -\U10CA3;Old Hungarian Capital Letter Short Er -\U10CA4;Old Hungarian Capital Letter Es -\U10CA5;Old Hungarian Capital Letter Esz -\U10CA6;Old Hungarian Capital Letter Et -\U10CA7;Old Hungarian Capital Letter Ent -\U10CA8;Old Hungarian Capital Letter Ety -\U10CA9;Old Hungarian Capital Letter Ech -\U10CAA;Old Hungarian Capital Letter U -\U10CAB;Old Hungarian Capital Letter Uu -\U10CAC;Old Hungarian Capital Letter Nikolsburg Ue -\U10CAD;Old Hungarian Capital Letter Rudimenta Ue -\U10CAE;Old Hungarian Capital Letter Ev -\U10CAF;Old Hungarian Capital Letter Ez -\U10CB0;Old Hungarian Capital Letter Ezs -\U10CB1;Old Hungarian Capital Letter Ent-Shaped Sign -\U10CB2;Old Hungarian Capital Letter Us -\U10CC0;Old Hungarian Small Letter A -\U10CC1;Old Hungarian Small Letter Aa -\U10CC2;Old Hungarian Small Letter Eb -\U10CC3;Old Hungarian Small Letter Amb -\U10CC4;Old Hungarian Small Letter Ec -\U10CC5;Old Hungarian Small Letter Enc -\U10CC6;Old Hungarian Small Letter Ecs -\U10CC7;Old Hungarian Small Letter Ed -\U10CC8;Old Hungarian Small Letter And -\U10CC9;Old Hungarian Small Letter E -\U10CCA;Old Hungarian Small Letter Close E -\U10CCB;Old Hungarian Small Letter Ee -\U10CCC;Old Hungarian Small Letter Ef -\U10CCD;Old Hungarian Small Letter Eg -\U10CCE;Old Hungarian Small Letter Egy -\U10CCF;Old Hungarian Small Letter Eh -\U10CD0;Old Hungarian Small Letter I -\U10CD1;Old Hungarian Small Letter Ii -\U10CD2;Old Hungarian Small Letter Ej -\U10CD3;Old Hungarian Small Letter Ek -\U10CD4;Old Hungarian Small Letter Ak -\U10CD5;Old Hungarian Small Letter Unk -\U10CD6;Old Hungarian Small Letter El -\U10CD7;Old Hungarian Small Letter Ely -\U10CD8;Old Hungarian Small Letter Em -\U10CD9;Old Hungarian Small Letter En -\U10CDA;Old Hungarian Small Letter Eny -\U10CDB;Old Hungarian Small Letter O -\U10CDC;Old Hungarian Small Letter Oo -\U10CDD;Old Hungarian Small Letter Nikolsburg Oe -\U10CDE;Old Hungarian Small Letter Rudimenta Oe -\U10CDF;Old Hungarian Small Letter Oee -\U10CE0;Old Hungarian Small Letter Ep -\U10CE1;Old Hungarian Small Letter Emp -\U10CE2;Old Hungarian Small Letter Er -\U10CE3;Old Hungarian Small Letter Short Er -\U10CE4;Old Hungarian Small Letter Es -\U10CE5;Old Hungarian Small Letter Esz -\U10CE6;Old Hungarian Small Letter Et -\U10CE7;Old Hungarian Small Letter Ent -\U10CE8;Old Hungarian Small Letter Ety -\U10CE9;Old Hungarian Small Letter Ech -\U10CEA;Old Hungarian Small Letter U -\U10CEB;Old Hungarian Small Letter Uu -\U10CEC;Old Hungarian Small Letter Nikolsburg Ue -\U10CED;Old Hungarian Small Letter Rudimenta Ue -\U10CEE;Old Hungarian Small Letter Ev -\U10CEF;Old Hungarian Small Letter Ez -\U10CF0;Old Hungarian Small Letter Ezs -\U10CF1;Old Hungarian Small Letter Ent-Shaped Sign -\U10CF2;Old Hungarian Small Letter Us -\U10CFA;Old Hungarian Number One -\U10CFB;Old Hungarian Number Five -\U10CFC;Old Hungarian Number Ten -\U10CFD;Old Hungarian Number Fifty -\U10CFE;Old Hungarian Number One Hundred -\U10CFF;Old Hungarian Number One Thousand -\U10D00;Hanifi Rohingya Letter A -\U10D01;Hanifi Rohingya Letter Ba -\U10D02;Hanifi Rohingya Letter Pa -\U10D03;Hanifi Rohingya Letter Ta -\U10D04;Hanifi Rohingya Letter Tta -\U10D05;Hanifi Rohingya Letter Ja -\U10D06;Hanifi Rohingya Letter Ca -\U10D07;Hanifi Rohingya Letter Ha -\U10D08;Hanifi Rohingya Letter Kha -\U10D09;Hanifi Rohingya Letter Fa -\U10D0A;Hanifi Rohingya Letter Da -\U10D0B;Hanifi Rohingya Letter Dda -\U10D0C;Hanifi Rohingya Letter Ra -\U10D0D;Hanifi Rohingya Letter Rra -\U10D0E;Hanifi Rohingya Letter Za -\U10D0F;Hanifi Rohingya Letter Sa -\U10D10;Hanifi Rohingya Letter Sha -\U10D11;Hanifi Rohingya Letter Ka -\U10D12;Hanifi Rohingya Letter Ga -\U10D13;Hanifi Rohingya Letter La -\U10D14;Hanifi Rohingya Letter Ma -\U10D15;Hanifi Rohingya Letter Na -\U10D16;Hanifi Rohingya Letter Wa -\U10D17;Hanifi Rohingya Letter Kinna Wa -\U10D18;Hanifi Rohingya Letter Ya -\U10D19;Hanifi Rohingya Letter Kinna Ya -\U10D1A;Hanifi Rohingya Letter Nga -\U10D1B;Hanifi Rohingya Letter Nya -\U10D1C;Hanifi Rohingya Letter Va -\U10D1D;Hanifi Rohingya Vowel A -\U10D1E;Hanifi Rohingya Vowel I -\U10D1F;Hanifi Rohingya Vowel U -\U10D20;Hanifi Rohingya Vowel E -\U10D21;Hanifi Rohingya Vowel O -\U10D22;Hanifi Rohingya Mark Sakin -\U10D23;Hanifi Rohingya Mark Na Khonna -\U10D24;Hanifi Rohingya Sign Harbahay -\U10D25;Hanifi Rohingya Sign Tahala -\U10D26;Hanifi Rohingya Sign Tana -\U10D27;Hanifi Rohingya Sign Tassi -\U10D30;Hanifi Rohingya Digit Zero -\U10D31;Hanifi Rohingya Digit One -\U10D32;Hanifi Rohingya Digit Two -\U10D33;Hanifi Rohingya Digit Three -\U10D34;Hanifi Rohingya Digit Four -\U10D35;Hanifi Rohingya Digit Five -\U10D36;Hanifi Rohingya Digit Six -\U10D37;Hanifi Rohingya Digit Seven -\U10D38;Hanifi Rohingya Digit Eight -\U10D39;Hanifi Rohingya Digit Nine -\U10E60;Rumi Digit One -\U10E61;Rumi Digit Two -\U10E62;Rumi Digit Three -\U10E63;Rumi Digit Four -\U10E64;Rumi Digit Five -\U10E65;Rumi Digit Six -\U10E66;Rumi Digit Seven -\U10E67;Rumi Digit Eight -\U10E68;Rumi Digit Nine -\U10E69;Rumi Number Ten -\U10E6A;Rumi Number Twenty -\U10E6B;Rumi Number Thirty -\U10E6C;Rumi Number Forty -\U10E6D;Rumi Number Fifty -\U10E6E;Rumi Number Sixty -\U10E6F;Rumi Number Seventy -\U10E70;Rumi Number Eighty -\U10E71;Rumi Number Ninety -\U10E72;Rumi Number One Hundred -\U10E73;Rumi Number Two Hundred -\U10E74;Rumi Number Three Hundred -\U10E75;Rumi Number Four Hundred -\U10E76;Rumi Number Five Hundred -\U10E77;Rumi Number Six Hundred -\U10E78;Rumi Number Seven Hundred -\U10E79;Rumi Number Eight Hundred -\U10E7A;Rumi Number Nine Hundred -\U10E7B;Rumi Fraction One Half -\U10E7C;Rumi Fraction One Quarter -\U10E7D;Rumi Fraction One Third -\U10E7E;Rumi Fraction Two Thirds -\U10E80;Yezidi Letter Elif -\U10E81;Yezidi Letter Be -\U10E82;Yezidi Letter Pe -\U10E83;Yezidi Letter Phe -\U10E84;Yezidi Letter The -\U10E85;Yezidi Letter Se -\U10E86;Yezidi Letter Cim -\U10E87;Yezidi Letter Chim -\U10E88;Yezidi Letter Chhim -\U10E89;Yezidi Letter Hha -\U10E8A;Yezidi Letter Xa -\U10E8B;Yezidi Letter Dal -\U10E8C;Yezidi Letter Zal -\U10E8D;Yezidi Letter Ra -\U10E8E;Yezidi Letter Rha -\U10E8F;Yezidi Letter Za -\U10E90;Yezidi Letter Ja -\U10E91;Yezidi Letter Sin -\U10E92;Yezidi Letter Shin -\U10E93;Yezidi Letter Sad -\U10E94;Yezidi Letter Dad -\U10E95;Yezidi Letter Ta -\U10E96;Yezidi Letter Ze -\U10E97;Yezidi Letter Eyn -\U10E98;Yezidi Letter Xheyn -\U10E99;Yezidi Letter Fa -\U10E9A;Yezidi Letter Va -\U10E9B;Yezidi Letter Va Alternate Form -\U10E9C;Yezidi Letter Qaf -\U10E9D;Yezidi Letter Kaf -\U10E9E;Yezidi Letter Khaf -\U10E9F;Yezidi Letter Gaf -\U10EA0;Yezidi Letter Lam -\U10EA1;Yezidi Letter Mim -\U10EA2;Yezidi Letter Nun -\U10EA3;Yezidi Letter Um -\U10EA4;Yezidi Letter Waw -\U10EA5;Yezidi Letter Ow -\U10EA6;Yezidi Letter Ew -\U10EA7;Yezidi Letter Hay -\U10EA8;Yezidi Letter Yot -\U10EA9;Yezidi Letter Et -\U10EAB;Yezidi Combining Hamza Mark -\U10EAC;Yezidi Combining Madda Mark -\U10EAD;Yezidi Hyphenation Mark -\U10EB0;Yezidi Letter Lam With Dot Above -\U10EB1;Yezidi Letter Yot With Circumflex Above -\U10EFD;Arabic Small Low Word Sakta -\U10EFE;Arabic Small Low Word Qasr -\U10EFF;Arabic Small Low Word Madda -\U10F00;Old Sogdian Letter Aleph -\U10F01;Old Sogdian Letter Final Aleph -\U10F02;Old Sogdian Letter Beth -\U10F03;Old Sogdian Letter Final Beth -\U10F04;Old Sogdian Letter Gimel -\U10F05;Old Sogdian Letter He -\U10F06;Old Sogdian Letter Final He -\U10F07;Old Sogdian Letter Waw -\U10F08;Old Sogdian Letter Zayin -\U10F09;Old Sogdian Letter Heth -\U10F0A;Old Sogdian Letter Yodh -\U10F0B;Old Sogdian Letter Kaph -\U10F0C;Old Sogdian Letter Lamedh -\U10F0D;Old Sogdian Letter Mem -\U10F0E;Old Sogdian Letter Nun -\U10F0F;Old Sogdian Letter Final Nun -\U10F10;Old Sogdian Letter Final Nun With Vertical Tail -\U10F11;Old Sogdian Letter Samekh -\U10F12;Old Sogdian Letter Ayin -\U10F13;Old Sogdian Letter Alternate Ayin -\U10F14;Old Sogdian Letter Pe -\U10F15;Old Sogdian Letter Sadhe -\U10F16;Old Sogdian Letter Final Sadhe -\U10F17;Old Sogdian Letter Final Sadhe With Vertical Tail -\U10F18;Old Sogdian Letter Resh-Ayin-Daleth -\U10F19;Old Sogdian Letter Shin -\U10F1A;Old Sogdian Letter Taw -\U10F1B;Old Sogdian Letter Final Taw -\U10F1C;Old Sogdian Letter Final Taw With Vertical Tail -\U10F1D;Old Sogdian Number One -\U10F1E;Old Sogdian Number Two -\U10F1F;Old Sogdian Number Three -\U10F20;Old Sogdian Number Four -\U10F21;Old Sogdian Number Five -\U10F22;Old Sogdian Number Ten -\U10F23;Old Sogdian Number Twenty -\U10F24;Old Sogdian Number Thirty -\U10F25;Old Sogdian Number One Hundred -\U10F26;Old Sogdian Fraction One Half -\U10F27;Old Sogdian Ligature Ayin-Daleth -\U10F30;Sogdian Letter Aleph -\U10F31;Sogdian Letter Beth -\U10F32;Sogdian Letter Gimel -\U10F33;Sogdian Letter He -\U10F34;Sogdian Letter Waw -\U10F35;Sogdian Letter Zayin -\U10F36;Sogdian Letter Heth -\U10F37;Sogdian Letter Yodh -\U10F38;Sogdian Letter Kaph -\U10F39;Sogdian Letter Lamedh -\U10F3A;Sogdian Letter Mem -\U10F3B;Sogdian Letter Nun -\U10F3C;Sogdian Letter Samekh -\U10F3D;Sogdian Letter Ayin -\U10F3E;Sogdian Letter Pe -\U10F3F;Sogdian Letter Sadhe -\U10F40;Sogdian Letter Resh-Ayin -\U10F41;Sogdian Letter Shin -\U10F42;Sogdian Letter Taw -\U10F43;Sogdian Letter Feth -\U10F44;Sogdian Letter Lesh -\U10F45;Sogdian Independent Shin -\U10F46;Sogdian Combining Dot Below -\U10F47;Sogdian Combining Two Dots Below -\U10F48;Sogdian Combining Dot Above -\U10F49;Sogdian Combining Two Dots Above -\U10F4A;Sogdian Combining Curve Above -\U10F4B;Sogdian Combining Curve Below -\U10F4C;Sogdian Combining Hook Above -\U10F4D;Sogdian Combining Hook Below -\U10F4E;Sogdian Combining Long Hook Below -\U10F4F;Sogdian Combining Resh Below -\U10F50;Sogdian Combining Stroke Below -\U10F51;Sogdian Number One -\U10F52;Sogdian Number Ten -\U10F53;Sogdian Number Twenty -\U10F54;Sogdian Number One Hundred -\U10F55;Sogdian Punctuation Two Vertical Bars -\U10F56;Sogdian Punctuation Two Vertical Bars With Dots -\U10F57;Sogdian Punctuation Circle With Dot -\U10F58;Sogdian Punctuation Two Circles With Dots -\U10F59;Sogdian Punctuation Half Circle With Dot -\U10F70;Old Uyghur Letter Aleph -\U10F71;Old Uyghur Letter Beth -\U10F72;Old Uyghur Letter Gimel-Heth -\U10F73;Old Uyghur Letter Waw -\U10F74;Old Uyghur Letter Zayin -\U10F75;Old Uyghur Letter Final Heth -\U10F76;Old Uyghur Letter Yodh -\U10F77;Old Uyghur Letter Kaph -\U10F78;Old Uyghur Letter Lamedh -\U10F79;Old Uyghur Letter Mem -\U10F7A;Old Uyghur Letter Nun -\U10F7B;Old Uyghur Letter Samekh -\U10F7C;Old Uyghur Letter Pe -\U10F7D;Old Uyghur Letter Sadhe -\U10F7E;Old Uyghur Letter Resh -\U10F7F;Old Uyghur Letter Shin -\U10F80;Old Uyghur Letter Taw -\U10F81;Old Uyghur Letter Lesh -\U10F82;Old Uyghur Combining Dot Above -\U10F83;Old Uyghur Combining Dot Below -\U10F84;Old Uyghur Combining Two Dots Above -\U10F85;Old Uyghur Combining Two Dots Below -\U10F86;Old Uyghur Punctuation Bar -\U10F87;Old Uyghur Punctuation Two Bars -\U10F88;Old Uyghur Punctuation Two Dots -\U10F89;Old Uyghur Punctuation Four Dots -\U10FB0;Chorasmian Letter Aleph -\U10FB1;Chorasmian Letter Small Aleph -\U10FB2;Chorasmian Letter Beth -\U10FB3;Chorasmian Letter Gimel -\U10FB4;Chorasmian Letter Daleth -\U10FB5;Chorasmian Letter He -\U10FB6;Chorasmian Letter Waw -\U10FB7;Chorasmian Letter Curled Waw -\U10FB8;Chorasmian Letter Zayin -\U10FB9;Chorasmian Letter Heth -\U10FBA;Chorasmian Letter Yodh -\U10FBB;Chorasmian Letter Kaph -\U10FBC;Chorasmian Letter Lamedh -\U10FBD;Chorasmian Letter Mem -\U10FBE;Chorasmian Letter Nun -\U10FBF;Chorasmian Letter Samekh -\U10FC0;Chorasmian Letter Ayin -\U10FC1;Chorasmian Letter Pe -\U10FC2;Chorasmian Letter Resh -\U10FC3;Chorasmian Letter Shin -\U10FC4;Chorasmian Letter Taw -\U10FC5;Chorasmian Number One -\U10FC6;Chorasmian Number Two -\U10FC7;Chorasmian Number Three -\U10FC8;Chorasmian Number Four -\U10FC9;Chorasmian Number Ten -\U10FCA;Chorasmian Number Twenty -\U10FCB;Chorasmian Number One Hundred -\U10FE0;Elymaic Letter Aleph -\U10FE1;Elymaic Letter Beth -\U10FE2;Elymaic Letter Gimel -\U10FE3;Elymaic Letter Daleth -\U10FE4;Elymaic Letter He -\U10FE5;Elymaic Letter Waw -\U10FE6;Elymaic Letter Zayin -\U10FE7;Elymaic Letter Heth -\U10FE8;Elymaic Letter Teth -\U10FE9;Elymaic Letter Yodh -\U10FEA;Elymaic Letter Kaph -\U10FEB;Elymaic Letter Lamedh -\U10FEC;Elymaic Letter Mem -\U10FED;Elymaic Letter Nun -\U10FEE;Elymaic Letter Samekh -\U10FEF;Elymaic Letter Ayin -\U10FF0;Elymaic Letter Pe -\U10FF1;Elymaic Letter Sadhe -\U10FF2;Elymaic Letter Qoph -\U10FF3;Elymaic Letter Resh -\U10FF4;Elymaic Letter Shin -\U10FF5;Elymaic Letter Taw -\U10FF6;Elymaic Ligature Zayin-Yodh -\U11000;Brahmi Sign Candrabindu -\U11001;Brahmi Sign Anusvara -\U11002;Brahmi Sign Visarga -\U11003;Brahmi Sign Jihvamuliya -\U11004;Brahmi Sign Upadhmaniya -\U11005;Brahmi Letter A -\U11006;Brahmi Letter Aa -\U11007;Brahmi Letter I -\U11008;Brahmi Letter Ii -\U11009;Brahmi Letter U -\U1100A;Brahmi Letter Uu -\U1100B;Brahmi Letter Vocalic R -\U1100C;Brahmi Letter Vocalic Rr -\U1100D;Brahmi Letter Vocalic L -\U1100E;Brahmi Letter Vocalic Ll -\U1100F;Brahmi Letter E -\U11010;Brahmi Letter Ai -\U11011;Brahmi Letter O -\U11012;Brahmi Letter Au -\U11013;Brahmi Letter Ka -\U11014;Brahmi Letter Kha -\U11015;Brahmi Letter Ga -\U11016;Brahmi Letter Gha -\U11017;Brahmi Letter Nga -\U11018;Brahmi Letter Ca -\U11019;Brahmi Letter Cha -\U1101A;Brahmi Letter Ja -\U1101B;Brahmi Letter Jha -\U1101C;Brahmi Letter Nya -\U1101D;Brahmi Letter Tta -\U1101E;Brahmi Letter Ttha -\U1101F;Brahmi Letter Dda -\U11020;Brahmi Letter Ddha -\U11021;Brahmi Letter Nna -\U11022;Brahmi Letter Ta -\U11023;Brahmi Letter Tha -\U11024;Brahmi Letter Da -\U11025;Brahmi Letter Dha -\U11026;Brahmi Letter Na -\U11027;Brahmi Letter Pa -\U11028;Brahmi Letter Pha -\U11029;Brahmi Letter Ba -\U1102A;Brahmi Letter Bha -\U1102B;Brahmi Letter Ma -\U1102C;Brahmi Letter Ya -\U1102D;Brahmi Letter Ra -\U1102E;Brahmi Letter La -\U1102F;Brahmi Letter Va -\U11030;Brahmi Letter Sha -\U11031;Brahmi Letter Ssa -\U11032;Brahmi Letter Sa -\U11033;Brahmi Letter Ha -\U11034;Brahmi Letter Lla -\U11035;Brahmi Letter Old Tamil Llla -\U11036;Brahmi Letter Old Tamil Rra -\U11037;Brahmi Letter Old Tamil Nnna -\U11038;Brahmi Vowel Sign Aa -\U11039;Brahmi Vowel Sign Bhattiprolu Aa -\U1103A;Brahmi Vowel Sign I -\U1103B;Brahmi Vowel Sign Ii -\U1103C;Brahmi Vowel Sign U -\U1103D;Brahmi Vowel Sign Uu -\U1103E;Brahmi Vowel Sign Vocalic R -\U1103F;Brahmi Vowel Sign Vocalic Rr -\U11040;Brahmi Vowel Sign Vocalic L -\U11041;Brahmi Vowel Sign Vocalic Ll -\U11042;Brahmi Vowel Sign E -\U11043;Brahmi Vowel Sign Ai -\U11044;Brahmi Vowel Sign O -\U11045;Brahmi Vowel Sign Au -\U11046;Brahmi Virama -\U11047;Brahmi Danda -\U11048;Brahmi Double Danda -\U11049;Brahmi Punctuation Dot -\U1104A;Brahmi Punctuation Double Dot -\U1104B;Brahmi Punctuation Line -\U1104C;Brahmi Punctuation Crescent Bar -\U1104D;Brahmi Punctuation Lotus -\U11052;Brahmi Number One -\U11053;Brahmi Number Two -\U11054;Brahmi Number Three -\U11055;Brahmi Number Four -\U11056;Brahmi Number Five -\U11057;Brahmi Number Six -\U11058;Brahmi Number Seven -\U11059;Brahmi Number Eight -\U1105A;Brahmi Number Nine -\U1105B;Brahmi Number Ten -\U1105C;Brahmi Number Twenty -\U1105D;Brahmi Number Thirty -\U1105E;Brahmi Number Forty -\U1105F;Brahmi Number Fifty -\U11060;Brahmi Number Sixty -\U11061;Brahmi Number Seventy -\U11062;Brahmi Number Eighty -\U11063;Brahmi Number Ninety -\U11064;Brahmi Number One Hundred -\U11065;Brahmi Number One Thousand -\U11066;Brahmi Digit Zero -\U11067;Brahmi Digit One -\U11068;Brahmi Digit Two -\U11069;Brahmi Digit Three -\U1106A;Brahmi Digit Four -\U1106B;Brahmi Digit Five -\U1106C;Brahmi Digit Six -\U1106D;Brahmi Digit Seven -\U1106E;Brahmi Digit Eight -\U1106F;Brahmi Digit Nine -\U11070;Brahmi Sign Old Tamil Virama -\U11071;Brahmi Letter Old Tamil Short E -\U11072;Brahmi Letter Old Tamil Short O -\U11073;Brahmi Vowel Sign Old Tamil Short E -\U11074;Brahmi Vowel Sign Old Tamil Short O -\U11075;Brahmi Letter Old Tamil Lla -\U1107F;Brahmi Number Joiner -\U11080;Kaithi Sign Candrabindu -\U11081;Kaithi Sign Anusvara -\U11082;Kaithi Sign Visarga -\U11083;Kaithi Letter A -\U11084;Kaithi Letter Aa -\U11085;Kaithi Letter I -\U11086;Kaithi Letter Ii -\U11087;Kaithi Letter U -\U11088;Kaithi Letter Uu -\U11089;Kaithi Letter E -\U1108A;Kaithi Letter Ai -\U1108B;Kaithi Letter O -\U1108C;Kaithi Letter Au -\U1108D;Kaithi Letter Ka -\U1108E;Kaithi Letter Kha -\U1108F;Kaithi Letter Ga -\U11090;Kaithi Letter Gha -\U11091;Kaithi Letter Nga -\U11092;Kaithi Letter Ca -\U11093;Kaithi Letter Cha -\U11094;Kaithi Letter Ja -\U11095;Kaithi Letter Jha -\U11096;Kaithi Letter Nya -\U11097;Kaithi Letter Tta -\U11098;Kaithi Letter Ttha -\U11099;Kaithi Letter Dda -\U1109A;Kaithi Letter Dddha -\U1109B;Kaithi Letter Ddha -\U1109C;Kaithi Letter Rha -\U1109D;Kaithi Letter Nna -\U1109E;Kaithi Letter Ta -\U1109F;Kaithi Letter Tha -\U110A0;Kaithi Letter Da -\U110A1;Kaithi Letter Dha -\U110A2;Kaithi Letter Na -\U110A3;Kaithi Letter Pa -\U110A4;Kaithi Letter Pha -\U110A5;Kaithi Letter Ba -\U110A6;Kaithi Letter Bha -\U110A7;Kaithi Letter Ma -\U110A8;Kaithi Letter Ya -\U110A9;Kaithi Letter Ra -\U110AA;Kaithi Letter La -\U110AB;Kaithi Letter Va -\U110AC;Kaithi Letter Sha -\U110AD;Kaithi Letter Ssa -\U110AE;Kaithi Letter Sa -\U110AF;Kaithi Letter Ha -\U110B0;Kaithi Vowel Sign Aa -\U110B1;Kaithi Vowel Sign I -\U110B2;Kaithi Vowel Sign Ii -\U110B3;Kaithi Vowel Sign U -\U110B4;Kaithi Vowel Sign Uu -\U110B5;Kaithi Vowel Sign E -\U110B6;Kaithi Vowel Sign Ai -\U110B7;Kaithi Vowel Sign O -\U110B8;Kaithi Vowel Sign Au -\U110B9;Kaithi Sign Virama -\U110BA;Kaithi Sign Nukta -\U110BB;Kaithi Abbreviation Sign -\U110BC;Kaithi Enumeration Sign -\U110BD;Kaithi Number Sign -\U110BE;Kaithi Section Mark -\U110BF;Kaithi Double Section Mark -\U110C0;Kaithi Danda -\U110C1;Kaithi Double Danda -\U110C2;Kaithi Vowel Sign Vocalic R -\U110CD;Kaithi Number Sign Above -\U110D0;Sora Sompeng Letter Sah -\U110D1;Sora Sompeng Letter Tah -\U110D2;Sora Sompeng Letter Bah -\U110D3;Sora Sompeng Letter Cah -\U110D4;Sora Sompeng Letter Dah -\U110D5;Sora Sompeng Letter Gah -\U110D6;Sora Sompeng Letter Mah -\U110D7;Sora Sompeng Letter Ngah -\U110D8;Sora Sompeng Letter Lah -\U110D9;Sora Sompeng Letter Nah -\U110DA;Sora Sompeng Letter Vah -\U110DB;Sora Sompeng Letter Pah -\U110DC;Sora Sompeng Letter Yah -\U110DD;Sora Sompeng Letter Rah -\U110DE;Sora Sompeng Letter Hah -\U110DF;Sora Sompeng Letter Kah -\U110E0;Sora Sompeng Letter Jah -\U110E1;Sora Sompeng Letter Nyah -\U110E2;Sora Sompeng Letter Ah -\U110E3;Sora Sompeng Letter Eeh -\U110E4;Sora Sompeng Letter Ih -\U110E5;Sora Sompeng Letter Uh -\U110E6;Sora Sompeng Letter Oh -\U110E7;Sora Sompeng Letter Eh -\U110E8;Sora Sompeng Letter Mae -\U110F0;Sora Sompeng Digit Zero -\U110F1;Sora Sompeng Digit One -\U110F2;Sora Sompeng Digit Two -\U110F3;Sora Sompeng Digit Three -\U110F4;Sora Sompeng Digit Four -\U110F5;Sora Sompeng Digit Five -\U110F6;Sora Sompeng Digit Six -\U110F7;Sora Sompeng Digit Seven -\U110F8;Sora Sompeng Digit Eight -\U110F9;Sora Sompeng Digit Nine -\U11100;Chakma Sign Candrabindu -\U11101;Chakma Sign Anusvara -\U11102;Chakma Sign Visarga -\U11103;Chakma Letter Aa -\U11104;Chakma Letter I -\U11105;Chakma Letter U -\U11106;Chakma Letter E -\U11107;Chakma Letter Kaa -\U11108;Chakma Letter Khaa -\U11109;Chakma Letter Gaa -\U1110A;Chakma Letter Ghaa -\U1110B;Chakma Letter Ngaa -\U1110C;Chakma Letter Caa -\U1110D;Chakma Letter Chaa -\U1110E;Chakma Letter Jaa -\U1110F;Chakma Letter Jhaa -\U11110;Chakma Letter Nyaa -\U11111;Chakma Letter Ttaa -\U11112;Chakma Letter Tthaa -\U11113;Chakma Letter Ddaa -\U11114;Chakma Letter Ddhaa -\U11115;Chakma Letter Nnaa -\U11116;Chakma Letter Taa -\U11117;Chakma Letter Thaa -\U11118;Chakma Letter Daa -\U11119;Chakma Letter Dhaa -\U1111A;Chakma Letter Naa -\U1111B;Chakma Letter Paa -\U1111C;Chakma Letter Phaa -\U1111D;Chakma Letter Baa -\U1111E;Chakma Letter Bhaa -\U1111F;Chakma Letter Maa -\U11120;Chakma Letter Yyaa -\U11121;Chakma Letter Yaa -\U11122;Chakma Letter Raa -\U11123;Chakma Letter Laa -\U11124;Chakma Letter Waa -\U11125;Chakma Letter Saa -\U11126;Chakma Letter Haa -\U11127;Chakma Vowel Sign A -\U11128;Chakma Vowel Sign I -\U11129;Chakma Vowel Sign Ii -\U1112A;Chakma Vowel Sign U -\U1112B;Chakma Vowel Sign Uu -\U1112C;Chakma Vowel Sign E -\U1112D;Chakma Vowel Sign Ai -\U1112E;Chakma Vowel Sign O -\U1112F;Chakma Vowel Sign Au -\U11130;Chakma Vowel Sign Oi -\U11131;Chakma O Mark -\U11132;Chakma Au Mark -\U11133;Chakma Virama -\U11134;Chakma Maayyaa -\U11136;Chakma Digit Zero -\U11137;Chakma Digit One -\U11138;Chakma Digit Two -\U11139;Chakma Digit Three -\U1113A;Chakma Digit Four -\U1113B;Chakma Digit Five -\U1113C;Chakma Digit Six -\U1113D;Chakma Digit Seven -\U1113E;Chakma Digit Eight -\U1113F;Chakma Digit Nine -\U11140;Chakma Section Mark -\U11141;Chakma Danda -\U11142;Chakma Double Danda -\U11143;Chakma Question Mark -\U11144;Chakma Letter Lhaa -\U11145;Chakma Vowel Sign Aa -\U11146;Chakma Vowel Sign Ei -\U11147;Chakma Letter Vaa -\U11150;Mahajani Letter A -\U11151;Mahajani Letter I -\U11152;Mahajani Letter U -\U11153;Mahajani Letter E -\U11154;Mahajani Letter O -\U11155;Mahajani Letter Ka -\U11156;Mahajani Letter Kha -\U11157;Mahajani Letter Ga -\U11158;Mahajani Letter Gha -\U11159;Mahajani Letter Ca -\U1115A;Mahajani Letter Cha -\U1115B;Mahajani Letter Ja -\U1115C;Mahajani Letter Jha -\U1115D;Mahajani Letter Nya -\U1115E;Mahajani Letter Tta -\U1115F;Mahajani Letter Ttha -\U11160;Mahajani Letter Dda -\U11161;Mahajani Letter Ddha -\U11162;Mahajani Letter Nna -\U11163;Mahajani Letter Ta -\U11164;Mahajani Letter Tha -\U11165;Mahajani Letter Da -\U11166;Mahajani Letter Dha -\U11167;Mahajani Letter Na -\U11168;Mahajani Letter Pa -\U11169;Mahajani Letter Pha -\U1116A;Mahajani Letter Ba -\U1116B;Mahajani Letter Bha -\U1116C;Mahajani Letter Ma -\U1116D;Mahajani Letter Ra -\U1116E;Mahajani Letter La -\U1116F;Mahajani Letter Va -\U11170;Mahajani Letter Sa -\U11171;Mahajani Letter Ha -\U11172;Mahajani Letter Rra -\U11173;Mahajani Sign Nukta -\U11174;Mahajani Abbreviation Sign -\U11175;Mahajani Section Mark -\U11176;Mahajani Ligature Shri -\U11180;Sharada Sign Candrabindu -\U11181;Sharada Sign Anusvara -\U11182;Sharada Sign Visarga -\U11183;Sharada Letter A -\U11184;Sharada Letter Aa -\U11185;Sharada Letter I -\U11186;Sharada Letter Ii -\U11187;Sharada Letter U -\U11188;Sharada Letter Uu -\U11189;Sharada Letter Vocalic R -\U1118A;Sharada Letter Vocalic Rr -\U1118B;Sharada Letter Vocalic L -\U1118C;Sharada Letter Vocalic Ll -\U1118D;Sharada Letter E -\U1118E;Sharada Letter Ai -\U1118F;Sharada Letter O -\U11190;Sharada Letter Au -\U11191;Sharada Letter Ka -\U11192;Sharada Letter Kha -\U11193;Sharada Letter Ga -\U11194;Sharada Letter Gha -\U11195;Sharada Letter Nga -\U11196;Sharada Letter Ca -\U11197;Sharada Letter Cha -\U11198;Sharada Letter Ja -\U11199;Sharada Letter Jha -\U1119A;Sharada Letter Nya -\U1119B;Sharada Letter Tta -\U1119C;Sharada Letter Ttha -\U1119D;Sharada Letter Dda -\U1119E;Sharada Letter Ddha -\U1119F;Sharada Letter Nna -\U111A0;Sharada Letter Ta -\U111A1;Sharada Letter Tha -\U111A2;Sharada Letter Da -\U111A3;Sharada Letter Dha -\U111A4;Sharada Letter Na -\U111A5;Sharada Letter Pa -\U111A6;Sharada Letter Pha -\U111A7;Sharada Letter Ba -\U111A8;Sharada Letter Bha -\U111A9;Sharada Letter Ma -\U111AA;Sharada Letter Ya -\U111AB;Sharada Letter Ra -\U111AC;Sharada Letter La -\U111AD;Sharada Letter Lla -\U111AE;Sharada Letter Va -\U111AF;Sharada Letter Sha -\U111B0;Sharada Letter Ssa -\U111B1;Sharada Letter Sa -\U111B2;Sharada Letter Ha -\U111B3;Sharada Vowel Sign Aa -\U111B4;Sharada Vowel Sign I -\U111B5;Sharada Vowel Sign Ii -\U111B6;Sharada Vowel Sign U -\U111B7;Sharada Vowel Sign Uu -\U111B8;Sharada Vowel Sign Vocalic R -\U111B9;Sharada Vowel Sign Vocalic Rr -\U111BA;Sharada Vowel Sign Vocalic L -\U111BB;Sharada Vowel Sign Vocalic Ll -\U111BC;Sharada Vowel Sign E -\U111BD;Sharada Vowel Sign Ai -\U111BE;Sharada Vowel Sign O -\U111BF;Sharada Vowel Sign Au -\U111C0;Sharada Sign Virama -\U111C1;Sharada Sign Avagraha -\U111C2;Sharada Sign Jihvamuliya -\U111C3;Sharada Sign Upadhmaniya -\U111C4;Sharada Om -\U111C5;Sharada Danda -\U111C6;Sharada Double Danda -\U111C7;Sharada Abbreviation Sign -\U111C8;Sharada Separator -\U111C9;Sharada Sandhi Mark -\U111CA;Sharada Sign Nukta -\U111CB;Sharada Vowel Modifier Mark -\U111CC;Sharada Extra Short Vowel Mark -\U111CD;Sharada Sutra Mark -\U111CE;Sharada Vowel Sign Prishthamatra E -\U111CF;Sharada Sign Inverted Candrabindu -\U111D0;Sharada Digit Zero -\U111D1;Sharada Digit One -\U111D2;Sharada Digit Two -\U111D3;Sharada Digit Three -\U111D4;Sharada Digit Four -\U111D5;Sharada Digit Five -\U111D6;Sharada Digit Six -\U111D7;Sharada Digit Seven -\U111D8;Sharada Digit Eight -\U111D9;Sharada Digit Nine -\U111DA;Sharada Ekam -\U111DB;Sharada Sign Siddham -\U111DC;Sharada Headstroke -\U111DD;Sharada Continuation Sign -\U111DE;Sharada Section Mark-1 -\U111DF;Sharada Section Mark-2 -\U111E1;Sinhala Archaic Digit One -\U111E2;Sinhala Archaic Digit Two -\U111E3;Sinhala Archaic Digit Three -\U111E4;Sinhala Archaic Digit Four -\U111E5;Sinhala Archaic Digit Five -\U111E6;Sinhala Archaic Digit Six -\U111E7;Sinhala Archaic Digit Seven -\U111E8;Sinhala Archaic Digit Eight -\U111E9;Sinhala Archaic Digit Nine -\U111EA;Sinhala Archaic Number Ten -\U111EB;Sinhala Archaic Number Twenty -\U111EC;Sinhala Archaic Number Thirty -\U111ED;Sinhala Archaic Number Forty -\U111EE;Sinhala Archaic Number Fifty -\U111EF;Sinhala Archaic Number Sixty -\U111F0;Sinhala Archaic Number Seventy -\U111F1;Sinhala Archaic Number Eighty -\U111F2;Sinhala Archaic Number Ninety -\U111F3;Sinhala Archaic Number One Hundred -\U111F4;Sinhala Archaic Number One Thousand -\U11200;Khojki Letter A -\U11201;Khojki Letter Aa -\U11202;Khojki Letter I -\U11203;Khojki Letter U -\U11204;Khojki Letter E -\U11205;Khojki Letter Ai -\U11206;Khojki Letter O -\U11207;Khojki Letter Au -\U11208;Khojki Letter Ka -\U11209;Khojki Letter Kha -\U1120A;Khojki Letter Ga -\U1120B;Khojki Letter Gga -\U1120C;Khojki Letter Gha -\U1120D;Khojki Letter Nga -\U1120E;Khojki Letter Ca -\U1120F;Khojki Letter Cha -\U11210;Khojki Letter Ja -\U11211;Khojki Letter Jja -\U11213;Khojki Letter Nya -\U11214;Khojki Letter Tta -\U11215;Khojki Letter Ttha -\U11216;Khojki Letter Dda -\U11217;Khojki Letter Ddha -\U11218;Khojki Letter Nna -\U11219;Khojki Letter Ta -\U1121A;Khojki Letter Tha -\U1121B;Khojki Letter Da -\U1121C;Khojki Letter Ddda -\U1121D;Khojki Letter Dha -\U1121E;Khojki Letter Na -\U1121F;Khojki Letter Pa -\U11220;Khojki Letter Pha -\U11221;Khojki Letter Ba -\U11222;Khojki Letter Bba -\U11223;Khojki Letter Bha -\U11224;Khojki Letter Ma -\U11225;Khojki Letter Ya -\U11226;Khojki Letter Ra -\U11227;Khojki Letter La -\U11228;Khojki Letter Va -\U11229;Khojki Letter Sa -\U1122A;Khojki Letter Ha -\U1122B;Khojki Letter Lla -\U1122C;Khojki Vowel Sign Aa -\U1122D;Khojki Vowel Sign I -\U1122E;Khojki Vowel Sign Ii -\U1122F;Khojki Vowel Sign U -\U11230;Khojki Vowel Sign E -\U11231;Khojki Vowel Sign Ai -\U11232;Khojki Vowel Sign O -\U11233;Khojki Vowel Sign Au -\U11234;Khojki Sign Anusvara -\U11235;Khojki Sign Virama -\U11236;Khojki Sign Nukta -\U11237;Khojki Sign Shadda -\U11238;Khojki Danda -\U11239;Khojki Double Danda -\U1123A;Khojki Word Separator -\U1123B;Khojki Section Mark -\U1123C;Khojki Double Section Mark -\U1123D;Khojki Abbreviation Sign -\U1123E;Khojki Sign Sukun -\U1123F;Khojki Letter Qa -\U11240;Khojki Letter Short I -\U11241;Khojki Vowel Sign Vocalic R -\U11280;Multani Letter A -\U11281;Multani Letter I -\U11282;Multani Letter U -\U11283;Multani Letter E -\U11284;Multani Letter Ka -\U11285;Multani Letter Kha -\U11286;Multani Letter Ga -\U11288;Multani Letter Gha -\U1128A;Multani Letter Ca -\U1128B;Multani Letter Cha -\U1128C;Multani Letter Ja -\U1128D;Multani Letter Jja -\U1128F;Multani Letter Nya -\U11290;Multani Letter Tta -\U11291;Multani Letter Ttha -\U11292;Multani Letter Dda -\U11293;Multani Letter Ddda -\U11294;Multani Letter Ddha -\U11295;Multani Letter Nna -\U11296;Multani Letter Ta -\U11297;Multani Letter Tha -\U11298;Multani Letter Da -\U11299;Multani Letter Dha -\U1129A;Multani Letter Na -\U1129B;Multani Letter Pa -\U1129C;Multani Letter Pha -\U1129D;Multani Letter Ba -\U1129F;Multani Letter Bha -\U112A0;Multani Letter Ma -\U112A1;Multani Letter Ya -\U112A2;Multani Letter Ra -\U112A3;Multani Letter La -\U112A4;Multani Letter Va -\U112A5;Multani Letter Sa -\U112A6;Multani Letter Ha -\U112A7;Multani Letter Rra -\U112A8;Multani Letter Rha -\U112A9;Multani Section Mark -\U112B0;Khudawadi Letter A -\U112B1;Khudawadi Letter Aa -\U112B2;Khudawadi Letter I -\U112B3;Khudawadi Letter Ii -\U112B4;Khudawadi Letter U -\U112B5;Khudawadi Letter Uu -\U112B6;Khudawadi Letter E -\U112B7;Khudawadi Letter Ai -\U112B8;Khudawadi Letter O -\U112B9;Khudawadi Letter Au -\U112BA;Khudawadi Letter Ka -\U112BB;Khudawadi Letter Kha -\U112BC;Khudawadi Letter Ga -\U112BD;Khudawadi Letter Gga -\U112BE;Khudawadi Letter Gha -\U112BF;Khudawadi Letter Nga -\U112C0;Khudawadi Letter Ca -\U112C1;Khudawadi Letter Cha -\U112C2;Khudawadi Letter Ja -\U112C3;Khudawadi Letter Jja -\U112C4;Khudawadi Letter Jha -\U112C5;Khudawadi Letter Nya -\U112C6;Khudawadi Letter Tta -\U112C7;Khudawadi Letter Ttha -\U112C8;Khudawadi Letter Dda -\U112C9;Khudawadi Letter Ddda -\U112CA;Khudawadi Letter Rra -\U112CB;Khudawadi Letter Ddha -\U112CC;Khudawadi Letter Nna -\U112CD;Khudawadi Letter Ta -\U112CE;Khudawadi Letter Tha -\U112CF;Khudawadi Letter Da -\U112D0;Khudawadi Letter Dha -\U112D1;Khudawadi Letter Na -\U112D2;Khudawadi Letter Pa -\U112D3;Khudawadi Letter Pha -\U112D4;Khudawadi Letter Ba -\U112D5;Khudawadi Letter Bba -\U112D6;Khudawadi Letter Bha -\U112D7;Khudawadi Letter Ma -\U112D8;Khudawadi Letter Ya -\U112D9;Khudawadi Letter Ra -\U112DA;Khudawadi Letter La -\U112DB;Khudawadi Letter Va -\U112DC;Khudawadi Letter Sha -\U112DD;Khudawadi Letter Sa -\U112DE;Khudawadi Letter Ha -\U112DF;Khudawadi Sign Anusvara -\U112E0;Khudawadi Vowel Sign Aa -\U112E1;Khudawadi Vowel Sign I -\U112E2;Khudawadi Vowel Sign Ii -\U112E3;Khudawadi Vowel Sign U -\U112E4;Khudawadi Vowel Sign Uu -\U112E5;Khudawadi Vowel Sign E -\U112E6;Khudawadi Vowel Sign Ai -\U112E7;Khudawadi Vowel Sign O -\U112E8;Khudawadi Vowel Sign Au -\U112E9;Khudawadi Sign Nukta -\U112EA;Khudawadi Sign Virama -\U112F0;Khudawadi Digit Zero -\U112F1;Khudawadi Digit One -\U112F2;Khudawadi Digit Two -\U112F3;Khudawadi Digit Three -\U112F4;Khudawadi Digit Four -\U112F5;Khudawadi Digit Five -\U112F6;Khudawadi Digit Six -\U112F7;Khudawadi Digit Seven -\U112F8;Khudawadi Digit Eight -\U112F9;Khudawadi Digit Nine -\U11300;Grantha Sign Combining Anusvara Above -\U11301;Grantha Sign Candrabindu -\U11302;Grantha Sign Anusvara -\U11303;Grantha Sign Visarga -\U11305;Grantha Letter A -\U11306;Grantha Letter Aa -\U11307;Grantha Letter I -\U11308;Grantha Letter Ii -\U11309;Grantha Letter U -\U1130A;Grantha Letter Uu -\U1130B;Grantha Letter Vocalic R -\U1130C;Grantha Letter Vocalic L -\U1130F;Grantha Letter Ee -\U11310;Grantha Letter Ai -\U11313;Grantha Letter Oo -\U11314;Grantha Letter Au -\U11315;Grantha Letter Ka -\U11316;Grantha Letter Kha -\U11317;Grantha Letter Ga -\U11318;Grantha Letter Gha -\U11319;Grantha Letter Nga -\U1131A;Grantha Letter Ca -\U1131B;Grantha Letter Cha -\U1131C;Grantha Letter Ja -\U1131D;Grantha Letter Jha -\U1131E;Grantha Letter Nya -\U1131F;Grantha Letter Tta -\U11320;Grantha Letter Ttha -\U11321;Grantha Letter Dda -\U11322;Grantha Letter Ddha -\U11323;Grantha Letter Nna -\U11324;Grantha Letter Ta -\U11325;Grantha Letter Tha -\U11326;Grantha Letter Da -\U11327;Grantha Letter Dha -\U11328;Grantha Letter Na -\U1132A;Grantha Letter Pa -\U1132B;Grantha Letter Pha -\U1132C;Grantha Letter Ba -\U1132D;Grantha Letter Bha -\U1132E;Grantha Letter Ma -\U1132F;Grantha Letter Ya -\U11330;Grantha Letter Ra -\U11332;Grantha Letter La -\U11333;Grantha Letter Lla -\U11335;Grantha Letter Va -\U11336;Grantha Letter Sha -\U11337;Grantha Letter Ssa -\U11338;Grantha Letter Sa -\U11339;Grantha Letter Ha -\U1133B;Combining Bindu Below -\U1133C;Grantha Sign Nukta -\U1133D;Grantha Sign Avagraha -\U1133E;Grantha Vowel Sign Aa -\U1133F;Grantha Vowel Sign I -\U11340;Grantha Vowel Sign Ii -\U11341;Grantha Vowel Sign U -\U11342;Grantha Vowel Sign Uu -\U11343;Grantha Vowel Sign Vocalic R -\U11344;Grantha Vowel Sign Vocalic Rr -\U11347;Grantha Vowel Sign Ee -\U11348;Grantha Vowel Sign Ai -\U1134B;Grantha Vowel Sign Oo -\U1134C;Grantha Vowel Sign Au -\U1134D;Grantha Sign Virama -\U11350;Grantha Om -\U11357;Grantha Au Length Mark -\U1135D;Grantha Sign Pluta -\U1135E;Grantha Letter Vedic Anusvara -\U1135F;Grantha Letter Vedic Double Anusvara -\U11360;Grantha Letter Vocalic Rr -\U11361;Grantha Letter Vocalic Ll -\U11362;Grantha Vowel Sign Vocalic L -\U11363;Grantha Vowel Sign Vocalic Ll -\U11366;Combining Grantha Digit Zero -\U11367;Combining Grantha Digit One -\U11368;Combining Grantha Digit Two -\U11369;Combining Grantha Digit Three -\U1136A;Combining Grantha Digit Four -\U1136B;Combining Grantha Digit Five -\U1136C;Combining Grantha Digit Six -\U11370;Combining Grantha Letter A -\U11371;Combining Grantha Letter Ka -\U11372;Combining Grantha Letter Na -\U11373;Combining Grantha Letter Vi -\U11374;Combining Grantha Letter Pa -\U11400;Newa Letter A -\U11401;Newa Letter Aa -\U11402;Newa Letter I -\U11403;Newa Letter Ii -\U11404;Newa Letter U -\U11405;Newa Letter Uu -\U11406;Newa Letter Vocalic R -\U11407;Newa Letter Vocalic Rr -\U11408;Newa Letter Vocalic L -\U11409;Newa Letter Vocalic Ll -\U1140A;Newa Letter E -\U1140B;Newa Letter Ai -\U1140C;Newa Letter O -\U1140D;Newa Letter Au -\U1140E;Newa Letter Ka -\U1140F;Newa Letter Kha -\U11410;Newa Letter Ga -\U11411;Newa Letter Gha -\U11412;Newa Letter Nga -\U11413;Newa Letter Ngha -\U11414;Newa Letter Ca -\U11415;Newa Letter Cha -\U11416;Newa Letter Ja -\U11417;Newa Letter Jha -\U11418;Newa Letter Nya -\U11419;Newa Letter Nyha -\U1141A;Newa Letter Tta -\U1141B;Newa Letter Ttha -\U1141C;Newa Letter Dda -\U1141D;Newa Letter Ddha -\U1141E;Newa Letter Nna -\U1141F;Newa Letter Ta -\U11420;Newa Letter Tha -\U11421;Newa Letter Da -\U11422;Newa Letter Dha -\U11423;Newa Letter Na -\U11424;Newa Letter Nha -\U11425;Newa Letter Pa -\U11426;Newa Letter Pha -\U11427;Newa Letter Ba -\U11428;Newa Letter Bha -\U11429;Newa Letter Ma -\U1142A;Newa Letter Mha -\U1142B;Newa Letter Ya -\U1142C;Newa Letter Ra -\U1142D;Newa Letter Rha -\U1142E;Newa Letter La -\U1142F;Newa Letter Lha -\U11430;Newa Letter Wa -\U11431;Newa Letter Sha -\U11432;Newa Letter Ssa -\U11433;Newa Letter Sa -\U11434;Newa Letter Ha -\U11435;Newa Vowel Sign Aa -\U11436;Newa Vowel Sign I -\U11437;Newa Vowel Sign Ii -\U11438;Newa Vowel Sign U -\U11439;Newa Vowel Sign Uu -\U1143A;Newa Vowel Sign Vocalic R -\U1143B;Newa Vowel Sign Vocalic Rr -\U1143C;Newa Vowel Sign Vocalic L -\U1143D;Newa Vowel Sign Vocalic Ll -\U1143E;Newa Vowel Sign E -\U1143F;Newa Vowel Sign Ai -\U11440;Newa Vowel Sign O -\U11441;Newa Vowel Sign Au -\U11442;Newa Sign Virama -\U11443;Newa Sign Candrabindu -\U11444;Newa Sign Anusvara -\U11445;Newa Sign Visarga -\U11446;Newa Sign Nukta -\U11447;Newa Sign Avagraha -\U11448;Newa Sign Final Anusvara -\U11449;Newa Om -\U1144A;Newa Siddhi -\U1144B;Newa Danda -\U1144C;Newa Double Danda -\U1144D;Newa Comma -\U1144E;Newa Gap Filler -\U1144F;Newa Abbreviation Sign -\U11450;Newa Digit Zero -\U11451;Newa Digit One -\U11452;Newa Digit Two -\U11453;Newa Digit Three -\U11454;Newa Digit Four -\U11455;Newa Digit Five -\U11456;Newa Digit Six -\U11457;Newa Digit Seven -\U11458;Newa Digit Eight -\U11459;Newa Digit Nine -\U1145A;Newa Double Comma -\U1145B;Newa Placeholder Mark -\U1145D;Newa Insertion Sign -\U1145E;Newa Sandhi Mark -\U1145F;Newa Letter Vedic Anusvara -\U11460;Newa Sign Jihvamuliya -\U11461;Newa Sign Upadhmaniya -\U11480;Tirhuta Anji -\U11481;Tirhuta Letter A -\U11482;Tirhuta Letter Aa -\U11483;Tirhuta Letter I -\U11484;Tirhuta Letter Ii -\U11485;Tirhuta Letter U -\U11486;Tirhuta Letter Uu -\U11487;Tirhuta Letter Vocalic R -\U11488;Tirhuta Letter Vocalic Rr -\U11489;Tirhuta Letter Vocalic L -\U1148A;Tirhuta Letter Vocalic Ll -\U1148B;Tirhuta Letter E -\U1148C;Tirhuta Letter Ai -\U1148D;Tirhuta Letter O -\U1148E;Tirhuta Letter Au -\U1148F;Tirhuta Letter Ka -\U11490;Tirhuta Letter Kha -\U11491;Tirhuta Letter Ga -\U11492;Tirhuta Letter Gha -\U11493;Tirhuta Letter Nga -\U11494;Tirhuta Letter Ca -\U11495;Tirhuta Letter Cha -\U11496;Tirhuta Letter Ja -\U11497;Tirhuta Letter Jha -\U11498;Tirhuta Letter Nya -\U11499;Tirhuta Letter Tta -\U1149A;Tirhuta Letter Ttha -\U1149B;Tirhuta Letter Dda -\U1149C;Tirhuta Letter Ddha -\U1149D;Tirhuta Letter Nna -\U1149E;Tirhuta Letter Ta -\U1149F;Tirhuta Letter Tha -\U114A0;Tirhuta Letter Da -\U114A1;Tirhuta Letter Dha -\U114A2;Tirhuta Letter Na -\U114A3;Tirhuta Letter Pa -\U114A4;Tirhuta Letter Pha -\U114A5;Tirhuta Letter Ba -\U114A6;Tirhuta Letter Bha -\U114A7;Tirhuta Letter Ma -\U114A8;Tirhuta Letter Ya -\U114A9;Tirhuta Letter Ra -\U114AA;Tirhuta Letter La -\U114AB;Tirhuta Letter Va -\U114AC;Tirhuta Letter Sha -\U114AD;Tirhuta Letter Ssa -\U114AE;Tirhuta Letter Sa -\U114AF;Tirhuta Letter Ha -\U114B0;Tirhuta Vowel Sign Aa -\U114B1;Tirhuta Vowel Sign I -\U114B2;Tirhuta Vowel Sign Ii -\U114B3;Tirhuta Vowel Sign U -\U114B4;Tirhuta Vowel Sign Uu -\U114B5;Tirhuta Vowel Sign Vocalic R -\U114B6;Tirhuta Vowel Sign Vocalic Rr -\U114B7;Tirhuta Vowel Sign Vocalic L -\U114B8;Tirhuta Vowel Sign Vocalic Ll -\U114B9;Tirhuta Vowel Sign E -\U114BA;Tirhuta Vowel Sign Short E -\U114BB;Tirhuta Vowel Sign Ai -\U114BC;Tirhuta Vowel Sign O -\U114BD;Tirhuta Vowel Sign Short O -\U114BE;Tirhuta Vowel Sign Au -\U114BF;Tirhuta Sign Candrabindu -\U114C0;Tirhuta Sign Anusvara -\U114C1;Tirhuta Sign Visarga -\U114C2;Tirhuta Sign Virama -\U114C3;Tirhuta Sign Nukta -\U114C4;Tirhuta Sign Avagraha -\U114C5;Tirhuta Gvang -\U114C6;Tirhuta Abbreviation Sign -\U114C7;Tirhuta Om -\U114D0;Tirhuta Digit Zero -\U114D1;Tirhuta Digit One -\U114D2;Tirhuta Digit Two -\U114D3;Tirhuta Digit Three -\U114D4;Tirhuta Digit Four -\U114D5;Tirhuta Digit Five -\U114D6;Tirhuta Digit Six -\U114D7;Tirhuta Digit Seven -\U114D8;Tirhuta Digit Eight -\U114D9;Tirhuta Digit Nine -\U11580;Siddham Letter A -\U11581;Siddham Letter Aa -\U11582;Siddham Letter I -\U11583;Siddham Letter Ii -\U11584;Siddham Letter U -\U11585;Siddham Letter Uu -\U11586;Siddham Letter Vocalic R -\U11587;Siddham Letter Vocalic Rr -\U11588;Siddham Letter Vocalic L -\U11589;Siddham Letter Vocalic Ll -\U1158A;Siddham Letter E -\U1158B;Siddham Letter Ai -\U1158C;Siddham Letter O -\U1158D;Siddham Letter Au -\U1158E;Siddham Letter Ka -\U1158F;Siddham Letter Kha -\U11590;Siddham Letter Ga -\U11591;Siddham Letter Gha -\U11592;Siddham Letter Nga -\U11593;Siddham Letter Ca -\U11594;Siddham Letter Cha -\U11595;Siddham Letter Ja -\U11596;Siddham Letter Jha -\U11597;Siddham Letter Nya -\U11598;Siddham Letter Tta -\U11599;Siddham Letter Ttha -\U1159A;Siddham Letter Dda -\U1159B;Siddham Letter Ddha -\U1159C;Siddham Letter Nna -\U1159D;Siddham Letter Ta -\U1159E;Siddham Letter Tha -\U1159F;Siddham Letter Da -\U115A0;Siddham Letter Dha -\U115A1;Siddham Letter Na -\U115A2;Siddham Letter Pa -\U115A3;Siddham Letter Pha -\U115A4;Siddham Letter Ba -\U115A5;Siddham Letter Bha -\U115A6;Siddham Letter Ma -\U115A7;Siddham Letter Ya -\U115A8;Siddham Letter Ra -\U115A9;Siddham Letter La -\U115AA;Siddham Letter Va -\U115AB;Siddham Letter Sha -\U115AC;Siddham Letter Ssa -\U115AD;Siddham Letter Sa -\U115AE;Siddham Letter Ha -\U115AF;Siddham Vowel Sign Aa -\U115B0;Siddham Vowel Sign I -\U115B1;Siddham Vowel Sign Ii -\U115B2;Siddham Vowel Sign U -\U115B3;Siddham Vowel Sign Uu -\U115B4;Siddham Vowel Sign Vocalic R -\U115B5;Siddham Vowel Sign Vocalic Rr -\U115B8;Siddham Vowel Sign E -\U115B9;Siddham Vowel Sign Ai -\U115BA;Siddham Vowel Sign O -\U115BB;Siddham Vowel Sign Au -\U115BC;Siddham Sign Candrabindu -\U115BD;Siddham Sign Anusvara -\U115BE;Siddham Sign Visarga -\U115BF;Siddham Sign Virama -\U115C0;Siddham Sign Nukta -\U115C1;Siddham Sign Siddham -\U115C2;Siddham Danda -\U115C3;Siddham Double Danda -\U115C4;Siddham Separator Dot -\U115C5;Siddham Separator Bar -\U115C6;Siddham Repetition Mark-1 -\U115C7;Siddham Repetition Mark-2 -\U115C8;Siddham Repetition Mark-3 -\U115C9;Siddham End Of Text Mark -\U115CA;Siddham Section Mark With Trident And U-Shaped Ornaments -\U115CB;Siddham Section Mark With Trident And Dotted Crescents -\U115CC;Siddham Section Mark With Rays And Dotted Crescents -\U115CD;Siddham Section Mark With Rays And Dotted Double Crescents -\U115CE;Siddham Section Mark With Rays And Dotted Triple Crescents -\U115CF;Siddham Section Mark Double Ring -\U115D0;Siddham Section Mark Double Ring With Rays -\U115D1;Siddham Section Mark With Double Crescents -\U115D2;Siddham Section Mark With Triple Crescents -\U115D3;Siddham Section Mark With Quadruple Crescents -\U115D4;Siddham Section Mark With Septuple Crescents -\U115D5;Siddham Section Mark With Circles And Rays -\U115D6;Siddham Section Mark With Circles And Two Enclosures -\U115D7;Siddham Section Mark With Circles And Four Enclosures -\U115D8;Siddham Letter Three-Circle Alternate I -\U115D9;Siddham Letter Two-Circle Alternate I -\U115DA;Siddham Letter Two-Circle Alternate Ii -\U115DB;Siddham Letter Alternate U -\U115DC;Siddham Vowel Sign Alternate U -\U115DD;Siddham Vowel Sign Alternate Uu -\U11600;Modi Letter A -\U11601;Modi Letter Aa -\U11602;Modi Letter I -\U11603;Modi Letter Ii -\U11604;Modi Letter U -\U11605;Modi Letter Uu -\U11606;Modi Letter Vocalic R -\U11607;Modi Letter Vocalic Rr -\U11608;Modi Letter Vocalic L -\U11609;Modi Letter Vocalic Ll -\U1160A;Modi Letter E -\U1160B;Modi Letter Ai -\U1160C;Modi Letter O -\U1160D;Modi Letter Au -\U1160E;Modi Letter Ka -\U1160F;Modi Letter Kha -\U11610;Modi Letter Ga -\U11611;Modi Letter Gha -\U11612;Modi Letter Nga -\U11613;Modi Letter Ca -\U11614;Modi Letter Cha -\U11615;Modi Letter Ja -\U11616;Modi Letter Jha -\U11617;Modi Letter Nya -\U11618;Modi Letter Tta -\U11619;Modi Letter Ttha -\U1161A;Modi Letter Dda -\U1161B;Modi Letter Ddha -\U1161C;Modi Letter Nna -\U1161D;Modi Letter Ta -\U1161E;Modi Letter Tha -\U1161F;Modi Letter Da -\U11620;Modi Letter Dha -\U11621;Modi Letter Na -\U11622;Modi Letter Pa -\U11623;Modi Letter Pha -\U11624;Modi Letter Ba -\U11625;Modi Letter Bha -\U11626;Modi Letter Ma -\U11627;Modi Letter Ya -\U11628;Modi Letter Ra -\U11629;Modi Letter La -\U1162A;Modi Letter Va -\U1162B;Modi Letter Sha -\U1162C;Modi Letter Ssa -\U1162D;Modi Letter Sa -\U1162E;Modi Letter Ha -\U1162F;Modi Letter Lla -\U11630;Modi Vowel Sign Aa -\U11631;Modi Vowel Sign I -\U11632;Modi Vowel Sign Ii -\U11633;Modi Vowel Sign U -\U11634;Modi Vowel Sign Uu -\U11635;Modi Vowel Sign Vocalic R -\U11636;Modi Vowel Sign Vocalic Rr -\U11637;Modi Vowel Sign Vocalic L -\U11638;Modi Vowel Sign Vocalic Ll -\U11639;Modi Vowel Sign E -\U1163A;Modi Vowel Sign Ai -\U1163B;Modi Vowel Sign O -\U1163C;Modi Vowel Sign Au -\U1163D;Modi Sign Anusvara -\U1163E;Modi Sign Visarga -\U1163F;Modi Sign Virama -\U11640;Modi Sign Ardhacandra -\U11641;Modi Danda -\U11642;Modi Double Danda -\U11643;Modi Abbreviation Sign -\U11644;Modi Sign Huva -\U11650;Modi Digit Zero -\U11651;Modi Digit One -\U11652;Modi Digit Two -\U11653;Modi Digit Three -\U11654;Modi Digit Four -\U11655;Modi Digit Five -\U11656;Modi Digit Six -\U11657;Modi Digit Seven -\U11658;Modi Digit Eight -\U11659;Modi Digit Nine -\U11660;Mongolian Birga With Ornament -\U11661;Mongolian Rotated Birga -\U11662;Mongolian Double Birga With Ornament -\U11663;Mongolian Triple Birga With Ornament -\U11664;Mongolian Birga With Double Ornament -\U11665;Mongolian Rotated Birga With Ornament -\U11666;Mongolian Rotated Birga With Double Ornament -\U11667;Mongolian Inverted Birga -\U11668;Mongolian Inverted Birga With Double Ornament -\U11669;Mongolian Swirl Birga -\U1166A;Mongolian Swirl Birga With Ornament -\U1166B;Mongolian Swirl Birga With Double Ornament -\U1166C;Mongolian Turned Swirl Birga With Double Ornament -\U11680;Takri Letter A -\U11681;Takri Letter Aa -\U11682;Takri Letter I -\U11683;Takri Letter Ii -\U11684;Takri Letter U -\U11685;Takri Letter Uu -\U11686;Takri Letter E -\U11687;Takri Letter Ai -\U11688;Takri Letter O -\U11689;Takri Letter Au -\U1168A;Takri Letter Ka -\U1168B;Takri Letter Kha -\U1168C;Takri Letter Ga -\U1168D;Takri Letter Gha -\U1168E;Takri Letter Nga -\U1168F;Takri Letter Ca -\U11690;Takri Letter Cha -\U11691;Takri Letter Ja -\U11692;Takri Letter Jha -\U11693;Takri Letter Nya -\U11694;Takri Letter Tta -\U11695;Takri Letter Ttha -\U11696;Takri Letter Dda -\U11697;Takri Letter Ddha -\U11698;Takri Letter Nna -\U11699;Takri Letter Ta -\U1169A;Takri Letter Tha -\U1169B;Takri Letter Da -\U1169C;Takri Letter Dha -\U1169D;Takri Letter Na -\U1169E;Takri Letter Pa -\U1169F;Takri Letter Pha -\U116A0;Takri Letter Ba -\U116A1;Takri Letter Bha -\U116A2;Takri Letter Ma -\U116A3;Takri Letter Ya -\U116A4;Takri Letter Ra -\U116A5;Takri Letter La -\U116A6;Takri Letter Va -\U116A7;Takri Letter Sha -\U116A8;Takri Letter Sa -\U116A9;Takri Letter Ha -\U116AA;Takri Letter Rra -\U116AB;Takri Sign Anusvara -\U116AC;Takri Sign Visarga -\U116AD;Takri Vowel Sign Aa -\U116AE;Takri Vowel Sign I -\U116AF;Takri Vowel Sign Ii -\U116B0;Takri Vowel Sign U -\U116B1;Takri Vowel Sign Uu -\U116B2;Takri Vowel Sign E -\U116B3;Takri Vowel Sign Ai -\U116B4;Takri Vowel Sign O -\U116B5;Takri Vowel Sign Au -\U116B6;Takri Sign Virama -\U116B7;Takri Sign Nukta -\U116B8;Takri Letter Archaic Kha -\U116B9;Takri Abbreviation Sign -\U116C0;Takri Digit Zero -\U116C1;Takri Digit One -\U116C2;Takri Digit Two -\U116C3;Takri Digit Three -\U116C4;Takri Digit Four -\U116C5;Takri Digit Five -\U116C6;Takri Digit Six -\U116C7;Takri Digit Seven -\U116C8;Takri Digit Eight -\U116C9;Takri Digit Nine -\U11700;Ahom Letter Ka -\U11701;Ahom Letter Kha -\U11702;Ahom Letter Nga -\U11703;Ahom Letter Na -\U11704;Ahom Letter Ta -\U11705;Ahom Letter Alternate Ta -\U11706;Ahom Letter Pa -\U11707;Ahom Letter Pha -\U11708;Ahom Letter Ba -\U11709;Ahom Letter Ma -\U1170A;Ahom Letter Ja -\U1170B;Ahom Letter Cha -\U1170C;Ahom Letter Tha -\U1170D;Ahom Letter Ra -\U1170E;Ahom Letter La -\U1170F;Ahom Letter Sa -\U11710;Ahom Letter Nya -\U11711;Ahom Letter Ha -\U11712;Ahom Letter A -\U11713;Ahom Letter Da -\U11714;Ahom Letter Dha -\U11715;Ahom Letter Ga -\U11716;Ahom Letter Alternate Ga -\U11717;Ahom Letter Gha -\U11718;Ahom Letter Bha -\U11719;Ahom Letter Jha -\U1171A;Ahom Letter Alternate Ba -\U1171D;Ahom Consonant Sign Medial La -\U1171E;Ahom Consonant Sign Medial Ra -\U1171F;Ahom Consonant Sign Medial Ligating Ra -\U11720;Ahom Vowel Sign A -\U11721;Ahom Vowel Sign Aa -\U11722;Ahom Vowel Sign I -\U11723;Ahom Vowel Sign Ii -\U11724;Ahom Vowel Sign U -\U11725;Ahom Vowel Sign Uu -\U11726;Ahom Vowel Sign E -\U11727;Ahom Vowel Sign Aw -\U11728;Ahom Vowel Sign O -\U11729;Ahom Vowel Sign Ai -\U1172A;Ahom Vowel Sign Am -\U1172B;Ahom Sign Killer -\U11730;Ahom Digit Zero -\U11731;Ahom Digit One -\U11732;Ahom Digit Two -\U11733;Ahom Digit Three -\U11734;Ahom Digit Four -\U11735;Ahom Digit Five -\U11736;Ahom Digit Six -\U11737;Ahom Digit Seven -\U11738;Ahom Digit Eight -\U11739;Ahom Digit Nine -\U1173A;Ahom Number Ten -\U1173B;Ahom Number Twenty -\U1173C;Ahom Sign Small Section -\U1173D;Ahom Sign Section -\U1173E;Ahom Sign Rulai -\U1173F;Ahom Symbol Vi -\U11740;Ahom Letter Ca -\U11741;Ahom Letter Tta -\U11742;Ahom Letter Ttha -\U11743;Ahom Letter Dda -\U11744;Ahom Letter Ddha -\U11745;Ahom Letter Nna -\U11746;Ahom Letter Lla -\U11800;Dogra Letter A -\U11801;Dogra Letter Aa -\U11802;Dogra Letter I -\U11803;Dogra Letter Ii -\U11804;Dogra Letter U -\U11805;Dogra Letter Uu -\U11806;Dogra Letter E -\U11807;Dogra Letter Ai -\U11808;Dogra Letter O -\U11809;Dogra Letter Au -\U1180A;Dogra Letter Ka -\U1180B;Dogra Letter Kha -\U1180C;Dogra Letter Ga -\U1180D;Dogra Letter Gha -\U1180E;Dogra Letter Nga -\U1180F;Dogra Letter Ca -\U11810;Dogra Letter Cha -\U11811;Dogra Letter Ja -\U11812;Dogra Letter Jha -\U11813;Dogra Letter Nya -\U11814;Dogra Letter Tta -\U11815;Dogra Letter Ttha -\U11816;Dogra Letter Dda -\U11817;Dogra Letter Ddha -\U11818;Dogra Letter Nna -\U11819;Dogra Letter Ta -\U1181A;Dogra Letter Tha -\U1181B;Dogra Letter Da -\U1181C;Dogra Letter Dha -\U1181D;Dogra Letter Na -\U1181E;Dogra Letter Pa -\U1181F;Dogra Letter Pha -\U11820;Dogra Letter Ba -\U11821;Dogra Letter Bha -\U11822;Dogra Letter Ma -\U11823;Dogra Letter Ya -\U11824;Dogra Letter Ra -\U11825;Dogra Letter La -\U11826;Dogra Letter Va -\U11827;Dogra Letter Sha -\U11828;Dogra Letter Ssa -\U11829;Dogra Letter Sa -\U1182A;Dogra Letter Ha -\U1182B;Dogra Letter Rra -\U1182C;Dogra Vowel Sign Aa -\U1182D;Dogra Vowel Sign I -\U1182E;Dogra Vowel Sign Ii -\U1182F;Dogra Vowel Sign U -\U11830;Dogra Vowel Sign Uu -\U11831;Dogra Vowel Sign Vocalic R -\U11832;Dogra Vowel Sign Vocalic Rr -\U11833;Dogra Vowel Sign E -\U11834;Dogra Vowel Sign Ai -\U11835;Dogra Vowel Sign O -\U11836;Dogra Vowel Sign Au -\U11837;Dogra Sign Anusvara -\U11838;Dogra Sign Visarga -\U11839;Dogra Sign Virama -\U1183A;Dogra Sign Nukta -\U1183B;Dogra Abbreviation Sign -\U118A0;Warang Citi Capital Letter Ngaa -\U118A1;Warang Citi Capital Letter A -\U118A2;Warang Citi Capital Letter Wi -\U118A3;Warang Citi Capital Letter Yu -\U118A4;Warang Citi Capital Letter Ya -\U118A5;Warang Citi Capital Letter Yo -\U118A6;Warang Citi Capital Letter Ii -\U118A7;Warang Citi Capital Letter Uu -\U118A8;Warang Citi Capital Letter E -\U118A9;Warang Citi Capital Letter O -\U118AA;Warang Citi Capital Letter Ang -\U118AB;Warang Citi Capital Letter Ga -\U118AC;Warang Citi Capital Letter Ko -\U118AD;Warang Citi Capital Letter Eny -\U118AE;Warang Citi Capital Letter Yuj -\U118AF;Warang Citi Capital Letter Uc -\U118B0;Warang Citi Capital Letter Enn -\U118B1;Warang Citi Capital Letter Odd -\U118B2;Warang Citi Capital Letter Tte -\U118B3;Warang Citi Capital Letter Nung -\U118B4;Warang Citi Capital Letter Da -\U118B5;Warang Citi Capital Letter At -\U118B6;Warang Citi Capital Letter Am -\U118B7;Warang Citi Capital Letter Bu -\U118B8;Warang Citi Capital Letter Pu -\U118B9;Warang Citi Capital Letter Hiyo -\U118BA;Warang Citi Capital Letter Holo -\U118BB;Warang Citi Capital Letter Horr -\U118BC;Warang Citi Capital Letter Har -\U118BD;Warang Citi Capital Letter Ssuu -\U118BE;Warang Citi Capital Letter Sii -\U118BF;Warang Citi Capital Letter Viyo -\U118C0;Warang Citi Small Letter Ngaa -\U118C1;Warang Citi Small Letter A -\U118C2;Warang Citi Small Letter Wi -\U118C3;Warang Citi Small Letter Yu -\U118C4;Warang Citi Small Letter Ya -\U118C5;Warang Citi Small Letter Yo -\U118C6;Warang Citi Small Letter Ii -\U118C7;Warang Citi Small Letter Uu -\U118C8;Warang Citi Small Letter E -\U118C9;Warang Citi Small Letter O -\U118CA;Warang Citi Small Letter Ang -\U118CB;Warang Citi Small Letter Ga -\U118CC;Warang Citi Small Letter Ko -\U118CD;Warang Citi Small Letter Eny -\U118CE;Warang Citi Small Letter Yuj -\U118CF;Warang Citi Small Letter Uc -\U118D0;Warang Citi Small Letter Enn -\U118D1;Warang Citi Small Letter Odd -\U118D2;Warang Citi Small Letter Tte -\U118D3;Warang Citi Small Letter Nung -\U118D4;Warang Citi Small Letter Da -\U118D5;Warang Citi Small Letter At -\U118D6;Warang Citi Small Letter Am -\U118D7;Warang Citi Small Letter Bu -\U118D8;Warang Citi Small Letter Pu -\U118D9;Warang Citi Small Letter Hiyo -\U118DA;Warang Citi Small Letter Holo -\U118DB;Warang Citi Small Letter Horr -\U118DC;Warang Citi Small Letter Har -\U118DD;Warang Citi Small Letter Ssuu -\U118DE;Warang Citi Small Letter Sii -\U118DF;Warang Citi Small Letter Viyo -\U118E0;Warang Citi Digit Zero -\U118E1;Warang Citi Digit One -\U118E2;Warang Citi Digit Two -\U118E3;Warang Citi Digit Three -\U118E4;Warang Citi Digit Four -\U118E5;Warang Citi Digit Five -\U118E6;Warang Citi Digit Six -\U118E7;Warang Citi Digit Seven -\U118E8;Warang Citi Digit Eight -\U118E9;Warang Citi Digit Nine -\U118EA;Warang Citi Number Ten -\U118EB;Warang Citi Number Twenty -\U118EC;Warang Citi Number Thirty -\U118ED;Warang Citi Number Forty -\U118EE;Warang Citi Number Fifty -\U118EF;Warang Citi Number Sixty -\U118F0;Warang Citi Number Seventy -\U118F1;Warang Citi Number Eighty -\U118F2;Warang Citi Number Ninety -\U118FF;Warang Citi Om -\U11900;Dives Akuru Letter A -\U11901;Dives Akuru Letter Aa -\U11902;Dives Akuru Letter I -\U11903;Dives Akuru Letter Ii -\U11904;Dives Akuru Letter U -\U11905;Dives Akuru Letter Uu -\U11906;Dives Akuru Letter E -\U11909;Dives Akuru Letter O -\U1190C;Dives Akuru Letter Ka -\U1190D;Dives Akuru Letter Kha -\U1190E;Dives Akuru Letter Ga -\U1190F;Dives Akuru Letter Gha -\U11910;Dives Akuru Letter Nga -\U11911;Dives Akuru Letter Ca -\U11912;Dives Akuru Letter Cha -\U11913;Dives Akuru Letter Ja -\U11915;Dives Akuru Letter Nya -\U11916;Dives Akuru Letter Tta -\U11918;Dives Akuru Letter Dda -\U11919;Dives Akuru Letter Ddha -\U1191A;Dives Akuru Letter Nna -\U1191B;Dives Akuru Letter Ta -\U1191C;Dives Akuru Letter Tha -\U1191D;Dives Akuru Letter Da -\U1191E;Dives Akuru Letter Dha -\U1191F;Dives Akuru Letter Na -\U11920;Dives Akuru Letter Pa -\U11921;Dives Akuru Letter Pha -\U11922;Dives Akuru Letter Ba -\U11923;Dives Akuru Letter Bha -\U11924;Dives Akuru Letter Ma -\U11925;Dives Akuru Letter Ya -\U11926;Dives Akuru Letter Yya -\U11927;Dives Akuru Letter Ra -\U11928;Dives Akuru Letter La -\U11929;Dives Akuru Letter Va -\U1192A;Dives Akuru Letter Sha -\U1192B;Dives Akuru Letter Ssa -\U1192C;Dives Akuru Letter Sa -\U1192D;Dives Akuru Letter Ha -\U1192E;Dives Akuru Letter Lla -\U1192F;Dives Akuru Letter Za -\U11930;Dives Akuru Vowel Sign Aa -\U11931;Dives Akuru Vowel Sign I -\U11932;Dives Akuru Vowel Sign Ii -\U11933;Dives Akuru Vowel Sign U -\U11934;Dives Akuru Vowel Sign Uu -\U11935;Dives Akuru Vowel Sign E -\U11937;Dives Akuru Vowel Sign Ai -\U11938;Dives Akuru Vowel Sign O -\U1193B;Dives Akuru Sign Anusvara -\U1193C;Dives Akuru Sign Candrabindu -\U1193D;Dives Akuru Sign Halanta -\U1193E;Dives Akuru Virama -\U1193F;Dives Akuru Prefixed Nasal Sign -\U11940;Dives Akuru Medial Ya -\U11941;Dives Akuru Initial Ra -\U11942;Dives Akuru Medial Ra -\U11943;Dives Akuru Sign Nukta -\U11944;Dives Akuru Double Danda -\U11945;Dives Akuru Gap Filler -\U11946;Dives Akuru End Of Text Mark -\U11950;Dives Akuru Digit Zero -\U11951;Dives Akuru Digit One -\U11952;Dives Akuru Digit Two -\U11953;Dives Akuru Digit Three -\U11954;Dives Akuru Digit Four -\U11955;Dives Akuru Digit Five -\U11956;Dives Akuru Digit Six -\U11957;Dives Akuru Digit Seven -\U11958;Dives Akuru Digit Eight -\U11959;Dives Akuru Digit Nine -\U119A0;Nandinagari Letter A -\U119A1;Nandinagari Letter Aa -\U119A2;Nandinagari Letter I -\U119A3;Nandinagari Letter Ii -\U119A4;Nandinagari Letter U -\U119A5;Nandinagari Letter Uu -\U119A6;Nandinagari Letter Vocalic R -\U119A7;Nandinagari Letter Vocalic Rr -\U119AA;Nandinagari Letter E -\U119AB;Nandinagari Letter Ai -\U119AC;Nandinagari Letter O -\U119AD;Nandinagari Letter Au -\U119AE;Nandinagari Letter Ka -\U119AF;Nandinagari Letter Kha -\U119B0;Nandinagari Letter Ga -\U119B1;Nandinagari Letter Gha -\U119B2;Nandinagari Letter Nga -\U119B3;Nandinagari Letter Ca -\U119B4;Nandinagari Letter Cha -\U119B5;Nandinagari Letter Ja -\U119B6;Nandinagari Letter Jha -\U119B7;Nandinagari Letter Nya -\U119B8;Nandinagari Letter Tta -\U119B9;Nandinagari Letter Ttha -\U119BA;Nandinagari Letter Dda -\U119BB;Nandinagari Letter Ddha -\U119BC;Nandinagari Letter Nna -\U119BD;Nandinagari Letter Ta -\U119BE;Nandinagari Letter Tha -\U119BF;Nandinagari Letter Da -\U119C0;Nandinagari Letter Dha -\U119C1;Nandinagari Letter Na -\U119C2;Nandinagari Letter Pa -\U119C3;Nandinagari Letter Pha -\U119C4;Nandinagari Letter Ba -\U119C5;Nandinagari Letter Bha -\U119C6;Nandinagari Letter Ma -\U119C7;Nandinagari Letter Ya -\U119C8;Nandinagari Letter Ra -\U119C9;Nandinagari Letter La -\U119CA;Nandinagari Letter Va -\U119CB;Nandinagari Letter Sha -\U119CC;Nandinagari Letter Ssa -\U119CD;Nandinagari Letter Sa -\U119CE;Nandinagari Letter Ha -\U119CF;Nandinagari Letter Lla -\U119D0;Nandinagari Letter Rra -\U119D1;Nandinagari Vowel Sign Aa -\U119D2;Nandinagari Vowel Sign I -\U119D3;Nandinagari Vowel Sign Ii -\U119D4;Nandinagari Vowel Sign U -\U119D5;Nandinagari Vowel Sign Uu -\U119D6;Nandinagari Vowel Sign Vocalic R -\U119D7;Nandinagari Vowel Sign Vocalic Rr -\U119DA;Nandinagari Vowel Sign E -\U119DB;Nandinagari Vowel Sign Ai -\U119DC;Nandinagari Vowel Sign O -\U119DD;Nandinagari Vowel Sign Au -\U119DE;Nandinagari Sign Anusvara -\U119DF;Nandinagari Sign Visarga -\U119E0;Nandinagari Sign Virama -\U119E1;Nandinagari Sign Avagraha -\U119E2;Nandinagari Sign Siddham -\U119E3;Nandinagari Headstroke -\U119E4;Nandinagari Vowel Sign Prishthamatra E -\U11A00;Zanabazar Square Letter A -\U11A01;Zanabazar Square Vowel Sign I -\U11A02;Zanabazar Square Vowel Sign Ue -\U11A03;Zanabazar Square Vowel Sign U -\U11A04;Zanabazar Square Vowel Sign E -\U11A05;Zanabazar Square Vowel Sign Oe -\U11A06;Zanabazar Square Vowel Sign O -\U11A07;Zanabazar Square Vowel Sign Ai -\U11A08;Zanabazar Square Vowel Sign Au -\U11A09;Zanabazar Square Vowel Sign Reversed I -\U11A0A;Zanabazar Square Vowel Length Mark -\U11A0B;Zanabazar Square Letter Ka -\U11A0C;Zanabazar Square Letter Kha -\U11A0D;Zanabazar Square Letter Ga -\U11A0E;Zanabazar Square Letter Gha -\U11A0F;Zanabazar Square Letter Nga -\U11A10;Zanabazar Square Letter Ca -\U11A11;Zanabazar Square Letter Cha -\U11A12;Zanabazar Square Letter Ja -\U11A13;Zanabazar Square Letter Nya -\U11A14;Zanabazar Square Letter Tta -\U11A15;Zanabazar Square Letter Ttha -\U11A16;Zanabazar Square Letter Dda -\U11A17;Zanabazar Square Letter Ddha -\U11A18;Zanabazar Square Letter Nna -\U11A19;Zanabazar Square Letter Ta -\U11A1A;Zanabazar Square Letter Tha -\U11A1B;Zanabazar Square Letter Da -\U11A1C;Zanabazar Square Letter Dha -\U11A1D;Zanabazar Square Letter Na -\U11A1E;Zanabazar Square Letter Pa -\U11A1F;Zanabazar Square Letter Pha -\U11A20;Zanabazar Square Letter Ba -\U11A21;Zanabazar Square Letter Bha -\U11A22;Zanabazar Square Letter Ma -\U11A23;Zanabazar Square Letter Tsa -\U11A24;Zanabazar Square Letter Tsha -\U11A25;Zanabazar Square Letter Dza -\U11A26;Zanabazar Square Letter Dzha -\U11A27;Zanabazar Square Letter Zha -\U11A28;Zanabazar Square Letter Za -\U11A29;Zanabazar Square Letter -A -\U11A2A;Zanabazar Square Letter Ya -\U11A2B;Zanabazar Square Letter Ra -\U11A2C;Zanabazar Square Letter La -\U11A2D;Zanabazar Square Letter Va -\U11A2E;Zanabazar Square Letter Sha -\U11A2F;Zanabazar Square Letter Ssa -\U11A30;Zanabazar Square Letter Sa -\U11A31;Zanabazar Square Letter Ha -\U11A32;Zanabazar Square Letter Kssa -\U11A33;Zanabazar Square Final Consonant Mark -\U11A34;Zanabazar Square Sign Virama -\U11A35;Zanabazar Square Sign Candrabindu -\U11A36;Zanabazar Square Sign Candrabindu With Ornament -\U11A37;Zanabazar Square Sign Candra With Ornament -\U11A38;Zanabazar Square Sign Anusvara -\U11A39;Zanabazar Square Sign Visarga -\U11A3A;Zanabazar Square Cluster-Initial Letter Ra -\U11A3B;Zanabazar Square Cluster-Final Letter Ya -\U11A3C;Zanabazar Square Cluster-Final Letter Ra -\U11A3D;Zanabazar Square Cluster-Final Letter La -\U11A3E;Zanabazar Square Cluster-Final Letter Va -\U11A3F;Zanabazar Square Initial Head Mark -\U11A40;Zanabazar Square Closing Head Mark -\U11A41;Zanabazar Square Mark Tsheg -\U11A42;Zanabazar Square Mark Shad -\U11A43;Zanabazar Square Mark Double Shad -\U11A44;Zanabazar Square Mark Long Tsheg -\U11A45;Zanabazar Square Initial Double-Lined Head Mark -\U11A46;Zanabazar Square Closing Double-Lined Head Mark -\U11A47;Zanabazar Square Subjoiner -\U11A50;Soyombo Letter A -\U11A51;Soyombo Vowel Sign I -\U11A52;Soyombo Vowel Sign Ue -\U11A53;Soyombo Vowel Sign U -\U11A54;Soyombo Vowel Sign E -\U11A55;Soyombo Vowel Sign O -\U11A56;Soyombo Vowel Sign Oe -\U11A57;Soyombo Vowel Sign Ai -\U11A58;Soyombo Vowel Sign Au -\U11A59;Soyombo Vowel Sign Vocalic R -\U11A5A;Soyombo Vowel Sign Vocalic L -\U11A5B;Soyombo Vowel Length Mark -\U11A5C;Soyombo Letter Ka -\U11A5D;Soyombo Letter Kha -\U11A5E;Soyombo Letter Ga -\U11A5F;Soyombo Letter Gha -\U11A60;Soyombo Letter Nga -\U11A61;Soyombo Letter Ca -\U11A62;Soyombo Letter Cha -\U11A63;Soyombo Letter Ja -\U11A64;Soyombo Letter Jha -\U11A65;Soyombo Letter Nya -\U11A66;Soyombo Letter Tta -\U11A67;Soyombo Letter Ttha -\U11A68;Soyombo Letter Dda -\U11A69;Soyombo Letter Ddha -\U11A6A;Soyombo Letter Nna -\U11A6B;Soyombo Letter Ta -\U11A6C;Soyombo Letter Tha -\U11A6D;Soyombo Letter Da -\U11A6E;Soyombo Letter Dha -\U11A6F;Soyombo Letter Na -\U11A70;Soyombo Letter Pa -\U11A71;Soyombo Letter Pha -\U11A72;Soyombo Letter Ba -\U11A73;Soyombo Letter Bha -\U11A74;Soyombo Letter Ma -\U11A75;Soyombo Letter Tsa -\U11A76;Soyombo Letter Tsha -\U11A77;Soyombo Letter Dza -\U11A78;Soyombo Letter Zha -\U11A79;Soyombo Letter Za -\U11A7A;Soyombo Letter -A -\U11A7B;Soyombo Letter Ya -\U11A7C;Soyombo Letter Ra -\U11A7D;Soyombo Letter La -\U11A7E;Soyombo Letter Va -\U11A7F;Soyombo Letter Sha -\U11A80;Soyombo Letter Ssa -\U11A81;Soyombo Letter Sa -\U11A82;Soyombo Letter Ha -\U11A83;Soyombo Letter Kssa -\U11A84;Soyombo Sign Jihvamuliya -\U11A85;Soyombo Sign Upadhmaniya -\U11A86;Soyombo Cluster-Initial Letter Ra -\U11A87;Soyombo Cluster-Initial Letter La -\U11A88;Soyombo Cluster-Initial Letter Sha -\U11A89;Soyombo Cluster-Initial Letter Sa -\U11A8A;Soyombo Final Consonant Sign G -\U11A8B;Soyombo Final Consonant Sign K -\U11A8C;Soyombo Final Consonant Sign Ng -\U11A8D;Soyombo Final Consonant Sign D -\U11A8E;Soyombo Final Consonant Sign N -\U11A8F;Soyombo Final Consonant Sign B -\U11A90;Soyombo Final Consonant Sign M -\U11A91;Soyombo Final Consonant Sign R -\U11A92;Soyombo Final Consonant Sign L -\U11A93;Soyombo Final Consonant Sign Sh -\U11A94;Soyombo Final Consonant Sign S -\U11A95;Soyombo Final Consonant Sign -A -\U11A96;Soyombo Sign Anusvara -\U11A97;Soyombo Sign Visarga -\U11A98;Soyombo Gemination Mark -\U11A99;Soyombo Subjoiner -\U11A9A;Soyombo Mark Tsheg -\U11A9B;Soyombo Mark Shad -\U11A9C;Soyombo Mark Double Shad -\U11A9D;Soyombo Mark Pluta -\U11A9E;Soyombo Head Mark With Moon And Sun And Triple Flame -\U11A9F;Soyombo Head Mark With Moon And Sun And Flame -\U11AA0;Soyombo Head Mark With Moon And Sun -\U11AA1;Soyombo Terminal Mark-1 -\U11AA2;Soyombo Terminal Mark-2 -\U11AB0;Canadian Syllabics Nattilik Hi -\U11AB1;Canadian Syllabics Nattilik Hii -\U11AB2;Canadian Syllabics Nattilik Ho -\U11AB3;Canadian Syllabics Nattilik Hoo -\U11AB4;Canadian Syllabics Nattilik Ha -\U11AB5;Canadian Syllabics Nattilik Haa -\U11AB6;Canadian Syllabics Nattilik Shri -\U11AB7;Canadian Syllabics Nattilik Shrii -\U11AB8;Canadian Syllabics Nattilik Shro -\U11AB9;Canadian Syllabics Nattilik Shroo -\U11ABA;Canadian Syllabics Nattilik Shra -\U11ABB;Canadian Syllabics Nattilik Shraa -\U11ABC;Canadian Syllabics Spe -\U11ABD;Canadian Syllabics Spi -\U11ABE;Canadian Syllabics Spo -\U11ABF;Canadian Syllabics Spa -\U11AC0;Pau Cin Hau Letter Pa -\U11AC1;Pau Cin Hau Letter Ka -\U11AC2;Pau Cin Hau Letter La -\U11AC3;Pau Cin Hau Letter Ma -\U11AC4;Pau Cin Hau Letter Da -\U11AC5;Pau Cin Hau Letter Za -\U11AC6;Pau Cin Hau Letter Va -\U11AC7;Pau Cin Hau Letter Nga -\U11AC8;Pau Cin Hau Letter Ha -\U11AC9;Pau Cin Hau Letter Ga -\U11ACA;Pau Cin Hau Letter Kha -\U11ACB;Pau Cin Hau Letter Sa -\U11ACC;Pau Cin Hau Letter Ba -\U11ACD;Pau Cin Hau Letter Ca -\U11ACE;Pau Cin Hau Letter Ta -\U11ACF;Pau Cin Hau Letter Tha -\U11AD0;Pau Cin Hau Letter Na -\U11AD1;Pau Cin Hau Letter Pha -\U11AD2;Pau Cin Hau Letter Ra -\U11AD3;Pau Cin Hau Letter Fa -\U11AD4;Pau Cin Hau Letter Cha -\U11AD5;Pau Cin Hau Letter A -\U11AD6;Pau Cin Hau Letter E -\U11AD7;Pau Cin Hau Letter I -\U11AD8;Pau Cin Hau Letter O -\U11AD9;Pau Cin Hau Letter U -\U11ADA;Pau Cin Hau Letter Ua -\U11ADB;Pau Cin Hau Letter Ia -\U11ADC;Pau Cin Hau Letter Final P -\U11ADD;Pau Cin Hau Letter Final K -\U11ADE;Pau Cin Hau Letter Final T -\U11ADF;Pau Cin Hau Letter Final M -\U11AE0;Pau Cin Hau Letter Final N -\U11AE1;Pau Cin Hau Letter Final L -\U11AE2;Pau Cin Hau Letter Final W -\U11AE3;Pau Cin Hau Letter Final Ng -\U11AE4;Pau Cin Hau Letter Final Y -\U11AE5;Pau Cin Hau Rising Tone Long -\U11AE6;Pau Cin Hau Rising Tone -\U11AE7;Pau Cin Hau Sandhi Glottal Stop -\U11AE8;Pau Cin Hau Rising Tone Long Final -\U11AE9;Pau Cin Hau Rising Tone Final -\U11AEA;Pau Cin Hau Sandhi Glottal Stop Final -\U11AEB;Pau Cin Hau Sandhi Tone Long -\U11AEC;Pau Cin Hau Sandhi Tone -\U11AED;Pau Cin Hau Sandhi Tone Long Final -\U11AEE;Pau Cin Hau Sandhi Tone Final -\U11AEF;Pau Cin Hau Mid-Level Tone -\U11AF0;Pau Cin Hau Glottal Stop Variant -\U11AF1;Pau Cin Hau Mid-Level Tone Long Final -\U11AF2;Pau Cin Hau Mid-Level Tone Final -\U11AF3;Pau Cin Hau Low-Falling Tone Long -\U11AF4;Pau Cin Hau Low-Falling Tone -\U11AF5;Pau Cin Hau Glottal Stop -\U11AF6;Pau Cin Hau Low-Falling Tone Long Final -\U11AF7;Pau Cin Hau Low-Falling Tone Final -\U11AF8;Pau Cin Hau Glottal Stop Final -\U11B00;Devanagari Head Mark -\U11B01;Devanagari Head Mark With Headstroke -\U11B02;Devanagari Sign Bhale -\U11B03;Devanagari Sign Bhale With Hook -\U11B04;Devanagari Sign Extended Bhale -\U11B05;Devanagari Sign Extended Bhale With Hook -\U11B06;Devanagari Sign Western Five-Like Bhale -\U11B07;Devanagari Sign Western Nine-Like Bhale -\U11B08;Devanagari Sign Reversed Nine-Like Bhale -\U11B09;Devanagari Sign Mindu -\U11C00;Bhaiksuki Letter A -\U11C01;Bhaiksuki Letter Aa -\U11C02;Bhaiksuki Letter I -\U11C03;Bhaiksuki Letter Ii -\U11C04;Bhaiksuki Letter U -\U11C05;Bhaiksuki Letter Uu -\U11C06;Bhaiksuki Letter Vocalic R -\U11C07;Bhaiksuki Letter Vocalic Rr -\U11C08;Bhaiksuki Letter Vocalic L -\U11C0A;Bhaiksuki Letter E -\U11C0B;Bhaiksuki Letter Ai -\U11C0C;Bhaiksuki Letter O -\U11C0D;Bhaiksuki Letter Au -\U11C0E;Bhaiksuki Letter Ka -\U11C0F;Bhaiksuki Letter Kha -\U11C10;Bhaiksuki Letter Ga -\U11C11;Bhaiksuki Letter Gha -\U11C12;Bhaiksuki Letter Nga -\U11C13;Bhaiksuki Letter Ca -\U11C14;Bhaiksuki Letter Cha -\U11C15;Bhaiksuki Letter Ja -\U11C16;Bhaiksuki Letter Jha -\U11C17;Bhaiksuki Letter Nya -\U11C18;Bhaiksuki Letter Tta -\U11C19;Bhaiksuki Letter Ttha -\U11C1A;Bhaiksuki Letter Dda -\U11C1B;Bhaiksuki Letter Ddha -\U11C1C;Bhaiksuki Letter Nna -\U11C1D;Bhaiksuki Letter Ta -\U11C1E;Bhaiksuki Letter Tha -\U11C1F;Bhaiksuki Letter Da -\U11C20;Bhaiksuki Letter Dha -\U11C21;Bhaiksuki Letter Na -\U11C22;Bhaiksuki Letter Pa -\U11C23;Bhaiksuki Letter Pha -\U11C24;Bhaiksuki Letter Ba -\U11C25;Bhaiksuki Letter Bha -\U11C26;Bhaiksuki Letter Ma -\U11C27;Bhaiksuki Letter Ya -\U11C28;Bhaiksuki Letter Ra -\U11C29;Bhaiksuki Letter La -\U11C2A;Bhaiksuki Letter Va -\U11C2B;Bhaiksuki Letter Sha -\U11C2C;Bhaiksuki Letter Ssa -\U11C2D;Bhaiksuki Letter Sa -\U11C2E;Bhaiksuki Letter Ha -\U11C2F;Bhaiksuki Vowel Sign Aa -\U11C30;Bhaiksuki Vowel Sign I -\U11C31;Bhaiksuki Vowel Sign Ii -\U11C32;Bhaiksuki Vowel Sign U -\U11C33;Bhaiksuki Vowel Sign Uu -\U11C34;Bhaiksuki Vowel Sign Vocalic R -\U11C35;Bhaiksuki Vowel Sign Vocalic Rr -\U11C36;Bhaiksuki Vowel Sign Vocalic L -\U11C38;Bhaiksuki Vowel Sign E -\U11C39;Bhaiksuki Vowel Sign Ai -\U11C3A;Bhaiksuki Vowel Sign O -\U11C3B;Bhaiksuki Vowel Sign Au -\U11C3C;Bhaiksuki Sign Candrabindu -\U11C3D;Bhaiksuki Sign Anusvara -\U11C3E;Bhaiksuki Sign Visarga -\U11C3F;Bhaiksuki Sign Virama -\U11C40;Bhaiksuki Sign Avagraha -\U11C41;Bhaiksuki Danda -\U11C42;Bhaiksuki Double Danda -\U11C43;Bhaiksuki Word Separator -\U11C44;Bhaiksuki Gap Filler-1 -\U11C45;Bhaiksuki Gap Filler-2 -\U11C50;Bhaiksuki Digit Zero -\U11C51;Bhaiksuki Digit One -\U11C52;Bhaiksuki Digit Two -\U11C53;Bhaiksuki Digit Three -\U11C54;Bhaiksuki Digit Four -\U11C55;Bhaiksuki Digit Five -\U11C56;Bhaiksuki Digit Six -\U11C57;Bhaiksuki Digit Seven -\U11C58;Bhaiksuki Digit Eight -\U11C59;Bhaiksuki Digit Nine -\U11C5A;Bhaiksuki Number One -\U11C5B;Bhaiksuki Number Two -\U11C5C;Bhaiksuki Number Three -\U11C5D;Bhaiksuki Number Four -\U11C5E;Bhaiksuki Number Five -\U11C5F;Bhaiksuki Number Six -\U11C60;Bhaiksuki Number Seven -\U11C61;Bhaiksuki Number Eight -\U11C62;Bhaiksuki Number Nine -\U11C63;Bhaiksuki Number Ten -\U11C64;Bhaiksuki Number Twenty -\U11C65;Bhaiksuki Number Thirty -\U11C66;Bhaiksuki Number Forty -\U11C67;Bhaiksuki Number Fifty -\U11C68;Bhaiksuki Number Sixty -\U11C69;Bhaiksuki Number Seventy -\U11C6A;Bhaiksuki Number Eighty -\U11C6B;Bhaiksuki Number Ninety -\U11C6C;Bhaiksuki Hundreds Unit Mark -\U11C70;Marchen Head Mark -\U11C71;Marchen Mark Shad -\U11C72;Marchen Letter Ka -\U11C73;Marchen Letter Kha -\U11C74;Marchen Letter Ga -\U11C75;Marchen Letter Nga -\U11C76;Marchen Letter Ca -\U11C77;Marchen Letter Cha -\U11C78;Marchen Letter Ja -\U11C79;Marchen Letter Nya -\U11C7A;Marchen Letter Ta -\U11C7B;Marchen Letter Tha -\U11C7C;Marchen Letter Da -\U11C7D;Marchen Letter Na -\U11C7E;Marchen Letter Pa -\U11C7F;Marchen Letter Pha -\U11C80;Marchen Letter Ba -\U11C81;Marchen Letter Ma -\U11C82;Marchen Letter Tsa -\U11C83;Marchen Letter Tsha -\U11C84;Marchen Letter Dza -\U11C85;Marchen Letter Wa -\U11C86;Marchen Letter Zha -\U11C87;Marchen Letter Za -\U11C88;Marchen Letter -A -\U11C89;Marchen Letter Ya -\U11C8A;Marchen Letter Ra -\U11C8B;Marchen Letter La -\U11C8C;Marchen Letter Sha -\U11C8D;Marchen Letter Sa -\U11C8E;Marchen Letter Ha -\U11C8F;Marchen Letter A -\U11C92;Marchen Subjoined Letter Ka -\U11C93;Marchen Subjoined Letter Kha -\U11C94;Marchen Subjoined Letter Ga -\U11C95;Marchen Subjoined Letter Nga -\U11C96;Marchen Subjoined Letter Ca -\U11C97;Marchen Subjoined Letter Cha -\U11C98;Marchen Subjoined Letter Ja -\U11C99;Marchen Subjoined Letter Nya -\U11C9A;Marchen Subjoined Letter Ta -\U11C9B;Marchen Subjoined Letter Tha -\U11C9C;Marchen Subjoined Letter Da -\U11C9D;Marchen Subjoined Letter Na -\U11C9E;Marchen Subjoined Letter Pa -\U11C9F;Marchen Subjoined Letter Pha -\U11CA0;Marchen Subjoined Letter Ba -\U11CA1;Marchen Subjoined Letter Ma -\U11CA2;Marchen Subjoined Letter Tsa -\U11CA3;Marchen Subjoined Letter Tsha -\U11CA4;Marchen Subjoined Letter Dza -\U11CA5;Marchen Subjoined Letter Wa -\U11CA6;Marchen Subjoined Letter Zha -\U11CA7;Marchen Subjoined Letter Za -\U11CA9;Marchen Subjoined Letter Ya -\U11CAA;Marchen Subjoined Letter Ra -\U11CAB;Marchen Subjoined Letter La -\U11CAC;Marchen Subjoined Letter Sha -\U11CAD;Marchen Subjoined Letter Sa -\U11CAE;Marchen Subjoined Letter Ha -\U11CAF;Marchen Subjoined Letter A -\U11CB0;Marchen Vowel Sign Aa -\U11CB1;Marchen Vowel Sign I -\U11CB2;Marchen Vowel Sign U -\U11CB3;Marchen Vowel Sign E -\U11CB4;Marchen Vowel Sign O -\U11CB5;Marchen Sign Anusvara -\U11CB6;Marchen Sign Candrabindu -\U11D00;Masaram Gondi Letter A -\U11D01;Masaram Gondi Letter Aa -\U11D02;Masaram Gondi Letter I -\U11D03;Masaram Gondi Letter Ii -\U11D04;Masaram Gondi Letter U -\U11D05;Masaram Gondi Letter Uu -\U11D06;Masaram Gondi Letter E -\U11D08;Masaram Gondi Letter Ai -\U11D09;Masaram Gondi Letter O -\U11D0B;Masaram Gondi Letter Au -\U11D0C;Masaram Gondi Letter Ka -\U11D0D;Masaram Gondi Letter Kha -\U11D0E;Masaram Gondi Letter Ga -\U11D0F;Masaram Gondi Letter Gha -\U11D10;Masaram Gondi Letter Nga -\U11D11;Masaram Gondi Letter Ca -\U11D12;Masaram Gondi Letter Cha -\U11D13;Masaram Gondi Letter Ja -\U11D14;Masaram Gondi Letter Jha -\U11D15;Masaram Gondi Letter Nya -\U11D16;Masaram Gondi Letter Tta -\U11D17;Masaram Gondi Letter Ttha -\U11D18;Masaram Gondi Letter Dda -\U11D19;Masaram Gondi Letter Ddha -\U11D1A;Masaram Gondi Letter Nna -\U11D1B;Masaram Gondi Letter Ta -\U11D1C;Masaram Gondi Letter Tha -\U11D1D;Masaram Gondi Letter Da -\U11D1E;Masaram Gondi Letter Dha -\U11D1F;Masaram Gondi Letter Na -\U11D20;Masaram Gondi Letter Pa -\U11D21;Masaram Gondi Letter Pha -\U11D22;Masaram Gondi Letter Ba -\U11D23;Masaram Gondi Letter Bha -\U11D24;Masaram Gondi Letter Ma -\U11D25;Masaram Gondi Letter Ya -\U11D26;Masaram Gondi Letter Ra -\U11D27;Masaram Gondi Letter La -\U11D28;Masaram Gondi Letter Va -\U11D29;Masaram Gondi Letter Sha -\U11D2A;Masaram Gondi Letter Ssa -\U11D2B;Masaram Gondi Letter Sa -\U11D2C;Masaram Gondi Letter Ha -\U11D2D;Masaram Gondi Letter Lla -\U11D2E;Masaram Gondi Letter Kssa -\U11D2F;Masaram Gondi Letter Jnya -\U11D30;Masaram Gondi Letter Tra -\U11D31;Masaram Gondi Vowel Sign Aa -\U11D32;Masaram Gondi Vowel Sign I -\U11D33;Masaram Gondi Vowel Sign Ii -\U11D34;Masaram Gondi Vowel Sign U -\U11D35;Masaram Gondi Vowel Sign Uu -\U11D36;Masaram Gondi Vowel Sign Vocalic R -\U11D3A;Masaram Gondi Vowel Sign E -\U11D3C;Masaram Gondi Vowel Sign Ai -\U11D3D;Masaram Gondi Vowel Sign O -\U11D3F;Masaram Gondi Vowel Sign Au -\U11D40;Masaram Gondi Sign Anusvara -\U11D41;Masaram Gondi Sign Visarga -\U11D42;Masaram Gondi Sign Nukta -\U11D43;Masaram Gondi Sign Candra -\U11D44;Masaram Gondi Sign Halanta -\U11D45;Masaram Gondi Virama -\U11D46;Masaram Gondi Repha -\U11D47;Masaram Gondi Ra-Kara -\U11D50;Masaram Gondi Digit Zero -\U11D51;Masaram Gondi Digit One -\U11D52;Masaram Gondi Digit Two -\U11D53;Masaram Gondi Digit Three -\U11D54;Masaram Gondi Digit Four -\U11D55;Masaram Gondi Digit Five -\U11D56;Masaram Gondi Digit Six -\U11D57;Masaram Gondi Digit Seven -\U11D58;Masaram Gondi Digit Eight -\U11D59;Masaram Gondi Digit Nine -\U11D60;Gunjala Gondi Letter A -\U11D61;Gunjala Gondi Letter Aa -\U11D62;Gunjala Gondi Letter I -\U11D63;Gunjala Gondi Letter Ii -\U11D64;Gunjala Gondi Letter U -\U11D65;Gunjala Gondi Letter Uu -\U11D67;Gunjala Gondi Letter Ee -\U11D68;Gunjala Gondi Letter Ai -\U11D6A;Gunjala Gondi Letter Oo -\U11D6B;Gunjala Gondi Letter Au -\U11D6C;Gunjala Gondi Letter Ya -\U11D6D;Gunjala Gondi Letter Va -\U11D6E;Gunjala Gondi Letter Ba -\U11D6F;Gunjala Gondi Letter Bha -\U11D70;Gunjala Gondi Letter Ma -\U11D71;Gunjala Gondi Letter Ka -\U11D72;Gunjala Gondi Letter Kha -\U11D73;Gunjala Gondi Letter Ta -\U11D74;Gunjala Gondi Letter Tha -\U11D75;Gunjala Gondi Letter La -\U11D76;Gunjala Gondi Letter Ga -\U11D77;Gunjala Gondi Letter Gha -\U11D78;Gunjala Gondi Letter Da -\U11D79;Gunjala Gondi Letter Dha -\U11D7A;Gunjala Gondi Letter Na -\U11D7B;Gunjala Gondi Letter Ca -\U11D7C;Gunjala Gondi Letter Cha -\U11D7D;Gunjala Gondi Letter Tta -\U11D7E;Gunjala Gondi Letter Ttha -\U11D7F;Gunjala Gondi Letter Lla -\U11D80;Gunjala Gondi Letter Ja -\U11D81;Gunjala Gondi Letter Jha -\U11D82;Gunjala Gondi Letter Dda -\U11D83;Gunjala Gondi Letter Ddha -\U11D84;Gunjala Gondi Letter Nga -\U11D85;Gunjala Gondi Letter Pa -\U11D86;Gunjala Gondi Letter Pha -\U11D87;Gunjala Gondi Letter Ha -\U11D88;Gunjala Gondi Letter Ra -\U11D89;Gunjala Gondi Letter Sa -\U11D8A;Gunjala Gondi Vowel Sign Aa -\U11D8B;Gunjala Gondi Vowel Sign I -\U11D8C;Gunjala Gondi Vowel Sign Ii -\U11D8D;Gunjala Gondi Vowel Sign U -\U11D8E;Gunjala Gondi Vowel Sign Uu -\U11D90;Gunjala Gondi Vowel Sign Ee -\U11D91;Gunjala Gondi Vowel Sign Ai -\U11D93;Gunjala Gondi Vowel Sign Oo -\U11D94;Gunjala Gondi Vowel Sign Au -\U11D95;Gunjala Gondi Sign Anusvara -\U11D96;Gunjala Gondi Sign Visarga -\U11D97;Gunjala Gondi Virama -\U11D98;Gunjala Gondi Om -\U11DA0;Gunjala Gondi Digit Zero -\U11DA1;Gunjala Gondi Digit One -\U11DA2;Gunjala Gondi Digit Two -\U11DA3;Gunjala Gondi Digit Three -\U11DA4;Gunjala Gondi Digit Four -\U11DA5;Gunjala Gondi Digit Five -\U11DA6;Gunjala Gondi Digit Six -\U11DA7;Gunjala Gondi Digit Seven -\U11DA8;Gunjala Gondi Digit Eight -\U11DA9;Gunjala Gondi Digit Nine -\U11EE0;Makasar Letter Ka -\U11EE1;Makasar Letter Ga -\U11EE2;Makasar Letter Nga -\U11EE3;Makasar Letter Pa -\U11EE4;Makasar Letter Ba -\U11EE5;Makasar Letter Ma -\U11EE6;Makasar Letter Ta -\U11EE7;Makasar Letter Da -\U11EE8;Makasar Letter Na -\U11EE9;Makasar Letter Ca -\U11EEA;Makasar Letter Ja -\U11EEB;Makasar Letter Nya -\U11EEC;Makasar Letter Ya -\U11EED;Makasar Letter Ra -\U11EEE;Makasar Letter La -\U11EEF;Makasar Letter Va -\U11EF0;Makasar Letter Sa -\U11EF1;Makasar Letter A -\U11EF2;Makasar Angka -\U11EF3;Makasar Vowel Sign I -\U11EF4;Makasar Vowel Sign U -\U11EF5;Makasar Vowel Sign E -\U11EF6;Makasar Vowel Sign O -\U11EF7;Makasar Passimbang -\U11EF8;Makasar End Of Section -\U11F00;Kawi Sign Candrabindu -\U11F01;Kawi Sign Anusvara -\U11F02;Kawi Sign Repha -\U11F03;Kawi Sign Visarga -\U11F04;Kawi Letter A -\U11F05;Kawi Letter Aa -\U11F06;Kawi Letter I -\U11F07;Kawi Letter Ii -\U11F08;Kawi Letter U -\U11F09;Kawi Letter Uu -\U11F0A;Kawi Letter Vocalic R -\U11F0B;Kawi Letter Vocalic Rr -\U11F0C;Kawi Letter Vocalic L -\U11F0D;Kawi Letter Vocalic Ll -\U11F0E;Kawi Letter E -\U11F0F;Kawi Letter Ai -\U11F10;Kawi Letter O -\U11F12;Kawi Letter Ka -\U11F13;Kawi Letter Kha -\U11F14;Kawi Letter Ga -\U11F15;Kawi Letter Gha -\U11F16;Kawi Letter Nga -\U11F17;Kawi Letter Ca -\U11F18;Kawi Letter Cha -\U11F19;Kawi Letter Ja -\U11F1A;Kawi Letter Jha -\U11F1B;Kawi Letter Nya -\U11F1C;Kawi Letter Tta -\U11F1D;Kawi Letter Ttha -\U11F1E;Kawi Letter Dda -\U11F1F;Kawi Letter Ddha -\U11F20;Kawi Letter Nna -\U11F21;Kawi Letter Ta -\U11F22;Kawi Letter Tha -\U11F23;Kawi Letter Da -\U11F24;Kawi Letter Dha -\U11F25;Kawi Letter Na -\U11F26;Kawi Letter Pa -\U11F27;Kawi Letter Pha -\U11F28;Kawi Letter Ba -\U11F29;Kawi Letter Bha -\U11F2A;Kawi Letter Ma -\U11F2B;Kawi Letter Ya -\U11F2C;Kawi Letter Ra -\U11F2D;Kawi Letter La -\U11F2E;Kawi Letter Wa -\U11F2F;Kawi Letter Sha -\U11F30;Kawi Letter Ssa -\U11F31;Kawi Letter Sa -\U11F32;Kawi Letter Ha -\U11F33;Kawi Letter Jnya -\U11F34;Kawi Vowel Sign Aa -\U11F35;Kawi Vowel Sign Alternate Aa -\U11F36;Kawi Vowel Sign I -\U11F37;Kawi Vowel Sign Ii -\U11F38;Kawi Vowel Sign U -\U11F39;Kawi Vowel Sign Uu -\U11F3A;Kawi Vowel Sign Vocalic R -\U11F3E;Kawi Vowel Sign E -\U11F3F;Kawi Vowel Sign Ai -\U11F40;Kawi Vowel Sign Eu -\U11F41;Kawi Sign Killer -\U11F42;Kawi Conjoiner -\U11F43;Kawi Danda -\U11F44;Kawi Double Danda -\U11F45;Kawi Punctuation Section Marker -\U11F46;Kawi Punctuation Alternate Section Marker -\U11F47;Kawi Punctuation Flower -\U11F48;Kawi Punctuation Space Filler -\U11F49;Kawi Punctuation Dot -\U11F4A;Kawi Punctuation Double Dot -\U11F4B;Kawi Punctuation Triple Dot -\U11F4C;Kawi Punctuation Circle -\U11F4D;Kawi Punctuation Filled Circle -\U11F4E;Kawi Punctuation Spiral -\U11F4F;Kawi Punctuation Closing Spiral -\U11F50;Kawi Digit Zero -\U11F51;Kawi Digit One -\U11F52;Kawi Digit Two -\U11F53;Kawi Digit Three -\U11F54;Kawi Digit Four -\U11F55;Kawi Digit Five -\U11F56;Kawi Digit Six -\U11F57;Kawi Digit Seven -\U11F58;Kawi Digit Eight -\U11F59;Kawi Digit Nine -\U11FB0;Lisu Letter Yha -\U11FC0;Tamil Fraction One Three-Hundred-And-Twentieth -\U11FC1;Tamil Fraction One One-Hundred-And-Sixtieth -\U11FC2;Tamil Fraction One Eightieth -\U11FC3;Tamil Fraction One Sixty-Fourth -\U11FC4;Tamil Fraction One Fortieth -\U11FC5;Tamil Fraction One Thirty-Second -\U11FC6;Tamil Fraction Three Eightieths -\U11FC7;Tamil Fraction Three Sixty-Fourths -\U11FC8;Tamil Fraction One Twentieth -\U11FC9;Tamil Fraction One Sixteenth-1 -\U11FCA;Tamil Fraction One Sixteenth-2 -\U11FCB;Tamil Fraction One Tenth -\U11FCC;Tamil Fraction One Eighth -\U11FCD;Tamil Fraction Three Twentieths -\U11FCE;Tamil Fraction Three Sixteenths -\U11FCF;Tamil Fraction One Fifth -\U11FD0;Tamil Fraction One Quarter -\U11FD1;Tamil Fraction One Half-1 -\U11FD2;Tamil Fraction One Half-2 -\U11FD3;Tamil Fraction Three Quarters -\U11FD4;Tamil Fraction Downscaling Factor Kiizh -\U11FD5;Tamil Sign Nel -\U11FD6;Tamil Sign Cevitu -\U11FD7;Tamil Sign Aazhaakku -\U11FD8;Tamil Sign Uzhakku -\U11FD9;Tamil Sign Muuvuzhakku -\U11FDA;Tamil Sign Kuruni -\U11FDB;Tamil Sign Pathakku -\U11FDC;Tamil Sign Mukkuruni -\U11FDD;Tamil Sign Kaacu -\U11FDE;Tamil Sign Panam -\U11FDF;Tamil Sign Pon -\U11FE0;Tamil Sign Varaakan -\U11FE1;Tamil Sign Paaram -\U11FE2;Tamil Sign Kuzhi -\U11FE3;Tamil Sign Veli -\U11FE4;Tamil Wet Cultivation Sign -\U11FE5;Tamil Dry Cultivation Sign -\U11FE6;Tamil Land Sign -\U11FE7;Tamil Salt Pan Sign -\U11FE8;Tamil Traditional Credit Sign -\U11FE9;Tamil Traditional Number Sign -\U11FEA;Tamil Current Sign -\U11FEB;Tamil And Odd Sign -\U11FEC;Tamil Spent Sign -\U11FED;Tamil Total Sign -\U11FEE;Tamil In Possession Sign -\U11FEF;Tamil Starting From Sign -\U11FF0;Tamil Sign Muthaliya -\U11FF1;Tamil Sign Vakaiyaraa -\U11FFF;Tamil Punctuation End Of Text -\U12000;Cuneiform Sign A -\U12001;Cuneiform Sign A Times A -\U12002;Cuneiform Sign A Times Bad -\U12003;Cuneiform Sign A Times Gan2 Tenu -\U12004;Cuneiform Sign A Times Ha -\U12005;Cuneiform Sign A Times Igi -\U12006;Cuneiform Sign A Times Lagar Gunu -\U12007;Cuneiform Sign A Times Mush -\U12008;Cuneiform Sign A Times Sag -\U12009;Cuneiform Sign A2 -\U1200A;Cuneiform Sign Ab -\U1200B;Cuneiform Sign Ab Times Ash2 -\U1200C;Cuneiform Sign Ab Times Dun3 Gunu -\U1200D;Cuneiform Sign Ab Times Gal -\U1200E;Cuneiform Sign Ab Times Gan2 Tenu -\U1200F;Cuneiform Sign Ab Times Ha -\U12010;Cuneiform Sign Ab Times Igi Gunu -\U12011;Cuneiform Sign Ab Times Imin -\U12012;Cuneiform Sign Ab Times Lagab -\U12013;Cuneiform Sign Ab Times Shesh -\U12014;Cuneiform Sign Ab Times U Plus U Plus U -\U12015;Cuneiform Sign Ab Gunu -\U12016;Cuneiform Sign Ab2 -\U12017;Cuneiform Sign Ab2 Times Balag -\U12018;Cuneiform Sign Ab2 Times Gan2 Tenu -\U12019;Cuneiform Sign Ab2 Times Me Plus En -\U1201A;Cuneiform Sign Ab2 Times Sha3 -\U1201B;Cuneiform Sign Ab2 Times Tak4 -\U1201C;Cuneiform Sign Ad -\U1201D;Cuneiform Sign Ak -\U1201E;Cuneiform Sign Ak Times Erin2 -\U1201F;Cuneiform Sign Ak Times Shita Plus Gish -\U12020;Cuneiform Sign Al -\U12021;Cuneiform Sign Al Times Al -\U12022;Cuneiform Sign Al Times Dim2 -\U12023;Cuneiform Sign Al Times Gish -\U12024;Cuneiform Sign Al Times Ha -\U12025;Cuneiform Sign Al Times Kad3 -\U12026;Cuneiform Sign Al Times Ki -\U12027;Cuneiform Sign Al Times She -\U12028;Cuneiform Sign Al Times Ush -\U12029;Cuneiform Sign Alan -\U1202A;Cuneiform Sign Aleph -\U1202B;Cuneiform Sign Amar -\U1202C;Cuneiform Sign Amar Times She -\U1202D;Cuneiform Sign An -\U1202E;Cuneiform Sign An Over An -\U1202F;Cuneiform Sign An Three Times -\U12030;Cuneiform Sign An Plus Naga Opposing An Plus Naga -\U12031;Cuneiform Sign An Plus Naga Squared -\U12032;Cuneiform Sign Anshe -\U12033;Cuneiform Sign Apin -\U12034;Cuneiform Sign Arad -\U12035;Cuneiform Sign Arad Times Kur -\U12036;Cuneiform Sign Arkab -\U12037;Cuneiform Sign Asal2 -\U12038;Cuneiform Sign Ash -\U12039;Cuneiform Sign Ash Zida Tenu -\U1203A;Cuneiform Sign Ash Kaba Tenu -\U1203B;Cuneiform Sign Ash Over Ash Tug2 Over Tug2 Tug2 Over Tug2 Pap -\U1203C;Cuneiform Sign Ash Over Ash Over Ash -\U1203D;Cuneiform Sign Ash Over Ash Over Ash Crossing Ash Over Ash Over Ash -\U1203E;Cuneiform Sign Ash2 -\U1203F;Cuneiform Sign Ashgab -\U12040;Cuneiform Sign Ba -\U12041;Cuneiform Sign Bad -\U12042;Cuneiform Sign Bag3 -\U12043;Cuneiform Sign Bahar2 -\U12044;Cuneiform Sign Bal -\U12045;Cuneiform Sign Bal Over Bal -\U12046;Cuneiform Sign Balag -\U12047;Cuneiform Sign Bar -\U12048;Cuneiform Sign Bara2 -\U12049;Cuneiform Sign Bi -\U1204A;Cuneiform Sign Bi Times A -\U1204B;Cuneiform Sign Bi Times Gar -\U1204C;Cuneiform Sign Bi Times Igi Gunu -\U1204D;Cuneiform Sign Bu -\U1204E;Cuneiform Sign Bu Over Bu Ab -\U1204F;Cuneiform Sign Bu Over Bu Un -\U12050;Cuneiform Sign Bu Crossing Bu -\U12051;Cuneiform Sign Bulug -\U12052;Cuneiform Sign Bulug Over Bulug -\U12053;Cuneiform Sign Bur -\U12054;Cuneiform Sign Bur2 -\U12055;Cuneiform Sign Da -\U12056;Cuneiform Sign Dag -\U12057;Cuneiform Sign Dag Kisim5 Times A Plus Mash -\U12058;Cuneiform Sign Dag Kisim5 Times Amar -\U12059;Cuneiform Sign Dag Kisim5 Times Balag -\U1205A;Cuneiform Sign Dag Kisim5 Times Bi -\U1205B;Cuneiform Sign Dag Kisim5 Times Ga -\U1205C;Cuneiform Sign Dag Kisim5 Times Ga Plus Mash -\U1205D;Cuneiform Sign Dag Kisim5 Times Gi -\U1205E;Cuneiform Sign Dag Kisim5 Times Gir2 -\U1205F;Cuneiform Sign Dag Kisim5 Times Gud -\U12060;Cuneiform Sign Dag Kisim5 Times Ha -\U12061;Cuneiform Sign Dag Kisim5 Times Ir -\U12062;Cuneiform Sign Dag Kisim5 Times Ir Plus Lu -\U12063;Cuneiform Sign Dag Kisim5 Times Kak -\U12064;Cuneiform Sign Dag Kisim5 Times La -\U12065;Cuneiform Sign Dag Kisim5 Times Lu -\U12066;Cuneiform Sign Dag Kisim5 Times Lu Plus Mash2 -\U12067;Cuneiform Sign Dag Kisim5 Times Lum -\U12068;Cuneiform Sign Dag Kisim5 Times Ne -\U12069;Cuneiform Sign Dag Kisim5 Times Pap Plus Pap -\U1206A;Cuneiform Sign Dag Kisim5 Times Si -\U1206B;Cuneiform Sign Dag Kisim5 Times Tak4 -\U1206C;Cuneiform Sign Dag Kisim5 Times U2 Plus Gir2 -\U1206D;Cuneiform Sign Dag Kisim5 Times Ush -\U1206E;Cuneiform Sign Dam -\U1206F;Cuneiform Sign Dar -\U12070;Cuneiform Sign Dara3 -\U12071;Cuneiform Sign Dara4 -\U12072;Cuneiform Sign Di -\U12073;Cuneiform Sign Dib -\U12074;Cuneiform Sign Dim -\U12075;Cuneiform Sign Dim Times She -\U12076;Cuneiform Sign Dim2 -\U12077;Cuneiform Sign Din -\U12078;Cuneiform Sign Din Kaskal U Gunu Dish -\U12079;Cuneiform Sign Dish -\U1207A;Cuneiform Sign Du -\U1207B;Cuneiform Sign Du Over Du -\U1207C;Cuneiform Sign Du Gunu -\U1207D;Cuneiform Sign Du Sheshig -\U1207E;Cuneiform Sign Dub -\U1207F;Cuneiform Sign Dub Times Esh2 -\U12080;Cuneiform Sign Dub2 -\U12081;Cuneiform Sign Dug -\U12082;Cuneiform Sign Dugud -\U12083;Cuneiform Sign Duh -\U12084;Cuneiform Sign Dun -\U12085;Cuneiform Sign Dun3 -\U12086;Cuneiform Sign Dun3 Gunu -\U12087;Cuneiform Sign Dun3 Gunu Gunu -\U12088;Cuneiform Sign Dun4 -\U12089;Cuneiform Sign Dur2 -\U1208A;Cuneiform Sign E -\U1208B;Cuneiform Sign E Times Pap -\U1208C;Cuneiform Sign E Over E Nun Over Nun -\U1208D;Cuneiform Sign E2 -\U1208E;Cuneiform Sign E2 Times A Plus Ha Plus Da -\U1208F;Cuneiform Sign E2 Times Gar -\U12090;Cuneiform Sign E2 Times Mi -\U12091;Cuneiform Sign E2 Times Sal -\U12092;Cuneiform Sign E2 Times She -\U12093;Cuneiform Sign E2 Times U -\U12094;Cuneiform Sign Edin -\U12095;Cuneiform Sign Egir -\U12096;Cuneiform Sign El -\U12097;Cuneiform Sign En -\U12098;Cuneiform Sign En Times Gan2 -\U12099;Cuneiform Sign En Times Gan2 Tenu -\U1209A;Cuneiform Sign En Times Me -\U1209B;Cuneiform Sign En Crossing En -\U1209C;Cuneiform Sign En Opposing En -\U1209D;Cuneiform Sign En Squared -\U1209E;Cuneiform Sign Eren -\U1209F;Cuneiform Sign Erin2 -\U120A0;Cuneiform Sign Esh2 -\U120A1;Cuneiform Sign Ezen -\U120A2;Cuneiform Sign Ezen Times A -\U120A3;Cuneiform Sign Ezen Times A Plus Lal -\U120A4;Cuneiform Sign Ezen Times A Plus Lal Times Lal -\U120A5;Cuneiform Sign Ezen Times An -\U120A6;Cuneiform Sign Ezen Times Bad -\U120A7;Cuneiform Sign Ezen Times Dun3 Gunu -\U120A8;Cuneiform Sign Ezen Times Dun3 Gunu Gunu -\U120A9;Cuneiform Sign Ezen Times Ha -\U120AA;Cuneiform Sign Ezen Times Ha Gunu -\U120AB;Cuneiform Sign Ezen Times Igi Gunu -\U120AC;Cuneiform Sign Ezen Times Kaskal -\U120AD;Cuneiform Sign Ezen Times Kaskal Squared -\U120AE;Cuneiform Sign Ezen Times Ku3 -\U120AF;Cuneiform Sign Ezen Times La -\U120B0;Cuneiform Sign Ezen Times Lal Times Lal -\U120B1;Cuneiform Sign Ezen Times Li -\U120B2;Cuneiform Sign Ezen Times Lu -\U120B3;Cuneiform Sign Ezen Times U2 -\U120B4;Cuneiform Sign Ezen Times Ud -\U120B5;Cuneiform Sign Ga -\U120B6;Cuneiform Sign Ga Gunu -\U120B7;Cuneiform Sign Ga2 -\U120B8;Cuneiform Sign Ga2 Times A Plus Da Plus Ha -\U120B9;Cuneiform Sign Ga2 Times A Plus Ha -\U120BA;Cuneiform Sign Ga2 Times A Plus Igi -\U120BB;Cuneiform Sign Ga2 Times Ab2 Tenu Plus Tab -\U120BC;Cuneiform Sign Ga2 Times An -\U120BD;Cuneiform Sign Ga2 Times Ash -\U120BE;Cuneiform Sign Ga2 Times Ash2 Plus Gal -\U120BF;Cuneiform Sign Ga2 Times Bad -\U120C0;Cuneiform Sign Ga2 Times Bar Plus Ra -\U120C1;Cuneiform Sign Ga2 Times Bur -\U120C2;Cuneiform Sign Ga2 Times Bur Plus Ra -\U120C3;Cuneiform Sign Ga2 Times Da -\U120C4;Cuneiform Sign Ga2 Times Di -\U120C5;Cuneiform Sign Ga2 Times Dim Times She -\U120C6;Cuneiform Sign Ga2 Times Dub -\U120C7;Cuneiform Sign Ga2 Times El -\U120C8;Cuneiform Sign Ga2 Times El Plus La -\U120C9;Cuneiform Sign Ga2 Times En -\U120CA;Cuneiform Sign Ga2 Times En Times Gan2 Tenu -\U120CB;Cuneiform Sign Ga2 Times Gan2 Tenu -\U120CC;Cuneiform Sign Ga2 Times Gar -\U120CD;Cuneiform Sign Ga2 Times Gi -\U120CE;Cuneiform Sign Ga2 Times Gi4 -\U120CF;Cuneiform Sign Ga2 Times Gi4 Plus A -\U120D0;Cuneiform Sign Ga2 Times Gir2 Plus Su -\U120D1;Cuneiform Sign Ga2 Times Ha Plus Lu Plus Esh2 -\U120D2;Cuneiform Sign Ga2 Times Hal -\U120D3;Cuneiform Sign Ga2 Times Hal Plus La -\U120D4;Cuneiform Sign Ga2 Times Hi Plus Li -\U120D5;Cuneiform Sign Ga2 Times Hub2 -\U120D6;Cuneiform Sign Ga2 Times Igi Gunu -\U120D7;Cuneiform Sign Ga2 Times Ish Plus Hu Plus Ash -\U120D8;Cuneiform Sign Ga2 Times Kak -\U120D9;Cuneiform Sign Ga2 Times Kaskal -\U120DA;Cuneiform Sign Ga2 Times Kid -\U120DB;Cuneiform Sign Ga2 Times Kid Plus Lal -\U120DC;Cuneiform Sign Ga2 Times Ku3 Plus An -\U120DD;Cuneiform Sign Ga2 Times La -\U120DE;Cuneiform Sign Ga2 Times Me Plus En -\U120DF;Cuneiform Sign Ga2 Times Mi -\U120E0;Cuneiform Sign Ga2 Times Nun -\U120E1;Cuneiform Sign Ga2 Times Nun Over Nun -\U120E2;Cuneiform Sign Ga2 Times Pa -\U120E3;Cuneiform Sign Ga2 Times Sal -\U120E4;Cuneiform Sign Ga2 Times Sar -\U120E5;Cuneiform Sign Ga2 Times She -\U120E6;Cuneiform Sign Ga2 Times She Plus Tur -\U120E7;Cuneiform Sign Ga2 Times Shid -\U120E8;Cuneiform Sign Ga2 Times Sum -\U120E9;Cuneiform Sign Ga2 Times Tak4 -\U120EA;Cuneiform Sign Ga2 Times U -\U120EB;Cuneiform Sign Ga2 Times Ud -\U120EC;Cuneiform Sign Ga2 Times Ud Plus Du -\U120ED;Cuneiform Sign Ga2 Over Ga2 -\U120EE;Cuneiform Sign Gaba -\U120EF;Cuneiform Sign Gaba Crossing Gaba -\U120F0;Cuneiform Sign Gad -\U120F1;Cuneiform Sign Gad Over Gad Gar Over Gar -\U120F2;Cuneiform Sign Gal -\U120F3;Cuneiform Sign Gal Gad Over Gad Gar Over Gar -\U120F4;Cuneiform Sign Galam -\U120F5;Cuneiform Sign Gam -\U120F6;Cuneiform Sign Gan -\U120F7;Cuneiform Sign Gan2 -\U120F8;Cuneiform Sign Gan2 Tenu -\U120F9;Cuneiform Sign Gan2 Over Gan2 -\U120FA;Cuneiform Sign Gan2 Crossing Gan2 -\U120FB;Cuneiform Sign Gar -\U120FC;Cuneiform Sign Gar3 -\U120FD;Cuneiform Sign Gashan -\U120FE;Cuneiform Sign Geshtin -\U120FF;Cuneiform Sign Geshtin Times Kur -\U12100;Cuneiform Sign Gi -\U12101;Cuneiform Sign Gi Times E -\U12102;Cuneiform Sign Gi Times U -\U12103;Cuneiform Sign Gi Crossing Gi -\U12104;Cuneiform Sign Gi4 -\U12105;Cuneiform Sign Gi4 Over Gi4 -\U12106;Cuneiform Sign Gi4 Crossing Gi4 -\U12107;Cuneiform Sign Gidim -\U12108;Cuneiform Sign Gir2 -\U12109;Cuneiform Sign Gir2 Gunu -\U1210A;Cuneiform Sign Gir3 -\U1210B;Cuneiform Sign Gir3 Times A Plus Igi -\U1210C;Cuneiform Sign Gir3 Times Gan2 Tenu -\U1210D;Cuneiform Sign Gir3 Times Igi -\U1210E;Cuneiform Sign Gir3 Times Lu Plus Igi -\U1210F;Cuneiform Sign Gir3 Times Pa -\U12110;Cuneiform Sign Gisal -\U12111;Cuneiform Sign Gish -\U12112;Cuneiform Sign Gish Crossing Gish -\U12113;Cuneiform Sign Gish Times Bad -\U12114;Cuneiform Sign Gish Times Tak4 -\U12115;Cuneiform Sign Gish Tenu -\U12116;Cuneiform Sign Gu -\U12117;Cuneiform Sign Gu Crossing Gu -\U12118;Cuneiform Sign Gu2 -\U12119;Cuneiform Sign Gu2 Times Kak -\U1211A;Cuneiform Sign Gu2 Times Kak Times Igi Gunu -\U1211B;Cuneiform Sign Gu2 Times Nun -\U1211C;Cuneiform Sign Gu2 Times Sal Plus Tug2 -\U1211D;Cuneiform Sign Gu2 Gunu -\U1211E;Cuneiform Sign Gud -\U1211F;Cuneiform Sign Gud Times A Plus Kur -\U12120;Cuneiform Sign Gud Times Kur -\U12121;Cuneiform Sign Gud Over Gud Lugal -\U12122;Cuneiform Sign Gul -\U12123;Cuneiform Sign Gum -\U12124;Cuneiform Sign Gum Times She -\U12125;Cuneiform Sign Gur -\U12126;Cuneiform Sign Gur7 -\U12127;Cuneiform Sign Gurun -\U12128;Cuneiform Sign Gurush -\U12129;Cuneiform Sign Ha -\U1212A;Cuneiform Sign Ha Tenu -\U1212B;Cuneiform Sign Ha Gunu -\U1212C;Cuneiform Sign Hal -\U1212D;Cuneiform Sign Hi -\U1212E;Cuneiform Sign Hi Times Ash -\U1212F;Cuneiform Sign Hi Times Ash2 -\U12130;Cuneiform Sign Hi Times Bad -\U12131;Cuneiform Sign Hi Times Dish -\U12132;Cuneiform Sign Hi Times Gad -\U12133;Cuneiform Sign Hi Times Kin -\U12134;Cuneiform Sign Hi Times Nun -\U12135;Cuneiform Sign Hi Times She -\U12136;Cuneiform Sign Hi Times U -\U12137;Cuneiform Sign Hu -\U12138;Cuneiform Sign Hub2 -\U12139;Cuneiform Sign Hub2 Times An -\U1213A;Cuneiform Sign Hub2 Times Hal -\U1213B;Cuneiform Sign Hub2 Times Kaskal -\U1213C;Cuneiform Sign Hub2 Times Lish -\U1213D;Cuneiform Sign Hub2 Times Ud -\U1213E;Cuneiform Sign Hul2 -\U1213F;Cuneiform Sign I -\U12140;Cuneiform Sign I A -\U12141;Cuneiform Sign Ib -\U12142;Cuneiform Sign Idim -\U12143;Cuneiform Sign Idim Over Idim Bur -\U12144;Cuneiform Sign Idim Over Idim Squared -\U12145;Cuneiform Sign Ig -\U12146;Cuneiform Sign Igi -\U12147;Cuneiform Sign Igi Dib -\U12148;Cuneiform Sign Igi Ri -\U12149;Cuneiform Sign Igi Over Igi Shir Over Shir Ud Over Ud -\U1214A;Cuneiform Sign Igi Gunu -\U1214B;Cuneiform Sign Il -\U1214C;Cuneiform Sign Il Times Gan2 Tenu -\U1214D;Cuneiform Sign Il2 -\U1214E;Cuneiform Sign Im -\U1214F;Cuneiform Sign Im Times Tak4 -\U12150;Cuneiform Sign Im Crossing Im -\U12151;Cuneiform Sign Im Opposing Im -\U12152;Cuneiform Sign Im Squared -\U12153;Cuneiform Sign Imin -\U12154;Cuneiform Sign In -\U12155;Cuneiform Sign Ir -\U12156;Cuneiform Sign Ish -\U12157;Cuneiform Sign Ka -\U12158;Cuneiform Sign Ka Times A -\U12159;Cuneiform Sign Ka Times Ad -\U1215A;Cuneiform Sign Ka Times Ad Plus Ku3 -\U1215B;Cuneiform Sign Ka Times Ash2 -\U1215C;Cuneiform Sign Ka Times Bad -\U1215D;Cuneiform Sign Ka Times Balag -\U1215E;Cuneiform Sign Ka Times Bar -\U1215F;Cuneiform Sign Ka Times Bi -\U12160;Cuneiform Sign Ka Times Erin2 -\U12161;Cuneiform Sign Ka Times Esh2 -\U12162;Cuneiform Sign Ka Times Ga -\U12163;Cuneiform Sign Ka Times Gal -\U12164;Cuneiform Sign Ka Times Gan2 Tenu -\U12165;Cuneiform Sign Ka Times Gar -\U12166;Cuneiform Sign Ka Times Gar Plus Sha3 Plus A -\U12167;Cuneiform Sign Ka Times Gi -\U12168;Cuneiform Sign Ka Times Gir2 -\U12169;Cuneiform Sign Ka Times Gish Plus Sar -\U1216A;Cuneiform Sign Ka Times Gish Crossing Gish -\U1216B;Cuneiform Sign Ka Times Gu -\U1216C;Cuneiform Sign Ka Times Gur7 -\U1216D;Cuneiform Sign Ka Times Igi -\U1216E;Cuneiform Sign Ka Times Im -\U1216F;Cuneiform Sign Ka Times Kak -\U12170;Cuneiform Sign Ka Times Ki -\U12171;Cuneiform Sign Ka Times Kid -\U12172;Cuneiform Sign Ka Times Li -\U12173;Cuneiform Sign Ka Times Lu -\U12174;Cuneiform Sign Ka Times Me -\U12175;Cuneiform Sign Ka Times Me Plus Du -\U12176;Cuneiform Sign Ka Times Me Plus Gi -\U12177;Cuneiform Sign Ka Times Me Plus Te -\U12178;Cuneiform Sign Ka Times Mi -\U12179;Cuneiform Sign Ka Times Mi Plus Nunuz -\U1217A;Cuneiform Sign Ka Times Ne -\U1217B;Cuneiform Sign Ka Times Nun -\U1217C;Cuneiform Sign Ka Times Pi -\U1217D;Cuneiform Sign Ka Times Ru -\U1217E;Cuneiform Sign Ka Times Sa -\U1217F;Cuneiform Sign Ka Times Sar -\U12180;Cuneiform Sign Ka Times Sha -\U12181;Cuneiform Sign Ka Times She -\U12182;Cuneiform Sign Ka Times Shid -\U12183;Cuneiform Sign Ka Times Shu -\U12184;Cuneiform Sign Ka Times Sig -\U12185;Cuneiform Sign Ka Times Suhur -\U12186;Cuneiform Sign Ka Times Tar -\U12187;Cuneiform Sign Ka Times U -\U12188;Cuneiform Sign Ka Times U2 -\U12189;Cuneiform Sign Ka Times Ud -\U1218A;Cuneiform Sign Ka Times Umum Times Pa -\U1218B;Cuneiform Sign Ka Times Ush -\U1218C;Cuneiform Sign Ka Times Zi -\U1218D;Cuneiform Sign Ka2 -\U1218E;Cuneiform Sign Ka2 Crossing Ka2 -\U1218F;Cuneiform Sign Kab -\U12190;Cuneiform Sign Kad2 -\U12191;Cuneiform Sign Kad3 -\U12192;Cuneiform Sign Kad4 -\U12193;Cuneiform Sign Kad5 -\U12194;Cuneiform Sign Kad5 Over Kad5 -\U12195;Cuneiform Sign Kak -\U12196;Cuneiform Sign Kak Times Igi Gunu -\U12197;Cuneiform Sign Kal -\U12198;Cuneiform Sign Kal Times Bad -\U12199;Cuneiform Sign Kal Crossing Kal -\U1219A;Cuneiform Sign Kam2 -\U1219B;Cuneiform Sign Kam4 -\U1219C;Cuneiform Sign Kaskal -\U1219D;Cuneiform Sign Kaskal Lagab Times U Over Lagab Times U -\U1219E;Cuneiform Sign Kaskal Over Kaskal Lagab Times U Over Lagab Times U -\U1219F;Cuneiform Sign Kesh2 -\U121A0;Cuneiform Sign Ki -\U121A1;Cuneiform Sign Ki Times Bad -\U121A2;Cuneiform Sign Ki Times U -\U121A3;Cuneiform Sign Ki Times Ud -\U121A4;Cuneiform Sign Kid -\U121A5;Cuneiform Sign Kin -\U121A6;Cuneiform Sign Kisal -\U121A7;Cuneiform Sign Kish -\U121A8;Cuneiform Sign Kisim5 -\U121A9;Cuneiform Sign Kisim5 Over Kisim5 -\U121AA;Cuneiform Sign Ku -\U121AB;Cuneiform Sign Ku Over Hi Times Ash2 Ku Over Hi Times Ash2 -\U121AC;Cuneiform Sign Ku3 -\U121AD;Cuneiform Sign Ku4 -\U121AE;Cuneiform Sign Ku4 Variant Form -\U121AF;Cuneiform Sign Ku7 -\U121B0;Cuneiform Sign Kul -\U121B1;Cuneiform Sign Kul Gunu -\U121B2;Cuneiform Sign Kun -\U121B3;Cuneiform Sign Kur -\U121B4;Cuneiform Sign Kur Opposing Kur -\U121B5;Cuneiform Sign Kushu2 -\U121B6;Cuneiform Sign Kwu318 -\U121B7;Cuneiform Sign La -\U121B8;Cuneiform Sign Lagab -\U121B9;Cuneiform Sign Lagab Times A -\U121BA;Cuneiform Sign Lagab Times A Plus Da Plus Ha -\U121BB;Cuneiform Sign Lagab Times A Plus Gar -\U121BC;Cuneiform Sign Lagab Times A Plus Lal -\U121BD;Cuneiform Sign Lagab Times Al -\U121BE;Cuneiform Sign Lagab Times An -\U121BF;Cuneiform Sign Lagab Times Ash Zida Tenu -\U121C0;Cuneiform Sign Lagab Times Bad -\U121C1;Cuneiform Sign Lagab Times Bi -\U121C2;Cuneiform Sign Lagab Times Dar -\U121C3;Cuneiform Sign Lagab Times En -\U121C4;Cuneiform Sign Lagab Times Ga -\U121C5;Cuneiform Sign Lagab Times Gar -\U121C6;Cuneiform Sign Lagab Times Gud -\U121C7;Cuneiform Sign Lagab Times Gud Plus Gud -\U121C8;Cuneiform Sign Lagab Times Ha -\U121C9;Cuneiform Sign Lagab Times Hal -\U121CA;Cuneiform Sign Lagab Times Hi Times Nun -\U121CB;Cuneiform Sign Lagab Times Igi Gunu -\U121CC;Cuneiform Sign Lagab Times Im -\U121CD;Cuneiform Sign Lagab Times Im Plus Ha -\U121CE;Cuneiform Sign Lagab Times Im Plus Lu -\U121CF;Cuneiform Sign Lagab Times Ki -\U121D0;Cuneiform Sign Lagab Times Kin -\U121D1;Cuneiform Sign Lagab Times Ku3 -\U121D2;Cuneiform Sign Lagab Times Kul -\U121D3;Cuneiform Sign Lagab Times Kul Plus Hi Plus A -\U121D4;Cuneiform Sign Lagab Times Lagab -\U121D5;Cuneiform Sign Lagab Times Lish -\U121D6;Cuneiform Sign Lagab Times Lu -\U121D7;Cuneiform Sign Lagab Times Lul -\U121D8;Cuneiform Sign Lagab Times Me -\U121D9;Cuneiform Sign Lagab Times Me Plus En -\U121DA;Cuneiform Sign Lagab Times Mush -\U121DB;Cuneiform Sign Lagab Times Ne -\U121DC;Cuneiform Sign Lagab Times She Plus Sum -\U121DD;Cuneiform Sign Lagab Times Shita Plus Gish Plus Erin2 -\U121DE;Cuneiform Sign Lagab Times Shita Plus Gish Tenu -\U121DF;Cuneiform Sign Lagab Times Shu2 -\U121E0;Cuneiform Sign Lagab Times Shu2 Plus Shu2 -\U121E1;Cuneiform Sign Lagab Times Sum -\U121E2;Cuneiform Sign Lagab Times Tag -\U121E3;Cuneiform Sign Lagab Times Tak4 -\U121E4;Cuneiform Sign Lagab Times Te Plus A Plus Su Plus Na -\U121E5;Cuneiform Sign Lagab Times U -\U121E6;Cuneiform Sign Lagab Times U Plus A -\U121E7;Cuneiform Sign Lagab Times U Plus U Plus U -\U121E8;Cuneiform Sign Lagab Times U2 Plus Ash -\U121E9;Cuneiform Sign Lagab Times Ud -\U121EA;Cuneiform Sign Lagab Times Ush -\U121EB;Cuneiform Sign Lagab Squared -\U121EC;Cuneiform Sign Lagar -\U121ED;Cuneiform Sign Lagar Times She -\U121EE;Cuneiform Sign Lagar Times She Plus Sum -\U121EF;Cuneiform Sign Lagar Gunu -\U121F0;Cuneiform Sign Lagar Gunu Over Lagar Gunu She -\U121F1;Cuneiform Sign Lahshu -\U121F2;Cuneiform Sign Lal -\U121F3;Cuneiform Sign Lal Times Lal -\U121F4;Cuneiform Sign Lam -\U121F5;Cuneiform Sign Lam Times Kur -\U121F6;Cuneiform Sign Lam Times Kur Plus Ru -\U121F7;Cuneiform Sign Li -\U121F8;Cuneiform Sign Lil -\U121F9;Cuneiform Sign Limmu2 -\U121FA;Cuneiform Sign Lish -\U121FB;Cuneiform Sign Lu -\U121FC;Cuneiform Sign Lu Times Bad -\U121FD;Cuneiform Sign Lu2 -\U121FE;Cuneiform Sign Lu2 Times Al -\U121FF;Cuneiform Sign Lu2 Times Bad -\U12200;Cuneiform Sign Lu2 Times Esh2 -\U12201;Cuneiform Sign Lu2 Times Esh2 Tenu -\U12202;Cuneiform Sign Lu2 Times Gan2 Tenu -\U12203;Cuneiform Sign Lu2 Times Hi Times Bad -\U12204;Cuneiform Sign Lu2 Times Im -\U12205;Cuneiform Sign Lu2 Times Kad2 -\U12206;Cuneiform Sign Lu2 Times Kad3 -\U12207;Cuneiform Sign Lu2 Times Kad3 Plus Ash -\U12208;Cuneiform Sign Lu2 Times Ki -\U12209;Cuneiform Sign Lu2 Times La Plus Ash -\U1220A;Cuneiform Sign Lu2 Times Lagab -\U1220B;Cuneiform Sign Lu2 Times Me Plus En -\U1220C;Cuneiform Sign Lu2 Times Ne -\U1220D;Cuneiform Sign Lu2 Times Nu -\U1220E;Cuneiform Sign Lu2 Times Si Plus Ash -\U1220F;Cuneiform Sign Lu2 Times Sik2 Plus Bu -\U12210;Cuneiform Sign Lu2 Times Tug2 -\U12211;Cuneiform Sign Lu2 Tenu -\U12212;Cuneiform Sign Lu2 Crossing Lu2 -\U12213;Cuneiform Sign Lu2 Opposing Lu2 -\U12214;Cuneiform Sign Lu2 Squared -\U12215;Cuneiform Sign Lu2 Sheshig -\U12216;Cuneiform Sign Lu3 -\U12217;Cuneiform Sign Lugal -\U12218;Cuneiform Sign Lugal Over Lugal -\U12219;Cuneiform Sign Lugal Opposing Lugal -\U1221A;Cuneiform Sign Lugal Sheshig -\U1221B;Cuneiform Sign Luh -\U1221C;Cuneiform Sign Lul -\U1221D;Cuneiform Sign Lum -\U1221E;Cuneiform Sign Lum Over Lum -\U1221F;Cuneiform Sign Lum Over Lum Gar Over Gar -\U12220;Cuneiform Sign Ma -\U12221;Cuneiform Sign Ma Times Tak4 -\U12222;Cuneiform Sign Ma Gunu -\U12223;Cuneiform Sign Ma2 -\U12224;Cuneiform Sign Mah -\U12225;Cuneiform Sign Mar -\U12226;Cuneiform Sign Mash -\U12227;Cuneiform Sign Mash2 -\U12228;Cuneiform Sign Me -\U12229;Cuneiform Sign Mes -\U1222A;Cuneiform Sign Mi -\U1222B;Cuneiform Sign Min -\U1222C;Cuneiform Sign Mu -\U1222D;Cuneiform Sign Mu Over Mu -\U1222E;Cuneiform Sign Mug -\U1222F;Cuneiform Sign Mug Gunu -\U12230;Cuneiform Sign Munsub -\U12231;Cuneiform Sign Murgu2 -\U12232;Cuneiform Sign Mush -\U12233;Cuneiform Sign Mush Times A -\U12234;Cuneiform Sign Mush Times Kur -\U12235;Cuneiform Sign Mush Times Za -\U12236;Cuneiform Sign Mush Over Mush -\U12237;Cuneiform Sign Mush Over Mush Times A Plus Na -\U12238;Cuneiform Sign Mush Crossing Mush -\U12239;Cuneiform Sign Mush3 -\U1223A;Cuneiform Sign Mush3 Times A -\U1223B;Cuneiform Sign Mush3 Times A Plus Di -\U1223C;Cuneiform Sign Mush3 Times Di -\U1223D;Cuneiform Sign Mush3 Gunu -\U1223E;Cuneiform Sign Na -\U1223F;Cuneiform Sign Na2 -\U12240;Cuneiform Sign Naga -\U12241;Cuneiform Sign Naga Inverted -\U12242;Cuneiform Sign Naga Times Shu Tenu -\U12243;Cuneiform Sign Naga Opposing Naga -\U12244;Cuneiform Sign Nagar -\U12245;Cuneiform Sign Nam Nutillu -\U12246;Cuneiform Sign Nam -\U12247;Cuneiform Sign Nam2 -\U12248;Cuneiform Sign Ne -\U12249;Cuneiform Sign Ne Times A -\U1224A;Cuneiform Sign Ne Times Ud -\U1224B;Cuneiform Sign Ne Sheshig -\U1224C;Cuneiform Sign Ni -\U1224D;Cuneiform Sign Ni Times E -\U1224E;Cuneiform Sign Ni2 -\U1224F;Cuneiform Sign Nim -\U12250;Cuneiform Sign Nim Times Gan2 Tenu -\U12251;Cuneiform Sign Nim Times Gar Plus Gan2 Tenu -\U12252;Cuneiform Sign Ninda2 -\U12253;Cuneiform Sign Ninda2 Times An -\U12254;Cuneiform Sign Ninda2 Times Ash -\U12255;Cuneiform Sign Ninda2 Times Ash Plus Ash -\U12256;Cuneiform Sign Ninda2 Times Gud -\U12257;Cuneiform Sign Ninda2 Times Me Plus Gan2 Tenu -\U12258;Cuneiform Sign Ninda2 Times Ne -\U12259;Cuneiform Sign Ninda2 Times Nun -\U1225A;Cuneiform Sign Ninda2 Times She -\U1225B;Cuneiform Sign Ninda2 Times She Plus A An -\U1225C;Cuneiform Sign Ninda2 Times She Plus Ash -\U1225D;Cuneiform Sign Ninda2 Times She Plus Ash Plus Ash -\U1225E;Cuneiform Sign Ninda2 Times U2 Plus Ash -\U1225F;Cuneiform Sign Ninda2 Times Ush -\U12260;Cuneiform Sign Nisag -\U12261;Cuneiform Sign Nu -\U12262;Cuneiform Sign Nu11 -\U12263;Cuneiform Sign Nun -\U12264;Cuneiform Sign Nun Lagar Times Gar -\U12265;Cuneiform Sign Nun Lagar Times Mash -\U12266;Cuneiform Sign Nun Lagar Times Sal -\U12267;Cuneiform Sign Nun Lagar Times Sal Over Nun Lagar Times Sal -\U12268;Cuneiform Sign Nun Lagar Times Ush -\U12269;Cuneiform Sign Nun Tenu -\U1226A;Cuneiform Sign Nun Over Nun -\U1226B;Cuneiform Sign Nun Crossing Nun -\U1226C;Cuneiform Sign Nun Crossing Nun Lagar Over Lagar -\U1226D;Cuneiform Sign Nunuz -\U1226E;Cuneiform Sign Nunuz Ab2 Times Ashgab -\U1226F;Cuneiform Sign Nunuz Ab2 Times Bi -\U12270;Cuneiform Sign Nunuz Ab2 Times Dug -\U12271;Cuneiform Sign Nunuz Ab2 Times Gud -\U12272;Cuneiform Sign Nunuz Ab2 Times Igi Gunu -\U12273;Cuneiform Sign Nunuz Ab2 Times Kad3 -\U12274;Cuneiform Sign Nunuz Ab2 Times La -\U12275;Cuneiform Sign Nunuz Ab2 Times Ne -\U12276;Cuneiform Sign Nunuz Ab2 Times Sila3 -\U12277;Cuneiform Sign Nunuz Ab2 Times U2 -\U12278;Cuneiform Sign Nunuz Kisim5 Times Bi -\U12279;Cuneiform Sign Nunuz Kisim5 Times Bi U -\U1227A;Cuneiform Sign Pa -\U1227B;Cuneiform Sign Pad -\U1227C;Cuneiform Sign Pan -\U1227D;Cuneiform Sign Pap -\U1227E;Cuneiform Sign Pesh2 -\U1227F;Cuneiform Sign Pi -\U12280;Cuneiform Sign Pi Times A -\U12281;Cuneiform Sign Pi Times Ab -\U12282;Cuneiform Sign Pi Times Bi -\U12283;Cuneiform Sign Pi Times Bu -\U12284;Cuneiform Sign Pi Times E -\U12285;Cuneiform Sign Pi Times I -\U12286;Cuneiform Sign Pi Times Ib -\U12287;Cuneiform Sign Pi Times U -\U12288;Cuneiform Sign Pi Times U2 -\U12289;Cuneiform Sign Pi Crossing Pi -\U1228A;Cuneiform Sign Pirig -\U1228B;Cuneiform Sign Pirig Times Kal -\U1228C;Cuneiform Sign Pirig Times Ud -\U1228D;Cuneiform Sign Pirig Times Za -\U1228E;Cuneiform Sign Pirig Opposing Pirig -\U1228F;Cuneiform Sign Ra -\U12290;Cuneiform Sign Rab -\U12291;Cuneiform Sign Ri -\U12292;Cuneiform Sign Ru -\U12293;Cuneiform Sign Sa -\U12294;Cuneiform Sign Sag Nutillu -\U12295;Cuneiform Sign Sag -\U12296;Cuneiform Sign Sag Times A -\U12297;Cuneiform Sign Sag Times Du -\U12298;Cuneiform Sign Sag Times Dub -\U12299;Cuneiform Sign Sag Times Ha -\U1229A;Cuneiform Sign Sag Times Kak -\U1229B;Cuneiform Sign Sag Times Kur -\U1229C;Cuneiform Sign Sag Times Lum -\U1229D;Cuneiform Sign Sag Times Mi -\U1229E;Cuneiform Sign Sag Times Nun -\U1229F;Cuneiform Sign Sag Times Sal -\U122A0;Cuneiform Sign Sag Times Shid -\U122A1;Cuneiform Sign Sag Times Tab -\U122A2;Cuneiform Sign Sag Times U2 -\U122A3;Cuneiform Sign Sag Times Ub -\U122A4;Cuneiform Sign Sag Times Um -\U122A5;Cuneiform Sign Sag Times Ur -\U122A6;Cuneiform Sign Sag Times Ush -\U122A7;Cuneiform Sign Sag Over Sag -\U122A8;Cuneiform Sign Sag Gunu -\U122A9;Cuneiform Sign Sal -\U122AA;Cuneiform Sign Sal Lagab Times Ash2 -\U122AB;Cuneiform Sign Sanga2 -\U122AC;Cuneiform Sign Sar -\U122AD;Cuneiform Sign Sha -\U122AE;Cuneiform Sign Sha3 -\U122AF;Cuneiform Sign Sha3 Times A -\U122B0;Cuneiform Sign Sha3 Times Bad -\U122B1;Cuneiform Sign Sha3 Times Gish -\U122B2;Cuneiform Sign Sha3 Times Ne -\U122B3;Cuneiform Sign Sha3 Times Shu2 -\U122B4;Cuneiform Sign Sha3 Times Tur -\U122B5;Cuneiform Sign Sha3 Times U -\U122B6;Cuneiform Sign Sha3 Times U Plus A -\U122B7;Cuneiform Sign Sha6 -\U122B8;Cuneiform Sign Shab6 -\U122B9;Cuneiform Sign Shar2 -\U122BA;Cuneiform Sign She -\U122BB;Cuneiform Sign She Hu -\U122BC;Cuneiform Sign She Over She Gad Over Gad Gar Over Gar -\U122BD;Cuneiform Sign She Over She Tab Over Tab Gar Over Gar -\U122BE;Cuneiform Sign Sheg9 -\U122BF;Cuneiform Sign Shen -\U122C0;Cuneiform Sign Shesh -\U122C1;Cuneiform Sign Shesh2 -\U122C2;Cuneiform Sign Sheshlam -\U122C3;Cuneiform Sign Shid -\U122C4;Cuneiform Sign Shid Times A -\U122C5;Cuneiform Sign Shid Times Im -\U122C6;Cuneiform Sign Shim -\U122C7;Cuneiform Sign Shim Times A -\U122C8;Cuneiform Sign Shim Times Bal -\U122C9;Cuneiform Sign Shim Times Bulug -\U122CA;Cuneiform Sign Shim Times Din -\U122CB;Cuneiform Sign Shim Times Gar -\U122CC;Cuneiform Sign Shim Times Igi -\U122CD;Cuneiform Sign Shim Times Igi Gunu -\U122CE;Cuneiform Sign Shim Times Kushu2 -\U122CF;Cuneiform Sign Shim Times Lul -\U122D0;Cuneiform Sign Shim Times Mug -\U122D1;Cuneiform Sign Shim Times Sal -\U122D2;Cuneiform Sign Shinig -\U122D3;Cuneiform Sign Shir -\U122D4;Cuneiform Sign Shir Tenu -\U122D5;Cuneiform Sign Shir Over Shir Bur Over Bur -\U122D6;Cuneiform Sign Shita -\U122D7;Cuneiform Sign Shu -\U122D8;Cuneiform Sign Shu Over Inverted Shu -\U122D9;Cuneiform Sign Shu2 -\U122DA;Cuneiform Sign Shubur -\U122DB;Cuneiform Sign Si -\U122DC;Cuneiform Sign Si Gunu -\U122DD;Cuneiform Sign Sig -\U122DE;Cuneiform Sign Sig4 -\U122DF;Cuneiform Sign Sig4 Over Sig4 Shu2 -\U122E0;Cuneiform Sign Sik2 -\U122E1;Cuneiform Sign Sila3 -\U122E2;Cuneiform Sign Su -\U122E3;Cuneiform Sign Su Over Su -\U122E4;Cuneiform Sign Sud -\U122E5;Cuneiform Sign Sud2 -\U122E6;Cuneiform Sign Suhur -\U122E7;Cuneiform Sign Sum -\U122E8;Cuneiform Sign Sumash -\U122E9;Cuneiform Sign Sur -\U122EA;Cuneiform Sign Sur9 -\U122EB;Cuneiform Sign Ta -\U122EC;Cuneiform Sign Ta Asterisk -\U122ED;Cuneiform Sign Ta Times Hi -\U122EE;Cuneiform Sign Ta Times Mi -\U122EF;Cuneiform Sign Ta Gunu -\U122F0;Cuneiform Sign Tab -\U122F1;Cuneiform Sign Tab Over Tab Ni Over Ni Dish Over Dish -\U122F2;Cuneiform Sign Tab Squared -\U122F3;Cuneiform Sign Tag -\U122F4;Cuneiform Sign Tag Times Bi -\U122F5;Cuneiform Sign Tag Times Gud -\U122F6;Cuneiform Sign Tag Times She -\U122F7;Cuneiform Sign Tag Times Shu -\U122F8;Cuneiform Sign Tag Times Tug2 -\U122F9;Cuneiform Sign Tag Times Ud -\U122FA;Cuneiform Sign Tak4 -\U122FB;Cuneiform Sign Tar -\U122FC;Cuneiform Sign Te -\U122FD;Cuneiform Sign Te Gunu -\U122FE;Cuneiform Sign Ti -\U122FF;Cuneiform Sign Ti Tenu -\U12300;Cuneiform Sign Til -\U12301;Cuneiform Sign Tir -\U12302;Cuneiform Sign Tir Times Tak4 -\U12303;Cuneiform Sign Tir Over Tir -\U12304;Cuneiform Sign Tir Over Tir Gad Over Gad Gar Over Gar -\U12305;Cuneiform Sign Tu -\U12306;Cuneiform Sign Tug2 -\U12307;Cuneiform Sign Tuk -\U12308;Cuneiform Sign Tum -\U12309;Cuneiform Sign Tur -\U1230A;Cuneiform Sign Tur Over Tur Za Over Za -\U1230B;Cuneiform Sign U -\U1230C;Cuneiform Sign U Gud -\U1230D;Cuneiform Sign U U U -\U1230E;Cuneiform Sign U Over U Pa Over Pa Gar Over Gar -\U1230F;Cuneiform Sign U Over U Sur Over Sur -\U12310;Cuneiform Sign U Over U U Reversed Over U Reversed -\U12311;Cuneiform Sign U2 -\U12312;Cuneiform Sign Ub -\U12313;Cuneiform Sign Ud -\U12314;Cuneiform Sign Ud Kushu2 -\U12315;Cuneiform Sign Ud Times Bad -\U12316;Cuneiform Sign Ud Times Mi -\U12317;Cuneiform Sign Ud Times U Plus U Plus U -\U12318;Cuneiform Sign Ud Times U Plus U Plus U Gunu -\U12319;Cuneiform Sign Ud Gunu -\U1231A;Cuneiform Sign Ud Sheshig -\U1231B;Cuneiform Sign Ud Sheshig Times Bad -\U1231C;Cuneiform Sign Udug -\U1231D;Cuneiform Sign Um -\U1231E;Cuneiform Sign Um Times Lagab -\U1231F;Cuneiform Sign Um Times Me Plus Da -\U12320;Cuneiform Sign Um Times Sha3 -\U12321;Cuneiform Sign Um Times U -\U12322;Cuneiform Sign Umbin -\U12323;Cuneiform Sign Umum -\U12324;Cuneiform Sign Umum Times Kaskal -\U12325;Cuneiform Sign Umum Times Pa -\U12326;Cuneiform Sign Un -\U12327;Cuneiform Sign Un Gunu -\U12328;Cuneiform Sign Ur -\U12329;Cuneiform Sign Ur Crossing Ur -\U1232A;Cuneiform Sign Ur Sheshig -\U1232B;Cuneiform Sign Ur2 -\U1232C;Cuneiform Sign Ur2 Times A Plus Ha -\U1232D;Cuneiform Sign Ur2 Times A Plus Na -\U1232E;Cuneiform Sign Ur2 Times Al -\U1232F;Cuneiform Sign Ur2 Times Ha -\U12330;Cuneiform Sign Ur2 Times Nun -\U12331;Cuneiform Sign Ur2 Times U2 -\U12332;Cuneiform Sign Ur2 Times U2 Plus Ash -\U12333;Cuneiform Sign Ur2 Times U2 Plus Bi -\U12334;Cuneiform Sign Ur4 -\U12335;Cuneiform Sign Uri -\U12336;Cuneiform Sign Uri3 -\U12337;Cuneiform Sign Uru -\U12338;Cuneiform Sign Uru Times A -\U12339;Cuneiform Sign Uru Times Ashgab -\U1233A;Cuneiform Sign Uru Times Bar -\U1233B;Cuneiform Sign Uru Times Dun -\U1233C;Cuneiform Sign Uru Times Ga -\U1233D;Cuneiform Sign Uru Times Gal -\U1233E;Cuneiform Sign Uru Times Gan2 Tenu -\U1233F;Cuneiform Sign Uru Times Gar -\U12340;Cuneiform Sign Uru Times Gu -\U12341;Cuneiform Sign Uru Times Ha -\U12342;Cuneiform Sign Uru Times Igi -\U12343;Cuneiform Sign Uru Times Im -\U12344;Cuneiform Sign Uru Times Ish -\U12345;Cuneiform Sign Uru Times Ki -\U12346;Cuneiform Sign Uru Times Lum -\U12347;Cuneiform Sign Uru Times Min -\U12348;Cuneiform Sign Uru Times Pa -\U12349;Cuneiform Sign Uru Times She -\U1234A;Cuneiform Sign Uru Times Sig4 -\U1234B;Cuneiform Sign Uru Times Tu -\U1234C;Cuneiform Sign Uru Times U Plus Gud -\U1234D;Cuneiform Sign Uru Times Ud -\U1234E;Cuneiform Sign Uru Times Uruda -\U1234F;Cuneiform Sign Uruda -\U12350;Cuneiform Sign Uruda Times U -\U12351;Cuneiform Sign Ush -\U12352;Cuneiform Sign Ush Times A -\U12353;Cuneiform Sign Ush Times Ku -\U12354;Cuneiform Sign Ush Times Kur -\U12355;Cuneiform Sign Ush Times Tak4 -\U12356;Cuneiform Sign Ushx -\U12357;Cuneiform Sign Ush2 -\U12358;Cuneiform Sign Ushumx -\U12359;Cuneiform Sign Utuki -\U1235A;Cuneiform Sign Uz3 -\U1235B;Cuneiform Sign Uz3 Times Kaskal -\U1235C;Cuneiform Sign Uzu -\U1235D;Cuneiform Sign Za -\U1235E;Cuneiform Sign Za Tenu -\U1235F;Cuneiform Sign Za Squared Times Kur -\U12360;Cuneiform Sign Zag -\U12361;Cuneiform Sign Zamx -\U12362;Cuneiform Sign Ze2 -\U12363;Cuneiform Sign Zi -\U12364;Cuneiform Sign Zi Over Zi -\U12365;Cuneiform Sign Zi3 -\U12366;Cuneiform Sign Zib -\U12367;Cuneiform Sign Zib Kaba Tenu -\U12368;Cuneiform Sign Zig -\U12369;Cuneiform Sign Ziz2 -\U1236A;Cuneiform Sign Zu -\U1236B;Cuneiform Sign Zu5 -\U1236C;Cuneiform Sign Zu5 Times A -\U1236D;Cuneiform Sign Zubur -\U1236E;Cuneiform Sign Zum -\U1236F;Cuneiform Sign Kap Elamite -\U12370;Cuneiform Sign Ab Times Nun -\U12371;Cuneiform Sign Ab2 Times A -\U12372;Cuneiform Sign Amar Times Kug -\U12373;Cuneiform Sign Dag Kisim5 Times U2 Plus Mash -\U12374;Cuneiform Sign Dag3 -\U12375;Cuneiform Sign Dish Plus Shu -\U12376;Cuneiform Sign Dub Times She -\U12377;Cuneiform Sign Ezen Times Gud -\U12378;Cuneiform Sign Ezen Times She -\U12379;Cuneiform Sign Ga2 Times An Plus Kak Plus A -\U1237A;Cuneiform Sign Ga2 Times Ash2 -\U1237B;Cuneiform Sign Ge22 -\U1237C;Cuneiform Sign Gig -\U1237D;Cuneiform Sign Hush -\U1237E;Cuneiform Sign Ka Times Anshe -\U1237F;Cuneiform Sign Ka Times Ash3 -\U12380;Cuneiform Sign Ka Times Gish -\U12381;Cuneiform Sign Ka Times Gud -\U12382;Cuneiform Sign Ka Times Hi Times Ash2 -\U12383;Cuneiform Sign Ka Times Lum -\U12384;Cuneiform Sign Ka Times Pa -\U12385;Cuneiform Sign Ka Times Shul -\U12386;Cuneiform Sign Ka Times Tu -\U12387;Cuneiform Sign Ka Times Ur2 -\U12388;Cuneiform Sign Lagab Times Gi -\U12389;Cuneiform Sign Lu2 Sheshig Times Bad -\U1238A;Cuneiform Sign Lu2 Times Esh2 Plus Lal -\U1238B;Cuneiform Sign Lu2 Times Shu -\U1238C;Cuneiform Sign Mesh -\U1238D;Cuneiform Sign Mush3 Times Za -\U1238E;Cuneiform Sign Na4 -\U1238F;Cuneiform Sign Nin -\U12390;Cuneiform Sign Nin9 -\U12391;Cuneiform Sign Ninda2 Times Bal -\U12392;Cuneiform Sign Ninda2 Times Gi -\U12393;Cuneiform Sign Nu11 Rotated Ninety Degrees -\U12394;Cuneiform Sign Pesh2 Asterisk -\U12395;Cuneiform Sign Pir2 -\U12396;Cuneiform Sign Sag Times Igi Gunu -\U12397;Cuneiform Sign Ti2 -\U12398;Cuneiform Sign Um Times Me -\U12399;Cuneiform Sign U U -\U12400;Cuneiform Numeric Sign Two Ash -\U12401;Cuneiform Numeric Sign Three Ash -\U12402;Cuneiform Numeric Sign Four Ash -\U12403;Cuneiform Numeric Sign Five Ash -\U12404;Cuneiform Numeric Sign Six Ash -\U12405;Cuneiform Numeric Sign Seven Ash -\U12406;Cuneiform Numeric Sign Eight Ash -\U12407;Cuneiform Numeric Sign Nine Ash -\U12408;Cuneiform Numeric Sign Three Dish -\U12409;Cuneiform Numeric Sign Four Dish -\U1240A;Cuneiform Numeric Sign Five Dish -\U1240B;Cuneiform Numeric Sign Six Dish -\U1240C;Cuneiform Numeric Sign Seven Dish -\U1240D;Cuneiform Numeric Sign Eight Dish -\U1240E;Cuneiform Numeric Sign Nine Dish -\U1240F;Cuneiform Numeric Sign Four U -\U12410;Cuneiform Numeric Sign Five U -\U12411;Cuneiform Numeric Sign Six U -\U12412;Cuneiform Numeric Sign Seven U -\U12413;Cuneiform Numeric Sign Eight U -\U12414;Cuneiform Numeric Sign Nine U -\U12415;Cuneiform Numeric Sign One Gesh2 -\U12416;Cuneiform Numeric Sign Two Gesh2 -\U12417;Cuneiform Numeric Sign Three Gesh2 -\U12418;Cuneiform Numeric Sign Four Gesh2 -\U12419;Cuneiform Numeric Sign Five Gesh2 -\U1241A;Cuneiform Numeric Sign Six Gesh2 -\U1241B;Cuneiform Numeric Sign Seven Gesh2 -\U1241C;Cuneiform Numeric Sign Eight Gesh2 -\U1241D;Cuneiform Numeric Sign Nine Gesh2 -\U1241E;Cuneiform Numeric Sign One Geshu -\U1241F;Cuneiform Numeric Sign Two Geshu -\U12420;Cuneiform Numeric Sign Three Geshu -\U12421;Cuneiform Numeric Sign Four Geshu -\U12422;Cuneiform Numeric Sign Five Geshu -\U12423;Cuneiform Numeric Sign Two Shar2 -\U12424;Cuneiform Numeric Sign Three Shar2 -\U12425;Cuneiform Numeric Sign Three Shar2 Variant Form -\U12426;Cuneiform Numeric Sign Four Shar2 -\U12427;Cuneiform Numeric Sign Five Shar2 -\U12428;Cuneiform Numeric Sign Six Shar2 -\U12429;Cuneiform Numeric Sign Seven Shar2 -\U1242A;Cuneiform Numeric Sign Eight Shar2 -\U1242B;Cuneiform Numeric Sign Nine Shar2 -\U1242C;Cuneiform Numeric Sign One Sharu -\U1242D;Cuneiform Numeric Sign Two Sharu -\U1242E;Cuneiform Numeric Sign Three Sharu -\U1242F;Cuneiform Numeric Sign Three Sharu Variant Form -\U12430;Cuneiform Numeric Sign Four Sharu -\U12431;Cuneiform Numeric Sign Five Sharu -\U12432;Cuneiform Numeric Sign Shar2 Times Gal Plus Dish -\U12433;Cuneiform Numeric Sign Shar2 Times Gal Plus Min -\U12434;Cuneiform Numeric Sign One Buru -\U12435;Cuneiform Numeric Sign Two Buru -\U12436;Cuneiform Numeric Sign Three Buru -\U12437;Cuneiform Numeric Sign Three Buru Variant Form -\U12438;Cuneiform Numeric Sign Four Buru -\U12439;Cuneiform Numeric Sign Five Buru -\U1243A;Cuneiform Numeric Sign Three Variant Form Esh16 -\U1243B;Cuneiform Numeric Sign Three Variant Form Esh21 -\U1243C;Cuneiform Numeric Sign Four Variant Form Limmu -\U1243D;Cuneiform Numeric Sign Four Variant Form Limmu4 -\U1243E;Cuneiform Numeric Sign Four Variant Form Limmu A -\U1243F;Cuneiform Numeric Sign Four Variant Form Limmu B -\U12440;Cuneiform Numeric Sign Six Variant Form Ash9 -\U12441;Cuneiform Numeric Sign Seven Variant Form Imin3 -\U12442;Cuneiform Numeric Sign Seven Variant Form Imin A -\U12443;Cuneiform Numeric Sign Seven Variant Form Imin B -\U12444;Cuneiform Numeric Sign Eight Variant Form Ussu -\U12445;Cuneiform Numeric Sign Eight Variant Form Ussu3 -\U12446;Cuneiform Numeric Sign Nine Variant Form Ilimmu -\U12447;Cuneiform Numeric Sign Nine Variant Form Ilimmu3 -\U12448;Cuneiform Numeric Sign Nine Variant Form Ilimmu4 -\U12449;Cuneiform Numeric Sign Nine Variant Form Ilimmu A -\U1244A;Cuneiform Numeric Sign Two Ash Tenu -\U1244B;Cuneiform Numeric Sign Three Ash Tenu -\U1244C;Cuneiform Numeric Sign Four Ash Tenu -\U1244D;Cuneiform Numeric Sign Five Ash Tenu -\U1244E;Cuneiform Numeric Sign Six Ash Tenu -\U1244F;Cuneiform Numeric Sign One Ban2 -\U12450;Cuneiform Numeric Sign Two Ban2 -\U12451;Cuneiform Numeric Sign Three Ban2 -\U12452;Cuneiform Numeric Sign Four Ban2 -\U12453;Cuneiform Numeric Sign Four Ban2 Variant Form -\U12454;Cuneiform Numeric Sign Five Ban2 -\U12455;Cuneiform Numeric Sign Five Ban2 Variant Form -\U12456;Cuneiform Numeric Sign Nigidamin -\U12457;Cuneiform Numeric Sign Nigidaesh -\U12458;Cuneiform Numeric Sign One Eshe3 -\U12459;Cuneiform Numeric Sign Two Eshe3 -\U1245A;Cuneiform Numeric Sign One Third Dish -\U1245B;Cuneiform Numeric Sign Two Thirds Dish -\U1245C;Cuneiform Numeric Sign Five Sixths Dish -\U1245D;Cuneiform Numeric Sign One Third Variant Form A -\U1245E;Cuneiform Numeric Sign Two Thirds Variant Form A -\U1245F;Cuneiform Numeric Sign One Eighth Ash -\U12460;Cuneiform Numeric Sign One Quarter Ash -\U12461;Cuneiform Numeric Sign Old Assyrian One Sixth -\U12462;Cuneiform Numeric Sign Old Assyrian One Quarter -\U12463;Cuneiform Numeric Sign One Quarter Gur -\U12464;Cuneiform Numeric Sign One Half Gur -\U12465;Cuneiform Numeric Sign Elamite One Third -\U12466;Cuneiform Numeric Sign Elamite Two Thirds -\U12467;Cuneiform Numeric Sign Elamite Forty -\U12468;Cuneiform Numeric Sign Elamite Fifty -\U12469;Cuneiform Numeric Sign Four U Variant Form -\U1246A;Cuneiform Numeric Sign Five U Variant Form -\U1246B;Cuneiform Numeric Sign Six U Variant Form -\U1246C;Cuneiform Numeric Sign Seven U Variant Form -\U1246D;Cuneiform Numeric Sign Eight U Variant Form -\U1246E;Cuneiform Numeric Sign Nine U Variant Form -\U12470;Cuneiform Punctuation Sign Old Assyrian Word Divider -\U12471;Cuneiform Punctuation Sign Vertical Colon -\U12472;Cuneiform Punctuation Sign Diagonal Colon -\U12473;Cuneiform Punctuation Sign Diagonal Tricolon -\U12474;Cuneiform Punctuation Sign Diagonal Quadcolon -\U12480;Cuneiform Sign Ab Times Nun Tenu -\U12481;Cuneiform Sign Ab Times Shu2 -\U12482;Cuneiform Sign Ad Times Esh2 -\U12483;Cuneiform Sign Bad Times Dish Tenu -\U12484;Cuneiform Sign Bahar2 Times Ab2 -\U12485;Cuneiform Sign Bahar2 Times Ni -\U12486;Cuneiform Sign Bahar2 Times Za -\U12487;Cuneiform Sign Bu Over Bu Times Na2 -\U12488;Cuneiform Sign Da Times Tak4 -\U12489;Cuneiform Sign Dag Times Kur -\U1248A;Cuneiform Sign Dim Times Igi -\U1248B;Cuneiform Sign Dim Times U U U -\U1248C;Cuneiform Sign Dim2 Times Ud -\U1248D;Cuneiform Sign Dug Times Anshe -\U1248E;Cuneiform Sign Dug Times Ash -\U1248F;Cuneiform Sign Dug Times Ash At Left -\U12490;Cuneiform Sign Dug Times Din -\U12491;Cuneiform Sign Dug Times Dun -\U12492;Cuneiform Sign Dug Times Erin2 -\U12493;Cuneiform Sign Dug Times Ga -\U12494;Cuneiform Sign Dug Times Gi -\U12495;Cuneiform Sign Dug Times Gir2 Gunu -\U12496;Cuneiform Sign Dug Times Gish -\U12497;Cuneiform Sign Dug Times Ha -\U12498;Cuneiform Sign Dug Times Hi -\U12499;Cuneiform Sign Dug Times Igi Gunu -\U1249A;Cuneiform Sign Dug Times Kaskal -\U1249B;Cuneiform Sign Dug Times Kur -\U1249C;Cuneiform Sign Dug Times Kushu2 -\U1249D;Cuneiform Sign Dug Times Kushu2 Plus Kaskal -\U1249E;Cuneiform Sign Dug Times Lak-020 -\U1249F;Cuneiform Sign Dug Times Lam -\U124A0;Cuneiform Sign Dug Times Lam Times Kur -\U124A1;Cuneiform Sign Dug Times Luh Plus Gish -\U124A2;Cuneiform Sign Dug Times Mash -\U124A3;Cuneiform Sign Dug Times Mes -\U124A4;Cuneiform Sign Dug Times Mi -\U124A5;Cuneiform Sign Dug Times Ni -\U124A6;Cuneiform Sign Dug Times Pi -\U124A7;Cuneiform Sign Dug Times She -\U124A8;Cuneiform Sign Dug Times Si Gunu -\U124A9;Cuneiform Sign E2 Times Kur -\U124AA;Cuneiform Sign E2 Times Pap -\U124AB;Cuneiform Sign Erin2 X -\U124AC;Cuneiform Sign Esh2 Crossing Esh2 -\U124AD;Cuneiform Sign Ezen Sheshig Times Ash -\U124AE;Cuneiform Sign Ezen Sheshig Times Hi -\U124AF;Cuneiform Sign Ezen Sheshig Times Igi Gunu -\U124B0;Cuneiform Sign Ezen Sheshig Times La -\U124B1;Cuneiform Sign Ezen Sheshig Times Lal -\U124B2;Cuneiform Sign Ezen Sheshig Times Me -\U124B3;Cuneiform Sign Ezen Sheshig Times Mes -\U124B4;Cuneiform Sign Ezen Sheshig Times Su -\U124B5;Cuneiform Sign Ezen Times Su -\U124B6;Cuneiform Sign Ga2 Times Bahar2 -\U124B7;Cuneiform Sign Ga2 Times Dim Gunu -\U124B8;Cuneiform Sign Ga2 Times Dug Times Igi Gunu -\U124B9;Cuneiform Sign Ga2 Times Dug Times Kaskal -\U124BA;Cuneiform Sign Ga2 Times Eren -\U124BB;Cuneiform Sign Ga2 Times Ga -\U124BC;Cuneiform Sign Ga2 Times Gar Plus Di -\U124BD;Cuneiform Sign Ga2 Times Gar Plus Ne -\U124BE;Cuneiform Sign Ga2 Times Ha Plus A -\U124BF;Cuneiform Sign Ga2 Times Kushu2 Plus Kaskal -\U124C0;Cuneiform Sign Ga2 Times Lam -\U124C1;Cuneiform Sign Ga2 Times Lam Times Kur -\U124C2;Cuneiform Sign Ga2 Times Luh -\U124C3;Cuneiform Sign Ga2 Times Mush -\U124C4;Cuneiform Sign Ga2 Times Ne -\U124C5;Cuneiform Sign Ga2 Times Ne Plus E2 -\U124C6;Cuneiform Sign Ga2 Times Ne Plus Gi -\U124C7;Cuneiform Sign Ga2 Times Shim -\U124C8;Cuneiform Sign Ga2 Times Ziz2 -\U124C9;Cuneiform Sign Gaba Rotated Ninety Degrees -\U124CA;Cuneiform Sign Geshtin Times U -\U124CB;Cuneiform Sign Gish Times Gish Crossing Gish -\U124CC;Cuneiform Sign Gu2 Times Igi Gunu -\U124CD;Cuneiform Sign Gud Plus Gish Times Tak4 -\U124CE;Cuneiform Sign Ha Tenu Gunu -\U124CF;Cuneiform Sign Hi Times Ash Over Hi Times Ash -\U124D0;Cuneiform Sign Ka Times Bu -\U124D1;Cuneiform Sign Ka Times Ka -\U124D2;Cuneiform Sign Ka Times U U U -\U124D3;Cuneiform Sign Ka Times Ur -\U124D4;Cuneiform Sign Lagab Times Zu Over Zu -\U124D5;Cuneiform Sign Lak-003 -\U124D6;Cuneiform Sign Lak-021 -\U124D7;Cuneiform Sign Lak-025 -\U124D8;Cuneiform Sign Lak-030 -\U124D9;Cuneiform Sign Lak-050 -\U124DA;Cuneiform Sign Lak-051 -\U124DB;Cuneiform Sign Lak-062 -\U124DC;Cuneiform Sign Lak-079 Over Lak-079 Gunu -\U124DD;Cuneiform Sign Lak-080 -\U124DE;Cuneiform Sign Lak-081 Over Lak-081 -\U124DF;Cuneiform Sign Lak-092 -\U124E0;Cuneiform Sign Lak-130 -\U124E1;Cuneiform Sign Lak-142 -\U124E2;Cuneiform Sign Lak-210 -\U124E3;Cuneiform Sign Lak-219 -\U124E4;Cuneiform Sign Lak-220 -\U124E5;Cuneiform Sign Lak-225 -\U124E6;Cuneiform Sign Lak-228 -\U124E7;Cuneiform Sign Lak-238 -\U124E8;Cuneiform Sign Lak-265 -\U124E9;Cuneiform Sign Lak-266 -\U124EA;Cuneiform Sign Lak-343 -\U124EB;Cuneiform Sign Lak-347 -\U124EC;Cuneiform Sign Lak-348 -\U124ED;Cuneiform Sign Lak-383 -\U124EE;Cuneiform Sign Lak-384 -\U124EF;Cuneiform Sign Lak-390 -\U124F0;Cuneiform Sign Lak-441 -\U124F1;Cuneiform Sign Lak-449 -\U124F2;Cuneiform Sign Lak-449 Times Gu -\U124F3;Cuneiform Sign Lak-449 Times Igi -\U124F4;Cuneiform Sign Lak-449 Times Pap Plus Lu3 -\U124F5;Cuneiform Sign Lak-449 Times Pap Plus Pap Plus Lu3 -\U124F6;Cuneiform Sign Lak-449 Times U2 Plus Ba -\U124F7;Cuneiform Sign Lak-450 -\U124F8;Cuneiform Sign Lak-457 -\U124F9;Cuneiform Sign Lak-470 -\U124FA;Cuneiform Sign Lak-483 -\U124FB;Cuneiform Sign Lak-490 -\U124FC;Cuneiform Sign Lak-492 -\U124FD;Cuneiform Sign Lak-493 -\U124FE;Cuneiform Sign Lak-495 -\U124FF;Cuneiform Sign Lak-550 -\U12500;Cuneiform Sign Lak-608 -\U12501;Cuneiform Sign Lak-617 -\U12502;Cuneiform Sign Lak-617 Times Ash -\U12503;Cuneiform Sign Lak-617 Times Bad -\U12504;Cuneiform Sign Lak-617 Times Dun3 Gunu Gunu -\U12505;Cuneiform Sign Lak-617 Times Ku3 -\U12506;Cuneiform Sign Lak-617 Times La -\U12507;Cuneiform Sign Lak-617 Times Tar -\U12508;Cuneiform Sign Lak-617 Times Te -\U12509;Cuneiform Sign Lak-617 Times U2 -\U1250A;Cuneiform Sign Lak-617 Times Ud -\U1250B;Cuneiform Sign Lak-617 Times Uruda -\U1250C;Cuneiform Sign Lak-636 -\U1250D;Cuneiform Sign Lak-648 -\U1250E;Cuneiform Sign Lak-648 Times Dub -\U1250F;Cuneiform Sign Lak-648 Times Ga -\U12510;Cuneiform Sign Lak-648 Times Igi -\U12511;Cuneiform Sign Lak-648 Times Igi Gunu -\U12512;Cuneiform Sign Lak-648 Times Ni -\U12513;Cuneiform Sign Lak-648 Times Pap Plus Pap Plus Lu3 -\U12514;Cuneiform Sign Lak-648 Times Shesh Plus Ki -\U12515;Cuneiform Sign Lak-648 Times Ud -\U12516;Cuneiform Sign Lak-648 Times Uruda -\U12517;Cuneiform Sign Lak-724 -\U12518;Cuneiform Sign Lak-749 -\U12519;Cuneiform Sign Lu2 Gunu Times Ash -\U1251A;Cuneiform Sign Lu2 Times Dish -\U1251B;Cuneiform Sign Lu2 Times Hal -\U1251C;Cuneiform Sign Lu2 Times Pap -\U1251D;Cuneiform Sign Lu2 Times Pap Plus Pap Plus Lu3 -\U1251E;Cuneiform Sign Lu2 Times Tak4 -\U1251F;Cuneiform Sign Mi Plus Za7 -\U12520;Cuneiform Sign Mush Over Mush Times Ga -\U12521;Cuneiform Sign Mush Over Mush Times Kak -\U12522;Cuneiform Sign Ninda2 Times Dim Gunu -\U12523;Cuneiform Sign Ninda2 Times Gish -\U12524;Cuneiform Sign Ninda2 Times Gul -\U12525;Cuneiform Sign Ninda2 Times Hi -\U12526;Cuneiform Sign Ninda2 Times Kesh2 -\U12527;Cuneiform Sign Ninda2 Times Lak-050 -\U12528;Cuneiform Sign Ninda2 Times Mash -\U12529;Cuneiform Sign Ninda2 Times Pap Plus Pap -\U1252A;Cuneiform Sign Ninda2 Times U -\U1252B;Cuneiform Sign Ninda2 Times U Plus U -\U1252C;Cuneiform Sign Ninda2 Times Uruda -\U1252D;Cuneiform Sign Sag Gunu Times Ha -\U1252E;Cuneiform Sign Sag Times En -\U1252F;Cuneiform Sign Sag Times She At Left -\U12530;Cuneiform Sign Sag Times Tak4 -\U12531;Cuneiform Sign Sha6 Tenu -\U12532;Cuneiform Sign She Over She -\U12533;Cuneiform Sign She Plus Hub2 -\U12534;Cuneiform Sign She Plus Nam2 -\U12535;Cuneiform Sign She Plus Sar -\U12536;Cuneiform Sign Shu2 Plus Dug Times Ni -\U12537;Cuneiform Sign Shu2 Plus E2 Times An -\U12538;Cuneiform Sign Si Times Tak4 -\U12539;Cuneiform Sign Tak4 Plus Sag -\U1253A;Cuneiform Sign Tum Times Gan2 Tenu -\U1253B;Cuneiform Sign Tum Times Three Dish -\U1253C;Cuneiform Sign Ur2 Inverted -\U1253D;Cuneiform Sign Ur2 Times Ud -\U1253E;Cuneiform Sign Uru Times Dara3 -\U1253F;Cuneiform Sign Uru Times Lak-668 -\U12540;Cuneiform Sign Uru Times Lu3 -\U12541;Cuneiform Sign Za7 -\U12542;Cuneiform Sign Zu Over Zu Plus Sar -\U12543;Cuneiform Sign Zu5 Times Three Dish Tenu -\U12F90;Cypro-Minoan Sign Cm001 -\U12F91;Cypro-Minoan Sign Cm002 -\U12F92;Cypro-Minoan Sign Cm004 -\U12F93;Cypro-Minoan Sign Cm005 -\U12F94;Cypro-Minoan Sign Cm006 -\U12F95;Cypro-Minoan Sign Cm007 -\U12F96;Cypro-Minoan Sign Cm008 -\U12F97;Cypro-Minoan Sign Cm009 -\U12F98;Cypro-Minoan Sign Cm010 -\U12F99;Cypro-Minoan Sign Cm011 -\U12F9A;Cypro-Minoan Sign Cm012 -\U12F9B;Cypro-Minoan Sign Cm012B -\U12F9C;Cypro-Minoan Sign Cm013 -\U12F9D;Cypro-Minoan Sign Cm015 -\U12F9E;Cypro-Minoan Sign Cm017 -\U12F9F;Cypro-Minoan Sign Cm019 -\U12FA0;Cypro-Minoan Sign Cm021 -\U12FA1;Cypro-Minoan Sign Cm023 -\U12FA2;Cypro-Minoan Sign Cm024 -\U12FA3;Cypro-Minoan Sign Cm025 -\U12FA4;Cypro-Minoan Sign Cm026 -\U12FA5;Cypro-Minoan Sign Cm027 -\U12FA6;Cypro-Minoan Sign Cm028 -\U12FA7;Cypro-Minoan Sign Cm029 -\U12FA8;Cypro-Minoan Sign Cm030 -\U12FA9;Cypro-Minoan Sign Cm033 -\U12FAA;Cypro-Minoan Sign Cm034 -\U12FAB;Cypro-Minoan Sign Cm035 -\U12FAC;Cypro-Minoan Sign Cm036 -\U12FAD;Cypro-Minoan Sign Cm037 -\U12FAE;Cypro-Minoan Sign Cm038 -\U12FAF;Cypro-Minoan Sign Cm039 -\U12FB0;Cypro-Minoan Sign Cm040 -\U12FB1;Cypro-Minoan Sign Cm041 -\U12FB2;Cypro-Minoan Sign Cm044 -\U12FB3;Cypro-Minoan Sign Cm046 -\U12FB4;Cypro-Minoan Sign Cm047 -\U12FB5;Cypro-Minoan Sign Cm049 -\U12FB6;Cypro-Minoan Sign Cm050 -\U12FB7;Cypro-Minoan Sign Cm051 -\U12FB8;Cypro-Minoan Sign Cm052 -\U12FB9;Cypro-Minoan Sign Cm053 -\U12FBA;Cypro-Minoan Sign Cm054 -\U12FBB;Cypro-Minoan Sign Cm055 -\U12FBC;Cypro-Minoan Sign Cm056 -\U12FBD;Cypro-Minoan Sign Cm058 -\U12FBE;Cypro-Minoan Sign Cm059 -\U12FBF;Cypro-Minoan Sign Cm060 -\U12FC0;Cypro-Minoan Sign Cm061 -\U12FC1;Cypro-Minoan Sign Cm062 -\U12FC2;Cypro-Minoan Sign Cm063 -\U12FC3;Cypro-Minoan Sign Cm064 -\U12FC4;Cypro-Minoan Sign Cm066 -\U12FC5;Cypro-Minoan Sign Cm067 -\U12FC6;Cypro-Minoan Sign Cm068 -\U12FC7;Cypro-Minoan Sign Cm069 -\U12FC8;Cypro-Minoan Sign Cm070 -\U12FC9;Cypro-Minoan Sign Cm071 -\U12FCA;Cypro-Minoan Sign Cm072 -\U12FCB;Cypro-Minoan Sign Cm073 -\U12FCC;Cypro-Minoan Sign Cm074 -\U12FCD;Cypro-Minoan Sign Cm075 -\U12FCE;Cypro-Minoan Sign Cm075B -\U12FCF;Cypro-Minoan Sign Cm076 -\U12FD0;Cypro-Minoan Sign Cm078 -\U12FD1;Cypro-Minoan Sign Cm079 -\U12FD2;Cypro-Minoan Sign Cm080 -\U12FD3;Cypro-Minoan Sign Cm081 -\U12FD4;Cypro-Minoan Sign Cm082 -\U12FD5;Cypro-Minoan Sign Cm083 -\U12FD6;Cypro-Minoan Sign Cm084 -\U12FD7;Cypro-Minoan Sign Cm085 -\U12FD8;Cypro-Minoan Sign Cm086 -\U12FD9;Cypro-Minoan Sign Cm087 -\U12FDA;Cypro-Minoan Sign Cm088 -\U12FDB;Cypro-Minoan Sign Cm089 -\U12FDC;Cypro-Minoan Sign Cm090 -\U12FDD;Cypro-Minoan Sign Cm091 -\U12FDE;Cypro-Minoan Sign Cm092 -\U12FDF;Cypro-Minoan Sign Cm094 -\U12FE0;Cypro-Minoan Sign Cm095 -\U12FE1;Cypro-Minoan Sign Cm096 -\U12FE2;Cypro-Minoan Sign Cm097 -\U12FE3;Cypro-Minoan Sign Cm098 -\U12FE4;Cypro-Minoan Sign Cm099 -\U12FE5;Cypro-Minoan Sign Cm100 -\U12FE6;Cypro-Minoan Sign Cm101 -\U12FE7;Cypro-Minoan Sign Cm102 -\U12FE8;Cypro-Minoan Sign Cm103 -\U12FE9;Cypro-Minoan Sign Cm104 -\U12FEA;Cypro-Minoan Sign Cm105 -\U12FEB;Cypro-Minoan Sign Cm107 -\U12FEC;Cypro-Minoan Sign Cm108 -\U12FED;Cypro-Minoan Sign Cm109 -\U12FEE;Cypro-Minoan Sign Cm110 -\U12FEF;Cypro-Minoan Sign Cm112 -\U12FF0;Cypro-Minoan Sign Cm114 -\U12FF1;Cypro-Minoan Sign Cm301 -\U12FF2;Cypro-Minoan Sign Cm302 -\U13000;Egyptian Hieroglyph A001 -\U13001;Egyptian Hieroglyph A002 -\U13002;Egyptian Hieroglyph A003 -\U13003;Egyptian Hieroglyph A004 -\U13004;Egyptian Hieroglyph A005 -\U13005;Egyptian Hieroglyph A005A -\U13006;Egyptian Hieroglyph A006 -\U13007;Egyptian Hieroglyph A006A -\U13008;Egyptian Hieroglyph A006B -\U13009;Egyptian Hieroglyph A007 -\U1300A;Egyptian Hieroglyph A008 -\U1300B;Egyptian Hieroglyph A009 -\U1300C;Egyptian Hieroglyph A010 -\U1300D;Egyptian Hieroglyph A011 -\U1300E;Egyptian Hieroglyph A012 -\U1300F;Egyptian Hieroglyph A013 -\U13010;Egyptian Hieroglyph A014 -\U13011;Egyptian Hieroglyph A014A -\U13012;Egyptian Hieroglyph A015 -\U13013;Egyptian Hieroglyph A016 -\U13014;Egyptian Hieroglyph A017 -\U13015;Egyptian Hieroglyph A017A -\U13016;Egyptian Hieroglyph A018 -\U13017;Egyptian Hieroglyph A019 -\U13018;Egyptian Hieroglyph A020 -\U13019;Egyptian Hieroglyph A021 -\U1301A;Egyptian Hieroglyph A022 -\U1301B;Egyptian Hieroglyph A023 -\U1301C;Egyptian Hieroglyph A024 -\U1301D;Egyptian Hieroglyph A025 -\U1301E;Egyptian Hieroglyph A026 -\U1301F;Egyptian Hieroglyph A027 -\U13020;Egyptian Hieroglyph A028 -\U13021;Egyptian Hieroglyph A029 -\U13022;Egyptian Hieroglyph A030 -\U13023;Egyptian Hieroglyph A031 -\U13024;Egyptian Hieroglyph A032 -\U13025;Egyptian Hieroglyph A032A -\U13026;Egyptian Hieroglyph A033 -\U13027;Egyptian Hieroglyph A034 -\U13028;Egyptian Hieroglyph A035 -\U13029;Egyptian Hieroglyph A036 -\U1302A;Egyptian Hieroglyph A037 -\U1302B;Egyptian Hieroglyph A038 -\U1302C;Egyptian Hieroglyph A039 -\U1302D;Egyptian Hieroglyph A040 -\U1302E;Egyptian Hieroglyph A040A -\U1302F;Egyptian Hieroglyph A041 -\U13030;Egyptian Hieroglyph A042 -\U13031;Egyptian Hieroglyph A042A -\U13032;Egyptian Hieroglyph A043 -\U13033;Egyptian Hieroglyph A043A -\U13034;Egyptian Hieroglyph A044 -\U13035;Egyptian Hieroglyph A045 -\U13036;Egyptian Hieroglyph A045A -\U13037;Egyptian Hieroglyph A046 -\U13038;Egyptian Hieroglyph A047 -\U13039;Egyptian Hieroglyph A048 -\U1303A;Egyptian Hieroglyph A049 -\U1303B;Egyptian Hieroglyph A050 -\U1303C;Egyptian Hieroglyph A051 -\U1303D;Egyptian Hieroglyph A052 -\U1303E;Egyptian Hieroglyph A053 -\U1303F;Egyptian Hieroglyph A054 -\U13040;Egyptian Hieroglyph A055 -\U13041;Egyptian Hieroglyph A056 -\U13042;Egyptian Hieroglyph A057 -\U13043;Egyptian Hieroglyph A058 -\U13044;Egyptian Hieroglyph A059 -\U13045;Egyptian Hieroglyph A060 -\U13046;Egyptian Hieroglyph A061 -\U13047;Egyptian Hieroglyph A062 -\U13048;Egyptian Hieroglyph A063 -\U13049;Egyptian Hieroglyph A064 -\U1304A;Egyptian Hieroglyph A065 -\U1304B;Egyptian Hieroglyph A066 -\U1304C;Egyptian Hieroglyph A067 -\U1304D;Egyptian Hieroglyph A068 -\U1304E;Egyptian Hieroglyph A069 -\U1304F;Egyptian Hieroglyph A070 -\U13050;Egyptian Hieroglyph B001 -\U13051;Egyptian Hieroglyph B002 -\U13052;Egyptian Hieroglyph B003 -\U13053;Egyptian Hieroglyph B004 -\U13054;Egyptian Hieroglyph B005 -\U13055;Egyptian Hieroglyph B005A -\U13056;Egyptian Hieroglyph B006 -\U13057;Egyptian Hieroglyph B007 -\U13058;Egyptian Hieroglyph B008 -\U13059;Egyptian Hieroglyph B009 -\U1305A;Egyptian Hieroglyph C001 -\U1305B;Egyptian Hieroglyph C002 -\U1305C;Egyptian Hieroglyph C002A -\U1305D;Egyptian Hieroglyph C002B -\U1305E;Egyptian Hieroglyph C002C -\U1305F;Egyptian Hieroglyph C003 -\U13060;Egyptian Hieroglyph C004 -\U13061;Egyptian Hieroglyph C005 -\U13062;Egyptian Hieroglyph C006 -\U13063;Egyptian Hieroglyph C007 -\U13064;Egyptian Hieroglyph C008 -\U13065;Egyptian Hieroglyph C009 -\U13066;Egyptian Hieroglyph C010 -\U13067;Egyptian Hieroglyph C010A -\U13068;Egyptian Hieroglyph C011 -\U13069;Egyptian Hieroglyph C012 -\U1306A;Egyptian Hieroglyph C013 -\U1306B;Egyptian Hieroglyph C014 -\U1306C;Egyptian Hieroglyph C015 -\U1306D;Egyptian Hieroglyph C016 -\U1306E;Egyptian Hieroglyph C017 -\U1306F;Egyptian Hieroglyph C018 -\U13070;Egyptian Hieroglyph C019 -\U13071;Egyptian Hieroglyph C020 -\U13072;Egyptian Hieroglyph C021 -\U13073;Egyptian Hieroglyph C022 -\U13074;Egyptian Hieroglyph C023 -\U13075;Egyptian Hieroglyph C024 -\U13076;Egyptian Hieroglyph D001 -\U13077;Egyptian Hieroglyph D002 -\U13078;Egyptian Hieroglyph D003 -\U13079;Egyptian Hieroglyph D004 -\U1307A;Egyptian Hieroglyph D005 -\U1307B;Egyptian Hieroglyph D006 -\U1307C;Egyptian Hieroglyph D007 -\U1307D;Egyptian Hieroglyph D008 -\U1307E;Egyptian Hieroglyph D008A -\U1307F;Egyptian Hieroglyph D009 -\U13080;Egyptian Hieroglyph D010 -\U13081;Egyptian Hieroglyph D011 -\U13082;Egyptian Hieroglyph D012 -\U13083;Egyptian Hieroglyph D013 -\U13084;Egyptian Hieroglyph D014 -\U13085;Egyptian Hieroglyph D015 -\U13086;Egyptian Hieroglyph D016 -\U13087;Egyptian Hieroglyph D017 -\U13088;Egyptian Hieroglyph D018 -\U13089;Egyptian Hieroglyph D019 -\U1308A;Egyptian Hieroglyph D020 -\U1308B;Egyptian Hieroglyph D021 -\U1308C;Egyptian Hieroglyph D022 -\U1308D;Egyptian Hieroglyph D023 -\U1308E;Egyptian Hieroglyph D024 -\U1308F;Egyptian Hieroglyph D025 -\U13090;Egyptian Hieroglyph D026 -\U13091;Egyptian Hieroglyph D027 -\U13092;Egyptian Hieroglyph D027A -\U13093;Egyptian Hieroglyph D028 -\U13094;Egyptian Hieroglyph D029 -\U13095;Egyptian Hieroglyph D030 -\U13096;Egyptian Hieroglyph D031 -\U13097;Egyptian Hieroglyph D031A -\U13098;Egyptian Hieroglyph D032 -\U13099;Egyptian Hieroglyph D033 -\U1309A;Egyptian Hieroglyph D034 -\U1309B;Egyptian Hieroglyph D034A -\U1309C;Egyptian Hieroglyph D035 -\U1309D;Egyptian Hieroglyph D036 -\U1309E;Egyptian Hieroglyph D037 -\U1309F;Egyptian Hieroglyph D038 -\U130A0;Egyptian Hieroglyph D039 -\U130A1;Egyptian Hieroglyph D040 -\U130A2;Egyptian Hieroglyph D041 -\U130A3;Egyptian Hieroglyph D042 -\U130A4;Egyptian Hieroglyph D043 -\U130A5;Egyptian Hieroglyph D044 -\U130A6;Egyptian Hieroglyph D045 -\U130A7;Egyptian Hieroglyph D046 -\U130A8;Egyptian Hieroglyph D046A -\U130A9;Egyptian Hieroglyph D047 -\U130AA;Egyptian Hieroglyph D048 -\U130AB;Egyptian Hieroglyph D048A -\U130AC;Egyptian Hieroglyph D049 -\U130AD;Egyptian Hieroglyph D050 -\U130AE;Egyptian Hieroglyph D050A -\U130AF;Egyptian Hieroglyph D050B -\U130B0;Egyptian Hieroglyph D050C -\U130B1;Egyptian Hieroglyph D050D -\U130B2;Egyptian Hieroglyph D050E -\U130B3;Egyptian Hieroglyph D050F -\U130B4;Egyptian Hieroglyph D050G -\U130B5;Egyptian Hieroglyph D050H -\U130B6;Egyptian Hieroglyph D050I -\U130B7;Egyptian Hieroglyph D051 -\U130B8;Egyptian Hieroglyph D052 -\U130B9;Egyptian Hieroglyph D052A -\U130BA;Egyptian Hieroglyph D053 -\U130BB;Egyptian Hieroglyph D054 -\U130BC;Egyptian Hieroglyph D054A -\U130BD;Egyptian Hieroglyph D055 -\U130BE;Egyptian Hieroglyph D056 -\U130BF;Egyptian Hieroglyph D057 -\U130C0;Egyptian Hieroglyph D058 -\U130C1;Egyptian Hieroglyph D059 -\U130C2;Egyptian Hieroglyph D060 -\U130C3;Egyptian Hieroglyph D061 -\U130C4;Egyptian Hieroglyph D062 -\U130C5;Egyptian Hieroglyph D063 -\U130C6;Egyptian Hieroglyph D064 -\U130C7;Egyptian Hieroglyph D065 -\U130C8;Egyptian Hieroglyph D066 -\U130C9;Egyptian Hieroglyph D067 -\U130CA;Egyptian Hieroglyph D067A -\U130CB;Egyptian Hieroglyph D067B -\U130CC;Egyptian Hieroglyph D067C -\U130CD;Egyptian Hieroglyph D067D -\U130CE;Egyptian Hieroglyph D067E -\U130CF;Egyptian Hieroglyph D067F -\U130D0;Egyptian Hieroglyph D067G -\U130D1;Egyptian Hieroglyph D067H -\U130D2;Egyptian Hieroglyph E001 -\U130D3;Egyptian Hieroglyph E002 -\U130D4;Egyptian Hieroglyph E003 -\U130D5;Egyptian Hieroglyph E004 -\U130D6;Egyptian Hieroglyph E005 -\U130D7;Egyptian Hieroglyph E006 -\U130D8;Egyptian Hieroglyph E007 -\U130D9;Egyptian Hieroglyph E008 -\U130DA;Egyptian Hieroglyph E008A -\U130DB;Egyptian Hieroglyph E009 -\U130DC;Egyptian Hieroglyph E009A -\U130DD;Egyptian Hieroglyph E010 -\U130DE;Egyptian Hieroglyph E011 -\U130DF;Egyptian Hieroglyph E012 -\U130E0;Egyptian Hieroglyph E013 -\U130E1;Egyptian Hieroglyph E014 -\U130E2;Egyptian Hieroglyph E015 -\U130E3;Egyptian Hieroglyph E016 -\U130E4;Egyptian Hieroglyph E016A -\U130E5;Egyptian Hieroglyph E017 -\U130E6;Egyptian Hieroglyph E017A -\U130E7;Egyptian Hieroglyph E018 -\U130E8;Egyptian Hieroglyph E019 -\U130E9;Egyptian Hieroglyph E020 -\U130EA;Egyptian Hieroglyph E020A -\U130EB;Egyptian Hieroglyph E021 -\U130EC;Egyptian Hieroglyph E022 -\U130ED;Egyptian Hieroglyph E023 -\U130EE;Egyptian Hieroglyph E024 -\U130EF;Egyptian Hieroglyph E025 -\U130F0;Egyptian Hieroglyph E026 -\U130F1;Egyptian Hieroglyph E027 -\U130F2;Egyptian Hieroglyph E028 -\U130F3;Egyptian Hieroglyph E028A -\U130F4;Egyptian Hieroglyph E029 -\U130F5;Egyptian Hieroglyph E030 -\U130F6;Egyptian Hieroglyph E031 -\U130F7;Egyptian Hieroglyph E032 -\U130F8;Egyptian Hieroglyph E033 -\U130F9;Egyptian Hieroglyph E034 -\U130FA;Egyptian Hieroglyph E034A -\U130FB;Egyptian Hieroglyph E036 -\U130FC;Egyptian Hieroglyph E037 -\U130FD;Egyptian Hieroglyph E038 -\U130FE;Egyptian Hieroglyph F001 -\U130FF;Egyptian Hieroglyph F001A -\U13100;Egyptian Hieroglyph F002 -\U13101;Egyptian Hieroglyph F003 -\U13102;Egyptian Hieroglyph F004 -\U13103;Egyptian Hieroglyph F005 -\U13104;Egyptian Hieroglyph F006 -\U13105;Egyptian Hieroglyph F007 -\U13106;Egyptian Hieroglyph F008 -\U13107;Egyptian Hieroglyph F009 -\U13108;Egyptian Hieroglyph F010 -\U13109;Egyptian Hieroglyph F011 -\U1310A;Egyptian Hieroglyph F012 -\U1310B;Egyptian Hieroglyph F013 -\U1310C;Egyptian Hieroglyph F013A -\U1310D;Egyptian Hieroglyph F014 -\U1310E;Egyptian Hieroglyph F015 -\U1310F;Egyptian Hieroglyph F016 -\U13110;Egyptian Hieroglyph F017 -\U13111;Egyptian Hieroglyph F018 -\U13112;Egyptian Hieroglyph F019 -\U13113;Egyptian Hieroglyph F020 -\U13114;Egyptian Hieroglyph F021 -\U13115;Egyptian Hieroglyph F021A -\U13116;Egyptian Hieroglyph F022 -\U13117;Egyptian Hieroglyph F023 -\U13118;Egyptian Hieroglyph F024 -\U13119;Egyptian Hieroglyph F025 -\U1311A;Egyptian Hieroglyph F026 -\U1311B;Egyptian Hieroglyph F027 -\U1311C;Egyptian Hieroglyph F028 -\U1311D;Egyptian Hieroglyph F029 -\U1311E;Egyptian Hieroglyph F030 -\U1311F;Egyptian Hieroglyph F031 -\U13120;Egyptian Hieroglyph F031A -\U13121;Egyptian Hieroglyph F032 -\U13122;Egyptian Hieroglyph F033 -\U13123;Egyptian Hieroglyph F034 -\U13124;Egyptian Hieroglyph F035 -\U13125;Egyptian Hieroglyph F036 -\U13126;Egyptian Hieroglyph F037 -\U13127;Egyptian Hieroglyph F037A -\U13128;Egyptian Hieroglyph F038 -\U13129;Egyptian Hieroglyph F038A -\U1312A;Egyptian Hieroglyph F039 -\U1312B;Egyptian Hieroglyph F040 -\U1312C;Egyptian Hieroglyph F041 -\U1312D;Egyptian Hieroglyph F042 -\U1312E;Egyptian Hieroglyph F043 -\U1312F;Egyptian Hieroglyph F044 -\U13130;Egyptian Hieroglyph F045 -\U13131;Egyptian Hieroglyph F045A -\U13132;Egyptian Hieroglyph F046 -\U13133;Egyptian Hieroglyph F046A -\U13134;Egyptian Hieroglyph F047 -\U13135;Egyptian Hieroglyph F047A -\U13136;Egyptian Hieroglyph F048 -\U13137;Egyptian Hieroglyph F049 -\U13138;Egyptian Hieroglyph F050 -\U13139;Egyptian Hieroglyph F051 -\U1313A;Egyptian Hieroglyph F051A -\U1313B;Egyptian Hieroglyph F051B -\U1313C;Egyptian Hieroglyph F051C -\U1313D;Egyptian Hieroglyph F052 -\U1313E;Egyptian Hieroglyph F053 -\U1313F;Egyptian Hieroglyph G001 -\U13140;Egyptian Hieroglyph G002 -\U13141;Egyptian Hieroglyph G003 -\U13142;Egyptian Hieroglyph G004 -\U13143;Egyptian Hieroglyph G005 -\U13144;Egyptian Hieroglyph G006 -\U13145;Egyptian Hieroglyph G006A -\U13146;Egyptian Hieroglyph G007 -\U13147;Egyptian Hieroglyph G007A -\U13148;Egyptian Hieroglyph G007B -\U13149;Egyptian Hieroglyph G008 -\U1314A;Egyptian Hieroglyph G009 -\U1314B;Egyptian Hieroglyph G010 -\U1314C;Egyptian Hieroglyph G011 -\U1314D;Egyptian Hieroglyph G011A -\U1314E;Egyptian Hieroglyph G012 -\U1314F;Egyptian Hieroglyph G013 -\U13150;Egyptian Hieroglyph G014 -\U13151;Egyptian Hieroglyph G015 -\U13152;Egyptian Hieroglyph G016 -\U13153;Egyptian Hieroglyph G017 -\U13154;Egyptian Hieroglyph G018 -\U13155;Egyptian Hieroglyph G019 -\U13156;Egyptian Hieroglyph G020 -\U13157;Egyptian Hieroglyph G020A -\U13158;Egyptian Hieroglyph G021 -\U13159;Egyptian Hieroglyph G022 -\U1315A;Egyptian Hieroglyph G023 -\U1315B;Egyptian Hieroglyph G024 -\U1315C;Egyptian Hieroglyph G025 -\U1315D;Egyptian Hieroglyph G026 -\U1315E;Egyptian Hieroglyph G026A -\U1315F;Egyptian Hieroglyph G027 -\U13160;Egyptian Hieroglyph G028 -\U13161;Egyptian Hieroglyph G029 -\U13162;Egyptian Hieroglyph G030 -\U13163;Egyptian Hieroglyph G031 -\U13164;Egyptian Hieroglyph G032 -\U13165;Egyptian Hieroglyph G033 -\U13166;Egyptian Hieroglyph G034 -\U13167;Egyptian Hieroglyph G035 -\U13168;Egyptian Hieroglyph G036 -\U13169;Egyptian Hieroglyph G036A -\U1316A;Egyptian Hieroglyph G037 -\U1316B;Egyptian Hieroglyph G037A -\U1316C;Egyptian Hieroglyph G038 -\U1316D;Egyptian Hieroglyph G039 -\U1316E;Egyptian Hieroglyph G040 -\U1316F;Egyptian Hieroglyph G041 -\U13170;Egyptian Hieroglyph G042 -\U13171;Egyptian Hieroglyph G043 -\U13172;Egyptian Hieroglyph G043A -\U13173;Egyptian Hieroglyph G044 -\U13174;Egyptian Hieroglyph G045 -\U13175;Egyptian Hieroglyph G045A -\U13176;Egyptian Hieroglyph G046 -\U13177;Egyptian Hieroglyph G047 -\U13178;Egyptian Hieroglyph G048 -\U13179;Egyptian Hieroglyph G049 -\U1317A;Egyptian Hieroglyph G050 -\U1317B;Egyptian Hieroglyph G051 -\U1317C;Egyptian Hieroglyph G052 -\U1317D;Egyptian Hieroglyph G053 -\U1317E;Egyptian Hieroglyph G054 -\U1317F;Egyptian Hieroglyph H001 -\U13180;Egyptian Hieroglyph H002 -\U13181;Egyptian Hieroglyph H003 -\U13182;Egyptian Hieroglyph H004 -\U13183;Egyptian Hieroglyph H005 -\U13184;Egyptian Hieroglyph H006 -\U13185;Egyptian Hieroglyph H006A -\U13186;Egyptian Hieroglyph H007 -\U13187;Egyptian Hieroglyph H008 -\U13188;Egyptian Hieroglyph I001 -\U13189;Egyptian Hieroglyph I002 -\U1318A;Egyptian Hieroglyph I003 -\U1318B;Egyptian Hieroglyph I004 -\U1318C;Egyptian Hieroglyph I005 -\U1318D;Egyptian Hieroglyph I005A -\U1318E;Egyptian Hieroglyph I006 -\U1318F;Egyptian Hieroglyph I007 -\U13190;Egyptian Hieroglyph I008 -\U13191;Egyptian Hieroglyph I009 -\U13192;Egyptian Hieroglyph I009A -\U13193;Egyptian Hieroglyph I010 -\U13194;Egyptian Hieroglyph I010A -\U13195;Egyptian Hieroglyph I011 -\U13196;Egyptian Hieroglyph I011A -\U13197;Egyptian Hieroglyph I012 -\U13198;Egyptian Hieroglyph I013 -\U13199;Egyptian Hieroglyph I014 -\U1319A;Egyptian Hieroglyph I015 -\U1319B;Egyptian Hieroglyph K001 -\U1319C;Egyptian Hieroglyph K002 -\U1319D;Egyptian Hieroglyph K003 -\U1319E;Egyptian Hieroglyph K004 -\U1319F;Egyptian Hieroglyph K005 -\U131A0;Egyptian Hieroglyph K006 -\U131A1;Egyptian Hieroglyph K007 -\U131A2;Egyptian Hieroglyph K008 -\U131A3;Egyptian Hieroglyph L001 -\U131A4;Egyptian Hieroglyph L002 -\U131A5;Egyptian Hieroglyph L002A -\U131A6;Egyptian Hieroglyph L003 -\U131A7;Egyptian Hieroglyph L004 -\U131A8;Egyptian Hieroglyph L005 -\U131A9;Egyptian Hieroglyph L006 -\U131AA;Egyptian Hieroglyph L006A -\U131AB;Egyptian Hieroglyph L007 -\U131AC;Egyptian Hieroglyph L008 -\U131AD;Egyptian Hieroglyph M001 -\U131AE;Egyptian Hieroglyph M001A -\U131AF;Egyptian Hieroglyph M001B -\U131B0;Egyptian Hieroglyph M002 -\U131B1;Egyptian Hieroglyph M003 -\U131B2;Egyptian Hieroglyph M003A -\U131B3;Egyptian Hieroglyph M004 -\U131B4;Egyptian Hieroglyph M005 -\U131B5;Egyptian Hieroglyph M006 -\U131B6;Egyptian Hieroglyph M007 -\U131B7;Egyptian Hieroglyph M008 -\U131B8;Egyptian Hieroglyph M009 -\U131B9;Egyptian Hieroglyph M010 -\U131BA;Egyptian Hieroglyph M010A -\U131BB;Egyptian Hieroglyph M011 -\U131BC;Egyptian Hieroglyph M012 -\U131BD;Egyptian Hieroglyph M012A -\U131BE;Egyptian Hieroglyph M012B -\U131BF;Egyptian Hieroglyph M012C -\U131C0;Egyptian Hieroglyph M012D -\U131C1;Egyptian Hieroglyph M012E -\U131C2;Egyptian Hieroglyph M012F -\U131C3;Egyptian Hieroglyph M012G -\U131C4;Egyptian Hieroglyph M012H -\U131C5;Egyptian Hieroglyph M013 -\U131C6;Egyptian Hieroglyph M014 -\U131C7;Egyptian Hieroglyph M015 -\U131C8;Egyptian Hieroglyph M015A -\U131C9;Egyptian Hieroglyph M016 -\U131CA;Egyptian Hieroglyph M016A -\U131CB;Egyptian Hieroglyph M017 -\U131CC;Egyptian Hieroglyph M017A -\U131CD;Egyptian Hieroglyph M018 -\U131CE;Egyptian Hieroglyph M019 -\U131CF;Egyptian Hieroglyph M020 -\U131D0;Egyptian Hieroglyph M021 -\U131D1;Egyptian Hieroglyph M022 -\U131D2;Egyptian Hieroglyph M022A -\U131D3;Egyptian Hieroglyph M023 -\U131D4;Egyptian Hieroglyph M024 -\U131D5;Egyptian Hieroglyph M024A -\U131D6;Egyptian Hieroglyph M025 -\U131D7;Egyptian Hieroglyph M026 -\U131D8;Egyptian Hieroglyph M027 -\U131D9;Egyptian Hieroglyph M028 -\U131DA;Egyptian Hieroglyph M028A -\U131DB;Egyptian Hieroglyph M029 -\U131DC;Egyptian Hieroglyph M030 -\U131DD;Egyptian Hieroglyph M031 -\U131DE;Egyptian Hieroglyph M031A -\U131DF;Egyptian Hieroglyph M032 -\U131E0;Egyptian Hieroglyph M033 -\U131E1;Egyptian Hieroglyph M033A -\U131E2;Egyptian Hieroglyph M033B -\U131E3;Egyptian Hieroglyph M034 -\U131E4;Egyptian Hieroglyph M035 -\U131E5;Egyptian Hieroglyph M036 -\U131E6;Egyptian Hieroglyph M037 -\U131E7;Egyptian Hieroglyph M038 -\U131E8;Egyptian Hieroglyph M039 -\U131E9;Egyptian Hieroglyph M040 -\U131EA;Egyptian Hieroglyph M040A -\U131EB;Egyptian Hieroglyph M041 -\U131EC;Egyptian Hieroglyph M042 -\U131ED;Egyptian Hieroglyph M043 -\U131EE;Egyptian Hieroglyph M044 -\U131EF;Egyptian Hieroglyph N001 -\U131F0;Egyptian Hieroglyph N002 -\U131F1;Egyptian Hieroglyph N003 -\U131F2;Egyptian Hieroglyph N004 -\U131F3;Egyptian Hieroglyph N005 -\U131F4;Egyptian Hieroglyph N006 -\U131F5;Egyptian Hieroglyph N007 -\U131F6;Egyptian Hieroglyph N008 -\U131F7;Egyptian Hieroglyph N009 -\U131F8;Egyptian Hieroglyph N010 -\U131F9;Egyptian Hieroglyph N011 -\U131FA;Egyptian Hieroglyph N012 -\U131FB;Egyptian Hieroglyph N013 -\U131FC;Egyptian Hieroglyph N014 -\U131FD;Egyptian Hieroglyph N015 -\U131FE;Egyptian Hieroglyph N016 -\U131FF;Egyptian Hieroglyph N017 -\U13200;Egyptian Hieroglyph N018 -\U13201;Egyptian Hieroglyph N018A -\U13202;Egyptian Hieroglyph N018B -\U13203;Egyptian Hieroglyph N019 -\U13204;Egyptian Hieroglyph N020 -\U13205;Egyptian Hieroglyph N021 -\U13206;Egyptian Hieroglyph N022 -\U13207;Egyptian Hieroglyph N023 -\U13208;Egyptian Hieroglyph N024 -\U13209;Egyptian Hieroglyph N025 -\U1320A;Egyptian Hieroglyph N025A -\U1320B;Egyptian Hieroglyph N026 -\U1320C;Egyptian Hieroglyph N027 -\U1320D;Egyptian Hieroglyph N028 -\U1320E;Egyptian Hieroglyph N029 -\U1320F;Egyptian Hieroglyph N030 -\U13210;Egyptian Hieroglyph N031 -\U13211;Egyptian Hieroglyph N032 -\U13212;Egyptian Hieroglyph N033 -\U13213;Egyptian Hieroglyph N033A -\U13214;Egyptian Hieroglyph N034 -\U13215;Egyptian Hieroglyph N034A -\U13216;Egyptian Hieroglyph N035 -\U13217;Egyptian Hieroglyph N035A -\U13218;Egyptian Hieroglyph N036 -\U13219;Egyptian Hieroglyph N037 -\U1321A;Egyptian Hieroglyph N037A -\U1321B;Egyptian Hieroglyph N038 -\U1321C;Egyptian Hieroglyph N039 -\U1321D;Egyptian Hieroglyph N040 -\U1321E;Egyptian Hieroglyph N041 -\U1321F;Egyptian Hieroglyph N042 -\U13220;Egyptian Hieroglyph Nl001 -\U13221;Egyptian Hieroglyph Nl002 -\U13222;Egyptian Hieroglyph Nl003 -\U13223;Egyptian Hieroglyph Nl004 -\U13224;Egyptian Hieroglyph Nl005 -\U13225;Egyptian Hieroglyph Nl005A -\U13226;Egyptian Hieroglyph Nl006 -\U13227;Egyptian Hieroglyph Nl007 -\U13228;Egyptian Hieroglyph Nl008 -\U13229;Egyptian Hieroglyph Nl009 -\U1322A;Egyptian Hieroglyph Nl010 -\U1322B;Egyptian Hieroglyph Nl011 -\U1322C;Egyptian Hieroglyph Nl012 -\U1322D;Egyptian Hieroglyph Nl013 -\U1322E;Egyptian Hieroglyph Nl014 -\U1322F;Egyptian Hieroglyph Nl015 -\U13230;Egyptian Hieroglyph Nl016 -\U13231;Egyptian Hieroglyph Nl017 -\U13232;Egyptian Hieroglyph Nl017A -\U13233;Egyptian Hieroglyph Nl018 -\U13234;Egyptian Hieroglyph Nl019 -\U13235;Egyptian Hieroglyph Nl020 -\U13236;Egyptian Hieroglyph Nu001 -\U13237;Egyptian Hieroglyph Nu002 -\U13238;Egyptian Hieroglyph Nu003 -\U13239;Egyptian Hieroglyph Nu004 -\U1323A;Egyptian Hieroglyph Nu005 -\U1323B;Egyptian Hieroglyph Nu006 -\U1323C;Egyptian Hieroglyph Nu007 -\U1323D;Egyptian Hieroglyph Nu008 -\U1323E;Egyptian Hieroglyph Nu009 -\U1323F;Egyptian Hieroglyph Nu010 -\U13240;Egyptian Hieroglyph Nu010A -\U13241;Egyptian Hieroglyph Nu011 -\U13242;Egyptian Hieroglyph Nu011A -\U13243;Egyptian Hieroglyph Nu012 -\U13244;Egyptian Hieroglyph Nu013 -\U13245;Egyptian Hieroglyph Nu014 -\U13246;Egyptian Hieroglyph Nu015 -\U13247;Egyptian Hieroglyph Nu016 -\U13248;Egyptian Hieroglyph Nu017 -\U13249;Egyptian Hieroglyph Nu018 -\U1324A;Egyptian Hieroglyph Nu018A -\U1324B;Egyptian Hieroglyph Nu019 -\U1324C;Egyptian Hieroglyph Nu020 -\U1324D;Egyptian Hieroglyph Nu021 -\U1324E;Egyptian Hieroglyph Nu022 -\U1324F;Egyptian Hieroglyph Nu022A -\U13250;Egyptian Hieroglyph O001 -\U13251;Egyptian Hieroglyph O001A -\U13252;Egyptian Hieroglyph O002 -\U13253;Egyptian Hieroglyph O003 -\U13254;Egyptian Hieroglyph O004 -\U13255;Egyptian Hieroglyph O005 -\U13256;Egyptian Hieroglyph O005A -\U13257;Egyptian Hieroglyph O006 -\U13258;Egyptian Hieroglyph O006A -\U13259;Egyptian Hieroglyph O006B -\U1325A;Egyptian Hieroglyph O006C -\U1325B;Egyptian Hieroglyph O006D -\U1325C;Egyptian Hieroglyph O006E -\U1325D;Egyptian Hieroglyph O006F -\U1325E;Egyptian Hieroglyph O007 -\U1325F;Egyptian Hieroglyph O008 -\U13260;Egyptian Hieroglyph O009 -\U13261;Egyptian Hieroglyph O010 -\U13262;Egyptian Hieroglyph O010A -\U13263;Egyptian Hieroglyph O010B -\U13264;Egyptian Hieroglyph O010C -\U13265;Egyptian Hieroglyph O011 -\U13266;Egyptian Hieroglyph O012 -\U13267;Egyptian Hieroglyph O013 -\U13268;Egyptian Hieroglyph O014 -\U13269;Egyptian Hieroglyph O015 -\U1326A;Egyptian Hieroglyph O016 -\U1326B;Egyptian Hieroglyph O017 -\U1326C;Egyptian Hieroglyph O018 -\U1326D;Egyptian Hieroglyph O019 -\U1326E;Egyptian Hieroglyph O019A -\U1326F;Egyptian Hieroglyph O020 -\U13270;Egyptian Hieroglyph O020A -\U13271;Egyptian Hieroglyph O021 -\U13272;Egyptian Hieroglyph O022 -\U13273;Egyptian Hieroglyph O023 -\U13274;Egyptian Hieroglyph O024 -\U13275;Egyptian Hieroglyph O024A -\U13276;Egyptian Hieroglyph O025 -\U13277;Egyptian Hieroglyph O025A -\U13278;Egyptian Hieroglyph O026 -\U13279;Egyptian Hieroglyph O027 -\U1327A;Egyptian Hieroglyph O028 -\U1327B;Egyptian Hieroglyph O029 -\U1327C;Egyptian Hieroglyph O029A -\U1327D;Egyptian Hieroglyph O030 -\U1327E;Egyptian Hieroglyph O030A -\U1327F;Egyptian Hieroglyph O031 -\U13280;Egyptian Hieroglyph O032 -\U13281;Egyptian Hieroglyph O033 -\U13282;Egyptian Hieroglyph O033A -\U13283;Egyptian Hieroglyph O034 -\U13284;Egyptian Hieroglyph O035 -\U13285;Egyptian Hieroglyph O036 -\U13286;Egyptian Hieroglyph O036A -\U13287;Egyptian Hieroglyph O036B -\U13288;Egyptian Hieroglyph O036C -\U13289;Egyptian Hieroglyph O036D -\U1328A;Egyptian Hieroglyph O037 -\U1328B;Egyptian Hieroglyph O038 -\U1328C;Egyptian Hieroglyph O039 -\U1328D;Egyptian Hieroglyph O040 -\U1328E;Egyptian Hieroglyph O041 -\U1328F;Egyptian Hieroglyph O042 -\U13290;Egyptian Hieroglyph O043 -\U13291;Egyptian Hieroglyph O044 -\U13292;Egyptian Hieroglyph O045 -\U13293;Egyptian Hieroglyph O046 -\U13294;Egyptian Hieroglyph O047 -\U13295;Egyptian Hieroglyph O048 -\U13296;Egyptian Hieroglyph O049 -\U13297;Egyptian Hieroglyph O050 -\U13298;Egyptian Hieroglyph O050A -\U13299;Egyptian Hieroglyph O050B -\U1329A;Egyptian Hieroglyph O051 -\U1329B;Egyptian Hieroglyph P001 -\U1329C;Egyptian Hieroglyph P001A -\U1329D;Egyptian Hieroglyph P002 -\U1329E;Egyptian Hieroglyph P003 -\U1329F;Egyptian Hieroglyph P003A -\U132A0;Egyptian Hieroglyph P004 -\U132A1;Egyptian Hieroglyph P005 -\U132A2;Egyptian Hieroglyph P006 -\U132A3;Egyptian Hieroglyph P007 -\U132A4;Egyptian Hieroglyph P008 -\U132A5;Egyptian Hieroglyph P009 -\U132A6;Egyptian Hieroglyph P010 -\U132A7;Egyptian Hieroglyph P011 -\U132A8;Egyptian Hieroglyph Q001 -\U132A9;Egyptian Hieroglyph Q002 -\U132AA;Egyptian Hieroglyph Q003 -\U132AB;Egyptian Hieroglyph Q004 -\U132AC;Egyptian Hieroglyph Q005 -\U132AD;Egyptian Hieroglyph Q006 -\U132AE;Egyptian Hieroglyph Q007 -\U132AF;Egyptian Hieroglyph R001 -\U132B0;Egyptian Hieroglyph R002 -\U132B1;Egyptian Hieroglyph R002A -\U132B2;Egyptian Hieroglyph R003 -\U132B3;Egyptian Hieroglyph R003A -\U132B4;Egyptian Hieroglyph R003B -\U132B5;Egyptian Hieroglyph R004 -\U132B6;Egyptian Hieroglyph R005 -\U132B7;Egyptian Hieroglyph R006 -\U132B8;Egyptian Hieroglyph R007 -\U132B9;Egyptian Hieroglyph R008 -\U132BA;Egyptian Hieroglyph R009 -\U132BB;Egyptian Hieroglyph R010 -\U132BC;Egyptian Hieroglyph R010A -\U132BD;Egyptian Hieroglyph R011 -\U132BE;Egyptian Hieroglyph R012 -\U132BF;Egyptian Hieroglyph R013 -\U132C0;Egyptian Hieroglyph R014 -\U132C1;Egyptian Hieroglyph R015 -\U132C2;Egyptian Hieroglyph R016 -\U132C3;Egyptian Hieroglyph R016A -\U132C4;Egyptian Hieroglyph R017 -\U132C5;Egyptian Hieroglyph R018 -\U132C6;Egyptian Hieroglyph R019 -\U132C7;Egyptian Hieroglyph R020 -\U132C8;Egyptian Hieroglyph R021 -\U132C9;Egyptian Hieroglyph R022 -\U132CA;Egyptian Hieroglyph R023 -\U132CB;Egyptian Hieroglyph R024 -\U132CC;Egyptian Hieroglyph R025 -\U132CD;Egyptian Hieroglyph R026 -\U132CE;Egyptian Hieroglyph R027 -\U132CF;Egyptian Hieroglyph R028 -\U132D0;Egyptian Hieroglyph R029 -\U132D1;Egyptian Hieroglyph S001 -\U132D2;Egyptian Hieroglyph S002 -\U132D3;Egyptian Hieroglyph S002A -\U132D4;Egyptian Hieroglyph S003 -\U132D5;Egyptian Hieroglyph S004 -\U132D6;Egyptian Hieroglyph S005 -\U132D7;Egyptian Hieroglyph S006 -\U132D8;Egyptian Hieroglyph S006A -\U132D9;Egyptian Hieroglyph S007 -\U132DA;Egyptian Hieroglyph S008 -\U132DB;Egyptian Hieroglyph S009 -\U132DC;Egyptian Hieroglyph S010 -\U132DD;Egyptian Hieroglyph S011 -\U132DE;Egyptian Hieroglyph S012 -\U132DF;Egyptian Hieroglyph S013 -\U132E0;Egyptian Hieroglyph S014 -\U132E1;Egyptian Hieroglyph S014A -\U132E2;Egyptian Hieroglyph S014B -\U132E3;Egyptian Hieroglyph S015 -\U132E4;Egyptian Hieroglyph S016 -\U132E5;Egyptian Hieroglyph S017 -\U132E6;Egyptian Hieroglyph S017A -\U132E7;Egyptian Hieroglyph S018 -\U132E8;Egyptian Hieroglyph S019 -\U132E9;Egyptian Hieroglyph S020 -\U132EA;Egyptian Hieroglyph S021 -\U132EB;Egyptian Hieroglyph S022 -\U132EC;Egyptian Hieroglyph S023 -\U132ED;Egyptian Hieroglyph S024 -\U132EE;Egyptian Hieroglyph S025 -\U132EF;Egyptian Hieroglyph S026 -\U132F0;Egyptian Hieroglyph S026A -\U132F1;Egyptian Hieroglyph S026B -\U132F2;Egyptian Hieroglyph S027 -\U132F3;Egyptian Hieroglyph S028 -\U132F4;Egyptian Hieroglyph S029 -\U132F5;Egyptian Hieroglyph S030 -\U132F6;Egyptian Hieroglyph S031 -\U132F7;Egyptian Hieroglyph S032 -\U132F8;Egyptian Hieroglyph S033 -\U132F9;Egyptian Hieroglyph S034 -\U132FA;Egyptian Hieroglyph S035 -\U132FB;Egyptian Hieroglyph S035A -\U132FC;Egyptian Hieroglyph S036 -\U132FD;Egyptian Hieroglyph S037 -\U132FE;Egyptian Hieroglyph S038 -\U132FF;Egyptian Hieroglyph S039 -\U13300;Egyptian Hieroglyph S040 -\U13301;Egyptian Hieroglyph S041 -\U13302;Egyptian Hieroglyph S042 -\U13303;Egyptian Hieroglyph S043 -\U13304;Egyptian Hieroglyph S044 -\U13305;Egyptian Hieroglyph S045 -\U13306;Egyptian Hieroglyph S046 -\U13307;Egyptian Hieroglyph T001 -\U13308;Egyptian Hieroglyph T002 -\U13309;Egyptian Hieroglyph T003 -\U1330A;Egyptian Hieroglyph T003A -\U1330B;Egyptian Hieroglyph T004 -\U1330C;Egyptian Hieroglyph T005 -\U1330D;Egyptian Hieroglyph T006 -\U1330E;Egyptian Hieroglyph T007 -\U1330F;Egyptian Hieroglyph T007A -\U13310;Egyptian Hieroglyph T008 -\U13311;Egyptian Hieroglyph T008A -\U13312;Egyptian Hieroglyph T009 -\U13313;Egyptian Hieroglyph T009A -\U13314;Egyptian Hieroglyph T010 -\U13315;Egyptian Hieroglyph T011 -\U13316;Egyptian Hieroglyph T011A -\U13317;Egyptian Hieroglyph T012 -\U13318;Egyptian Hieroglyph T013 -\U13319;Egyptian Hieroglyph T014 -\U1331A;Egyptian Hieroglyph T015 -\U1331B;Egyptian Hieroglyph T016 -\U1331C;Egyptian Hieroglyph T016A -\U1331D;Egyptian Hieroglyph T017 -\U1331E;Egyptian Hieroglyph T018 -\U1331F;Egyptian Hieroglyph T019 -\U13320;Egyptian Hieroglyph T020 -\U13321;Egyptian Hieroglyph T021 -\U13322;Egyptian Hieroglyph T022 -\U13323;Egyptian Hieroglyph T023 -\U13324;Egyptian Hieroglyph T024 -\U13325;Egyptian Hieroglyph T025 -\U13326;Egyptian Hieroglyph T026 -\U13327;Egyptian Hieroglyph T027 -\U13328;Egyptian Hieroglyph T028 -\U13329;Egyptian Hieroglyph T029 -\U1332A;Egyptian Hieroglyph T030 -\U1332B;Egyptian Hieroglyph T031 -\U1332C;Egyptian Hieroglyph T032 -\U1332D;Egyptian Hieroglyph T032A -\U1332E;Egyptian Hieroglyph T033 -\U1332F;Egyptian Hieroglyph T033A -\U13330;Egyptian Hieroglyph T034 -\U13331;Egyptian Hieroglyph T035 -\U13332;Egyptian Hieroglyph T036 -\U13333;Egyptian Hieroglyph U001 -\U13334;Egyptian Hieroglyph U002 -\U13335;Egyptian Hieroglyph U003 -\U13336;Egyptian Hieroglyph U004 -\U13337;Egyptian Hieroglyph U005 -\U13338;Egyptian Hieroglyph U006 -\U13339;Egyptian Hieroglyph U006A -\U1333A;Egyptian Hieroglyph U006B -\U1333B;Egyptian Hieroglyph U007 -\U1333C;Egyptian Hieroglyph U008 -\U1333D;Egyptian Hieroglyph U009 -\U1333E;Egyptian Hieroglyph U010 -\U1333F;Egyptian Hieroglyph U011 -\U13340;Egyptian Hieroglyph U012 -\U13341;Egyptian Hieroglyph U013 -\U13342;Egyptian Hieroglyph U014 -\U13343;Egyptian Hieroglyph U015 -\U13344;Egyptian Hieroglyph U016 -\U13345;Egyptian Hieroglyph U017 -\U13346;Egyptian Hieroglyph U018 -\U13347;Egyptian Hieroglyph U019 -\U13348;Egyptian Hieroglyph U020 -\U13349;Egyptian Hieroglyph U021 -\U1334A;Egyptian Hieroglyph U022 -\U1334B;Egyptian Hieroglyph U023 -\U1334C;Egyptian Hieroglyph U023A -\U1334D;Egyptian Hieroglyph U024 -\U1334E;Egyptian Hieroglyph U025 -\U1334F;Egyptian Hieroglyph U026 -\U13350;Egyptian Hieroglyph U027 -\U13351;Egyptian Hieroglyph U028 -\U13352;Egyptian Hieroglyph U029 -\U13353;Egyptian Hieroglyph U029A -\U13354;Egyptian Hieroglyph U030 -\U13355;Egyptian Hieroglyph U031 -\U13356;Egyptian Hieroglyph U032 -\U13357;Egyptian Hieroglyph U032A -\U13358;Egyptian Hieroglyph U033 -\U13359;Egyptian Hieroglyph U034 -\U1335A;Egyptian Hieroglyph U035 -\U1335B;Egyptian Hieroglyph U036 -\U1335C;Egyptian Hieroglyph U037 -\U1335D;Egyptian Hieroglyph U038 -\U1335E;Egyptian Hieroglyph U039 -\U1335F;Egyptian Hieroglyph U040 -\U13360;Egyptian Hieroglyph U041 -\U13361;Egyptian Hieroglyph U042 -\U13362;Egyptian Hieroglyph V001 -\U13363;Egyptian Hieroglyph V001A -\U13364;Egyptian Hieroglyph V001B -\U13365;Egyptian Hieroglyph V001C -\U13366;Egyptian Hieroglyph V001D -\U13367;Egyptian Hieroglyph V001E -\U13368;Egyptian Hieroglyph V001F -\U13369;Egyptian Hieroglyph V001G -\U1336A;Egyptian Hieroglyph V001H -\U1336B;Egyptian Hieroglyph V001I -\U1336C;Egyptian Hieroglyph V002 -\U1336D;Egyptian Hieroglyph V002A -\U1336E;Egyptian Hieroglyph V003 -\U1336F;Egyptian Hieroglyph V004 -\U13370;Egyptian Hieroglyph V005 -\U13371;Egyptian Hieroglyph V006 -\U13372;Egyptian Hieroglyph V007 -\U13373;Egyptian Hieroglyph V007A -\U13374;Egyptian Hieroglyph V007B -\U13375;Egyptian Hieroglyph V008 -\U13376;Egyptian Hieroglyph V009 -\U13377;Egyptian Hieroglyph V010 -\U13378;Egyptian Hieroglyph V011 -\U13379;Egyptian Hieroglyph V011A -\U1337A;Egyptian Hieroglyph V011B -\U1337B;Egyptian Hieroglyph V011C -\U1337C;Egyptian Hieroglyph V012 -\U1337D;Egyptian Hieroglyph V012A -\U1337E;Egyptian Hieroglyph V012B -\U1337F;Egyptian Hieroglyph V013 -\U13380;Egyptian Hieroglyph V014 -\U13381;Egyptian Hieroglyph V015 -\U13382;Egyptian Hieroglyph V016 -\U13383;Egyptian Hieroglyph V017 -\U13384;Egyptian Hieroglyph V018 -\U13385;Egyptian Hieroglyph V019 -\U13386;Egyptian Hieroglyph V020 -\U13387;Egyptian Hieroglyph V020A -\U13388;Egyptian Hieroglyph V020B -\U13389;Egyptian Hieroglyph V020C -\U1338A;Egyptian Hieroglyph V020D -\U1338B;Egyptian Hieroglyph V020E -\U1338C;Egyptian Hieroglyph V020F -\U1338D;Egyptian Hieroglyph V020G -\U1338E;Egyptian Hieroglyph V020H -\U1338F;Egyptian Hieroglyph V020I -\U13390;Egyptian Hieroglyph V020J -\U13391;Egyptian Hieroglyph V020K -\U13392;Egyptian Hieroglyph V020L -\U13393;Egyptian Hieroglyph V021 -\U13394;Egyptian Hieroglyph V022 -\U13395;Egyptian Hieroglyph V023 -\U13396;Egyptian Hieroglyph V023A -\U13397;Egyptian Hieroglyph V024 -\U13398;Egyptian Hieroglyph V025 -\U13399;Egyptian Hieroglyph V026 -\U1339A;Egyptian Hieroglyph V027 -\U1339B;Egyptian Hieroglyph V028 -\U1339C;Egyptian Hieroglyph V028A -\U1339D;Egyptian Hieroglyph V029 -\U1339E;Egyptian Hieroglyph V029A -\U1339F;Egyptian Hieroglyph V030 -\U133A0;Egyptian Hieroglyph V030A -\U133A1;Egyptian Hieroglyph V031 -\U133A2;Egyptian Hieroglyph V031A -\U133A3;Egyptian Hieroglyph V032 -\U133A4;Egyptian Hieroglyph V033 -\U133A5;Egyptian Hieroglyph V033A -\U133A6;Egyptian Hieroglyph V034 -\U133A7;Egyptian Hieroglyph V035 -\U133A8;Egyptian Hieroglyph V036 -\U133A9;Egyptian Hieroglyph V037 -\U133AA;Egyptian Hieroglyph V037A -\U133AB;Egyptian Hieroglyph V038 -\U133AC;Egyptian Hieroglyph V039 -\U133AD;Egyptian Hieroglyph V040 -\U133AE;Egyptian Hieroglyph V040A -\U133AF;Egyptian Hieroglyph W001 -\U133B0;Egyptian Hieroglyph W002 -\U133B1;Egyptian Hieroglyph W003 -\U133B2;Egyptian Hieroglyph W003A -\U133B3;Egyptian Hieroglyph W004 -\U133B4;Egyptian Hieroglyph W005 -\U133B5;Egyptian Hieroglyph W006 -\U133B6;Egyptian Hieroglyph W007 -\U133B7;Egyptian Hieroglyph W008 -\U133B8;Egyptian Hieroglyph W009 -\U133B9;Egyptian Hieroglyph W009A -\U133BA;Egyptian Hieroglyph W010 -\U133BB;Egyptian Hieroglyph W010A -\U133BC;Egyptian Hieroglyph W011 -\U133BD;Egyptian Hieroglyph W012 -\U133BE;Egyptian Hieroglyph W013 -\U133BF;Egyptian Hieroglyph W014 -\U133C0;Egyptian Hieroglyph W014A -\U133C1;Egyptian Hieroglyph W015 -\U133C2;Egyptian Hieroglyph W016 -\U133C3;Egyptian Hieroglyph W017 -\U133C4;Egyptian Hieroglyph W017A -\U133C5;Egyptian Hieroglyph W018 -\U133C6;Egyptian Hieroglyph W018A -\U133C7;Egyptian Hieroglyph W019 -\U133C8;Egyptian Hieroglyph W020 -\U133C9;Egyptian Hieroglyph W021 -\U133CA;Egyptian Hieroglyph W022 -\U133CB;Egyptian Hieroglyph W023 -\U133CC;Egyptian Hieroglyph W024 -\U133CD;Egyptian Hieroglyph W024A -\U133CE;Egyptian Hieroglyph W025 -\U133CF;Egyptian Hieroglyph X001 -\U133D0;Egyptian Hieroglyph X002 -\U133D1;Egyptian Hieroglyph X003 -\U133D2;Egyptian Hieroglyph X004 -\U133D3;Egyptian Hieroglyph X004A -\U133D4;Egyptian Hieroglyph X004B -\U133D5;Egyptian Hieroglyph X005 -\U133D6;Egyptian Hieroglyph X006 -\U133D7;Egyptian Hieroglyph X006A -\U133D8;Egyptian Hieroglyph X007 -\U133D9;Egyptian Hieroglyph X008 -\U133DA;Egyptian Hieroglyph X008A -\U133DB;Egyptian Hieroglyph Y001 -\U133DC;Egyptian Hieroglyph Y001A -\U133DD;Egyptian Hieroglyph Y002 -\U133DE;Egyptian Hieroglyph Y003 -\U133DF;Egyptian Hieroglyph Y004 -\U133E0;Egyptian Hieroglyph Y005 -\U133E1;Egyptian Hieroglyph Y006 -\U133E2;Egyptian Hieroglyph Y007 -\U133E3;Egyptian Hieroglyph Y008 -\U133E4;Egyptian Hieroglyph Z001 -\U133E5;Egyptian Hieroglyph Z002 -\U133E6;Egyptian Hieroglyph Z002A -\U133E7;Egyptian Hieroglyph Z002B -\U133E8;Egyptian Hieroglyph Z002C -\U133E9;Egyptian Hieroglyph Z002D -\U133EA;Egyptian Hieroglyph Z003 -\U133EB;Egyptian Hieroglyph Z003A -\U133EC;Egyptian Hieroglyph Z003B -\U133ED;Egyptian Hieroglyph Z004 -\U133EE;Egyptian Hieroglyph Z004A -\U133EF;Egyptian Hieroglyph Z005 -\U133F0;Egyptian Hieroglyph Z005A -\U133F1;Egyptian Hieroglyph Z006 -\U133F2;Egyptian Hieroglyph Z007 -\U133F3;Egyptian Hieroglyph Z008 -\U133F4;Egyptian Hieroglyph Z009 -\U133F5;Egyptian Hieroglyph Z010 -\U133F6;Egyptian Hieroglyph Z011 -\U133F7;Egyptian Hieroglyph Z012 -\U133F8;Egyptian Hieroglyph Z013 -\U133F9;Egyptian Hieroglyph Z014 -\U133FA;Egyptian Hieroglyph Z015 -\U133FB;Egyptian Hieroglyph Z015A -\U133FC;Egyptian Hieroglyph Z015B -\U133FD;Egyptian Hieroglyph Z015C -\U133FE;Egyptian Hieroglyph Z015D -\U133FF;Egyptian Hieroglyph Z015E -\U13400;Egyptian Hieroglyph Z015F -\U13401;Egyptian Hieroglyph Z015G -\U13402;Egyptian Hieroglyph Z015H -\U13403;Egyptian Hieroglyph Z015I -\U13404;Egyptian Hieroglyph Z016 -\U13405;Egyptian Hieroglyph Z016A -\U13406;Egyptian Hieroglyph Z016B -\U13407;Egyptian Hieroglyph Z016C -\U13408;Egyptian Hieroglyph Z016D -\U13409;Egyptian Hieroglyph Z016E -\U1340A;Egyptian Hieroglyph Z016F -\U1340B;Egyptian Hieroglyph Z016G -\U1340C;Egyptian Hieroglyph Z016H -\U1340D;Egyptian Hieroglyph Aa001 -\U1340E;Egyptian Hieroglyph Aa002 -\U1340F;Egyptian Hieroglyph Aa003 -\U13410;Egyptian Hieroglyph Aa004 -\U13411;Egyptian Hieroglyph Aa005 -\U13412;Egyptian Hieroglyph Aa006 -\U13413;Egyptian Hieroglyph Aa007 -\U13414;Egyptian Hieroglyph Aa007A -\U13415;Egyptian Hieroglyph Aa007B -\U13416;Egyptian Hieroglyph Aa008 -\U13417;Egyptian Hieroglyph Aa009 -\U13418;Egyptian Hieroglyph Aa010 -\U13419;Egyptian Hieroglyph Aa011 -\U1341A;Egyptian Hieroglyph Aa012 -\U1341B;Egyptian Hieroglyph Aa013 -\U1341C;Egyptian Hieroglyph Aa014 -\U1341D;Egyptian Hieroglyph Aa015 -\U1341E;Egyptian Hieroglyph Aa016 -\U1341F;Egyptian Hieroglyph Aa017 -\U13420;Egyptian Hieroglyph Aa018 -\U13421;Egyptian Hieroglyph Aa019 -\U13422;Egyptian Hieroglyph Aa020 -\U13423;Egyptian Hieroglyph Aa021 -\U13424;Egyptian Hieroglyph Aa022 -\U13425;Egyptian Hieroglyph Aa023 -\U13426;Egyptian Hieroglyph Aa024 -\U13427;Egyptian Hieroglyph Aa025 -\U13428;Egyptian Hieroglyph Aa026 -\U13429;Egyptian Hieroglyph Aa027 -\U1342A;Egyptian Hieroglyph Aa028 -\U1342B;Egyptian Hieroglyph Aa029 -\U1342C;Egyptian Hieroglyph Aa030 -\U1342D;Egyptian Hieroglyph Aa031 -\U1342E;Egyptian Hieroglyph Aa032 -\U1342F;Egyptian Hieroglyph V011D -\U13430;Egyptian Hieroglyph Vertical Joiner -\U13431;Egyptian Hieroglyph Horizontal Joiner -\U13432;Egyptian Hieroglyph Insert At Top Start -\U13433;Egyptian Hieroglyph Insert At Bottom Start -\U13434;Egyptian Hieroglyph Insert At Top End -\U13435;Egyptian Hieroglyph Insert At Bottom End -\U13436;Egyptian Hieroglyph Overlay Middle -\U13437;Egyptian Hieroglyph Begin Segment -\U13438;Egyptian Hieroglyph End Segment -\U13439;Egyptian Hieroglyph Insert At Middle -\U1343A;Egyptian Hieroglyph Insert At Top -\U1343B;Egyptian Hieroglyph Insert At Bottom -\U1343C;Egyptian Hieroglyph Begin Enclosure -\U1343D;Egyptian Hieroglyph End Enclosure -\U1343E;Egyptian Hieroglyph Begin Walled Enclosure -\U1343F;Egyptian Hieroglyph End Walled Enclosure -\U13440;Egyptian Hieroglyph Mirror Horizontally -\U13441;Egyptian Hieroglyph Full Blank -\U13442;Egyptian Hieroglyph Half Blank -\U13443;Egyptian Hieroglyph Lost Sign -\U13444;Egyptian Hieroglyph Half Lost Sign -\U13445;Egyptian Hieroglyph Tall Lost Sign -\U13446;Egyptian Hieroglyph Wide Lost Sign -\U13447;Egyptian Hieroglyph Modifier Damaged At Top Start -\U13448;Egyptian Hieroglyph Modifier Damaged At Bottom Start -\U13449;Egyptian Hieroglyph Modifier Damaged At Start -\U1344A;Egyptian Hieroglyph Modifier Damaged At Top End -\U1344B;Egyptian Hieroglyph Modifier Damaged At Top -\U1344C;Egyptian Hieroglyph Modifier Damaged At Bottom Start And Top End -\U1344D;Egyptian Hieroglyph Modifier Damaged At Start And Top -\U1344E;Egyptian Hieroglyph Modifier Damaged At Bottom End -\U1344F;Egyptian Hieroglyph Modifier Damaged At Top Start And Bottom End -\U13450;Egyptian Hieroglyph Modifier Damaged At Bottom -\U13451;Egyptian Hieroglyph Modifier Damaged At Start And Bottom -\U13452;Egyptian Hieroglyph Modifier Damaged At End -\U13453;Egyptian Hieroglyph Modifier Damaged At Top And End -\U13454;Egyptian Hieroglyph Modifier Damaged At Bottom And End -\U13455;Egyptian Hieroglyph Modifier Damaged -\U14400;Anatolian Hieroglyph A001 -\U14401;Anatolian Hieroglyph A002 -\U14402;Anatolian Hieroglyph A003 -\U14403;Anatolian Hieroglyph A004 -\U14404;Anatolian Hieroglyph A005 -\U14405;Anatolian Hieroglyph A006 -\U14406;Anatolian Hieroglyph A007 -\U14407;Anatolian Hieroglyph A008 -\U14408;Anatolian Hieroglyph A009 -\U14409;Anatolian Hieroglyph A010 -\U1440A;Anatolian Hieroglyph A010A -\U1440B;Anatolian Hieroglyph A011 -\U1440C;Anatolian Hieroglyph A012 -\U1440D;Anatolian Hieroglyph A013 -\U1440E;Anatolian Hieroglyph A014 -\U1440F;Anatolian Hieroglyph A015 -\U14410;Anatolian Hieroglyph A016 -\U14411;Anatolian Hieroglyph A017 -\U14412;Anatolian Hieroglyph A018 -\U14413;Anatolian Hieroglyph A019 -\U14414;Anatolian Hieroglyph A020 -\U14415;Anatolian Hieroglyph A021 -\U14416;Anatolian Hieroglyph A022 -\U14417;Anatolian Hieroglyph A023 -\U14418;Anatolian Hieroglyph A024 -\U14419;Anatolian Hieroglyph A025 -\U1441A;Anatolian Hieroglyph A026 -\U1441B;Anatolian Hieroglyph A026A -\U1441C;Anatolian Hieroglyph A027 -\U1441D;Anatolian Hieroglyph A028 -\U1441E;Anatolian Hieroglyph A029 -\U1441F;Anatolian Hieroglyph A030 -\U14420;Anatolian Hieroglyph A031 -\U14421;Anatolian Hieroglyph A032 -\U14422;Anatolian Hieroglyph A033 -\U14423;Anatolian Hieroglyph A034 -\U14424;Anatolian Hieroglyph A035 -\U14425;Anatolian Hieroglyph A036 -\U14426;Anatolian Hieroglyph A037 -\U14427;Anatolian Hieroglyph A038 -\U14428;Anatolian Hieroglyph A039 -\U14429;Anatolian Hieroglyph A039A -\U1442A;Anatolian Hieroglyph A040 -\U1442B;Anatolian Hieroglyph A041 -\U1442C;Anatolian Hieroglyph A041A -\U1442D;Anatolian Hieroglyph A042 -\U1442E;Anatolian Hieroglyph A043 -\U1442F;Anatolian Hieroglyph A044 -\U14430;Anatolian Hieroglyph A045 -\U14431;Anatolian Hieroglyph A045A -\U14432;Anatolian Hieroglyph A046 -\U14433;Anatolian Hieroglyph A046A -\U14434;Anatolian Hieroglyph A046B -\U14435;Anatolian Hieroglyph A047 -\U14436;Anatolian Hieroglyph A048 -\U14437;Anatolian Hieroglyph A049 -\U14438;Anatolian Hieroglyph A050 -\U14439;Anatolian Hieroglyph A051 -\U1443A;Anatolian Hieroglyph A052 -\U1443B;Anatolian Hieroglyph A053 -\U1443C;Anatolian Hieroglyph A054 -\U1443D;Anatolian Hieroglyph A055 -\U1443E;Anatolian Hieroglyph A056 -\U1443F;Anatolian Hieroglyph A057 -\U14440;Anatolian Hieroglyph A058 -\U14441;Anatolian Hieroglyph A059 -\U14442;Anatolian Hieroglyph A060 -\U14443;Anatolian Hieroglyph A061 -\U14444;Anatolian Hieroglyph A062 -\U14445;Anatolian Hieroglyph A063 -\U14446;Anatolian Hieroglyph A064 -\U14447;Anatolian Hieroglyph A065 -\U14448;Anatolian Hieroglyph A066 -\U14449;Anatolian Hieroglyph A066A -\U1444A;Anatolian Hieroglyph A066B -\U1444B;Anatolian Hieroglyph A066C -\U1444C;Anatolian Hieroglyph A067 -\U1444D;Anatolian Hieroglyph A068 -\U1444E;Anatolian Hieroglyph A069 -\U1444F;Anatolian Hieroglyph A070 -\U14450;Anatolian Hieroglyph A071 -\U14451;Anatolian Hieroglyph A072 -\U14452;Anatolian Hieroglyph A073 -\U14453;Anatolian Hieroglyph A074 -\U14454;Anatolian Hieroglyph A075 -\U14455;Anatolian Hieroglyph A076 -\U14456;Anatolian Hieroglyph A077 -\U14457;Anatolian Hieroglyph A078 -\U14458;Anatolian Hieroglyph A079 -\U14459;Anatolian Hieroglyph A080 -\U1445A;Anatolian Hieroglyph A081 -\U1445B;Anatolian Hieroglyph A082 -\U1445C;Anatolian Hieroglyph A083 -\U1445D;Anatolian Hieroglyph A084 -\U1445E;Anatolian Hieroglyph A085 -\U1445F;Anatolian Hieroglyph A086 -\U14460;Anatolian Hieroglyph A087 -\U14461;Anatolian Hieroglyph A088 -\U14462;Anatolian Hieroglyph A089 -\U14463;Anatolian Hieroglyph A090 -\U14464;Anatolian Hieroglyph A091 -\U14465;Anatolian Hieroglyph A092 -\U14466;Anatolian Hieroglyph A093 -\U14467;Anatolian Hieroglyph A094 -\U14468;Anatolian Hieroglyph A095 -\U14469;Anatolian Hieroglyph A096 -\U1446A;Anatolian Hieroglyph A097 -\U1446B;Anatolian Hieroglyph A097A -\U1446C;Anatolian Hieroglyph A098 -\U1446D;Anatolian Hieroglyph A098A -\U1446E;Anatolian Hieroglyph A099 -\U1446F;Anatolian Hieroglyph A100 -\U14470;Anatolian Hieroglyph A100A -\U14471;Anatolian Hieroglyph A101 -\U14472;Anatolian Hieroglyph A101A -\U14473;Anatolian Hieroglyph A102 -\U14474;Anatolian Hieroglyph A102A -\U14475;Anatolian Hieroglyph A103 -\U14476;Anatolian Hieroglyph A104 -\U14477;Anatolian Hieroglyph A104A -\U14478;Anatolian Hieroglyph A104B -\U14479;Anatolian Hieroglyph A104C -\U1447A;Anatolian Hieroglyph A105 -\U1447B;Anatolian Hieroglyph A105A -\U1447C;Anatolian Hieroglyph A105B -\U1447D;Anatolian Hieroglyph A106 -\U1447E;Anatolian Hieroglyph A107 -\U1447F;Anatolian Hieroglyph A107A -\U14480;Anatolian Hieroglyph A107B -\U14481;Anatolian Hieroglyph A107C -\U14482;Anatolian Hieroglyph A108 -\U14483;Anatolian Hieroglyph A109 -\U14484;Anatolian Hieroglyph A110 -\U14485;Anatolian Hieroglyph A110A -\U14486;Anatolian Hieroglyph A110B -\U14487;Anatolian Hieroglyph A111 -\U14488;Anatolian Hieroglyph A112 -\U14489;Anatolian Hieroglyph A113 -\U1448A;Anatolian Hieroglyph A114 -\U1448B;Anatolian Hieroglyph A115 -\U1448C;Anatolian Hieroglyph A115A -\U1448D;Anatolian Hieroglyph A116 -\U1448E;Anatolian Hieroglyph A117 -\U1448F;Anatolian Hieroglyph A118 -\U14490;Anatolian Hieroglyph A119 -\U14491;Anatolian Hieroglyph A120 -\U14492;Anatolian Hieroglyph A121 -\U14493;Anatolian Hieroglyph A122 -\U14494;Anatolian Hieroglyph A123 -\U14495;Anatolian Hieroglyph A124 -\U14496;Anatolian Hieroglyph A125 -\U14497;Anatolian Hieroglyph A125A -\U14498;Anatolian Hieroglyph A126 -\U14499;Anatolian Hieroglyph A127 -\U1449A;Anatolian Hieroglyph A128 -\U1449B;Anatolian Hieroglyph A129 -\U1449C;Anatolian Hieroglyph A130 -\U1449D;Anatolian Hieroglyph A131 -\U1449E;Anatolian Hieroglyph A132 -\U1449F;Anatolian Hieroglyph A133 -\U144A0;Anatolian Hieroglyph A134 -\U144A1;Anatolian Hieroglyph A135 -\U144A2;Anatolian Hieroglyph A135A -\U144A3;Anatolian Hieroglyph A136 -\U144A4;Anatolian Hieroglyph A137 -\U144A5;Anatolian Hieroglyph A138 -\U144A6;Anatolian Hieroglyph A139 -\U144A7;Anatolian Hieroglyph A140 -\U144A8;Anatolian Hieroglyph A141 -\U144A9;Anatolian Hieroglyph A142 -\U144AA;Anatolian Hieroglyph A143 -\U144AB;Anatolian Hieroglyph A144 -\U144AC;Anatolian Hieroglyph A145 -\U144AD;Anatolian Hieroglyph A146 -\U144AE;Anatolian Hieroglyph A147 -\U144AF;Anatolian Hieroglyph A148 -\U144B0;Anatolian Hieroglyph A149 -\U144B1;Anatolian Hieroglyph A150 -\U144B2;Anatolian Hieroglyph A151 -\U144B3;Anatolian Hieroglyph A152 -\U144B4;Anatolian Hieroglyph A153 -\U144B5;Anatolian Hieroglyph A154 -\U144B6;Anatolian Hieroglyph A155 -\U144B7;Anatolian Hieroglyph A156 -\U144B8;Anatolian Hieroglyph A157 -\U144B9;Anatolian Hieroglyph A158 -\U144BA;Anatolian Hieroglyph A159 -\U144BB;Anatolian Hieroglyph A160 -\U144BC;Anatolian Hieroglyph A161 -\U144BD;Anatolian Hieroglyph A162 -\U144BE;Anatolian Hieroglyph A163 -\U144BF;Anatolian Hieroglyph A164 -\U144C0;Anatolian Hieroglyph A165 -\U144C1;Anatolian Hieroglyph A166 -\U144C2;Anatolian Hieroglyph A167 -\U144C3;Anatolian Hieroglyph A168 -\U144C4;Anatolian Hieroglyph A169 -\U144C5;Anatolian Hieroglyph A170 -\U144C6;Anatolian Hieroglyph A171 -\U144C7;Anatolian Hieroglyph A172 -\U144C8;Anatolian Hieroglyph A173 -\U144C9;Anatolian Hieroglyph A174 -\U144CA;Anatolian Hieroglyph A175 -\U144CB;Anatolian Hieroglyph A176 -\U144CC;Anatolian Hieroglyph A177 -\U144CD;Anatolian Hieroglyph A178 -\U144CE;Anatolian Hieroglyph A179 -\U144CF;Anatolian Hieroglyph A180 -\U144D0;Anatolian Hieroglyph A181 -\U144D1;Anatolian Hieroglyph A182 -\U144D2;Anatolian Hieroglyph A183 -\U144D3;Anatolian Hieroglyph A184 -\U144D4;Anatolian Hieroglyph A185 -\U144D5;Anatolian Hieroglyph A186 -\U144D6;Anatolian Hieroglyph A187 -\U144D7;Anatolian Hieroglyph A188 -\U144D8;Anatolian Hieroglyph A189 -\U144D9;Anatolian Hieroglyph A190 -\U144DA;Anatolian Hieroglyph A191 -\U144DB;Anatolian Hieroglyph A192 -\U144DC;Anatolian Hieroglyph A193 -\U144DD;Anatolian Hieroglyph A194 -\U144DE;Anatolian Hieroglyph A195 -\U144DF;Anatolian Hieroglyph A196 -\U144E0;Anatolian Hieroglyph A197 -\U144E1;Anatolian Hieroglyph A198 -\U144E2;Anatolian Hieroglyph A199 -\U144E3;Anatolian Hieroglyph A200 -\U144E4;Anatolian Hieroglyph A201 -\U144E5;Anatolian Hieroglyph A202 -\U144E6;Anatolian Hieroglyph A202A -\U144E7;Anatolian Hieroglyph A202B -\U144E8;Anatolian Hieroglyph A203 -\U144E9;Anatolian Hieroglyph A204 -\U144EA;Anatolian Hieroglyph A205 -\U144EB;Anatolian Hieroglyph A206 -\U144EC;Anatolian Hieroglyph A207 -\U144ED;Anatolian Hieroglyph A207A -\U144EE;Anatolian Hieroglyph A208 -\U144EF;Anatolian Hieroglyph A209 -\U144F0;Anatolian Hieroglyph A209A -\U144F1;Anatolian Hieroglyph A210 -\U144F2;Anatolian Hieroglyph A211 -\U144F3;Anatolian Hieroglyph A212 -\U144F4;Anatolian Hieroglyph A213 -\U144F5;Anatolian Hieroglyph A214 -\U144F6;Anatolian Hieroglyph A215 -\U144F7;Anatolian Hieroglyph A215A -\U144F8;Anatolian Hieroglyph A216 -\U144F9;Anatolian Hieroglyph A216A -\U144FA;Anatolian Hieroglyph A217 -\U144FB;Anatolian Hieroglyph A218 -\U144FC;Anatolian Hieroglyph A219 -\U144FD;Anatolian Hieroglyph A220 -\U144FE;Anatolian Hieroglyph A221 -\U144FF;Anatolian Hieroglyph A222 -\U14500;Anatolian Hieroglyph A223 -\U14501;Anatolian Hieroglyph A224 -\U14502;Anatolian Hieroglyph A225 -\U14503;Anatolian Hieroglyph A226 -\U14504;Anatolian Hieroglyph A227 -\U14505;Anatolian Hieroglyph A227A -\U14506;Anatolian Hieroglyph A228 -\U14507;Anatolian Hieroglyph A229 -\U14508;Anatolian Hieroglyph A230 -\U14509;Anatolian Hieroglyph A231 -\U1450A;Anatolian Hieroglyph A232 -\U1450B;Anatolian Hieroglyph A233 -\U1450C;Anatolian Hieroglyph A234 -\U1450D;Anatolian Hieroglyph A235 -\U1450E;Anatolian Hieroglyph A236 -\U1450F;Anatolian Hieroglyph A237 -\U14510;Anatolian Hieroglyph A238 -\U14511;Anatolian Hieroglyph A239 -\U14512;Anatolian Hieroglyph A240 -\U14513;Anatolian Hieroglyph A241 -\U14514;Anatolian Hieroglyph A242 -\U14515;Anatolian Hieroglyph A243 -\U14516;Anatolian Hieroglyph A244 -\U14517;Anatolian Hieroglyph A245 -\U14518;Anatolian Hieroglyph A246 -\U14519;Anatolian Hieroglyph A247 -\U1451A;Anatolian Hieroglyph A248 -\U1451B;Anatolian Hieroglyph A249 -\U1451C;Anatolian Hieroglyph A250 -\U1451D;Anatolian Hieroglyph A251 -\U1451E;Anatolian Hieroglyph A252 -\U1451F;Anatolian Hieroglyph A253 -\U14520;Anatolian Hieroglyph A254 -\U14521;Anatolian Hieroglyph A255 -\U14522;Anatolian Hieroglyph A256 -\U14523;Anatolian Hieroglyph A257 -\U14524;Anatolian Hieroglyph A258 -\U14525;Anatolian Hieroglyph A259 -\U14526;Anatolian Hieroglyph A260 -\U14527;Anatolian Hieroglyph A261 -\U14528;Anatolian Hieroglyph A262 -\U14529;Anatolian Hieroglyph A263 -\U1452A;Anatolian Hieroglyph A264 -\U1452B;Anatolian Hieroglyph A265 -\U1452C;Anatolian Hieroglyph A266 -\U1452D;Anatolian Hieroglyph A267 -\U1452E;Anatolian Hieroglyph A267A -\U1452F;Anatolian Hieroglyph A268 -\U14530;Anatolian Hieroglyph A269 -\U14531;Anatolian Hieroglyph A270 -\U14532;Anatolian Hieroglyph A271 -\U14533;Anatolian Hieroglyph A272 -\U14534;Anatolian Hieroglyph A273 -\U14535;Anatolian Hieroglyph A274 -\U14536;Anatolian Hieroglyph A275 -\U14537;Anatolian Hieroglyph A276 -\U14538;Anatolian Hieroglyph A277 -\U14539;Anatolian Hieroglyph A278 -\U1453A;Anatolian Hieroglyph A279 -\U1453B;Anatolian Hieroglyph A280 -\U1453C;Anatolian Hieroglyph A281 -\U1453D;Anatolian Hieroglyph A282 -\U1453E;Anatolian Hieroglyph A283 -\U1453F;Anatolian Hieroglyph A284 -\U14540;Anatolian Hieroglyph A285 -\U14541;Anatolian Hieroglyph A286 -\U14542;Anatolian Hieroglyph A287 -\U14543;Anatolian Hieroglyph A288 -\U14544;Anatolian Hieroglyph A289 -\U14545;Anatolian Hieroglyph A289A -\U14546;Anatolian Hieroglyph A290 -\U14547;Anatolian Hieroglyph A291 -\U14548;Anatolian Hieroglyph A292 -\U14549;Anatolian Hieroglyph A293 -\U1454A;Anatolian Hieroglyph A294 -\U1454B;Anatolian Hieroglyph A294A -\U1454C;Anatolian Hieroglyph A295 -\U1454D;Anatolian Hieroglyph A296 -\U1454E;Anatolian Hieroglyph A297 -\U1454F;Anatolian Hieroglyph A298 -\U14550;Anatolian Hieroglyph A299 -\U14551;Anatolian Hieroglyph A299A -\U14552;Anatolian Hieroglyph A300 -\U14553;Anatolian Hieroglyph A301 -\U14554;Anatolian Hieroglyph A302 -\U14555;Anatolian Hieroglyph A303 -\U14556;Anatolian Hieroglyph A304 -\U14557;Anatolian Hieroglyph A305 -\U14558;Anatolian Hieroglyph A306 -\U14559;Anatolian Hieroglyph A307 -\U1455A;Anatolian Hieroglyph A308 -\U1455B;Anatolian Hieroglyph A309 -\U1455C;Anatolian Hieroglyph A309A -\U1455D;Anatolian Hieroglyph A310 -\U1455E;Anatolian Hieroglyph A311 -\U1455F;Anatolian Hieroglyph A312 -\U14560;Anatolian Hieroglyph A313 -\U14561;Anatolian Hieroglyph A314 -\U14562;Anatolian Hieroglyph A315 -\U14563;Anatolian Hieroglyph A316 -\U14564;Anatolian Hieroglyph A317 -\U14565;Anatolian Hieroglyph A318 -\U14566;Anatolian Hieroglyph A319 -\U14567;Anatolian Hieroglyph A320 -\U14568;Anatolian Hieroglyph A321 -\U14569;Anatolian Hieroglyph A322 -\U1456A;Anatolian Hieroglyph A323 -\U1456B;Anatolian Hieroglyph A324 -\U1456C;Anatolian Hieroglyph A325 -\U1456D;Anatolian Hieroglyph A326 -\U1456E;Anatolian Hieroglyph A327 -\U1456F;Anatolian Hieroglyph A328 -\U14570;Anatolian Hieroglyph A329 -\U14571;Anatolian Hieroglyph A329A -\U14572;Anatolian Hieroglyph A330 -\U14573;Anatolian Hieroglyph A331 -\U14574;Anatolian Hieroglyph A332A -\U14575;Anatolian Hieroglyph A332B -\U14576;Anatolian Hieroglyph A332C -\U14577;Anatolian Hieroglyph A333 -\U14578;Anatolian Hieroglyph A334 -\U14579;Anatolian Hieroglyph A335 -\U1457A;Anatolian Hieroglyph A336 -\U1457B;Anatolian Hieroglyph A336A -\U1457C;Anatolian Hieroglyph A336B -\U1457D;Anatolian Hieroglyph A336C -\U1457E;Anatolian Hieroglyph A337 -\U1457F;Anatolian Hieroglyph A338 -\U14580;Anatolian Hieroglyph A339 -\U14581;Anatolian Hieroglyph A340 -\U14582;Anatolian Hieroglyph A341 -\U14583;Anatolian Hieroglyph A342 -\U14584;Anatolian Hieroglyph A343 -\U14585;Anatolian Hieroglyph A344 -\U14586;Anatolian Hieroglyph A345 -\U14587;Anatolian Hieroglyph A346 -\U14588;Anatolian Hieroglyph A347 -\U14589;Anatolian Hieroglyph A348 -\U1458A;Anatolian Hieroglyph A349 -\U1458B;Anatolian Hieroglyph A350 -\U1458C;Anatolian Hieroglyph A351 -\U1458D;Anatolian Hieroglyph A352 -\U1458E;Anatolian Hieroglyph A353 -\U1458F;Anatolian Hieroglyph A354 -\U14590;Anatolian Hieroglyph A355 -\U14591;Anatolian Hieroglyph A356 -\U14592;Anatolian Hieroglyph A357 -\U14593;Anatolian Hieroglyph A358 -\U14594;Anatolian Hieroglyph A359 -\U14595;Anatolian Hieroglyph A359A -\U14596;Anatolian Hieroglyph A360 -\U14597;Anatolian Hieroglyph A361 -\U14598;Anatolian Hieroglyph A362 -\U14599;Anatolian Hieroglyph A363 -\U1459A;Anatolian Hieroglyph A364 -\U1459B;Anatolian Hieroglyph A364A -\U1459C;Anatolian Hieroglyph A365 -\U1459D;Anatolian Hieroglyph A366 -\U1459E;Anatolian Hieroglyph A367 -\U1459F;Anatolian Hieroglyph A368 -\U145A0;Anatolian Hieroglyph A368A -\U145A1;Anatolian Hieroglyph A369 -\U145A2;Anatolian Hieroglyph A370 -\U145A3;Anatolian Hieroglyph A371 -\U145A4;Anatolian Hieroglyph A371A -\U145A5;Anatolian Hieroglyph A372 -\U145A6;Anatolian Hieroglyph A373 -\U145A7;Anatolian Hieroglyph A374 -\U145A8;Anatolian Hieroglyph A375 -\U145A9;Anatolian Hieroglyph A376 -\U145AA;Anatolian Hieroglyph A377 -\U145AB;Anatolian Hieroglyph A378 -\U145AC;Anatolian Hieroglyph A379 -\U145AD;Anatolian Hieroglyph A380 -\U145AE;Anatolian Hieroglyph A381 -\U145AF;Anatolian Hieroglyph A381A -\U145B0;Anatolian Hieroglyph A382 -\U145B1;Anatolian Hieroglyph A383 Ra Or Ri -\U145B2;Anatolian Hieroglyph A383A -\U145B3;Anatolian Hieroglyph A384 -\U145B4;Anatolian Hieroglyph A385 -\U145B5;Anatolian Hieroglyph A386 -\U145B6;Anatolian Hieroglyph A386A -\U145B7;Anatolian Hieroglyph A387 -\U145B8;Anatolian Hieroglyph A388 -\U145B9;Anatolian Hieroglyph A389 -\U145BA;Anatolian Hieroglyph A390 -\U145BB;Anatolian Hieroglyph A391 -\U145BC;Anatolian Hieroglyph A392 -\U145BD;Anatolian Hieroglyph A393 Eight -\U145BE;Anatolian Hieroglyph A394 -\U145BF;Anatolian Hieroglyph A395 -\U145C0;Anatolian Hieroglyph A396 -\U145C1;Anatolian Hieroglyph A397 -\U145C2;Anatolian Hieroglyph A398 -\U145C3;Anatolian Hieroglyph A399 -\U145C4;Anatolian Hieroglyph A400 -\U145C5;Anatolian Hieroglyph A401 -\U145C6;Anatolian Hieroglyph A402 -\U145C7;Anatolian Hieroglyph A403 -\U145C8;Anatolian Hieroglyph A404 -\U145C9;Anatolian Hieroglyph A405 -\U145CA;Anatolian Hieroglyph A406 -\U145CB;Anatolian Hieroglyph A407 -\U145CC;Anatolian Hieroglyph A408 -\U145CD;Anatolian Hieroglyph A409 -\U145CE;Anatolian Hieroglyph A410 Begin Logogram Mark -\U145CF;Anatolian Hieroglyph A410A End Logogram Mark -\U145D0;Anatolian Hieroglyph A411 -\U145D1;Anatolian Hieroglyph A412 -\U145D2;Anatolian Hieroglyph A413 -\U145D3;Anatolian Hieroglyph A414 -\U145D4;Anatolian Hieroglyph A415 -\U145D5;Anatolian Hieroglyph A416 -\U145D6;Anatolian Hieroglyph A417 -\U145D7;Anatolian Hieroglyph A418 -\U145D8;Anatolian Hieroglyph A419 -\U145D9;Anatolian Hieroglyph A420 -\U145DA;Anatolian Hieroglyph A421 -\U145DB;Anatolian Hieroglyph A422 -\U145DC;Anatolian Hieroglyph A423 -\U145DD;Anatolian Hieroglyph A424 -\U145DE;Anatolian Hieroglyph A425 -\U145DF;Anatolian Hieroglyph A426 -\U145E0;Anatolian Hieroglyph A427 -\U145E1;Anatolian Hieroglyph A428 -\U145E2;Anatolian Hieroglyph A429 -\U145E3;Anatolian Hieroglyph A430 -\U145E4;Anatolian Hieroglyph A431 -\U145E5;Anatolian Hieroglyph A432 -\U145E6;Anatolian Hieroglyph A433 -\U145E7;Anatolian Hieroglyph A434 -\U145E8;Anatolian Hieroglyph A435 -\U145E9;Anatolian Hieroglyph A436 -\U145EA;Anatolian Hieroglyph A437 -\U145EB;Anatolian Hieroglyph A438 -\U145EC;Anatolian Hieroglyph A439 -\U145ED;Anatolian Hieroglyph A440 -\U145EE;Anatolian Hieroglyph A441 -\U145EF;Anatolian Hieroglyph A442 -\U145F0;Anatolian Hieroglyph A443 -\U145F1;Anatolian Hieroglyph A444 -\U145F2;Anatolian Hieroglyph A445 -\U145F3;Anatolian Hieroglyph A446 -\U145F4;Anatolian Hieroglyph A447 -\U145F5;Anatolian Hieroglyph A448 -\U145F6;Anatolian Hieroglyph A449 -\U145F7;Anatolian Hieroglyph A450 -\U145F8;Anatolian Hieroglyph A450A -\U145F9;Anatolian Hieroglyph A451 -\U145FA;Anatolian Hieroglyph A452 -\U145FB;Anatolian Hieroglyph A453 -\U145FC;Anatolian Hieroglyph A454 -\U145FD;Anatolian Hieroglyph A455 -\U145FE;Anatolian Hieroglyph A456 -\U145FF;Anatolian Hieroglyph A457 -\U14600;Anatolian Hieroglyph A457A -\U14601;Anatolian Hieroglyph A458 -\U14602;Anatolian Hieroglyph A459 -\U14603;Anatolian Hieroglyph A460 -\U14604;Anatolian Hieroglyph A461 -\U14605;Anatolian Hieroglyph A462 -\U14606;Anatolian Hieroglyph A463 -\U14607;Anatolian Hieroglyph A464 -\U14608;Anatolian Hieroglyph A465 -\U14609;Anatolian Hieroglyph A466 -\U1460A;Anatolian Hieroglyph A467 -\U1460B;Anatolian Hieroglyph A468 -\U1460C;Anatolian Hieroglyph A469 -\U1460D;Anatolian Hieroglyph A470 -\U1460E;Anatolian Hieroglyph A471 -\U1460F;Anatolian Hieroglyph A472 -\U14610;Anatolian Hieroglyph A473 -\U14611;Anatolian Hieroglyph A474 -\U14612;Anatolian Hieroglyph A475 -\U14613;Anatolian Hieroglyph A476 -\U14614;Anatolian Hieroglyph A477 -\U14615;Anatolian Hieroglyph A478 -\U14616;Anatolian Hieroglyph A479 -\U14617;Anatolian Hieroglyph A480 -\U14618;Anatolian Hieroglyph A481 -\U14619;Anatolian Hieroglyph A482 -\U1461A;Anatolian Hieroglyph A483 -\U1461B;Anatolian Hieroglyph A484 -\U1461C;Anatolian Hieroglyph A485 -\U1461D;Anatolian Hieroglyph A486 -\U1461E;Anatolian Hieroglyph A487 -\U1461F;Anatolian Hieroglyph A488 -\U14620;Anatolian Hieroglyph A489 -\U14621;Anatolian Hieroglyph A490 -\U14622;Anatolian Hieroglyph A491 -\U14623;Anatolian Hieroglyph A492 -\U14624;Anatolian Hieroglyph A493 -\U14625;Anatolian Hieroglyph A494 -\U14626;Anatolian Hieroglyph A495 -\U14627;Anatolian Hieroglyph A496 -\U14628;Anatolian Hieroglyph A497 -\U14629;Anatolian Hieroglyph A501 -\U1462A;Anatolian Hieroglyph A502 -\U1462B;Anatolian Hieroglyph A503 -\U1462C;Anatolian Hieroglyph A504 -\U1462D;Anatolian Hieroglyph A505 -\U1462E;Anatolian Hieroglyph A506 -\U1462F;Anatolian Hieroglyph A507 -\U14630;Anatolian Hieroglyph A508 -\U14631;Anatolian Hieroglyph A509 -\U14632;Anatolian Hieroglyph A510 -\U14633;Anatolian Hieroglyph A511 -\U14634;Anatolian Hieroglyph A512 -\U14635;Anatolian Hieroglyph A513 -\U14636;Anatolian Hieroglyph A514 -\U14637;Anatolian Hieroglyph A515 -\U14638;Anatolian Hieroglyph A516 -\U14639;Anatolian Hieroglyph A517 -\U1463A;Anatolian Hieroglyph A518 -\U1463B;Anatolian Hieroglyph A519 -\U1463C;Anatolian Hieroglyph A520 -\U1463D;Anatolian Hieroglyph A521 -\U1463E;Anatolian Hieroglyph A522 -\U1463F;Anatolian Hieroglyph A523 -\U14640;Anatolian Hieroglyph A524 -\U14641;Anatolian Hieroglyph A525 -\U14642;Anatolian Hieroglyph A526 -\U14643;Anatolian Hieroglyph A527 -\U14644;Anatolian Hieroglyph A528 -\U14645;Anatolian Hieroglyph A529 -\U14646;Anatolian Hieroglyph A530 -\U16800;Bamum Letter Phase-A Ngkue Mfon -\U16801;Bamum Letter Phase-A Gbiee Fon -\U16802;Bamum Letter Phase-A Pon Mfon Pipaemgbiee -\U16803;Bamum Letter Phase-A Pon Mfon Pipaemba -\U16804;Bamum Letter Phase-A Naa Mfon -\U16805;Bamum Letter Phase-A Shuenshuet -\U16806;Bamum Letter Phase-A Tita Mfon -\U16807;Bamum Letter Phase-A Nza Mfon -\U16808;Bamum Letter Phase-A Shinda Pa Nji -\U16809;Bamum Letter Phase-A Pon Pa Nji Pipaemgbiee -\U1680A;Bamum Letter Phase-A Pon Pa Nji Pipaemba -\U1680B;Bamum Letter Phase-A Maembgbiee -\U1680C;Bamum Letter Phase-A Tu Maemba -\U1680D;Bamum Letter Phase-A Ngangu -\U1680E;Bamum Letter Phase-A Maemveux -\U1680F;Bamum Letter Phase-A Mansuae -\U16810;Bamum Letter Phase-A Mveuaengam -\U16811;Bamum Letter Phase-A Seunyam -\U16812;Bamum Letter Phase-A Ntoqpen -\U16813;Bamum Letter Phase-A Keukeutnda -\U16814;Bamum Letter Phase-A Nkindi -\U16815;Bamum Letter Phase-A Suu -\U16816;Bamum Letter Phase-A Ngkuenzeum -\U16817;Bamum Letter Phase-A Lapaq -\U16818;Bamum Letter Phase-A Let Kut -\U16819;Bamum Letter Phase-A Ntap Mfaa -\U1681A;Bamum Letter Phase-A Maekeup -\U1681B;Bamum Letter Phase-A Pashae -\U1681C;Bamum Letter Phase-A Gheuaerae -\U1681D;Bamum Letter Phase-A Pamshae -\U1681E;Bamum Letter Phase-A Mon Nggeuaet -\U1681F;Bamum Letter Phase-A Nzun Meut -\U16820;Bamum Letter Phase-A U Yuq Nae -\U16821;Bamum Letter Phase-A Gheuaegheuae -\U16822;Bamum Letter Phase-A Ntap Ntaa -\U16823;Bamum Letter Phase-A Sisa -\U16824;Bamum Letter Phase-A Mgbasa -\U16825;Bamum Letter Phase-A Meunjomndeuq -\U16826;Bamum Letter Phase-A Moompuq -\U16827;Bamum Letter Phase-A Kafa -\U16828;Bamum Letter Phase-A Pa Leeraewa -\U16829;Bamum Letter Phase-A Nda Leeraewa -\U1682A;Bamum Letter Phase-A Pet -\U1682B;Bamum Letter Phase-A Maemkpen -\U1682C;Bamum Letter Phase-A Nika -\U1682D;Bamum Letter Phase-A Pup -\U1682E;Bamum Letter Phase-A Tuaep -\U1682F;Bamum Letter Phase-A Luaep -\U16830;Bamum Letter Phase-A Sonjam -\U16831;Bamum Letter Phase-A Teuteuwen -\U16832;Bamum Letter Phase-A Maenyi -\U16833;Bamum Letter Phase-A Ket -\U16834;Bamum Letter Phase-A Ndaanggeuaet -\U16835;Bamum Letter Phase-A Kuoq -\U16836;Bamum Letter Phase-A Moomeut -\U16837;Bamum Letter Phase-A Shum -\U16838;Bamum Letter Phase-A Lommae -\U16839;Bamum Letter Phase-A Firi -\U1683A;Bamum Letter Phase-A Rom -\U1683B;Bamum Letter Phase-A Kpoq -\U1683C;Bamum Letter Phase-A Soq -\U1683D;Bamum Letter Phase-A Map Pieet -\U1683E;Bamum Letter Phase-A Shirae -\U1683F;Bamum Letter Phase-A Ntap -\U16840;Bamum Letter Phase-A Shoq Nshut Yum -\U16841;Bamum Letter Phase-A Nyit Mongkeuaeq -\U16842;Bamum Letter Phase-A Paarae -\U16843;Bamum Letter Phase-A Nkaarae -\U16844;Bamum Letter Phase-A Unknown -\U16845;Bamum Letter Phase-A Nggen -\U16846;Bamum Letter Phase-A Maesi -\U16847;Bamum Letter Phase-A Njam -\U16848;Bamum Letter Phase-A Mbanyi -\U16849;Bamum Letter Phase-A Nyet -\U1684A;Bamum Letter Phase-A Teuaen -\U1684B;Bamum Letter Phase-A Sot -\U1684C;Bamum Letter Phase-A Paam -\U1684D;Bamum Letter Phase-A Nshiee -\U1684E;Bamum Letter Phase-A Maem -\U1684F;Bamum Letter Phase-A Nyi -\U16850;Bamum Letter Phase-A Kaq -\U16851;Bamum Letter Phase-A Nsha -\U16852;Bamum Letter Phase-A Vee -\U16853;Bamum Letter Phase-A Lu -\U16854;Bamum Letter Phase-A Nen -\U16855;Bamum Letter Phase-A Naq -\U16856;Bamum Letter Phase-A Mbaq -\U16857;Bamum Letter Phase-B Nshuet -\U16858;Bamum Letter Phase-B Tu Maemgbiee -\U16859;Bamum Letter Phase-B Siee -\U1685A;Bamum Letter Phase-B Set Tu -\U1685B;Bamum Letter Phase-B Lom Nteum -\U1685C;Bamum Letter Phase-B Mba Maelee -\U1685D;Bamum Letter Phase-B Kieem -\U1685E;Bamum Letter Phase-B Yeurae -\U1685F;Bamum Letter Phase-B Mbaarae -\U16860;Bamum Letter Phase-B Kam -\U16861;Bamum Letter Phase-B Peeshi -\U16862;Bamum Letter Phase-B Yafu Leeraewa -\U16863;Bamum Letter Phase-B Lam Nshut Nyam -\U16864;Bamum Letter Phase-B Ntiee Sheuoq -\U16865;Bamum Letter Phase-B Ndu Njaa -\U16866;Bamum Letter Phase-B Gheugheuaem -\U16867;Bamum Letter Phase-B Pit -\U16868;Bamum Letter Phase-B Tu Nsiee -\U16869;Bamum Letter Phase-B Shet Njaq -\U1686A;Bamum Letter Phase-B Sheuaeqtu -\U1686B;Bamum Letter Phase-B Mfon Teuaeq -\U1686C;Bamum Letter Phase-B Mbit Mbaaket -\U1686D;Bamum Letter Phase-B Nyi Nteum -\U1686E;Bamum Letter Phase-B Keupuq -\U1686F;Bamum Letter Phase-B Gheughen -\U16870;Bamum Letter Phase-B Keuyeux -\U16871;Bamum Letter Phase-B Laanae -\U16872;Bamum Letter Phase-B Parum -\U16873;Bamum Letter Phase-B Veum -\U16874;Bamum Letter Phase-B Ngkindi Mvop -\U16875;Bamum Letter Phase-B Nggeu Mbu -\U16876;Bamum Letter Phase-B Wuaet -\U16877;Bamum Letter Phase-B Sakeuae -\U16878;Bamum Letter Phase-B Taam -\U16879;Bamum Letter Phase-B Meuq -\U1687A;Bamum Letter Phase-B Ngguoq -\U1687B;Bamum Letter Phase-B Ngguoq Large -\U1687C;Bamum Letter Phase-B Mfiyaq -\U1687D;Bamum Letter Phase-B Sue -\U1687E;Bamum Letter Phase-B Mbeuri -\U1687F;Bamum Letter Phase-B Montieen -\U16880;Bamum Letter Phase-B Nyaemae -\U16881;Bamum Letter Phase-B Pungaam -\U16882;Bamum Letter Phase-B Meut Nggeet -\U16883;Bamum Letter Phase-B Feux -\U16884;Bamum Letter Phase-B Mbuoq -\U16885;Bamum Letter Phase-B Fee -\U16886;Bamum Letter Phase-B Keuaem -\U16887;Bamum Letter Phase-B Ma Njeuaena -\U16888;Bamum Letter Phase-B Ma Njuqa -\U16889;Bamum Letter Phase-B Let -\U1688A;Bamum Letter Phase-B Nggaam -\U1688B;Bamum Letter Phase-B Nsen -\U1688C;Bamum Letter Phase-B Ma -\U1688D;Bamum Letter Phase-B Kiq -\U1688E;Bamum Letter Phase-B Ngom -\U1688F;Bamum Letter Phase-C Ngkue Maemba -\U16890;Bamum Letter Phase-C Nza -\U16891;Bamum Letter Phase-C Yum -\U16892;Bamum Letter Phase-C Wangkuoq -\U16893;Bamum Letter Phase-C Nggen -\U16894;Bamum Letter Phase-C Ndeuaeree -\U16895;Bamum Letter Phase-C Ngkaq -\U16896;Bamum Letter Phase-C Gharae -\U16897;Bamum Letter Phase-C Mbeekeet -\U16898;Bamum Letter Phase-C Gbayi -\U16899;Bamum Letter Phase-C Nyir Mkparaq Meun -\U1689A;Bamum Letter Phase-C Ntu Mbit -\U1689B;Bamum Letter Phase-C Mbeum -\U1689C;Bamum Letter Phase-C Pirieen -\U1689D;Bamum Letter Phase-C Ndombu -\U1689E;Bamum Letter Phase-C Mbaa Cabbage-Tree -\U1689F;Bamum Letter Phase-C Keusheuaep -\U168A0;Bamum Letter Phase-C Ghap -\U168A1;Bamum Letter Phase-C Keukaq -\U168A2;Bamum Letter Phase-C Yu Muomae -\U168A3;Bamum Letter Phase-C Nzeum -\U168A4;Bamum Letter Phase-C Mbue -\U168A5;Bamum Letter Phase-C Nseuaen -\U168A6;Bamum Letter Phase-C Mbit -\U168A7;Bamum Letter Phase-C Yeuq -\U168A8;Bamum Letter Phase-C Kparaq -\U168A9;Bamum Letter Phase-C Kaa -\U168AA;Bamum Letter Phase-C Seux -\U168AB;Bamum Letter Phase-C Ndida -\U168AC;Bamum Letter Phase-C Taashae -\U168AD;Bamum Letter Phase-C Njueq -\U168AE;Bamum Letter Phase-C Tita Yue -\U168AF;Bamum Letter Phase-C Suaet -\U168B0;Bamum Letter Phase-C Ngguaen Nyam -\U168B1;Bamum Letter Phase-C Veux -\U168B2;Bamum Letter Phase-C Nansanaq -\U168B3;Bamum Letter Phase-C Ma Keuaeri -\U168B4;Bamum Letter Phase-C Ntaa -\U168B5;Bamum Letter Phase-C Ngguon -\U168B6;Bamum Letter Phase-C Lap -\U168B7;Bamum Letter Phase-C Mbirieen -\U168B8;Bamum Letter Phase-C Mgbasaq -\U168B9;Bamum Letter Phase-C Nteungba -\U168BA;Bamum Letter Phase-C Teuteux -\U168BB;Bamum Letter Phase-C Nggum -\U168BC;Bamum Letter Phase-C Fue -\U168BD;Bamum Letter Phase-C Ndeut -\U168BE;Bamum Letter Phase-C Nsa -\U168BF;Bamum Letter Phase-C Nshaq -\U168C0;Bamum Letter Phase-C Bung -\U168C1;Bamum Letter Phase-C Veuaepen -\U168C2;Bamum Letter Phase-C Mberae -\U168C3;Bamum Letter Phase-C Ru -\U168C4;Bamum Letter Phase-C Njaem -\U168C5;Bamum Letter Phase-C Lam -\U168C6;Bamum Letter Phase-C Tituaep -\U168C7;Bamum Letter Phase-C Nsuot Ngom -\U168C8;Bamum Letter Phase-C Njeeee -\U168C9;Bamum Letter Phase-C Ket -\U168CA;Bamum Letter Phase-C Nggu -\U168CB;Bamum Letter Phase-C Maesi -\U168CC;Bamum Letter Phase-C Mbuaem -\U168CD;Bamum Letter Phase-C Lu -\U168CE;Bamum Letter Phase-C Kut -\U168CF;Bamum Letter Phase-C Njam -\U168D0;Bamum Letter Phase-C Ngom -\U168D1;Bamum Letter Phase-C Wup -\U168D2;Bamum Letter Phase-C Nggueet -\U168D3;Bamum Letter Phase-C Nsom -\U168D4;Bamum Letter Phase-C Nten -\U168D5;Bamum Letter Phase-C Kuop Nkaarae -\U168D6;Bamum Letter Phase-C Nsun -\U168D7;Bamum Letter Phase-C Ndam -\U168D8;Bamum Letter Phase-C Ma Nsiee -\U168D9;Bamum Letter Phase-C Yaa -\U168DA;Bamum Letter Phase-C Ndap -\U168DB;Bamum Letter Phase-C Shueq -\U168DC;Bamum Letter Phase-C Setfon -\U168DD;Bamum Letter Phase-C Mbi -\U168DE;Bamum Letter Phase-C Maemba -\U168DF;Bamum Letter Phase-C Mbanyi -\U168E0;Bamum Letter Phase-C Keuseux -\U168E1;Bamum Letter Phase-C Mbeux -\U168E2;Bamum Letter Phase-C Keum -\U168E3;Bamum Letter Phase-C Mbaa Picket -\U168E4;Bamum Letter Phase-C Yuwoq -\U168E5;Bamum Letter Phase-C Njeux -\U168E6;Bamum Letter Phase-C Miee -\U168E7;Bamum Letter Phase-C Muae -\U168E8;Bamum Letter Phase-C Shiq -\U168E9;Bamum Letter Phase-C Ken Law -\U168EA;Bamum Letter Phase-C Ken Fatigue -\U168EB;Bamum Letter Phase-C Ngaq -\U168EC;Bamum Letter Phase-C Naq -\U168ED;Bamum Letter Phase-C Liq -\U168EE;Bamum Letter Phase-C Pin -\U168EF;Bamum Letter Phase-C Pen -\U168F0;Bamum Letter Phase-C Tet -\U168F1;Bamum Letter Phase-D Mbuo -\U168F2;Bamum Letter Phase-D Wap -\U168F3;Bamum Letter Phase-D Nji -\U168F4;Bamum Letter Phase-D Mfon -\U168F5;Bamum Letter Phase-D Njiee -\U168F6;Bamum Letter Phase-D Liee -\U168F7;Bamum Letter Phase-D Njeut -\U168F8;Bamum Letter Phase-D Nshee -\U168F9;Bamum Letter Phase-D Nggaamae -\U168FA;Bamum Letter Phase-D Nyam -\U168FB;Bamum Letter Phase-D Wuaen -\U168FC;Bamum Letter Phase-D Ngkun -\U168FD;Bamum Letter Phase-D Shee -\U168FE;Bamum Letter Phase-D Ngkap -\U168FF;Bamum Letter Phase-D Keuaetmeun -\U16900;Bamum Letter Phase-D Teut -\U16901;Bamum Letter Phase-D Sheuae -\U16902;Bamum Letter Phase-D Njap -\U16903;Bamum Letter Phase-D Sue -\U16904;Bamum Letter Phase-D Ket -\U16905;Bamum Letter Phase-D Yaemmae -\U16906;Bamum Letter Phase-D Kuom -\U16907;Bamum Letter Phase-D Sap -\U16908;Bamum Letter Phase-D Mfeut -\U16909;Bamum Letter Phase-D Ndeux -\U1690A;Bamum Letter Phase-D Maleeri -\U1690B;Bamum Letter Phase-D Meut -\U1690C;Bamum Letter Phase-D Seuaeq -\U1690D;Bamum Letter Phase-D Yen -\U1690E;Bamum Letter Phase-D Njeuaem -\U1690F;Bamum Letter Phase-D Keuot Mbuae -\U16910;Bamum Letter Phase-D Ngkeuri -\U16911;Bamum Letter Phase-D Tu -\U16912;Bamum Letter Phase-D Ghaa -\U16913;Bamum Letter Phase-D Ngkyee -\U16914;Bamum Letter Phase-D Feufeuaet -\U16915;Bamum Letter Phase-D Ndee -\U16916;Bamum Letter Phase-D Mgbofum -\U16917;Bamum Letter Phase-D Leuaep -\U16918;Bamum Letter Phase-D Ndon -\U16919;Bamum Letter Phase-D Moni -\U1691A;Bamum Letter Phase-D Mgbeun -\U1691B;Bamum Letter Phase-D Puut -\U1691C;Bamum Letter Phase-D Mgbiee -\U1691D;Bamum Letter Phase-D Mfo -\U1691E;Bamum Letter Phase-D Lum -\U1691F;Bamum Letter Phase-D Nsieep -\U16920;Bamum Letter Phase-D Mbaa -\U16921;Bamum Letter Phase-D Kwaet -\U16922;Bamum Letter Phase-D Nyet -\U16923;Bamum Letter Phase-D Teuaen -\U16924;Bamum Letter Phase-D Sot -\U16925;Bamum Letter Phase-D Yuwoq -\U16926;Bamum Letter Phase-D Keum -\U16927;Bamum Letter Phase-D Raem -\U16928;Bamum Letter Phase-D Teeee -\U16929;Bamum Letter Phase-D Ngkeuaeq -\U1692A;Bamum Letter Phase-D Mfeuae -\U1692B;Bamum Letter Phase-D Nsieet -\U1692C;Bamum Letter Phase-D Keup -\U1692D;Bamum Letter Phase-D Pip -\U1692E;Bamum Letter Phase-D Peutae -\U1692F;Bamum Letter Phase-D Nyue -\U16930;Bamum Letter Phase-D Let -\U16931;Bamum Letter Phase-D Nggaam -\U16932;Bamum Letter Phase-D Mfiee -\U16933;Bamum Letter Phase-D Nggwaen -\U16934;Bamum Letter Phase-D Yuom -\U16935;Bamum Letter Phase-D Pap -\U16936;Bamum Letter Phase-D Yuop -\U16937;Bamum Letter Phase-D Ndam -\U16938;Bamum Letter Phase-D Nteum -\U16939;Bamum Letter Phase-D Suae -\U1693A;Bamum Letter Phase-D Kun -\U1693B;Bamum Letter Phase-D Nggeux -\U1693C;Bamum Letter Phase-D Ngkiee -\U1693D;Bamum Letter Phase-D Tuot -\U1693E;Bamum Letter Phase-D Meun -\U1693F;Bamum Letter Phase-D Kuq -\U16940;Bamum Letter Phase-D Nsum -\U16941;Bamum Letter Phase-D Teun -\U16942;Bamum Letter Phase-D Maenjet -\U16943;Bamum Letter Phase-D Nggap -\U16944;Bamum Letter Phase-D Leum -\U16945;Bamum Letter Phase-D Ngguom -\U16946;Bamum Letter Phase-D Nshut -\U16947;Bamum Letter Phase-D Njueq -\U16948;Bamum Letter Phase-D Gheuae -\U16949;Bamum Letter Phase-D Ku -\U1694A;Bamum Letter Phase-D Ren Old -\U1694B;Bamum Letter Phase-D Tae -\U1694C;Bamum Letter Phase-D Toq -\U1694D;Bamum Letter Phase-D Nyi -\U1694E;Bamum Letter Phase-D Rii -\U1694F;Bamum Letter Phase-D Leeee -\U16950;Bamum Letter Phase-D Meeee -\U16951;Bamum Letter Phase-D M -\U16952;Bamum Letter Phase-D Suu -\U16953;Bamum Letter Phase-D Mu -\U16954;Bamum Letter Phase-D Shii -\U16955;Bamum Letter Phase-D Sheux -\U16956;Bamum Letter Phase-D Kyee -\U16957;Bamum Letter Phase-D Nu -\U16958;Bamum Letter Phase-D Shu -\U16959;Bamum Letter Phase-D Ntee -\U1695A;Bamum Letter Phase-D Pee -\U1695B;Bamum Letter Phase-D Ni -\U1695C;Bamum Letter Phase-D Shoq -\U1695D;Bamum Letter Phase-D Puq -\U1695E;Bamum Letter Phase-D Mvop -\U1695F;Bamum Letter Phase-D Loq -\U16960;Bamum Letter Phase-D Ren Much -\U16961;Bamum Letter Phase-D Ti -\U16962;Bamum Letter Phase-D Ntuu -\U16963;Bamum Letter Phase-D Mbaa Seven -\U16964;Bamum Letter Phase-D Saq -\U16965;Bamum Letter Phase-D Faa -\U16966;Bamum Letter Phase-E Ndap -\U16967;Bamum Letter Phase-E Toon -\U16968;Bamum Letter Phase-E Mbeum -\U16969;Bamum Letter Phase-E Lap -\U1696A;Bamum Letter Phase-E Vom -\U1696B;Bamum Letter Phase-E Loon -\U1696C;Bamum Letter Phase-E Paa -\U1696D;Bamum Letter Phase-E Som -\U1696E;Bamum Letter Phase-E Raq -\U1696F;Bamum Letter Phase-E Nshuop -\U16970;Bamum Letter Phase-E Ndun -\U16971;Bamum Letter Phase-E Puae -\U16972;Bamum Letter Phase-E Tam -\U16973;Bamum Letter Phase-E Ngka -\U16974;Bamum Letter Phase-E Kpeux -\U16975;Bamum Letter Phase-E Wuo -\U16976;Bamum Letter Phase-E See -\U16977;Bamum Letter Phase-E Nggeuaet -\U16978;Bamum Letter Phase-E Paam -\U16979;Bamum Letter Phase-E Too -\U1697A;Bamum Letter Phase-E Kuop -\U1697B;Bamum Letter Phase-E Lom -\U1697C;Bamum Letter Phase-E Nshiee -\U1697D;Bamum Letter Phase-E Ngop -\U1697E;Bamum Letter Phase-E Maem -\U1697F;Bamum Letter Phase-E Ngkeux -\U16980;Bamum Letter Phase-E Ngoq -\U16981;Bamum Letter Phase-E Nshue -\U16982;Bamum Letter Phase-E Rimgba -\U16983;Bamum Letter Phase-E Njeux -\U16984;Bamum Letter Phase-E Peem -\U16985;Bamum Letter Phase-E Saa -\U16986;Bamum Letter Phase-E Nggurae -\U16987;Bamum Letter Phase-E Mgba -\U16988;Bamum Letter Phase-E Gheux -\U16989;Bamum Letter Phase-E Ngkeuaem -\U1698A;Bamum Letter Phase-E Njaemli -\U1698B;Bamum Letter Phase-E Map -\U1698C;Bamum Letter Phase-E Loot -\U1698D;Bamum Letter Phase-E Nggeeee -\U1698E;Bamum Letter Phase-E Ndiq -\U1698F;Bamum Letter Phase-E Taen Nteum -\U16990;Bamum Letter Phase-E Set -\U16991;Bamum Letter Phase-E Pum -\U16992;Bamum Letter Phase-E Ndaa Softness -\U16993;Bamum Letter Phase-E Ngguaeshae Nyam -\U16994;Bamum Letter Phase-E Yiee -\U16995;Bamum Letter Phase-E Gheun -\U16996;Bamum Letter Phase-E Tuae -\U16997;Bamum Letter Phase-E Yeuae -\U16998;Bamum Letter Phase-E Po -\U16999;Bamum Letter Phase-E Tumae -\U1699A;Bamum Letter Phase-E Keuae -\U1699B;Bamum Letter Phase-E Suaen -\U1699C;Bamum Letter Phase-E Teuaeq -\U1699D;Bamum Letter Phase-E Veuae -\U1699E;Bamum Letter Phase-E Weux -\U1699F;Bamum Letter Phase-E Laam -\U169A0;Bamum Letter Phase-E Pu -\U169A1;Bamum Letter Phase-E Taaq -\U169A2;Bamum Letter Phase-E Ghaamae -\U169A3;Bamum Letter Phase-E Ngeureut -\U169A4;Bamum Letter Phase-E Sheuaeq -\U169A5;Bamum Letter Phase-E Mgben -\U169A6;Bamum Letter Phase-E Mbee -\U169A7;Bamum Letter Phase-E Nzaq -\U169A8;Bamum Letter Phase-E Nkom -\U169A9;Bamum Letter Phase-E Gbet -\U169AA;Bamum Letter Phase-E Tum -\U169AB;Bamum Letter Phase-E Kuet -\U169AC;Bamum Letter Phase-E Yap -\U169AD;Bamum Letter Phase-E Nyi Cleaver -\U169AE;Bamum Letter Phase-E Yit -\U169AF;Bamum Letter Phase-E Mfeuq -\U169B0;Bamum Letter Phase-E Ndiaq -\U169B1;Bamum Letter Phase-E Pieeq -\U169B2;Bamum Letter Phase-E Yueq -\U169B3;Bamum Letter Phase-E Leuaem -\U169B4;Bamum Letter Phase-E Fue -\U169B5;Bamum Letter Phase-E Gbeux -\U169B6;Bamum Letter Phase-E Ngkup -\U169B7;Bamum Letter Phase-E Ket -\U169B8;Bamum Letter Phase-E Mae -\U169B9;Bamum Letter Phase-E Ngkaami -\U169BA;Bamum Letter Phase-E Ghet -\U169BB;Bamum Letter Phase-E Fa -\U169BC;Bamum Letter Phase-E Ntum -\U169BD;Bamum Letter Phase-E Peut -\U169BE;Bamum Letter Phase-E Yeum -\U169BF;Bamum Letter Phase-E Nggeuae -\U169C0;Bamum Letter Phase-E Nyi Between -\U169C1;Bamum Letter Phase-E Nzuq -\U169C2;Bamum Letter Phase-E Poon -\U169C3;Bamum Letter Phase-E Miee -\U169C4;Bamum Letter Phase-E Fuet -\U169C5;Bamum Letter Phase-E Nae -\U169C6;Bamum Letter Phase-E Muae -\U169C7;Bamum Letter Phase-E Gheuae -\U169C8;Bamum Letter Phase-E Fu I -\U169C9;Bamum Letter Phase-E Mvi -\U169CA;Bamum Letter Phase-E Puaq -\U169CB;Bamum Letter Phase-E Ngkum -\U169CC;Bamum Letter Phase-E Kut -\U169CD;Bamum Letter Phase-E Piet -\U169CE;Bamum Letter Phase-E Ntap -\U169CF;Bamum Letter Phase-E Yeuaet -\U169D0;Bamum Letter Phase-E Nggup -\U169D1;Bamum Letter Phase-E Pa People -\U169D2;Bamum Letter Phase-E Fu Call -\U169D3;Bamum Letter Phase-E Fom -\U169D4;Bamum Letter Phase-E Njee -\U169D5;Bamum Letter Phase-E A -\U169D6;Bamum Letter Phase-E Toq -\U169D7;Bamum Letter Phase-E O -\U169D8;Bamum Letter Phase-E I -\U169D9;Bamum Letter Phase-E Laq -\U169DA;Bamum Letter Phase-E Pa Plural -\U169DB;Bamum Letter Phase-E Taa -\U169DC;Bamum Letter Phase-E Taq -\U169DD;Bamum Letter Phase-E Ndaa My House -\U169DE;Bamum Letter Phase-E Shiq -\U169DF;Bamum Letter Phase-E Yeux -\U169E0;Bamum Letter Phase-E Nguae -\U169E1;Bamum Letter Phase-E Yuaen -\U169E2;Bamum Letter Phase-E Yoq Swimming -\U169E3;Bamum Letter Phase-E Yoq Cover -\U169E4;Bamum Letter Phase-E Yuq -\U169E5;Bamum Letter Phase-E Yun -\U169E6;Bamum Letter Phase-E Keux -\U169E7;Bamum Letter Phase-E Peux -\U169E8;Bamum Letter Phase-E Njee Epoch -\U169E9;Bamum Letter Phase-E Pue -\U169EA;Bamum Letter Phase-E Wue -\U169EB;Bamum Letter Phase-E Fee -\U169EC;Bamum Letter Phase-E Vee -\U169ED;Bamum Letter Phase-E Lu -\U169EE;Bamum Letter Phase-E Mi -\U169EF;Bamum Letter Phase-E Reux -\U169F0;Bamum Letter Phase-E Rae -\U169F1;Bamum Letter Phase-E Nguaet -\U169F2;Bamum Letter Phase-E Nga -\U169F3;Bamum Letter Phase-E Sho -\U169F4;Bamum Letter Phase-E Shoq -\U169F5;Bamum Letter Phase-E Fu Remedy -\U169F6;Bamum Letter Phase-E Na -\U169F7;Bamum Letter Phase-E Pi -\U169F8;Bamum Letter Phase-E Loq -\U169F9;Bamum Letter Phase-E Ko -\U169FA;Bamum Letter Phase-E Men -\U169FB;Bamum Letter Phase-E Ma -\U169FC;Bamum Letter Phase-E Maq -\U169FD;Bamum Letter Phase-E Teu -\U169FE;Bamum Letter Phase-E Ki -\U169FF;Bamum Letter Phase-E Mon -\U16A00;Bamum Letter Phase-E Ten -\U16A01;Bamum Letter Phase-E Faq -\U16A02;Bamum Letter Phase-E Ghom -\U16A03;Bamum Letter Phase-F Ka -\U16A04;Bamum Letter Phase-F U -\U16A05;Bamum Letter Phase-F Ku -\U16A06;Bamum Letter Phase-F Ee -\U16A07;Bamum Letter Phase-F Ree -\U16A08;Bamum Letter Phase-F Tae -\U16A09;Bamum Letter Phase-F Nyi -\U16A0A;Bamum Letter Phase-F La -\U16A0B;Bamum Letter Phase-F Rii -\U16A0C;Bamum Letter Phase-F Riee -\U16A0D;Bamum Letter Phase-F Meeee -\U16A0E;Bamum Letter Phase-F Taa -\U16A0F;Bamum Letter Phase-F Ndaa -\U16A10;Bamum Letter Phase-F Njaem -\U16A11;Bamum Letter Phase-F M -\U16A12;Bamum Letter Phase-F Suu -\U16A13;Bamum Letter Phase-F Shii -\U16A14;Bamum Letter Phase-F Si -\U16A15;Bamum Letter Phase-F Seux -\U16A16;Bamum Letter Phase-F Kyee -\U16A17;Bamum Letter Phase-F Ket -\U16A18;Bamum Letter Phase-F Nuae -\U16A19;Bamum Letter Phase-F Nu -\U16A1A;Bamum Letter Phase-F Njuae -\U16A1B;Bamum Letter Phase-F Yoq -\U16A1C;Bamum Letter Phase-F Shu -\U16A1D;Bamum Letter Phase-F Ya -\U16A1E;Bamum Letter Phase-F Nsha -\U16A1F;Bamum Letter Phase-F Peux -\U16A20;Bamum Letter Phase-F Ntee -\U16A21;Bamum Letter Phase-F Wue -\U16A22;Bamum Letter Phase-F Pee -\U16A23;Bamum Letter Phase-F Ru -\U16A24;Bamum Letter Phase-F Ni -\U16A25;Bamum Letter Phase-F Reux -\U16A26;Bamum Letter Phase-F Ken -\U16A27;Bamum Letter Phase-F Ngkwaen -\U16A28;Bamum Letter Phase-F Ngga -\U16A29;Bamum Letter Phase-F Sho -\U16A2A;Bamum Letter Phase-F Puae -\U16A2B;Bamum Letter Phase-F Fom -\U16A2C;Bamum Letter Phase-F Wa -\U16A2D;Bamum Letter Phase-F Li -\U16A2E;Bamum Letter Phase-F Loq -\U16A2F;Bamum Letter Phase-F Ko -\U16A30;Bamum Letter Phase-F Mben -\U16A31;Bamum Letter Phase-F Ren -\U16A32;Bamum Letter Phase-F Ma -\U16A33;Bamum Letter Phase-F Mo -\U16A34;Bamum Letter Phase-F Mbaa -\U16A35;Bamum Letter Phase-F Tet -\U16A36;Bamum Letter Phase-F Kpa -\U16A37;Bamum Letter Phase-F Samba -\U16A38;Bamum Letter Phase-F Vueq -\U16A40;Mro Letter Ta -\U16A41;Mro Letter Ngi -\U16A42;Mro Letter Yo -\U16A43;Mro Letter Mim -\U16A44;Mro Letter Ba -\U16A45;Mro Letter Da -\U16A46;Mro Letter A -\U16A47;Mro Letter Phi -\U16A48;Mro Letter Khai -\U16A49;Mro Letter Hao -\U16A4A;Mro Letter Dai -\U16A4B;Mro Letter Chu -\U16A4C;Mro Letter Keaae -\U16A4D;Mro Letter Ol -\U16A4E;Mro Letter Maem -\U16A4F;Mro Letter Nin -\U16A50;Mro Letter Pa -\U16A51;Mro Letter Oo -\U16A52;Mro Letter O -\U16A53;Mro Letter Ro -\U16A54;Mro Letter Shi -\U16A55;Mro Letter Thea -\U16A56;Mro Letter Ea -\U16A57;Mro Letter Wa -\U16A58;Mro Letter E -\U16A59;Mro Letter Ko -\U16A5A;Mro Letter Lan -\U16A5B;Mro Letter La -\U16A5C;Mro Letter Hai -\U16A5D;Mro Letter Ri -\U16A5E;Mro Letter Tek -\U16A60;Mro Digit Zero -\U16A61;Mro Digit One -\U16A62;Mro Digit Two -\U16A63;Mro Digit Three -\U16A64;Mro Digit Four -\U16A65;Mro Digit Five -\U16A66;Mro Digit Six -\U16A67;Mro Digit Seven -\U16A68;Mro Digit Eight -\U16A69;Mro Digit Nine -\U16A6E;Mro Danda -\U16A6F;Mro Double Danda -\U16A70;Tangsa Letter Oz -\U16A71;Tangsa Letter Oc -\U16A72;Tangsa Letter Oq -\U16A73;Tangsa Letter Ox -\U16A74;Tangsa Letter Az -\U16A75;Tangsa Letter Ac -\U16A76;Tangsa Letter Aq -\U16A77;Tangsa Letter Ax -\U16A78;Tangsa Letter Vz -\U16A79;Tangsa Letter Vc -\U16A7A;Tangsa Letter Vq -\U16A7B;Tangsa Letter Vx -\U16A7C;Tangsa Letter Ez -\U16A7D;Tangsa Letter Ec -\U16A7E;Tangsa Letter Eq -\U16A7F;Tangsa Letter Ex -\U16A80;Tangsa Letter Iz -\U16A81;Tangsa Letter Ic -\U16A82;Tangsa Letter Iq -\U16A83;Tangsa Letter Ix -\U16A84;Tangsa Letter Uz -\U16A85;Tangsa Letter Uc -\U16A86;Tangsa Letter Uq -\U16A87;Tangsa Letter Ux -\U16A88;Tangsa Letter Awz -\U16A89;Tangsa Letter Awc -\U16A8A;Tangsa Letter Awq -\U16A8B;Tangsa Letter Awx -\U16A8C;Tangsa Letter Uiz -\U16A8D;Tangsa Letter Uic -\U16A8E;Tangsa Letter Uiq -\U16A8F;Tangsa Letter Uix -\U16A90;Tangsa Letter Final Ng -\U16A91;Tangsa Letter Long Uex -\U16A92;Tangsa Letter Short Uez -\U16A93;Tangsa Letter Short Awx -\U16A94;Tangsa Letter Uec -\U16A95;Tangsa Letter Uez -\U16A96;Tangsa Letter Ueq -\U16A97;Tangsa Letter Uex -\U16A98;Tangsa Letter Uiuz -\U16A99;Tangsa Letter Uiuc -\U16A9A;Tangsa Letter Uiuq -\U16A9B;Tangsa Letter Uiux -\U16A9C;Tangsa Letter Mz -\U16A9D;Tangsa Letter Mc -\U16A9E;Tangsa Letter Mq -\U16A9F;Tangsa Letter Mx -\U16AA0;Tangsa Letter Ka -\U16AA1;Tangsa Letter Kha -\U16AA2;Tangsa Letter Ga -\U16AA3;Tangsa Letter Nga -\U16AA4;Tangsa Letter Sa -\U16AA5;Tangsa Letter Ya -\U16AA6;Tangsa Letter Wa -\U16AA7;Tangsa Letter Pa -\U16AA8;Tangsa Letter Nya -\U16AA9;Tangsa Letter Pha -\U16AAA;Tangsa Letter Ba -\U16AAB;Tangsa Letter Ma -\U16AAC;Tangsa Letter Na -\U16AAD;Tangsa Letter Ha -\U16AAE;Tangsa Letter La -\U16AAF;Tangsa Letter Hta -\U16AB0;Tangsa Letter Ta -\U16AB1;Tangsa Letter Da -\U16AB2;Tangsa Letter Ra -\U16AB3;Tangsa Letter Nha -\U16AB4;Tangsa Letter Sha -\U16AB5;Tangsa Letter Ca -\U16AB6;Tangsa Letter Tsa -\U16AB7;Tangsa Letter Gha -\U16AB8;Tangsa Letter Htta -\U16AB9;Tangsa Letter Tha -\U16ABA;Tangsa Letter Xa -\U16ABB;Tangsa Letter Fa -\U16ABC;Tangsa Letter Dha -\U16ABD;Tangsa Letter Cha -\U16ABE;Tangsa Letter Za -\U16AC0;Tangsa Digit Zero -\U16AC1;Tangsa Digit One -\U16AC2;Tangsa Digit Two -\U16AC3;Tangsa Digit Three -\U16AC4;Tangsa Digit Four -\U16AC5;Tangsa Digit Five -\U16AC6;Tangsa Digit Six -\U16AC7;Tangsa Digit Seven -\U16AC8;Tangsa Digit Eight -\U16AC9;Tangsa Digit Nine -\U16AD0;Bassa Vah Letter Enni -\U16AD1;Bassa Vah Letter Ka -\U16AD2;Bassa Vah Letter Se -\U16AD3;Bassa Vah Letter Fa -\U16AD4;Bassa Vah Letter Mbe -\U16AD5;Bassa Vah Letter Yie -\U16AD6;Bassa Vah Letter Gah -\U16AD7;Bassa Vah Letter Dhii -\U16AD8;Bassa Vah Letter Kpah -\U16AD9;Bassa Vah Letter Jo -\U16ADA;Bassa Vah Letter Hwah -\U16ADB;Bassa Vah Letter Wa -\U16ADC;Bassa Vah Letter Zo -\U16ADD;Bassa Vah Letter Gbu -\U16ADE;Bassa Vah Letter Do -\U16ADF;Bassa Vah Letter Ce -\U16AE0;Bassa Vah Letter Uwu -\U16AE1;Bassa Vah Letter To -\U16AE2;Bassa Vah Letter Ba -\U16AE3;Bassa Vah Letter Vu -\U16AE4;Bassa Vah Letter Yein -\U16AE5;Bassa Vah Letter Pa -\U16AE6;Bassa Vah Letter Wadda -\U16AE7;Bassa Vah Letter A -\U16AE8;Bassa Vah Letter O -\U16AE9;Bassa Vah Letter Oo -\U16AEA;Bassa Vah Letter U -\U16AEB;Bassa Vah Letter Ee -\U16AEC;Bassa Vah Letter E -\U16AED;Bassa Vah Letter I -\U16AF0;Bassa Vah Combining High Tone -\U16AF1;Bassa Vah Combining Low Tone -\U16AF2;Bassa Vah Combining Mid Tone -\U16AF3;Bassa Vah Combining Low-Mid Tone -\U16AF4;Bassa Vah Combining High-Low Tone -\U16AF5;Bassa Vah Full Stop -\U16B00;Pahawh Hmong Vowel Keeb -\U16B01;Pahawh Hmong Vowel Keev -\U16B02;Pahawh Hmong Vowel Kib -\U16B03;Pahawh Hmong Vowel Kiv -\U16B04;Pahawh Hmong Vowel Kaub -\U16B05;Pahawh Hmong Vowel Kauv -\U16B06;Pahawh Hmong Vowel Kub -\U16B07;Pahawh Hmong Vowel Kuv -\U16B08;Pahawh Hmong Vowel Keb -\U16B09;Pahawh Hmong Vowel Kev -\U16B0A;Pahawh Hmong Vowel Kaib -\U16B0B;Pahawh Hmong Vowel Kaiv -\U16B0C;Pahawh Hmong Vowel Koob -\U16B0D;Pahawh Hmong Vowel Koov -\U16B0E;Pahawh Hmong Vowel Kawb -\U16B0F;Pahawh Hmong Vowel Kawv -\U16B10;Pahawh Hmong Vowel Kuab -\U16B11;Pahawh Hmong Vowel Kuav -\U16B12;Pahawh Hmong Vowel Kob -\U16B13;Pahawh Hmong Vowel Kov -\U16B14;Pahawh Hmong Vowel Kiab -\U16B15;Pahawh Hmong Vowel Kiav -\U16B16;Pahawh Hmong Vowel Kab -\U16B17;Pahawh Hmong Vowel Kav -\U16B18;Pahawh Hmong Vowel Kwb -\U16B19;Pahawh Hmong Vowel Kwv -\U16B1A;Pahawh Hmong Vowel Kaab -\U16B1B;Pahawh Hmong Vowel Kaav -\U16B1C;Pahawh Hmong Consonant Vau -\U16B1D;Pahawh Hmong Consonant Ntsau -\U16B1E;Pahawh Hmong Consonant Lau -\U16B1F;Pahawh Hmong Consonant Hau -\U16B20;Pahawh Hmong Consonant Nlau -\U16B21;Pahawh Hmong Consonant Rau -\U16B22;Pahawh Hmong Consonant Nkau -\U16B23;Pahawh Hmong Consonant Qhau -\U16B24;Pahawh Hmong Consonant Yau -\U16B25;Pahawh Hmong Consonant Hlau -\U16B26;Pahawh Hmong Consonant Mau -\U16B27;Pahawh Hmong Consonant Chau -\U16B28;Pahawh Hmong Consonant Nchau -\U16B29;Pahawh Hmong Consonant Hnau -\U16B2A;Pahawh Hmong Consonant Plhau -\U16B2B;Pahawh Hmong Consonant Nthau -\U16B2C;Pahawh Hmong Consonant Nau -\U16B2D;Pahawh Hmong Consonant Au -\U16B2E;Pahawh Hmong Consonant Xau -\U16B2F;Pahawh Hmong Consonant Cau -\U16B30;Pahawh Hmong Mark Cim Tub -\U16B31;Pahawh Hmong Mark Cim So -\U16B32;Pahawh Hmong Mark Cim Kes -\U16B33;Pahawh Hmong Mark Cim Khav -\U16B34;Pahawh Hmong Mark Cim Suam -\U16B35;Pahawh Hmong Mark Cim Hom -\U16B36;Pahawh Hmong Mark Cim Taum -\U16B37;Pahawh Hmong Sign Vos Thom -\U16B38;Pahawh Hmong Sign Vos Tshab Ceeb -\U16B39;Pahawh Hmong Sign Cim Cheem -\U16B3A;Pahawh Hmong Sign Vos Thiab -\U16B3B;Pahawh Hmong Sign Vos Feem -\U16B3C;Pahawh Hmong Sign Xyeem Ntxiv -\U16B3D;Pahawh Hmong Sign Xyeem Rho -\U16B3E;Pahawh Hmong Sign Xyeem Tov -\U16B3F;Pahawh Hmong Sign Xyeem Faib -\U16B40;Pahawh Hmong Sign Vos Seev -\U16B41;Pahawh Hmong Sign Meej Suab -\U16B42;Pahawh Hmong Sign Vos Nrua -\U16B43;Pahawh Hmong Sign Ib Yam -\U16B44;Pahawh Hmong Sign Xaus -\U16B45;Pahawh Hmong Sign Cim Tsov Rog -\U16B50;Pahawh Hmong Digit Zero -\U16B51;Pahawh Hmong Digit One -\U16B52;Pahawh Hmong Digit Two -\U16B53;Pahawh Hmong Digit Three -\U16B54;Pahawh Hmong Digit Four -\U16B55;Pahawh Hmong Digit Five -\U16B56;Pahawh Hmong Digit Six -\U16B57;Pahawh Hmong Digit Seven -\U16B58;Pahawh Hmong Digit Eight -\U16B59;Pahawh Hmong Digit Nine -\U16B5B;Pahawh Hmong Number Tens -\U16B5C;Pahawh Hmong Number Hundreds -\U16B5D;Pahawh Hmong Number Ten Thousands -\U16B5E;Pahawh Hmong Number Millions -\U16B5F;Pahawh Hmong Number Hundred Millions -\U16B60;Pahawh Hmong Number Ten Billions -\U16B61;Pahawh Hmong Number Trillions -\U16B63;Pahawh Hmong Sign Vos Lub -\U16B64;Pahawh Hmong Sign Xyoo -\U16B65;Pahawh Hmong Sign Hli -\U16B66;Pahawh Hmong Sign Third-Stage Hli -\U16B67;Pahawh Hmong Sign Zwj Thaj -\U16B68;Pahawh Hmong Sign Hnub -\U16B69;Pahawh Hmong Sign Nqig -\U16B6A;Pahawh Hmong Sign Xiab -\U16B6B;Pahawh Hmong Sign Ntuj -\U16B6C;Pahawh Hmong Sign Av -\U16B6D;Pahawh Hmong Sign Txheej Ceev -\U16B6E;Pahawh Hmong Sign Meej Tseeb -\U16B6F;Pahawh Hmong Sign Tau -\U16B70;Pahawh Hmong Sign Los -\U16B71;Pahawh Hmong Sign Mus -\U16B72;Pahawh Hmong Sign Cim Hais Lus Ntog Ntog -\U16B73;Pahawh Hmong Sign Cim Cuam Tshooj -\U16B74;Pahawh Hmong Sign Cim Txwv -\U16B75;Pahawh Hmong Sign Cim Txwv Chwv -\U16B76;Pahawh Hmong Sign Cim Pub Dawb -\U16B77;Pahawh Hmong Sign Cim Nres Tos -\U16B7D;Pahawh Hmong Clan Sign Tsheej -\U16B7E;Pahawh Hmong Clan Sign Yeeg -\U16B7F;Pahawh Hmong Clan Sign Lis -\U16B80;Pahawh Hmong Clan Sign Lauj -\U16B81;Pahawh Hmong Clan Sign Xyooj -\U16B82;Pahawh Hmong Clan Sign Koo -\U16B83;Pahawh Hmong Clan Sign Hawj -\U16B84;Pahawh Hmong Clan Sign Muas -\U16B85;Pahawh Hmong Clan Sign Thoj -\U16B86;Pahawh Hmong Clan Sign Tsab -\U16B87;Pahawh Hmong Clan Sign Phab -\U16B88;Pahawh Hmong Clan Sign Khab -\U16B89;Pahawh Hmong Clan Sign Ham -\U16B8A;Pahawh Hmong Clan Sign Vaj -\U16B8B;Pahawh Hmong Clan Sign Faj -\U16B8C;Pahawh Hmong Clan Sign Yaj -\U16B8D;Pahawh Hmong Clan Sign Tswb -\U16B8E;Pahawh Hmong Clan Sign Kwm -\U16B8F;Pahawh Hmong Clan Sign Vwj -\U16E40;Medefaidrin Capital Letter M -\U16E41;Medefaidrin Capital Letter S -\U16E42;Medefaidrin Capital Letter V -\U16E43;Medefaidrin Capital Letter W -\U16E44;Medefaidrin Capital Letter Atiu -\U16E45;Medefaidrin Capital Letter Z -\U16E46;Medefaidrin Capital Letter Kp -\U16E47;Medefaidrin Capital Letter P -\U16E48;Medefaidrin Capital Letter T -\U16E49;Medefaidrin Capital Letter G -\U16E4A;Medefaidrin Capital Letter F -\U16E4B;Medefaidrin Capital Letter I -\U16E4C;Medefaidrin Capital Letter K -\U16E4D;Medefaidrin Capital Letter A -\U16E4E;Medefaidrin Capital Letter J -\U16E4F;Medefaidrin Capital Letter E -\U16E50;Medefaidrin Capital Letter B -\U16E51;Medefaidrin Capital Letter C -\U16E52;Medefaidrin Capital Letter U -\U16E53;Medefaidrin Capital Letter Yu -\U16E54;Medefaidrin Capital Letter L -\U16E55;Medefaidrin Capital Letter Q -\U16E56;Medefaidrin Capital Letter Hp -\U16E57;Medefaidrin Capital Letter Ny -\U16E58;Medefaidrin Capital Letter X -\U16E59;Medefaidrin Capital Letter D -\U16E5A;Medefaidrin Capital Letter Oe -\U16E5B;Medefaidrin Capital Letter N -\U16E5C;Medefaidrin Capital Letter R -\U16E5D;Medefaidrin Capital Letter O -\U16E5E;Medefaidrin Capital Letter Ai -\U16E5F;Medefaidrin Capital Letter Y -\U16E60;Medefaidrin Small Letter M -\U16E61;Medefaidrin Small Letter S -\U16E62;Medefaidrin Small Letter V -\U16E63;Medefaidrin Small Letter W -\U16E64;Medefaidrin Small Letter Atiu -\U16E65;Medefaidrin Small Letter Z -\U16E66;Medefaidrin Small Letter Kp -\U16E67;Medefaidrin Small Letter P -\U16E68;Medefaidrin Small Letter T -\U16E69;Medefaidrin Small Letter G -\U16E6A;Medefaidrin Small Letter F -\U16E6B;Medefaidrin Small Letter I -\U16E6C;Medefaidrin Small Letter K -\U16E6D;Medefaidrin Small Letter A -\U16E6E;Medefaidrin Small Letter J -\U16E6F;Medefaidrin Small Letter E -\U16E70;Medefaidrin Small Letter B -\U16E71;Medefaidrin Small Letter C -\U16E72;Medefaidrin Small Letter U -\U16E73;Medefaidrin Small Letter Yu -\U16E74;Medefaidrin Small Letter L -\U16E75;Medefaidrin Small Letter Q -\U16E76;Medefaidrin Small Letter Hp -\U16E77;Medefaidrin Small Letter Ny -\U16E78;Medefaidrin Small Letter X -\U16E79;Medefaidrin Small Letter D -\U16E7A;Medefaidrin Small Letter Oe -\U16E7B;Medefaidrin Small Letter N -\U16E7C;Medefaidrin Small Letter R -\U16E7D;Medefaidrin Small Letter O -\U16E7E;Medefaidrin Small Letter Ai -\U16E7F;Medefaidrin Small Letter Y -\U16E80;Medefaidrin Digit Zero -\U16E81;Medefaidrin Digit One -\U16E82;Medefaidrin Digit Two -\U16E83;Medefaidrin Digit Three -\U16E84;Medefaidrin Digit Four -\U16E85;Medefaidrin Digit Five -\U16E86;Medefaidrin Digit Six -\U16E87;Medefaidrin Digit Seven -\U16E88;Medefaidrin Digit Eight -\U16E89;Medefaidrin Digit Nine -\U16E8A;Medefaidrin Number Ten -\U16E8B;Medefaidrin Number Eleven -\U16E8C;Medefaidrin Number Twelve -\U16E8D;Medefaidrin Number Thirteen -\U16E8E;Medefaidrin Number Fourteen -\U16E8F;Medefaidrin Number Fifteen -\U16E90;Medefaidrin Number Sixteen -\U16E91;Medefaidrin Number Seventeen -\U16E92;Medefaidrin Number Eighteen -\U16E93;Medefaidrin Number Nineteen -\U16E94;Medefaidrin Digit One Alternate Form -\U16E95;Medefaidrin Digit Two Alternate Form -\U16E96;Medefaidrin Digit Three Alternate Form -\U16E97;Medefaidrin Comma -\U16E98;Medefaidrin Full Stop -\U16E99;Medefaidrin Symbol Aiva -\U16E9A;Medefaidrin Exclamation Oh -\U16F00;Miao Letter Pa -\U16F01;Miao Letter Ba -\U16F02;Miao Letter Yi Pa -\U16F03;Miao Letter Pla -\U16F04;Miao Letter Ma -\U16F05;Miao Letter Mha -\U16F06;Miao Letter Archaic Ma -\U16F07;Miao Letter Fa -\U16F08;Miao Letter Va -\U16F09;Miao Letter Vfa -\U16F0A;Miao Letter Ta -\U16F0B;Miao Letter Da -\U16F0C;Miao Letter Yi Tta -\U16F0D;Miao Letter Yi Ta -\U16F0E;Miao Letter Tta -\U16F0F;Miao Letter Dda -\U16F10;Miao Letter Na -\U16F11;Miao Letter Nha -\U16F12;Miao Letter Yi Nna -\U16F13;Miao Letter Archaic Na -\U16F14;Miao Letter Nna -\U16F15;Miao Letter Nnha -\U16F16;Miao Letter La -\U16F17;Miao Letter Lya -\U16F18;Miao Letter Lha -\U16F19;Miao Letter Lhya -\U16F1A;Miao Letter Tlha -\U16F1B;Miao Letter Dlha -\U16F1C;Miao Letter Tlhya -\U16F1D;Miao Letter Dlhya -\U16F1E;Miao Letter Ka -\U16F1F;Miao Letter Ga -\U16F20;Miao Letter Yi Ka -\U16F21;Miao Letter Qa -\U16F22;Miao Letter Qga -\U16F23;Miao Letter Nga -\U16F24;Miao Letter Ngha -\U16F25;Miao Letter Archaic Nga -\U16F26;Miao Letter Ha -\U16F27;Miao Letter Xa -\U16F28;Miao Letter Gha -\U16F29;Miao Letter Ghha -\U16F2A;Miao Letter Tssa -\U16F2B;Miao Letter Dzza -\U16F2C;Miao Letter Nya -\U16F2D;Miao Letter Nyha -\U16F2E;Miao Letter Tsha -\U16F2F;Miao Letter Dzha -\U16F30;Miao Letter Yi Tsha -\U16F31;Miao Letter Yi Dzha -\U16F32;Miao Letter Reformed Tsha -\U16F33;Miao Letter Sha -\U16F34;Miao Letter Ssa -\U16F35;Miao Letter Zha -\U16F36;Miao Letter Zsha -\U16F37;Miao Letter Tsa -\U16F38;Miao Letter Dza -\U16F39;Miao Letter Yi Tsa -\U16F3A;Miao Letter Sa -\U16F3B;Miao Letter Za -\U16F3C;Miao Letter Zsa -\U16F3D;Miao Letter Zza -\U16F3E;Miao Letter Zzsa -\U16F3F;Miao Letter Archaic Zza -\U16F40;Miao Letter Zzya -\U16F41;Miao Letter Zzsya -\U16F42;Miao Letter Wa -\U16F43;Miao Letter Ah -\U16F44;Miao Letter Hha -\U16F45;Miao Letter Bri -\U16F46;Miao Letter Syi -\U16F47;Miao Letter Dzyi -\U16F48;Miao Letter Te -\U16F49;Miao Letter Tse -\U16F4A;Miao Letter Rte -\U16F4F;Miao Sign Consonant Modifier Bar -\U16F50;Miao Letter Nasalization -\U16F51;Miao Sign Aspiration -\U16F52;Miao Sign Reformed Voicing -\U16F53;Miao Sign Reformed Aspiration -\U16F54;Miao Vowel Sign A -\U16F55;Miao Vowel Sign Aa -\U16F56;Miao Vowel Sign Ahh -\U16F57;Miao Vowel Sign An -\U16F58;Miao Vowel Sign Ang -\U16F59;Miao Vowel Sign O -\U16F5A;Miao Vowel Sign Oo -\U16F5B;Miao Vowel Sign Wo -\U16F5C;Miao Vowel Sign W -\U16F5D;Miao Vowel Sign E -\U16F5E;Miao Vowel Sign En -\U16F5F;Miao Vowel Sign Eng -\U16F60;Miao Vowel Sign Oey -\U16F61;Miao Vowel Sign I -\U16F62;Miao Vowel Sign Ia -\U16F63;Miao Vowel Sign Ian -\U16F64;Miao Vowel Sign Iang -\U16F65;Miao Vowel Sign Io -\U16F66;Miao Vowel Sign Ie -\U16F67;Miao Vowel Sign Ii -\U16F68;Miao Vowel Sign Iu -\U16F69;Miao Vowel Sign Ing -\U16F6A;Miao Vowel Sign U -\U16F6B;Miao Vowel Sign Ua -\U16F6C;Miao Vowel Sign Uan -\U16F6D;Miao Vowel Sign Uang -\U16F6E;Miao Vowel Sign Uu -\U16F6F;Miao Vowel Sign Uei -\U16F70;Miao Vowel Sign Ung -\U16F71;Miao Vowel Sign Y -\U16F72;Miao Vowel Sign Yi -\U16F73;Miao Vowel Sign Ae -\U16F74;Miao Vowel Sign Aee -\U16F75;Miao Vowel Sign Err -\U16F76;Miao Vowel Sign Rounded Err -\U16F77;Miao Vowel Sign Er -\U16F78;Miao Vowel Sign Rounded Er -\U16F79;Miao Vowel Sign Ai -\U16F7A;Miao Vowel Sign Ei -\U16F7B;Miao Vowel Sign Au -\U16F7C;Miao Vowel Sign Ou -\U16F7D;Miao Vowel Sign N -\U16F7E;Miao Vowel Sign Ng -\U16F7F;Miao Vowel Sign Uog -\U16F80;Miao Vowel Sign Yui -\U16F81;Miao Vowel Sign Og -\U16F82;Miao Vowel Sign Oer -\U16F83;Miao Vowel Sign Vw -\U16F84;Miao Vowel Sign Ig -\U16F85;Miao Vowel Sign Ea -\U16F86;Miao Vowel Sign Iong -\U16F87;Miao Vowel Sign Ui -\U16F8F;Miao Tone Right -\U16F90;Miao Tone Top Right -\U16F91;Miao Tone Above -\U16F92;Miao Tone Below -\U16F93;Miao Letter Tone-2 -\U16F94;Miao Letter Tone-3 -\U16F95;Miao Letter Tone-4 -\U16F96;Miao Letter Tone-5 -\U16F97;Miao Letter Tone-6 -\U16F98;Miao Letter Tone-7 -\U16F99;Miao Letter Tone-8 -\U16F9A;Miao Letter Reformed Tone-1 -\U16F9B;Miao Letter Reformed Tone-2 -\U16F9C;Miao Letter Reformed Tone-4 -\U16F9D;Miao Letter Reformed Tone-5 -\U16F9E;Miao Letter Reformed Tone-6 -\U16F9F;Miao Letter Reformed Tone-8 -\U16FE0;Tangut Iteration Mark -\U16FE1;Nushu Iteration Mark -\U16FE2;Old Chinese Hook Mark -\U16FE3;Old Chinese Iteration Mark -\U16FE4;Khitan Small Script Filler -\U16FF0;Vietnamese Alternate Reading Mark Ca -\U16FF1;Vietnamese Alternate Reading Mark Nhay -\U18800;Tangut Component-001 -\U18801;Tangut Component-002 -\U18802;Tangut Component-003 -\U18803;Tangut Component-004 -\U18804;Tangut Component-005 -\U18805;Tangut Component-006 -\U18806;Tangut Component-007 -\U18807;Tangut Component-008 -\U18808;Tangut Component-009 -\U18809;Tangut Component-010 -\U1880A;Tangut Component-011 -\U1880B;Tangut Component-012 -\U1880C;Tangut Component-013 -\U1880D;Tangut Component-014 -\U1880E;Tangut Component-015 -\U1880F;Tangut Component-016 -\U18810;Tangut Component-017 -\U18811;Tangut Component-018 -\U18812;Tangut Component-019 -\U18813;Tangut Component-020 -\U18814;Tangut Component-021 -\U18815;Tangut Component-022 -\U18816;Tangut Component-023 -\U18817;Tangut Component-024 -\U18818;Tangut Component-025 -\U18819;Tangut Component-026 -\U1881A;Tangut Component-027 -\U1881B;Tangut Component-028 -\U1881C;Tangut Component-029 -\U1881D;Tangut Component-030 -\U1881E;Tangut Component-031 -\U1881F;Tangut Component-032 -\U18820;Tangut Component-033 -\U18821;Tangut Component-034 -\U18822;Tangut Component-035 -\U18823;Tangut Component-036 -\U18824;Tangut Component-037 -\U18825;Tangut Component-038 -\U18826;Tangut Component-039 -\U18827;Tangut Component-040 -\U18828;Tangut Component-041 -\U18829;Tangut Component-042 -\U1882A;Tangut Component-043 -\U1882B;Tangut Component-044 -\U1882C;Tangut Component-045 -\U1882D;Tangut Component-046 -\U1882E;Tangut Component-047 -\U1882F;Tangut Component-048 -\U18830;Tangut Component-049 -\U18831;Tangut Component-050 -\U18832;Tangut Component-051 -\U18833;Tangut Component-052 -\U18834;Tangut Component-053 -\U18835;Tangut Component-054 -\U18836;Tangut Component-055 -\U18837;Tangut Component-056 -\U18838;Tangut Component-057 -\U18839;Tangut Component-058 -\U1883A;Tangut Component-059 -\U1883B;Tangut Component-060 -\U1883C;Tangut Component-061 -\U1883D;Tangut Component-062 -\U1883E;Tangut Component-063 -\U1883F;Tangut Component-064 -\U18840;Tangut Component-065 -\U18841;Tangut Component-066 -\U18842;Tangut Component-067 -\U18843;Tangut Component-068 -\U18844;Tangut Component-069 -\U18845;Tangut Component-070 -\U18846;Tangut Component-071 -\U18847;Tangut Component-072 -\U18848;Tangut Component-073 -\U18849;Tangut Component-074 -\U1884A;Tangut Component-075 -\U1884B;Tangut Component-076 -\U1884C;Tangut Component-077 -\U1884D;Tangut Component-078 -\U1884E;Tangut Component-079 -\U1884F;Tangut Component-080 -\U18850;Tangut Component-081 -\U18851;Tangut Component-082 -\U18852;Tangut Component-083 -\U18853;Tangut Component-084 -\U18854;Tangut Component-085 -\U18855;Tangut Component-086 -\U18856;Tangut Component-087 -\U18857;Tangut Component-088 -\U18858;Tangut Component-089 -\U18859;Tangut Component-090 -\U1885A;Tangut Component-091 -\U1885B;Tangut Component-092 -\U1885C;Tangut Component-093 -\U1885D;Tangut Component-094 -\U1885E;Tangut Component-095 -\U1885F;Tangut Component-096 -\U18860;Tangut Component-097 -\U18861;Tangut Component-098 -\U18862;Tangut Component-099 -\U18863;Tangut Component-100 -\U18864;Tangut Component-101 -\U18865;Tangut Component-102 -\U18866;Tangut Component-103 -\U18867;Tangut Component-104 -\U18868;Tangut Component-105 -\U18869;Tangut Component-106 -\U1886A;Tangut Component-107 -\U1886B;Tangut Component-108 -\U1886C;Tangut Component-109 -\U1886D;Tangut Component-110 -\U1886E;Tangut Component-111 -\U1886F;Tangut Component-112 -\U18870;Tangut Component-113 -\U18871;Tangut Component-114 -\U18872;Tangut Component-115 -\U18873;Tangut Component-116 -\U18874;Tangut Component-117 -\U18875;Tangut Component-118 -\U18876;Tangut Component-119 -\U18877;Tangut Component-120 -\U18878;Tangut Component-121 -\U18879;Tangut Component-122 -\U1887A;Tangut Component-123 -\U1887B;Tangut Component-124 -\U1887C;Tangut Component-125 -\U1887D;Tangut Component-126 -\U1887E;Tangut Component-127 -\U1887F;Tangut Component-128 -\U18880;Tangut Component-129 -\U18881;Tangut Component-130 -\U18882;Tangut Component-131 -\U18883;Tangut Component-132 -\U18884;Tangut Component-133 -\U18885;Tangut Component-134 -\U18886;Tangut Component-135 -\U18887;Tangut Component-136 -\U18888;Tangut Component-137 -\U18889;Tangut Component-138 -\U1888A;Tangut Component-139 -\U1888B;Tangut Component-140 -\U1888C;Tangut Component-141 -\U1888D;Tangut Component-142 -\U1888E;Tangut Component-143 -\U1888F;Tangut Component-144 -\U18890;Tangut Component-145 -\U18891;Tangut Component-146 -\U18892;Tangut Component-147 -\U18893;Tangut Component-148 -\U18894;Tangut Component-149 -\U18895;Tangut Component-150 -\U18896;Tangut Component-151 -\U18897;Tangut Component-152 -\U18898;Tangut Component-153 -\U18899;Tangut Component-154 -\U1889A;Tangut Component-155 -\U1889B;Tangut Component-156 -\U1889C;Tangut Component-157 -\U1889D;Tangut Component-158 -\U1889E;Tangut Component-159 -\U1889F;Tangut Component-160 -\U188A0;Tangut Component-161 -\U188A1;Tangut Component-162 -\U188A2;Tangut Component-163 -\U188A3;Tangut Component-164 -\U188A4;Tangut Component-165 -\U188A5;Tangut Component-166 -\U188A6;Tangut Component-167 -\U188A7;Tangut Component-168 -\U188A8;Tangut Component-169 -\U188A9;Tangut Component-170 -\U188AA;Tangut Component-171 -\U188AB;Tangut Component-172 -\U188AC;Tangut Component-173 -\U188AD;Tangut Component-174 -\U188AE;Tangut Component-175 -\U188AF;Tangut Component-176 -\U188B0;Tangut Component-177 -\U188B1;Tangut Component-178 -\U188B2;Tangut Component-179 -\U188B3;Tangut Component-180 -\U188B4;Tangut Component-181 -\U188B5;Tangut Component-182 -\U188B6;Tangut Component-183 -\U188B7;Tangut Component-184 -\U188B8;Tangut Component-185 -\U188B9;Tangut Component-186 -\U188BA;Tangut Component-187 -\U188BB;Tangut Component-188 -\U188BC;Tangut Component-189 -\U188BD;Tangut Component-190 -\U188BE;Tangut Component-191 -\U188BF;Tangut Component-192 -\U188C0;Tangut Component-193 -\U188C1;Tangut Component-194 -\U188C2;Tangut Component-195 -\U188C3;Tangut Component-196 -\U188C4;Tangut Component-197 -\U188C5;Tangut Component-198 -\U188C6;Tangut Component-199 -\U188C7;Tangut Component-200 -\U188C8;Tangut Component-201 -\U188C9;Tangut Component-202 -\U188CA;Tangut Component-203 -\U188CB;Tangut Component-204 -\U188CC;Tangut Component-205 -\U188CD;Tangut Component-206 -\U188CE;Tangut Component-207 -\U188CF;Tangut Component-208 -\U188D0;Tangut Component-209 -\U188D1;Tangut Component-210 -\U188D2;Tangut Component-211 -\U188D3;Tangut Component-212 -\U188D4;Tangut Component-213 -\U188D5;Tangut Component-214 -\U188D6;Tangut Component-215 -\U188D7;Tangut Component-216 -\U188D8;Tangut Component-217 -\U188D9;Tangut Component-218 -\U188DA;Tangut Component-219 -\U188DB;Tangut Component-220 -\U188DC;Tangut Component-221 -\U188DD;Tangut Component-222 -\U188DE;Tangut Component-223 -\U188DF;Tangut Component-224 -\U188E0;Tangut Component-225 -\U188E1;Tangut Component-226 -\U188E2;Tangut Component-227 -\U188E3;Tangut Component-228 -\U188E4;Tangut Component-229 -\U188E5;Tangut Component-230 -\U188E6;Tangut Component-231 -\U188E7;Tangut Component-232 -\U188E8;Tangut Component-233 -\U188E9;Tangut Component-234 -\U188EA;Tangut Component-235 -\U188EB;Tangut Component-236 -\U188EC;Tangut Component-237 -\U188ED;Tangut Component-238 -\U188EE;Tangut Component-239 -\U188EF;Tangut Component-240 -\U188F0;Tangut Component-241 -\U188F1;Tangut Component-242 -\U188F2;Tangut Component-243 -\U188F3;Tangut Component-244 -\U188F4;Tangut Component-245 -\U188F5;Tangut Component-246 -\U188F6;Tangut Component-247 -\U188F7;Tangut Component-248 -\U188F8;Tangut Component-249 -\U188F9;Tangut Component-250 -\U188FA;Tangut Component-251 -\U188FB;Tangut Component-252 -\U188FC;Tangut Component-253 -\U188FD;Tangut Component-254 -\U188FE;Tangut Component-255 -\U188FF;Tangut Component-256 -\U18900;Tangut Component-257 -\U18901;Tangut Component-258 -\U18902;Tangut Component-259 -\U18903;Tangut Component-260 -\U18904;Tangut Component-261 -\U18905;Tangut Component-262 -\U18906;Tangut Component-263 -\U18907;Tangut Component-264 -\U18908;Tangut Component-265 -\U18909;Tangut Component-266 -\U1890A;Tangut Component-267 -\U1890B;Tangut Component-268 -\U1890C;Tangut Component-269 -\U1890D;Tangut Component-270 -\U1890E;Tangut Component-271 -\U1890F;Tangut Component-272 -\U18910;Tangut Component-273 -\U18911;Tangut Component-274 -\U18912;Tangut Component-275 -\U18913;Tangut Component-276 -\U18914;Tangut Component-277 -\U18915;Tangut Component-278 -\U18916;Tangut Component-279 -\U18917;Tangut Component-280 -\U18918;Tangut Component-281 -\U18919;Tangut Component-282 -\U1891A;Tangut Component-283 -\U1891B;Tangut Component-284 -\U1891C;Tangut Component-285 -\U1891D;Tangut Component-286 -\U1891E;Tangut Component-287 -\U1891F;Tangut Component-288 -\U18920;Tangut Component-289 -\U18921;Tangut Component-290 -\U18922;Tangut Component-291 -\U18923;Tangut Component-292 -\U18924;Tangut Component-293 -\U18925;Tangut Component-294 -\U18926;Tangut Component-295 -\U18927;Tangut Component-296 -\U18928;Tangut Component-297 -\U18929;Tangut Component-298 -\U1892A;Tangut Component-299 -\U1892B;Tangut Component-300 -\U1892C;Tangut Component-301 -\U1892D;Tangut Component-302 -\U1892E;Tangut Component-303 -\U1892F;Tangut Component-304 -\U18930;Tangut Component-305 -\U18931;Tangut Component-306 -\U18932;Tangut Component-307 -\U18933;Tangut Component-308 -\U18934;Tangut Component-309 -\U18935;Tangut Component-310 -\U18936;Tangut Component-311 -\U18937;Tangut Component-312 -\U18938;Tangut Component-313 -\U18939;Tangut Component-314 -\U1893A;Tangut Component-315 -\U1893B;Tangut Component-316 -\U1893C;Tangut Component-317 -\U1893D;Tangut Component-318 -\U1893E;Tangut Component-319 -\U1893F;Tangut Component-320 -\U18940;Tangut Component-321 -\U18941;Tangut Component-322 -\U18942;Tangut Component-323 -\U18943;Tangut Component-324 -\U18944;Tangut Component-325 -\U18945;Tangut Component-326 -\U18946;Tangut Component-327 -\U18947;Tangut Component-328 -\U18948;Tangut Component-329 -\U18949;Tangut Component-330 -\U1894A;Tangut Component-331 -\U1894B;Tangut Component-332 -\U1894C;Tangut Component-333 -\U1894D;Tangut Component-334 -\U1894E;Tangut Component-335 -\U1894F;Tangut Component-336 -\U18950;Tangut Component-337 -\U18951;Tangut Component-338 -\U18952;Tangut Component-339 -\U18953;Tangut Component-340 -\U18954;Tangut Component-341 -\U18955;Tangut Component-342 -\U18956;Tangut Component-343 -\U18957;Tangut Component-344 -\U18958;Tangut Component-345 -\U18959;Tangut Component-346 -\U1895A;Tangut Component-347 -\U1895B;Tangut Component-348 -\U1895C;Tangut Component-349 -\U1895D;Tangut Component-350 -\U1895E;Tangut Component-351 -\U1895F;Tangut Component-352 -\U18960;Tangut Component-353 -\U18961;Tangut Component-354 -\U18962;Tangut Component-355 -\U18963;Tangut Component-356 -\U18964;Tangut Component-357 -\U18965;Tangut Component-358 -\U18966;Tangut Component-359 -\U18967;Tangut Component-360 -\U18968;Tangut Component-361 -\U18969;Tangut Component-362 -\U1896A;Tangut Component-363 -\U1896B;Tangut Component-364 -\U1896C;Tangut Component-365 -\U1896D;Tangut Component-366 -\U1896E;Tangut Component-367 -\U1896F;Tangut Component-368 -\U18970;Tangut Component-369 -\U18971;Tangut Component-370 -\U18972;Tangut Component-371 -\U18973;Tangut Component-372 -\U18974;Tangut Component-373 -\U18975;Tangut Component-374 -\U18976;Tangut Component-375 -\U18977;Tangut Component-376 -\U18978;Tangut Component-377 -\U18979;Tangut Component-378 -\U1897A;Tangut Component-379 -\U1897B;Tangut Component-380 -\U1897C;Tangut Component-381 -\U1897D;Tangut Component-382 -\U1897E;Tangut Component-383 -\U1897F;Tangut Component-384 -\U18980;Tangut Component-385 -\U18981;Tangut Component-386 -\U18982;Tangut Component-387 -\U18983;Tangut Component-388 -\U18984;Tangut Component-389 -\U18985;Tangut Component-390 -\U18986;Tangut Component-391 -\U18987;Tangut Component-392 -\U18988;Tangut Component-393 -\U18989;Tangut Component-394 -\U1898A;Tangut Component-395 -\U1898B;Tangut Component-396 -\U1898C;Tangut Component-397 -\U1898D;Tangut Component-398 -\U1898E;Tangut Component-399 -\U1898F;Tangut Component-400 -\U18990;Tangut Component-401 -\U18991;Tangut Component-402 -\U18992;Tangut Component-403 -\U18993;Tangut Component-404 -\U18994;Tangut Component-405 -\U18995;Tangut Component-406 -\U18996;Tangut Component-407 -\U18997;Tangut Component-408 -\U18998;Tangut Component-409 -\U18999;Tangut Component-410 -\U1899A;Tangut Component-411 -\U1899B;Tangut Component-412 -\U1899C;Tangut Component-413 -\U1899D;Tangut Component-414 -\U1899E;Tangut Component-415 -\U1899F;Tangut Component-416 -\U189A0;Tangut Component-417 -\U189A1;Tangut Component-418 -\U189A2;Tangut Component-419 -\U189A3;Tangut Component-420 -\U189A4;Tangut Component-421 -\U189A5;Tangut Component-422 -\U189A6;Tangut Component-423 -\U189A7;Tangut Component-424 -\U189A8;Tangut Component-425 -\U189A9;Tangut Component-426 -\U189AA;Tangut Component-427 -\U189AB;Tangut Component-428 -\U189AC;Tangut Component-429 -\U189AD;Tangut Component-430 -\U189AE;Tangut Component-431 -\U189AF;Tangut Component-432 -\U189B0;Tangut Component-433 -\U189B1;Tangut Component-434 -\U189B2;Tangut Component-435 -\U189B3;Tangut Component-436 -\U189B4;Tangut Component-437 -\U189B5;Tangut Component-438 -\U189B6;Tangut Component-439 -\U189B7;Tangut Component-440 -\U189B8;Tangut Component-441 -\U189B9;Tangut Component-442 -\U189BA;Tangut Component-443 -\U189BB;Tangut Component-444 -\U189BC;Tangut Component-445 -\U189BD;Tangut Component-446 -\U189BE;Tangut Component-447 -\U189BF;Tangut Component-448 -\U189C0;Tangut Component-449 -\U189C1;Tangut Component-450 -\U189C2;Tangut Component-451 -\U189C3;Tangut Component-452 -\U189C4;Tangut Component-453 -\U189C5;Tangut Component-454 -\U189C6;Tangut Component-455 -\U189C7;Tangut Component-456 -\U189C8;Tangut Component-457 -\U189C9;Tangut Component-458 -\U189CA;Tangut Component-459 -\U189CB;Tangut Component-460 -\U189CC;Tangut Component-461 -\U189CD;Tangut Component-462 -\U189CE;Tangut Component-463 -\U189CF;Tangut Component-464 -\U189D0;Tangut Component-465 -\U189D1;Tangut Component-466 -\U189D2;Tangut Component-467 -\U189D3;Tangut Component-468 -\U189D4;Tangut Component-469 -\U189D5;Tangut Component-470 -\U189D6;Tangut Component-471 -\U189D7;Tangut Component-472 -\U189D8;Tangut Component-473 -\U189D9;Tangut Component-474 -\U189DA;Tangut Component-475 -\U189DB;Tangut Component-476 -\U189DC;Tangut Component-477 -\U189DD;Tangut Component-478 -\U189DE;Tangut Component-479 -\U189DF;Tangut Component-480 -\U189E0;Tangut Component-481 -\U189E1;Tangut Component-482 -\U189E2;Tangut Component-483 -\U189E3;Tangut Component-484 -\U189E4;Tangut Component-485 -\U189E5;Tangut Component-486 -\U189E6;Tangut Component-487 -\U189E7;Tangut Component-488 -\U189E8;Tangut Component-489 -\U189E9;Tangut Component-490 -\U189EA;Tangut Component-491 -\U189EB;Tangut Component-492 -\U189EC;Tangut Component-493 -\U189ED;Tangut Component-494 -\U189EE;Tangut Component-495 -\U189EF;Tangut Component-496 -\U189F0;Tangut Component-497 -\U189F1;Tangut Component-498 -\U189F2;Tangut Component-499 -\U189F3;Tangut Component-500 -\U189F4;Tangut Component-501 -\U189F5;Tangut Component-502 -\U189F6;Tangut Component-503 -\U189F7;Tangut Component-504 -\U189F8;Tangut Component-505 -\U189F9;Tangut Component-506 -\U189FA;Tangut Component-507 -\U189FB;Tangut Component-508 -\U189FC;Tangut Component-509 -\U189FD;Tangut Component-510 -\U189FE;Tangut Component-511 -\U189FF;Tangut Component-512 -\U18A00;Tangut Component-513 -\U18A01;Tangut Component-514 -\U18A02;Tangut Component-515 -\U18A03;Tangut Component-516 -\U18A04;Tangut Component-517 -\U18A05;Tangut Component-518 -\U18A06;Tangut Component-519 -\U18A07;Tangut Component-520 -\U18A08;Tangut Component-521 -\U18A09;Tangut Component-522 -\U18A0A;Tangut Component-523 -\U18A0B;Tangut Component-524 -\U18A0C;Tangut Component-525 -\U18A0D;Tangut Component-526 -\U18A0E;Tangut Component-527 -\U18A0F;Tangut Component-528 -\U18A10;Tangut Component-529 -\U18A11;Tangut Component-530 -\U18A12;Tangut Component-531 -\U18A13;Tangut Component-532 -\U18A14;Tangut Component-533 -\U18A15;Tangut Component-534 -\U18A16;Tangut Component-535 -\U18A17;Tangut Component-536 -\U18A18;Tangut Component-537 -\U18A19;Tangut Component-538 -\U18A1A;Tangut Component-539 -\U18A1B;Tangut Component-540 -\U18A1C;Tangut Component-541 -\U18A1D;Tangut Component-542 -\U18A1E;Tangut Component-543 -\U18A1F;Tangut Component-544 -\U18A20;Tangut Component-545 -\U18A21;Tangut Component-546 -\U18A22;Tangut Component-547 -\U18A23;Tangut Component-548 -\U18A24;Tangut Component-549 -\U18A25;Tangut Component-550 -\U18A26;Tangut Component-551 -\U18A27;Tangut Component-552 -\U18A28;Tangut Component-553 -\U18A29;Tangut Component-554 -\U18A2A;Tangut Component-555 -\U18A2B;Tangut Component-556 -\U18A2C;Tangut Component-557 -\U18A2D;Tangut Component-558 -\U18A2E;Tangut Component-559 -\U18A2F;Tangut Component-560 -\U18A30;Tangut Component-561 -\U18A31;Tangut Component-562 -\U18A32;Tangut Component-563 -\U18A33;Tangut Component-564 -\U18A34;Tangut Component-565 -\U18A35;Tangut Component-566 -\U18A36;Tangut Component-567 -\U18A37;Tangut Component-568 -\U18A38;Tangut Component-569 -\U18A39;Tangut Component-570 -\U18A3A;Tangut Component-571 -\U18A3B;Tangut Component-572 -\U18A3C;Tangut Component-573 -\U18A3D;Tangut Component-574 -\U18A3E;Tangut Component-575 -\U18A3F;Tangut Component-576 -\U18A40;Tangut Component-577 -\U18A41;Tangut Component-578 -\U18A42;Tangut Component-579 -\U18A43;Tangut Component-580 -\U18A44;Tangut Component-581 -\U18A45;Tangut Component-582 -\U18A46;Tangut Component-583 -\U18A47;Tangut Component-584 -\U18A48;Tangut Component-585 -\U18A49;Tangut Component-586 -\U18A4A;Tangut Component-587 -\U18A4B;Tangut Component-588 -\U18A4C;Tangut Component-589 -\U18A4D;Tangut Component-590 -\U18A4E;Tangut Component-591 -\U18A4F;Tangut Component-592 -\U18A50;Tangut Component-593 -\U18A51;Tangut Component-594 -\U18A52;Tangut Component-595 -\U18A53;Tangut Component-596 -\U18A54;Tangut Component-597 -\U18A55;Tangut Component-598 -\U18A56;Tangut Component-599 -\U18A57;Tangut Component-600 -\U18A58;Tangut Component-601 -\U18A59;Tangut Component-602 -\U18A5A;Tangut Component-603 -\U18A5B;Tangut Component-604 -\U18A5C;Tangut Component-605 -\U18A5D;Tangut Component-606 -\U18A5E;Tangut Component-607 -\U18A5F;Tangut Component-608 -\U18A60;Tangut Component-609 -\U18A61;Tangut Component-610 -\U18A62;Tangut Component-611 -\U18A63;Tangut Component-612 -\U18A64;Tangut Component-613 -\U18A65;Tangut Component-614 -\U18A66;Tangut Component-615 -\U18A67;Tangut Component-616 -\U18A68;Tangut Component-617 -\U18A69;Tangut Component-618 -\U18A6A;Tangut Component-619 -\U18A6B;Tangut Component-620 -\U18A6C;Tangut Component-621 -\U18A6D;Tangut Component-622 -\U18A6E;Tangut Component-623 -\U18A6F;Tangut Component-624 -\U18A70;Tangut Component-625 -\U18A71;Tangut Component-626 -\U18A72;Tangut Component-627 -\U18A73;Tangut Component-628 -\U18A74;Tangut Component-629 -\U18A75;Tangut Component-630 -\U18A76;Tangut Component-631 -\U18A77;Tangut Component-632 -\U18A78;Tangut Component-633 -\U18A79;Tangut Component-634 -\U18A7A;Tangut Component-635 -\U18A7B;Tangut Component-636 -\U18A7C;Tangut Component-637 -\U18A7D;Tangut Component-638 -\U18A7E;Tangut Component-639 -\U18A7F;Tangut Component-640 -\U18A80;Tangut Component-641 -\U18A81;Tangut Component-642 -\U18A82;Tangut Component-643 -\U18A83;Tangut Component-644 -\U18A84;Tangut Component-645 -\U18A85;Tangut Component-646 -\U18A86;Tangut Component-647 -\U18A87;Tangut Component-648 -\U18A88;Tangut Component-649 -\U18A89;Tangut Component-650 -\U18A8A;Tangut Component-651 -\U18A8B;Tangut Component-652 -\U18A8C;Tangut Component-653 -\U18A8D;Tangut Component-654 -\U18A8E;Tangut Component-655 -\U18A8F;Tangut Component-656 -\U18A90;Tangut Component-657 -\U18A91;Tangut Component-658 -\U18A92;Tangut Component-659 -\U18A93;Tangut Component-660 -\U18A94;Tangut Component-661 -\U18A95;Tangut Component-662 -\U18A96;Tangut Component-663 -\U18A97;Tangut Component-664 -\U18A98;Tangut Component-665 -\U18A99;Tangut Component-666 -\U18A9A;Tangut Component-667 -\U18A9B;Tangut Component-668 -\U18A9C;Tangut Component-669 -\U18A9D;Tangut Component-670 -\U18A9E;Tangut Component-671 -\U18A9F;Tangut Component-672 -\U18AA0;Tangut Component-673 -\U18AA1;Tangut Component-674 -\U18AA2;Tangut Component-675 -\U18AA3;Tangut Component-676 -\U18AA4;Tangut Component-677 -\U18AA5;Tangut Component-678 -\U18AA6;Tangut Component-679 -\U18AA7;Tangut Component-680 -\U18AA8;Tangut Component-681 -\U18AA9;Tangut Component-682 -\U18AAA;Tangut Component-683 -\U18AAB;Tangut Component-684 -\U18AAC;Tangut Component-685 -\U18AAD;Tangut Component-686 -\U18AAE;Tangut Component-687 -\U18AAF;Tangut Component-688 -\U18AB0;Tangut Component-689 -\U18AB1;Tangut Component-690 -\U18AB2;Tangut Component-691 -\U18AB3;Tangut Component-692 -\U18AB4;Tangut Component-693 -\U18AB5;Tangut Component-694 -\U18AB6;Tangut Component-695 -\U18AB7;Tangut Component-696 -\U18AB8;Tangut Component-697 -\U18AB9;Tangut Component-698 -\U18ABA;Tangut Component-699 -\U18ABB;Tangut Component-700 -\U18ABC;Tangut Component-701 -\U18ABD;Tangut Component-702 -\U18ABE;Tangut Component-703 -\U18ABF;Tangut Component-704 -\U18AC0;Tangut Component-705 -\U18AC1;Tangut Component-706 -\U18AC2;Tangut Component-707 -\U18AC3;Tangut Component-708 -\U18AC4;Tangut Component-709 -\U18AC5;Tangut Component-710 -\U18AC6;Tangut Component-711 -\U18AC7;Tangut Component-712 -\U18AC8;Tangut Component-713 -\U18AC9;Tangut Component-714 -\U18ACA;Tangut Component-715 -\U18ACB;Tangut Component-716 -\U18ACC;Tangut Component-717 -\U18ACD;Tangut Component-718 -\U18ACE;Tangut Component-719 -\U18ACF;Tangut Component-720 -\U18AD0;Tangut Component-721 -\U18AD1;Tangut Component-722 -\U18AD2;Tangut Component-723 -\U18AD3;Tangut Component-724 -\U18AD4;Tangut Component-725 -\U18AD5;Tangut Component-726 -\U18AD6;Tangut Component-727 -\U18AD7;Tangut Component-728 -\U18AD8;Tangut Component-729 -\U18AD9;Tangut Component-730 -\U18ADA;Tangut Component-731 -\U18ADB;Tangut Component-732 -\U18ADC;Tangut Component-733 -\U18ADD;Tangut Component-734 -\U18ADE;Tangut Component-735 -\U18ADF;Tangut Component-736 -\U18AE0;Tangut Component-737 -\U18AE1;Tangut Component-738 -\U18AE2;Tangut Component-739 -\U18AE3;Tangut Component-740 -\U18AE4;Tangut Component-741 -\U18AE5;Tangut Component-742 -\U18AE6;Tangut Component-743 -\U18AE7;Tangut Component-744 -\U18AE8;Tangut Component-745 -\U18AE9;Tangut Component-746 -\U18AEA;Tangut Component-747 -\U18AEB;Tangut Component-748 -\U18AEC;Tangut Component-749 -\U18AED;Tangut Component-750 -\U18AEE;Tangut Component-751 -\U18AEF;Tangut Component-752 -\U18AF0;Tangut Component-753 -\U18AF1;Tangut Component-754 -\U18AF2;Tangut Component-755 -\U18AF3;Tangut Component-756 -\U18AF4;Tangut Component-757 -\U18AF5;Tangut Component-758 -\U18AF6;Tangut Component-759 -\U18AF7;Tangut Component-760 -\U18AF8;Tangut Component-761 -\U18AF9;Tangut Component-762 -\U18AFA;Tangut Component-763 -\U18AFB;Tangut Component-764 -\U18AFC;Tangut Component-765 -\U18AFD;Tangut Component-766 -\U18AFE;Tangut Component-767 -\U18AFF;Tangut Component-768 -\U18B00;Khitan Small Script Character-18B00 -\U18B01;Khitan Small Script Character-18B01 -\U18B02;Khitan Small Script Character-18B02 -\U18B03;Khitan Small Script Character-18B03 -\U18B04;Khitan Small Script Character-18B04 -\U18B05;Khitan Small Script Character-18B05 -\U18B06;Khitan Small Script Character-18B06 -\U18B07;Khitan Small Script Character-18B07 -\U18B08;Khitan Small Script Character-18B08 -\U18B09;Khitan Small Script Character-18B09 -\U18B0A;Khitan Small Script Character-18B0A -\U18B0B;Khitan Small Script Character-18B0B -\U18B0C;Khitan Small Script Character-18B0C -\U18B0D;Khitan Small Script Character-18B0D -\U18B0E;Khitan Small Script Character-18B0E -\U18B0F;Khitan Small Script Character-18B0F -\U18B10;Khitan Small Script Character-18B10 -\U18B11;Khitan Small Script Character-18B11 -\U18B12;Khitan Small Script Character-18B12 -\U18B13;Khitan Small Script Character-18B13 -\U18B14;Khitan Small Script Character-18B14 -\U18B15;Khitan Small Script Character-18B15 -\U18B16;Khitan Small Script Character-18B16 -\U18B17;Khitan Small Script Character-18B17 -\U18B18;Khitan Small Script Character-18B18 -\U18B19;Khitan Small Script Character-18B19 -\U18B1A;Khitan Small Script Character-18B1A -\U18B1B;Khitan Small Script Character-18B1B -\U18B1C;Khitan Small Script Character-18B1C -\U18B1D;Khitan Small Script Character-18B1D -\U18B1E;Khitan Small Script Character-18B1E -\U18B1F;Khitan Small Script Character-18B1F -\U18B20;Khitan Small Script Character-18B20 -\U18B21;Khitan Small Script Character-18B21 -\U18B22;Khitan Small Script Character-18B22 -\U18B23;Khitan Small Script Character-18B23 -\U18B24;Khitan Small Script Character-18B24 -\U18B25;Khitan Small Script Character-18B25 -\U18B26;Khitan Small Script Character-18B26 -\U18B27;Khitan Small Script Character-18B27 -\U18B28;Khitan Small Script Character-18B28 -\U18B29;Khitan Small Script Character-18B29 -\U18B2A;Khitan Small Script Character-18B2A -\U18B2B;Khitan Small Script Character-18B2B -\U18B2C;Khitan Small Script Character-18B2C -\U18B2D;Khitan Small Script Character-18B2D -\U18B2E;Khitan Small Script Character-18B2E -\U18B2F;Khitan Small Script Character-18B2F -\U18B30;Khitan Small Script Character-18B30 -\U18B31;Khitan Small Script Character-18B31 -\U18B32;Khitan Small Script Character-18B32 -\U18B33;Khitan Small Script Character-18B33 -\U18B34;Khitan Small Script Character-18B34 -\U18B35;Khitan Small Script Character-18B35 -\U18B36;Khitan Small Script Character-18B36 -\U18B37;Khitan Small Script Character-18B37 -\U18B38;Khitan Small Script Character-18B38 -\U18B39;Khitan Small Script Character-18B39 -\U18B3A;Khitan Small Script Character-18B3A -\U18B3B;Khitan Small Script Character-18B3B -\U18B3C;Khitan Small Script Character-18B3C -\U18B3D;Khitan Small Script Character-18B3D -\U18B3E;Khitan Small Script Character-18B3E -\U18B3F;Khitan Small Script Character-18B3F -\U18B40;Khitan Small Script Character-18B40 -\U18B41;Khitan Small Script Character-18B41 -\U18B42;Khitan Small Script Character-18B42 -\U18B43;Khitan Small Script Character-18B43 -\U18B44;Khitan Small Script Character-18B44 -\U18B45;Khitan Small Script Character-18B45 -\U18B46;Khitan Small Script Character-18B46 -\U18B47;Khitan Small Script Character-18B47 -\U18B48;Khitan Small Script Character-18B48 -\U18B49;Khitan Small Script Character-18B49 -\U18B4A;Khitan Small Script Character-18B4A -\U18B4B;Khitan Small Script Character-18B4B -\U18B4C;Khitan Small Script Character-18B4C -\U18B4D;Khitan Small Script Character-18B4D -\U18B4E;Khitan Small Script Character-18B4E -\U18B4F;Khitan Small Script Character-18B4F -\U18B50;Khitan Small Script Character-18B50 -\U18B51;Khitan Small Script Character-18B51 -\U18B52;Khitan Small Script Character-18B52 -\U18B53;Khitan Small Script Character-18B53 -\U18B54;Khitan Small Script Character-18B54 -\U18B55;Khitan Small Script Character-18B55 -\U18B56;Khitan Small Script Character-18B56 -\U18B57;Khitan Small Script Character-18B57 -\U18B58;Khitan Small Script Character-18B58 -\U18B59;Khitan Small Script Character-18B59 -\U18B5A;Khitan Small Script Character-18B5A -\U18B5B;Khitan Small Script Character-18B5B -\U18B5C;Khitan Small Script Character-18B5C -\U18B5D;Khitan Small Script Character-18B5D -\U18B5E;Khitan Small Script Character-18B5E -\U18B5F;Khitan Small Script Character-18B5F -\U18B60;Khitan Small Script Character-18B60 -\U18B61;Khitan Small Script Character-18B61 -\U18B62;Khitan Small Script Character-18B62 -\U18B63;Khitan Small Script Character-18B63 -\U18B64;Khitan Small Script Character-18B64 -\U18B65;Khitan Small Script Character-18B65 -\U18B66;Khitan Small Script Character-18B66 -\U18B67;Khitan Small Script Character-18B67 -\U18B68;Khitan Small Script Character-18B68 -\U18B69;Khitan Small Script Character-18B69 -\U18B6A;Khitan Small Script Character-18B6A -\U18B6B;Khitan Small Script Character-18B6B -\U18B6C;Khitan Small Script Character-18B6C -\U18B6D;Khitan Small Script Character-18B6D -\U18B6E;Khitan Small Script Character-18B6E -\U18B6F;Khitan Small Script Character-18B6F -\U18B70;Khitan Small Script Character-18B70 -\U18B71;Khitan Small Script Character-18B71 -\U18B72;Khitan Small Script Character-18B72 -\U18B73;Khitan Small Script Character-18B73 -\U18B74;Khitan Small Script Character-18B74 -\U18B75;Khitan Small Script Character-18B75 -\U18B76;Khitan Small Script Character-18B76 -\U18B77;Khitan Small Script Character-18B77 -\U18B78;Khitan Small Script Character-18B78 -\U18B79;Khitan Small Script Character-18B79 -\U18B7A;Khitan Small Script Character-18B7A -\U18B7B;Khitan Small Script Character-18B7B -\U18B7C;Khitan Small Script Character-18B7C -\U18B7D;Khitan Small Script Character-18B7D -\U18B7E;Khitan Small Script Character-18B7E -\U18B7F;Khitan Small Script Character-18B7F -\U18B80;Khitan Small Script Character-18B80 -\U18B81;Khitan Small Script Character-18B81 -\U18B82;Khitan Small Script Character-18B82 -\U18B83;Khitan Small Script Character-18B83 -\U18B84;Khitan Small Script Character-18B84 -\U18B85;Khitan Small Script Character-18B85 -\U18B86;Khitan Small Script Character-18B86 -\U18B87;Khitan Small Script Character-18B87 -\U18B88;Khitan Small Script Character-18B88 -\U18B89;Khitan Small Script Character-18B89 -\U18B8A;Khitan Small Script Character-18B8A -\U18B8B;Khitan Small Script Character-18B8B -\U18B8C;Khitan Small Script Character-18B8C -\U18B8D;Khitan Small Script Character-18B8D -\U18B8E;Khitan Small Script Character-18B8E -\U18B8F;Khitan Small Script Character-18B8F -\U18B90;Khitan Small Script Character-18B90 -\U18B91;Khitan Small Script Character-18B91 -\U18B92;Khitan Small Script Character-18B92 -\U18B93;Khitan Small Script Character-18B93 -\U18B94;Khitan Small Script Character-18B94 -\U18B95;Khitan Small Script Character-18B95 -\U18B96;Khitan Small Script Character-18B96 -\U18B97;Khitan Small Script Character-18B97 -\U18B98;Khitan Small Script Character-18B98 -\U18B99;Khitan Small Script Character-18B99 -\U18B9A;Khitan Small Script Character-18B9A -\U18B9B;Khitan Small Script Character-18B9B -\U18B9C;Khitan Small Script Character-18B9C -\U18B9D;Khitan Small Script Character-18B9D -\U18B9E;Khitan Small Script Character-18B9E -\U18B9F;Khitan Small Script Character-18B9F -\U18BA0;Khitan Small Script Character-18BA0 -\U18BA1;Khitan Small Script Character-18BA1 -\U18BA2;Khitan Small Script Character-18BA2 -\U18BA3;Khitan Small Script Character-18BA3 -\U18BA4;Khitan Small Script Character-18BA4 -\U18BA5;Khitan Small Script Character-18BA5 -\U18BA6;Khitan Small Script Character-18BA6 -\U18BA7;Khitan Small Script Character-18BA7 -\U18BA8;Khitan Small Script Character-18BA8 -\U18BA9;Khitan Small Script Character-18BA9 -\U18BAA;Khitan Small Script Character-18BAA -\U18BAB;Khitan Small Script Character-18BAB -\U18BAC;Khitan Small Script Character-18BAC -\U18BAD;Khitan Small Script Character-18BAD -\U18BAE;Khitan Small Script Character-18BAE -\U18BAF;Khitan Small Script Character-18BAF -\U18BB0;Khitan Small Script Character-18BB0 -\U18BB1;Khitan Small Script Character-18BB1 -\U18BB2;Khitan Small Script Character-18BB2 -\U18BB3;Khitan Small Script Character-18BB3 -\U18BB4;Khitan Small Script Character-18BB4 -\U18BB5;Khitan Small Script Character-18BB5 -\U18BB6;Khitan Small Script Character-18BB6 -\U18BB7;Khitan Small Script Character-18BB7 -\U18BB8;Khitan Small Script Character-18BB8 -\U18BB9;Khitan Small Script Character-18BB9 -\U18BBA;Khitan Small Script Character-18BBA -\U18BBB;Khitan Small Script Character-18BBB -\U18BBC;Khitan Small Script Character-18BBC -\U18BBD;Khitan Small Script Character-18BBD -\U18BBE;Khitan Small Script Character-18BBE -\U18BBF;Khitan Small Script Character-18BBF -\U18BC0;Khitan Small Script Character-18BC0 -\U18BC1;Khitan Small Script Character-18BC1 -\U18BC2;Khitan Small Script Character-18BC2 -\U18BC3;Khitan Small Script Character-18BC3 -\U18BC4;Khitan Small Script Character-18BC4 -\U18BC5;Khitan Small Script Character-18BC5 -\U18BC6;Khitan Small Script Character-18BC6 -\U18BC7;Khitan Small Script Character-18BC7 -\U18BC8;Khitan Small Script Character-18BC8 -\U18BC9;Khitan Small Script Character-18BC9 -\U18BCA;Khitan Small Script Character-18BCA -\U18BCB;Khitan Small Script Character-18BCB -\U18BCC;Khitan Small Script Character-18BCC -\U18BCD;Khitan Small Script Character-18BCD -\U18BCE;Khitan Small Script Character-18BCE -\U18BCF;Khitan Small Script Character-18BCF -\U18BD0;Khitan Small Script Character-18BD0 -\U18BD1;Khitan Small Script Character-18BD1 -\U18BD2;Khitan Small Script Character-18BD2 -\U18BD3;Khitan Small Script Character-18BD3 -\U18BD4;Khitan Small Script Character-18BD4 -\U18BD5;Khitan Small Script Character-18BD5 -\U18BD6;Khitan Small Script Character-18BD6 -\U18BD7;Khitan Small Script Character-18BD7 -\U18BD8;Khitan Small Script Character-18BD8 -\U18BD9;Khitan Small Script Character-18BD9 -\U18BDA;Khitan Small Script Character-18BDA -\U18BDB;Khitan Small Script Character-18BDB -\U18BDC;Khitan Small Script Character-18BDC -\U18BDD;Khitan Small Script Character-18BDD -\U18BDE;Khitan Small Script Character-18BDE -\U18BDF;Khitan Small Script Character-18BDF -\U18BE0;Khitan Small Script Character-18BE0 -\U18BE1;Khitan Small Script Character-18BE1 -\U18BE2;Khitan Small Script Character-18BE2 -\U18BE3;Khitan Small Script Character-18BE3 -\U18BE4;Khitan Small Script Character-18BE4 -\U18BE5;Khitan Small Script Character-18BE5 -\U18BE6;Khitan Small Script Character-18BE6 -\U18BE7;Khitan Small Script Character-18BE7 -\U18BE8;Khitan Small Script Character-18BE8 -\U18BE9;Khitan Small Script Character-18BE9 -\U18BEA;Khitan Small Script Character-18BEA -\U18BEB;Khitan Small Script Character-18BEB -\U18BEC;Khitan Small Script Character-18BEC -\U18BED;Khitan Small Script Character-18BED -\U18BEE;Khitan Small Script Character-18BEE -\U18BEF;Khitan Small Script Character-18BEF -\U18BF0;Khitan Small Script Character-18BF0 -\U18BF1;Khitan Small Script Character-18BF1 -\U18BF2;Khitan Small Script Character-18BF2 -\U18BF3;Khitan Small Script Character-18BF3 -\U18BF4;Khitan Small Script Character-18BF4 -\U18BF5;Khitan Small Script Character-18BF5 -\U18BF6;Khitan Small Script Character-18BF6 -\U18BF7;Khitan Small Script Character-18BF7 -\U18BF8;Khitan Small Script Character-18BF8 -\U18BF9;Khitan Small Script Character-18BF9 -\U18BFA;Khitan Small Script Character-18BFA -\U18BFB;Khitan Small Script Character-18BFB -\U18BFC;Khitan Small Script Character-18BFC -\U18BFD;Khitan Small Script Character-18BFD -\U18BFE;Khitan Small Script Character-18BFE -\U18BFF;Khitan Small Script Character-18BFF -\U18C00;Khitan Small Script Character-18C00 -\U18C01;Khitan Small Script Character-18C01 -\U18C02;Khitan Small Script Character-18C02 -\U18C03;Khitan Small Script Character-18C03 -\U18C04;Khitan Small Script Character-18C04 -\U18C05;Khitan Small Script Character-18C05 -\U18C06;Khitan Small Script Character-18C06 -\U18C07;Khitan Small Script Character-18C07 -\U18C08;Khitan Small Script Character-18C08 -\U18C09;Khitan Small Script Character-18C09 -\U18C0A;Khitan Small Script Character-18C0A -\U18C0B;Khitan Small Script Character-18C0B -\U18C0C;Khitan Small Script Character-18C0C -\U18C0D;Khitan Small Script Character-18C0D -\U18C0E;Khitan Small Script Character-18C0E -\U18C0F;Khitan Small Script Character-18C0F -\U18C10;Khitan Small Script Character-18C10 -\U18C11;Khitan Small Script Character-18C11 -\U18C12;Khitan Small Script Character-18C12 -\U18C13;Khitan Small Script Character-18C13 -\U18C14;Khitan Small Script Character-18C14 -\U18C15;Khitan Small Script Character-18C15 -\U18C16;Khitan Small Script Character-18C16 -\U18C17;Khitan Small Script Character-18C17 -\U18C18;Khitan Small Script Character-18C18 -\U18C19;Khitan Small Script Character-18C19 -\U18C1A;Khitan Small Script Character-18C1A -\U18C1B;Khitan Small Script Character-18C1B -\U18C1C;Khitan Small Script Character-18C1C -\U18C1D;Khitan Small Script Character-18C1D -\U18C1E;Khitan Small Script Character-18C1E -\U18C1F;Khitan Small Script Character-18C1F -\U18C20;Khitan Small Script Character-18C20 -\U18C21;Khitan Small Script Character-18C21 -\U18C22;Khitan Small Script Character-18C22 -\U18C23;Khitan Small Script Character-18C23 -\U18C24;Khitan Small Script Character-18C24 -\U18C25;Khitan Small Script Character-18C25 -\U18C26;Khitan Small Script Character-18C26 -\U18C27;Khitan Small Script Character-18C27 -\U18C28;Khitan Small Script Character-18C28 -\U18C29;Khitan Small Script Character-18C29 -\U18C2A;Khitan Small Script Character-18C2A -\U18C2B;Khitan Small Script Character-18C2B -\U18C2C;Khitan Small Script Character-18C2C -\U18C2D;Khitan Small Script Character-18C2D -\U18C2E;Khitan Small Script Character-18C2E -\U18C2F;Khitan Small Script Character-18C2F -\U18C30;Khitan Small Script Character-18C30 -\U18C31;Khitan Small Script Character-18C31 -\U18C32;Khitan Small Script Character-18C32 -\U18C33;Khitan Small Script Character-18C33 -\U18C34;Khitan Small Script Character-18C34 -\U18C35;Khitan Small Script Character-18C35 -\U18C36;Khitan Small Script Character-18C36 -\U18C37;Khitan Small Script Character-18C37 -\U18C38;Khitan Small Script Character-18C38 -\U18C39;Khitan Small Script Character-18C39 -\U18C3A;Khitan Small Script Character-18C3A -\U18C3B;Khitan Small Script Character-18C3B -\U18C3C;Khitan Small Script Character-18C3C -\U18C3D;Khitan Small Script Character-18C3D -\U18C3E;Khitan Small Script Character-18C3E -\U18C3F;Khitan Small Script Character-18C3F -\U18C40;Khitan Small Script Character-18C40 -\U18C41;Khitan Small Script Character-18C41 -\U18C42;Khitan Small Script Character-18C42 -\U18C43;Khitan Small Script Character-18C43 -\U18C44;Khitan Small Script Character-18C44 -\U18C45;Khitan Small Script Character-18C45 -\U18C46;Khitan Small Script Character-18C46 -\U18C47;Khitan Small Script Character-18C47 -\U18C48;Khitan Small Script Character-18C48 -\U18C49;Khitan Small Script Character-18C49 -\U18C4A;Khitan Small Script Character-18C4A -\U18C4B;Khitan Small Script Character-18C4B -\U18C4C;Khitan Small Script Character-18C4C -\U18C4D;Khitan Small Script Character-18C4D -\U18C4E;Khitan Small Script Character-18C4E -\U18C4F;Khitan Small Script Character-18C4F -\U18C50;Khitan Small Script Character-18C50 -\U18C51;Khitan Small Script Character-18C51 -\U18C52;Khitan Small Script Character-18C52 -\U18C53;Khitan Small Script Character-18C53 -\U18C54;Khitan Small Script Character-18C54 -\U18C55;Khitan Small Script Character-18C55 -\U18C56;Khitan Small Script Character-18C56 -\U18C57;Khitan Small Script Character-18C57 -\U18C58;Khitan Small Script Character-18C58 -\U18C59;Khitan Small Script Character-18C59 -\U18C5A;Khitan Small Script Character-18C5A -\U18C5B;Khitan Small Script Character-18C5B -\U18C5C;Khitan Small Script Character-18C5C -\U18C5D;Khitan Small Script Character-18C5D -\U18C5E;Khitan Small Script Character-18C5E -\U18C5F;Khitan Small Script Character-18C5F -\U18C60;Khitan Small Script Character-18C60 -\U18C61;Khitan Small Script Character-18C61 -\U18C62;Khitan Small Script Character-18C62 -\U18C63;Khitan Small Script Character-18C63 -\U18C64;Khitan Small Script Character-18C64 -\U18C65;Khitan Small Script Character-18C65 -\U18C66;Khitan Small Script Character-18C66 -\U18C67;Khitan Small Script Character-18C67 -\U18C68;Khitan Small Script Character-18C68 -\U18C69;Khitan Small Script Character-18C69 -\U18C6A;Khitan Small Script Character-18C6A -\U18C6B;Khitan Small Script Character-18C6B -\U18C6C;Khitan Small Script Character-18C6C -\U18C6D;Khitan Small Script Character-18C6D -\U18C6E;Khitan Small Script Character-18C6E -\U18C6F;Khitan Small Script Character-18C6F -\U18C70;Khitan Small Script Character-18C70 -\U18C71;Khitan Small Script Character-18C71 -\U18C72;Khitan Small Script Character-18C72 -\U18C73;Khitan Small Script Character-18C73 -\U18C74;Khitan Small Script Character-18C74 -\U18C75;Khitan Small Script Character-18C75 -\U18C76;Khitan Small Script Character-18C76 -\U18C77;Khitan Small Script Character-18C77 -\U18C78;Khitan Small Script Character-18C78 -\U18C79;Khitan Small Script Character-18C79 -\U18C7A;Khitan Small Script Character-18C7A -\U18C7B;Khitan Small Script Character-18C7B -\U18C7C;Khitan Small Script Character-18C7C -\U18C7D;Khitan Small Script Character-18C7D -\U18C7E;Khitan Small Script Character-18C7E -\U18C7F;Khitan Small Script Character-18C7F -\U18C80;Khitan Small Script Character-18C80 -\U18C81;Khitan Small Script Character-18C81 -\U18C82;Khitan Small Script Character-18C82 -\U18C83;Khitan Small Script Character-18C83 -\U18C84;Khitan Small Script Character-18C84 -\U18C85;Khitan Small Script Character-18C85 -\U18C86;Khitan Small Script Character-18C86 -\U18C87;Khitan Small Script Character-18C87 -\U18C88;Khitan Small Script Character-18C88 -\U18C89;Khitan Small Script Character-18C89 -\U18C8A;Khitan Small Script Character-18C8A -\U18C8B;Khitan Small Script Character-18C8B -\U18C8C;Khitan Small Script Character-18C8C -\U18C8D;Khitan Small Script Character-18C8D -\U18C8E;Khitan Small Script Character-18C8E -\U18C8F;Khitan Small Script Character-18C8F -\U18C90;Khitan Small Script Character-18C90 -\U18C91;Khitan Small Script Character-18C91 -\U18C92;Khitan Small Script Character-18C92 -\U18C93;Khitan Small Script Character-18C93 -\U18C94;Khitan Small Script Character-18C94 -\U18C95;Khitan Small Script Character-18C95 -\U18C96;Khitan Small Script Character-18C96 -\U18C97;Khitan Small Script Character-18C97 -\U18C98;Khitan Small Script Character-18C98 -\U18C99;Khitan Small Script Character-18C99 -\U18C9A;Khitan Small Script Character-18C9A -\U18C9B;Khitan Small Script Character-18C9B -\U18C9C;Khitan Small Script Character-18C9C -\U18C9D;Khitan Small Script Character-18C9D -\U18C9E;Khitan Small Script Character-18C9E -\U18C9F;Khitan Small Script Character-18C9F -\U18CA0;Khitan Small Script Character-18CA0 -\U18CA1;Khitan Small Script Character-18CA1 -\U18CA2;Khitan Small Script Character-18CA2 -\U18CA3;Khitan Small Script Character-18CA3 -\U18CA4;Khitan Small Script Character-18CA4 -\U18CA5;Khitan Small Script Character-18CA5 -\U18CA6;Khitan Small Script Character-18CA6 -\U18CA7;Khitan Small Script Character-18CA7 -\U18CA8;Khitan Small Script Character-18CA8 -\U18CA9;Khitan Small Script Character-18CA9 -\U18CAA;Khitan Small Script Character-18CAA -\U18CAB;Khitan Small Script Character-18CAB -\U18CAC;Khitan Small Script Character-18CAC -\U18CAD;Khitan Small Script Character-18CAD -\U18CAE;Khitan Small Script Character-18CAE -\U18CAF;Khitan Small Script Character-18CAF -\U18CB0;Khitan Small Script Character-18CB0 -\U18CB1;Khitan Small Script Character-18CB1 -\U18CB2;Khitan Small Script Character-18CB2 -\U18CB3;Khitan Small Script Character-18CB3 -\U18CB4;Khitan Small Script Character-18CB4 -\U18CB5;Khitan Small Script Character-18CB5 -\U18CB6;Khitan Small Script Character-18CB6 -\U18CB7;Khitan Small Script Character-18CB7 -\U18CB8;Khitan Small Script Character-18CB8 -\U18CB9;Khitan Small Script Character-18CB9 -\U18CBA;Khitan Small Script Character-18CBA -\U18CBB;Khitan Small Script Character-18CBB -\U18CBC;Khitan Small Script Character-18CBC -\U18CBD;Khitan Small Script Character-18CBD -\U18CBE;Khitan Small Script Character-18CBE -\U18CBF;Khitan Small Script Character-18CBF -\U18CC0;Khitan Small Script Character-18CC0 -\U18CC1;Khitan Small Script Character-18CC1 -\U18CC2;Khitan Small Script Character-18CC2 -\U18CC3;Khitan Small Script Character-18CC3 -\U18CC4;Khitan Small Script Character-18CC4 -\U18CC5;Khitan Small Script Character-18CC5 -\U18CC6;Khitan Small Script Character-18CC6 -\U18CC7;Khitan Small Script Character-18CC7 -\U18CC8;Khitan Small Script Character-18CC8 -\U18CC9;Khitan Small Script Character-18CC9 -\U18CCA;Khitan Small Script Character-18CCA -\U18CCB;Khitan Small Script Character-18CCB -\U18CCC;Khitan Small Script Character-18CCC -\U18CCD;Khitan Small Script Character-18CCD -\U18CCE;Khitan Small Script Character-18CCE -\U18CCF;Khitan Small Script Character-18CCF -\U18CD0;Khitan Small Script Character-18CD0 -\U18CD1;Khitan Small Script Character-18CD1 -\U18CD2;Khitan Small Script Character-18CD2 -\U18CD3;Khitan Small Script Character-18CD3 -\U18CD4;Khitan Small Script Character-18CD4 -\U18CD5;Khitan Small Script Character-18CD5 -\U1AFF0;Katakana Letter Minnan Tone-2 -\U1AFF1;Katakana Letter Minnan Tone-3 -\U1AFF2;Katakana Letter Minnan Tone-4 -\U1AFF3;Katakana Letter Minnan Tone-5 -\U1AFF5;Katakana Letter Minnan Tone-7 -\U1AFF6;Katakana Letter Minnan Tone-8 -\U1AFF7;Katakana Letter Minnan Nasalized Tone-1 -\U1AFF8;Katakana Letter Minnan Nasalized Tone-2 -\U1AFF9;Katakana Letter Minnan Nasalized Tone-3 -\U1AFFA;Katakana Letter Minnan Nasalized Tone-4 -\U1AFFB;Katakana Letter Minnan Nasalized Tone-5 -\U1AFFD;Katakana Letter Minnan Nasalized Tone-7 -\U1AFFE;Katakana Letter Minnan Nasalized Tone-8 -\U1B000;Katakana Letter Archaic E -\U1B001;Hiragana Letter Archaic Ye -\U1B002;Hentaigana Letter A-1 -\U1B003;Hentaigana Letter A-2 -\U1B004;Hentaigana Letter A-3 -\U1B005;Hentaigana Letter A-Wo -\U1B006;Hentaigana Letter I-1 -\U1B007;Hentaigana Letter I-2 -\U1B008;Hentaigana Letter I-3 -\U1B009;Hentaigana Letter I-4 -\U1B00A;Hentaigana Letter U-1 -\U1B00B;Hentaigana Letter U-2 -\U1B00C;Hentaigana Letter U-3 -\U1B00D;Hentaigana Letter U-4 -\U1B00E;Hentaigana Letter U-5 -\U1B00F;Hentaigana Letter E-2 -\U1B010;Hentaigana Letter E-3 -\U1B011;Hentaigana Letter E-4 -\U1B012;Hentaigana Letter E-5 -\U1B013;Hentaigana Letter E-6 -\U1B014;Hentaigana Letter O-1 -\U1B015;Hentaigana Letter O-2 -\U1B016;Hentaigana Letter O-3 -\U1B017;Hentaigana Letter Ka-1 -\U1B018;Hentaigana Letter Ka-2 -\U1B019;Hentaigana Letter Ka-3 -\U1B01A;Hentaigana Letter Ka-4 -\U1B01B;Hentaigana Letter Ka-5 -\U1B01C;Hentaigana Letter Ka-6 -\U1B01D;Hentaigana Letter Ka-7 -\U1B01E;Hentaigana Letter Ka-8 -\U1B01F;Hentaigana Letter Ka-9 -\U1B020;Hentaigana Letter Ka-10 -\U1B021;Hentaigana Letter Ka-11 -\U1B022;Hentaigana Letter Ka-Ke -\U1B023;Hentaigana Letter Ki-1 -\U1B024;Hentaigana Letter Ki-2 -\U1B025;Hentaigana Letter Ki-3 -\U1B026;Hentaigana Letter Ki-4 -\U1B027;Hentaigana Letter Ki-5 -\U1B028;Hentaigana Letter Ki-6 -\U1B029;Hentaigana Letter Ki-7 -\U1B02A;Hentaigana Letter Ki-8 -\U1B02B;Hentaigana Letter Ku-1 -\U1B02C;Hentaigana Letter Ku-2 -\U1B02D;Hentaigana Letter Ku-3 -\U1B02E;Hentaigana Letter Ku-4 -\U1B02F;Hentaigana Letter Ku-5 -\U1B030;Hentaigana Letter Ku-6 -\U1B031;Hentaigana Letter Ku-7 -\U1B032;Hentaigana Letter Ke-1 -\U1B033;Hentaigana Letter Ke-2 -\U1B034;Hentaigana Letter Ke-3 -\U1B035;Hentaigana Letter Ke-4 -\U1B036;Hentaigana Letter Ke-5 -\U1B037;Hentaigana Letter Ke-6 -\U1B038;Hentaigana Letter Ko-1 -\U1B039;Hentaigana Letter Ko-2 -\U1B03A;Hentaigana Letter Ko-3 -\U1B03B;Hentaigana Letter Ko-Ki -\U1B03C;Hentaigana Letter Sa-1 -\U1B03D;Hentaigana Letter Sa-2 -\U1B03E;Hentaigana Letter Sa-3 -\U1B03F;Hentaigana Letter Sa-4 -\U1B040;Hentaigana Letter Sa-5 -\U1B041;Hentaigana Letter Sa-6 -\U1B042;Hentaigana Letter Sa-7 -\U1B043;Hentaigana Letter Sa-8 -\U1B044;Hentaigana Letter Si-1 -\U1B045;Hentaigana Letter Si-2 -\U1B046;Hentaigana Letter Si-3 -\U1B047;Hentaigana Letter Si-4 -\U1B048;Hentaigana Letter Si-5 -\U1B049;Hentaigana Letter Si-6 -\U1B04A;Hentaigana Letter Su-1 -\U1B04B;Hentaigana Letter Su-2 -\U1B04C;Hentaigana Letter Su-3 -\U1B04D;Hentaigana Letter Su-4 -\U1B04E;Hentaigana Letter Su-5 -\U1B04F;Hentaigana Letter Su-6 -\U1B050;Hentaigana Letter Su-7 -\U1B051;Hentaigana Letter Su-8 -\U1B052;Hentaigana Letter Se-1 -\U1B053;Hentaigana Letter Se-2 -\U1B054;Hentaigana Letter Se-3 -\U1B055;Hentaigana Letter Se-4 -\U1B056;Hentaigana Letter Se-5 -\U1B057;Hentaigana Letter So-1 -\U1B058;Hentaigana Letter So-2 -\U1B059;Hentaigana Letter So-3 -\U1B05A;Hentaigana Letter So-4 -\U1B05B;Hentaigana Letter So-5 -\U1B05C;Hentaigana Letter So-6 -\U1B05D;Hentaigana Letter So-7 -\U1B05E;Hentaigana Letter Ta-1 -\U1B05F;Hentaigana Letter Ta-2 -\U1B060;Hentaigana Letter Ta-3 -\U1B061;Hentaigana Letter Ta-4 -\U1B062;Hentaigana Letter Ti-1 -\U1B063;Hentaigana Letter Ti-2 -\U1B064;Hentaigana Letter Ti-3 -\U1B065;Hentaigana Letter Ti-4 -\U1B066;Hentaigana Letter Ti-5 -\U1B067;Hentaigana Letter Ti-6 -\U1B068;Hentaigana Letter Ti-7 -\U1B069;Hentaigana Letter Tu-1 -\U1B06A;Hentaigana Letter Tu-2 -\U1B06B;Hentaigana Letter Tu-3 -\U1B06C;Hentaigana Letter Tu-4 -\U1B06D;Hentaigana Letter Tu-To -\U1B06E;Hentaigana Letter Te-1 -\U1B06F;Hentaigana Letter Te-2 -\U1B070;Hentaigana Letter Te-3 -\U1B071;Hentaigana Letter Te-4 -\U1B072;Hentaigana Letter Te-5 -\U1B073;Hentaigana Letter Te-6 -\U1B074;Hentaigana Letter Te-7 -\U1B075;Hentaigana Letter Te-8 -\U1B076;Hentaigana Letter Te-9 -\U1B077;Hentaigana Letter To-1 -\U1B078;Hentaigana Letter To-2 -\U1B079;Hentaigana Letter To-3 -\U1B07A;Hentaigana Letter To-4 -\U1B07B;Hentaigana Letter To-5 -\U1B07C;Hentaigana Letter To-6 -\U1B07D;Hentaigana Letter To-Ra -\U1B07E;Hentaigana Letter Na-1 -\U1B07F;Hentaigana Letter Na-2 -\U1B080;Hentaigana Letter Na-3 -\U1B081;Hentaigana Letter Na-4 -\U1B082;Hentaigana Letter Na-5 -\U1B083;Hentaigana Letter Na-6 -\U1B084;Hentaigana Letter Na-7 -\U1B085;Hentaigana Letter Na-8 -\U1B086;Hentaigana Letter Na-9 -\U1B087;Hentaigana Letter Ni-1 -\U1B088;Hentaigana Letter Ni-2 -\U1B089;Hentaigana Letter Ni-3 -\U1B08A;Hentaigana Letter Ni-4 -\U1B08B;Hentaigana Letter Ni-5 -\U1B08C;Hentaigana Letter Ni-6 -\U1B08D;Hentaigana Letter Ni-7 -\U1B08E;Hentaigana Letter Ni-Te -\U1B08F;Hentaigana Letter Nu-1 -\U1B090;Hentaigana Letter Nu-2 -\U1B091;Hentaigana Letter Nu-3 -\U1B092;Hentaigana Letter Ne-1 -\U1B093;Hentaigana Letter Ne-2 -\U1B094;Hentaigana Letter Ne-3 -\U1B095;Hentaigana Letter Ne-4 -\U1B096;Hentaigana Letter Ne-5 -\U1B097;Hentaigana Letter Ne-6 -\U1B098;Hentaigana Letter Ne-Ko -\U1B099;Hentaigana Letter No-1 -\U1B09A;Hentaigana Letter No-2 -\U1B09B;Hentaigana Letter No-3 -\U1B09C;Hentaigana Letter No-4 -\U1B09D;Hentaigana Letter No-5 -\U1B09E;Hentaigana Letter Ha-1 -\U1B09F;Hentaigana Letter Ha-2 -\U1B0A0;Hentaigana Letter Ha-3 -\U1B0A1;Hentaigana Letter Ha-4 -\U1B0A2;Hentaigana Letter Ha-5 -\U1B0A3;Hentaigana Letter Ha-6 -\U1B0A4;Hentaigana Letter Ha-7 -\U1B0A5;Hentaigana Letter Ha-8 -\U1B0A6;Hentaigana Letter Ha-9 -\U1B0A7;Hentaigana Letter Ha-10 -\U1B0A8;Hentaigana Letter Ha-11 -\U1B0A9;Hentaigana Letter Hi-1 -\U1B0AA;Hentaigana Letter Hi-2 -\U1B0AB;Hentaigana Letter Hi-3 -\U1B0AC;Hentaigana Letter Hi-4 -\U1B0AD;Hentaigana Letter Hi-5 -\U1B0AE;Hentaigana Letter Hi-6 -\U1B0AF;Hentaigana Letter Hi-7 -\U1B0B0;Hentaigana Letter Hu-1 -\U1B0B1;Hentaigana Letter Hu-2 -\U1B0B2;Hentaigana Letter Hu-3 -\U1B0B3;Hentaigana Letter He-1 -\U1B0B4;Hentaigana Letter He-2 -\U1B0B5;Hentaigana Letter He-3 -\U1B0B6;Hentaigana Letter He-4 -\U1B0B7;Hentaigana Letter He-5 -\U1B0B8;Hentaigana Letter He-6 -\U1B0B9;Hentaigana Letter He-7 -\U1B0BA;Hentaigana Letter Ho-1 -\U1B0BB;Hentaigana Letter Ho-2 -\U1B0BC;Hentaigana Letter Ho-3 -\U1B0BD;Hentaigana Letter Ho-4 -\U1B0BE;Hentaigana Letter Ho-5 -\U1B0BF;Hentaigana Letter Ho-6 -\U1B0C0;Hentaigana Letter Ho-7 -\U1B0C1;Hentaigana Letter Ho-8 -\U1B0C2;Hentaigana Letter Ma-1 -\U1B0C3;Hentaigana Letter Ma-2 -\U1B0C4;Hentaigana Letter Ma-3 -\U1B0C5;Hentaigana Letter Ma-4 -\U1B0C6;Hentaigana Letter Ma-5 -\U1B0C7;Hentaigana Letter Ma-6 -\U1B0C8;Hentaigana Letter Ma-7 -\U1B0C9;Hentaigana Letter Mi-1 -\U1B0CA;Hentaigana Letter Mi-2 -\U1B0CB;Hentaigana Letter Mi-3 -\U1B0CC;Hentaigana Letter Mi-4 -\U1B0CD;Hentaigana Letter Mi-5 -\U1B0CE;Hentaigana Letter Mi-6 -\U1B0CF;Hentaigana Letter Mi-7 -\U1B0D0;Hentaigana Letter Mu-1 -\U1B0D1;Hentaigana Letter Mu-2 -\U1B0D2;Hentaigana Letter Mu-3 -\U1B0D3;Hentaigana Letter Mu-4 -\U1B0D4;Hentaigana Letter Me-1 -\U1B0D5;Hentaigana Letter Me-2 -\U1B0D6;Hentaigana Letter Me-Ma -\U1B0D7;Hentaigana Letter Mo-1 -\U1B0D8;Hentaigana Letter Mo-2 -\U1B0D9;Hentaigana Letter Mo-3 -\U1B0DA;Hentaigana Letter Mo-4 -\U1B0DB;Hentaigana Letter Mo-5 -\U1B0DC;Hentaigana Letter Mo-6 -\U1B0DD;Hentaigana Letter Ya-1 -\U1B0DE;Hentaigana Letter Ya-2 -\U1B0DF;Hentaigana Letter Ya-3 -\U1B0E0;Hentaigana Letter Ya-4 -\U1B0E1;Hentaigana Letter Ya-5 -\U1B0E2;Hentaigana Letter Ya-Yo -\U1B0E3;Hentaigana Letter Yu-1 -\U1B0E4;Hentaigana Letter Yu-2 -\U1B0E5;Hentaigana Letter Yu-3 -\U1B0E6;Hentaigana Letter Yu-4 -\U1B0E7;Hentaigana Letter Yo-1 -\U1B0E8;Hentaigana Letter Yo-2 -\U1B0E9;Hentaigana Letter Yo-3 -\U1B0EA;Hentaigana Letter Yo-4 -\U1B0EB;Hentaigana Letter Yo-5 -\U1B0EC;Hentaigana Letter Yo-6 -\U1B0ED;Hentaigana Letter Ra-1 -\U1B0EE;Hentaigana Letter Ra-2 -\U1B0EF;Hentaigana Letter Ra-3 -\U1B0F0;Hentaigana Letter Ra-4 -\U1B0F1;Hentaigana Letter Ri-1 -\U1B0F2;Hentaigana Letter Ri-2 -\U1B0F3;Hentaigana Letter Ri-3 -\U1B0F4;Hentaigana Letter Ri-4 -\U1B0F5;Hentaigana Letter Ri-5 -\U1B0F6;Hentaigana Letter Ri-6 -\U1B0F7;Hentaigana Letter Ri-7 -\U1B0F8;Hentaigana Letter Ru-1 -\U1B0F9;Hentaigana Letter Ru-2 -\U1B0FA;Hentaigana Letter Ru-3 -\U1B0FB;Hentaigana Letter Ru-4 -\U1B0FC;Hentaigana Letter Ru-5 -\U1B0FD;Hentaigana Letter Ru-6 -\U1B0FE;Hentaigana Letter Re-1 -\U1B0FF;Hentaigana Letter Re-2 -\U1B100;Hentaigana Letter Re-3 -\U1B101;Hentaigana Letter Re-4 -\U1B102;Hentaigana Letter Ro-1 -\U1B103;Hentaigana Letter Ro-2 -\U1B104;Hentaigana Letter Ro-3 -\U1B105;Hentaigana Letter Ro-4 -\U1B106;Hentaigana Letter Ro-5 -\U1B107;Hentaigana Letter Ro-6 -\U1B108;Hentaigana Letter Wa-1 -\U1B109;Hentaigana Letter Wa-2 -\U1B10A;Hentaigana Letter Wa-3 -\U1B10B;Hentaigana Letter Wa-4 -\U1B10C;Hentaigana Letter Wa-5 -\U1B10D;Hentaigana Letter Wi-1 -\U1B10E;Hentaigana Letter Wi-2 -\U1B10F;Hentaigana Letter Wi-3 -\U1B110;Hentaigana Letter Wi-4 -\U1B111;Hentaigana Letter Wi-5 -\U1B112;Hentaigana Letter We-1 -\U1B113;Hentaigana Letter We-2 -\U1B114;Hentaigana Letter We-3 -\U1B115;Hentaigana Letter We-4 -\U1B116;Hentaigana Letter Wo-1 -\U1B117;Hentaigana Letter Wo-2 -\U1B118;Hentaigana Letter Wo-3 -\U1B119;Hentaigana Letter Wo-4 -\U1B11A;Hentaigana Letter Wo-5 -\U1B11B;Hentaigana Letter Wo-6 -\U1B11C;Hentaigana Letter Wo-7 -\U1B11D;Hentaigana Letter N-Mu-Mo-1 -\U1B11E;Hentaigana Letter N-Mu-Mo-2 -\U1B11F;Hiragana Letter Archaic Wu -\U1B120;Katakana Letter Archaic Yi -\U1B121;Katakana Letter Archaic Ye -\U1B122;Katakana Letter Archaic Wu -\U1B132;Hiragana Letter Small Ko -\U1B150;Hiragana Letter Small Wi -\U1B151;Hiragana Letter Small We -\U1B152;Hiragana Letter Small Wo -\U1B155;Katakana Letter Small Ko -\U1B164;Katakana Letter Small Wi -\U1B165;Katakana Letter Small We -\U1B166;Katakana Letter Small Wo -\U1B167;Katakana Letter Small N -\U1B170;Nushu Character-1b170 -\U1B171;Nushu Character-1b171 -\U1B172;Nushu Character-1b172 -\U1B173;Nushu Character-1b173 -\U1B174;Nushu Character-1b174 -\U1B175;Nushu Character-1b175 -\U1B176;Nushu Character-1b176 -\U1B177;Nushu Character-1b177 -\U1B178;Nushu Character-1b178 -\U1B179;Nushu Character-1b179 -\U1B17A;Nushu Character-1b17A -\U1B17B;Nushu Character-1b17B -\U1B17C;Nushu Character-1b17C -\U1B17D;Nushu Character-1b17D -\U1B17E;Nushu Character-1b17E -\U1B17F;Nushu Character-1b17F -\U1B180;Nushu Character-1b180 -\U1B181;Nushu Character-1b181 -\U1B182;Nushu Character-1b182 -\U1B183;Nushu Character-1b183 -\U1B184;Nushu Character-1b184 -\U1B185;Nushu Character-1b185 -\U1B186;Nushu Character-1b186 -\U1B187;Nushu Character-1b187 -\U1B188;Nushu Character-1b188 -\U1B189;Nushu Character-1b189 -\U1B18A;Nushu Character-1b18A -\U1B18B;Nushu Character-1b18B -\U1B18C;Nushu Character-1b18C -\U1B18D;Nushu Character-1b18D -\U1B18E;Nushu Character-1b18E -\U1B18F;Nushu Character-1b18F -\U1B190;Nushu Character-1b190 -\U1B191;Nushu Character-1b191 -\U1B192;Nushu Character-1b192 -\U1B193;Nushu Character-1b193 -\U1B194;Nushu Character-1b194 -\U1B195;Nushu Character-1b195 -\U1B196;Nushu Character-1b196 -\U1B197;Nushu Character-1b197 -\U1B198;Nushu Character-1b198 -\U1B199;Nushu Character-1b199 -\U1B19A;Nushu Character-1b19A -\U1B19B;Nushu Character-1b19B -\U1B19C;Nushu Character-1b19C -\U1B19D;Nushu Character-1b19D -\U1B19E;Nushu Character-1b19E -\U1B19F;Nushu Character-1b19F -\U1B1A0;Nushu Character-1b1A0 -\U1B1A1;Nushu Character-1b1A1 -\U1B1A2;Nushu Character-1b1A2 -\U1B1A3;Nushu Character-1b1A3 -\U1B1A4;Nushu Character-1b1A4 -\U1B1A5;Nushu Character-1b1A5 -\U1B1A6;Nushu Character-1b1A6 -\U1B1A7;Nushu Character-1b1A7 -\U1B1A8;Nushu Character-1b1A8 -\U1B1A9;Nushu Character-1b1A9 -\U1B1AA;Nushu Character-1b1AA -\U1B1AB;Nushu Character-1b1AB -\U1B1AC;Nushu Character-1b1AC -\U1B1AD;Nushu Character-1b1AD -\U1B1AE;Nushu Character-1b1AE -\U1B1AF;Nushu Character-1b1AF -\U1B1B0;Nushu Character-1b1B0 -\U1B1B1;Nushu Character-1b1B1 -\U1B1B2;Nushu Character-1b1B2 -\U1B1B3;Nushu Character-1b1B3 -\U1B1B4;Nushu Character-1b1B4 -\U1B1B5;Nushu Character-1b1B5 -\U1B1B6;Nushu Character-1b1B6 -\U1B1B7;Nushu Character-1b1B7 -\U1B1B8;Nushu Character-1b1B8 -\U1B1B9;Nushu Character-1b1B9 -\U1B1BA;Nushu Character-1b1BA -\U1B1BB;Nushu Character-1b1BB -\U1B1BC;Nushu Character-1b1BC -\U1B1BD;Nushu Character-1b1BD -\U1B1BE;Nushu Character-1b1BE -\U1B1BF;Nushu Character-1b1BF -\U1B1C0;Nushu Character-1b1C0 -\U1B1C1;Nushu Character-1b1C1 -\U1B1C2;Nushu Character-1b1C2 -\U1B1C3;Nushu Character-1b1C3 -\U1B1C4;Nushu Character-1b1C4 -\U1B1C5;Nushu Character-1b1C5 -\U1B1C6;Nushu Character-1b1C6 -\U1B1C7;Nushu Character-1b1C7 -\U1B1C8;Nushu Character-1b1C8 -\U1B1C9;Nushu Character-1b1C9 -\U1B1CA;Nushu Character-1b1CA -\U1B1CB;Nushu Character-1b1CB -\U1B1CC;Nushu Character-1b1CC -\U1B1CD;Nushu Character-1b1CD -\U1B1CE;Nushu Character-1b1CE -\U1B1CF;Nushu Character-1b1CF -\U1B1D0;Nushu Character-1b1D0 -\U1B1D1;Nushu Character-1b1D1 -\U1B1D2;Nushu Character-1b1D2 -\U1B1D3;Nushu Character-1b1D3 -\U1B1D4;Nushu Character-1b1D4 -\U1B1D5;Nushu Character-1b1D5 -\U1B1D6;Nushu Character-1b1D6 -\U1B1D7;Nushu Character-1b1D7 -\U1B1D8;Nushu Character-1b1D8 -\U1B1D9;Nushu Character-1b1D9 -\U1B1DA;Nushu Character-1b1DA -\U1B1DB;Nushu Character-1b1DB -\U1B1DC;Nushu Character-1b1DC -\U1B1DD;Nushu Character-1b1DD -\U1B1DE;Nushu Character-1b1DE -\U1B1DF;Nushu Character-1b1DF -\U1B1E0;Nushu Character-1b1E0 -\U1B1E1;Nushu Character-1b1E1 -\U1B1E2;Nushu Character-1b1E2 -\U1B1E3;Nushu Character-1b1E3 -\U1B1E4;Nushu Character-1b1E4 -\U1B1E5;Nushu Character-1b1E5 -\U1B1E6;Nushu Character-1b1E6 -\U1B1E7;Nushu Character-1b1E7 -\U1B1E8;Nushu Character-1b1E8 -\U1B1E9;Nushu Character-1b1E9 -\U1B1EA;Nushu Character-1b1EA -\U1B1EB;Nushu Character-1b1EB -\U1B1EC;Nushu Character-1b1EC -\U1B1ED;Nushu Character-1b1ED -\U1B1EE;Nushu Character-1b1EE -\U1B1EF;Nushu Character-1b1EF -\U1B1F0;Nushu Character-1b1F0 -\U1B1F1;Nushu Character-1b1F1 -\U1B1F2;Nushu Character-1b1F2 -\U1B1F3;Nushu Character-1b1F3 -\U1B1F4;Nushu Character-1b1F4 -\U1B1F5;Nushu Character-1b1F5 -\U1B1F6;Nushu Character-1b1F6 -\U1B1F7;Nushu Character-1b1F7 -\U1B1F8;Nushu Character-1b1F8 -\U1B1F9;Nushu Character-1b1F9 -\U1B1FA;Nushu Character-1b1FA -\U1B1FB;Nushu Character-1b1FB -\U1B1FC;Nushu Character-1b1FC -\U1B1FD;Nushu Character-1b1FD -\U1B1FE;Nushu Character-1b1FE -\U1B1FF;Nushu Character-1b1FF -\U1B200;Nushu Character-1b200 -\U1B201;Nushu Character-1b201 -\U1B202;Nushu Character-1b202 -\U1B203;Nushu Character-1b203 -\U1B204;Nushu Character-1b204 -\U1B205;Nushu Character-1b205 -\U1B206;Nushu Character-1b206 -\U1B207;Nushu Character-1b207 -\U1B208;Nushu Character-1b208 -\U1B209;Nushu Character-1b209 -\U1B20A;Nushu Character-1b20A -\U1B20B;Nushu Character-1b20B -\U1B20C;Nushu Character-1b20C -\U1B20D;Nushu Character-1b20D -\U1B20E;Nushu Character-1b20E -\U1B20F;Nushu Character-1b20F -\U1B210;Nushu Character-1b210 -\U1B211;Nushu Character-1b211 -\U1B212;Nushu Character-1b212 -\U1B213;Nushu Character-1b213 -\U1B214;Nushu Character-1b214 -\U1B215;Nushu Character-1b215 -\U1B216;Nushu Character-1b216 -\U1B217;Nushu Character-1b217 -\U1B218;Nushu Character-1b218 -\U1B219;Nushu Character-1b219 -\U1B21A;Nushu Character-1b21A -\U1B21B;Nushu Character-1b21B -\U1B21C;Nushu Character-1b21C -\U1B21D;Nushu Character-1b21D -\U1B21E;Nushu Character-1b21E -\U1B21F;Nushu Character-1b21F -\U1B220;Nushu Character-1b220 -\U1B221;Nushu Character-1b221 -\U1B222;Nushu Character-1b222 -\U1B223;Nushu Character-1b223 -\U1B224;Nushu Character-1b224 -\U1B225;Nushu Character-1b225 -\U1B226;Nushu Character-1b226 -\U1B227;Nushu Character-1b227 -\U1B228;Nushu Character-1b228 -\U1B229;Nushu Character-1b229 -\U1B22A;Nushu Character-1b22A -\U1B22B;Nushu Character-1b22B -\U1B22C;Nushu Character-1b22C -\U1B22D;Nushu Character-1b22D -\U1B22E;Nushu Character-1b22E -\U1B22F;Nushu Character-1b22F -\U1B230;Nushu Character-1b230 -\U1B231;Nushu Character-1b231 -\U1B232;Nushu Character-1b232 -\U1B233;Nushu Character-1b233 -\U1B234;Nushu Character-1b234 -\U1B235;Nushu Character-1b235 -\U1B236;Nushu Character-1b236 -\U1B237;Nushu Character-1b237 -\U1B238;Nushu Character-1b238 -\U1B239;Nushu Character-1b239 -\U1B23A;Nushu Character-1b23A -\U1B23B;Nushu Character-1b23B -\U1B23C;Nushu Character-1b23C -\U1B23D;Nushu Character-1b23D -\U1B23E;Nushu Character-1b23E -\U1B23F;Nushu Character-1b23F -\U1B240;Nushu Character-1b240 -\U1B241;Nushu Character-1b241 -\U1B242;Nushu Character-1b242 -\U1B243;Nushu Character-1b243 -\U1B244;Nushu Character-1b244 -\U1B245;Nushu Character-1b245 -\U1B246;Nushu Character-1b246 -\U1B247;Nushu Character-1b247 -\U1B248;Nushu Character-1b248 -\U1B249;Nushu Character-1b249 -\U1B24A;Nushu Character-1b24A -\U1B24B;Nushu Character-1b24B -\U1B24C;Nushu Character-1b24C -\U1B24D;Nushu Character-1b24D -\U1B24E;Nushu Character-1b24E -\U1B24F;Nushu Character-1b24F -\U1B250;Nushu Character-1b250 -\U1B251;Nushu Character-1b251 -\U1B252;Nushu Character-1b252 -\U1B253;Nushu Character-1b253 -\U1B254;Nushu Character-1b254 -\U1B255;Nushu Character-1b255 -\U1B256;Nushu Character-1b256 -\U1B257;Nushu Character-1b257 -\U1B258;Nushu Character-1b258 -\U1B259;Nushu Character-1b259 -\U1B25A;Nushu Character-1b25A -\U1B25B;Nushu Character-1b25B -\U1B25C;Nushu Character-1b25C -\U1B25D;Nushu Character-1b25D -\U1B25E;Nushu Character-1b25E -\U1B25F;Nushu Character-1b25F -\U1B260;Nushu Character-1b260 -\U1B261;Nushu Character-1b261 -\U1B262;Nushu Character-1b262 -\U1B263;Nushu Character-1b263 -\U1B264;Nushu Character-1b264 -\U1B265;Nushu Character-1b265 -\U1B266;Nushu Character-1b266 -\U1B267;Nushu Character-1b267 -\U1B268;Nushu Character-1b268 -\U1B269;Nushu Character-1b269 -\U1B26A;Nushu Character-1b26A -\U1B26B;Nushu Character-1b26B -\U1B26C;Nushu Character-1b26C -\U1B26D;Nushu Character-1b26D -\U1B26E;Nushu Character-1b26E -\U1B26F;Nushu Character-1b26F -\U1B270;Nushu Character-1b270 -\U1B271;Nushu Character-1b271 -\U1B272;Nushu Character-1b272 -\U1B273;Nushu Character-1b273 -\U1B274;Nushu Character-1b274 -\U1B275;Nushu Character-1b275 -\U1B276;Nushu Character-1b276 -\U1B277;Nushu Character-1b277 -\U1B278;Nushu Character-1b278 -\U1B279;Nushu Character-1b279 -\U1B27A;Nushu Character-1b27A -\U1B27B;Nushu Character-1b27B -\U1B27C;Nushu Character-1b27C -\U1B27D;Nushu Character-1b27D -\U1B27E;Nushu Character-1b27E -\U1B27F;Nushu Character-1b27F -\U1B280;Nushu Character-1b280 -\U1B281;Nushu Character-1b281 -\U1B282;Nushu Character-1b282 -\U1B283;Nushu Character-1b283 -\U1B284;Nushu Character-1b284 -\U1B285;Nushu Character-1b285 -\U1B286;Nushu Character-1b286 -\U1B287;Nushu Character-1b287 -\U1B288;Nushu Character-1b288 -\U1B289;Nushu Character-1b289 -\U1B28A;Nushu Character-1b28A -\U1B28B;Nushu Character-1b28B -\U1B28C;Nushu Character-1b28C -\U1B28D;Nushu Character-1b28D -\U1B28E;Nushu Character-1b28E -\U1B28F;Nushu Character-1b28F -\U1B290;Nushu Character-1b290 -\U1B291;Nushu Character-1b291 -\U1B292;Nushu Character-1b292 -\U1B293;Nushu Character-1b293 -\U1B294;Nushu Character-1b294 -\U1B295;Nushu Character-1b295 -\U1B296;Nushu Character-1b296 -\U1B297;Nushu Character-1b297 -\U1B298;Nushu Character-1b298 -\U1B299;Nushu Character-1b299 -\U1B29A;Nushu Character-1b29A -\U1B29B;Nushu Character-1b29B -\U1B29C;Nushu Character-1b29C -\U1B29D;Nushu Character-1b29D -\U1B29E;Nushu Character-1b29E -\U1B29F;Nushu Character-1b29F -\U1B2A0;Nushu Character-1b2A0 -\U1B2A1;Nushu Character-1b2A1 -\U1B2A2;Nushu Character-1b2A2 -\U1B2A3;Nushu Character-1b2A3 -\U1B2A4;Nushu Character-1b2A4 -\U1B2A5;Nushu Character-1b2A5 -\U1B2A6;Nushu Character-1b2A6 -\U1B2A7;Nushu Character-1b2A7 -\U1B2A8;Nushu Character-1b2A8 -\U1B2A9;Nushu Character-1b2A9 -\U1B2AA;Nushu Character-1b2AA -\U1B2AB;Nushu Character-1b2AB -\U1B2AC;Nushu Character-1b2AC -\U1B2AD;Nushu Character-1b2AD -\U1B2AE;Nushu Character-1b2AE -\U1B2AF;Nushu Character-1b2AF -\U1B2B0;Nushu Character-1b2B0 -\U1B2B1;Nushu Character-1b2B1 -\U1B2B2;Nushu Character-1b2B2 -\U1B2B3;Nushu Character-1b2B3 -\U1B2B4;Nushu Character-1b2B4 -\U1B2B5;Nushu Character-1b2B5 -\U1B2B6;Nushu Character-1b2B6 -\U1B2B7;Nushu Character-1b2B7 -\U1B2B8;Nushu Character-1b2B8 -\U1B2B9;Nushu Character-1b2B9 -\U1B2BA;Nushu Character-1b2BA -\U1B2BB;Nushu Character-1b2BB -\U1B2BC;Nushu Character-1b2BC -\U1B2BD;Nushu Character-1b2BD -\U1B2BE;Nushu Character-1b2BE -\U1B2BF;Nushu Character-1b2BF -\U1B2C0;Nushu Character-1b2C0 -\U1B2C1;Nushu Character-1b2C1 -\U1B2C2;Nushu Character-1b2C2 -\U1B2C3;Nushu Character-1b2C3 -\U1B2C4;Nushu Character-1b2C4 -\U1B2C5;Nushu Character-1b2C5 -\U1B2C6;Nushu Character-1b2C6 -\U1B2C7;Nushu Character-1b2C7 -\U1B2C8;Nushu Character-1b2C8 -\U1B2C9;Nushu Character-1b2C9 -\U1B2CA;Nushu Character-1b2CA -\U1B2CB;Nushu Character-1b2CB -\U1B2CC;Nushu Character-1b2CC -\U1B2CD;Nushu Character-1b2CD -\U1B2CE;Nushu Character-1b2CE -\U1B2CF;Nushu Character-1b2CF -\U1B2D0;Nushu Character-1b2D0 -\U1B2D1;Nushu Character-1b2D1 -\U1B2D2;Nushu Character-1b2D2 -\U1B2D3;Nushu Character-1b2D3 -\U1B2D4;Nushu Character-1b2D4 -\U1B2D5;Nushu Character-1b2D5 -\U1B2D6;Nushu Character-1b2D6 -\U1B2D7;Nushu Character-1b2D7 -\U1B2D8;Nushu Character-1b2D8 -\U1B2D9;Nushu Character-1b2D9 -\U1B2DA;Nushu Character-1b2DA -\U1B2DB;Nushu Character-1b2DB -\U1B2DC;Nushu Character-1b2DC -\U1B2DD;Nushu Character-1b2DD -\U1B2DE;Nushu Character-1b2DE -\U1B2DF;Nushu Character-1b2DF -\U1B2E0;Nushu Character-1b2E0 -\U1B2E1;Nushu Character-1b2E1 -\U1B2E2;Nushu Character-1b2E2 -\U1B2E3;Nushu Character-1b2E3 -\U1B2E4;Nushu Character-1b2E4 -\U1B2E5;Nushu Character-1b2E5 -\U1B2E6;Nushu Character-1b2E6 -\U1B2E7;Nushu Character-1b2E7 -\U1B2E8;Nushu Character-1b2E8 -\U1B2E9;Nushu Character-1b2E9 -\U1B2EA;Nushu Character-1b2EA -\U1B2EB;Nushu Character-1b2EB -\U1B2EC;Nushu Character-1b2EC -\U1B2ED;Nushu Character-1b2ED -\U1B2EE;Nushu Character-1b2EE -\U1B2EF;Nushu Character-1b2EF -\U1B2F0;Nushu Character-1b2F0 -\U1B2F1;Nushu Character-1b2F1 -\U1B2F2;Nushu Character-1b2F2 -\U1B2F3;Nushu Character-1b2F3 -\U1B2F4;Nushu Character-1b2F4 -\U1B2F5;Nushu Character-1b2F5 -\U1B2F6;Nushu Character-1b2F6 -\U1B2F7;Nushu Character-1b2F7 -\U1B2F8;Nushu Character-1b2F8 -\U1B2F9;Nushu Character-1b2F9 -\U1B2FA;Nushu Character-1b2FA -\U1B2FB;Nushu Character-1b2FB -\U1BC00;Duployan Letter H -\U1BC01;Duployan Letter X -\U1BC02;Duployan Letter P -\U1BC03;Duployan Letter T -\U1BC04;Duployan Letter F -\U1BC05;Duployan Letter K -\U1BC06;Duployan Letter L -\U1BC07;Duployan Letter B -\U1BC08;Duployan Letter D -\U1BC09;Duployan Letter V -\U1BC0A;Duployan Letter G -\U1BC0B;Duployan Letter R -\U1BC0C;Duployan Letter P N -\U1BC0D;Duployan Letter D S -\U1BC0E;Duployan Letter F N -\U1BC0F;Duployan Letter K M -\U1BC10;Duployan Letter R S -\U1BC11;Duployan Letter Th -\U1BC12;Duployan Letter Sloan Dh -\U1BC13;Duployan Letter Dh -\U1BC14;Duployan Letter Kk -\U1BC15;Duployan Letter Sloan J -\U1BC16;Duployan Letter Hl -\U1BC17;Duployan Letter Lh -\U1BC18;Duployan Letter Rh -\U1BC19;Duployan Letter M -\U1BC1A;Duployan Letter N -\U1BC1B;Duployan Letter J -\U1BC1C;Duployan Letter S -\U1BC1D;Duployan Letter M N -\U1BC1E;Duployan Letter N M -\U1BC1F;Duployan Letter J M -\U1BC20;Duployan Letter S J -\U1BC21;Duployan Letter M With Dot -\U1BC22;Duployan Letter N With Dot -\U1BC23;Duployan Letter J With Dot -\U1BC24;Duployan Letter J With Dots Inside And Above -\U1BC25;Duployan Letter S With Dot -\U1BC26;Duployan Letter S With Dot Below -\U1BC27;Duployan Letter M S -\U1BC28;Duployan Letter N S -\U1BC29;Duployan Letter J S -\U1BC2A;Duployan Letter S S -\U1BC2B;Duployan Letter M N S -\U1BC2C;Duployan Letter N M S -\U1BC2D;Duployan Letter J M S -\U1BC2E;Duployan Letter S J S -\U1BC2F;Duployan Letter J S With Dot -\U1BC30;Duployan Letter J N -\U1BC31;Duployan Letter J N S -\U1BC32;Duployan Letter S T -\U1BC33;Duployan Letter S T R -\U1BC34;Duployan Letter S P -\U1BC35;Duployan Letter S P R -\U1BC36;Duployan Letter T S -\U1BC37;Duployan Letter T R S -\U1BC38;Duployan Letter W -\U1BC39;Duployan Letter Wh -\U1BC3A;Duployan Letter W R -\U1BC3B;Duployan Letter S N -\U1BC3C;Duployan Letter S M -\U1BC3D;Duployan Letter K R S -\U1BC3E;Duployan Letter G R S -\U1BC3F;Duployan Letter S K -\U1BC40;Duployan Letter S K R -\U1BC41;Duployan Letter A -\U1BC42;Duployan Letter Sloan Ow -\U1BC43;Duployan Letter Oa -\U1BC44;Duployan Letter O -\U1BC45;Duployan Letter Aou -\U1BC46;Duployan Letter I -\U1BC47;Duployan Letter E -\U1BC48;Duployan Letter Ie -\U1BC49;Duployan Letter Short I -\U1BC4A;Duployan Letter Ui -\U1BC4B;Duployan Letter Ee -\U1BC4C;Duployan Letter Sloan Eh -\U1BC4D;Duployan Letter Romanian I -\U1BC4E;Duployan Letter Sloan Ee -\U1BC4F;Duployan Letter Long I -\U1BC50;Duployan Letter Ye -\U1BC51;Duployan Letter U -\U1BC52;Duployan Letter Eu -\U1BC53;Duployan Letter Xw -\U1BC54;Duployan Letter U N -\U1BC55;Duployan Letter Long U -\U1BC56;Duployan Letter Romanian U -\U1BC57;Duployan Letter Uh -\U1BC58;Duployan Letter Sloan U -\U1BC59;Duployan Letter Ooh -\U1BC5A;Duployan Letter Ow -\U1BC5B;Duployan Letter Ou -\U1BC5C;Duployan Letter Wa -\U1BC5D;Duployan Letter Wo -\U1BC5E;Duployan Letter Wi -\U1BC5F;Duployan Letter Wei -\U1BC60;Duployan Letter Wow -\U1BC61;Duployan Letter Nasal U -\U1BC62;Duployan Letter Nasal O -\U1BC63;Duployan Letter Nasal I -\U1BC64;Duployan Letter Nasal A -\U1BC65;Duployan Letter Pernin An -\U1BC66;Duployan Letter Pernin Am -\U1BC67;Duployan Letter Sloan En -\U1BC68;Duployan Letter Sloan An -\U1BC69;Duployan Letter Sloan On -\U1BC6A;Duployan Letter Vocalic M -\U1BC70;Duployan Affix Left Horizontal Secant -\U1BC71;Duployan Affix Mid Horizontal Secant -\U1BC72;Duployan Affix Right Horizontal Secant -\U1BC73;Duployan Affix Low Vertical Secant -\U1BC74;Duployan Affix Mid Vertical Secant -\U1BC75;Duployan Affix High Vertical Secant -\U1BC76;Duployan Affix Attached Secant -\U1BC77;Duployan Affix Attached Left-To-Right Secant -\U1BC78;Duployan Affix Attached Tangent -\U1BC79;Duployan Affix Attached Tail -\U1BC7A;Duployan Affix Attached E Hook -\U1BC7B;Duployan Affix Attached I Hook -\U1BC7C;Duployan Affix Attached Tangent Hook -\U1BC80;Duployan Affix High Acute -\U1BC81;Duployan Affix High Tight Acute -\U1BC82;Duployan Affix High Grave -\U1BC83;Duployan Affix High Long Grave -\U1BC84;Duployan Affix High Dot -\U1BC85;Duployan Affix High Circle -\U1BC86;Duployan Affix High Line -\U1BC87;Duployan Affix High Wave -\U1BC88;Duployan Affix High Vertical -\U1BC90;Duployan Affix Low Acute -\U1BC91;Duployan Affix Low Tight Acute -\U1BC92;Duployan Affix Low Grave -\U1BC93;Duployan Affix Low Long Grave -\U1BC94;Duployan Affix Low Dot -\U1BC95;Duployan Affix Low Circle -\U1BC96;Duployan Affix Low Line -\U1BC97;Duployan Affix Low Wave -\U1BC98;Duployan Affix Low Vertical -\U1BC99;Duployan Affix Low Arrow -\U1BC9C;Duployan Sign O With Cross -\U1BC9D;Duployan Thick Letter Selector -\U1BC9E;Duployan Double Mark -\U1BC9F;Duployan Punctuation Chinook Full Stop -\U1BCA0;Shorthand Format Letter Overlap -\U1BCA1;Shorthand Format Continuing Overlap -\U1BCA2;Shorthand Format Down Step -\U1BCA3;Shorthand Format Up Step -\U1CF00;Znamenny Combining Mark Gorazdo Nizko S Kryzhem On Left -\U1CF01;Znamenny Combining Mark Nizko S Kryzhem On Left -\U1CF02;Znamenny Combining Mark Tsata On Left -\U1CF03;Znamenny Combining Mark Gorazdo Nizko On Left -\U1CF04;Znamenny Combining Mark Nizko On Left -\U1CF05;Znamenny Combining Mark Sredne On Left -\U1CF06;Znamenny Combining Mark Malo Povyshe On Left -\U1CF07;Znamenny Combining Mark Povyshe On Left -\U1CF08;Znamenny Combining Mark Vysoko On Left -\U1CF09;Znamenny Combining Mark Malo Povyshe S Khokhlom On Left -\U1CF0A;Znamenny Combining Mark Povyshe S Khokhlom On Left -\U1CF0B;Znamenny Combining Mark Vysoko S Khokhlom On Left -\U1CF0C;Znamenny Combining Mark Gorazdo Nizko S Kryzhem On Right -\U1CF0D;Znamenny Combining Mark Nizko S Kryzhem On Right -\U1CF0E;Znamenny Combining Mark Tsata On Right -\U1CF0F;Znamenny Combining Mark Gorazdo Nizko On Right -\U1CF10;Znamenny Combining Mark Nizko On Right -\U1CF11;Znamenny Combining Mark Sredne On Right -\U1CF12;Znamenny Combining Mark Malo Povyshe On Right -\U1CF13;Znamenny Combining Mark Povyshe On Right -\U1CF14;Znamenny Combining Mark Vysoko On Right -\U1CF15;Znamenny Combining Mark Malo Povyshe S Khokhlom On Right -\U1CF16;Znamenny Combining Mark Povyshe S Khokhlom On Right -\U1CF17;Znamenny Combining Mark Vysoko S Khokhlom On Right -\U1CF18;Znamenny Combining Mark Tsata S Kryzhem -\U1CF19;Znamenny Combining Mark Malo Povyshe S Kryzhem -\U1CF1A;Znamenny Combining Mark Stranno Malo Povyshe -\U1CF1B;Znamenny Combining Mark Povyshe S Kryzhem -\U1CF1C;Znamenny Combining Mark Povyshe Stranno -\U1CF1D;Znamenny Combining Mark Vysoko S Kryzhem -\U1CF1E;Znamenny Combining Mark Malo Povyshe Stranno -\U1CF1F;Znamenny Combining Mark Gorazdo Vysoko -\U1CF20;Znamenny Combining Mark Zelo -\U1CF21;Znamenny Combining Mark On -\U1CF22;Znamenny Combining Mark Ravno -\U1CF23;Znamenny Combining Mark Tikhaya -\U1CF24;Znamenny Combining Mark Borzaya -\U1CF25;Znamenny Combining Mark Udarka -\U1CF26;Znamenny Combining Mark Podvertka -\U1CF27;Znamenny Combining Mark Lomka -\U1CF28;Znamenny Combining Mark Kupnaya -\U1CF29;Znamenny Combining Mark Kachka -\U1CF2A;Znamenny Combining Mark Zevok -\U1CF2B;Znamenny Combining Mark Skoba -\U1CF2C;Znamenny Combining Mark Razseka -\U1CF2D;Znamenny Combining Mark Kryzh On Left -\U1CF30;Znamenny Combining Tonal Range Mark Mrachno -\U1CF31;Znamenny Combining Tonal Range Mark Svetlo -\U1CF32;Znamenny Combining Tonal Range Mark Tresvetlo -\U1CF33;Znamenny Combining Mark Zaderzhka -\U1CF34;Znamenny Combining Mark Demestvenny Zaderzhka -\U1CF35;Znamenny Combining Mark Otsechka -\U1CF36;Znamenny Combining Mark Podchashie -\U1CF37;Znamenny Combining Mark Podchashie With Vertical Stroke -\U1CF38;Znamenny Combining Mark Chashka -\U1CF39;Znamenny Combining Mark Chashka Polnaya -\U1CF3A;Znamenny Combining Mark Oblachko -\U1CF3B;Znamenny Combining Mark Sorochya Nozhka -\U1CF3C;Znamenny Combining Mark Tochka -\U1CF3D;Znamenny Combining Mark Dvoetochie -\U1CF3E;Znamenny Combining Attaching Vertical Omet -\U1CF3F;Znamenny Combining Mark Curved Omet -\U1CF40;Znamenny Combining Mark Kryzh -\U1CF41;Znamenny Combining Lower Tonal Range Indicator -\U1CF42;Znamenny Priznak Modifier Level-2 -\U1CF43;Znamenny Priznak Modifier Level-3 -\U1CF44;Znamenny Priznak Modifier Direction Flip -\U1CF45;Znamenny Priznak Modifier Kryzh -\U1CF46;Znamenny Priznak Modifier Rog -\U1CF50;Znamenny Neume Kryuk -\U1CF51;Znamenny Neume Kryuk Tikhy -\U1CF52;Znamenny Neume Paraklit -\U1CF53;Znamenny Neume Dva V Chelnu -\U1CF54;Znamenny Neume Klyuch -\U1CF55;Znamenny Neume Zanozhek -\U1CF56;Znamenny Neume Stopitsa -\U1CF57;Znamenny Neume Stopitsa S Ochkom -\U1CF58;Znamenny Neume Perevodka -\U1CF59;Znamenny Neume Perevodka Nepostoyannaya -\U1CF5A;Znamenny Neume Stopitsa With Sorochya Nozhka -\U1CF5B;Znamenny Neume Chelyustka -\U1CF5C;Znamenny Neume Palka -\U1CF5D;Znamenny Neume Zapyataya -\U1CF5E;Znamenny Neume Golubchik Borzy -\U1CF5F;Znamenny Neume Golubchik Tikhy -\U1CF60;Znamenny Neume Golubchik Mrachny -\U1CF61;Znamenny Neume Golubchik Svetly -\U1CF62;Znamenny Neume Golubchik Tresvetly -\U1CF63;Znamenny Neume Vrakhiya Prostaya -\U1CF64;Znamenny Neume Vrakhiya Mrachnaya -\U1CF65;Znamenny Neume Vrakhiya Svetlaya -\U1CF66;Znamenny Neume Vrakhiya Tresvetlaya -\U1CF67;Znamenny Neume Vrakhiya Klyuchevaya Prostaya -\U1CF68;Znamenny Neume Vrakhiya Klyuchevaya Mrachnaya -\U1CF69;Znamenny Neume Vrakhiya Klyuchevaya Svetlaya -\U1CF6A;Znamenny Neume Vrakhiya Klyuchevaya Tresvetlaya -\U1CF6B;Znamenny Neume Double Zapyataya -\U1CF6C;Znamenny Neume Reversed Chelyustka -\U1CF6D;Znamenny Neume Derbitsa -\U1CF6E;Znamenny Neume Khamilo -\U1CF6F;Znamenny Neume Chashka -\U1CF70;Znamenny Neume Podchashie -\U1CF71;Znamenny Neume Skameytsa Mrachnaya -\U1CF72;Znamenny Neume Skameytsa Svetlaya -\U1CF73;Znamenny Neume Skameytsa Tresvetlaya -\U1CF74;Znamenny Neume Skameytsa Tikhaya -\U1CF75;Znamenny Neume Demestvenny Klyuch -\U1CF76;Znamenny Neume Skameytsa Klyuchevaya Svetlaya -\U1CF77;Znamenny Neume Skameytsa Klyuchenepostoyannaya -\U1CF78;Znamenny Neume Skameytsa Klyuchevaya Tikhaya -\U1CF79;Znamenny Neume Skameytsa Dvoechelnaya Prostaya -\U1CF7A;Znamenny Neume Skameytsa Dvoechelnaya Svetlaya -\U1CF7B;Znamenny Neume Skameytsa Dvoechelnaya Nepostoyannaya -\U1CF7C;Znamenny Neume Skameytsa Dvoechelnaya Klyuchevaya -\U1CF7D;Znamenny Neume Slozhitie -\U1CF7E;Znamenny Neume Slozhitie S Zapyatoy -\U1CF7F;Znamenny Neume Slozhitie Zakrytoe -\U1CF80;Znamenny Neume Slozhitie S Kryzhem -\U1CF81;Znamenny Neume Kryzh -\U1CF82;Znamenny Neume Rog -\U1CF83;Znamenny Neume Fita -\U1CF84;Znamenny Neume Kobyla -\U1CF85;Znamenny Neume Zmeytsa -\U1CF86;Znamenny Neume Statya -\U1CF87;Znamenny Neume Statya S Zapyatoy -\U1CF88;Znamenny Neume Statya S Kryzhem -\U1CF89;Znamenny Neume Statya S Zapyatoy I Kryzhem -\U1CF8A;Znamenny Neume Statya S Kryzhem I Zapyatoy -\U1CF8B;Znamenny Neume Statya Zakrytaya -\U1CF8C;Znamenny Neume Statya Zakrytaya S Zapyatoy -\U1CF8D;Znamenny Neume Statya S Rogom -\U1CF8E;Znamenny Neume Statya S Dvumya Zapyatymi -\U1CF8F;Znamenny Neume Statya S Zapyatoy I Podchashiem -\U1CF90;Znamenny Neume Polkulizmy -\U1CF91;Znamenny Neume Statya Nepostoyannaya -\U1CF92;Znamenny Neume Strela Prostaya -\U1CF93;Znamenny Neume Strela Mrachnotikhaya -\U1CF94;Znamenny Neume Strela Kryzhevaya -\U1CF95;Znamenny Neume Strela Polupovodnaya -\U1CF96;Znamenny Neume Strela Povodnaya -\U1CF97;Znamenny Neume Strela Nepostoyannaya -\U1CF98;Znamenny Neume Strela Klyuchepovodnaya -\U1CF99;Znamenny Neume Strela Klyuchenepostoyannaya -\U1CF9A;Znamenny Neume Strela Tikhaya Putnaya -\U1CF9B;Znamenny Neume Strela Dvoechelnaya -\U1CF9C;Znamenny Neume Strela Dvoechelnokryzhevaya -\U1CF9D;Znamenny Neume Strela Dvoechelnopovodnaya -\U1CF9E;Znamenny Neume Strela Dvoechelnaya Klyuchevaya -\U1CF9F;Znamenny Neume Strela Dvoechelnopovodnaya Klyuchevaya -\U1CFA0;Znamenny Neume Strela Gromnaya With Single Zapyataya -\U1CFA1;Znamenny Neume Strela Gromopovodnaya With Single Zapyataya -\U1CFA2;Znamenny Neume Strela Gromnaya -\U1CFA3;Znamenny Neume Strela Gromopovodnaya -\U1CFA4;Znamenny Neume Strela Gromopovodnaya With Double Zapyataya -\U1CFA5;Znamenny Neume Strela Gromokryzhevaya -\U1CFA6;Znamenny Neume Strela Gromokryzhevaya Povodnaya -\U1CFA7;Znamenny Neume Mechik -\U1CFA8;Znamenny Neume Mechik Povodny -\U1CFA9;Znamenny Neume Mechik Klyuchevoy -\U1CFAA;Znamenny Neume Mechik Klyuchepovodny -\U1CFAB;Znamenny Neume Mechik Klyuchenepostoyanny -\U1CFAC;Znamenny Neume Strela Tryasoglasnaya -\U1CFAD;Znamenny Neume Strela Tryasopovodnaya -\U1CFAE;Znamenny Neume Strela Tryasostrelnaya -\U1CFAF;Znamenny Neume Osoka -\U1CFB0;Znamenny Neume Osoka Svetlaya -\U1CFB1;Znamenny Neume Osoka Tresvetlaya -\U1CFB2;Znamenny Neume Osoka Kryukovaya Svetlaya -\U1CFB3;Znamenny Neume Osoka Klyuchevaya Svetlaya -\U1CFB4;Znamenny Neume Osoka Klyuchevaya Nepostoyannaya -\U1CFB5;Znamenny Neume Strela Kryukovaya -\U1CFB6;Znamenny Neume Strela Kryukovaya Povodnaya -\U1CFB7;Znamenny Neume Strela Kryukovaya Gromnaya With Single Zapyataya -\U1CFB8;Znamenny Neume Strela Kryukovaya Gromopovodnaya With Single Zapyataya -\U1CFB9;Znamenny Neume Strela Kryukovaya Gromnaya -\U1CFBA;Znamenny Neume Strela Kryukovaya Gromopovodnaya -\U1CFBB;Znamenny Neume Strela Kryukovaya Gromopovodnaya With Double Zapyataya -\U1CFBC;Znamenny Neume Strela Kryukovaya Gromokryzhevaya -\U1CFBD;Znamenny Neume Strela Kryukovaya Gromokryzhevaya Povodnaya -\U1CFBE;Znamenny Neume Strela Kryukovaya Tryaska -\U1CFBF;Znamenny Neume Kufisma -\U1CFC0;Znamenny Neume Oblako -\U1CFC1;Znamenny Neume Duda -\U1CFC2;Znamenny Neume Nemka -\U1CFC3;Znamenny Neume Pauk -\U1D000;Byzantine Musical Symbol Psili -\U1D001;Byzantine Musical Symbol Daseia -\U1D002;Byzantine Musical Symbol Perispomeni -\U1D003;Byzantine Musical Symbol Oxeia Ekfonitikon -\U1D004;Byzantine Musical Symbol Oxeia Dipli -\U1D005;Byzantine Musical Symbol Vareia Ekfonitikon -\U1D006;Byzantine Musical Symbol Vareia Dipli -\U1D007;Byzantine Musical Symbol Kathisti -\U1D008;Byzantine Musical Symbol Syrmatiki -\U1D009;Byzantine Musical Symbol Paraklitiki -\U1D00A;Byzantine Musical Symbol Ypokrisis -\U1D00B;Byzantine Musical Symbol Ypokrisis Dipli -\U1D00C;Byzantine Musical Symbol Kremasti -\U1D00D;Byzantine Musical Symbol Apeso Ekfonitikon -\U1D00E;Byzantine Musical Symbol Exo Ekfonitikon -\U1D00F;Byzantine Musical Symbol Teleia -\U1D010;Byzantine Musical Symbol Kentimata -\U1D011;Byzantine Musical Symbol Apostrofos -\U1D012;Byzantine Musical Symbol Apostrofos Dipli -\U1D013;Byzantine Musical Symbol Synevma -\U1D014;Byzantine Musical Symbol Thita -\U1D015;Byzantine Musical Symbol Oligon Archaion -\U1D016;Byzantine Musical Symbol Gorgon Archaion -\U1D017;Byzantine Musical Symbol Psilon -\U1D018;Byzantine Musical Symbol Chamilon -\U1D019;Byzantine Musical Symbol Vathy -\U1D01A;Byzantine Musical Symbol Ison Archaion -\U1D01B;Byzantine Musical Symbol Kentima Archaion -\U1D01C;Byzantine Musical Symbol Kentimata Archaion -\U1D01D;Byzantine Musical Symbol Saximata -\U1D01E;Byzantine Musical Symbol Parichon -\U1D01F;Byzantine Musical Symbol Stavros Apodexia -\U1D020;Byzantine Musical Symbol Oxeiai Archaion -\U1D021;Byzantine Musical Symbol Vareiai Archaion -\U1D022;Byzantine Musical Symbol Apoderma Archaion -\U1D023;Byzantine Musical Symbol Apothema -\U1D024;Byzantine Musical Symbol Klasma -\U1D025;Byzantine Musical Symbol Revma -\U1D026;Byzantine Musical Symbol Piasma Archaion -\U1D027;Byzantine Musical Symbol Tinagma -\U1D028;Byzantine Musical Symbol Anatrichisma -\U1D029;Byzantine Musical Symbol Seisma -\U1D02A;Byzantine Musical Symbol Synagma Archaion -\U1D02B;Byzantine Musical Symbol Synagma Meta Stavrou -\U1D02C;Byzantine Musical Symbol Oyranisma Archaion -\U1D02D;Byzantine Musical Symbol Thema -\U1D02E;Byzantine Musical Symbol Lemoi -\U1D02F;Byzantine Musical Symbol Dyo -\U1D030;Byzantine Musical Symbol Tria -\U1D031;Byzantine Musical Symbol Tessera -\U1D032;Byzantine Musical Symbol Kratimata -\U1D033;Byzantine Musical Symbol Apeso Exo Neo -\U1D034;Byzantine Musical Symbol Fthora Archaion -\U1D035;Byzantine Musical Symbol Imifthora -\U1D036;Byzantine Musical Symbol Tromikon Archaion -\U1D037;Byzantine Musical Symbol Katava Tromikon -\U1D038;Byzantine Musical Symbol Pelaston -\U1D039;Byzantine Musical Symbol Psifiston -\U1D03A;Byzantine Musical Symbol Kontevma -\U1D03B;Byzantine Musical Symbol Chorevma Archaion -\U1D03C;Byzantine Musical Symbol Rapisma -\U1D03D;Byzantine Musical Symbol Parakalesma Archaion -\U1D03E;Byzantine Musical Symbol Paraklitiki Archaion -\U1D03F;Byzantine Musical Symbol Ichadin -\U1D040;Byzantine Musical Symbol Nana -\U1D041;Byzantine Musical Symbol Petasma -\U1D042;Byzantine Musical Symbol Kontevma Allo -\U1D043;Byzantine Musical Symbol Tromikon Allo -\U1D044;Byzantine Musical Symbol Straggismata -\U1D045;Byzantine Musical Symbol Gronthismata -\U1D046;Byzantine Musical Symbol Ison Neo -\U1D047;Byzantine Musical Symbol Oligon Neo -\U1D048;Byzantine Musical Symbol Oxeia Neo -\U1D049;Byzantine Musical Symbol Petasti -\U1D04A;Byzantine Musical Symbol Koufisma -\U1D04B;Byzantine Musical Symbol Petastokoufisma -\U1D04C;Byzantine Musical Symbol Kratimokoufisma -\U1D04D;Byzantine Musical Symbol Pelaston Neo -\U1D04E;Byzantine Musical Symbol Kentimata Neo Ano -\U1D04F;Byzantine Musical Symbol Kentima Neo Ano -\U1D050;Byzantine Musical Symbol Ypsili -\U1D051;Byzantine Musical Symbol Apostrofos Neo -\U1D052;Byzantine Musical Symbol Apostrofoi Syndesmos Neo -\U1D053;Byzantine Musical Symbol Yporroi -\U1D054;Byzantine Musical Symbol Kratimoyporroon -\U1D055;Byzantine Musical Symbol Elafron -\U1D056;Byzantine Musical Symbol Chamili -\U1D057;Byzantine Musical Symbol Mikron Ison -\U1D058;Byzantine Musical Symbol Vareia Neo -\U1D059;Byzantine Musical Symbol Piasma Neo -\U1D05A;Byzantine Musical Symbol Psifiston Neo -\U1D05B;Byzantine Musical Symbol Omalon -\U1D05C;Byzantine Musical Symbol Antikenoma -\U1D05D;Byzantine Musical Symbol Lygisma -\U1D05E;Byzantine Musical Symbol Paraklitiki Neo -\U1D05F;Byzantine Musical Symbol Parakalesma Neo -\U1D060;Byzantine Musical Symbol Eteron Parakalesma -\U1D061;Byzantine Musical Symbol Kylisma -\U1D062;Byzantine Musical Symbol Antikenokylisma -\U1D063;Byzantine Musical Symbol Tromikon Neo -\U1D064;Byzantine Musical Symbol Ekstrepton -\U1D065;Byzantine Musical Symbol Synagma Neo -\U1D066;Byzantine Musical Symbol Syrma -\U1D067;Byzantine Musical Symbol Chorevma Neo -\U1D068;Byzantine Musical Symbol Epegerma -\U1D069;Byzantine Musical Symbol Seisma Neo -\U1D06A;Byzantine Musical Symbol Xiron Klasma -\U1D06B;Byzantine Musical Symbol Tromikopsifiston -\U1D06C;Byzantine Musical Symbol Psifistolygisma -\U1D06D;Byzantine Musical Symbol Tromikolygisma -\U1D06E;Byzantine Musical Symbol Tromikoparakalesma -\U1D06F;Byzantine Musical Symbol Psifistoparakalesma -\U1D070;Byzantine Musical Symbol Tromikosynagma -\U1D071;Byzantine Musical Symbol Psifistosynagma -\U1D072;Byzantine Musical Symbol Gorgosyntheton -\U1D073;Byzantine Musical Symbol Argosyntheton -\U1D074;Byzantine Musical Symbol Eteron Argosyntheton -\U1D075;Byzantine Musical Symbol Oyranisma Neo -\U1D076;Byzantine Musical Symbol Thematismos Eso -\U1D077;Byzantine Musical Symbol Thematismos Exo -\U1D078;Byzantine Musical Symbol Thema Aploun -\U1D079;Byzantine Musical Symbol Thes Kai Apothes -\U1D07A;Byzantine Musical Symbol Katavasma -\U1D07B;Byzantine Musical Symbol Endofonon -\U1D07C;Byzantine Musical Symbol Yfen Kato -\U1D07D;Byzantine Musical Symbol Yfen Ano -\U1D07E;Byzantine Musical Symbol Stavros -\U1D07F;Byzantine Musical Symbol Klasma Ano -\U1D080;Byzantine Musical Symbol Dipli Archaion -\U1D081;Byzantine Musical Symbol Kratima Archaion -\U1D082;Byzantine Musical Symbol Kratima Allo -\U1D083;Byzantine Musical Symbol Kratima Neo -\U1D084;Byzantine Musical Symbol Apoderma Neo -\U1D085;Byzantine Musical Symbol Apli -\U1D086;Byzantine Musical Symbol Dipli -\U1D087;Byzantine Musical Symbol Tripli -\U1D088;Byzantine Musical Symbol Tetrapli -\U1D089;Byzantine Musical Symbol Koronis -\U1D08A;Byzantine Musical Symbol Leimma Enos Chronou -\U1D08B;Byzantine Musical Symbol Leimma Dyo Chronon -\U1D08C;Byzantine Musical Symbol Leimma Trion Chronon -\U1D08D;Byzantine Musical Symbol Leimma Tessaron Chronon -\U1D08E;Byzantine Musical Symbol Leimma Imiseos Chronou -\U1D08F;Byzantine Musical Symbol Gorgon Neo Ano -\U1D090;Byzantine Musical Symbol Gorgon Parestigmenon Aristera -\U1D091;Byzantine Musical Symbol Gorgon Parestigmenon Dexia -\U1D092;Byzantine Musical Symbol Digorgon -\U1D093;Byzantine Musical Symbol Digorgon Parestigmenon Aristera Kato -\U1D094;Byzantine Musical Symbol Digorgon Parestigmenon Aristera Ano -\U1D095;Byzantine Musical Symbol Digorgon Parestigmenon Dexia -\U1D096;Byzantine Musical Symbol Trigorgon -\U1D097;Byzantine Musical Symbol Argon -\U1D098;Byzantine Musical Symbol Imidiargon -\U1D099;Byzantine Musical Symbol Diargon -\U1D09A;Byzantine Musical Symbol Agogi Poli Argi -\U1D09B;Byzantine Musical Symbol Agogi Argoteri -\U1D09C;Byzantine Musical Symbol Agogi Argi -\U1D09D;Byzantine Musical Symbol Agogi Metria -\U1D09E;Byzantine Musical Symbol Agogi Mesi -\U1D09F;Byzantine Musical Symbol Agogi Gorgi -\U1D0A0;Byzantine Musical Symbol Agogi Gorgoteri -\U1D0A1;Byzantine Musical Symbol Agogi Poli Gorgi -\U1D0A2;Byzantine Musical Symbol Martyria Protos Ichos -\U1D0A3;Byzantine Musical Symbol Martyria Alli Protos Ichos -\U1D0A4;Byzantine Musical Symbol Martyria Deyteros Ichos -\U1D0A5;Byzantine Musical Symbol Martyria Alli Deyteros Ichos -\U1D0A6;Byzantine Musical Symbol Martyria Tritos Ichos -\U1D0A7;Byzantine Musical Symbol Martyria Trifonias -\U1D0A8;Byzantine Musical Symbol Martyria Tetartos Ichos -\U1D0A9;Byzantine Musical Symbol Martyria Tetartos Legetos Ichos -\U1D0AA;Byzantine Musical Symbol Martyria Legetos Ichos -\U1D0AB;Byzantine Musical Symbol Martyria Plagios Ichos -\U1D0AC;Byzantine Musical Symbol Isakia Telous Ichimatos -\U1D0AD;Byzantine Musical Symbol Apostrofoi Telous Ichimatos -\U1D0AE;Byzantine Musical Symbol Fanerosis Tetrafonias -\U1D0AF;Byzantine Musical Symbol Fanerosis Monofonias -\U1D0B0;Byzantine Musical Symbol Fanerosis Difonias -\U1D0B1;Byzantine Musical Symbol Martyria Varys Ichos -\U1D0B2;Byzantine Musical Symbol Martyria Protovarys Ichos -\U1D0B3;Byzantine Musical Symbol Martyria Plagios Tetartos Ichos -\U1D0B4;Byzantine Musical Symbol Gorthmikon N Aploun -\U1D0B5;Byzantine Musical Symbol Gorthmikon N Diploun -\U1D0B6;Byzantine Musical Symbol Enarxis Kai Fthora Vou -\U1D0B7;Byzantine Musical Symbol Imifonon -\U1D0B8;Byzantine Musical Symbol Imifthoron -\U1D0B9;Byzantine Musical Symbol Fthora Archaion Deyterou Ichou -\U1D0BA;Byzantine Musical Symbol Fthora Diatoniki Pa -\U1D0BB;Byzantine Musical Symbol Fthora Diatoniki Nana -\U1D0BC;Byzantine Musical Symbol Fthora Naos Ichos -\U1D0BD;Byzantine Musical Symbol Fthora Diatoniki Di -\U1D0BE;Byzantine Musical Symbol Fthora Skliron Diatonon Di -\U1D0BF;Byzantine Musical Symbol Fthora Diatoniki Ke -\U1D0C0;Byzantine Musical Symbol Fthora Diatoniki Zo -\U1D0C1;Byzantine Musical Symbol Fthora Diatoniki Ni Kato -\U1D0C2;Byzantine Musical Symbol Fthora Diatoniki Ni Ano -\U1D0C3;Byzantine Musical Symbol Fthora Malakon Chroma Difonias -\U1D0C4;Byzantine Musical Symbol Fthora Malakon Chroma Monofonias -\U1D0C5;Byzantine Musical Symbol Fhtora Skliron Chroma Vasis -\U1D0C6;Byzantine Musical Symbol Fthora Skliron Chroma Synafi -\U1D0C7;Byzantine Musical Symbol Fthora Nenano -\U1D0C8;Byzantine Musical Symbol Chroa Zygos -\U1D0C9;Byzantine Musical Symbol Chroa Kliton -\U1D0CA;Byzantine Musical Symbol Chroa Spathi -\U1D0CB;Byzantine Musical Symbol Fthora I Yfesis Tetartimorion -\U1D0CC;Byzantine Musical Symbol Fthora Enarmonios Antifonia -\U1D0CD;Byzantine Musical Symbol Yfesis Tritimorion -\U1D0CE;Byzantine Musical Symbol Diesis Tritimorion -\U1D0CF;Byzantine Musical Symbol Diesis Tetartimorion -\U1D0D0;Byzantine Musical Symbol Diesis Apli Dyo Dodekata -\U1D0D1;Byzantine Musical Symbol Diesis Monogrammos Tessera Dodekata -\U1D0D2;Byzantine Musical Symbol Diesis Digrammos Ex Dodekata -\U1D0D3;Byzantine Musical Symbol Diesis Trigrammos Okto Dodekata -\U1D0D4;Byzantine Musical Symbol Yfesis Apli Dyo Dodekata -\U1D0D5;Byzantine Musical Symbol Yfesis Monogrammos Tessera Dodekata -\U1D0D6;Byzantine Musical Symbol Yfesis Digrammos Ex Dodekata -\U1D0D7;Byzantine Musical Symbol Yfesis Trigrammos Okto Dodekata -\U1D0D8;Byzantine Musical Symbol Geniki Diesis -\U1D0D9;Byzantine Musical Symbol Geniki Yfesis -\U1D0DA;Byzantine Musical Symbol Diastoli Apli Mikri -\U1D0DB;Byzantine Musical Symbol Diastoli Apli Megali -\U1D0DC;Byzantine Musical Symbol Diastoli Dipli -\U1D0DD;Byzantine Musical Symbol Diastoli Theseos -\U1D0DE;Byzantine Musical Symbol Simansis Theseos -\U1D0DF;Byzantine Musical Symbol Simansis Theseos Disimou -\U1D0E0;Byzantine Musical Symbol Simansis Theseos Trisimou -\U1D0E1;Byzantine Musical Symbol Simansis Theseos Tetrasimou -\U1D0E2;Byzantine Musical Symbol Simansis Arseos -\U1D0E3;Byzantine Musical Symbol Simansis Arseos Disimou -\U1D0E4;Byzantine Musical Symbol Simansis Arseos Trisimou -\U1D0E5;Byzantine Musical Symbol Simansis Arseos Tetrasimou -\U1D0E6;Byzantine Musical Symbol Digramma Gg -\U1D0E7;Byzantine Musical Symbol Diftoggos Ou -\U1D0E8;Byzantine Musical Symbol Stigma -\U1D0E9;Byzantine Musical Symbol Arktiko Pa -\U1D0EA;Byzantine Musical Symbol Arktiko Vou -\U1D0EB;Byzantine Musical Symbol Arktiko Ga -\U1D0EC;Byzantine Musical Symbol Arktiko Di -\U1D0ED;Byzantine Musical Symbol Arktiko Ke -\U1D0EE;Byzantine Musical Symbol Arktiko Zo -\U1D0EF;Byzantine Musical Symbol Arktiko Ni -\U1D0F0;Byzantine Musical Symbol Kentimata Neo Meso -\U1D0F1;Byzantine Musical Symbol Kentima Neo Meso -\U1D0F2;Byzantine Musical Symbol Kentimata Neo Kato -\U1D0F3;Byzantine Musical Symbol Kentima Neo Kato -\U1D0F4;Byzantine Musical Symbol Klasma Kato -\U1D0F5;Byzantine Musical Symbol Gorgon Neo Kato -\U1D100;Musical Symbol Single Barline -\U1D101;Musical Symbol Double Barline -\U1D102;Musical Symbol Final Barline -\U1D103;Musical Symbol Reverse Final Barline -\U1D104;Musical Symbol Dashed Barline -\U1D105;Musical Symbol Short Barline -\U1D106;Musical Symbol Left Repeat Sign -\U1D107;Musical Symbol Right Repeat Sign -\U1D108;Musical Symbol Repeat Dots -\U1D109;Musical Symbol Dal Segno -\U1D10A;Musical Symbol Da Capo -\U1D10B;Musical Symbol Segno -\U1D10C;Musical Symbol Coda -\U1D10D;Musical Symbol Repeated Figure-1 -\U1D10E;Musical Symbol Repeated Figure-2 -\U1D10F;Musical Symbol Repeated Figure-3 -\U1D110;Musical Symbol Fermata -\U1D111;Musical Symbol Fermata Below -\U1D112;Musical Symbol Breath Mark -\U1D113;Musical Symbol Caesura -\U1D114;Musical Symbol Brace -\U1D115;Musical Symbol Bracket -\U1D116;Musical Symbol One-Line Staff -\U1D117;Musical Symbol Two-Line Staff -\U1D118;Musical Symbol Three-Line Staff -\U1D119;Musical Symbol Four-Line Staff -\U1D11A;Musical Symbol Five-Line Staff -\U1D11B;Musical Symbol Six-Line Staff -\U1D11C;Musical Symbol Six-String Fretboard -\U1D11D;Musical Symbol Four-String Fretboard -\U1D11E;Musical Symbol G Clef -\U1D11F;Musical Symbol G Clef Ottava Alta -\U1D120;Musical Symbol G Clef Ottava Bassa -\U1D121;Musical Symbol C Clef -\U1D122;Musical Symbol F Clef -\U1D123;Musical Symbol F Clef Ottava Alta -\U1D124;Musical Symbol F Clef Ottava Bassa -\U1D125;Musical Symbol Drum Clef-1 -\U1D126;Musical Symbol Drum Clef-2 -\U1D129;Musical Symbol Multiple Measure Rest -\U1D12A;Musical Symbol Double Sharp -\U1D12B;Musical Symbol Double Flat -\U1D12C;Musical Symbol Flat Up -\U1D12D;Musical Symbol Flat Down -\U1D12E;Musical Symbol Natural Up -\U1D12F;Musical Symbol Natural Down -\U1D130;Musical Symbol Sharp Up -\U1D131;Musical Symbol Sharp Down -\U1D132;Musical Symbol Quarter Tone Sharp -\U1D133;Musical Symbol Quarter Tone Flat -\U1D134;Musical Symbol Common Time -\U1D135;Musical Symbol Cut Time -\U1D136;Musical Symbol Ottava Alta -\U1D137;Musical Symbol Ottava Bassa -\U1D138;Musical Symbol Quindicesima Alta -\U1D139;Musical Symbol Quindicesima Bassa -\U1D13A;Musical Symbol Multi Rest -\U1D13B;Musical Symbol Whole Rest -\U1D13C;Musical Symbol Half Rest -\U1D13D;Musical Symbol Quarter Rest -\U1D13E;Musical Symbol Eighth Rest -\U1D13F;Musical Symbol Sixteenth Rest -\U1D140;Musical Symbol Thirty-Second Rest -\U1D141;Musical Symbol Sixty-Fourth Rest -\U1D142;Musical Symbol One Hundred Twenty-Eighth Rest -\U1D143;Musical Symbol X Notehead -\U1D144;Musical Symbol Plus Notehead -\U1D145;Musical Symbol Circle X Notehead -\U1D146;Musical Symbol Square Notehead White -\U1D147;Musical Symbol Square Notehead Black -\U1D148;Musical Symbol Triangle Notehead Up White -\U1D149;Musical Symbol Triangle Notehead Up Black -\U1D14A;Musical Symbol Triangle Notehead Left White -\U1D14B;Musical Symbol Triangle Notehead Left Black -\U1D14C;Musical Symbol Triangle Notehead Right White -\U1D14D;Musical Symbol Triangle Notehead Right Black -\U1D14E;Musical Symbol Triangle Notehead Down White -\U1D14F;Musical Symbol Triangle Notehead Down Black -\U1D150;Musical Symbol Triangle Notehead Up Right White -\U1D151;Musical Symbol Triangle Notehead Up Right Black -\U1D152;Musical Symbol Moon Notehead White -\U1D153;Musical Symbol Moon Notehead Black -\U1D154;Musical Symbol Triangle-Round Notehead Down White -\U1D155;Musical Symbol Triangle-Round Notehead Down Black -\U1D156;Musical Symbol Parenthesis Notehead -\U1D157;Musical Symbol Void Notehead -\U1D158;Musical Symbol Notehead Black -\U1D159;Musical Symbol Null Notehead -\U1D15A;Musical Symbol Cluster Notehead White -\U1D15B;Musical Symbol Cluster Notehead Black -\U1D15C;Musical Symbol Breve -\U1D15D;Musical Symbol Whole Note -\U1D15E;Musical Symbol Half Note -\U1D15F;Musical Symbol Quarter Note -\U1D160;Musical Symbol Eighth Note -\U1D161;Musical Symbol Sixteenth Note -\U1D162;Musical Symbol Thirty-Second Note -\U1D163;Musical Symbol Sixty-Fourth Note -\U1D164;Musical Symbol One Hundred Twenty-Eighth Note -\U1D165;Musical Symbol Combining Stem -\U1D166;Musical Symbol Combining Sprechgesang Stem -\U1D167;Musical Symbol Combining Tremolo-1 -\U1D168;Musical Symbol Combining Tremolo-2 -\U1D169;Musical Symbol Combining Tremolo-3 -\U1D16A;Musical Symbol Fingered Tremolo-1 -\U1D16B;Musical Symbol Fingered Tremolo-2 -\U1D16C;Musical Symbol Fingered Tremolo-3 -\U1D16D;Musical Symbol Combining Augmentation Dot -\U1D16E;Musical Symbol Combining Flag-1 -\U1D16F;Musical Symbol Combining Flag-2 -\U1D170;Musical Symbol Combining Flag-3 -\U1D171;Musical Symbol Combining Flag-4 -\U1D172;Musical Symbol Combining Flag-5 -\U1D173;Musical Symbol Begin Beam -\U1D174;Musical Symbol End Beam -\U1D175;Musical Symbol Begin Tie -\U1D176;Musical Symbol End Tie -\U1D177;Musical Symbol Begin Slur -\U1D178;Musical Symbol End Slur -\U1D179;Musical Symbol Begin Phrase -\U1D17A;Musical Symbol End Phrase -\U1D17B;Musical Symbol Combining Accent -\U1D17C;Musical Symbol Combining Staccato -\U1D17D;Musical Symbol Combining Tenuto -\U1D17E;Musical Symbol Combining Staccatissimo -\U1D17F;Musical Symbol Combining Marcato -\U1D180;Musical Symbol Combining Marcato-Staccato -\U1D181;Musical Symbol Combining Accent-Staccato -\U1D182;Musical Symbol Combining Loure -\U1D183;Musical Symbol Arpeggiato Up -\U1D184;Musical Symbol Arpeggiato Down -\U1D185;Musical Symbol Combining Doit -\U1D186;Musical Symbol Combining Rip -\U1D187;Musical Symbol Combining Flip -\U1D188;Musical Symbol Combining Smear -\U1D189;Musical Symbol Combining Bend -\U1D18A;Musical Symbol Combining Double Tongue -\U1D18B;Musical Symbol Combining Triple Tongue -\U1D18C;Musical Symbol Rinforzando -\U1D18D;Musical Symbol Subito -\U1D18E;Musical Symbol Z -\U1D18F;Musical Symbol Piano -\U1D190;Musical Symbol Mezzo -\U1D191;Musical Symbol Forte -\U1D192;Musical Symbol Crescendo -\U1D193;Musical Symbol Decrescendo -\U1D194;Musical Symbol Grace Note Slash -\U1D195;Musical Symbol Grace Note No Slash -\U1D196;Musical Symbol Tr -\U1D197;Musical Symbol Turn -\U1D198;Musical Symbol Inverted Turn -\U1D199;Musical Symbol Turn Slash -\U1D19A;Musical Symbol Turn Up -\U1D19B;Musical Symbol Ornament Stroke-1 -\U1D19C;Musical Symbol Ornament Stroke-2 -\U1D19D;Musical Symbol Ornament Stroke-3 -\U1D19E;Musical Symbol Ornament Stroke-4 -\U1D19F;Musical Symbol Ornament Stroke-5 -\U1D1A0;Musical Symbol Ornament Stroke-6 -\U1D1A1;Musical Symbol Ornament Stroke-7 -\U1D1A2;Musical Symbol Ornament Stroke-8 -\U1D1A3;Musical Symbol Ornament Stroke-9 -\U1D1A4;Musical Symbol Ornament Stroke-10 -\U1D1A5;Musical Symbol Ornament Stroke-11 -\U1D1A6;Musical Symbol Hauptstimme -\U1D1A7;Musical Symbol Nebenstimme -\U1D1A8;Musical Symbol End Of Stimme -\U1D1A9;Musical Symbol Degree Slash -\U1D1AA;Musical Symbol Combining Down Bow -\U1D1AB;Musical Symbol Combining Up Bow -\U1D1AC;Musical Symbol Combining Harmonic -\U1D1AD;Musical Symbol Combining Snap Pizzicato -\U1D1AE;Musical Symbol Pedal Mark -\U1D1AF;Musical Symbol Pedal Up Mark -\U1D1B0;Musical Symbol Half Pedal Mark -\U1D1B1;Musical Symbol Glissando Up -\U1D1B2;Musical Symbol Glissando Down -\U1D1B3;Musical Symbol With Fingernails -\U1D1B4;Musical Symbol Damp -\U1D1B5;Musical Symbol Damp All -\U1D1B6;Musical Symbol Maxima -\U1D1B7;Musical Symbol Longa -\U1D1B8;Musical Symbol Brevis -\U1D1B9;Musical Symbol Semibrevis White -\U1D1BA;Musical Symbol Semibrevis Black -\U1D1BB;Musical Symbol Minima -\U1D1BC;Musical Symbol Minima Black -\U1D1BD;Musical Symbol Semiminima White -\U1D1BE;Musical Symbol Semiminima Black -\U1D1BF;Musical Symbol Fusa White -\U1D1C0;Musical Symbol Fusa Black -\U1D1C1;Musical Symbol Longa Perfecta Rest -\U1D1C2;Musical Symbol Longa Imperfecta Rest -\U1D1C3;Musical Symbol Brevis Rest -\U1D1C4;Musical Symbol Semibrevis Rest -\U1D1C5;Musical Symbol Minima Rest -\U1D1C6;Musical Symbol Semiminima Rest -\U1D1C7;Musical Symbol Tempus Perfectum Cum Prolatione Perfecta -\U1D1C8;Musical Symbol Tempus Perfectum Cum Prolatione Imperfecta -\U1D1C9;Musical Symbol Tempus Perfectum Cum Prolatione Perfecta Diminution-1 -\U1D1CA;Musical Symbol Tempus Imperfectum Cum Prolatione Perfecta -\U1D1CB;Musical Symbol Tempus Imperfectum Cum Prolatione Imperfecta -\U1D1CC;Musical Symbol Tempus Imperfectum Cum Prolatione Imperfecta Diminution-1 -\U1D1CD;Musical Symbol Tempus Imperfectum Cum Prolatione Imperfecta Diminution-2 -\U1D1CE;Musical Symbol Tempus Imperfectum Cum Prolatione Imperfecta Diminution-3 -\U1D1CF;Musical Symbol Croix -\U1D1D0;Musical Symbol Gregorian C Clef -\U1D1D1;Musical Symbol Gregorian F Clef -\U1D1D2;Musical Symbol Square B -\U1D1D3;Musical Symbol Virga -\U1D1D4;Musical Symbol Podatus -\U1D1D5;Musical Symbol Clivis -\U1D1D6;Musical Symbol Scandicus -\U1D1D7;Musical Symbol Climacus -\U1D1D8;Musical Symbol Torculus -\U1D1D9;Musical Symbol Porrectus -\U1D1DA;Musical Symbol Porrectus Flexus -\U1D1DB;Musical Symbol Scandicus Flexus -\U1D1DC;Musical Symbol Torculus Resupinus -\U1D1DD;Musical Symbol Pes Subpunctis -\U1D1DE;Musical Symbol Kievan C Clef -\U1D1DF;Musical Symbol Kievan End Of Piece -\U1D1E0;Musical Symbol Kievan Final Note -\U1D1E1;Musical Symbol Kievan Recitative Mark -\U1D1E2;Musical Symbol Kievan Whole Note -\U1D1E3;Musical Symbol Kievan Half Note -\U1D1E4;Musical Symbol Kievan Quarter Note Stem Down -\U1D1E5;Musical Symbol Kievan Quarter Note Stem Up -\U1D1E6;Musical Symbol Kievan Eighth Note Stem Down -\U1D1E7;Musical Symbol Kievan Eighth Note Stem Up -\U1D1E8;Musical Symbol Kievan Flat Sign -\U1D1E9;Musical Symbol Sori -\U1D1EA;Musical Symbol Koron -\U1D200;Greek Vocal Notation Symbol-1 -\U1D201;Greek Vocal Notation Symbol-2 -\U1D202;Greek Vocal Notation Symbol-3 -\U1D203;Greek Vocal Notation Symbol-4 -\U1D204;Greek Vocal Notation Symbol-5 -\U1D205;Greek Vocal Notation Symbol-6 -\U1D206;Greek Vocal Notation Symbol-7 -\U1D207;Greek Vocal Notation Symbol-8 -\U1D208;Greek Vocal Notation Symbol-9 -\U1D209;Greek Vocal Notation Symbol-10 -\U1D20A;Greek Vocal Notation Symbol-11 -\U1D20B;Greek Vocal Notation Symbol-12 -\U1D20C;Greek Vocal Notation Symbol-13 -\U1D20D;Greek Vocal Notation Symbol-14 -\U1D20E;Greek Vocal Notation Symbol-15 -\U1D20F;Greek Vocal Notation Symbol-16 -\U1D210;Greek Vocal Notation Symbol-17 -\U1D211;Greek Vocal Notation Symbol-18 -\U1D212;Greek Vocal Notation Symbol-19 -\U1D213;Greek Vocal Notation Symbol-20 -\U1D214;Greek Vocal Notation Symbol-21 -\U1D215;Greek Vocal Notation Symbol-22 -\U1D216;Greek Vocal Notation Symbol-23 -\U1D217;Greek Vocal Notation Symbol-24 -\U1D218;Greek Vocal Notation Symbol-50 -\U1D219;Greek Vocal Notation Symbol-51 -\U1D21A;Greek Vocal Notation Symbol-52 -\U1D21B;Greek Vocal Notation Symbol-53 -\U1D21C;Greek Vocal Notation Symbol-54 -\U1D21D;Greek Instrumental Notation Symbol-1 -\U1D21E;Greek Instrumental Notation Symbol-2 -\U1D21F;Greek Instrumental Notation Symbol-4 -\U1D220;Greek Instrumental Notation Symbol-5 -\U1D221;Greek Instrumental Notation Symbol-7 -\U1D222;Greek Instrumental Notation Symbol-8 -\U1D223;Greek Instrumental Notation Symbol-11 -\U1D224;Greek Instrumental Notation Symbol-12 -\U1D225;Greek Instrumental Notation Symbol-13 -\U1D226;Greek Instrumental Notation Symbol-14 -\U1D227;Greek Instrumental Notation Symbol-17 -\U1D228;Greek Instrumental Notation Symbol-18 -\U1D229;Greek Instrumental Notation Symbol-19 -\U1D22A;Greek Instrumental Notation Symbol-23 -\U1D22B;Greek Instrumental Notation Symbol-24 -\U1D22C;Greek Instrumental Notation Symbol-25 -\U1D22D;Greek Instrumental Notation Symbol-26 -\U1D22E;Greek Instrumental Notation Symbol-27 -\U1D22F;Greek Instrumental Notation Symbol-29 -\U1D230;Greek Instrumental Notation Symbol-30 -\U1D231;Greek Instrumental Notation Symbol-32 -\U1D232;Greek Instrumental Notation Symbol-36 -\U1D233;Greek Instrumental Notation Symbol-37 -\U1D234;Greek Instrumental Notation Symbol-38 -\U1D235;Greek Instrumental Notation Symbol-39 -\U1D236;Greek Instrumental Notation Symbol-40 -\U1D237;Greek Instrumental Notation Symbol-42 -\U1D238;Greek Instrumental Notation Symbol-43 -\U1D239;Greek Instrumental Notation Symbol-45 -\U1D23A;Greek Instrumental Notation Symbol-47 -\U1D23B;Greek Instrumental Notation Symbol-48 -\U1D23C;Greek Instrumental Notation Symbol-49 -\U1D23D;Greek Instrumental Notation Symbol-50 -\U1D23E;Greek Instrumental Notation Symbol-51 -\U1D23F;Greek Instrumental Notation Symbol-52 -\U1D240;Greek Instrumental Notation Symbol-53 -\U1D241;Greek Instrumental Notation Symbol-54 -\U1D242;Combining Greek Musical Triseme -\U1D243;Combining Greek Musical Tetraseme -\U1D244;Combining Greek Musical Pentaseme -\U1D245;Greek Musical Leimma -\U1D2C0;Kaktovik Numeral Zero -\U1D2C1;Kaktovik Numeral One -\U1D2C2;Kaktovik Numeral Two -\U1D2C3;Kaktovik Numeral Three -\U1D2C4;Kaktovik Numeral Four -\U1D2C5;Kaktovik Numeral Five -\U1D2C6;Kaktovik Numeral Six -\U1D2C7;Kaktovik Numeral Seven -\U1D2C8;Kaktovik Numeral Eight -\U1D2C9;Kaktovik Numeral Nine -\U1D2CA;Kaktovik Numeral Ten -\U1D2CB;Kaktovik Numeral Eleven -\U1D2CC;Kaktovik Numeral Twelve -\U1D2CD;Kaktovik Numeral Thirteen -\U1D2CE;Kaktovik Numeral Fourteen -\U1D2CF;Kaktovik Numeral Fifteen -\U1D2D0;Kaktovik Numeral Sixteen -\U1D2D1;Kaktovik Numeral Seventeen -\U1D2D2;Kaktovik Numeral Eighteen -\U1D2D3;Kaktovik Numeral Nineteen -\U1D2E0;Mayan Numeral Zero -\U1D2E1;Mayan Numeral One -\U1D2E2;Mayan Numeral Two -\U1D2E3;Mayan Numeral Three -\U1D2E4;Mayan Numeral Four -\U1D2E5;Mayan Numeral Five -\U1D2E6;Mayan Numeral Six -\U1D2E7;Mayan Numeral Seven -\U1D2E8;Mayan Numeral Eight -\U1D2E9;Mayan Numeral Nine -\U1D2EA;Mayan Numeral Ten -\U1D2EB;Mayan Numeral Eleven -\U1D2EC;Mayan Numeral Twelve -\U1D2ED;Mayan Numeral Thirteen -\U1D2EE;Mayan Numeral Fourteen -\U1D2EF;Mayan Numeral Fifteen -\U1D2F0;Mayan Numeral Sixteen -\U1D2F1;Mayan Numeral Seventeen -\U1D2F2;Mayan Numeral Eighteen -\U1D2F3;Mayan Numeral Nineteen -\U1D300;Monogram For Earth -\U1D301;Digram For Heavenly Earth -\U1D302;Digram For Human Earth -\U1D303;Digram For Earthly Heaven -\U1D304;Digram For Earthly Human -\U1D305;Digram For Earth -\U1D306;Tetragram For Centre -\U1D307;Tetragram For Full Circle -\U1D308;Tetragram For Mired -\U1D309;Tetragram For Barrier -\U1D30A;Tetragram For Keeping Small -\U1D30B;Tetragram For Contrariety -\U1D30C;Tetragram For Ascent -\U1D30D;Tetragram For Opposition -\U1D30E;Tetragram For Branching Out -\U1D30F;Tetragram For Defectiveness Or Distortion -\U1D310;Tetragram For Divergence -\U1D311;Tetragram For Youthfulness -\U1D312;Tetragram For Increase -\U1D313;Tetragram For Penetration -\U1D314;Tetragram For Reach -\U1D315;Tetragram For Contact -\U1D316;Tetragram For Holding Back -\U1D317;Tetragram For Waiting -\U1D318;Tetragram For Following -\U1D319;Tetragram For Advance -\U1D31A;Tetragram For Release -\U1D31B;Tetragram For Resistance -\U1D31C;Tetragram For Ease -\U1D31D;Tetragram For Joy -\U1D31E;Tetragram For Contention -\U1D31F;Tetragram For Endeavour -\U1D320;Tetragram For Duties -\U1D321;Tetragram For Change -\U1D322;Tetragram For Decisiveness -\U1D323;Tetragram For Bold Resolution -\U1D324;Tetragram For Packing -\U1D325;Tetragram For Legion -\U1D326;Tetragram For Closeness -\U1D327;Tetragram For Kinship -\U1D328;Tetragram For Gathering -\U1D329;Tetragram For Strength -\U1D32A;Tetragram For Purity -\U1D32B;Tetragram For Fullness -\U1D32C;Tetragram For Residence -\U1D32D;Tetragram For Law Or Model -\U1D32E;Tetragram For Response -\U1D32F;Tetragram For Going To Meet -\U1D330;Tetragram For Encounters -\U1D331;Tetragram For Stove -\U1D332;Tetragram For Greatness -\U1D333;Tetragram For Enlargement -\U1D334;Tetragram For Pattern -\U1D335;Tetragram For Ritual -\U1D336;Tetragram For Flight -\U1D337;Tetragram For Vastness Or Wasting -\U1D338;Tetragram For Constancy -\U1D339;Tetragram For Measure -\U1D33A;Tetragram For Eternity -\U1D33B;Tetragram For Unity -\U1D33C;Tetragram For Diminishment -\U1D33D;Tetragram For Closed Mouth -\U1D33E;Tetragram For Guardedness -\U1D33F;Tetragram For Gathering In -\U1D340;Tetragram For Massing -\U1D341;Tetragram For Accumulation -\U1D342;Tetragram For Embellishment -\U1D343;Tetragram For Doubt -\U1D344;Tetragram For Watch -\U1D345;Tetragram For Sinking -\U1D346;Tetragram For Inner -\U1D347;Tetragram For Departure -\U1D348;Tetragram For Darkening -\U1D349;Tetragram For Dimming -\U1D34A;Tetragram For Exhaustion -\U1D34B;Tetragram For Severance -\U1D34C;Tetragram For Stoppage -\U1D34D;Tetragram For Hardness -\U1D34E;Tetragram For Completion -\U1D34F;Tetragram For Closure -\U1D350;Tetragram For Failure -\U1D351;Tetragram For Aggravation -\U1D352;Tetragram For Compliance -\U1D353;Tetragram For On The Verge -\U1D354;Tetragram For Difficulties -\U1D355;Tetragram For Labouring -\U1D356;Tetragram For Fostering -\U1D360;Counting Rod Unit Digit One -\U1D361;Counting Rod Unit Digit Two -\U1D362;Counting Rod Unit Digit Three -\U1D363;Counting Rod Unit Digit Four -\U1D364;Counting Rod Unit Digit Five -\U1D365;Counting Rod Unit Digit Six -\U1D366;Counting Rod Unit Digit Seven -\U1D367;Counting Rod Unit Digit Eight -\U1D368;Counting Rod Unit Digit Nine -\U1D369;Counting Rod Tens Digit One -\U1D36A;Counting Rod Tens Digit Two -\U1D36B;Counting Rod Tens Digit Three -\U1D36C;Counting Rod Tens Digit Four -\U1D36D;Counting Rod Tens Digit Five -\U1D36E;Counting Rod Tens Digit Six -\U1D36F;Counting Rod Tens Digit Seven -\U1D370;Counting Rod Tens Digit Eight -\U1D371;Counting Rod Tens Digit Nine -\U1D372;Ideographic Tally Mark One -\U1D373;Ideographic Tally Mark Two -\U1D374;Ideographic Tally Mark Three -\U1D375;Ideographic Tally Mark Four -\U1D376;Ideographic Tally Mark Five -\U1D377;Tally Mark One -\U1D378;Tally Mark Five -\U1D400;Mathematical Bold Capital A -\U1D401;Mathematical Bold Capital B -\U1D402;Mathematical Bold Capital C -\U1D403;Mathematical Bold Capital D -\U1D404;Mathematical Bold Capital E -\U1D405;Mathematical Bold Capital F -\U1D406;Mathematical Bold Capital G -\U1D407;Mathematical Bold Capital H -\U1D408;Mathematical Bold Capital I -\U1D409;Mathematical Bold Capital J -\U1D40A;Mathematical Bold Capital K -\U1D40B;Mathematical Bold Capital L -\U1D40C;Mathematical Bold Capital M -\U1D40D;Mathematical Bold Capital N -\U1D40E;Mathematical Bold Capital O -\U1D40F;Mathematical Bold Capital P -\U1D410;Mathematical Bold Capital Q -\U1D411;Mathematical Bold Capital R -\U1D412;Mathematical Bold Capital S -\U1D413;Mathematical Bold Capital T -\U1D414;Mathematical Bold Capital U -\U1D415;Mathematical Bold Capital V -\U1D416;Mathematical Bold Capital W -\U1D417;Mathematical Bold Capital X -\U1D418;Mathematical Bold Capital Y -\U1D419;Mathematical Bold Capital Z -\U1D41A;Mathematical Bold Small A -\U1D41B;Mathematical Bold Small B -\U1D41C;Mathematical Bold Small C -\U1D41D;Mathematical Bold Small D -\U1D41E;Mathematical Bold Small E -\U1D41F;Mathematical Bold Small F -\U1D420;Mathematical Bold Small G -\U1D421;Mathematical Bold Small H -\U1D422;Mathematical Bold Small I -\U1D423;Mathematical Bold Small J -\U1D424;Mathematical Bold Small K -\U1D425;Mathematical Bold Small L -\U1D426;Mathematical Bold Small M -\U1D427;Mathematical Bold Small N -\U1D428;Mathematical Bold Small O -\U1D429;Mathematical Bold Small P -\U1D42A;Mathematical Bold Small Q -\U1D42B;Mathematical Bold Small R -\U1D42C;Mathematical Bold Small S -\U1D42D;Mathematical Bold Small T -\U1D42E;Mathematical Bold Small U -\U1D42F;Mathematical Bold Small V -\U1D430;Mathematical Bold Small W -\U1D431;Mathematical Bold Small X -\U1D432;Mathematical Bold Small Y -\U1D433;Mathematical Bold Small Z -\U1D434;Mathematical Italic Capital A -\U1D435;Mathematical Italic Capital B -\U1D436;Mathematical Italic Capital C -\U1D437;Mathematical Italic Capital D -\U1D438;Mathematical Italic Capital E -\U1D439;Mathematical Italic Capital F -\U1D43A;Mathematical Italic Capital G -\U1D43B;Mathematical Italic Capital H -\U1D43C;Mathematical Italic Capital I -\U1D43D;Mathematical Italic Capital J -\U1D43E;Mathematical Italic Capital K -\U1D43F;Mathematical Italic Capital L -\U1D440;Mathematical Italic Capital M -\U1D441;Mathematical Italic Capital N -\U1D442;Mathematical Italic Capital O -\U1D443;Mathematical Italic Capital P -\U1D444;Mathematical Italic Capital Q -\U1D445;Mathematical Italic Capital R -\U1D446;Mathematical Italic Capital S -\U1D447;Mathematical Italic Capital T -\U1D448;Mathematical Italic Capital U -\U1D449;Mathematical Italic Capital V -\U1D44A;Mathematical Italic Capital W -\U1D44B;Mathematical Italic Capital X -\U1D44C;Mathematical Italic Capital Y -\U1D44D;Mathematical Italic Capital Z -\U1D44E;Mathematical Italic Small A -\U1D44F;Mathematical Italic Small B -\U1D450;Mathematical Italic Small C -\U1D451;Mathematical Italic Small D -\U1D452;Mathematical Italic Small E -\U1D453;Mathematical Italic Small F -\U1D454;Mathematical Italic Small G -\U1D456;Mathematical Italic Small I -\U1D457;Mathematical Italic Small J -\U1D458;Mathematical Italic Small K -\U1D459;Mathematical Italic Small L -\U1D45A;Mathematical Italic Small M -\U1D45B;Mathematical Italic Small N -\U1D45C;Mathematical Italic Small O -\U1D45D;Mathematical Italic Small P -\U1D45E;Mathematical Italic Small Q -\U1D45F;Mathematical Italic Small R -\U1D460;Mathematical Italic Small S -\U1D461;Mathematical Italic Small T -\U1D462;Mathematical Italic Small U -\U1D463;Mathematical Italic Small V -\U1D464;Mathematical Italic Small W -\U1D465;Mathematical Italic Small X -\U1D466;Mathematical Italic Small Y -\U1D467;Mathematical Italic Small Z -\U1D468;Mathematical Bold Italic Capital A -\U1D469;Mathematical Bold Italic Capital B -\U1D46A;Mathematical Bold Italic Capital C -\U1D46B;Mathematical Bold Italic Capital D -\U1D46C;Mathematical Bold Italic Capital E -\U1D46D;Mathematical Bold Italic Capital F -\U1D46E;Mathematical Bold Italic Capital G -\U1D46F;Mathematical Bold Italic Capital H -\U1D470;Mathematical Bold Italic Capital I -\U1D471;Mathematical Bold Italic Capital J -\U1D472;Mathematical Bold Italic Capital K -\U1D473;Mathematical Bold Italic Capital L -\U1D474;Mathematical Bold Italic Capital M -\U1D475;Mathematical Bold Italic Capital N -\U1D476;Mathematical Bold Italic Capital O -\U1D477;Mathematical Bold Italic Capital P -\U1D478;Mathematical Bold Italic Capital Q -\U1D479;Mathematical Bold Italic Capital R -\U1D47A;Mathematical Bold Italic Capital S -\U1D47B;Mathematical Bold Italic Capital T -\U1D47C;Mathematical Bold Italic Capital U -\U1D47D;Mathematical Bold Italic Capital V -\U1D47E;Mathematical Bold Italic Capital W -\U1D47F;Mathematical Bold Italic Capital X -\U1D480;Mathematical Bold Italic Capital Y -\U1D481;Mathematical Bold Italic Capital Z -\U1D482;Mathematical Bold Italic Small A -\U1D483;Mathematical Bold Italic Small B -\U1D484;Mathematical Bold Italic Small C -\U1D485;Mathematical Bold Italic Small D -\U1D486;Mathematical Bold Italic Small E -\U1D487;Mathematical Bold Italic Small F -\U1D488;Mathematical Bold Italic Small G -\U1D489;Mathematical Bold Italic Small H -\U1D48A;Mathematical Bold Italic Small I -\U1D48B;Mathematical Bold Italic Small J -\U1D48C;Mathematical Bold Italic Small K -\U1D48D;Mathematical Bold Italic Small L -\U1D48E;Mathematical Bold Italic Small M -\U1D48F;Mathematical Bold Italic Small N -\U1D490;Mathematical Bold Italic Small O -\U1D491;Mathematical Bold Italic Small P -\U1D492;Mathematical Bold Italic Small Q -\U1D493;Mathematical Bold Italic Small R -\U1D494;Mathematical Bold Italic Small S -\U1D495;Mathematical Bold Italic Small T -\U1D496;Mathematical Bold Italic Small U -\U1D497;Mathematical Bold Italic Small V -\U1D498;Mathematical Bold Italic Small W -\U1D499;Mathematical Bold Italic Small X -\U1D49A;Mathematical Bold Italic Small Y -\U1D49B;Mathematical Bold Italic Small Z -\U1D49C;Mathematical Script Capital A -\U1D49E;Mathematical Script Capital C -\U1D49F;Mathematical Script Capital D -\U1D4A2;Mathematical Script Capital G -\U1D4A5;Mathematical Script Capital J -\U1D4A6;Mathematical Script Capital K -\U1D4A9;Mathematical Script Capital N -\U1D4AA;Mathematical Script Capital O -\U1D4AB;Mathematical Script Capital P -\U1D4AC;Mathematical Script Capital Q -\U1D4AE;Mathematical Script Capital S -\U1D4AF;Mathematical Script Capital T -\U1D4B0;Mathematical Script Capital U -\U1D4B1;Mathematical Script Capital V -\U1D4B2;Mathematical Script Capital W -\U1D4B3;Mathematical Script Capital X -\U1D4B4;Mathematical Script Capital Y -\U1D4B5;Mathematical Script Capital Z -\U1D4B6;Mathematical Script Small A -\U1D4B7;Mathematical Script Small B -\U1D4B8;Mathematical Script Small C -\U1D4B9;Mathematical Script Small D -\U1D4BB;Mathematical Script Small F -\U1D4BD;Mathematical Script Small H -\U1D4BE;Mathematical Script Small I -\U1D4BF;Mathematical Script Small J -\U1D4C0;Mathematical Script Small K -\U1D4C1;Mathematical Script Small L -\U1D4C2;Mathematical Script Small M -\U1D4C3;Mathematical Script Small N -\U1D4C5;Mathematical Script Small P -\U1D4C6;Mathematical Script Small Q -\U1D4C7;Mathematical Script Small R -\U1D4C8;Mathematical Script Small S -\U1D4C9;Mathematical Script Small T -\U1D4CA;Mathematical Script Small U -\U1D4CB;Mathematical Script Small V -\U1D4CC;Mathematical Script Small W -\U1D4CD;Mathematical Script Small X -\U1D4CE;Mathematical Script Small Y -\U1D4CF;Mathematical Script Small Z -\U1D4D0;Mathematical Bold Script Capital A -\U1D4D1;Mathematical Bold Script Capital B -\U1D4D2;Mathematical Bold Script Capital C -\U1D4D3;Mathematical Bold Script Capital D -\U1D4D4;Mathematical Bold Script Capital E -\U1D4D5;Mathematical Bold Script Capital F -\U1D4D6;Mathematical Bold Script Capital G -\U1D4D7;Mathematical Bold Script Capital H -\U1D4D8;Mathematical Bold Script Capital I -\U1D4D9;Mathematical Bold Script Capital J -\U1D4DA;Mathematical Bold Script Capital K -\U1D4DB;Mathematical Bold Script Capital L -\U1D4DC;Mathematical Bold Script Capital M -\U1D4DD;Mathematical Bold Script Capital N -\U1D4DE;Mathematical Bold Script Capital O -\U1D4DF;Mathematical Bold Script Capital P -\U1D4E0;Mathematical Bold Script Capital Q -\U1D4E1;Mathematical Bold Script Capital R -\U1D4E2;Mathematical Bold Script Capital S -\U1D4E3;Mathematical Bold Script Capital T -\U1D4E4;Mathematical Bold Script Capital U -\U1D4E5;Mathematical Bold Script Capital V -\U1D4E6;Mathematical Bold Script Capital W -\U1D4E7;Mathematical Bold Script Capital X -\U1D4E8;Mathematical Bold Script Capital Y -\U1D4E9;Mathematical Bold Script Capital Z -\U1D4EA;Mathematical Bold Script Small A -\U1D4EB;Mathematical Bold Script Small B -\U1D4EC;Mathematical Bold Script Small C -\U1D4ED;Mathematical Bold Script Small D -\U1D4EE;Mathematical Bold Script Small E -\U1D4EF;Mathematical Bold Script Small F -\U1D4F0;Mathematical Bold Script Small G -\U1D4F1;Mathematical Bold Script Small H -\U1D4F2;Mathematical Bold Script Small I -\U1D4F3;Mathematical Bold Script Small J -\U1D4F4;Mathematical Bold Script Small K -\U1D4F5;Mathematical Bold Script Small L -\U1D4F6;Mathematical Bold Script Small M -\U1D4F7;Mathematical Bold Script Small N -\U1D4F8;Mathematical Bold Script Small O -\U1D4F9;Mathematical Bold Script Small P -\U1D4FA;Mathematical Bold Script Small Q -\U1D4FB;Mathematical Bold Script Small R -\U1D4FC;Mathematical Bold Script Small S -\U1D4FD;Mathematical Bold Script Small T -\U1D4FE;Mathematical Bold Script Small U -\U1D4FF;Mathematical Bold Script Small V -\U1D500;Mathematical Bold Script Small W -\U1D501;Mathematical Bold Script Small X -\U1D502;Mathematical Bold Script Small Y -\U1D503;Mathematical Bold Script Small Z -\U1D504;Mathematical Fraktur Capital A -\U1D505;Mathematical Fraktur Capital B -\U1D507;Mathematical Fraktur Capital D -\U1D508;Mathematical Fraktur Capital E -\U1D509;Mathematical Fraktur Capital F -\U1D50A;Mathematical Fraktur Capital G -\U1D50D;Mathematical Fraktur Capital J -\U1D50E;Mathematical Fraktur Capital K -\U1D50F;Mathematical Fraktur Capital L -\U1D510;Mathematical Fraktur Capital M -\U1D511;Mathematical Fraktur Capital N -\U1D512;Mathematical Fraktur Capital O -\U1D513;Mathematical Fraktur Capital P -\U1D514;Mathematical Fraktur Capital Q -\U1D516;Mathematical Fraktur Capital S -\U1D517;Mathematical Fraktur Capital T -\U1D518;Mathematical Fraktur Capital U -\U1D519;Mathematical Fraktur Capital V -\U1D51A;Mathematical Fraktur Capital W -\U1D51B;Mathematical Fraktur Capital X -\U1D51C;Mathematical Fraktur Capital Y -\U1D51E;Mathematical Fraktur Small A -\U1D51F;Mathematical Fraktur Small B -\U1D520;Mathematical Fraktur Small C -\U1D521;Mathematical Fraktur Small D -\U1D522;Mathematical Fraktur Small E -\U1D523;Mathematical Fraktur Small F -\U1D524;Mathematical Fraktur Small G -\U1D525;Mathematical Fraktur Small H -\U1D526;Mathematical Fraktur Small I -\U1D527;Mathematical Fraktur Small J -\U1D528;Mathematical Fraktur Small K -\U1D529;Mathematical Fraktur Small L -\U1D52A;Mathematical Fraktur Small M -\U1D52B;Mathematical Fraktur Small N -\U1D52C;Mathematical Fraktur Small O -\U1D52D;Mathematical Fraktur Small P -\U1D52E;Mathematical Fraktur Small Q -\U1D52F;Mathematical Fraktur Small R -\U1D530;Mathematical Fraktur Small S -\U1D531;Mathematical Fraktur Small T -\U1D532;Mathematical Fraktur Small U -\U1D533;Mathematical Fraktur Small V -\U1D534;Mathematical Fraktur Small W -\U1D535;Mathematical Fraktur Small X -\U1D536;Mathematical Fraktur Small Y -\U1D537;Mathematical Fraktur Small Z -\U1D538;Mathematical Double-Struck Capital A -\U1D539;Mathematical Double-Struck Capital B -\U1D53B;Mathematical Double-Struck Capital D -\U1D53C;Mathematical Double-Struck Capital E -\U1D53D;Mathematical Double-Struck Capital F -\U1D53E;Mathematical Double-Struck Capital G -\U1D540;Mathematical Double-Struck Capital I -\U1D541;Mathematical Double-Struck Capital J -\U1D542;Mathematical Double-Struck Capital K -\U1D543;Mathematical Double-Struck Capital L -\U1D544;Mathematical Double-Struck Capital M -\U1D546;Mathematical Double-Struck Capital O -\U1D54A;Mathematical Double-Struck Capital S -\U1D54B;Mathematical Double-Struck Capital T -\U1D54C;Mathematical Double-Struck Capital U -\U1D54D;Mathematical Double-Struck Capital V -\U1D54E;Mathematical Double-Struck Capital W -\U1D54F;Mathematical Double-Struck Capital X -\U1D550;Mathematical Double-Struck Capital Y -\U1D552;Mathematical Double-Struck Small A -\U1D553;Mathematical Double-Struck Small B -\U1D554;Mathematical Double-Struck Small C -\U1D555;Mathematical Double-Struck Small D -\U1D556;Mathematical Double-Struck Small E -\U1D557;Mathematical Double-Struck Small F -\U1D558;Mathematical Double-Struck Small G -\U1D559;Mathematical Double-Struck Small H -\U1D55A;Mathematical Double-Struck Small I -\U1D55B;Mathematical Double-Struck Small J -\U1D55C;Mathematical Double-Struck Small K -\U1D55D;Mathematical Double-Struck Small L -\U1D55E;Mathematical Double-Struck Small M -\U1D55F;Mathematical Double-Struck Small N -\U1D560;Mathematical Double-Struck Small O -\U1D561;Mathematical Double-Struck Small P -\U1D562;Mathematical Double-Struck Small Q -\U1D563;Mathematical Double-Struck Small R -\U1D564;Mathematical Double-Struck Small S -\U1D565;Mathematical Double-Struck Small T -\U1D566;Mathematical Double-Struck Small U -\U1D567;Mathematical Double-Struck Small V -\U1D568;Mathematical Double-Struck Small W -\U1D569;Mathematical Double-Struck Small X -\U1D56A;Mathematical Double-Struck Small Y -\U1D56B;Mathematical Double-Struck Small Z -\U1D56C;Mathematical Bold Fraktur Capital A -\U1D56D;Mathematical Bold Fraktur Capital B -\U1D56E;Mathematical Bold Fraktur Capital C -\U1D56F;Mathematical Bold Fraktur Capital D -\U1D570;Mathematical Bold Fraktur Capital E -\U1D571;Mathematical Bold Fraktur Capital F -\U1D572;Mathematical Bold Fraktur Capital G -\U1D573;Mathematical Bold Fraktur Capital H -\U1D574;Mathematical Bold Fraktur Capital I -\U1D575;Mathematical Bold Fraktur Capital J -\U1D576;Mathematical Bold Fraktur Capital K -\U1D577;Mathematical Bold Fraktur Capital L -\U1D578;Mathematical Bold Fraktur Capital M -\U1D579;Mathematical Bold Fraktur Capital N -\U1D57A;Mathematical Bold Fraktur Capital O -\U1D57B;Mathematical Bold Fraktur Capital P -\U1D57C;Mathematical Bold Fraktur Capital Q -\U1D57D;Mathematical Bold Fraktur Capital R -\U1D57E;Mathematical Bold Fraktur Capital S -\U1D57F;Mathematical Bold Fraktur Capital T -\U1D580;Mathematical Bold Fraktur Capital U -\U1D581;Mathematical Bold Fraktur Capital V -\U1D582;Mathematical Bold Fraktur Capital W -\U1D583;Mathematical Bold Fraktur Capital X -\U1D584;Mathematical Bold Fraktur Capital Y -\U1D585;Mathematical Bold Fraktur Capital Z -\U1D586;Mathematical Bold Fraktur Small A -\U1D587;Mathematical Bold Fraktur Small B -\U1D588;Mathematical Bold Fraktur Small C -\U1D589;Mathematical Bold Fraktur Small D -\U1D58A;Mathematical Bold Fraktur Small E -\U1D58B;Mathematical Bold Fraktur Small F -\U1D58C;Mathematical Bold Fraktur Small G -\U1D58D;Mathematical Bold Fraktur Small H -\U1D58E;Mathematical Bold Fraktur Small I -\U1D58F;Mathematical Bold Fraktur Small J -\U1D590;Mathematical Bold Fraktur Small K -\U1D591;Mathematical Bold Fraktur Small L -\U1D592;Mathematical Bold Fraktur Small M -\U1D593;Mathematical Bold Fraktur Small N -\U1D594;Mathematical Bold Fraktur Small O -\U1D595;Mathematical Bold Fraktur Small P -\U1D596;Mathematical Bold Fraktur Small Q -\U1D597;Mathematical Bold Fraktur Small R -\U1D598;Mathematical Bold Fraktur Small S -\U1D599;Mathematical Bold Fraktur Small T -\U1D59A;Mathematical Bold Fraktur Small U -\U1D59B;Mathematical Bold Fraktur Small V -\U1D59C;Mathematical Bold Fraktur Small W -\U1D59D;Mathematical Bold Fraktur Small X -\U1D59E;Mathematical Bold Fraktur Small Y -\U1D59F;Mathematical Bold Fraktur Small Z -\U1D5A0;Mathematical Sans-Serif Capital A -\U1D5A1;Mathematical Sans-Serif Capital B -\U1D5A2;Mathematical Sans-Serif Capital C -\U1D5A3;Mathematical Sans-Serif Capital D -\U1D5A4;Mathematical Sans-Serif Capital E -\U1D5A5;Mathematical Sans-Serif Capital F -\U1D5A6;Mathematical Sans-Serif Capital G -\U1D5A7;Mathematical Sans-Serif Capital H -\U1D5A8;Mathematical Sans-Serif Capital I -\U1D5A9;Mathematical Sans-Serif Capital J -\U1D5AA;Mathematical Sans-Serif Capital K -\U1D5AB;Mathematical Sans-Serif Capital L -\U1D5AC;Mathematical Sans-Serif Capital M -\U1D5AD;Mathematical Sans-Serif Capital N -\U1D5AE;Mathematical Sans-Serif Capital O -\U1D5AF;Mathematical Sans-Serif Capital P -\U1D5B0;Mathematical Sans-Serif Capital Q -\U1D5B1;Mathematical Sans-Serif Capital R -\U1D5B2;Mathematical Sans-Serif Capital S -\U1D5B3;Mathematical Sans-Serif Capital T -\U1D5B4;Mathematical Sans-Serif Capital U -\U1D5B5;Mathematical Sans-Serif Capital V -\U1D5B6;Mathematical Sans-Serif Capital W -\U1D5B7;Mathematical Sans-Serif Capital X -\U1D5B8;Mathematical Sans-Serif Capital Y -\U1D5B9;Mathematical Sans-Serif Capital Z -\U1D5BA;Mathematical Sans-Serif Small A -\U1D5BB;Mathematical Sans-Serif Small B -\U1D5BC;Mathematical Sans-Serif Small C -\U1D5BD;Mathematical Sans-Serif Small D -\U1D5BE;Mathematical Sans-Serif Small E -\U1D5BF;Mathematical Sans-Serif Small F -\U1D5C0;Mathematical Sans-Serif Small G -\U1D5C1;Mathematical Sans-Serif Small H -\U1D5C2;Mathematical Sans-Serif Small I -\U1D5C3;Mathematical Sans-Serif Small J -\U1D5C4;Mathematical Sans-Serif Small K -\U1D5C5;Mathematical Sans-Serif Small L -\U1D5C6;Mathematical Sans-Serif Small M -\U1D5C7;Mathematical Sans-Serif Small N -\U1D5C8;Mathematical Sans-Serif Small O -\U1D5C9;Mathematical Sans-Serif Small P -\U1D5CA;Mathematical Sans-Serif Small Q -\U1D5CB;Mathematical Sans-Serif Small R -\U1D5CC;Mathematical Sans-Serif Small S -\U1D5CD;Mathematical Sans-Serif Small T -\U1D5CE;Mathematical Sans-Serif Small U -\U1D5CF;Mathematical Sans-Serif Small V -\U1D5D0;Mathematical Sans-Serif Small W -\U1D5D1;Mathematical Sans-Serif Small X -\U1D5D2;Mathematical Sans-Serif Small Y -\U1D5D3;Mathematical Sans-Serif Small Z -\U1D5D4;Mathematical Sans-Serif Bold Capital A -\U1D5D5;Mathematical Sans-Serif Bold Capital B -\U1D5D6;Mathematical Sans-Serif Bold Capital C -\U1D5D7;Mathematical Sans-Serif Bold Capital D -\U1D5D8;Mathematical Sans-Serif Bold Capital E -\U1D5D9;Mathematical Sans-Serif Bold Capital F -\U1D5DA;Mathematical Sans-Serif Bold Capital G -\U1D5DB;Mathematical Sans-Serif Bold Capital H -\U1D5DC;Mathematical Sans-Serif Bold Capital I -\U1D5DD;Mathematical Sans-Serif Bold Capital J -\U1D5DE;Mathematical Sans-Serif Bold Capital K -\U1D5DF;Mathematical Sans-Serif Bold Capital L -\U1D5E0;Mathematical Sans-Serif Bold Capital M -\U1D5E1;Mathematical Sans-Serif Bold Capital N -\U1D5E2;Mathematical Sans-Serif Bold Capital O -\U1D5E3;Mathematical Sans-Serif Bold Capital P -\U1D5E4;Mathematical Sans-Serif Bold Capital Q -\U1D5E5;Mathematical Sans-Serif Bold Capital R -\U1D5E6;Mathematical Sans-Serif Bold Capital S -\U1D5E7;Mathematical Sans-Serif Bold Capital T -\U1D5E8;Mathematical Sans-Serif Bold Capital U -\U1D5E9;Mathematical Sans-Serif Bold Capital V -\U1D5EA;Mathematical Sans-Serif Bold Capital W -\U1D5EB;Mathematical Sans-Serif Bold Capital X -\U1D5EC;Mathematical Sans-Serif Bold Capital Y -\U1D5ED;Mathematical Sans-Serif Bold Capital Z -\U1D5EE;Mathematical Sans-Serif Bold Small A -\U1D5EF;Mathematical Sans-Serif Bold Small B -\U1D5F0;Mathematical Sans-Serif Bold Small C -\U1D5F1;Mathematical Sans-Serif Bold Small D -\U1D5F2;Mathematical Sans-Serif Bold Small E -\U1D5F3;Mathematical Sans-Serif Bold Small F -\U1D5F4;Mathematical Sans-Serif Bold Small G -\U1D5F5;Mathematical Sans-Serif Bold Small H -\U1D5F6;Mathematical Sans-Serif Bold Small I -\U1D5F7;Mathematical Sans-Serif Bold Small J -\U1D5F8;Mathematical Sans-Serif Bold Small K -\U1D5F9;Mathematical Sans-Serif Bold Small L -\U1D5FA;Mathematical Sans-Serif Bold Small M -\U1D5FB;Mathematical Sans-Serif Bold Small N -\U1D5FC;Mathematical Sans-Serif Bold Small O -\U1D5FD;Mathematical Sans-Serif Bold Small P -\U1D5FE;Mathematical Sans-Serif Bold Small Q -\U1D5FF;Mathematical Sans-Serif Bold Small R -\U1D600;Mathematical Sans-Serif Bold Small S -\U1D601;Mathematical Sans-Serif Bold Small T -\U1D602;Mathematical Sans-Serif Bold Small U -\U1D603;Mathematical Sans-Serif Bold Small V -\U1D604;Mathematical Sans-Serif Bold Small W -\U1D605;Mathematical Sans-Serif Bold Small X -\U1D606;Mathematical Sans-Serif Bold Small Y -\U1D607;Mathematical Sans-Serif Bold Small Z -\U1D608;Mathematical Sans-Serif Italic Capital A -\U1D609;Mathematical Sans-Serif Italic Capital B -\U1D60A;Mathematical Sans-Serif Italic Capital C -\U1D60B;Mathematical Sans-Serif Italic Capital D -\U1D60C;Mathematical Sans-Serif Italic Capital E -\U1D60D;Mathematical Sans-Serif Italic Capital F -\U1D60E;Mathematical Sans-Serif Italic Capital G -\U1D60F;Mathematical Sans-Serif Italic Capital H -\U1D610;Mathematical Sans-Serif Italic Capital I -\U1D611;Mathematical Sans-Serif Italic Capital J -\U1D612;Mathematical Sans-Serif Italic Capital K -\U1D613;Mathematical Sans-Serif Italic Capital L -\U1D614;Mathematical Sans-Serif Italic Capital M -\U1D615;Mathematical Sans-Serif Italic Capital N -\U1D616;Mathematical Sans-Serif Italic Capital O -\U1D617;Mathematical Sans-Serif Italic Capital P -\U1D618;Mathematical Sans-Serif Italic Capital Q -\U1D619;Mathematical Sans-Serif Italic Capital R -\U1D61A;Mathematical Sans-Serif Italic Capital S -\U1D61B;Mathematical Sans-Serif Italic Capital T -\U1D61C;Mathematical Sans-Serif Italic Capital U -\U1D61D;Mathematical Sans-Serif Italic Capital V -\U1D61E;Mathematical Sans-Serif Italic Capital W -\U1D61F;Mathematical Sans-Serif Italic Capital X -\U1D620;Mathematical Sans-Serif Italic Capital Y -\U1D621;Mathematical Sans-Serif Italic Capital Z -\U1D622;Mathematical Sans-Serif Italic Small A -\U1D623;Mathematical Sans-Serif Italic Small B -\U1D624;Mathematical Sans-Serif Italic Small C -\U1D625;Mathematical Sans-Serif Italic Small D -\U1D626;Mathematical Sans-Serif Italic Small E -\U1D627;Mathematical Sans-Serif Italic Small F -\U1D628;Mathematical Sans-Serif Italic Small G -\U1D629;Mathematical Sans-Serif Italic Small H -\U1D62A;Mathematical Sans-Serif Italic Small I -\U1D62B;Mathematical Sans-Serif Italic Small J -\U1D62C;Mathematical Sans-Serif Italic Small K -\U1D62D;Mathematical Sans-Serif Italic Small L -\U1D62E;Mathematical Sans-Serif Italic Small M -\U1D62F;Mathematical Sans-Serif Italic Small N -\U1D630;Mathematical Sans-Serif Italic Small O -\U1D631;Mathematical Sans-Serif Italic Small P -\U1D632;Mathematical Sans-Serif Italic Small Q -\U1D633;Mathematical Sans-Serif Italic Small R -\U1D634;Mathematical Sans-Serif Italic Small S -\U1D635;Mathematical Sans-Serif Italic Small T -\U1D636;Mathematical Sans-Serif Italic Small U -\U1D637;Mathematical Sans-Serif Italic Small V -\U1D638;Mathematical Sans-Serif Italic Small W -\U1D639;Mathematical Sans-Serif Italic Small X -\U1D63A;Mathematical Sans-Serif Italic Small Y -\U1D63B;Mathematical Sans-Serif Italic Small Z -\U1D63C;Mathematical Sans-Serif Bold Italic Capital A -\U1D63D;Mathematical Sans-Serif Bold Italic Capital B -\U1D63E;Mathematical Sans-Serif Bold Italic Capital C -\U1D63F;Mathematical Sans-Serif Bold Italic Capital D -\U1D640;Mathematical Sans-Serif Bold Italic Capital E -\U1D641;Mathematical Sans-Serif Bold Italic Capital F -\U1D642;Mathematical Sans-Serif Bold Italic Capital G -\U1D643;Mathematical Sans-Serif Bold Italic Capital H -\U1D644;Mathematical Sans-Serif Bold Italic Capital I -\U1D645;Mathematical Sans-Serif Bold Italic Capital J -\U1D646;Mathematical Sans-Serif Bold Italic Capital K -\U1D647;Mathematical Sans-Serif Bold Italic Capital L -\U1D648;Mathematical Sans-Serif Bold Italic Capital M -\U1D649;Mathematical Sans-Serif Bold Italic Capital N -\U1D64A;Mathematical Sans-Serif Bold Italic Capital O -\U1D64B;Mathematical Sans-Serif Bold Italic Capital P -\U1D64C;Mathematical Sans-Serif Bold Italic Capital Q -\U1D64D;Mathematical Sans-Serif Bold Italic Capital R -\U1D64E;Mathematical Sans-Serif Bold Italic Capital S -\U1D64F;Mathematical Sans-Serif Bold Italic Capital T -\U1D650;Mathematical Sans-Serif Bold Italic Capital U -\U1D651;Mathematical Sans-Serif Bold Italic Capital V -\U1D652;Mathematical Sans-Serif Bold Italic Capital W -\U1D653;Mathematical Sans-Serif Bold Italic Capital X -\U1D654;Mathematical Sans-Serif Bold Italic Capital Y -\U1D655;Mathematical Sans-Serif Bold Italic Capital Z -\U1D656;Mathematical Sans-Serif Bold Italic Small A -\U1D657;Mathematical Sans-Serif Bold Italic Small B -\U1D658;Mathematical Sans-Serif Bold Italic Small C -\U1D659;Mathematical Sans-Serif Bold Italic Small D -\U1D65A;Mathematical Sans-Serif Bold Italic Small E -\U1D65B;Mathematical Sans-Serif Bold Italic Small F -\U1D65C;Mathematical Sans-Serif Bold Italic Small G -\U1D65D;Mathematical Sans-Serif Bold Italic Small H -\U1D65E;Mathematical Sans-Serif Bold Italic Small I -\U1D65F;Mathematical Sans-Serif Bold Italic Small J -\U1D660;Mathematical Sans-Serif Bold Italic Small K -\U1D661;Mathematical Sans-Serif Bold Italic Small L -\U1D662;Mathematical Sans-Serif Bold Italic Small M -\U1D663;Mathematical Sans-Serif Bold Italic Small N -\U1D664;Mathematical Sans-Serif Bold Italic Small O -\U1D665;Mathematical Sans-Serif Bold Italic Small P -\U1D666;Mathematical Sans-Serif Bold Italic Small Q -\U1D667;Mathematical Sans-Serif Bold Italic Small R -\U1D668;Mathematical Sans-Serif Bold Italic Small S -\U1D669;Mathematical Sans-Serif Bold Italic Small T -\U1D66A;Mathematical Sans-Serif Bold Italic Small U -\U1D66B;Mathematical Sans-Serif Bold Italic Small V -\U1D66C;Mathematical Sans-Serif Bold Italic Small W -\U1D66D;Mathematical Sans-Serif Bold Italic Small X -\U1D66E;Mathematical Sans-Serif Bold Italic Small Y -\U1D66F;Mathematical Sans-Serif Bold Italic Small Z -\U1D670;Mathematical Monospace Capital A -\U1D671;Mathematical Monospace Capital B -\U1D672;Mathematical Monospace Capital C -\U1D673;Mathematical Monospace Capital D -\U1D674;Mathematical Monospace Capital E -\U1D675;Mathematical Monospace Capital F -\U1D676;Mathematical Monospace Capital G -\U1D677;Mathematical Monospace Capital H -\U1D678;Mathematical Monospace Capital I -\U1D679;Mathematical Monospace Capital J -\U1D67A;Mathematical Monospace Capital K -\U1D67B;Mathematical Monospace Capital L -\U1D67C;Mathematical Monospace Capital M -\U1D67D;Mathematical Monospace Capital N -\U1D67E;Mathematical Monospace Capital O -\U1D67F;Mathematical Monospace Capital P -\U1D680;Mathematical Monospace Capital Q -\U1D681;Mathematical Monospace Capital R -\U1D682;Mathematical Monospace Capital S -\U1D683;Mathematical Monospace Capital T -\U1D684;Mathematical Monospace Capital U -\U1D685;Mathematical Monospace Capital V -\U1D686;Mathematical Monospace Capital W -\U1D687;Mathematical Monospace Capital X -\U1D688;Mathematical Monospace Capital Y -\U1D689;Mathematical Monospace Capital Z -\U1D68A;Mathematical Monospace Small A -\U1D68B;Mathematical Monospace Small B -\U1D68C;Mathematical Monospace Small C -\U1D68D;Mathematical Monospace Small D -\U1D68E;Mathematical Monospace Small E -\U1D68F;Mathematical Monospace Small F -\U1D690;Mathematical Monospace Small G -\U1D691;Mathematical Monospace Small H -\U1D692;Mathematical Monospace Small I -\U1D693;Mathematical Monospace Small J -\U1D694;Mathematical Monospace Small K -\U1D695;Mathematical Monospace Small L -\U1D696;Mathematical Monospace Small M -\U1D697;Mathematical Monospace Small N -\U1D698;Mathematical Monospace Small O -\U1D699;Mathematical Monospace Small P -\U1D69A;Mathematical Monospace Small Q -\U1D69B;Mathematical Monospace Small R -\U1D69C;Mathematical Monospace Small S -\U1D69D;Mathematical Monospace Small T -\U1D69E;Mathematical Monospace Small U -\U1D69F;Mathematical Monospace Small V -\U1D6A0;Mathematical Monospace Small W -\U1D6A1;Mathematical Monospace Small X -\U1D6A2;Mathematical Monospace Small Y -\U1D6A3;Mathematical Monospace Small Z -\U1D6A4;Mathematical Italic Small Dotless I -\U1D6A5;Mathematical Italic Small Dotless J -\U1D6A8;Mathematical Bold Capital Alpha -\U1D6A9;Mathematical Bold Capital Beta -\U1D6AA;Mathematical Bold Capital Gamma -\U1D6AB;Mathematical Bold Capital Delta -\U1D6AC;Mathematical Bold Capital Epsilon -\U1D6AD;Mathematical Bold Capital Zeta -\U1D6AE;Mathematical Bold Capital Eta -\U1D6AF;Mathematical Bold Capital Theta -\U1D6B0;Mathematical Bold Capital Iota -\U1D6B1;Mathematical Bold Capital Kappa -\U1D6B2;Mathematical Bold Capital Lamda -\U1D6B3;Mathematical Bold Capital Mu -\U1D6B4;Mathematical Bold Capital Nu -\U1D6B5;Mathematical Bold Capital Xi -\U1D6B6;Mathematical Bold Capital Omicron -\U1D6B7;Mathematical Bold Capital Pi -\U1D6B8;Mathematical Bold Capital Rho -\U1D6B9;Mathematical Bold Capital Theta Symbol -\U1D6BA;Mathematical Bold Capital Sigma -\U1D6BB;Mathematical Bold Capital Tau -\U1D6BC;Mathematical Bold Capital Upsilon -\U1D6BD;Mathematical Bold Capital Phi -\U1D6BE;Mathematical Bold Capital Chi -\U1D6BF;Mathematical Bold Capital Psi -\U1D6C0;Mathematical Bold Capital Omega -\U1D6C1;Mathematical Bold Nabla -\U1D6C2;Mathematical Bold Small Alpha -\U1D6C3;Mathematical Bold Small Beta -\U1D6C4;Mathematical Bold Small Gamma -\U1D6C5;Mathematical Bold Small Delta -\U1D6C6;Mathematical Bold Small Epsilon -\U1D6C7;Mathematical Bold Small Zeta -\U1D6C8;Mathematical Bold Small Eta -\U1D6C9;Mathematical Bold Small Theta -\U1D6CA;Mathematical Bold Small Iota -\U1D6CB;Mathematical Bold Small Kappa -\U1D6CC;Mathematical Bold Small Lamda -\U1D6CD;Mathematical Bold Small Mu -\U1D6CE;Mathematical Bold Small Nu -\U1D6CF;Mathematical Bold Small Xi -\U1D6D0;Mathematical Bold Small Omicron -\U1D6D1;Mathematical Bold Small Pi -\U1D6D2;Mathematical Bold Small Rho -\U1D6D3;Mathematical Bold Small Final Sigma -\U1D6D4;Mathematical Bold Small Sigma -\U1D6D5;Mathematical Bold Small Tau -\U1D6D6;Mathematical Bold Small Upsilon -\U1D6D7;Mathematical Bold Small Phi -\U1D6D8;Mathematical Bold Small Chi -\U1D6D9;Mathematical Bold Small Psi -\U1D6DA;Mathematical Bold Small Omega -\U1D6DB;Mathematical Bold Partial Differential -\U1D6DC;Mathematical Bold Epsilon Symbol -\U1D6DD;Mathematical Bold Theta Symbol -\U1D6DE;Mathematical Bold Kappa Symbol -\U1D6DF;Mathematical Bold Phi Symbol -\U1D6E0;Mathematical Bold Rho Symbol -\U1D6E1;Mathematical Bold Pi Symbol -\U1D6E2;Mathematical Italic Capital Alpha -\U1D6E3;Mathematical Italic Capital Beta -\U1D6E4;Mathematical Italic Capital Gamma -\U1D6E5;Mathematical Italic Capital Delta -\U1D6E6;Mathematical Italic Capital Epsilon -\U1D6E7;Mathematical Italic Capital Zeta -\U1D6E8;Mathematical Italic Capital Eta -\U1D6E9;Mathematical Italic Capital Theta -\U1D6EA;Mathematical Italic Capital Iota -\U1D6EB;Mathematical Italic Capital Kappa -\U1D6EC;Mathematical Italic Capital Lamda -\U1D6ED;Mathematical Italic Capital Mu -\U1D6EE;Mathematical Italic Capital Nu -\U1D6EF;Mathematical Italic Capital Xi -\U1D6F0;Mathematical Italic Capital Omicron -\U1D6F1;Mathematical Italic Capital Pi -\U1D6F2;Mathematical Italic Capital Rho -\U1D6F3;Mathematical Italic Capital Theta Symbol -\U1D6F4;Mathematical Italic Capital Sigma -\U1D6F5;Mathematical Italic Capital Tau -\U1D6F6;Mathematical Italic Capital Upsilon -\U1D6F7;Mathematical Italic Capital Phi -\U1D6F8;Mathematical Italic Capital Chi -\U1D6F9;Mathematical Italic Capital Psi -\U1D6FA;Mathematical Italic Capital Omega -\U1D6FB;Mathematical Italic Nabla -\U1D6FC;Mathematical Italic Small Alpha -\U1D6FD;Mathematical Italic Small Beta -\U1D6FE;Mathematical Italic Small Gamma -\U1D6FF;Mathematical Italic Small Delta -\U1D700;Mathematical Italic Small Epsilon -\U1D701;Mathematical Italic Small Zeta -\U1D702;Mathematical Italic Small Eta -\U1D703;Mathematical Italic Small Theta -\U1D704;Mathematical Italic Small Iota -\U1D705;Mathematical Italic Small Kappa -\U1D706;Mathematical Italic Small Lamda -\U1D707;Mathematical Italic Small Mu -\U1D708;Mathematical Italic Small Nu -\U1D709;Mathematical Italic Small Xi -\U1D70A;Mathematical Italic Small Omicron -\U1D70B;Mathematical Italic Small Pi -\U1D70C;Mathematical Italic Small Rho -\U1D70D;Mathematical Italic Small Final Sigma -\U1D70E;Mathematical Italic Small Sigma -\U1D70F;Mathematical Italic Small Tau -\U1D710;Mathematical Italic Small Upsilon -\U1D711;Mathematical Italic Small Phi -\U1D712;Mathematical Italic Small Chi -\U1D713;Mathematical Italic Small Psi -\U1D714;Mathematical Italic Small Omega -\U1D715;Mathematical Italic Partial Differential -\U1D716;Mathematical Italic Epsilon Symbol -\U1D717;Mathematical Italic Theta Symbol -\U1D718;Mathematical Italic Kappa Symbol -\U1D719;Mathematical Italic Phi Symbol -\U1D71A;Mathematical Italic Rho Symbol -\U1D71B;Mathematical Italic Pi Symbol -\U1D71C;Mathematical Bold Italic Capital Alpha -\U1D71D;Mathematical Bold Italic Capital Beta -\U1D71E;Mathematical Bold Italic Capital Gamma -\U1D71F;Mathematical Bold Italic Capital Delta -\U1D720;Mathematical Bold Italic Capital Epsilon -\U1D721;Mathematical Bold Italic Capital Zeta -\U1D722;Mathematical Bold Italic Capital Eta -\U1D723;Mathematical Bold Italic Capital Theta -\U1D724;Mathematical Bold Italic Capital Iota -\U1D725;Mathematical Bold Italic Capital Kappa -\U1D726;Mathematical Bold Italic Capital Lamda -\U1D727;Mathematical Bold Italic Capital Mu -\U1D728;Mathematical Bold Italic Capital Nu -\U1D729;Mathematical Bold Italic Capital Xi -\U1D72A;Mathematical Bold Italic Capital Omicron -\U1D72B;Mathematical Bold Italic Capital Pi -\U1D72C;Mathematical Bold Italic Capital Rho -\U1D72D;Mathematical Bold Italic Capital Theta Symbol -\U1D72E;Mathematical Bold Italic Capital Sigma -\U1D72F;Mathematical Bold Italic Capital Tau -\U1D730;Mathematical Bold Italic Capital Upsilon -\U1D731;Mathematical Bold Italic Capital Phi -\U1D732;Mathematical Bold Italic Capital Chi -\U1D733;Mathematical Bold Italic Capital Psi -\U1D734;Mathematical Bold Italic Capital Omega -\U1D735;Mathematical Bold Italic Nabla -\U1D736;Mathematical Bold Italic Small Alpha -\U1D737;Mathematical Bold Italic Small Beta -\U1D738;Mathematical Bold Italic Small Gamma -\U1D739;Mathematical Bold Italic Small Delta -\U1D73A;Mathematical Bold Italic Small Epsilon -\U1D73B;Mathematical Bold Italic Small Zeta -\U1D73C;Mathematical Bold Italic Small Eta -\U1D73D;Mathematical Bold Italic Small Theta -\U1D73E;Mathematical Bold Italic Small Iota -\U1D73F;Mathematical Bold Italic Small Kappa -\U1D740;Mathematical Bold Italic Small Lamda -\U1D741;Mathematical Bold Italic Small Mu -\U1D742;Mathematical Bold Italic Small Nu -\U1D743;Mathematical Bold Italic Small Xi -\U1D744;Mathematical Bold Italic Small Omicron -\U1D745;Mathematical Bold Italic Small Pi -\U1D746;Mathematical Bold Italic Small Rho -\U1D747;Mathematical Bold Italic Small Final Sigma -\U1D748;Mathematical Bold Italic Small Sigma -\U1D749;Mathematical Bold Italic Small Tau -\U1D74A;Mathematical Bold Italic Small Upsilon -\U1D74B;Mathematical Bold Italic Small Phi -\U1D74C;Mathematical Bold Italic Small Chi -\U1D74D;Mathematical Bold Italic Small Psi -\U1D74E;Mathematical Bold Italic Small Omega -\U1D74F;Mathematical Bold Italic Partial Differential -\U1D750;Mathematical Bold Italic Epsilon Symbol -\U1D751;Mathematical Bold Italic Theta Symbol -\U1D752;Mathematical Bold Italic Kappa Symbol -\U1D753;Mathematical Bold Italic Phi Symbol -\U1D754;Mathematical Bold Italic Rho Symbol -\U1D755;Mathematical Bold Italic Pi Symbol -\U1D756;Mathematical Sans-Serif Bold Capital Alpha -\U1D757;Mathematical Sans-Serif Bold Capital Beta -\U1D758;Mathematical Sans-Serif Bold Capital Gamma -\U1D759;Mathematical Sans-Serif Bold Capital Delta -\U1D75A;Mathematical Sans-Serif Bold Capital Epsilon -\U1D75B;Mathematical Sans-Serif Bold Capital Zeta -\U1D75C;Mathematical Sans-Serif Bold Capital Eta -\U1D75D;Mathematical Sans-Serif Bold Capital Theta -\U1D75E;Mathematical Sans-Serif Bold Capital Iota -\U1D75F;Mathematical Sans-Serif Bold Capital Kappa -\U1D760;Mathematical Sans-Serif Bold Capital Lamda -\U1D761;Mathematical Sans-Serif Bold Capital Mu -\U1D762;Mathematical Sans-Serif Bold Capital Nu -\U1D763;Mathematical Sans-Serif Bold Capital Xi -\U1D764;Mathematical Sans-Serif Bold Capital Omicron -\U1D765;Mathematical Sans-Serif Bold Capital Pi -\U1D766;Mathematical Sans-Serif Bold Capital Rho -\U1D767;Mathematical Sans-Serif Bold Capital Theta Symbol -\U1D768;Mathematical Sans-Serif Bold Capital Sigma -\U1D769;Mathematical Sans-Serif Bold Capital Tau -\U1D76A;Mathematical Sans-Serif Bold Capital Upsilon -\U1D76B;Mathematical Sans-Serif Bold Capital Phi -\U1D76C;Mathematical Sans-Serif Bold Capital Chi -\U1D76D;Mathematical Sans-Serif Bold Capital Psi -\U1D76E;Mathematical Sans-Serif Bold Capital Omega -\U1D76F;Mathematical Sans-Serif Bold Nabla -\U1D770;Mathematical Sans-Serif Bold Small Alpha -\U1D771;Mathematical Sans-Serif Bold Small Beta -\U1D772;Mathematical Sans-Serif Bold Small Gamma -\U1D773;Mathematical Sans-Serif Bold Small Delta -\U1D774;Mathematical Sans-Serif Bold Small Epsilon -\U1D775;Mathematical Sans-Serif Bold Small Zeta -\U1D776;Mathematical Sans-Serif Bold Small Eta -\U1D777;Mathematical Sans-Serif Bold Small Theta -\U1D778;Mathematical Sans-Serif Bold Small Iota -\U1D779;Mathematical Sans-Serif Bold Small Kappa -\U1D77A;Mathematical Sans-Serif Bold Small Lamda -\U1D77B;Mathematical Sans-Serif Bold Small Mu -\U1D77C;Mathematical Sans-Serif Bold Small Nu -\U1D77D;Mathematical Sans-Serif Bold Small Xi -\U1D77E;Mathematical Sans-Serif Bold Small Omicron -\U1D77F;Mathematical Sans-Serif Bold Small Pi -\U1D780;Mathematical Sans-Serif Bold Small Rho -\U1D781;Mathematical Sans-Serif Bold Small Final Sigma -\U1D782;Mathematical Sans-Serif Bold Small Sigma -\U1D783;Mathematical Sans-Serif Bold Small Tau -\U1D784;Mathematical Sans-Serif Bold Small Upsilon -\U1D785;Mathematical Sans-Serif Bold Small Phi -\U1D786;Mathematical Sans-Serif Bold Small Chi -\U1D787;Mathematical Sans-Serif Bold Small Psi -\U1D788;Mathematical Sans-Serif Bold Small Omega -\U1D789;Mathematical Sans-Serif Bold Partial Differential -\U1D78A;Mathematical Sans-Serif Bold Epsilon Symbol -\U1D78B;Mathematical Sans-Serif Bold Theta Symbol -\U1D78C;Mathematical Sans-Serif Bold Kappa Symbol -\U1D78D;Mathematical Sans-Serif Bold Phi Symbol -\U1D78E;Mathematical Sans-Serif Bold Rho Symbol -\U1D78F;Mathematical Sans-Serif Bold Pi Symbol -\U1D790;Mathematical Sans-Serif Bold Italic Capital Alpha -\U1D791;Mathematical Sans-Serif Bold Italic Capital Beta -\U1D792;Mathematical Sans-Serif Bold Italic Capital Gamma -\U1D793;Mathematical Sans-Serif Bold Italic Capital Delta -\U1D794;Mathematical Sans-Serif Bold Italic Capital Epsilon -\U1D795;Mathematical Sans-Serif Bold Italic Capital Zeta -\U1D796;Mathematical Sans-Serif Bold Italic Capital Eta -\U1D797;Mathematical Sans-Serif Bold Italic Capital Theta -\U1D798;Mathematical Sans-Serif Bold Italic Capital Iota -\U1D799;Mathematical Sans-Serif Bold Italic Capital Kappa -\U1D79A;Mathematical Sans-Serif Bold Italic Capital Lamda -\U1D79B;Mathematical Sans-Serif Bold Italic Capital Mu -\U1D79C;Mathematical Sans-Serif Bold Italic Capital Nu -\U1D79D;Mathematical Sans-Serif Bold Italic Capital Xi -\U1D79E;Mathematical Sans-Serif Bold Italic Capital Omicron -\U1D79F;Mathematical Sans-Serif Bold Italic Capital Pi -\U1D7A0;Mathematical Sans-Serif Bold Italic Capital Rho -\U1D7A1;Mathematical Sans-Serif Bold Italic Capital Theta Symbol -\U1D7A2;Mathematical Sans-Serif Bold Italic Capital Sigma -\U1D7A3;Mathematical Sans-Serif Bold Italic Capital Tau -\U1D7A4;Mathematical Sans-Serif Bold Italic Capital Upsilon -\U1D7A5;Mathematical Sans-Serif Bold Italic Capital Phi -\U1D7A6;Mathematical Sans-Serif Bold Italic Capital Chi -\U1D7A7;Mathematical Sans-Serif Bold Italic Capital Psi -\U1D7A8;Mathematical Sans-Serif Bold Italic Capital Omega -\U1D7A9;Mathematical Sans-Serif Bold Italic Nabla -\U1D7AA;Mathematical Sans-Serif Bold Italic Small Alpha -\U1D7AB;Mathematical Sans-Serif Bold Italic Small Beta -\U1D7AC;Mathematical Sans-Serif Bold Italic Small Gamma -\U1D7AD;Mathematical Sans-Serif Bold Italic Small Delta -\U1D7AE;Mathematical Sans-Serif Bold Italic Small Epsilon -\U1D7AF;Mathematical Sans-Serif Bold Italic Small Zeta -\U1D7B0;Mathematical Sans-Serif Bold Italic Small Eta -\U1D7B1;Mathematical Sans-Serif Bold Italic Small Theta -\U1D7B2;Mathematical Sans-Serif Bold Italic Small Iota -\U1D7B3;Mathematical Sans-Serif Bold Italic Small Kappa -\U1D7B4;Mathematical Sans-Serif Bold Italic Small Lamda -\U1D7B5;Mathematical Sans-Serif Bold Italic Small Mu -\U1D7B6;Mathematical Sans-Serif Bold Italic Small Nu -\U1D7B7;Mathematical Sans-Serif Bold Italic Small Xi -\U1D7B8;Mathematical Sans-Serif Bold Italic Small Omicron -\U1D7B9;Mathematical Sans-Serif Bold Italic Small Pi -\U1D7BA;Mathematical Sans-Serif Bold Italic Small Rho -\U1D7BB;Mathematical Sans-Serif Bold Italic Small Final Sigma -\U1D7BC;Mathematical Sans-Serif Bold Italic Small Sigma -\U1D7BD;Mathematical Sans-Serif Bold Italic Small Tau -\U1D7BE;Mathematical Sans-Serif Bold Italic Small Upsilon -\U1D7BF;Mathematical Sans-Serif Bold Italic Small Phi -\U1D7C0;Mathematical Sans-Serif Bold Italic Small Chi -\U1D7C1;Mathematical Sans-Serif Bold Italic Small Psi -\U1D7C2;Mathematical Sans-Serif Bold Italic Small Omega -\U1D7C3;Mathematical Sans-Serif Bold Italic Partial Differential -\U1D7C4;Mathematical Sans-Serif Bold Italic Epsilon Symbol -\U1D7C5;Mathematical Sans-Serif Bold Italic Theta Symbol -\U1D7C6;Mathematical Sans-Serif Bold Italic Kappa Symbol -\U1D7C7;Mathematical Sans-Serif Bold Italic Phi Symbol -\U1D7C8;Mathematical Sans-Serif Bold Italic Rho Symbol -\U1D7C9;Mathematical Sans-Serif Bold Italic Pi Symbol -\U1D7CA;Mathematical Bold Capital Digamma -\U1D7CB;Mathematical Bold Small Digamma -\U1D7CE;Mathematical Bold Digit Zero -\U1D7CF;Mathematical Bold Digit One -\U1D7D0;Mathematical Bold Digit Two -\U1D7D1;Mathematical Bold Digit Three -\U1D7D2;Mathematical Bold Digit Four -\U1D7D3;Mathematical Bold Digit Five -\U1D7D4;Mathematical Bold Digit Six -\U1D7D5;Mathematical Bold Digit Seven -\U1D7D6;Mathematical Bold Digit Eight -\U1D7D7;Mathematical Bold Digit Nine -\U1D7D8;Mathematical Double-Struck Digit Zero -\U1D7D9;Mathematical Double-Struck Digit One -\U1D7DA;Mathematical Double-Struck Digit Two -\U1D7DB;Mathematical Double-Struck Digit Three -\U1D7DC;Mathematical Double-Struck Digit Four -\U1D7DD;Mathematical Double-Struck Digit Five -\U1D7DE;Mathematical Double-Struck Digit Six -\U1D7DF;Mathematical Double-Struck Digit Seven -\U1D7E0;Mathematical Double-Struck Digit Eight -\U1D7E1;Mathematical Double-Struck Digit Nine -\U1D7E2;Mathematical Sans-Serif Digit Zero -\U1D7E3;Mathematical Sans-Serif Digit One -\U1D7E4;Mathematical Sans-Serif Digit Two -\U1D7E5;Mathematical Sans-Serif Digit Three -\U1D7E6;Mathematical Sans-Serif Digit Four -\U1D7E7;Mathematical Sans-Serif Digit Five -\U1D7E8;Mathematical Sans-Serif Digit Six -\U1D7E9;Mathematical Sans-Serif Digit Seven -\U1D7EA;Mathematical Sans-Serif Digit Eight -\U1D7EB;Mathematical Sans-Serif Digit Nine -\U1D7EC;Mathematical Sans-Serif Bold Digit Zero -\U1D7ED;Mathematical Sans-Serif Bold Digit One -\U1D7EE;Mathematical Sans-Serif Bold Digit Two -\U1D7EF;Mathematical Sans-Serif Bold Digit Three -\U1D7F0;Mathematical Sans-Serif Bold Digit Four -\U1D7F1;Mathematical Sans-Serif Bold Digit Five -\U1D7F2;Mathematical Sans-Serif Bold Digit Six -\U1D7F3;Mathematical Sans-Serif Bold Digit Seven -\U1D7F4;Mathematical Sans-Serif Bold Digit Eight -\U1D7F5;Mathematical Sans-Serif Bold Digit Nine -\U1D7F6;Mathematical Monospace Digit Zero -\U1D7F7;Mathematical Monospace Digit One -\U1D7F8;Mathematical Monospace Digit Two -\U1D7F9;Mathematical Monospace Digit Three -\U1D7FA;Mathematical Monospace Digit Four -\U1D7FB;Mathematical Monospace Digit Five -\U1D7FC;Mathematical Monospace Digit Six -\U1D7FD;Mathematical Monospace Digit Seven -\U1D7FE;Mathematical Monospace Digit Eight -\U1D7FF;Mathematical Monospace Digit Nine -\U1D800;Signwriting Hand-Fist Index -\U1D801;Signwriting Hand-Circle Index -\U1D802;Signwriting Hand-Cup Index -\U1D803;Signwriting Hand-Oval Index -\U1D804;Signwriting Hand-Hinge Index -\U1D805;Signwriting Hand-Angle Index -\U1D806;Signwriting Hand-Fist Index Bent -\U1D807;Signwriting Hand-Circle Index Bent -\U1D808;Signwriting Hand-Fist Thumb Under Index Bent -\U1D809;Signwriting Hand-Fist Index Raised Knuckle -\U1D80A;Signwriting Hand-Fist Index Cupped -\U1D80B;Signwriting Hand-Fist Index Hinged -\U1D80C;Signwriting Hand-Fist Index Hinged Low -\U1D80D;Signwriting Hand-Circle Index Hinge -\U1D80E;Signwriting Hand-Fist Index Middle -\U1D80F;Signwriting Hand-Circle Index Middle -\U1D810;Signwriting Hand-Fist Index Middle Bent -\U1D811;Signwriting Hand-Fist Index Middle Raised Knuckles -\U1D812;Signwriting Hand-Fist Index Middle Hinged -\U1D813;Signwriting Hand-Fist Index Up Middle Hinged -\U1D814;Signwriting Hand-Fist Index Hinged Middle Up -\U1D815;Signwriting Hand-Fist Index Middle Conjoined -\U1D816;Signwriting Hand-Fist Index Middle Conjoined Index Bent -\U1D817;Signwriting Hand-Fist Index Middle Conjoined Middle Bent -\U1D818;Signwriting Hand-Fist Index Middle Conjoined Cupped -\U1D819;Signwriting Hand-Fist Index Middle Conjoined Hinged -\U1D81A;Signwriting Hand-Fist Index Middle Crossed -\U1D81B;Signwriting Hand-Circle Index Middle Crossed -\U1D81C;Signwriting Hand-Fist Middle Bent Over Index -\U1D81D;Signwriting Hand-Fist Index Bent Over Middle -\U1D81E;Signwriting Hand-Fist Index Middle Thumb -\U1D81F;Signwriting Hand-Circle Index Middle Thumb -\U1D820;Signwriting Hand-Fist Index Middle Straight Thumb Bent -\U1D821;Signwriting Hand-Fist Index Middle Bent Thumb Straight -\U1D822;Signwriting Hand-Fist Index Middle Thumb Bent -\U1D823;Signwriting Hand-Fist Index Middle Hinged Spread Thumb Side -\U1D824;Signwriting Hand-Fist Index Up Middle Hinged Thumb Side -\U1D825;Signwriting Hand-Fist Index Up Middle Hinged Thumb Conjoined -\U1D826;Signwriting Hand-Fist Index Hinged Middle Up Thumb Side -\U1D827;Signwriting Hand-Fist Index Middle Up Spread Thumb Forward -\U1D828;Signwriting Hand-Fist Index Middle Thumb Cupped -\U1D829;Signwriting Hand-Fist Index Middle Thumb Circled -\U1D82A;Signwriting Hand-Fist Index Middle Thumb Hooked -\U1D82B;Signwriting Hand-Fist Index Middle Thumb Hinged -\U1D82C;Signwriting Hand-Fist Thumb Between Index Middle Straight -\U1D82D;Signwriting Hand-Fist Index Middle Conjoined Thumb Side -\U1D82E;Signwriting Hand-Fist Index Middle Conjoined Thumb Side Conjoined -\U1D82F;Signwriting Hand-Fist Index Middle Conjoined Thumb Side Bent -\U1D830;Signwriting Hand-Fist Middle Thumb Hooked Index Up -\U1D831;Signwriting Hand-Fist Index Thumb Hooked Middle Up -\U1D832;Signwriting Hand-Fist Index Middle Conjoined Hinged Thumb Side -\U1D833;Signwriting Hand-Fist Index Middle Crossed Thumb Side -\U1D834;Signwriting Hand-Fist Index Middle Conjoined Thumb Forward -\U1D835;Signwriting Hand-Fist Index Middle Conjoined Cupped Thumb Forward -\U1D836;Signwriting Hand-Fist Middle Thumb Cupped Index Up -\U1D837;Signwriting Hand-Fist Index Thumb Cupped Middle Up -\U1D838;Signwriting Hand-Fist Middle Thumb Circled Index Up -\U1D839;Signwriting Hand-Fist Middle Thumb Circled Index Hinged -\U1D83A;Signwriting Hand-Fist Index Thumb Angled Out Middle Up -\U1D83B;Signwriting Hand-Fist Index Thumb Angled In Middle Up -\U1D83C;Signwriting Hand-Fist Index Thumb Circled Middle Up -\U1D83D;Signwriting Hand-Fist Index Middle Thumb Conjoined Hinged -\U1D83E;Signwriting Hand-Fist Index Middle Thumb Angled Out -\U1D83F;Signwriting Hand-Fist Index Middle Thumb Angled -\U1D840;Signwriting Hand-Fist Middle Thumb Angled Out Index Up -\U1D841;Signwriting Hand-Fist Middle Thumb Angled Out Index Crossed -\U1D842;Signwriting Hand-Fist Middle Thumb Angled Index Up -\U1D843;Signwriting Hand-Fist Index Thumb Hooked Middle Hinged -\U1D844;Signwriting Hand-Flat Four Fingers -\U1D845;Signwriting Hand-Flat Four Fingers Bent -\U1D846;Signwriting Hand-Flat Four Fingers Hinged -\U1D847;Signwriting Hand-Flat Four Fingers Conjoined -\U1D848;Signwriting Hand-Flat Four Fingers Conjoined Split -\U1D849;Signwriting Hand-Claw Four Fingers Conjoined -\U1D84A;Signwriting Hand-Fist Four Fingers Conjoined Bent -\U1D84B;Signwriting Hand-Hinge Four Fingers Conjoined -\U1D84C;Signwriting Hand-Flat Five Fingers Spread -\U1D84D;Signwriting Hand-Flat Heel Five Fingers Spread -\U1D84E;Signwriting Hand-Flat Five Fingers Spread Four Bent -\U1D84F;Signwriting Hand-Flat Heel Five Fingers Spread Four Bent -\U1D850;Signwriting Hand-Flat Five Fingers Spread Bent -\U1D851;Signwriting Hand-Flat Heel Five Fingers Spread Bent -\U1D852;Signwriting Hand-Flat Five Fingers Spread Thumb Forward -\U1D853;Signwriting Hand-Cup Five Fingers Spread -\U1D854;Signwriting Hand-Cup Five Fingers Spread Open -\U1D855;Signwriting Hand-Hinge Five Fingers Spread Open -\U1D856;Signwriting Hand-Oval Five Fingers Spread -\U1D857;Signwriting Hand-Flat Five Fingers Spread Hinged -\U1D858;Signwriting Hand-Flat Five Fingers Spread Hinged Thumb Side -\U1D859;Signwriting Hand-Flat Five Fingers Spread Hinged No Thumb -\U1D85A;Signwriting Hand-Flat -\U1D85B;Signwriting Hand-Flat Between Palm Facings -\U1D85C;Signwriting Hand-Flat Heel -\U1D85D;Signwriting Hand-Flat Thumb Side -\U1D85E;Signwriting Hand-Flat Heel Thumb Side -\U1D85F;Signwriting Hand-Flat Thumb Bent -\U1D860;Signwriting Hand-Flat Thumb Forward -\U1D861;Signwriting Hand-Flat Split Index Thumb Side -\U1D862;Signwriting Hand-Flat Split Centre -\U1D863;Signwriting Hand-Flat Split Centre Thumb Side -\U1D864;Signwriting Hand-Flat Split Centre Thumb Side Bent -\U1D865;Signwriting Hand-Flat Split Little -\U1D866;Signwriting Hand-Claw -\U1D867;Signwriting Hand-Claw Thumb Side -\U1D868;Signwriting Hand-Claw No Thumb -\U1D869;Signwriting Hand-Claw Thumb Forward -\U1D86A;Signwriting Hand-Hook Curlicue -\U1D86B;Signwriting Hand-Hook -\U1D86C;Signwriting Hand-Cup Open -\U1D86D;Signwriting Hand-Cup -\U1D86E;Signwriting Hand-Cup Open Thumb Side -\U1D86F;Signwriting Hand-Cup Thumb Side -\U1D870;Signwriting Hand-Cup Open No Thumb -\U1D871;Signwriting Hand-Cup No Thumb -\U1D872;Signwriting Hand-Cup Open Thumb Forward -\U1D873;Signwriting Hand-Cup Thumb Forward -\U1D874;Signwriting Hand-Curlicue Open -\U1D875;Signwriting Hand-Curlicue -\U1D876;Signwriting Hand-Circle -\U1D877;Signwriting Hand-Oval -\U1D878;Signwriting Hand-Oval Thumb Side -\U1D879;Signwriting Hand-Oval No Thumb -\U1D87A;Signwriting Hand-Oval Thumb Forward -\U1D87B;Signwriting Hand-Hinge Open -\U1D87C;Signwriting Hand-Hinge Open Thumb Forward -\U1D87D;Signwriting Hand-Hinge -\U1D87E;Signwriting Hand-Hinge Small -\U1D87F;Signwriting Hand-Hinge Open Thumb Side -\U1D880;Signwriting Hand-Hinge Thumb Side -\U1D881;Signwriting Hand-Hinge Open No Thumb -\U1D882;Signwriting Hand-Hinge No Thumb -\U1D883;Signwriting Hand-Hinge Thumb Side Touching Index -\U1D884;Signwriting Hand-Hinge Thumb Between Middle Ring -\U1D885;Signwriting Hand-Angle -\U1D886;Signwriting Hand-Fist Index Middle Ring -\U1D887;Signwriting Hand-Circle Index Middle Ring -\U1D888;Signwriting Hand-Hinge Index Middle Ring -\U1D889;Signwriting Hand-Angle Index Middle Ring -\U1D88A;Signwriting Hand-Hinge Little -\U1D88B;Signwriting Hand-Fist Index Middle Ring Bent -\U1D88C;Signwriting Hand-Fist Index Middle Ring Conjoined -\U1D88D;Signwriting Hand-Hinge Index Middle Ring Conjoined -\U1D88E;Signwriting Hand-Fist Little Down -\U1D88F;Signwriting Hand-Fist Little Down Ripple Straight -\U1D890;Signwriting Hand-Fist Little Down Ripple Curved -\U1D891;Signwriting Hand-Fist Little Down Others Circled -\U1D892;Signwriting Hand-Fist Little Up -\U1D893;Signwriting Hand-Fist Thumb Under Little Up -\U1D894;Signwriting Hand-Circle Little Up -\U1D895;Signwriting Hand-Oval Little Up -\U1D896;Signwriting Hand-Angle Little Up -\U1D897;Signwriting Hand-Fist Little Raised Knuckle -\U1D898;Signwriting Hand-Fist Little Bent -\U1D899;Signwriting Hand-Fist Little Touches Thumb -\U1D89A;Signwriting Hand-Fist Little Thumb -\U1D89B;Signwriting Hand-Hinge Little Thumb -\U1D89C;Signwriting Hand-Fist Little Index Thumb -\U1D89D;Signwriting Hand-Hinge Little Index Thumb -\U1D89E;Signwriting Hand-Angle Little Index Thumb Index Thumb Out -\U1D89F;Signwriting Hand-Angle Little Index Thumb Index Thumb -\U1D8A0;Signwriting Hand-Fist Little Index -\U1D8A1;Signwriting Hand-Circle Little Index -\U1D8A2;Signwriting Hand-Hinge Little Index -\U1D8A3;Signwriting Hand-Angle Little Index -\U1D8A4;Signwriting Hand-Fist Index Middle Little -\U1D8A5;Signwriting Hand-Circle Index Middle Little -\U1D8A6;Signwriting Hand-Hinge Index Middle Little -\U1D8A7;Signwriting Hand-Hinge Ring -\U1D8A8;Signwriting Hand-Angle Index Middle Little -\U1D8A9;Signwriting Hand-Fist Index Middle Cross Little -\U1D8AA;Signwriting Hand-Circle Index Middle Cross Little -\U1D8AB;Signwriting Hand-Fist Ring Down -\U1D8AC;Signwriting Hand-Hinge Ring Down Index Thumb Hook Middle -\U1D8AD;Signwriting Hand-Angle Ring Down Middle Thumb Index Cross -\U1D8AE;Signwriting Hand-Fist Ring Up -\U1D8AF;Signwriting Hand-Fist Ring Raised Knuckle -\U1D8B0;Signwriting Hand-Fist Ring Little -\U1D8B1;Signwriting Hand-Circle Ring Little -\U1D8B2;Signwriting Hand-Oval Ring Little -\U1D8B3;Signwriting Hand-Angle Ring Little -\U1D8B4;Signwriting Hand-Fist Ring Middle -\U1D8B5;Signwriting Hand-Fist Ring Middle Conjoined -\U1D8B6;Signwriting Hand-Fist Ring Middle Raised Knuckles -\U1D8B7;Signwriting Hand-Fist Ring Index -\U1D8B8;Signwriting Hand-Fist Ring Thumb -\U1D8B9;Signwriting Hand-Hook Ring Thumb -\U1D8BA;Signwriting Hand-Fist Index Ring Little -\U1D8BB;Signwriting Hand-Circle Index Ring Little -\U1D8BC;Signwriting Hand-Curlicue Index Ring Little On -\U1D8BD;Signwriting Hand-Hook Index Ring Little Out -\U1D8BE;Signwriting Hand-Hook Index Ring Little In -\U1D8BF;Signwriting Hand-Hook Index Ring Little Under -\U1D8C0;Signwriting Hand-Cup Index Ring Little -\U1D8C1;Signwriting Hand-Hinge Index Ring Little -\U1D8C2;Signwriting Hand-Angle Index Ring Little Out -\U1D8C3;Signwriting Hand-Angle Index Ring Little -\U1D8C4;Signwriting Hand-Fist Middle Down -\U1D8C5;Signwriting Hand-Hinge Middle -\U1D8C6;Signwriting Hand-Fist Middle Up -\U1D8C7;Signwriting Hand-Circle Middle Up -\U1D8C8;Signwriting Hand-Fist Middle Raised Knuckle -\U1D8C9;Signwriting Hand-Fist Middle Up Thumb Side -\U1D8CA;Signwriting Hand-Hook Middle Thumb -\U1D8CB;Signwriting Hand-Fist Middle Thumb Little -\U1D8CC;Signwriting Hand-Fist Middle Little -\U1D8CD;Signwriting Hand-Fist Middle Ring Little -\U1D8CE;Signwriting Hand-Circle Middle Ring Little -\U1D8CF;Signwriting Hand-Curlicue Middle Ring Little On -\U1D8D0;Signwriting Hand-Cup Middle Ring Little -\U1D8D1;Signwriting Hand-Hinge Middle Ring Little -\U1D8D2;Signwriting Hand-Angle Middle Ring Little Out -\U1D8D3;Signwriting Hand-Angle Middle Ring Little In -\U1D8D4;Signwriting Hand-Angle Middle Ring Little -\U1D8D5;Signwriting Hand-Circle Middle Ring Little Bent -\U1D8D6;Signwriting Hand-Claw Middle Ring Little Conjoined -\U1D8D7;Signwriting Hand-Claw Middle Ring Little Conjoined Side -\U1D8D8;Signwriting Hand-Hook Middle Ring Little Conjoined Out -\U1D8D9;Signwriting Hand-Hook Middle Ring Little Conjoined In -\U1D8DA;Signwriting Hand-Hook Middle Ring Little Conjoined -\U1D8DB;Signwriting Hand-Hinge Index Hinged -\U1D8DC;Signwriting Hand-Fist Index Thumb Side -\U1D8DD;Signwriting Hand-Hinge Index Thumb Side -\U1D8DE;Signwriting Hand-Fist Index Thumb Side Thumb Diagonal -\U1D8DF;Signwriting Hand-Fist Index Thumb Side Thumb Conjoined -\U1D8E0;Signwriting Hand-Fist Index Thumb Side Thumb Bent -\U1D8E1;Signwriting Hand-Fist Index Thumb Side Index Bent -\U1D8E2;Signwriting Hand-Fist Index Thumb Side Both Bent -\U1D8E3;Signwriting Hand-Fist Index Thumb Side Index Hinge -\U1D8E4;Signwriting Hand-Fist Index Thumb Forward Index Straight -\U1D8E5;Signwriting Hand-Fist Index Thumb Forward Index Bent -\U1D8E6;Signwriting Hand-Fist Index Thumb Hook -\U1D8E7;Signwriting Hand-Fist Index Thumb Curlicue -\U1D8E8;Signwriting Hand-Fist Index Thumb Curve Thumb Inside -\U1D8E9;Signwriting Hand-Claw Index Thumb Curve Thumb Inside -\U1D8EA;Signwriting Hand-Fist Index Thumb Curve Thumb Under -\U1D8EB;Signwriting Hand-Fist Index Thumb Circle -\U1D8EC;Signwriting Hand-Cup Index Thumb -\U1D8ED;Signwriting Hand-Cup Index Thumb Open -\U1D8EE;Signwriting Hand-Hinge Index Thumb Open -\U1D8EF;Signwriting Hand-Hinge Index Thumb Large -\U1D8F0;Signwriting Hand-Hinge Index Thumb -\U1D8F1;Signwriting Hand-Hinge Index Thumb Small -\U1D8F2;Signwriting Hand-Angle Index Thumb Out -\U1D8F3;Signwriting Hand-Angle Index Thumb In -\U1D8F4;Signwriting Hand-Angle Index Thumb -\U1D8F5;Signwriting Hand-Fist Thumb -\U1D8F6;Signwriting Hand-Fist Thumb Heel -\U1D8F7;Signwriting Hand-Fist Thumb Side Diagonal -\U1D8F8;Signwriting Hand-Fist Thumb Side Conjoined -\U1D8F9;Signwriting Hand-Fist Thumb Side Bent -\U1D8FA;Signwriting Hand-Fist Thumb Forward -\U1D8FB;Signwriting Hand-Fist Thumb Between Index Middle -\U1D8FC;Signwriting Hand-Fist Thumb Between Middle Ring -\U1D8FD;Signwriting Hand-Fist Thumb Between Ring Little -\U1D8FE;Signwriting Hand-Fist Thumb Under Two Fingers -\U1D8FF;Signwriting Hand-Fist Thumb Over Two Fingers -\U1D900;Signwriting Hand-Fist Thumb Under Three Fingers -\U1D901;Signwriting Hand-Fist Thumb Under Four Fingers -\U1D902;Signwriting Hand-Fist Thumb Over Four Raised Knuckles -\U1D903;Signwriting Hand-Fist -\U1D904;Signwriting Hand-Fist Heel -\U1D905;Signwriting Touch Single -\U1D906;Signwriting Touch Multiple -\U1D907;Signwriting Touch Between -\U1D908;Signwriting Grasp Single -\U1D909;Signwriting Grasp Multiple -\U1D90A;Signwriting Grasp Between -\U1D90B;Signwriting Strike Single -\U1D90C;Signwriting Strike Multiple -\U1D90D;Signwriting Strike Between -\U1D90E;Signwriting Brush Single -\U1D90F;Signwriting Brush Multiple -\U1D910;Signwriting Brush Between -\U1D911;Signwriting Rub Single -\U1D912;Signwriting Rub Multiple -\U1D913;Signwriting Rub Between -\U1D914;Signwriting Surface Symbols -\U1D915;Signwriting Surface Between -\U1D916;Signwriting Squeeze Large Single -\U1D917;Signwriting Squeeze Small Single -\U1D918;Signwriting Squeeze Large Multiple -\U1D919;Signwriting Squeeze Small Multiple -\U1D91A;Signwriting Squeeze Sequential -\U1D91B;Signwriting Flick Large Single -\U1D91C;Signwriting Flick Small Single -\U1D91D;Signwriting Flick Large Multiple -\U1D91E;Signwriting Flick Small Multiple -\U1D91F;Signwriting Flick Sequential -\U1D920;Signwriting Squeeze Flick Alternating -\U1D921;Signwriting Movement-Hinge Up Down Large -\U1D922;Signwriting Movement-Hinge Up Down Small -\U1D923;Signwriting Movement-Hinge Up Sequential -\U1D924;Signwriting Movement-Hinge Down Sequential -\U1D925;Signwriting Movement-Hinge Up Down Alternating Large -\U1D926;Signwriting Movement-Hinge Up Down Alternating Small -\U1D927;Signwriting Movement-Hinge Side To Side Scissors -\U1D928;Signwriting Movement-Wallplane Finger Contact -\U1D929;Signwriting Movement-Floorplane Finger Contact -\U1D92A;Signwriting Movement-Wallplane Single Straight Small -\U1D92B;Signwriting Movement-Wallplane Single Straight Medium -\U1D92C;Signwriting Movement-Wallplane Single Straight Large -\U1D92D;Signwriting Movement-Wallplane Single Straight Largest -\U1D92E;Signwriting Movement-Wallplane Single Wrist Flex -\U1D92F;Signwriting Movement-Wallplane Double Straight -\U1D930;Signwriting Movement-Wallplane Double Wrist Flex -\U1D931;Signwriting Movement-Wallplane Double Alternating -\U1D932;Signwriting Movement-Wallplane Double Alternating Wrist Flex -\U1D933;Signwriting Movement-Wallplane Cross -\U1D934;Signwriting Movement-Wallplane Triple Straight Movement -\U1D935;Signwriting Movement-Wallplane Triple Wrist Flex -\U1D936;Signwriting Movement-Wallplane Triple Alternating -\U1D937;Signwriting Movement-Wallplane Triple Alternating Wrist Flex -\U1D938;Signwriting Movement-Wallplane Bend Small -\U1D939;Signwriting Movement-Wallplane Bend Medium -\U1D93A;Signwriting Movement-Wallplane Bend Large -\U1D93B;Signwriting Movement-Wallplane Corner Small -\U1D93C;Signwriting Movement-Wallplane Corner Medium -\U1D93D;Signwriting Movement-Wallplane Corner Large -\U1D93E;Signwriting Movement-Wallplane Corner Rotation -\U1D93F;Signwriting Movement-Wallplane Check Small -\U1D940;Signwriting Movement-Wallplane Check Medium -\U1D941;Signwriting Movement-Wallplane Check Large -\U1D942;Signwriting Movement-Wallplane Box Small -\U1D943;Signwriting Movement-Wallplane Box Medium -\U1D944;Signwriting Movement-Wallplane Box Large -\U1D945;Signwriting Movement-Wallplane Zigzag Small -\U1D946;Signwriting Movement-Wallplane Zigzag Medium -\U1D947;Signwriting Movement-Wallplane Zigzag Large -\U1D948;Signwriting Movement-Wallplane Peaks Small -\U1D949;Signwriting Movement-Wallplane Peaks Medium -\U1D94A;Signwriting Movement-Wallplane Peaks Large -\U1D94B;Signwriting Travel-Wallplane Rotation-Wallplane Single -\U1D94C;Signwriting Travel-Wallplane Rotation-Wallplane Double -\U1D94D;Signwriting Travel-Wallplane Rotation-Wallplane Alternating -\U1D94E;Signwriting Travel-Wallplane Rotation-Floorplane Single -\U1D94F;Signwriting Travel-Wallplane Rotation-Floorplane Double -\U1D950;Signwriting Travel-Wallplane Rotation-Floorplane Alternating -\U1D951;Signwriting Travel-Wallplane Shaking -\U1D952;Signwriting Travel-Wallplane Arm Spiral Single -\U1D953;Signwriting Travel-Wallplane Arm Spiral Double -\U1D954;Signwriting Travel-Wallplane Arm Spiral Triple -\U1D955;Signwriting Movement-Diagonal Away Small -\U1D956;Signwriting Movement-Diagonal Away Medium -\U1D957;Signwriting Movement-Diagonal Away Large -\U1D958;Signwriting Movement-Diagonal Away Largest -\U1D959;Signwriting Movement-Diagonal Towards Small -\U1D95A;Signwriting Movement-Diagonal Towards Medium -\U1D95B;Signwriting Movement-Diagonal Towards Large -\U1D95C;Signwriting Movement-Diagonal Towards Largest -\U1D95D;Signwriting Movement-Diagonal Between Away Small -\U1D95E;Signwriting Movement-Diagonal Between Away Medium -\U1D95F;Signwriting Movement-Diagonal Between Away Large -\U1D960;Signwriting Movement-Diagonal Between Away Largest -\U1D961;Signwriting Movement-Diagonal Between Towards Small -\U1D962;Signwriting Movement-Diagonal Between Towards Medium -\U1D963;Signwriting Movement-Diagonal Between Towards Large -\U1D964;Signwriting Movement-Diagonal Between Towards Largest -\U1D965;Signwriting Movement-Floorplane Single Straight Small -\U1D966;Signwriting Movement-Floorplane Single Straight Medium -\U1D967;Signwriting Movement-Floorplane Single Straight Large -\U1D968;Signwriting Movement-Floorplane Single Straight Largest -\U1D969;Signwriting Movement-Floorplane Single Wrist Flex -\U1D96A;Signwriting Movement-Floorplane Double Straight -\U1D96B;Signwriting Movement-Floorplane Double Wrist Flex -\U1D96C;Signwriting Movement-Floorplane Double Alternating -\U1D96D;Signwriting Movement-Floorplane Double Alternating Wrist Flex -\U1D96E;Signwriting Movement-Floorplane Cross -\U1D96F;Signwriting Movement-Floorplane Triple Straight Movement -\U1D970;Signwriting Movement-Floorplane Triple Wrist Flex -\U1D971;Signwriting Movement-Floorplane Triple Alternating Movement -\U1D972;Signwriting Movement-Floorplane Triple Alternating Wrist Flex -\U1D973;Signwriting Movement-Floorplane Bend -\U1D974;Signwriting Movement-Floorplane Corner Small -\U1D975;Signwriting Movement-Floorplane Corner Medium -\U1D976;Signwriting Movement-Floorplane Corner Large -\U1D977;Signwriting Movement-Floorplane Check -\U1D978;Signwriting Movement-Floorplane Box Small -\U1D979;Signwriting Movement-Floorplane Box Medium -\U1D97A;Signwriting Movement-Floorplane Box Large -\U1D97B;Signwriting Movement-Floorplane Zigzag Small -\U1D97C;Signwriting Movement-Floorplane Zigzag Medium -\U1D97D;Signwriting Movement-Floorplane Zigzag Large -\U1D97E;Signwriting Movement-Floorplane Peaks Small -\U1D97F;Signwriting Movement-Floorplane Peaks Medium -\U1D980;Signwriting Movement-Floorplane Peaks Large -\U1D981;Signwriting Travel-Floorplane Rotation-Floorplane Single -\U1D982;Signwriting Travel-Floorplane Rotation-Floorplane Double -\U1D983;Signwriting Travel-Floorplane Rotation-Floorplane Alternating -\U1D984;Signwriting Travel-Floorplane Rotation-Wallplane Single -\U1D985;Signwriting Travel-Floorplane Rotation-Wallplane Double -\U1D986;Signwriting Travel-Floorplane Rotation-Wallplane Alternating -\U1D987;Signwriting Travel-Floorplane Shaking -\U1D988;Signwriting Movement-Wallplane Curve Quarter Small -\U1D989;Signwriting Movement-Wallplane Curve Quarter Medium -\U1D98A;Signwriting Movement-Wallplane Curve Quarter Large -\U1D98B;Signwriting Movement-Wallplane Curve Quarter Largest -\U1D98C;Signwriting Movement-Wallplane Curve Half-Circle Small -\U1D98D;Signwriting Movement-Wallplane Curve Half-Circle Medium -\U1D98E;Signwriting Movement-Wallplane Curve Half-Circle Large -\U1D98F;Signwriting Movement-Wallplane Curve Half-Circle Largest -\U1D990;Signwriting Movement-Wallplane Curve Three-Quarter Circle Small -\U1D991;Signwriting Movement-Wallplane Curve Three-Quarter Circle Medium -\U1D992;Signwriting Movement-Wallplane Hump Small -\U1D993;Signwriting Movement-Wallplane Hump Medium -\U1D994;Signwriting Movement-Wallplane Hump Large -\U1D995;Signwriting Movement-Wallplane Loop Small -\U1D996;Signwriting Movement-Wallplane Loop Medium -\U1D997;Signwriting Movement-Wallplane Loop Large -\U1D998;Signwriting Movement-Wallplane Loop Small Double -\U1D999;Signwriting Movement-Wallplane Wave Curve Double Small -\U1D99A;Signwriting Movement-Wallplane Wave Curve Double Medium -\U1D99B;Signwriting Movement-Wallplane Wave Curve Double Large -\U1D99C;Signwriting Movement-Wallplane Wave Curve Triple Small -\U1D99D;Signwriting Movement-Wallplane Wave Curve Triple Medium -\U1D99E;Signwriting Movement-Wallplane Wave Curve Triple Large -\U1D99F;Signwriting Movement-Wallplane Curve Then Straight -\U1D9A0;Signwriting Movement-Wallplane Curved Cross Small -\U1D9A1;Signwriting Movement-Wallplane Curved Cross Medium -\U1D9A2;Signwriting Rotation-Wallplane Single -\U1D9A3;Signwriting Rotation-Wallplane Double -\U1D9A4;Signwriting Rotation-Wallplane Alternate -\U1D9A5;Signwriting Movement-Wallplane Shaking -\U1D9A6;Signwriting Movement-Wallplane Curve Hitting Front Wall -\U1D9A7;Signwriting Movement-Wallplane Hump Hitting Front Wall -\U1D9A8;Signwriting Movement-Wallplane Loop Hitting Front Wall -\U1D9A9;Signwriting Movement-Wallplane Wave Hitting Front Wall -\U1D9AA;Signwriting Rotation-Wallplane Single Hitting Front Wall -\U1D9AB;Signwriting Rotation-Wallplane Double Hitting Front Wall -\U1D9AC;Signwriting Rotation-Wallplane Alternating Hitting Front Wall -\U1D9AD;Signwriting Movement-Wallplane Curve Hitting Chest -\U1D9AE;Signwriting Movement-Wallplane Hump Hitting Chest -\U1D9AF;Signwriting Movement-Wallplane Loop Hitting Chest -\U1D9B0;Signwriting Movement-Wallplane Wave Hitting Chest -\U1D9B1;Signwriting Rotation-Wallplane Single Hitting Chest -\U1D9B2;Signwriting Rotation-Wallplane Double Hitting Chest -\U1D9B3;Signwriting Rotation-Wallplane Alternating Hitting Chest -\U1D9B4;Signwriting Movement-Wallplane Wave Diagonal Path Small -\U1D9B5;Signwriting Movement-Wallplane Wave Diagonal Path Medium -\U1D9B6;Signwriting Movement-Wallplane Wave Diagonal Path Large -\U1D9B7;Signwriting Movement-Floorplane Curve Hitting Ceiling Small -\U1D9B8;Signwriting Movement-Floorplane Curve Hitting Ceiling Large -\U1D9B9;Signwriting Movement-Floorplane Hump Hitting Ceiling Small Double -\U1D9BA;Signwriting Movement-Floorplane Hump Hitting Ceiling Large Double -\U1D9BB;Signwriting Movement-Floorplane Hump Hitting Ceiling Small Triple -\U1D9BC;Signwriting Movement-Floorplane Hump Hitting Ceiling Large Triple -\U1D9BD;Signwriting Movement-Floorplane Loop Hitting Ceiling Small Single -\U1D9BE;Signwriting Movement-Floorplane Loop Hitting Ceiling Large Single -\U1D9BF;Signwriting Movement-Floorplane Loop Hitting Ceiling Small Double -\U1D9C0;Signwriting Movement-Floorplane Loop Hitting Ceiling Large Double -\U1D9C1;Signwriting Movement-Floorplane Wave Hitting Ceiling Small -\U1D9C2;Signwriting Movement-Floorplane Wave Hitting Ceiling Large -\U1D9C3;Signwriting Rotation-Floorplane Single Hitting Ceiling -\U1D9C4;Signwriting Rotation-Floorplane Double Hitting Ceiling -\U1D9C5;Signwriting Rotation-Floorplane Alternating Hitting Ceiling -\U1D9C6;Signwriting Movement-Floorplane Curve Hitting Floor Small -\U1D9C7;Signwriting Movement-Floorplane Curve Hitting Floor Large -\U1D9C8;Signwriting Movement-Floorplane Hump Hitting Floor Small Double -\U1D9C9;Signwriting Movement-Floorplane Hump Hitting Floor Large Double -\U1D9CA;Signwriting Movement-Floorplane Hump Hitting Floor Triple Small Triple -\U1D9CB;Signwriting Movement-Floorplane Hump Hitting Floor Triple Large Triple -\U1D9CC;Signwriting Movement-Floorplane Loop Hitting Floor Small Single -\U1D9CD;Signwriting Movement-Floorplane Loop Hitting Floor Large Single -\U1D9CE;Signwriting Movement-Floorplane Loop Hitting Floor Small Double -\U1D9CF;Signwriting Movement-Floorplane Loop Hitting Floor Large Double -\U1D9D0;Signwriting Movement-Floorplane Wave Hitting Floor Small -\U1D9D1;Signwriting Movement-Floorplane Wave Hitting Floor Large -\U1D9D2;Signwriting Rotation-Floorplane Single Hitting Floor -\U1D9D3;Signwriting Rotation-Floorplane Double Hitting Floor -\U1D9D4;Signwriting Rotation-Floorplane Alternating Hitting Floor -\U1D9D5;Signwriting Movement-Floorplane Curve Small -\U1D9D6;Signwriting Movement-Floorplane Curve Medium -\U1D9D7;Signwriting Movement-Floorplane Curve Large -\U1D9D8;Signwriting Movement-Floorplane Curve Largest -\U1D9D9;Signwriting Movement-Floorplane Curve Combined -\U1D9DA;Signwriting Movement-Floorplane Hump Small -\U1D9DB;Signwriting Movement-Floorplane Loop Small -\U1D9DC;Signwriting Movement-Floorplane Wave Snake -\U1D9DD;Signwriting Movement-Floorplane Wave Small -\U1D9DE;Signwriting Movement-Floorplane Wave Large -\U1D9DF;Signwriting Rotation-Floorplane Single -\U1D9E0;Signwriting Rotation-Floorplane Double -\U1D9E1;Signwriting Rotation-Floorplane Alternating -\U1D9E2;Signwriting Movement-Floorplane Shaking Parallel -\U1D9E3;Signwriting Movement-Wallplane Arm Circle Small Single -\U1D9E4;Signwriting Movement-Wallplane Arm Circle Medium Single -\U1D9E5;Signwriting Movement-Wallplane Arm Circle Small Double -\U1D9E6;Signwriting Movement-Wallplane Arm Circle Medium Double -\U1D9E7;Signwriting Movement-Floorplane Arm Circle Hitting Wall Small Single -\U1D9E8;Signwriting Movement-Floorplane Arm Circle Hitting Wall Medium Single -\U1D9E9;Signwriting Movement-Floorplane Arm Circle Hitting Wall Large Single -\U1D9EA;Signwriting Movement-Floorplane Arm Circle Hitting Wall Small Double -\U1D9EB;Signwriting Movement-Floorplane Arm Circle Hitting Wall Medium Double -\U1D9EC;Signwriting Movement-Floorplane Arm Circle Hitting Wall Large Double -\U1D9ED;Signwriting Movement-Wallplane Wrist Circle Front Single -\U1D9EE;Signwriting Movement-Wallplane Wrist Circle Front Double -\U1D9EF;Signwriting Movement-Floorplane Wrist Circle Hitting Wall Single -\U1D9F0;Signwriting Movement-Floorplane Wrist Circle Hitting Wall Double -\U1D9F1;Signwriting Movement-Wallplane Finger Circles Single -\U1D9F2;Signwriting Movement-Wallplane Finger Circles Double -\U1D9F3;Signwriting Movement-Floorplane Finger Circles Hitting Wall Single -\U1D9F4;Signwriting Movement-Floorplane Finger Circles Hitting Wall Double -\U1D9F5;Signwriting Dynamic Arrowhead Small -\U1D9F6;Signwriting Dynamic Arrowhead Large -\U1D9F7;Signwriting Dynamic Fast -\U1D9F8;Signwriting Dynamic Slow -\U1D9F9;Signwriting Dynamic Tense -\U1D9FA;Signwriting Dynamic Relaxed -\U1D9FB;Signwriting Dynamic Simultaneous -\U1D9FC;Signwriting Dynamic Simultaneous Alternating -\U1D9FD;Signwriting Dynamic Every Other Time -\U1D9FE;Signwriting Dynamic Gradual -\U1D9FF;Signwriting Head -\U1DA00;Signwriting Head Rim -\U1DA01;Signwriting Head Movement-Wallplane Straight -\U1DA02;Signwriting Head Movement-Wallplane Tilt -\U1DA03;Signwriting Head Movement-Floorplane Straight -\U1DA04;Signwriting Head Movement-Wallplane Curve -\U1DA05;Signwriting Head Movement-Floorplane Curve -\U1DA06;Signwriting Head Movement Circle -\U1DA07;Signwriting Face Direction Position Nose Forward Tilting -\U1DA08;Signwriting Face Direction Position Nose Up Or Down -\U1DA09;Signwriting Face Direction Position Nose Up Or Down Tilting -\U1DA0A;Signwriting Eyebrows Straight Up -\U1DA0B;Signwriting Eyebrows Straight Neutral -\U1DA0C;Signwriting Eyebrows Straight Down -\U1DA0D;Signwriting Dreamy Eyebrows Neutral Down -\U1DA0E;Signwriting Dreamy Eyebrows Down Neutral -\U1DA0F;Signwriting Dreamy Eyebrows Up Neutral -\U1DA10;Signwriting Dreamy Eyebrows Neutral Up -\U1DA11;Signwriting Forehead Neutral -\U1DA12;Signwriting Forehead Contact -\U1DA13;Signwriting Forehead Wrinkled -\U1DA14;Signwriting Eyes Open -\U1DA15;Signwriting Eyes Squeezed -\U1DA16;Signwriting Eyes Closed -\U1DA17;Signwriting Eye Blink Single -\U1DA18;Signwriting Eye Blink Multiple -\U1DA19;Signwriting Eyes Half Open -\U1DA1A;Signwriting Eyes Wide Open -\U1DA1B;Signwriting Eyes Half Closed -\U1DA1C;Signwriting Eyes Widening Movement -\U1DA1D;Signwriting Eye Wink -\U1DA1E;Signwriting Eyelashes Up -\U1DA1F;Signwriting Eyelashes Down -\U1DA20;Signwriting Eyelashes Fluttering -\U1DA21;Signwriting Eyegaze-Wallplane Straight -\U1DA22;Signwriting Eyegaze-Wallplane Straight Double -\U1DA23;Signwriting Eyegaze-Wallplane Straight Alternating -\U1DA24;Signwriting Eyegaze-Floorplane Straight -\U1DA25;Signwriting Eyegaze-Floorplane Straight Double -\U1DA26;Signwriting Eyegaze-Floorplane Straight Alternating -\U1DA27;Signwriting Eyegaze-Wallplane Curved -\U1DA28;Signwriting Eyegaze-Floorplane Curved -\U1DA29;Signwriting Eyegaze-Wallplane Circling -\U1DA2A;Signwriting Cheeks Puffed -\U1DA2B;Signwriting Cheeks Neutral -\U1DA2C;Signwriting Cheeks Sucked -\U1DA2D;Signwriting Tense Cheeks High -\U1DA2E;Signwriting Tense Cheeks Middle -\U1DA2F;Signwriting Tense Cheeks Low -\U1DA30;Signwriting Ears -\U1DA31;Signwriting Nose Neutral -\U1DA32;Signwriting Nose Contact -\U1DA33;Signwriting Nose Wrinkles -\U1DA34;Signwriting Nose Wiggles -\U1DA35;Signwriting Air Blowing Out -\U1DA36;Signwriting Air Sucking In -\U1DA37;Signwriting Air Blow Small Rotations -\U1DA38;Signwriting Air Suck Small Rotations -\U1DA39;Signwriting Breath Inhale -\U1DA3A;Signwriting Breath Exhale -\U1DA3B;Signwriting Mouth Closed Neutral -\U1DA3C;Signwriting Mouth Closed Forward -\U1DA3D;Signwriting Mouth Closed Contact -\U1DA3E;Signwriting Mouth Smile -\U1DA3F;Signwriting Mouth Smile Wrinkled -\U1DA40;Signwriting Mouth Smile Open -\U1DA41;Signwriting Mouth Frown -\U1DA42;Signwriting Mouth Frown Wrinkled -\U1DA43;Signwriting Mouth Frown Open -\U1DA44;Signwriting Mouth Open Circle -\U1DA45;Signwriting Mouth Open Forward -\U1DA46;Signwriting Mouth Open Wrinkled -\U1DA47;Signwriting Mouth Open Oval -\U1DA48;Signwriting Mouth Open Oval Wrinkled -\U1DA49;Signwriting Mouth Open Oval Yawn -\U1DA4A;Signwriting Mouth Open Rectangle -\U1DA4B;Signwriting Mouth Open Rectangle Wrinkled -\U1DA4C;Signwriting Mouth Open Rectangle Yawn -\U1DA4D;Signwriting Mouth Kiss -\U1DA4E;Signwriting Mouth Kiss Forward -\U1DA4F;Signwriting Mouth Kiss Wrinkled -\U1DA50;Signwriting Mouth Tense -\U1DA51;Signwriting Mouth Tense Forward -\U1DA52;Signwriting Mouth Tense Sucked -\U1DA53;Signwriting Lips Pressed Together -\U1DA54;Signwriting Lip Lower Over Upper -\U1DA55;Signwriting Lip Upper Over Lower -\U1DA56;Signwriting Mouth Corners -\U1DA57;Signwriting Mouth Wrinkles Single -\U1DA58;Signwriting Mouth Wrinkles Double -\U1DA59;Signwriting Tongue Sticking Out Far -\U1DA5A;Signwriting Tongue Licking Lips -\U1DA5B;Signwriting Tongue Tip Between Lips -\U1DA5C;Signwriting Tongue Tip Touching Inside Mouth -\U1DA5D;Signwriting Tongue Inside Mouth Relaxed -\U1DA5E;Signwriting Tongue Moves Against Cheek -\U1DA5F;Signwriting Tongue Centre Sticking Out -\U1DA60;Signwriting Tongue Centre Inside Mouth -\U1DA61;Signwriting Teeth -\U1DA62;Signwriting Teeth Movement -\U1DA63;Signwriting Teeth On Tongue -\U1DA64;Signwriting Teeth On Tongue Movement -\U1DA65;Signwriting Teeth On Lips -\U1DA66;Signwriting Teeth On Lips Movement -\U1DA67;Signwriting Teeth Bite Lips -\U1DA68;Signwriting Movement-Wallplane Jaw -\U1DA69;Signwriting Movement-Floorplane Jaw -\U1DA6A;Signwriting Neck -\U1DA6B;Signwriting Hair -\U1DA6C;Signwriting Excitement -\U1DA6D;Signwriting Shoulder Hip Spine -\U1DA6E;Signwriting Shoulder Hip Positions -\U1DA6F;Signwriting Wallplane Shoulder Hip Move -\U1DA70;Signwriting Floorplane Shoulder Hip Move -\U1DA71;Signwriting Shoulder Tilting From Waist -\U1DA72;Signwriting Torso-Wallplane Straight Stretch -\U1DA73;Signwriting Torso-Wallplane Curved Bend -\U1DA74;Signwriting Torso-Floorplane Twisting -\U1DA75;Signwriting Upper Body Tilting From Hip Joints -\U1DA76;Signwriting Limb Combination -\U1DA77;Signwriting Limb Length-1 -\U1DA78;Signwriting Limb Length-2 -\U1DA79;Signwriting Limb Length-3 -\U1DA7A;Signwriting Limb Length-4 -\U1DA7B;Signwriting Limb Length-5 -\U1DA7C;Signwriting Limb Length-6 -\U1DA7D;Signwriting Limb Length-7 -\U1DA7E;Signwriting Finger -\U1DA7F;Signwriting Location-Wallplane Space -\U1DA80;Signwriting Location-Floorplane Space -\U1DA81;Signwriting Location Height -\U1DA82;Signwriting Location Width -\U1DA83;Signwriting Location Depth -\U1DA84;Signwriting Location Head Neck -\U1DA85;Signwriting Location Torso -\U1DA86;Signwriting Location Limbs Digits -\U1DA87;Signwriting Comma -\U1DA88;Signwriting Full Stop -\U1DA89;Signwriting Semicolon -\U1DA8A;Signwriting Colon -\U1DA8B;Signwriting Parenthesis -\U1DA9B;Signwriting Fill Modifier-2 -\U1DA9C;Signwriting Fill Modifier-3 -\U1DA9D;Signwriting Fill Modifier-4 -\U1DA9E;Signwriting Fill Modifier-5 -\U1DA9F;Signwriting Fill Modifier-6 -\U1DAA1;Signwriting Rotation Modifier-2 -\U1DAA2;Signwriting Rotation Modifier-3 -\U1DAA3;Signwriting Rotation Modifier-4 -\U1DAA4;Signwriting Rotation Modifier-5 -\U1DAA5;Signwriting Rotation Modifier-6 -\U1DAA6;Signwriting Rotation Modifier-7 -\U1DAA7;Signwriting Rotation Modifier-8 -\U1DAA8;Signwriting Rotation Modifier-9 -\U1DAA9;Signwriting Rotation Modifier-10 -\U1DAAA;Signwriting Rotation Modifier-11 -\U1DAAB;Signwriting Rotation Modifier-12 -\U1DAAC;Signwriting Rotation Modifier-13 -\U1DAAD;Signwriting Rotation Modifier-14 -\U1DAAE;Signwriting Rotation Modifier-15 -\U1DAAF;Signwriting Rotation Modifier-16 -\U1DF00;Latin Small Letter Feng Digraph With Trill -\U1DF01;Latin Small Letter Reversed Script G -\U1DF02;Latin Letter Small Capital Turned G -\U1DF03;Latin Small Letter Reversed K -\U1DF04;Latin Letter Small Capital L With Belt -\U1DF05;Latin Small Letter Lezh With Retroflex Hook -\U1DF06;Latin Small Letter Turned Y With Belt -\U1DF07;Latin Small Letter Reversed Eng -\U1DF08;Latin Small Letter Turned R With Long Leg And Retroflex Hook -\U1DF09;Latin Small Letter T With Hook And Retroflex Hook -\U1DF0A;Latin Letter Retroflex Click With Retroflex Hook -\U1DF0B;Latin Small Letter Esh With Double Bar -\U1DF0C;Latin Small Letter Esh With Double Bar And Curl -\U1DF0D;Latin Small Letter Turned T With Curl -\U1DF0E;Latin Letter Inverted Glottal Stop With Curl -\U1DF0F;Latin Letter Stretched C With Curl -\U1DF10;Latin Letter Small Capital Turned K -\U1DF11;Latin Small Letter L With Fishhook -\U1DF12;Latin Small Letter Dezh Digraph With Palatal Hook -\U1DF13;Latin Small Letter L With Belt And Palatal Hook -\U1DF14;Latin Small Letter Eng With Palatal Hook -\U1DF15;Latin Small Letter Turned R With Palatal Hook -\U1DF16;Latin Small Letter R With Fishhook And Palatal Hook -\U1DF17;Latin Small Letter Tesh Digraph With Palatal Hook -\U1DF18;Latin Small Letter Ezh With Palatal Hook -\U1DF19;Latin Small Letter Dezh Digraph With Retroflex Hook -\U1DF1A;Latin Small Letter I With Stroke And Retroflex Hook -\U1DF1B;Latin Small Letter O With Retroflex Hook -\U1DF1C;Latin Small Letter Tesh Digraph With Retroflex Hook -\U1DF1D;Latin Small Letter C With Retroflex Hook -\U1DF1E;Latin Small Letter S With Curl -\U1DF25;Latin Small Letter D With Mid-Height Left Hook -\U1DF26;Latin Small Letter L With Mid-Height Left Hook -\U1DF27;Latin Small Letter N With Mid-Height Left Hook -\U1DF28;Latin Small Letter R With Mid-Height Left Hook -\U1DF29;Latin Small Letter S With Mid-Height Left Hook -\U1DF2A;Latin Small Letter T With Mid-Height Left Hook -\U1E000;Combining Glagolitic Letter Azu -\U1E001;Combining Glagolitic Letter Buky -\U1E002;Combining Glagolitic Letter Vede -\U1E003;Combining Glagolitic Letter Glagoli -\U1E004;Combining Glagolitic Letter Dobro -\U1E005;Combining Glagolitic Letter Yestu -\U1E006;Combining Glagolitic Letter Zhivete -\U1E008;Combining Glagolitic Letter Zemlja -\U1E009;Combining Glagolitic Letter Izhe -\U1E00A;Combining Glagolitic Letter Initial Izhe -\U1E00B;Combining Glagolitic Letter I -\U1E00C;Combining Glagolitic Letter Djervi -\U1E00D;Combining Glagolitic Letter Kako -\U1E00E;Combining Glagolitic Letter Ljudije -\U1E00F;Combining Glagolitic Letter Myslite -\U1E010;Combining Glagolitic Letter Nashi -\U1E011;Combining Glagolitic Letter Onu -\U1E012;Combining Glagolitic Letter Pokoji -\U1E013;Combining Glagolitic Letter Ritsi -\U1E014;Combining Glagolitic Letter Slovo -\U1E015;Combining Glagolitic Letter Tvrido -\U1E016;Combining Glagolitic Letter Uku -\U1E017;Combining Glagolitic Letter Fritu -\U1E018;Combining Glagolitic Letter Heru -\U1E01B;Combining Glagolitic Letter Shta -\U1E01C;Combining Glagolitic Letter Tsi -\U1E01D;Combining Glagolitic Letter Chrivi -\U1E01E;Combining Glagolitic Letter Sha -\U1E01F;Combining Glagolitic Letter Yeru -\U1E020;Combining Glagolitic Letter Yeri -\U1E021;Combining Glagolitic Letter Yati -\U1E023;Combining Glagolitic Letter Yu -\U1E024;Combining Glagolitic Letter Small Yus -\U1E026;Combining Glagolitic Letter Yo -\U1E027;Combining Glagolitic Letter Iotated Small Yus -\U1E028;Combining Glagolitic Letter Big Yus -\U1E029;Combining Glagolitic Letter Iotated Big Yus -\U1E02A;Combining Glagolitic Letter Fita -\U1E030;Modifier Letter Cyrillic Small A -\U1E031;Modifier Letter Cyrillic Small Be -\U1E032;Modifier Letter Cyrillic Small Ve -\U1E033;Modifier Letter Cyrillic Small Ghe -\U1E034;Modifier Letter Cyrillic Small De -\U1E035;Modifier Letter Cyrillic Small Ie -\U1E036;Modifier Letter Cyrillic Small Zhe -\U1E037;Modifier Letter Cyrillic Small Ze -\U1E038;Modifier Letter Cyrillic Small I -\U1E039;Modifier Letter Cyrillic Small Ka -\U1E03A;Modifier Letter Cyrillic Small El -\U1E03B;Modifier Letter Cyrillic Small Em -\U1E03C;Modifier Letter Cyrillic Small O -\U1E03D;Modifier Letter Cyrillic Small Pe -\U1E03E;Modifier Letter Cyrillic Small Er -\U1E03F;Modifier Letter Cyrillic Small Es -\U1E040;Modifier Letter Cyrillic Small Te -\U1E041;Modifier Letter Cyrillic Small U -\U1E042;Modifier Letter Cyrillic Small Ef -\U1E043;Modifier Letter Cyrillic Small Ha -\U1E044;Modifier Letter Cyrillic Small Tse -\U1E045;Modifier Letter Cyrillic Small Che -\U1E046;Modifier Letter Cyrillic Small Sha -\U1E047;Modifier Letter Cyrillic Small Yeru -\U1E048;Modifier Letter Cyrillic Small E -\U1E049;Modifier Letter Cyrillic Small Yu -\U1E04A;Modifier Letter Cyrillic Small Dzze -\U1E04B;Modifier Letter Cyrillic Small Schwa -\U1E04C;Modifier Letter Cyrillic Small Byelorussian-Ukrainian I -\U1E04D;Modifier Letter Cyrillic Small Je -\U1E04E;Modifier Letter Cyrillic Small Barred O -\U1E04F;Modifier Letter Cyrillic Small Straight U -\U1E050;Modifier Letter Cyrillic Small Palochka -\U1E051;Cyrillic Subscript Small Letter A -\U1E052;Cyrillic Subscript Small Letter Be -\U1E053;Cyrillic Subscript Small Letter Ve -\U1E054;Cyrillic Subscript Small Letter Ghe -\U1E055;Cyrillic Subscript Small Letter De -\U1E056;Cyrillic Subscript Small Letter Ie -\U1E057;Cyrillic Subscript Small Letter Zhe -\U1E058;Cyrillic Subscript Small Letter Ze -\U1E059;Cyrillic Subscript Small Letter I -\U1E05A;Cyrillic Subscript Small Letter Ka -\U1E05B;Cyrillic Subscript Small Letter El -\U1E05C;Cyrillic Subscript Small Letter O -\U1E05D;Cyrillic Subscript Small Letter Pe -\U1E05E;Cyrillic Subscript Small Letter Es -\U1E05F;Cyrillic Subscript Small Letter U -\U1E060;Cyrillic Subscript Small Letter Ef -\U1E061;Cyrillic Subscript Small Letter Ha -\U1E062;Cyrillic Subscript Small Letter Tse -\U1E063;Cyrillic Subscript Small Letter Che -\U1E064;Cyrillic Subscript Small Letter Sha -\U1E065;Cyrillic Subscript Small Letter Hard Sign -\U1E066;Cyrillic Subscript Small Letter Yeru -\U1E067;Cyrillic Subscript Small Letter Ghe With Upturn -\U1E068;Cyrillic Subscript Small Letter Byelorussian-Ukrainian I -\U1E069;Cyrillic Subscript Small Letter Dze -\U1E06A;Cyrillic Subscript Small Letter Dzhe -\U1E06B;Modifier Letter Cyrillic Small Es With Descender -\U1E06C;Modifier Letter Cyrillic Small Yeru With Back Yer -\U1E06D;Modifier Letter Cyrillic Small Straight U With Stroke -\U1E08F;Combining Cyrillic Small Letter Byelorussian-Ukrainian I -\U1E100;Nyiakeng Puachue Hmong Letter Ma -\U1E101;Nyiakeng Puachue Hmong Letter Tsa -\U1E102;Nyiakeng Puachue Hmong Letter Nta -\U1E103;Nyiakeng Puachue Hmong Letter Ta -\U1E104;Nyiakeng Puachue Hmong Letter Ha -\U1E105;Nyiakeng Puachue Hmong Letter Na -\U1E106;Nyiakeng Puachue Hmong Letter Xa -\U1E107;Nyiakeng Puachue Hmong Letter Nka -\U1E108;Nyiakeng Puachue Hmong Letter Ca -\U1E109;Nyiakeng Puachue Hmong Letter La -\U1E10A;Nyiakeng Puachue Hmong Letter Sa -\U1E10B;Nyiakeng Puachue Hmong Letter Za -\U1E10C;Nyiakeng Puachue Hmong Letter Nca -\U1E10D;Nyiakeng Puachue Hmong Letter Ntsa -\U1E10E;Nyiakeng Puachue Hmong Letter Ka -\U1E10F;Nyiakeng Puachue Hmong Letter Da -\U1E110;Nyiakeng Puachue Hmong Letter Nya -\U1E111;Nyiakeng Puachue Hmong Letter Nra -\U1E112;Nyiakeng Puachue Hmong Letter Va -\U1E113;Nyiakeng Puachue Hmong Letter Ntxa -\U1E114;Nyiakeng Puachue Hmong Letter Txa -\U1E115;Nyiakeng Puachue Hmong Letter Fa -\U1E116;Nyiakeng Puachue Hmong Letter Ra -\U1E117;Nyiakeng Puachue Hmong Letter Qa -\U1E118;Nyiakeng Puachue Hmong Letter Ya -\U1E119;Nyiakeng Puachue Hmong Letter Nqa -\U1E11A;Nyiakeng Puachue Hmong Letter Pa -\U1E11B;Nyiakeng Puachue Hmong Letter Xya -\U1E11C;Nyiakeng Puachue Hmong Letter Npa -\U1E11D;Nyiakeng Puachue Hmong Letter Dla -\U1E11E;Nyiakeng Puachue Hmong Letter Npla -\U1E11F;Nyiakeng Puachue Hmong Letter Hah -\U1E120;Nyiakeng Puachue Hmong Letter Mla -\U1E121;Nyiakeng Puachue Hmong Letter Pla -\U1E122;Nyiakeng Puachue Hmong Letter Ga -\U1E123;Nyiakeng Puachue Hmong Letter Rra -\U1E124;Nyiakeng Puachue Hmong Letter A -\U1E125;Nyiakeng Puachue Hmong Letter Aa -\U1E126;Nyiakeng Puachue Hmong Letter I -\U1E127;Nyiakeng Puachue Hmong Letter U -\U1E128;Nyiakeng Puachue Hmong Letter O -\U1E129;Nyiakeng Puachue Hmong Letter Oo -\U1E12A;Nyiakeng Puachue Hmong Letter E -\U1E12B;Nyiakeng Puachue Hmong Letter Ee -\U1E12C;Nyiakeng Puachue Hmong Letter W -\U1E130;Nyiakeng Puachue Hmong Tone-B -\U1E131;Nyiakeng Puachue Hmong Tone-M -\U1E132;Nyiakeng Puachue Hmong Tone-J -\U1E133;Nyiakeng Puachue Hmong Tone-V -\U1E134;Nyiakeng Puachue Hmong Tone-S -\U1E135;Nyiakeng Puachue Hmong Tone-G -\U1E136;Nyiakeng Puachue Hmong Tone-D -\U1E137;Nyiakeng Puachue Hmong Sign For Person -\U1E138;Nyiakeng Puachue Hmong Sign For Thing -\U1E139;Nyiakeng Puachue Hmong Sign For Location -\U1E13A;Nyiakeng Puachue Hmong Sign For Animal -\U1E13B;Nyiakeng Puachue Hmong Sign For Invertebrate -\U1E13C;Nyiakeng Puachue Hmong Sign Xw Xw -\U1E13D;Nyiakeng Puachue Hmong Syllable Lengthener -\U1E140;Nyiakeng Puachue Hmong Digit Zero -\U1E141;Nyiakeng Puachue Hmong Digit One -\U1E142;Nyiakeng Puachue Hmong Digit Two -\U1E143;Nyiakeng Puachue Hmong Digit Three -\U1E144;Nyiakeng Puachue Hmong Digit Four -\U1E145;Nyiakeng Puachue Hmong Digit Five -\U1E146;Nyiakeng Puachue Hmong Digit Six -\U1E147;Nyiakeng Puachue Hmong Digit Seven -\U1E148;Nyiakeng Puachue Hmong Digit Eight -\U1E149;Nyiakeng Puachue Hmong Digit Nine -\U1E14E;Nyiakeng Puachue Hmong Logogram Nyaj -\U1E14F;Nyiakeng Puachue Hmong Circled Ca -\U1E290;Toto Letter Pa -\U1E291;Toto Letter Ba -\U1E292;Toto Letter Ta -\U1E293;Toto Letter Da -\U1E294;Toto Letter Ka -\U1E295;Toto Letter Ga -\U1E296;Toto Letter Ma -\U1E297;Toto Letter Na -\U1E298;Toto Letter Nga -\U1E299;Toto Letter Sa -\U1E29A;Toto Letter Cha -\U1E29B;Toto Letter Ya -\U1E29C;Toto Letter Wa -\U1E29D;Toto Letter Ja -\U1E29E;Toto Letter Ha -\U1E29F;Toto Letter Ra -\U1E2A0;Toto Letter La -\U1E2A1;Toto Letter I -\U1E2A2;Toto Letter Breathy I -\U1E2A3;Toto Letter Iu -\U1E2A4;Toto Letter Breathy Iu -\U1E2A5;Toto Letter U -\U1E2A6;Toto Letter E -\U1E2A7;Toto Letter Breathy E -\U1E2A8;Toto Letter Eo -\U1E2A9;Toto Letter Breathy Eo -\U1E2AA;Toto Letter O -\U1E2AB;Toto Letter Ae -\U1E2AC;Toto Letter Breathy Ae -\U1E2AD;Toto Letter A -\U1E2AE;Toto Sign Rising Tone -\U1E2C0;Wancho Letter Aa -\U1E2C1;Wancho Letter A -\U1E2C2;Wancho Letter Ba -\U1E2C3;Wancho Letter Ca -\U1E2C4;Wancho Letter Da -\U1E2C5;Wancho Letter Ga -\U1E2C6;Wancho Letter Ya -\U1E2C7;Wancho Letter Pha -\U1E2C8;Wancho Letter La -\U1E2C9;Wancho Letter Na -\U1E2CA;Wancho Letter Pa -\U1E2CB;Wancho Letter Ta -\U1E2CC;Wancho Letter Tha -\U1E2CD;Wancho Letter Fa -\U1E2CE;Wancho Letter Sa -\U1E2CF;Wancho Letter Sha -\U1E2D0;Wancho Letter Ja -\U1E2D1;Wancho Letter Za -\U1E2D2;Wancho Letter Wa -\U1E2D3;Wancho Letter Va -\U1E2D4;Wancho Letter Ka -\U1E2D5;Wancho Letter O -\U1E2D6;Wancho Letter Au -\U1E2D7;Wancho Letter Ra -\U1E2D8;Wancho Letter Ma -\U1E2D9;Wancho Letter Kha -\U1E2DA;Wancho Letter Ha -\U1E2DB;Wancho Letter E -\U1E2DC;Wancho Letter I -\U1E2DD;Wancho Letter Nga -\U1E2DE;Wancho Letter U -\U1E2DF;Wancho Letter Llha -\U1E2E0;Wancho Letter Tsa -\U1E2E1;Wancho Letter Tra -\U1E2E2;Wancho Letter Ong -\U1E2E3;Wancho Letter Aang -\U1E2E4;Wancho Letter Ang -\U1E2E5;Wancho Letter Ing -\U1E2E6;Wancho Letter On -\U1E2E7;Wancho Letter En -\U1E2E8;Wancho Letter Aan -\U1E2E9;Wancho Letter Nya -\U1E2EA;Wancho Letter Uen -\U1E2EB;Wancho Letter Yih -\U1E2EC;Wancho Tone Tup -\U1E2ED;Wancho Tone Tupni -\U1E2EE;Wancho Tone Koi -\U1E2EF;Wancho Tone Koini -\U1E2F0;Wancho Digit Zero -\U1E2F1;Wancho Digit One -\U1E2F2;Wancho Digit Two -\U1E2F3;Wancho Digit Three -\U1E2F4;Wancho Digit Four -\U1E2F5;Wancho Digit Five -\U1E2F6;Wancho Digit Six -\U1E2F7;Wancho Digit Seven -\U1E2F8;Wancho Digit Eight -\U1E2F9;Wancho Digit Nine -\U1E2FF;Wancho Ngun Sign -\U1E4D0;Nag Mundari Letter O -\U1E4D1;Nag Mundari Letter Op -\U1E4D2;Nag Mundari Letter Ol -\U1E4D3;Nag Mundari Letter Oy -\U1E4D4;Nag Mundari Letter Ong -\U1E4D5;Nag Mundari Letter A -\U1E4D6;Nag Mundari Letter Aj -\U1E4D7;Nag Mundari Letter Ab -\U1E4D8;Nag Mundari Letter Any -\U1E4D9;Nag Mundari Letter Ah -\U1E4DA;Nag Mundari Letter I -\U1E4DB;Nag Mundari Letter Is -\U1E4DC;Nag Mundari Letter Idd -\U1E4DD;Nag Mundari Letter It -\U1E4DE;Nag Mundari Letter Ih -\U1E4DF;Nag Mundari Letter U -\U1E4E0;Nag Mundari Letter Uc -\U1E4E1;Nag Mundari Letter Ud -\U1E4E2;Nag Mundari Letter Uk -\U1E4E3;Nag Mundari Letter Ur -\U1E4E4;Nag Mundari Letter E -\U1E4E5;Nag Mundari Letter Enn -\U1E4E6;Nag Mundari Letter Eg -\U1E4E7;Nag Mundari Letter Em -\U1E4E8;Nag Mundari Letter En -\U1E4E9;Nag Mundari Letter Ett -\U1E4EA;Nag Mundari Letter Ell -\U1E4EB;Nag Mundari Sign Ojod -\U1E4EC;Nag Mundari Sign Muhor -\U1E4ED;Nag Mundari Sign Toyor -\U1E4EE;Nag Mundari Sign Ikir -\U1E4EF;Nag Mundari Sign Sutuh -\U1E4F0;Nag Mundari Digit Zero -\U1E4F1;Nag Mundari Digit One -\U1E4F2;Nag Mundari Digit Two -\U1E4F3;Nag Mundari Digit Three -\U1E4F4;Nag Mundari Digit Four -\U1E4F5;Nag Mundari Digit Five -\U1E4F6;Nag Mundari Digit Six -\U1E4F7;Nag Mundari Digit Seven -\U1E4F8;Nag Mundari Digit Eight -\U1E4F9;Nag Mundari Digit Nine -\U1E7E0;Ethiopic Syllable Hhya -\U1E7E1;Ethiopic Syllable Hhyu -\U1E7E2;Ethiopic Syllable Hhyi -\U1E7E3;Ethiopic Syllable Hhyaa -\U1E7E4;Ethiopic Syllable Hhyee -\U1E7E5;Ethiopic Syllable Hhye -\U1E7E6;Ethiopic Syllable Hhyo -\U1E7E8;Ethiopic Syllable Gurage Hhwa -\U1E7E9;Ethiopic Syllable Hhwi -\U1E7EA;Ethiopic Syllable Hhwee -\U1E7EB;Ethiopic Syllable Hhwe -\U1E7ED;Ethiopic Syllable Gurage Mwi -\U1E7EE;Ethiopic Syllable Gurage Mwee -\U1E7F0;Ethiopic Syllable Gurage Qwi -\U1E7F1;Ethiopic Syllable Gurage Qwee -\U1E7F2;Ethiopic Syllable Gurage Qwe -\U1E7F3;Ethiopic Syllable Gurage Bwi -\U1E7F4;Ethiopic Syllable Gurage Bwee -\U1E7F5;Ethiopic Syllable Gurage Kwi -\U1E7F6;Ethiopic Syllable Gurage Kwee -\U1E7F7;Ethiopic Syllable Gurage Kwe -\U1E7F8;Ethiopic Syllable Gurage Gwi -\U1E7F9;Ethiopic Syllable Gurage Gwee -\U1E7FA;Ethiopic Syllable Gurage Gwe -\U1E7FB;Ethiopic Syllable Gurage Fwi -\U1E7FC;Ethiopic Syllable Gurage Fwee -\U1E7FD;Ethiopic Syllable Gurage Pwi -\U1E7FE;Ethiopic Syllable Gurage Pwee -\U1E800;Mende Kikakui Syllable M001 Ki -\U1E801;Mende Kikakui Syllable M002 Ka -\U1E802;Mende Kikakui Syllable M003 Ku -\U1E803;Mende Kikakui Syllable M065 Kee -\U1E804;Mende Kikakui Syllable M095 Ke -\U1E805;Mende Kikakui Syllable M076 Koo -\U1E806;Mende Kikakui Syllable M048 Ko -\U1E807;Mende Kikakui Syllable M179 Kua -\U1E808;Mende Kikakui Syllable M004 Wi -\U1E809;Mende Kikakui Syllable M005 Wa -\U1E80A;Mende Kikakui Syllable M006 Wu -\U1E80B;Mende Kikakui Syllable M126 Wee -\U1E80C;Mende Kikakui Syllable M118 We -\U1E80D;Mende Kikakui Syllable M114 Woo -\U1E80E;Mende Kikakui Syllable M045 Wo -\U1E80F;Mende Kikakui Syllable M194 Wui -\U1E810;Mende Kikakui Syllable M143 Wei -\U1E811;Mende Kikakui Syllable M061 Wvi -\U1E812;Mende Kikakui Syllable M049 Wva -\U1E813;Mende Kikakui Syllable M139 Wve -\U1E814;Mende Kikakui Syllable M007 Min -\U1E815;Mende Kikakui Syllable M008 Man -\U1E816;Mende Kikakui Syllable M009 Mun -\U1E817;Mende Kikakui Syllable M059 Men -\U1E818;Mende Kikakui Syllable M094 Mon -\U1E819;Mende Kikakui Syllable M154 Muan -\U1E81A;Mende Kikakui Syllable M189 Muen -\U1E81B;Mende Kikakui Syllable M010 Bi -\U1E81C;Mende Kikakui Syllable M011 Ba -\U1E81D;Mende Kikakui Syllable M012 Bu -\U1E81E;Mende Kikakui Syllable M150 Bee -\U1E81F;Mende Kikakui Syllable M097 Be -\U1E820;Mende Kikakui Syllable M103 Boo -\U1E821;Mende Kikakui Syllable M138 Bo -\U1E822;Mende Kikakui Syllable M013 I -\U1E823;Mende Kikakui Syllable M014 A -\U1E824;Mende Kikakui Syllable M015 U -\U1E825;Mende Kikakui Syllable M163 Ee -\U1E826;Mende Kikakui Syllable M100 E -\U1E827;Mende Kikakui Syllable M165 Oo -\U1E828;Mende Kikakui Syllable M147 O -\U1E829;Mende Kikakui Syllable M137 Ei -\U1E82A;Mende Kikakui Syllable M131 In -\U1E82B;Mende Kikakui Syllable M135 In -\U1E82C;Mende Kikakui Syllable M195 An -\U1E82D;Mende Kikakui Syllable M178 En -\U1E82E;Mende Kikakui Syllable M019 Si -\U1E82F;Mende Kikakui Syllable M020 Sa -\U1E830;Mende Kikakui Syllable M021 Su -\U1E831;Mende Kikakui Syllable M162 See -\U1E832;Mende Kikakui Syllable M116 Se -\U1E833;Mende Kikakui Syllable M136 Soo -\U1E834;Mende Kikakui Syllable M079 So -\U1E835;Mende Kikakui Syllable M196 Sia -\U1E836;Mende Kikakui Syllable M025 Li -\U1E837;Mende Kikakui Syllable M026 La -\U1E838;Mende Kikakui Syllable M027 Lu -\U1E839;Mende Kikakui Syllable M084 Lee -\U1E83A;Mende Kikakui Syllable M073 Le -\U1E83B;Mende Kikakui Syllable M054 Loo -\U1E83C;Mende Kikakui Syllable M153 Lo -\U1E83D;Mende Kikakui Syllable M110 Long Le -\U1E83E;Mende Kikakui Syllable M016 Di -\U1E83F;Mende Kikakui Syllable M017 Da -\U1E840;Mende Kikakui Syllable M018 Du -\U1E841;Mende Kikakui Syllable M089 Dee -\U1E842;Mende Kikakui Syllable M180 Doo -\U1E843;Mende Kikakui Syllable M181 Do -\U1E844;Mende Kikakui Syllable M022 Ti -\U1E845;Mende Kikakui Syllable M023 Ta -\U1E846;Mende Kikakui Syllable M024 Tu -\U1E847;Mende Kikakui Syllable M091 Tee -\U1E848;Mende Kikakui Syllable M055 Te -\U1E849;Mende Kikakui Syllable M104 Too -\U1E84A;Mende Kikakui Syllable M069 To -\U1E84B;Mende Kikakui Syllable M028 Ji -\U1E84C;Mende Kikakui Syllable M029 Ja -\U1E84D;Mende Kikakui Syllable M030 Ju -\U1E84E;Mende Kikakui Syllable M157 Jee -\U1E84F;Mende Kikakui Syllable M113 Je -\U1E850;Mende Kikakui Syllable M160 Joo -\U1E851;Mende Kikakui Syllable M063 Jo -\U1E852;Mende Kikakui Syllable M175 Long Jo -\U1E853;Mende Kikakui Syllable M031 Yi -\U1E854;Mende Kikakui Syllable M032 Ya -\U1E855;Mende Kikakui Syllable M033 Yu -\U1E856;Mende Kikakui Syllable M109 Yee -\U1E857;Mende Kikakui Syllable M080 Ye -\U1E858;Mende Kikakui Syllable M141 Yoo -\U1E859;Mende Kikakui Syllable M121 Yo -\U1E85A;Mende Kikakui Syllable M034 Fi -\U1E85B;Mende Kikakui Syllable M035 Fa -\U1E85C;Mende Kikakui Syllable M036 Fu -\U1E85D;Mende Kikakui Syllable M078 Fee -\U1E85E;Mende Kikakui Syllable M075 Fe -\U1E85F;Mende Kikakui Syllable M133 Foo -\U1E860;Mende Kikakui Syllable M088 Fo -\U1E861;Mende Kikakui Syllable M197 Fua -\U1E862;Mende Kikakui Syllable M101 Fan -\U1E863;Mende Kikakui Syllable M037 Nin -\U1E864;Mende Kikakui Syllable M038 Nan -\U1E865;Mende Kikakui Syllable M039 Nun -\U1E866;Mende Kikakui Syllable M117 Nen -\U1E867;Mende Kikakui Syllable M169 Non -\U1E868;Mende Kikakui Syllable M176 Hi -\U1E869;Mende Kikakui Syllable M041 Ha -\U1E86A;Mende Kikakui Syllable M186 Hu -\U1E86B;Mende Kikakui Syllable M040 Hee -\U1E86C;Mende Kikakui Syllable M096 He -\U1E86D;Mende Kikakui Syllable M042 Hoo -\U1E86E;Mende Kikakui Syllable M140 Ho -\U1E86F;Mende Kikakui Syllable M083 Heei -\U1E870;Mende Kikakui Syllable M128 Hoou -\U1E871;Mende Kikakui Syllable M053 Hin -\U1E872;Mende Kikakui Syllable M130 Han -\U1E873;Mende Kikakui Syllable M087 Hun -\U1E874;Mende Kikakui Syllable M052 Hen -\U1E875;Mende Kikakui Syllable M193 Hon -\U1E876;Mende Kikakui Syllable M046 Huan -\U1E877;Mende Kikakui Syllable M090 Nggi -\U1E878;Mende Kikakui Syllable M043 Ngga -\U1E879;Mende Kikakui Syllable M082 Nggu -\U1E87A;Mende Kikakui Syllable M115 Nggee -\U1E87B;Mende Kikakui Syllable M146 Ngge -\U1E87C;Mende Kikakui Syllable M156 Nggoo -\U1E87D;Mende Kikakui Syllable M120 Nggo -\U1E87E;Mende Kikakui Syllable M159 Nggaa -\U1E87F;Mende Kikakui Syllable M127 Nggua -\U1E880;Mende Kikakui Syllable M086 Long Ngge -\U1E881;Mende Kikakui Syllable M106 Long Nggoo -\U1E882;Mende Kikakui Syllable M183 Long Nggo -\U1E883;Mende Kikakui Syllable M155 Gi -\U1E884;Mende Kikakui Syllable M111 Ga -\U1E885;Mende Kikakui Syllable M168 Gu -\U1E886;Mende Kikakui Syllable M190 Gee -\U1E887;Mende Kikakui Syllable M166 Guei -\U1E888;Mende Kikakui Syllable M167 Guan -\U1E889;Mende Kikakui Syllable M184 Ngen -\U1E88A;Mende Kikakui Syllable M057 Ngon -\U1E88B;Mende Kikakui Syllable M177 Nguan -\U1E88C;Mende Kikakui Syllable M068 Pi -\U1E88D;Mende Kikakui Syllable M099 Pa -\U1E88E;Mende Kikakui Syllable M050 Pu -\U1E88F;Mende Kikakui Syllable M081 Pee -\U1E890;Mende Kikakui Syllable M051 Pe -\U1E891;Mende Kikakui Syllable M102 Poo -\U1E892;Mende Kikakui Syllable M066 Po -\U1E893;Mende Kikakui Syllable M145 Mbi -\U1E894;Mende Kikakui Syllable M062 Mba -\U1E895;Mende Kikakui Syllable M122 Mbu -\U1E896;Mende Kikakui Syllable M047 Mbee -\U1E897;Mende Kikakui Syllable M188 Mbee -\U1E898;Mende Kikakui Syllable M072 Mbe -\U1E899;Mende Kikakui Syllable M172 Mboo -\U1E89A;Mende Kikakui Syllable M174 Mbo -\U1E89B;Mende Kikakui Syllable M187 Mbuu -\U1E89C;Mende Kikakui Syllable M161 Long Mbe -\U1E89D;Mende Kikakui Syllable M105 Long Mboo -\U1E89E;Mende Kikakui Syllable M142 Long Mbo -\U1E89F;Mende Kikakui Syllable M132 Kpi -\U1E8A0;Mende Kikakui Syllable M092 Kpa -\U1E8A1;Mende Kikakui Syllable M074 Kpu -\U1E8A2;Mende Kikakui Syllable M044 Kpee -\U1E8A3;Mende Kikakui Syllable M108 Kpe -\U1E8A4;Mende Kikakui Syllable M112 Kpoo -\U1E8A5;Mende Kikakui Syllable M158 Kpo -\U1E8A6;Mende Kikakui Syllable M124 Gbi -\U1E8A7;Mende Kikakui Syllable M056 Gba -\U1E8A8;Mende Kikakui Syllable M148 Gbu -\U1E8A9;Mende Kikakui Syllable M093 Gbee -\U1E8AA;Mende Kikakui Syllable M107 Gbe -\U1E8AB;Mende Kikakui Syllable M071 Gboo -\U1E8AC;Mende Kikakui Syllable M070 Gbo -\U1E8AD;Mende Kikakui Syllable M171 Ra -\U1E8AE;Mende Kikakui Syllable M123 Ndi -\U1E8AF;Mende Kikakui Syllable M129 Nda -\U1E8B0;Mende Kikakui Syllable M125 Ndu -\U1E8B1;Mende Kikakui Syllable M191 Ndee -\U1E8B2;Mende Kikakui Syllable M119 Nde -\U1E8B3;Mende Kikakui Syllable M067 Ndoo -\U1E8B4;Mende Kikakui Syllable M064 Ndo -\U1E8B5;Mende Kikakui Syllable M152 Nja -\U1E8B6;Mende Kikakui Syllable M192 Nju -\U1E8B7;Mende Kikakui Syllable M149 Njee -\U1E8B8;Mende Kikakui Syllable M134 Njoo -\U1E8B9;Mende Kikakui Syllable M182 Vi -\U1E8BA;Mende Kikakui Syllable M185 Va -\U1E8BB;Mende Kikakui Syllable M151 Vu -\U1E8BC;Mende Kikakui Syllable M173 Vee -\U1E8BD;Mende Kikakui Syllable M085 Ve -\U1E8BE;Mende Kikakui Syllable M144 Voo -\U1E8BF;Mende Kikakui Syllable M077 Vo -\U1E8C0;Mende Kikakui Syllable M164 Nyin -\U1E8C1;Mende Kikakui Syllable M058 Nyan -\U1E8C2;Mende Kikakui Syllable M170 Nyun -\U1E8C3;Mende Kikakui Syllable M098 Nyen -\U1E8C4;Mende Kikakui Syllable M060 Nyon -\U1E8C7;Mende Kikakui Digit One -\U1E8C8;Mende Kikakui Digit Two -\U1E8C9;Mende Kikakui Digit Three -\U1E8CA;Mende Kikakui Digit Four -\U1E8CB;Mende Kikakui Digit Five -\U1E8CC;Mende Kikakui Digit Six -\U1E8CD;Mende Kikakui Digit Seven -\U1E8CE;Mende Kikakui Digit Eight -\U1E8CF;Mende Kikakui Digit Nine -\U1E8D0;Mende Kikakui Combining Number Teens -\U1E8D1;Mende Kikakui Combining Number Tens -\U1E8D2;Mende Kikakui Combining Number Hundreds -\U1E8D3;Mende Kikakui Combining Number Thousands -\U1E8D4;Mende Kikakui Combining Number Ten Thousands -\U1E8D5;Mende Kikakui Combining Number Hundred Thousands -\U1E8D6;Mende Kikakui Combining Number Millions -\U1E900;Adlam Capital Letter Alif -\U1E901;Adlam Capital Letter Daali -\U1E902;Adlam Capital Letter Laam -\U1E903;Adlam Capital Letter Miim -\U1E904;Adlam Capital Letter Ba -\U1E905;Adlam Capital Letter Sinnyiiyhe -\U1E906;Adlam Capital Letter Pe -\U1E907;Adlam Capital Letter Bhe -\U1E908;Adlam Capital Letter Ra -\U1E909;Adlam Capital Letter E -\U1E90A;Adlam Capital Letter Fa -\U1E90B;Adlam Capital Letter I -\U1E90C;Adlam Capital Letter O -\U1E90D;Adlam Capital Letter Dha -\U1E90E;Adlam Capital Letter Yhe -\U1E90F;Adlam Capital Letter Waw -\U1E910;Adlam Capital Letter Nun -\U1E911;Adlam Capital Letter Kaf -\U1E912;Adlam Capital Letter Ya -\U1E913;Adlam Capital Letter U -\U1E914;Adlam Capital Letter Jiim -\U1E915;Adlam Capital Letter Chi -\U1E916;Adlam Capital Letter Ha -\U1E917;Adlam Capital Letter Qaaf -\U1E918;Adlam Capital Letter Ga -\U1E919;Adlam Capital Letter Nya -\U1E91A;Adlam Capital Letter Tu -\U1E91B;Adlam Capital Letter Nha -\U1E91C;Adlam Capital Letter Va -\U1E91D;Adlam Capital Letter Kha -\U1E91E;Adlam Capital Letter Gbe -\U1E91F;Adlam Capital Letter Zal -\U1E920;Adlam Capital Letter Kpo -\U1E921;Adlam Capital Letter Sha -\U1E922;Adlam Small Letter Alif -\U1E923;Adlam Small Letter Daali -\U1E924;Adlam Small Letter Laam -\U1E925;Adlam Small Letter Miim -\U1E926;Adlam Small Letter Ba -\U1E927;Adlam Small Letter Sinnyiiyhe -\U1E928;Adlam Small Letter Pe -\U1E929;Adlam Small Letter Bhe -\U1E92A;Adlam Small Letter Ra -\U1E92B;Adlam Small Letter E -\U1E92C;Adlam Small Letter Fa -\U1E92D;Adlam Small Letter I -\U1E92E;Adlam Small Letter O -\U1E92F;Adlam Small Letter Dha -\U1E930;Adlam Small Letter Yhe -\U1E931;Adlam Small Letter Waw -\U1E932;Adlam Small Letter Nun -\U1E933;Adlam Small Letter Kaf -\U1E934;Adlam Small Letter Ya -\U1E935;Adlam Small Letter U -\U1E936;Adlam Small Letter Jiim -\U1E937;Adlam Small Letter Chi -\U1E938;Adlam Small Letter Ha -\U1E939;Adlam Small Letter Qaaf -\U1E93A;Adlam Small Letter Ga -\U1E93B;Adlam Small Letter Nya -\U1E93C;Adlam Small Letter Tu -\U1E93D;Adlam Small Letter Nha -\U1E93E;Adlam Small Letter Va -\U1E93F;Adlam Small Letter Kha -\U1E940;Adlam Small Letter Gbe -\U1E941;Adlam Small Letter Zal -\U1E942;Adlam Small Letter Kpo -\U1E943;Adlam Small Letter Sha -\U1E944;Adlam Alif Lengthener -\U1E945;Adlam Vowel Lengthener -\U1E946;Adlam Gemination Mark -\U1E947;Adlam Hamza -\U1E948;Adlam Consonant Modifier -\U1E949;Adlam Geminate Consonant Modifier -\U1E94A;Adlam Nukta -\U1E94B;Adlam Nasalization Mark -\U1E950;Adlam Digit Zero -\U1E951;Adlam Digit One -\U1E952;Adlam Digit Two -\U1E953;Adlam Digit Three -\U1E954;Adlam Digit Four -\U1E955;Adlam Digit Five -\U1E956;Adlam Digit Six -\U1E957;Adlam Digit Seven -\U1E958;Adlam Digit Eight -\U1E959;Adlam Digit Nine -\U1E95E;Adlam Initial Exclamation Mark -\U1E95F;Adlam Initial Question Mark -\U1EC71;Indic Siyaq Number One -\U1EC72;Indic Siyaq Number Two -\U1EC73;Indic Siyaq Number Three -\U1EC74;Indic Siyaq Number Four -\U1EC75;Indic Siyaq Number Five -\U1EC76;Indic Siyaq Number Six -\U1EC77;Indic Siyaq Number Seven -\U1EC78;Indic Siyaq Number Eight -\U1EC79;Indic Siyaq Number Nine -\U1EC7A;Indic Siyaq Number Ten -\U1EC7B;Indic Siyaq Number Twenty -\U1EC7C;Indic Siyaq Number Thirty -\U1EC7D;Indic Siyaq Number Forty -\U1EC7E;Indic Siyaq Number Fifty -\U1EC7F;Indic Siyaq Number Sixty -\U1EC80;Indic Siyaq Number Seventy -\U1EC81;Indic Siyaq Number Eighty -\U1EC82;Indic Siyaq Number Ninety -\U1EC83;Indic Siyaq Number One Hundred -\U1EC84;Indic Siyaq Number Two Hundred -\U1EC85;Indic Siyaq Number Three Hundred -\U1EC86;Indic Siyaq Number Four Hundred -\U1EC87;Indic Siyaq Number Five Hundred -\U1EC88;Indic Siyaq Number Six Hundred -\U1EC89;Indic Siyaq Number Seven Hundred -\U1EC8A;Indic Siyaq Number Eight Hundred -\U1EC8B;Indic Siyaq Number Nine Hundred -\U1EC8C;Indic Siyaq Number One Thousand -\U1EC8D;Indic Siyaq Number Two Thousand -\U1EC8E;Indic Siyaq Number Three Thousand -\U1EC8F;Indic Siyaq Number Four Thousand -\U1EC90;Indic Siyaq Number Five Thousand -\U1EC91;Indic Siyaq Number Six Thousand -\U1EC92;Indic Siyaq Number Seven Thousand -\U1EC93;Indic Siyaq Number Eight Thousand -\U1EC94;Indic Siyaq Number Nine Thousand -\U1EC95;Indic Siyaq Number Ten Thousand -\U1EC96;Indic Siyaq Number Twenty Thousand -\U1EC97;Indic Siyaq Number Thirty Thousand -\U1EC98;Indic Siyaq Number Forty Thousand -\U1EC99;Indic Siyaq Number Fifty Thousand -\U1EC9A;Indic Siyaq Number Sixty Thousand -\U1EC9B;Indic Siyaq Number Seventy Thousand -\U1EC9C;Indic Siyaq Number Eighty Thousand -\U1EC9D;Indic Siyaq Number Ninety Thousand -\U1EC9E;Indic Siyaq Number Lakh -\U1EC9F;Indic Siyaq Number Lakhan -\U1ECA0;Indic Siyaq Lakh Mark -\U1ECA1;Indic Siyaq Number Karor -\U1ECA2;Indic Siyaq Number Karoran -\U1ECA3;Indic Siyaq Number Prefixed One -\U1ECA4;Indic Siyaq Number Prefixed Two -\U1ECA5;Indic Siyaq Number Prefixed Three -\U1ECA6;Indic Siyaq Number Prefixed Four -\U1ECA7;Indic Siyaq Number Prefixed Five -\U1ECA8;Indic Siyaq Number Prefixed Six -\U1ECA9;Indic Siyaq Number Prefixed Seven -\U1ECAA;Indic Siyaq Number Prefixed Eight -\U1ECAB;Indic Siyaq Number Prefixed Nine -\U1ECAC;Indic Siyaq Placeholder -\U1ECAD;Indic Siyaq Fraction One Quarter -\U1ECAE;Indic Siyaq Fraction One Half -\U1ECAF;Indic Siyaq Fraction Three Quarters -\U1ECB0;Indic Siyaq Rupee Mark -\U1ECB1;Indic Siyaq Number Alternate One -\U1ECB2;Indic Siyaq Number Alternate Two -\U1ECB3;Indic Siyaq Number Alternate Ten Thousand -\U1ECB4;Indic Siyaq Alternate Lakh Mark -\U1ED01;Ottoman Siyaq Number One -\U1ED02;Ottoman Siyaq Number Two -\U1ED03;Ottoman Siyaq Number Three -\U1ED04;Ottoman Siyaq Number Four -\U1ED05;Ottoman Siyaq Number Five -\U1ED06;Ottoman Siyaq Number Six -\U1ED07;Ottoman Siyaq Number Seven -\U1ED08;Ottoman Siyaq Number Eight -\U1ED09;Ottoman Siyaq Number Nine -\U1ED0A;Ottoman Siyaq Number Ten -\U1ED0B;Ottoman Siyaq Number Twenty -\U1ED0C;Ottoman Siyaq Number Thirty -\U1ED0D;Ottoman Siyaq Number Forty -\U1ED0E;Ottoman Siyaq Number Fifty -\U1ED0F;Ottoman Siyaq Number Sixty -\U1ED10;Ottoman Siyaq Number Seventy -\U1ED11;Ottoman Siyaq Number Eighty -\U1ED12;Ottoman Siyaq Number Ninety -\U1ED13;Ottoman Siyaq Number One Hundred -\U1ED14;Ottoman Siyaq Number Two Hundred -\U1ED15;Ottoman Siyaq Number Three Hundred -\U1ED16;Ottoman Siyaq Number Four Hundred -\U1ED17;Ottoman Siyaq Number Five Hundred -\U1ED18;Ottoman Siyaq Number Six Hundred -\U1ED19;Ottoman Siyaq Number Seven Hundred -\U1ED1A;Ottoman Siyaq Number Eight Hundred -\U1ED1B;Ottoman Siyaq Number Nine Hundred -\U1ED1C;Ottoman Siyaq Number One Thousand -\U1ED1D;Ottoman Siyaq Number Two Thousand -\U1ED1E;Ottoman Siyaq Number Three Thousand -\U1ED1F;Ottoman Siyaq Number Four Thousand -\U1ED20;Ottoman Siyaq Number Five Thousand -\U1ED21;Ottoman Siyaq Number Six Thousand -\U1ED22;Ottoman Siyaq Number Seven Thousand -\U1ED23;Ottoman Siyaq Number Eight Thousand -\U1ED24;Ottoman Siyaq Number Nine Thousand -\U1ED25;Ottoman Siyaq Number Ten Thousand -\U1ED26;Ottoman Siyaq Number Twenty Thousand -\U1ED27;Ottoman Siyaq Number Thirty Thousand -\U1ED28;Ottoman Siyaq Number Forty Thousand -\U1ED29;Ottoman Siyaq Number Fifty Thousand -\U1ED2A;Ottoman Siyaq Number Sixty Thousand -\U1ED2B;Ottoman Siyaq Number Seventy Thousand -\U1ED2C;Ottoman Siyaq Number Eighty Thousand -\U1ED2D;Ottoman Siyaq Number Ninety Thousand -\U1ED2E;Ottoman Siyaq Marratan -\U1ED2F;Ottoman Siyaq Alternate Number Two -\U1ED30;Ottoman Siyaq Alternate Number Three -\U1ED31;Ottoman Siyaq Alternate Number Four -\U1ED32;Ottoman Siyaq Alternate Number Five -\U1ED33;Ottoman Siyaq Alternate Number Six -\U1ED34;Ottoman Siyaq Alternate Number Seven -\U1ED35;Ottoman Siyaq Alternate Number Eight -\U1ED36;Ottoman Siyaq Alternate Number Nine -\U1ED37;Ottoman Siyaq Alternate Number Ten -\U1ED38;Ottoman Siyaq Alternate Number Four Hundred -\U1ED39;Ottoman Siyaq Alternate Number Six Hundred -\U1ED3A;Ottoman Siyaq Alternate Number Two Thousand -\U1ED3B;Ottoman Siyaq Alternate Number Ten Thousand -\U1ED3C;Ottoman Siyaq Fraction One Half -\U1ED3D;Ottoman Siyaq Fraction One Sixth -\U1EE00;Arabic Mathematical Alef -\U1EE01;Arabic Mathematical Beh -\U1EE02;Arabic Mathematical Jeem -\U1EE03;Arabic Mathematical Dal -\U1EE05;Arabic Mathematical Waw -\U1EE06;Arabic Mathematical Zain -\U1EE07;Arabic Mathematical Hah -\U1EE08;Arabic Mathematical Tah -\U1EE09;Arabic Mathematical Yeh -\U1EE0A;Arabic Mathematical Kaf -\U1EE0B;Arabic Mathematical Lam -\U1EE0C;Arabic Mathematical Meem -\U1EE0D;Arabic Mathematical Noon -\U1EE0E;Arabic Mathematical Seen -\U1EE0F;Arabic Mathematical Ain -\U1EE10;Arabic Mathematical Feh -\U1EE11;Arabic Mathematical Sad -\U1EE12;Arabic Mathematical Qaf -\U1EE13;Arabic Mathematical Reh -\U1EE14;Arabic Mathematical Sheen -\U1EE15;Arabic Mathematical Teh -\U1EE16;Arabic Mathematical Theh -\U1EE17;Arabic Mathematical Khah -\U1EE18;Arabic Mathematical Thal -\U1EE19;Arabic Mathematical Dad -\U1EE1A;Arabic Mathematical Zah -\U1EE1B;Arabic Mathematical Ghain -\U1EE1C;Arabic Mathematical Dotless Beh -\U1EE1D;Arabic Mathematical Dotless Noon -\U1EE1E;Arabic Mathematical Dotless Feh -\U1EE1F;Arabic Mathematical Dotless Qaf -\U1EE21;Arabic Mathematical Initial Beh -\U1EE22;Arabic Mathematical Initial Jeem -\U1EE24;Arabic Mathematical Initial Heh -\U1EE27;Arabic Mathematical Initial Hah -\U1EE29;Arabic Mathematical Initial Yeh -\U1EE2A;Arabic Mathematical Initial Kaf -\U1EE2B;Arabic Mathematical Initial Lam -\U1EE2C;Arabic Mathematical Initial Meem -\U1EE2D;Arabic Mathematical Initial Noon -\U1EE2E;Arabic Mathematical Initial Seen -\U1EE2F;Arabic Mathematical Initial Ain -\U1EE30;Arabic Mathematical Initial Feh -\U1EE31;Arabic Mathematical Initial Sad -\U1EE32;Arabic Mathematical Initial Qaf -\U1EE34;Arabic Mathematical Initial Sheen -\U1EE35;Arabic Mathematical Initial Teh -\U1EE36;Arabic Mathematical Initial Theh -\U1EE37;Arabic Mathematical Initial Khah -\U1EE39;Arabic Mathematical Initial Dad -\U1EE3B;Arabic Mathematical Initial Ghain -\U1EE42;Arabic Mathematical Tailed Jeem -\U1EE47;Arabic Mathematical Tailed Hah -\U1EE49;Arabic Mathematical Tailed Yeh -\U1EE4B;Arabic Mathematical Tailed Lam -\U1EE4D;Arabic Mathematical Tailed Noon -\U1EE4E;Arabic Mathematical Tailed Seen -\U1EE4F;Arabic Mathematical Tailed Ain -\U1EE51;Arabic Mathematical Tailed Sad -\U1EE52;Arabic Mathematical Tailed Qaf -\U1EE54;Arabic Mathematical Tailed Sheen -\U1EE57;Arabic Mathematical Tailed Khah -\U1EE59;Arabic Mathematical Tailed Dad -\U1EE5B;Arabic Mathematical Tailed Ghain -\U1EE5D;Arabic Mathematical Tailed Dotless Noon -\U1EE5F;Arabic Mathematical Tailed Dotless Qaf -\U1EE61;Arabic Mathematical Stretched Beh -\U1EE62;Arabic Mathematical Stretched Jeem -\U1EE64;Arabic Mathematical Stretched Heh -\U1EE67;Arabic Mathematical Stretched Hah -\U1EE68;Arabic Mathematical Stretched Tah -\U1EE69;Arabic Mathematical Stretched Yeh -\U1EE6A;Arabic Mathematical Stretched Kaf -\U1EE6C;Arabic Mathematical Stretched Meem -\U1EE6D;Arabic Mathematical Stretched Noon -\U1EE6E;Arabic Mathematical Stretched Seen -\U1EE6F;Arabic Mathematical Stretched Ain -\U1EE70;Arabic Mathematical Stretched Feh -\U1EE71;Arabic Mathematical Stretched Sad -\U1EE72;Arabic Mathematical Stretched Qaf -\U1EE74;Arabic Mathematical Stretched Sheen -\U1EE75;Arabic Mathematical Stretched Teh -\U1EE76;Arabic Mathematical Stretched Theh -\U1EE77;Arabic Mathematical Stretched Khah -\U1EE79;Arabic Mathematical Stretched Dad -\U1EE7A;Arabic Mathematical Stretched Zah -\U1EE7B;Arabic Mathematical Stretched Ghain -\U1EE7C;Arabic Mathematical Stretched Dotless Beh -\U1EE7E;Arabic Mathematical Stretched Dotless Feh -\U1EE80;Arabic Mathematical Looped Alef -\U1EE81;Arabic Mathematical Looped Beh -\U1EE82;Arabic Mathematical Looped Jeem -\U1EE83;Arabic Mathematical Looped Dal -\U1EE84;Arabic Mathematical Looped Heh -\U1EE85;Arabic Mathematical Looped Waw -\U1EE86;Arabic Mathematical Looped Zain -\U1EE87;Arabic Mathematical Looped Hah -\U1EE88;Arabic Mathematical Looped Tah -\U1EE89;Arabic Mathematical Looped Yeh -\U1EE8B;Arabic Mathematical Looped Lam -\U1EE8C;Arabic Mathematical Looped Meem -\U1EE8D;Arabic Mathematical Looped Noon -\U1EE8E;Arabic Mathematical Looped Seen -\U1EE8F;Arabic Mathematical Looped Ain -\U1EE90;Arabic Mathematical Looped Feh -\U1EE91;Arabic Mathematical Looped Sad -\U1EE92;Arabic Mathematical Looped Qaf -\U1EE93;Arabic Mathematical Looped Reh -\U1EE94;Arabic Mathematical Looped Sheen -\U1EE95;Arabic Mathematical Looped Teh -\U1EE96;Arabic Mathematical Looped Theh -\U1EE97;Arabic Mathematical Looped Khah -\U1EE98;Arabic Mathematical Looped Thal -\U1EE99;Arabic Mathematical Looped Dad -\U1EE9A;Arabic Mathematical Looped Zah -\U1EE9B;Arabic Mathematical Looped Ghain -\U1EEA1;Arabic Mathematical Double-Struck Beh -\U1EEA2;Arabic Mathematical Double-Struck Jeem -\U1EEA3;Arabic Mathematical Double-Struck Dal -\U1EEA5;Arabic Mathematical Double-Struck Waw -\U1EEA6;Arabic Mathematical Double-Struck Zain -\U1EEA7;Arabic Mathematical Double-Struck Hah -\U1EEA8;Arabic Mathematical Double-Struck Tah -\U1EEA9;Arabic Mathematical Double-Struck Yeh -\U1EEAB;Arabic Mathematical Double-Struck Lam -\U1EEAC;Arabic Mathematical Double-Struck Meem -\U1EEAD;Arabic Mathematical Double-Struck Noon -\U1EEAE;Arabic Mathematical Double-Struck Seen -\U1EEAF;Arabic Mathematical Double-Struck Ain -\U1EEB0;Arabic Mathematical Double-Struck Feh -\U1EEB1;Arabic Mathematical Double-Struck Sad -\U1EEB2;Arabic Mathematical Double-Struck Qaf -\U1EEB3;Arabic Mathematical Double-Struck Reh -\U1EEB4;Arabic Mathematical Double-Struck Sheen -\U1EEB5;Arabic Mathematical Double-Struck Teh -\U1EEB6;Arabic Mathematical Double-Struck Theh -\U1EEB7;Arabic Mathematical Double-Struck Khah -\U1EEB8;Arabic Mathematical Double-Struck Thal -\U1EEB9;Arabic Mathematical Double-Struck Dad -\U1EEBA;Arabic Mathematical Double-Struck Zah -\U1EEBB;Arabic Mathematical Double-Struck Ghain -\U1EEF0;Arabic Mathematical Operator Meem With Hah With Tatweel -\U1EEF1;Arabic Mathematical Operator Hah With Dal -\U1F000;Mahjong Tile East Wind -\U1F001;Mahjong Tile South Wind -\U1F002;Mahjong Tile West Wind -\U1F003;Mahjong Tile North Wind -\U1F004;Mahjong Tile Red Dragon -\U1F005;Mahjong Tile Green Dragon -\U1F006;Mahjong Tile White Dragon -\U1F007;Mahjong Tile One Of Characters -\U1F008;Mahjong Tile Two Of Characters -\U1F009;Mahjong Tile Three Of Characters -\U1F00A;Mahjong Tile Four Of Characters -\U1F00B;Mahjong Tile Five Of Characters -\U1F00C;Mahjong Tile Six Of Characters -\U1F00D;Mahjong Tile Seven Of Characters -\U1F00E;Mahjong Tile Eight Of Characters -\U1F00F;Mahjong Tile Nine Of Characters -\U1F010;Mahjong Tile One Of Bamboos -\U1F011;Mahjong Tile Two Of Bamboos -\U1F012;Mahjong Tile Three Of Bamboos -\U1F013;Mahjong Tile Four Of Bamboos -\U1F014;Mahjong Tile Five Of Bamboos -\U1F015;Mahjong Tile Six Of Bamboos -\U1F016;Mahjong Tile Seven Of Bamboos -\U1F017;Mahjong Tile Eight Of Bamboos -\U1F018;Mahjong Tile Nine Of Bamboos -\U1F019;Mahjong Tile One Of Circles -\U1F01A;Mahjong Tile Two Of Circles -\U1F01B;Mahjong Tile Three Of Circles -\U1F01C;Mahjong Tile Four Of Circles -\U1F01D;Mahjong Tile Five Of Circles -\U1F01E;Mahjong Tile Six Of Circles -\U1F01F;Mahjong Tile Seven Of Circles -\U1F020;Mahjong Tile Eight Of Circles -\U1F021;Mahjong Tile Nine Of Circles -\U1F022;Mahjong Tile Plum -\U1F023;Mahjong Tile Orchid -\U1F024;Mahjong Tile Bamboo -\U1F025;Mahjong Tile Chrysanthemum -\U1F026;Mahjong Tile Spring -\U1F027;Mahjong Tile Summer -\U1F028;Mahjong Tile Autumn -\U1F029;Mahjong Tile Winter -\U1F02A;Mahjong Tile Joker -\U1F02B;Mahjong Tile Back -\U1F030;Domino Tile Horizontal Back -\U1F031;Domino Tile Horizontal-00-00 -\U1F032;Domino Tile Horizontal-00-01 -\U1F033;Domino Tile Horizontal-00-02 -\U1F034;Domino Tile Horizontal-00-03 -\U1F035;Domino Tile Horizontal-00-04 -\U1F036;Domino Tile Horizontal-00-05 -\U1F037;Domino Tile Horizontal-00-06 -\U1F038;Domino Tile Horizontal-01-00 -\U1F039;Domino Tile Horizontal-01-01 -\U1F03A;Domino Tile Horizontal-01-02 -\U1F03B;Domino Tile Horizontal-01-03 -\U1F03C;Domino Tile Horizontal-01-04 -\U1F03D;Domino Tile Horizontal-01-05 -\U1F03E;Domino Tile Horizontal-01-06 -\U1F03F;Domino Tile Horizontal-02-00 -\U1F040;Domino Tile Horizontal-02-01 -\U1F041;Domino Tile Horizontal-02-02 -\U1F042;Domino Tile Horizontal-02-03 -\U1F043;Domino Tile Horizontal-02-04 -\U1F044;Domino Tile Horizontal-02-05 -\U1F045;Domino Tile Horizontal-02-06 -\U1F046;Domino Tile Horizontal-03-00 -\U1F047;Domino Tile Horizontal-03-01 -\U1F048;Domino Tile Horizontal-03-02 -\U1F049;Domino Tile Horizontal-03-03 -\U1F04A;Domino Tile Horizontal-03-04 -\U1F04B;Domino Tile Horizontal-03-05 -\U1F04C;Domino Tile Horizontal-03-06 -\U1F04D;Domino Tile Horizontal-04-00 -\U1F04E;Domino Tile Horizontal-04-01 -\U1F04F;Domino Tile Horizontal-04-02 -\U1F050;Domino Tile Horizontal-04-03 -\U1F051;Domino Tile Horizontal-04-04 -\U1F052;Domino Tile Horizontal-04-05 -\U1F053;Domino Tile Horizontal-04-06 -\U1F054;Domino Tile Horizontal-05-00 -\U1F055;Domino Tile Horizontal-05-01 -\U1F056;Domino Tile Horizontal-05-02 -\U1F057;Domino Tile Horizontal-05-03 -\U1F058;Domino Tile Horizontal-05-04 -\U1F059;Domino Tile Horizontal-05-05 -\U1F05A;Domino Tile Horizontal-05-06 -\U1F05B;Domino Tile Horizontal-06-00 -\U1F05C;Domino Tile Horizontal-06-01 -\U1F05D;Domino Tile Horizontal-06-02 -\U1F05E;Domino Tile Horizontal-06-03 -\U1F05F;Domino Tile Horizontal-06-04 -\U1F060;Domino Tile Horizontal-06-05 -\U1F061;Domino Tile Horizontal-06-06 -\U1F062;Domino Tile Vertical Back -\U1F063;Domino Tile Vertical-00-00 -\U1F064;Domino Tile Vertical-00-01 -\U1F065;Domino Tile Vertical-00-02 -\U1F066;Domino Tile Vertical-00-03 -\U1F067;Domino Tile Vertical-00-04 -\U1F068;Domino Tile Vertical-00-05 -\U1F069;Domino Tile Vertical-00-06 -\U1F06A;Domino Tile Vertical-01-00 -\U1F06B;Domino Tile Vertical-01-01 -\U1F06C;Domino Tile Vertical-01-02 -\U1F06D;Domino Tile Vertical-01-03 -\U1F06E;Domino Tile Vertical-01-04 -\U1F06F;Domino Tile Vertical-01-05 -\U1F070;Domino Tile Vertical-01-06 -\U1F071;Domino Tile Vertical-02-00 -\U1F072;Domino Tile Vertical-02-01 -\U1F073;Domino Tile Vertical-02-02 -\U1F074;Domino Tile Vertical-02-03 -\U1F075;Domino Tile Vertical-02-04 -\U1F076;Domino Tile Vertical-02-05 -\U1F077;Domino Tile Vertical-02-06 -\U1F078;Domino Tile Vertical-03-00 -\U1F079;Domino Tile Vertical-03-01 -\U1F07A;Domino Tile Vertical-03-02 -\U1F07B;Domino Tile Vertical-03-03 -\U1F07C;Domino Tile Vertical-03-04 -\U1F07D;Domino Tile Vertical-03-05 -\U1F07E;Domino Tile Vertical-03-06 -\U1F07F;Domino Tile Vertical-04-00 -\U1F080;Domino Tile Vertical-04-01 -\U1F081;Domino Tile Vertical-04-02 -\U1F082;Domino Tile Vertical-04-03 -\U1F083;Domino Tile Vertical-04-04 -\U1F084;Domino Tile Vertical-04-05 -\U1F085;Domino Tile Vertical-04-06 -\U1F086;Domino Tile Vertical-05-00 -\U1F087;Domino Tile Vertical-05-01 -\U1F088;Domino Tile Vertical-05-02 -\U1F089;Domino Tile Vertical-05-03 -\U1F08A;Domino Tile Vertical-05-04 -\U1F08B;Domino Tile Vertical-05-05 -\U1F08C;Domino Tile Vertical-05-06 -\U1F08D;Domino Tile Vertical-06-00 -\U1F08E;Domino Tile Vertical-06-01 -\U1F08F;Domino Tile Vertical-06-02 -\U1F090;Domino Tile Vertical-06-03 -\U1F091;Domino Tile Vertical-06-04 -\U1F092;Domino Tile Vertical-06-05 -\U1F093;Domino Tile Vertical-06-06 -\U1F0A0;Playing Card Back -\U1F0A1;Playing Card Ace Of Spades -\U1F0A2;Playing Card Two Of Spades -\U1F0A3;Playing Card Three Of Spades -\U1F0A4;Playing Card Four Of Spades -\U1F0A5;Playing Card Five Of Spades -\U1F0A6;Playing Card Six Of Spades -\U1F0A7;Playing Card Seven Of Spades -\U1F0A8;Playing Card Eight Of Spades -\U1F0A9;Playing Card Nine Of Spades -\U1F0AA;Playing Card Ten Of Spades -\U1F0AB;Playing Card Jack Of Spades -\U1F0AC;Playing Card Knight Of Spades -\U1F0AD;Playing Card Queen Of Spades -\U1F0AE;Playing Card King Of Spades -\U1F0B1;Playing Card Ace Of Hearts -\U1F0B2;Playing Card Two Of Hearts -\U1F0B3;Playing Card Three Of Hearts -\U1F0B4;Playing Card Four Of Hearts -\U1F0B5;Playing Card Five Of Hearts -\U1F0B6;Playing Card Six Of Hearts -\U1F0B7;Playing Card Seven Of Hearts -\U1F0B8;Playing Card Eight Of Hearts -\U1F0B9;Playing Card Nine Of Hearts -\U1F0BA;Playing Card Ten Of Hearts -\U1F0BB;Playing Card Jack Of Hearts -\U1F0BC;Playing Card Knight Of Hearts -\U1F0BD;Playing Card Queen Of Hearts -\U1F0BE;Playing Card King Of Hearts -\U1F0BF;Playing Card Red Joker -\U1F0C1;Playing Card Ace Of Diamonds -\U1F0C2;Playing Card Two Of Diamonds -\U1F0C3;Playing Card Three Of Diamonds -\U1F0C4;Playing Card Four Of Diamonds -\U1F0C5;Playing Card Five Of Diamonds -\U1F0C6;Playing Card Six Of Diamonds -\U1F0C7;Playing Card Seven Of Diamonds -\U1F0C8;Playing Card Eight Of Diamonds -\U1F0C9;Playing Card Nine Of Diamonds -\U1F0CA;Playing Card Ten Of Diamonds -\U1F0CB;Playing Card Jack Of Diamonds -\U1F0CC;Playing Card Knight Of Diamonds -\U1F0CD;Playing Card Queen Of Diamonds -\U1F0CE;Playing Card King Of Diamonds -\U1F0CF;Playing Card Black Joker -\U1F0D1;Playing Card Ace Of Clubs -\U1F0D2;Playing Card Two Of Clubs -\U1F0D3;Playing Card Three Of Clubs -\U1F0D4;Playing Card Four Of Clubs -\U1F0D5;Playing Card Five Of Clubs -\U1F0D6;Playing Card Six Of Clubs -\U1F0D7;Playing Card Seven Of Clubs -\U1F0D8;Playing Card Eight Of Clubs -\U1F0D9;Playing Card Nine Of Clubs -\U1F0DA;Playing Card Ten Of Clubs -\U1F0DB;Playing Card Jack Of Clubs -\U1F0DC;Playing Card Knight Of Clubs -\U1F0DD;Playing Card Queen Of Clubs -\U1F0DE;Playing Card King Of Clubs -\U1F0DF;Playing Card White Joker -\U1F0E0;Playing Card Fool -\U1F0E1;Playing Card Trump-1 -\U1F0E2;Playing Card Trump-2 -\U1F0E3;Playing Card Trump-3 -\U1F0E4;Playing Card Trump-4 -\U1F0E5;Playing Card Trump-5 -\U1F0E6;Playing Card Trump-6 -\U1F0E7;Playing Card Trump-7 -\U1F0E8;Playing Card Trump-8 -\U1F0E9;Playing Card Trump-9 -\U1F0EA;Playing Card Trump-10 -\U1F0EB;Playing Card Trump-11 -\U1F0EC;Playing Card Trump-12 -\U1F0ED;Playing Card Trump-13 -\U1F0EE;Playing Card Trump-14 -\U1F0EF;Playing Card Trump-15 -\U1F0F0;Playing Card Trump-16 -\U1F0F1;Playing Card Trump-17 -\U1F0F2;Playing Card Trump-18 -\U1F0F3;Playing Card Trump-19 -\U1F0F4;Playing Card Trump-20 -\U1F0F5;Playing Card Trump-21 -\U1F100;Digit Zero Full Stop -\U1F101;Digit Zero Comma -\U1F102;Digit One Comma -\U1F103;Digit Two Comma -\U1F104;Digit Three Comma -\U1F105;Digit Four Comma -\U1F106;Digit Five Comma -\U1F107;Digit Six Comma -\U1F108;Digit Seven Comma -\U1F109;Digit Eight Comma -\U1F10A;Digit Nine Comma -\U1F10B;Dingbat Circled Sans-Serif Digit Zero -\U1F10C;Dingbat Negative Circled Sans-Serif Digit Zero -\U1F10D;Circled Zero With Slash -\U1F10E;Circled Anticlockwise Arrow -\U1F10F;Circled Dollar Sign With Overlaid Backslash -\U1F110;Parenthesized Latin Capital Letter A -\U1F111;Parenthesized Latin Capital Letter B -\U1F112;Parenthesized Latin Capital Letter C -\U1F113;Parenthesized Latin Capital Letter D -\U1F114;Parenthesized Latin Capital Letter E -\U1F115;Parenthesized Latin Capital Letter F -\U1F116;Parenthesized Latin Capital Letter G -\U1F117;Parenthesized Latin Capital Letter H -\U1F118;Parenthesized Latin Capital Letter I -\U1F119;Parenthesized Latin Capital Letter J -\U1F11A;Parenthesized Latin Capital Letter K -\U1F11B;Parenthesized Latin Capital Letter L -\U1F11C;Parenthesized Latin Capital Letter M -\U1F11D;Parenthesized Latin Capital Letter N -\U1F11E;Parenthesized Latin Capital Letter O -\U1F11F;Parenthesized Latin Capital Letter P -\U1F120;Parenthesized Latin Capital Letter Q -\U1F121;Parenthesized Latin Capital Letter R -\U1F122;Parenthesized Latin Capital Letter S -\U1F123;Parenthesized Latin Capital Letter T -\U1F124;Parenthesized Latin Capital Letter U -\U1F125;Parenthesized Latin Capital Letter V -\U1F126;Parenthesized Latin Capital Letter W -\U1F127;Parenthesized Latin Capital Letter X -\U1F128;Parenthesized Latin Capital Letter Y -\U1F129;Parenthesized Latin Capital Letter Z -\U1F12A;Tortoise Shell Bracketed Latin Capital Letter S -\U1F12B;Circled Italic Latin Capital Letter C -\U1F12C;Circled Italic Latin Capital Letter R -\U1F12D;Circled Cd -\U1F12E;Circled Wz -\U1F12F;Copyleft Symbol -\U1F130;Squared Latin Capital Letter A -\U1F131;Squared Latin Capital Letter B -\U1F132;Squared Latin Capital Letter C -\U1F133;Squared Latin Capital Letter D -\U1F134;Squared Latin Capital Letter E -\U1F135;Squared Latin Capital Letter F -\U1F136;Squared Latin Capital Letter G -\U1F137;Squared Latin Capital Letter H -\U1F138;Squared Latin Capital Letter I -\U1F139;Squared Latin Capital Letter J -\U1F13A;Squared Latin Capital Letter K -\U1F13B;Squared Latin Capital Letter L -\U1F13C;Squared Latin Capital Letter M -\U1F13D;Squared Latin Capital Letter N -\U1F13E;Squared Latin Capital Letter O -\U1F13F;Squared Latin Capital Letter P -\U1F140;Squared Latin Capital Letter Q -\U1F141;Squared Latin Capital Letter R -\U1F142;Squared Latin Capital Letter S -\U1F143;Squared Latin Capital Letter T -\U1F144;Squared Latin Capital Letter U -\U1F145;Squared Latin Capital Letter V -\U1F146;Squared Latin Capital Letter W -\U1F147;Squared Latin Capital Letter X -\U1F148;Squared Latin Capital Letter Y -\U1F149;Squared Latin Capital Letter Z -\U1F14A;Squared Hv -\U1F14B;Squared Mv -\U1F14C;Squared Sd -\U1F14D;Squared Ss -\U1F14E;Squared Ppv -\U1F14F;Squared Wc -\U1F150;Negative Circled Latin Capital Letter A -\U1F151;Negative Circled Latin Capital Letter B -\U1F152;Negative Circled Latin Capital Letter C -\U1F153;Negative Circled Latin Capital Letter D -\U1F154;Negative Circled Latin Capital Letter E -\U1F155;Negative Circled Latin Capital Letter F -\U1F156;Negative Circled Latin Capital Letter G -\U1F157;Negative Circled Latin Capital Letter H -\U1F158;Negative Circled Latin Capital Letter I -\U1F159;Negative Circled Latin Capital Letter J -\U1F15A;Negative Circled Latin Capital Letter K -\U1F15B;Negative Circled Latin Capital Letter L -\U1F15C;Negative Circled Latin Capital Letter M -\U1F15D;Negative Circled Latin Capital Letter N -\U1F15E;Negative Circled Latin Capital Letter O -\U1F15F;Negative Circled Latin Capital Letter P -\U1F160;Negative Circled Latin Capital Letter Q -\U1F161;Negative Circled Latin Capital Letter R -\U1F162;Negative Circled Latin Capital Letter S -\U1F163;Negative Circled Latin Capital Letter T -\U1F164;Negative Circled Latin Capital Letter U -\U1F165;Negative Circled Latin Capital Letter V -\U1F166;Negative Circled Latin Capital Letter W -\U1F167;Negative Circled Latin Capital Letter X -\U1F168;Negative Circled Latin Capital Letter Y -\U1F169;Negative Circled Latin Capital Letter Z -\U1F16A;Raised Mc Sign -\U1F16B;Raised Md Sign -\U1F16C;Raised Mr Sign -\U1F16D;Circled Cc -\U1F16E;Circled C With Overlaid Backslash -\U1F16F;Circled Human Figure -\U1F170;Negative Squared Latin Capital Letter A -\U1F171;Negative Squared Latin Capital Letter B -\U1F172;Negative Squared Latin Capital Letter C -\U1F173;Negative Squared Latin Capital Letter D -\U1F174;Negative Squared Latin Capital Letter E -\U1F175;Negative Squared Latin Capital Letter F -\U1F176;Negative Squared Latin Capital Letter G -\U1F177;Negative Squared Latin Capital Letter H -\U1F178;Negative Squared Latin Capital Letter I -\U1F179;Negative Squared Latin Capital Letter J -\U1F17A;Negative Squared Latin Capital Letter K -\U1F17B;Negative Squared Latin Capital Letter L -\U1F17C;Negative Squared Latin Capital Letter M -\U1F17D;Negative Squared Latin Capital Letter N -\U1F17E;Negative Squared Latin Capital Letter O -\U1F17F;Negative Squared Latin Capital Letter P -\U1F180;Negative Squared Latin Capital Letter Q -\U1F181;Negative Squared Latin Capital Letter R -\U1F182;Negative Squared Latin Capital Letter S -\U1F183;Negative Squared Latin Capital Letter T -\U1F184;Negative Squared Latin Capital Letter U -\U1F185;Negative Squared Latin Capital Letter V -\U1F186;Negative Squared Latin Capital Letter W -\U1F187;Negative Squared Latin Capital Letter X -\U1F188;Negative Squared Latin Capital Letter Y -\U1F189;Negative Squared Latin Capital Letter Z -\U1F18A;Crossed Negative Squared Latin Capital Letter P -\U1F18B;Negative Squared Ic -\U1F18C;Negative Squared Pa -\U1F18D;Negative Squared Sa -\U1F18E;Negative Squared Ab -\U1F18F;Negative Squared Wc -\U1F190;Square Dj -\U1F191;Squared Cl -\U1F192;Squared Cool -\U1F193;Squared Free -\U1F194;Squared Id -\U1F195;Squared New -\U1F196;Squared Ng -\U1F197;Squared Ok -\U1F198;Squared Sos -\U1F199;Squared Up With Exclamation Mark -\U1F19A;Squared Vs -\U1F19B;Squared Three D -\U1F19C;Squared Second Screen -\U1F19D;Squared Two K -\U1F19E;Squared Four K -\U1F19F;Squared Eight K -\U1F1A0;Squared Five Point One -\U1F1A1;Squared Seven Point One -\U1F1A2;Squared Twenty-Two Point Two -\U1F1A3;Squared Sixty P -\U1F1A4;Squared One Hundred Twenty P -\U1F1A5;Squared Latin Small Letter D -\U1F1A6;Squared Hc -\U1F1A7;Squared Hdr -\U1F1A8;Squared Hi-Res -\U1F1A9;Squared Lossless -\U1F1AA;Squared Shv -\U1F1AB;Squared Uhd -\U1F1AC;Squared Vod -\U1F1AD;Mask Work Symbol -\U1F1E6;Regional Indicator Symbol Letter A -\U1F1E7;Regional Indicator Symbol Letter B -\U1F1E8;Regional Indicator Symbol Letter C -\U1F1E9;Regional Indicator Symbol Letter D -\U1F1EA;Regional Indicator Symbol Letter E -\U1F1EB;Regional Indicator Symbol Letter F -\U1F1EC;Regional Indicator Symbol Letter G -\U1F1ED;Regional Indicator Symbol Letter H -\U1F1EE;Regional Indicator Symbol Letter I -\U1F1EF;Regional Indicator Symbol Letter J -\U1F1F0;Regional Indicator Symbol Letter K -\U1F1F1;Regional Indicator Symbol Letter L -\U1F1F2;Regional Indicator Symbol Letter M -\U1F1F3;Regional Indicator Symbol Letter N -\U1F1F4;Regional Indicator Symbol Letter O -\U1F1F5;Regional Indicator Symbol Letter P -\U1F1F6;Regional Indicator Symbol Letter Q -\U1F1F7;Regional Indicator Symbol Letter R -\U1F1F8;Regional Indicator Symbol Letter S -\U1F1F9;Regional Indicator Symbol Letter T -\U1F1FA;Regional Indicator Symbol Letter U -\U1F1FB;Regional Indicator Symbol Letter V -\U1F1FC;Regional Indicator Symbol Letter W -\U1F1FD;Regional Indicator Symbol Letter X -\U1F1FE;Regional Indicator Symbol Letter Y -\U1F1FF;Regional Indicator Symbol Letter Z -\U1F200;Square Hiragana Hoka -\U1F201;Squared Katakana Koko -\U1F202;Squared Katakana Sa -\U1F210;Squared Cjk Unified Ideograph-624B -\U1F211;Squared Cjk Unified Ideograph-5b57 -\U1F212;Squared Cjk Unified Ideograph-53CC -\U1F213;Squared Katakana De -\U1F214;Squared Cjk Unified Ideograph-4e8C -\U1F215;Squared Cjk Unified Ideograph-591A -\U1F216;Squared Cjk Unified Ideograph-89E3 -\U1F217;Squared Cjk Unified Ideograph-5929 -\U1F218;Squared Cjk Unified Ideograph-4ea4 -\U1F219;Squared Cjk Unified Ideograph-6620 -\U1F21A;Squared Cjk Unified Ideograph-7121 -\U1F21B;Squared Cjk Unified Ideograph-6599 -\U1F21C;Squared Cjk Unified Ideograph-524D -\U1F21D;Squared Cjk Unified Ideograph-5f8C -\U1F21E;Squared Cjk Unified Ideograph-518D -\U1F21F;Squared Cjk Unified Ideograph-65B0 -\U1F220;Squared Cjk Unified Ideograph-521D -\U1F221;Squared Cjk Unified Ideograph-7d42 -\U1F222;Squared Cjk Unified Ideograph-751F -\U1F223;Squared Cjk Unified Ideograph-8ca9 -\U1F224;Squared Cjk Unified Ideograph-58F0 -\U1F225;Squared Cjk Unified Ideograph-5439 -\U1F226;Squared Cjk Unified Ideograph-6f14 -\U1F227;Squared Cjk Unified Ideograph-6295 -\U1F228;Squared Cjk Unified Ideograph-6355 -\U1F229;Squared Cjk Unified Ideograph-4e00 -\U1F22A;Squared Cjk Unified Ideograph-4e09 -\U1F22B;Squared Cjk Unified Ideograph-904A -\U1F22C;Squared Cjk Unified Ideograph-5de6 -\U1F22D;Squared Cjk Unified Ideograph-4e2D -\U1F22E;Squared Cjk Unified Ideograph-53F3 -\U1F22F;Squared Cjk Unified Ideograph-6307 -\U1F230;Squared Cjk Unified Ideograph-8d70 -\U1F231;Squared Cjk Unified Ideograph-6253 -\U1F232;Squared Cjk Unified Ideograph-7981 -\U1F233;Squared Cjk Unified Ideograph-7a7A -\U1F234;Squared Cjk Unified Ideograph-5408 -\U1F235;Squared Cjk Unified Ideograph-6e80 -\U1F236;Squared Cjk Unified Ideograph-6709 -\U1F237;Squared Cjk Unified Ideograph-6708 -\U1F238;Squared Cjk Unified Ideograph-7533 -\U1F239;Squared Cjk Unified Ideograph-5272 -\U1F23A;Squared Cjk Unified Ideograph-55B6 -\U1F23B;Squared Cjk Unified Ideograph-914D -\U1F240;Tortoise Shell Bracketed Cjk Unified Ideograph-672C -\U1F241;Tortoise Shell Bracketed Cjk Unified Ideograph-4e09 -\U1F242;Tortoise Shell Bracketed Cjk Unified Ideograph-4e8C -\U1F243;Tortoise Shell Bracketed Cjk Unified Ideograph-5b89 -\U1F244;Tortoise Shell Bracketed Cjk Unified Ideograph-70B9 -\U1F245;Tortoise Shell Bracketed Cjk Unified Ideograph-6253 -\U1F246;Tortoise Shell Bracketed Cjk Unified Ideograph-76D7 -\U1F247;Tortoise Shell Bracketed Cjk Unified Ideograph-52DD -\U1F248;Tortoise Shell Bracketed Cjk Unified Ideograph-6557 -\U1F250;Circled Ideograph Advantage -\U1F251;Circled Ideograph Accept -\U1F260;Rounded Symbol For Fu -\U1F261;Rounded Symbol For Lu -\U1F262;Rounded Symbol For Shou -\U1F263;Rounded Symbol For Xi -\U1F264;Rounded Symbol For Shuangxi -\U1F265;Rounded Symbol For Cai -\U1F300;Cyclone -\U1F301;Foggy -\U1F302;Closed Umbrella -\U1F303;Night With Stars -\U1F304;Sunrise Over Mountains -\U1F305;Sunrise -\U1F306;Cityscape At Dusk -\U1F307;Sunset Over Buildings -\U1F308;Rainbow -\U1F309;Bridge At Night -\U1F30A;Water Wave -\U1F30B;Volcano -\U1F30C;Milky Way -\U1F30D;Earth Globe Europe-Africa -\U1F30E;Earth Globe Americas -\U1F30F;Earth Globe Asia-Australia -\U1F310;Globe With Meridians -\U1F311;New Moon Symbol -\U1F312;Waxing Crescent Moon Symbol -\U1F313;First Quarter Moon Symbol -\U1F314;Waxing Gibbous Moon Symbol -\U1F315;Full Moon Symbol -\U1F316;Waning Gibbous Moon Symbol -\U1F317;Last Quarter Moon Symbol -\U1F318;Waning Crescent Moon Symbol -\U1F319;Crescent Moon -\U1F31A;New Moon With Face -\U1F31B;First Quarter Moon With Face -\U1F31C;Last Quarter Moon With Face -\U1F31D;Full Moon With Face -\U1F31E;Sun With Face -\U1F31F;Glowing Star -\U1F320;Shooting Star -\U1F321;Thermometer -\U1F322;Black Droplet -\U1F323;White Sun -\U1F324;White Sun With Small Cloud -\U1F325;White Sun Behind Cloud -\U1F326;White Sun Behind Cloud With Rain -\U1F327;Cloud With Rain -\U1F328;Cloud With Snow -\U1F329;Cloud With Lightning -\U1F32A;Cloud With Tornado -\U1F32B;Fog -\U1F32C;Wind Blowing Face -\U1F32D;Hot Dog -\U1F32E;Taco -\U1F32F;Burrito -\U1F330;Chestnut -\U1F331;Seedling -\U1F332;Evergreen Tree -\U1F333;Deciduous Tree -\U1F334;Palm Tree -\U1F335;Cactus -\U1F336;Hot Pepper -\U1F337;Tulip -\U1F338;Cherry Blossom -\U1F339;Rose -\U1F33A;Hibiscus -\U1F33B;Sunflower -\U1F33C;Blossom -\U1F33D;Ear Of Maize -\U1F33E;Ear Of Rice -\U1F33F;Herb -\U1F340;Four Leaf Clover -\U1F341;Maple Leaf -\U1F342;Fallen Leaf -\U1F343;Leaf Fluttering In Wind -\U1F344;Mushroom -\U1F345;Tomato -\U1F346;Aubergine -\U1F347;Grapes -\U1F348;Melon -\U1F349;Watermelon -\U1F34A;Tangerine -\U1F34B;Lemon -\U1F34C;Banana -\U1F34D;Pineapple -\U1F34E;Red Apple -\U1F34F;Green Apple -\U1F350;Pear -\U1F351;Peach -\U1F352;Cherries -\U1F353;Strawberry -\U1F354;Hamburger -\U1F355;Slice Of Pizza -\U1F356;Meat On Bone -\U1F357;Poultry Leg -\U1F358;Rice Cracker -\U1F359;Rice Ball -\U1F35A;Cooked Rice -\U1F35B;Curry And Rice -\U1F35C;Steaming Bowl -\U1F35D;Spaghetti -\U1F35E;Bread -\U1F35F;French Fries -\U1F360;Roasted Sweet Potato -\U1F361;Dango -\U1F362;Oden -\U1F363;Sushi -\U1F364;Fried Shrimp -\U1F365;Fish Cake With Swirl Design -\U1F366;Soft Ice Cream -\U1F367;Shaved Ice -\U1F368;Ice Cream -\U1F369;Doughnut -\U1F36A;Cookie -\U1F36B;Chocolate Bar -\U1F36C;Candy -\U1F36D;Lollipop -\U1F36E;Custard -\U1F36F;Honey Pot -\U1F370;Shortcake -\U1F371;Bento Box -\U1F372;Pot Of Food -\U1F373;Cooking -\U1F374;Fork And Knife -\U1F375;Teacup Without Handle -\U1F376;Sake Bottle And Cup -\U1F377;Wine Glass -\U1F378;Cocktail Glass -\U1F379;Tropical Drink -\U1F37A;Beer Mug -\U1F37B;Clinking Beer Mugs -\U1F37C;Baby Bottle -\U1F37D;Fork And Knife With Plate -\U1F37E;Bottle With Popping Cork -\U1F37F;Popcorn -\U1F380;Ribbon -\U1F381;Wrapped Present -\U1F382;Birthday Cake -\U1F383;Jack-O-Lantern -\U1F384;Christmas Tree -\U1F385;Father Christmas -\U1F386;Fireworks -\U1F387;Firework Sparkler -\U1F388;Balloon -\U1F389;Party Popper -\U1F38A;Confetti Ball -\U1F38B;Tanabata Tree -\U1F38C;Crossed Flags -\U1F38D;Pine Decoration -\U1F38E;Japanese Dolls -\U1F38F;Carp Streamer -\U1F390;Wind Chime -\U1F391;Moon Viewing Ceremony -\U1F392;School Satchel -\U1F393;Graduation Cap -\U1F394;Heart With Tip On The Left -\U1F395;Bouquet Of Flowers -\U1F396;Military Medal -\U1F397;Reminder Ribbon -\U1F398;Musical Keyboard With Jacks -\U1F399;Studio Microphone -\U1F39A;Level Slider -\U1F39B;Control Knobs -\U1F39C;Beamed Ascending Musical Notes -\U1F39D;Beamed Descending Musical Notes -\U1F39E;Film Frames -\U1F39F;Admission Tickets -\U1F3A0;Carousel Horse -\U1F3A1;Ferris Wheel -\U1F3A2;Roller Coaster -\U1F3A3;Fishing Pole And Fish -\U1F3A4;Microphone -\U1F3A5;Movie Camera -\U1F3A6;Cinema -\U1F3A7;Headphone -\U1F3A8;Artist Palette -\U1F3A9;Top Hat -\U1F3AA;Circus Tent -\U1F3AB;Ticket -\U1F3AC;Clapper Board -\U1F3AD;Performing Arts -\U1F3AE;Video Game -\U1F3AF;Direct Hit -\U1F3B0;Slot Machine -\U1F3B1;Billiards -\U1F3B2;Game Die -\U1F3B3;Bowling -\U1F3B4;Flower Playing Cards -\U1F3B5;Musical Note -\U1F3B6;Multiple Musical Notes -\U1F3B7;Saxophone -\U1F3B8;Guitar -\U1F3B9;Musical Keyboard -\U1F3BA;Trumpet -\U1F3BB;Violin -\U1F3BC;Musical Score -\U1F3BD;Running Shirt With Sash -\U1F3BE;Tennis Racquet And Ball -\U1F3BF;Ski And Ski Boot -\U1F3C0;Basketball And Hoop -\U1F3C1;Chequered Flag -\U1F3C2;Snowboarder -\U1F3C3;Runner -\U1F3C4;Surfer -\U1F3C5;Sports Medal -\U1F3C6;Trophy -\U1F3C7;Horse Racing -\U1F3C8;American Football -\U1F3C9;Rugby Football -\U1F3CA;Swimmer -\U1F3CB;Weight Lifter -\U1F3CC;Golfer -\U1F3CD;Racing Motorcycle -\U1F3CE;Racing Car -\U1F3CF;Cricket Bat And Ball -\U1F3D0;Volleyball -\U1F3D1;Field Hockey Stick And Ball -\U1F3D2;Ice Hockey Stick And Puck -\U1F3D3;Table Tennis Paddle And Ball -\U1F3D4;Snow Capped Mountain -\U1F3D5;Camping -\U1F3D6;Beach With Umbrella -\U1F3D7;Building Construction -\U1F3D8;House Buildings -\U1F3D9;Cityscape -\U1F3DA;Derelict House Building -\U1F3DB;Classical Building -\U1F3DC;Desert -\U1F3DD;Desert Island -\U1F3DE;National Park -\U1F3DF;Stadium -\U1F3E0;House Building -\U1F3E1;House With Garden -\U1F3E2;Office Building -\U1F3E3;Japanese Post Office -\U1F3E4;European Post Office -\U1F3E5;Hospital -\U1F3E6;Bank -\U1F3E7;Automated Teller Machine -\U1F3E8;Hotel -\U1F3E9;Love Hotel -\U1F3EA;Convenience Store -\U1F3EB;School -\U1F3EC;Department Store -\U1F3ED;Factory -\U1F3EE;Izakaya Lantern -\U1F3EF;Japanese Castle -\U1F3F0;European Castle -\U1F3F1;White Pennant -\U1F3F2;Black Pennant -\U1F3F3;Waving White Flag -\U1F3F4;Waving Black Flag -\U1F3F5;Rosette -\U1F3F6;Black Rosette -\U1F3F7;Label -\U1F3F8;Badminton Racquet And Shuttlecock -\U1F3F9;Bow And Arrow -\U1F3FA;Amphora -\U1F3FB;Emoji Modifier Fitzpatrick Type-1-2 -\U1F3FC;Emoji Modifier Fitzpatrick Type-3 -\U1F3FD;Emoji Modifier Fitzpatrick Type-4 -\U1F3FE;Emoji Modifier Fitzpatrick Type-5 -\U1F3FF;Emoji Modifier Fitzpatrick Type-6 -\U1F400;Rat -\U1F401;Mouse -\U1F402;Ox -\U1F403;Water Buffalo -\U1F404;Cow -\U1F405;Tiger -\U1F406;Leopard -\U1F407;Rabbit -\U1F408;Cat -\U1F409;Dragon -\U1F40A;Crocodile -\U1F40B;Whale -\U1F40C;Snail -\U1F40D;Snake -\U1F40E;Horse -\U1F40F;Ram -\U1F410;Goat -\U1F411;Sheep -\U1F412;Monkey -\U1F413;Rooster -\U1F414;Chicken -\U1F415;Dog -\U1F416;Pig -\U1F417;Boar -\U1F418;Elephant -\U1F419;Octopus -\U1F41A;Spiral Shell -\U1F41B;Bug -\U1F41C;Ant -\U1F41D;Honeybee -\U1F41E;Lady Beetle -\U1F41F;Fish -\U1F420;Tropical Fish -\U1F421;Blowfish -\U1F422;Turtle -\U1F423;Hatching Chick -\U1F424;Baby Chick -\U1F425;Front-Facing Baby Chick -\U1F426;Bird -\U1F427;Penguin -\U1F428;Koala -\U1F429;Poodle -\U1F42A;Dromedary Camel -\U1F42B;Bactrian Camel -\U1F42C;Dolphin -\U1F42D;Mouse Face -\U1F42E;Cow Face -\U1F42F;Tiger Face -\U1F430;Rabbit Face -\U1F431;Cat Face -\U1F432;Dragon Face -\U1F433;Spouting Whale -\U1F434;Horse Face -\U1F435;Monkey Face -\U1F436;Dog Face -\U1F437;Pig Face -\U1F438;Frog Face -\U1F439;Hamster Face -\U1F43A;Wolf Face -\U1F43B;Bear Face -\U1F43C;Panda Face -\U1F43D;Pig Nose -\U1F43E;Paw Prints -\U1F43F;Chipmunk -\U1F440;Eyes -\U1F441;Eye -\U1F442;Ear -\U1F443;Nose -\U1F444;Mouth -\U1F445;Tongue -\U1F446;White Up Pointing Backhand Index -\U1F447;White Down Pointing Backhand Index -\U1F448;White Left Pointing Backhand Index -\U1F449;White Right Pointing Backhand Index -\U1F44A;Fisted Hand Sign -\U1F44B;Waving Hand Sign -\U1F44C;Ok Hand Sign -\U1F44D;Thumbs Up Sign -\U1F44E;Thumbs Down Sign -\U1F44F;Clapping Hands Sign -\U1F450;Open Hands Sign -\U1F451;Crown -\U1F452;Womans Hat -\U1F453;Eyeglasses -\U1F454;Necktie -\U1F455;T-Shirt -\U1F456;Jeans -\U1F457;Dress -\U1F458;Kimono -\U1F459;Bikini -\U1F45A;Womans Clothes -\U1F45B;Purse -\U1F45C;Handbag -\U1F45D;Pouch -\U1F45E;Mans Shoe -\U1F45F;Athletic Shoe -\U1F460;High-Heeled Shoe -\U1F461;Womans Sandal -\U1F462;Womans Boots -\U1F463;Footprints -\U1F464;Bust In Silhouette -\U1F465;Busts In Silhouette -\U1F466;Boy -\U1F467;Girl -\U1F468;Man -\U1F469;Woman -\U1F46A;Family -\U1F46B;Man And Woman Holding Hands -\U1F46C;Two Men Holding Hands -\U1F46D;Two Women Holding Hands -\U1F46E;Police Officer -\U1F46F;Woman With Bunny Ears -\U1F470;Bride With Veil -\U1F471;Person With Blond Hair -\U1F472;Man With Gua Pi Mao -\U1F473;Man With Turban -\U1F474;Older Man -\U1F475;Older Woman -\U1F476;Baby -\U1F477;Construction Worker -\U1F478;Princess -\U1F479;Japanese Ogre -\U1F47A;Japanese Goblin -\U1F47B;Ghost -\U1F47C;Baby Angel -\U1F47D;Extraterrestrial Alien -\U1F47E;Alien Monster -\U1F47F;Imp -\U1F480;Skull -\U1F481;Information Desk Person -\U1F482;Guardsman -\U1F483;Dancer -\U1F484;Lipstick -\U1F485;Nail Polish -\U1F486;Face Massage -\U1F487;Haircut -\U1F488;Barber Pole -\U1F489;Syringe -\U1F48A;Pill -\U1F48B;Kiss Mark -\U1F48C;Love Letter -\U1F48D;Ring -\U1F48E;Gem Stone -\U1F48F;Kiss -\U1F490;Bouquet -\U1F491;Couple With Heart -\U1F492;Wedding -\U1F493;Beating Heart -\U1F494;Broken Heart -\U1F495;Two Hearts -\U1F496;Sparkling Heart -\U1F497;Growing Heart -\U1F498;Heart With Arrow -\U1F499;Blue Heart -\U1F49A;Green Heart -\U1F49B;Yellow Heart -\U1F49C;Purple Heart -\U1F49D;Heart With Ribbon -\U1F49E;Revolving Hearts -\U1F49F;Heart Decoration -\U1F4A0;Diamond Shape With A Dot Inside -\U1F4A1;Electric Light Bulb -\U1F4A2;Anger Symbol -\U1F4A3;Bomb -\U1F4A4;Sleeping Symbol -\U1F4A5;Collision Symbol -\U1F4A6;Splashing Sweat Symbol -\U1F4A7;Droplet -\U1F4A8;Dash Symbol -\U1F4A9;Pile Of Poo -\U1F4AA;Flexed Biceps -\U1F4AB;Dizzy Symbol -\U1F4AC;Speech Balloon -\U1F4AD;Thought Balloon -\U1F4AE;White Flower -\U1F4AF;Hundred Points Symbol -\U1F4B0;Money Bag -\U1F4B1;Currency Exchange -\U1F4B2;Heavy Dollar Sign -\U1F4B3;Credit Card -\U1F4B4;Banknote With Yen Sign -\U1F4B5;Banknote With Dollar Sign -\U1F4B6;Banknote With Euro Sign -\U1F4B7;Banknote With Pound Sign -\U1F4B8;Money With Wings -\U1F4B9;Chart With Upwards Trend And Yen Sign -\U1F4BA;Seat -\U1F4BB;Personal Computer -\U1F4BC;Briefcase -\U1F4BD;Minidisc -\U1F4BE;Floppy Disk -\U1F4BF;Optical Disc -\U1F4C0;Dvd -\U1F4C1;File Folder -\U1F4C2;Open File Folder -\U1F4C3;Page With Curl -\U1F4C4;Page Facing Up -\U1F4C5;Calendar -\U1F4C6;Tear-Off Calendar -\U1F4C7;Card Index -\U1F4C8;Chart With Upwards Trend -\U1F4C9;Chart With Downwards Trend -\U1F4CA;Bar Chart -\U1F4CB;Clipboard -\U1F4CC;Pushpin -\U1F4CD;Round Pushpin -\U1F4CE;Paperclip -\U1F4CF;Straight Ruler -\U1F4D0;Triangular Ruler -\U1F4D1;Bookmark Tabs -\U1F4D2;Ledger -\U1F4D3;Notebook -\U1F4D4;Notebook With Decorative Cover -\U1F4D5;Closed Book -\U1F4D6;Open Book -\U1F4D7;Green Book -\U1F4D8;Blue Book -\U1F4D9;Orange Book -\U1F4DA;Books -\U1F4DB;Name Badge -\U1F4DC;Scroll -\U1F4DD;Memo -\U1F4DE;Telephone Receiver -\U1F4DF;Pager -\U1F4E0;Fax Machine -\U1F4E1;Satellite Antenna -\U1F4E2;Public Address Loudspeaker -\U1F4E3;Cheering Megaphone -\U1F4E4;Outbox Tray -\U1F4E5;Inbox Tray -\U1F4E6;Package -\U1F4E7;E-Mail Symbol -\U1F4E8;Incoming Envelope -\U1F4E9;Envelope With Downwards Arrow Above -\U1F4EA;Closed Mailbox With Lowered Flag -\U1F4EB;Closed Mailbox With Raised Flag -\U1F4EC;Open Mailbox With Raised Flag -\U1F4ED;Open Mailbox With Lowered Flag -\U1F4EE;Postbox -\U1F4EF;Postal Horn -\U1F4F0;Newspaper -\U1F4F1;Mobile Phone -\U1F4F2;Mobile Phone With Rightwards Arrow At Left -\U1F4F3;Vibration Mode -\U1F4F4;Mobile Phone Off -\U1F4F5;No Mobile Phones -\U1F4F6;Antenna With Bars -\U1F4F7;Camera -\U1F4F8;Camera With Flash -\U1F4F9;Video Camera -\U1F4FA;Television -\U1F4FB;Radio -\U1F4FC;Videocassette -\U1F4FD;Film Projector -\U1F4FE;Portable Stereo -\U1F4FF;Prayer Beads -\U1F500;Twisted Rightwards Arrows -\U1F501;Clockwise Rightwards And Leftwards Open Circle Arrows -\U1F502;Clockwise Rightwards And Leftwards Open Circle Arrows With Circled One Overlay -\U1F503;Clockwise Downwards And Upwards Open Circle Arrows -\U1F504;Anticlockwise Downwards And Upwards Open Circle Arrows -\U1F505;Low Brightness Symbol -\U1F506;High Brightness Symbol -\U1F507;Speaker With Cancellation Stroke -\U1F508;Speaker -\U1F509;Speaker With One Sound Wave -\U1F50A;Speaker With Three Sound Waves -\U1F50B;Battery -\U1F50C;Electric Plug -\U1F50D;Left-Pointing Magnifying Glass -\U1F50E;Right-Pointing Magnifying Glass -\U1F50F;Lock With Ink Pen -\U1F510;Closed Lock With Key -\U1F511;Key -\U1F512;Lock -\U1F513;Open Lock -\U1F514;Bell -\U1F515;Bell With Cancellation Stroke -\U1F516;Bookmark -\U1F517;Link Symbol -\U1F518;Radio Button -\U1F519;Back With Leftwards Arrow Above -\U1F51A;End With Leftwards Arrow Above -\U1F51B;On With Exclamation Mark With Left Right Arrow Above -\U1F51C;Soon With Rightwards Arrow Above -\U1F51D;Top With Upwards Arrow Above -\U1F51E;No One Under Eighteen Symbol -\U1F51F;Keycap Ten -\U1F520;Input Symbol For Latin Capital Letters -\U1F521;Input Symbol For Latin Small Letters -\U1F522;Input Symbol For Numbers -\U1F523;Input Symbol For Symbols -\U1F524;Input Symbol For Latin Letters -\U1F525;Fire -\U1F526;Electric Torch -\U1F527;Wrench -\U1F528;Hammer -\U1F529;Nut And Bolt -\U1F52A;Hocho -\U1F52B;Pistol -\U1F52C;Microscope -\U1F52D;Telescope -\U1F52E;Crystal Ball -\U1F52F;Six Pointed Star With Middle Dot -\U1F530;Japanese Symbol For Beginner -\U1F531;Trident Emblem -\U1F532;Black Square Button -\U1F533;White Square Button -\U1F534;Large Red Circle -\U1F535;Large Blue Circle -\U1F536;Large Orange Diamond -\U1F537;Large Blue Diamond -\U1F538;Small Orange Diamond -\U1F539;Small Blue Diamond -\U1F53A;Up-Pointing Red Triangle -\U1F53B;Down-Pointing Red Triangle -\U1F53C;Up-Pointing Small Red Triangle -\U1F53D;Down-Pointing Small Red Triangle -\U1F53E;Lower Right Shadowed White Circle -\U1F53F;Upper Right Shadowed White Circle -\U1F540;Circled Cross Pommee -\U1F541;Cross Pommee With Half-Circle Below -\U1F542;Cross Pommee -\U1F543;Notched Left Semicircle With Three Dots -\U1F544;Notched Right Semicircle With Three Dots -\U1F545;Symbol For Marks Chapter -\U1F546;White Latin Cross -\U1F547;Heavy Latin Cross -\U1F548;Celtic Cross -\U1F549;Om Symbol -\U1F54A;Dove Of Peace -\U1F54B;Kaaba -\U1F54C;Mosque -\U1F54D;Synagogue -\U1F54E;Menorah With Nine Branches -\U1F54F;Bowl Of Hygieia -\U1F550;Clock Face One Oclock -\U1F551;Clock Face Two Oclock -\U1F552;Clock Face Three Oclock -\U1F553;Clock Face Four Oclock -\U1F554;Clock Face Five Oclock -\U1F555;Clock Face Six Oclock -\U1F556;Clock Face Seven Oclock -\U1F557;Clock Face Eight Oclock -\U1F558;Clock Face Nine Oclock -\U1F559;Clock Face Ten Oclock -\U1F55A;Clock Face Eleven Oclock -\U1F55B;Clock Face Twelve Oclock -\U1F55C;Clock Face One-Thirty -\U1F55D;Clock Face Two-Thirty -\U1F55E;Clock Face Three-Thirty -\U1F55F;Clock Face Four-Thirty -\U1F560;Clock Face Five-Thirty -\U1F561;Clock Face Six-Thirty -\U1F562;Clock Face Seven-Thirty -\U1F563;Clock Face Eight-Thirty -\U1F564;Clock Face Nine-Thirty -\U1F565;Clock Face Ten-Thirty -\U1F566;Clock Face Eleven-Thirty -\U1F567;Clock Face Twelve-Thirty -\U1F568;Right Speaker -\U1F569;Right Speaker With One Sound Wave -\U1F56A;Right Speaker With Three Sound Waves -\U1F56B;Bullhorn -\U1F56C;Bullhorn With Sound Waves -\U1F56D;Ringing Bell -\U1F56E;Book -\U1F56F;Candle -\U1F570;Mantelpiece Clock -\U1F571;Black Skull And Crossbones -\U1F572;No Piracy -\U1F573;Hole -\U1F574;Man In Business Suit Levitating -\U1F575;Sleuth Or Spy -\U1F576;Dark Sunglasses -\U1F577;Spider -\U1F578;Spider Web -\U1F579;Joystick -\U1F57A;Man Dancing -\U1F57B;Left Hand Telephone Receiver -\U1F57C;Telephone Receiver With Page -\U1F57D;Right Hand Telephone Receiver -\U1F57E;White Touchtone Telephone -\U1F57F;Black Touchtone Telephone -\U1F580;Telephone On Top Of Modem -\U1F581;Clamshell Mobile Phone -\U1F582;Back Of Envelope -\U1F583;Stamped Envelope -\U1F584;Envelope With Lightning -\U1F585;Flying Envelope -\U1F586;Pen Over Stamped Envelope -\U1F587;Linked Paperclips -\U1F588;Black Pushpin -\U1F589;Lower Left Pencil -\U1F58A;Lower Left Ballpoint Pen -\U1F58B;Lower Left Fountain Pen -\U1F58C;Lower Left Paintbrush -\U1F58D;Lower Left Crayon -\U1F58E;Left Writing Hand -\U1F58F;Turned Ok Hand Sign -\U1F590;Raised Hand With Fingers Splayed -\U1F591;Reversed Raised Hand With Fingers Splayed -\U1F592;Reversed Thumbs Up Sign -\U1F593;Reversed Thumbs Down Sign -\U1F594;Reversed Victory Hand -\U1F595;Reversed Hand With Middle Finger Extended -\U1F596;Raised Hand With Part Between Middle And Ring Fingers -\U1F597;White Down Pointing Left Hand Index -\U1F598;Sideways White Left Pointing Index -\U1F599;Sideways White Right Pointing Index -\U1F59A;Sideways Black Left Pointing Index -\U1F59B;Sideways Black Right Pointing Index -\U1F59C;Black Left Pointing Backhand Index -\U1F59D;Black Right Pointing Backhand Index -\U1F59E;Sideways White Up Pointing Index -\U1F59F;Sideways White Down Pointing Index -\U1F5A0;Sideways Black Up Pointing Index -\U1F5A1;Sideways Black Down Pointing Index -\U1F5A2;Black Up Pointing Backhand Index -\U1F5A3;Black Down Pointing Backhand Index -\U1F5A4;Black Heart -\U1F5A5;Desktop Computer -\U1F5A6;Keyboard And Mouse -\U1F5A7;Three Networked Computers -\U1F5A8;Printer -\U1F5A9;Pocket Calculator -\U1F5AA;Black Hard Shell Floppy Disk -\U1F5AB;White Hard Shell Floppy Disk -\U1F5AC;Soft Shell Floppy Disk -\U1F5AD;Tape Cartridge -\U1F5AE;Wired Keyboard -\U1F5AF;One Button Mouse -\U1F5B0;Two Button Mouse -\U1F5B1;Three Button Mouse -\U1F5B2;Trackball -\U1F5B3;Old Personal Computer -\U1F5B4;Hard Disk -\U1F5B5;Screen -\U1F5B6;Printer Icon -\U1F5B7;Fax Icon -\U1F5B8;Optical Disc Icon -\U1F5B9;Document With Text -\U1F5BA;Document With Text And Picture -\U1F5BB;Document With Picture -\U1F5BC;Frame With Picture -\U1F5BD;Frame With Tiles -\U1F5BE;Frame With An X -\U1F5BF;Black Folder -\U1F5C0;Folder -\U1F5C1;Open Folder -\U1F5C2;Card Index Dividers -\U1F5C3;Card File Box -\U1F5C4;File Cabinet -\U1F5C5;Empty Note -\U1F5C6;Empty Note Page -\U1F5C7;Empty Note Pad -\U1F5C8;Note -\U1F5C9;Note Page -\U1F5CA;Note Pad -\U1F5CB;Empty Document -\U1F5CC;Empty Page -\U1F5CD;Empty Pages -\U1F5CE;Document -\U1F5CF;Page -\U1F5D0;Pages -\U1F5D1;Wastebasket -\U1F5D2;Spiral Note Pad -\U1F5D3;Spiral Calendar Pad -\U1F5D4;Desktop Window -\U1F5D5;Minimize -\U1F5D6;Maximize -\U1F5D7;Overlap -\U1F5D8;Clockwise Right And Left Semicircle Arrows -\U1F5D9;Cancellation X -\U1F5DA;Increase Font Size Symbol -\U1F5DB;Decrease Font Size Symbol -\U1F5DC;Compression -\U1F5DD;Old Key -\U1F5DE;Rolled-Up Newspaper -\U1F5DF;Page With Circled Text -\U1F5E0;Stock Chart -\U1F5E1;Dagger Knife -\U1F5E2;Lips -\U1F5E3;Speaking Head In Silhouette -\U1F5E4;Three Rays Above -\U1F5E5;Three Rays Below -\U1F5E6;Three Rays Left -\U1F5E7;Three Rays Right -\U1F5E8;Left Speech Bubble -\U1F5E9;Right Speech Bubble -\U1F5EA;Two Speech Bubbles -\U1F5EB;Three Speech Bubbles -\U1F5EC;Left Thought Bubble -\U1F5ED;Right Thought Bubble -\U1F5EE;Left Anger Bubble -\U1F5EF;Right Anger Bubble -\U1F5F0;Mood Bubble -\U1F5F1;Lightning Mood Bubble -\U1F5F2;Lightning Mood -\U1F5F3;Ballot Box With Ballot -\U1F5F4;Ballot Script X -\U1F5F5;Ballot Box With Script X -\U1F5F6;Ballot Bold Script X -\U1F5F7;Ballot Box With Bold Script X -\U1F5F8;Light Check Mark -\U1F5F9;Ballot Box With Bold Check -\U1F5FA;World Map -\U1F5FB;Mount Fuji -\U1F5FC;Tokyo Tower -\U1F5FD;Statue Of Liberty -\U1F5FE;Silhouette Of Japan -\U1F5FF;Moyai -\U1F600;Grinning Face -\U1F601;Grinning Face With Smiling Eyes -\U1F602;Face With Tears Of Joy -\U1F603;Smiling Face With Open Mouth -\U1F604;Smiling Face With Open Mouth And Smiling Eyes -\U1F605;Smiling Face With Open Mouth And Cold Sweat -\U1F606;Smiling Face With Open Mouth And Tightly-Closed Eyes -\U1F607;Smiling Face With Halo -\U1F608;Smiling Face With Horns -\U1F609;Winking Face -\U1F60A;Smiling Face With Smiling Eyes -\U1F60B;Face Savouring Delicious Food -\U1F60C;Relieved Face -\U1F60D;Smiling Face With Heart-Shaped Eyes -\U1F60E;Smiling Face With Sunglasses -\U1F60F;Smirking Face -\U1F610;Neutral Face -\U1F611;Expressionless Face -\U1F612;Unamused Face -\U1F613;Face With Cold Sweat -\U1F614;Pensive Face -\U1F615;Confused Face -\U1F616;Confounded Face -\U1F617;Kissing Face -\U1F618;Face Throwing A Kiss -\U1F619;Kissing Face With Smiling Eyes -\U1F61A;Kissing Face With Closed Eyes -\U1F61B;Face With Stuck-Out Tongue -\U1F61C;Face With Stuck-Out Tongue And Winking Eye -\U1F61D;Face With Stuck-Out Tongue And Tightly-Closed Eyes -\U1F61E;Disappointed Face -\U1F61F;Worried Face -\U1F620;Angry Face -\U1F621;Pouting Face -\U1F622;Crying Face -\U1F623;Persevering Face -\U1F624;Face With Look Of Triumph -\U1F625;Disappointed But Relieved Face -\U1F626;Frowning Face With Open Mouth -\U1F627;Anguished Face -\U1F628;Fearful Face -\U1F629;Weary Face -\U1F62A;Sleepy Face -\U1F62B;Tired Face -\U1F62C;Grimacing Face -\U1F62D;Loudly Crying Face -\U1F62E;Face With Open Mouth -\U1F62F;Hushed Face -\U1F630;Face With Open Mouth And Cold Sweat -\U1F631;Face Screaming In Fear -\U1F632;Astonished Face -\U1F633;Flushed Face -\U1F634;Sleeping Face -\U1F635;Dizzy Face -\U1F636;Face Without Mouth -\U1F637;Face With Medical Mask -\U1F638;Grinning Cat Face With Smiling Eyes -\U1F639;Cat Face With Tears Of Joy -\U1F63A;Smiling Cat Face With Open Mouth -\U1F63B;Smiling Cat Face With Heart-Shaped Eyes -\U1F63C;Cat Face With Wry Smile -\U1F63D;Kissing Cat Face With Closed Eyes -\U1F63E;Pouting Cat Face -\U1F63F;Crying Cat Face -\U1F640;Weary Cat Face -\U1F641;Slightly Frowning Face -\U1F642;Slightly Smiling Face -\U1F643;Upside-Down Face -\U1F644;Face With Rolling Eyes -\U1F645;Face With No Good Gesture -\U1F646;Face With Ok Gesture -\U1F647;Person Bowing Deeply -\U1F648;See-No-Evil Monkey -\U1F649;Hear-No-Evil Monkey -\U1F64A;Speak-No-Evil Monkey -\U1F64B;Happy Person Raising One Hand -\U1F64C;Person Raising Both Hands In Celebration -\U1F64D;Person Frowning -\U1F64E;Person With Pouting Face -\U1F64F;Person With Folded Hands -\U1F650;North West Pointing Leaf -\U1F651;South West Pointing Leaf -\U1F652;North East Pointing Leaf -\U1F653;South East Pointing Leaf -\U1F654;Turned North West Pointing Leaf -\U1F655;Turned South West Pointing Leaf -\U1F656;Turned North East Pointing Leaf -\U1F657;Turned South East Pointing Leaf -\U1F658;North West Pointing Vine Leaf -\U1F659;South West Pointing Vine Leaf -\U1F65A;North East Pointing Vine Leaf -\U1F65B;South East Pointing Vine Leaf -\U1F65C;Heavy North West Pointing Vine Leaf -\U1F65D;Heavy South West Pointing Vine Leaf -\U1F65E;Heavy North East Pointing Vine Leaf -\U1F65F;Heavy South East Pointing Vine Leaf -\U1F660;North West Pointing Bud -\U1F661;South West Pointing Bud -\U1F662;North East Pointing Bud -\U1F663;South East Pointing Bud -\U1F664;Heavy North West Pointing Bud -\U1F665;Heavy South West Pointing Bud -\U1F666;Heavy North East Pointing Bud -\U1F667;Heavy South East Pointing Bud -\U1F668;Hollow Quilt Square Ornament -\U1F669;Hollow Quilt Square Ornament In Black Square -\U1F66A;Solid Quilt Square Ornament -\U1F66B;Solid Quilt Square Ornament In Black Square -\U1F66C;Leftwards Rocket -\U1F66D;Upwards Rocket -\U1F66E;Rightwards Rocket -\U1F66F;Downwards Rocket -\U1F670;Script Ligature Et Ornament -\U1F671;Heavy Script Ligature Et Ornament -\U1F672;Ligature Open Et Ornament -\U1F673;Heavy Ligature Open Et Ornament -\U1F674;Heavy Ampersand Ornament -\U1F675;Swash Ampersand Ornament -\U1F676;Sans-Serif Heavy Double Turned Comma Quotation Mark Ornament -\U1F677;Sans-Serif Heavy Double Comma Quotation Mark Ornament -\U1F678;Sans-Serif Heavy Low Double Comma Quotation Mark Ornament -\U1F679;Heavy Interrobang Ornament -\U1F67A;Sans-Serif Interrobang Ornament -\U1F67B;Heavy Sans-Serif Interrobang Ornament -\U1F67C;Very Heavy Solidus -\U1F67D;Very Heavy Reverse Solidus -\U1F67E;Checker Board -\U1F67F;Reverse Checker Board -\U1F680;Rocket -\U1F681;Helicopter -\U1F682;Steam Locomotive -\U1F683;Railway Car -\U1F684;High-Speed Train -\U1F685;High-Speed Train With Bullet Nose -\U1F686;Train -\U1F687;Metro -\U1F688;Light Rail -\U1F689;Station -\U1F68A;Tram -\U1F68B;Tram Car -\U1F68C;Bus -\U1F68D;Oncoming Bus -\U1F68E;Trolleybus -\U1F68F;Bus Stop -\U1F690;Minibus -\U1F691;Ambulance -\U1F692;Fire Engine -\U1F693;Police Car -\U1F694;Oncoming Police Car -\U1F695;Taxi -\U1F696;Oncoming Taxi -\U1F697;Automobile -\U1F698;Oncoming Automobile -\U1F699;Recreational Vehicle -\U1F69A;Delivery Truck -\U1F69B;Articulated Lorry -\U1F69C;Tractor -\U1F69D;Monorail -\U1F69E;Mountain Railway -\U1F69F;Suspension Railway -\U1F6A0;Mountain Cableway -\U1F6A1;Aerial Tramway -\U1F6A2;Ship -\U1F6A3;Rowboat -\U1F6A4;Speedboat -\U1F6A5;Horizontal Traffic Light -\U1F6A6;Vertical Traffic Light -\U1F6A7;Construction Sign -\U1F6A8;Police Cars Revolving Light -\U1F6A9;Triangular Flag On Post -\U1F6AA;Door -\U1F6AB;No Entry Sign -\U1F6AC;Smoking Symbol -\U1F6AD;No Smoking Symbol -\U1F6AE;Put Litter In Its Place Symbol -\U1F6AF;Do Not Litter Symbol -\U1F6B0;Potable Water Symbol -\U1F6B1;Non-Potable Water Symbol -\U1F6B2;Bicycle -\U1F6B3;No Bicycles -\U1F6B4;Bicyclist -\U1F6B5;Mountain Bicyclist -\U1F6B6;Pedestrian -\U1F6B7;No Pedestrians -\U1F6B8;Children Crossing -\U1F6B9;Mens Symbol -\U1F6BA;Womens Symbol -\U1F6BB;Restroom -\U1F6BC;Baby Symbol -\U1F6BD;Toilet -\U1F6BE;Water Closet -\U1F6BF;Shower -\U1F6C0;Bath -\U1F6C1;Bathtub -\U1F6C2;Passport Control -\U1F6C3;Customs -\U1F6C4;Baggage Claim -\U1F6C5;Left Luggage -\U1F6C6;Triangle With Rounded Corners -\U1F6C7;Prohibited Sign -\U1F6C8;Circled Information Source -\U1F6C9;Boys Symbol -\U1F6CA;Girls Symbol -\U1F6CB;Couch And Lamp -\U1F6CC;Sleeping Accommodation -\U1F6CD;Shopping Bags -\U1F6CE;Bellhop Bell -\U1F6CF;Bed -\U1F6D0;Place Of Worship -\U1F6D1;Octagonal Sign -\U1F6D2;Shopping Trolley -\U1F6D3;Stupa -\U1F6D4;Pagoda -\U1F6D5;Hindu Temple -\U1F6D6;Hut -\U1F6D7;Elevator -\U1F6DC;Wireless -\U1F6DD;Playground Slide -\U1F6DE;Wheel -\U1F6DF;Ring Buoy -\U1F6E0;Hammer And Wrench -\U1F6E1;Shield -\U1F6E2;Oil Drum -\U1F6E3;Motorway -\U1F6E4;Railway Track -\U1F6E5;Motor Boat -\U1F6E6;Up-Pointing Military Airplane -\U1F6E7;Up-Pointing Airplane -\U1F6E8;Up-Pointing Small Airplane -\U1F6E9;Small Airplane -\U1F6EA;Northeast-Pointing Airplane -\U1F6EB;Airplane Departure -\U1F6EC;Airplane Arriving -\U1F6F0;Satellite -\U1F6F1;Oncoming Fire Engine -\U1F6F2;Diesel Locomotive -\U1F6F3;Passenger Ship -\U1F6F4;Scooter -\U1F6F5;Motor Scooter -\U1F6F6;Canoe -\U1F6F7;Sled -\U1F6F8;Flying Saucer -\U1F6F9;Skateboard -\U1F6FA;Auto Rickshaw -\U1F6FB;Pickup Truck -\U1F6FC;Roller Skate -\U1F700;Alchemical Symbol For Quintessence -\U1F701;Alchemical Symbol For Air -\U1F702;Alchemical Symbol For Fire -\U1F703;Alchemical Symbol For Earth -\U1F704;Alchemical Symbol For Water -\U1F705;Alchemical Symbol For Aquafortis -\U1F706;Alchemical Symbol For Aqua Regia -\U1F707;Alchemical Symbol For Aqua Regia-2 -\U1F708;Alchemical Symbol For Aqua Vitae -\U1F709;Alchemical Symbol For Aqua Vitae-2 -\U1F70A;Alchemical Symbol For Vinegar -\U1F70B;Alchemical Symbol For Vinegar-2 -\U1F70C;Alchemical Symbol For Vinegar-3 -\U1F70D;Alchemical Symbol For Sulfur -\U1F70E;Alchemical Symbol For Philosophers Sulfur -\U1F70F;Alchemical Symbol For Black Sulfur -\U1F710;Alchemical Symbol For Mercury Sublimate -\U1F711;Alchemical Symbol For Mercury Sublimate-2 -\U1F712;Alchemical Symbol For Mercury Sublimate-3 -\U1F713;Alchemical Symbol For Cinnabar -\U1F714;Alchemical Symbol For Salt -\U1F715;Alchemical Symbol For Nitre -\U1F716;Alchemical Symbol For Vitriol -\U1F717;Alchemical Symbol For Vitriol-2 -\U1F718;Alchemical Symbol For Rock Salt -\U1F719;Alchemical Symbol For Rock Salt-2 -\U1F71A;Alchemical Symbol For Gold -\U1F71B;Alchemical Symbol For Silver -\U1F71C;Alchemical Symbol For Iron Ore -\U1F71D;Alchemical Symbol For Iron Ore-2 -\U1F71E;Alchemical Symbol For Crocus Of Iron -\U1F71F;Alchemical Symbol For Regulus Of Iron -\U1F720;Alchemical Symbol For Copper Ore -\U1F721;Alchemical Symbol For Iron-Copper Ore -\U1F722;Alchemical Symbol For Sublimate Of Copper -\U1F723;Alchemical Symbol For Crocus Of Copper -\U1F724;Alchemical Symbol For Crocus Of Copper-2 -\U1F725;Alchemical Symbol For Copper Antimoniate -\U1F726;Alchemical Symbol For Salt Of Copper Antimoniate -\U1F727;Alchemical Symbol For Sublimate Of Salt Of Copper -\U1F728;Alchemical Symbol For Verdigris -\U1F729;Alchemical Symbol For Tin Ore -\U1F72A;Alchemical Symbol For Lead Ore -\U1F72B;Alchemical Symbol For Antimony Ore -\U1F72C;Alchemical Symbol For Sublimate Of Antimony -\U1F72D;Alchemical Symbol For Salt Of Antimony -\U1F72E;Alchemical Symbol For Sublimate Of Salt Of Antimony -\U1F72F;Alchemical Symbol For Vinegar Of Antimony -\U1F730;Alchemical Symbol For Regulus Of Antimony -\U1F731;Alchemical Symbol For Regulus Of Antimony-2 -\U1F732;Alchemical Symbol For Regulus -\U1F733;Alchemical Symbol For Regulus-2 -\U1F734;Alchemical Symbol For Regulus-3 -\U1F735;Alchemical Symbol For Regulus-4 -\U1F736;Alchemical Symbol For Alkali -\U1F737;Alchemical Symbol For Alkali-2 -\U1F738;Alchemical Symbol For Marcasite -\U1F739;Alchemical Symbol For Sal-Ammoniac -\U1F73A;Alchemical Symbol For Arsenic -\U1F73B;Alchemical Symbol For Realgar -\U1F73C;Alchemical Symbol For Realgar-2 -\U1F73D;Alchemical Symbol For Auripigment -\U1F73E;Alchemical Symbol For Bismuth Ore -\U1F73F;Alchemical Symbol For Tartar -\U1F740;Alchemical Symbol For Tartar-2 -\U1F741;Alchemical Symbol For Quick Lime -\U1F742;Alchemical Symbol For Borax -\U1F743;Alchemical Symbol For Borax-2 -\U1F744;Alchemical Symbol For Borax-3 -\U1F745;Alchemical Symbol For Alum -\U1F746;Alchemical Symbol For Oil -\U1F747;Alchemical Symbol For Spirit -\U1F748;Alchemical Symbol For Tincture -\U1F749;Alchemical Symbol For Gum -\U1F74A;Alchemical Symbol For Wax -\U1F74B;Alchemical Symbol For Powder -\U1F74C;Alchemical Symbol For Calx -\U1F74D;Alchemical Symbol For Tutty -\U1F74E;Alchemical Symbol For Caput Mortuum -\U1F74F;Alchemical Symbol For Scepter Of Jove -\U1F750;Alchemical Symbol For Caduceus -\U1F751;Alchemical Symbol For Trident -\U1F752;Alchemical Symbol For Starred Trident -\U1F753;Alchemical Symbol For Lodestone -\U1F754;Alchemical Symbol For Soap -\U1F755;Alchemical Symbol For Urine -\U1F756;Alchemical Symbol For Horse Dung -\U1F757;Alchemical Symbol For Ashes -\U1F758;Alchemical Symbol For Pot Ashes -\U1F759;Alchemical Symbol For Brick -\U1F75A;Alchemical Symbol For Powdered Brick -\U1F75B;Alchemical Symbol For Amalgam -\U1F75C;Alchemical Symbol For Stratum Super Stratum -\U1F75D;Alchemical Symbol For Stratum Super Stratum-2 -\U1F75E;Alchemical Symbol For Sublimation -\U1F75F;Alchemical Symbol For Precipitate -\U1F760;Alchemical Symbol For Distill -\U1F761;Alchemical Symbol For Dissolve -\U1F762;Alchemical Symbol For Dissolve-2 -\U1F763;Alchemical Symbol For Purify -\U1F764;Alchemical Symbol For Putrefaction -\U1F765;Alchemical Symbol For Crucible -\U1F766;Alchemical Symbol For Crucible-2 -\U1F767;Alchemical Symbol For Crucible-3 -\U1F768;Alchemical Symbol For Crucible-4 -\U1F769;Alchemical Symbol For Crucible-5 -\U1F76A;Alchemical Symbol For Alembic -\U1F76B;Alchemical Symbol For Bath Of Mary -\U1F76C;Alchemical Symbol For Bath Of Vapours -\U1F76D;Alchemical Symbol For Retort -\U1F76E;Alchemical Symbol For Hour -\U1F76F;Alchemical Symbol For Night -\U1F770;Alchemical Symbol For Day-Night -\U1F771;Alchemical Symbol For Month -\U1F772;Alchemical Symbol For Half Dram -\U1F773;Alchemical Symbol For Half Ounce -\U1F774;Lot Of Fortune -\U1F775;Occultation -\U1F776;Lunar Eclipse -\U1F77B;Haumea -\U1F77C;Makemake -\U1F77D;Gonggong -\U1F77E;Quaoar -\U1F77F;Orcus -\U1F780;Black Left-Pointing Isosceles Right Triangle -\U1F781;Black Up-Pointing Isosceles Right Triangle -\U1F782;Black Right-Pointing Isosceles Right Triangle -\U1F783;Black Down-Pointing Isosceles Right Triangle -\U1F784;Black Slightly Small Circle -\U1F785;Medium Bold White Circle -\U1F786;Bold White Circle -\U1F787;Heavy White Circle -\U1F788;Very Heavy White Circle -\U1F789;Extremely Heavy White Circle -\U1F78A;White Circle Containing Black Small Circle -\U1F78B;Round Target -\U1F78C;Black Tiny Square -\U1F78D;Black Slightly Small Square -\U1F78E;Light White Square -\U1F78F;Medium White Square -\U1F790;Bold White Square -\U1F791;Heavy White Square -\U1F792;Very Heavy White Square -\U1F793;Extremely Heavy White Square -\U1F794;White Square Containing Black Very Small Square -\U1F795;White Square Containing Black Medium Square -\U1F796;Square Target -\U1F797;Black Tiny Diamond -\U1F798;Black Very Small Diamond -\U1F799;Black Medium Small Diamond -\U1F79A;White Diamond Containing Black Very Small Diamond -\U1F79B;White Diamond Containing Black Medium Diamond -\U1F79C;Diamond Target -\U1F79D;Black Tiny Lozenge -\U1F79E;Black Very Small Lozenge -\U1F79F;Black Medium Small Lozenge -\U1F7A0;White Lozenge Containing Black Small Lozenge -\U1F7A1;Thin Greek Cross -\U1F7A2;Light Greek Cross -\U1F7A3;Medium Greek Cross -\U1F7A4;Bold Greek Cross -\U1F7A5;Very Bold Greek Cross -\U1F7A6;Very Heavy Greek Cross -\U1F7A7;Extremely Heavy Greek Cross -\U1F7A8;Thin Saltire -\U1F7A9;Light Saltire -\U1F7AA;Medium Saltire -\U1F7AB;Bold Saltire -\U1F7AC;Heavy Saltire -\U1F7AD;Very Heavy Saltire -\U1F7AE;Extremely Heavy Saltire -\U1F7AF;Light Five Spoked Asterisk -\U1F7B0;Medium Five Spoked Asterisk -\U1F7B1;Bold Five Spoked Asterisk -\U1F7B2;Heavy Five Spoked Asterisk -\U1F7B3;Very Heavy Five Spoked Asterisk -\U1F7B4;Extremely Heavy Five Spoked Asterisk -\U1F7B5;Light Six Spoked Asterisk -\U1F7B6;Medium Six Spoked Asterisk -\U1F7B7;Bold Six Spoked Asterisk -\U1F7B8;Heavy Six Spoked Asterisk -\U1F7B9;Very Heavy Six Spoked Asterisk -\U1F7BA;Extremely Heavy Six Spoked Asterisk -\U1F7BB;Light Eight Spoked Asterisk -\U1F7BC;Medium Eight Spoked Asterisk -\U1F7BD;Bold Eight Spoked Asterisk -\U1F7BE;Heavy Eight Spoked Asterisk -\U1F7BF;Very Heavy Eight Spoked Asterisk -\U1F7C0;Light Three Pointed Black Star -\U1F7C1;Medium Three Pointed Black Star -\U1F7C2;Three Pointed Black Star -\U1F7C3;Medium Three Pointed Pinwheel Star -\U1F7C4;Light Four Pointed Black Star -\U1F7C5;Medium Four Pointed Black Star -\U1F7C6;Four Pointed Black Star -\U1F7C7;Medium Four Pointed Pinwheel Star -\U1F7C8;Reverse Light Four Pointed Pinwheel Star -\U1F7C9;Light Five Pointed Black Star -\U1F7CA;Heavy Five Pointed Black Star -\U1F7CB;Medium Six Pointed Black Star -\U1F7CC;Heavy Six Pointed Black Star -\U1F7CD;Six Pointed Pinwheel Star -\U1F7CE;Medium Eight Pointed Black Star -\U1F7CF;Heavy Eight Pointed Black Star -\U1F7D0;Very Heavy Eight Pointed Black Star -\U1F7D1;Heavy Eight Pointed Pinwheel Star -\U1F7D2;Light Twelve Pointed Black Star -\U1F7D3;Heavy Twelve Pointed Black Star -\U1F7D4;Heavy Twelve Pointed Pinwheel Star -\U1F7D5;Circled Triangle -\U1F7D6;Negative Circled Triangle -\U1F7D7;Circled Square -\U1F7D8;Negative Circled Square -\U1F7D9;Nine Pointed White Star -\U1F7E0;Large Orange Circle -\U1F7E1;Large Yellow Circle -\U1F7E2;Large Green Circle -\U1F7E3;Large Purple Circle -\U1F7E4;Large Brown Circle -\U1F7E5;Large Red Square -\U1F7E6;Large Blue Square -\U1F7E7;Large Orange Square -\U1F7E8;Large Yellow Square -\U1F7E9;Large Green Square -\U1F7EA;Large Purple Square -\U1F7EB;Large Brown Square -\U1F7F0;Heavy Equals Sign -\U1F800;Leftwards Arrow With Small Triangle Arrowhead -\U1F801;Upwards Arrow With Small Triangle Arrowhead -\U1F802;Rightwards Arrow With Small Triangle Arrowhead -\U1F803;Downwards Arrow With Small Triangle Arrowhead -\U1F804;Leftwards Arrow With Medium Triangle Arrowhead -\U1F805;Upwards Arrow With Medium Triangle Arrowhead -\U1F806;Rightwards Arrow With Medium Triangle Arrowhead -\U1F807;Downwards Arrow With Medium Triangle Arrowhead -\U1F808;Leftwards Arrow With Large Triangle Arrowhead -\U1F809;Upwards Arrow With Large Triangle Arrowhead -\U1F80A;Rightwards Arrow With Large Triangle Arrowhead -\U1F80B;Downwards Arrow With Large Triangle Arrowhead -\U1F810;Leftwards Arrow With Small Equilateral Arrowhead -\U1F811;Upwards Arrow With Small Equilateral Arrowhead -\U1F812;Rightwards Arrow With Small Equilateral Arrowhead -\U1F813;Downwards Arrow With Small Equilateral Arrowhead -\U1F814;Leftwards Arrow With Equilateral Arrowhead -\U1F815;Upwards Arrow With Equilateral Arrowhead -\U1F816;Rightwards Arrow With Equilateral Arrowhead -\U1F817;Downwards Arrow With Equilateral Arrowhead -\U1F818;Heavy Leftwards Arrow With Equilateral Arrowhead -\U1F819;Heavy Upwards Arrow With Equilateral Arrowhead -\U1F81A;Heavy Rightwards Arrow With Equilateral Arrowhead -\U1F81B;Heavy Downwards Arrow With Equilateral Arrowhead -\U1F81C;Heavy Leftwards Arrow With Large Equilateral Arrowhead -\U1F81D;Heavy Upwards Arrow With Large Equilateral Arrowhead -\U1F81E;Heavy Rightwards Arrow With Large Equilateral Arrowhead -\U1F81F;Heavy Downwards Arrow With Large Equilateral Arrowhead -\U1F820;Leftwards Triangle-Headed Arrow With Narrow Shaft -\U1F821;Upwards Triangle-Headed Arrow With Narrow Shaft -\U1F822;Rightwards Triangle-Headed Arrow With Narrow Shaft -\U1F823;Downwards Triangle-Headed Arrow With Narrow Shaft -\U1F824;Leftwards Triangle-Headed Arrow With Medium Shaft -\U1F825;Upwards Triangle-Headed Arrow With Medium Shaft -\U1F826;Rightwards Triangle-Headed Arrow With Medium Shaft -\U1F827;Downwards Triangle-Headed Arrow With Medium Shaft -\U1F828;Leftwards Triangle-Headed Arrow With Bold Shaft -\U1F829;Upwards Triangle-Headed Arrow With Bold Shaft -\U1F82A;Rightwards Triangle-Headed Arrow With Bold Shaft -\U1F82B;Downwards Triangle-Headed Arrow With Bold Shaft -\U1F82C;Leftwards Triangle-Headed Arrow With Heavy Shaft -\U1F82D;Upwards Triangle-Headed Arrow With Heavy Shaft -\U1F82E;Rightwards Triangle-Headed Arrow With Heavy Shaft -\U1F82F;Downwards Triangle-Headed Arrow With Heavy Shaft -\U1F830;Leftwards Triangle-Headed Arrow With Very Heavy Shaft -\U1F831;Upwards Triangle-Headed Arrow With Very Heavy Shaft -\U1F832;Rightwards Triangle-Headed Arrow With Very Heavy Shaft -\U1F833;Downwards Triangle-Headed Arrow With Very Heavy Shaft -\U1F834;Leftwards Finger-Post Arrow -\U1F835;Upwards Finger-Post Arrow -\U1F836;Rightwards Finger-Post Arrow -\U1F837;Downwards Finger-Post Arrow -\U1F838;Leftwards Squared Arrow -\U1F839;Upwards Squared Arrow -\U1F83A;Rightwards Squared Arrow -\U1F83B;Downwards Squared Arrow -\U1F83C;Leftwards Compressed Arrow -\U1F83D;Upwards Compressed Arrow -\U1F83E;Rightwards Compressed Arrow -\U1F83F;Downwards Compressed Arrow -\U1F840;Leftwards Heavy Compressed Arrow -\U1F841;Upwards Heavy Compressed Arrow -\U1F842;Rightwards Heavy Compressed Arrow -\U1F843;Downwards Heavy Compressed Arrow -\U1F844;Leftwards Heavy Arrow -\U1F845;Upwards Heavy Arrow -\U1F846;Rightwards Heavy Arrow -\U1F847;Downwards Heavy Arrow -\U1F850;Leftwards Sans-Serif Arrow -\U1F851;Upwards Sans-Serif Arrow -\U1F852;Rightwards Sans-Serif Arrow -\U1F853;Downwards Sans-Serif Arrow -\U1F854;North West Sans-Serif Arrow -\U1F855;North East Sans-Serif Arrow -\U1F856;South East Sans-Serif Arrow -\U1F857;South West Sans-Serif Arrow -\U1F858;Left Right Sans-Serif Arrow -\U1F859;Up Down Sans-Serif Arrow -\U1F860;Wide-Headed Leftwards Light Barb Arrow -\U1F861;Wide-Headed Upwards Light Barb Arrow -\U1F862;Wide-Headed Rightwards Light Barb Arrow -\U1F863;Wide-Headed Downwards Light Barb Arrow -\U1F864;Wide-Headed North West Light Barb Arrow -\U1F865;Wide-Headed North East Light Barb Arrow -\U1F866;Wide-Headed South East Light Barb Arrow -\U1F867;Wide-Headed South West Light Barb Arrow -\U1F868;Wide-Headed Leftwards Barb Arrow -\U1F869;Wide-Headed Upwards Barb Arrow -\U1F86A;Wide-Headed Rightwards Barb Arrow -\U1F86B;Wide-Headed Downwards Barb Arrow -\U1F86C;Wide-Headed North West Barb Arrow -\U1F86D;Wide-Headed North East Barb Arrow -\U1F86E;Wide-Headed South East Barb Arrow -\U1F86F;Wide-Headed South West Barb Arrow -\U1F870;Wide-Headed Leftwards Medium Barb Arrow -\U1F871;Wide-Headed Upwards Medium Barb Arrow -\U1F872;Wide-Headed Rightwards Medium Barb Arrow -\U1F873;Wide-Headed Downwards Medium Barb Arrow -\U1F874;Wide-Headed North West Medium Barb Arrow -\U1F875;Wide-Headed North East Medium Barb Arrow -\U1F876;Wide-Headed South East Medium Barb Arrow -\U1F877;Wide-Headed South West Medium Barb Arrow -\U1F878;Wide-Headed Leftwards Heavy Barb Arrow -\U1F879;Wide-Headed Upwards Heavy Barb Arrow -\U1F87A;Wide-Headed Rightwards Heavy Barb Arrow -\U1F87B;Wide-Headed Downwards Heavy Barb Arrow -\U1F87C;Wide-Headed North West Heavy Barb Arrow -\U1F87D;Wide-Headed North East Heavy Barb Arrow -\U1F87E;Wide-Headed South East Heavy Barb Arrow -\U1F87F;Wide-Headed South West Heavy Barb Arrow -\U1F880;Wide-Headed Leftwards Very Heavy Barb Arrow -\U1F881;Wide-Headed Upwards Very Heavy Barb Arrow -\U1F882;Wide-Headed Rightwards Very Heavy Barb Arrow -\U1F883;Wide-Headed Downwards Very Heavy Barb Arrow -\U1F884;Wide-Headed North West Very Heavy Barb Arrow -\U1F885;Wide-Headed North East Very Heavy Barb Arrow -\U1F886;Wide-Headed South East Very Heavy Barb Arrow -\U1F887;Wide-Headed South West Very Heavy Barb Arrow -\U1F890;Leftwards Triangle Arrowhead -\U1F891;Upwards Triangle Arrowhead -\U1F892;Rightwards Triangle Arrowhead -\U1F893;Downwards Triangle Arrowhead -\U1F894;Leftwards White Arrow Within Triangle Arrowhead -\U1F895;Upwards White Arrow Within Triangle Arrowhead -\U1F896;Rightwards White Arrow Within Triangle Arrowhead -\U1F897;Downwards White Arrow Within Triangle Arrowhead -\U1F898;Leftwards Arrow With Notched Tail -\U1F899;Upwards Arrow With Notched Tail -\U1F89A;Rightwards Arrow With Notched Tail -\U1F89B;Downwards Arrow With Notched Tail -\U1F89C;Heavy Arrow Shaft Width One -\U1F89D;Heavy Arrow Shaft Width Two Thirds -\U1F89E;Heavy Arrow Shaft Width One Half -\U1F89F;Heavy Arrow Shaft Width One Third -\U1F8A0;Leftwards Bottom-Shaded White Arrow -\U1F8A1;Rightwards Bottom Shaded White Arrow -\U1F8A2;Leftwards Top Shaded White Arrow -\U1F8A3;Rightwards Top Shaded White Arrow -\U1F8A4;Leftwards Left-Shaded White Arrow -\U1F8A5;Rightwards Right-Shaded White Arrow -\U1F8A6;Leftwards Right-Shaded White Arrow -\U1F8A7;Rightwards Left-Shaded White Arrow -\U1F8A8;Leftwards Back-Tilted Shadowed White Arrow -\U1F8A9;Rightwards Back-Tilted Shadowed White Arrow -\U1F8AA;Leftwards Front-Tilted Shadowed White Arrow -\U1F8AB;Rightwards Front-Tilted Shadowed White Arrow -\U1F8AC;White Arrow Shaft Width One -\U1F8AD;White Arrow Shaft Width Two Thirds -\U1F8B0;Arrow Pointing Upwards Then North West -\U1F8B1;Arrow Pointing Rightwards Then Curving South West -\U1F900;Circled Cross Formee With Four Dots -\U1F901;Circled Cross Formee With Two Dots -\U1F902;Circled Cross Formee -\U1F903;Left Half Circle With Four Dots -\U1F904;Left Half Circle With Three Dots -\U1F905;Left Half Circle With Two Dots -\U1F906;Left Half Circle With Dot -\U1F907;Left Half Circle -\U1F908;Downward Facing Hook -\U1F909;Downward Facing Notched Hook -\U1F90A;Downward Facing Hook With Dot -\U1F90B;Downward Facing Notched Hook With Dot -\U1F90C;Pinched Fingers -\U1F90D;White Heart -\U1F90E;Brown Heart -\U1F90F;Pinching Hand -\U1F910;Zipper-Mouth Face -\U1F911;Money-Mouth Face -\U1F912;Face With Thermometer -\U1F913;Nerd Face -\U1F914;Thinking Face -\U1F915;Face With Head-Bandage -\U1F916;Robot Face -\U1F917;Hugging Face -\U1F918;Sign Of The Horns -\U1F919;Call Me Hand -\U1F91A;Raised Back Of Hand -\U1F91B;Left-Facing Fist -\U1F91C;Right-Facing Fist -\U1F91D;Handshake -\U1F91E;Hand With Index And Middle Fingers Crossed -\U1F91F;I Love You Hand Sign -\U1F920;Face With Cowboy Hat -\U1F921;Clown Face -\U1F922;Nauseated Face -\U1F923;Rolling On The Floor Laughing -\U1F924;Drooling Face -\U1F925;Lying Face -\U1F926;Face Palm -\U1F927;Sneezing Face -\U1F928;Face With One Eyebrow Raised -\U1F929;Grinning Face With Star Eyes -\U1F92A;Grinning Face With One Large And One Small Eye -\U1F92B;Face With Finger Covering Closed Lips -\U1F92C;Serious Face With Symbols Covering Mouth -\U1F92D;Smiling Face With Smiling Eyes And Hand Covering Mouth -\U1F92E;Face With Open Mouth Vomiting -\U1F92F;Shocked Face With Exploding Head -\U1F930;Pregnant Woman -\U1F931;Breast-Feeding -\U1F932;Palms Up Together -\U1F933;Selfie -\U1F934;Prince -\U1F935;Man In Tuxedo -\U1F936;Mother Christmas -\U1F937;Shrug -\U1F938;Person Doing Cartwheel -\U1F939;Juggling -\U1F93A;Fencer -\U1F93B;Modern Pentathlon -\U1F93C;Wrestlers -\U1F93D;Water Polo -\U1F93E;Handball -\U1F93F;Diving Mask -\U1F940;Wilted Flower -\U1F941;Drum With Drumsticks -\U1F942;Clinking Glasses -\U1F943;Tumbler Glass -\U1F944;Spoon -\U1F945;Goal Net -\U1F946;Rifle -\U1F947;First Place Medal -\U1F948;Second Place Medal -\U1F949;Third Place Medal -\U1F94A;Boxing Glove -\U1F94B;Martial Arts Uniform -\U1F94C;Curling Stone -\U1F94D;Lacrosse Stick And Ball -\U1F94E;Softball -\U1F94F;Flying Disc -\U1F950;Croissant -\U1F951;Avocado -\U1F952;Cucumber -\U1F953;Bacon -\U1F954;Potato -\U1F955;Carrot -\U1F956;Baguette Bread -\U1F957;Green Salad -\U1F958;Shallow Pan Of Food -\U1F959;Stuffed Flatbread -\U1F95A;Egg -\U1F95B;Glass Of Milk -\U1F95C;Peanuts -\U1F95D;Kiwifruit -\U1F95E;Pancakes -\U1F95F;Dumpling -\U1F960;Fortune Cookie -\U1F961;Takeout Box -\U1F962;Chopsticks -\U1F963;Bowl With Spoon -\U1F964;Cup With Straw -\U1F965;Coconut -\U1F966;Broccoli -\U1F967;Pie -\U1F968;Pretzel -\U1F969;Cut Of Meat -\U1F96A;Sandwich -\U1F96B;Canned Food -\U1F96C;Leafy Green -\U1F96D;Mango -\U1F96E;Moon Cake -\U1F96F;Bagel -\U1F970;Smiling Face With Smiling Eyes And Three Hearts -\U1F971;Yawning Face -\U1F972;Smiling Face With Tear -\U1F973;Face With Party Horn And Party Hat -\U1F974;Face With Uneven Eyes And Wavy Mouth -\U1F975;Overheated Face -\U1F976;Freezing Face -\U1F977;Ninja -\U1F978;Disguised Face -\U1F979;Face Holding Back Tears -\U1F97A;Face With Pleading Eyes -\U1F97B;Sari -\U1F97C;Lab Coat -\U1F97D;Goggles -\U1F97E;Hiking Boot -\U1F97F;Flat Shoe -\U1F980;Crab -\U1F981;Lion Face -\U1F982;Scorpion -\U1F983;Turkey -\U1F984;Unicorn Face -\U1F985;Eagle -\U1F986;Duck -\U1F987;Bat -\U1F988;Shark -\U1F989;Owl -\U1F98A;Fox Face -\U1F98B;Butterfly -\U1F98C;Deer -\U1F98D;Gorilla -\U1F98E;Lizard -\U1F98F;Rhinoceros -\U1F990;Shrimp -\U1F991;Squid -\U1F992;Giraffe Face -\U1F993;Zebra Face -\U1F994;Hedgehog -\U1F995;Sauropod -\U1F996;T-Rex -\U1F997;Cricket -\U1F998;Kangaroo -\U1F999;Llama -\U1F99A;Peacock -\U1F99B;Hippopotamus -\U1F99C;Parrot -\U1F99D;Raccoon -\U1F99E;Lobster -\U1F99F;Mosquito -\U1F9A0;Microbe -\U1F9A1;Badger -\U1F9A2;Swan -\U1F9A3;Mammoth -\U1F9A4;Dodo -\U1F9A5;Sloth -\U1F9A6;Otter -\U1F9A7;Orangutan -\U1F9A8;Skunk -\U1F9A9;Flamingo -\U1F9AA;Oyster -\U1F9AB;Beaver -\U1F9AC;Bison -\U1F9AD;Seal -\U1F9AE;Guide Dog -\U1F9AF;Probing Cane -\U1F9B0;Emoji Component Red Hair -\U1F9B1;Emoji Component Curly Hair -\U1F9B2;Emoji Component Bald -\U1F9B3;Emoji Component White Hair -\U1F9B4;Bone -\U1F9B5;Leg -\U1F9B6;Foot -\U1F9B7;Tooth -\U1F9B8;Superhero -\U1F9B9;Supervillain -\U1F9BA;Safety Vest -\U1F9BB;Ear With Hearing Aid -\U1F9BC;Motorized Wheelchair -\U1F9BD;Manual Wheelchair -\U1F9BE;Mechanical Arm -\U1F9BF;Mechanical Leg -\U1F9C0;Cheese Wedge -\U1F9C1;Cupcake -\U1F9C2;Salt Shaker -\U1F9C3;Beverage Box -\U1F9C4;Garlic -\U1F9C5;Onion -\U1F9C6;Falafel -\U1F9C7;Waffle -\U1F9C8;Butter -\U1F9C9;Mate Drink -\U1F9CA;Ice Cube -\U1F9CB;Bubble Tea -\U1F9CC;Troll -\U1F9CD;Standing Person -\U1F9CE;Kneeling Person -\U1F9CF;Deaf Person -\U1F9D0;Face With Monocle -\U1F9D1;Adult -\U1F9D2;Child -\U1F9D3;Older Adult -\U1F9D4;Bearded Person -\U1F9D5;Person With Headscarf -\U1F9D6;Person In Steamy Room -\U1F9D7;Person Climbing -\U1F9D8;Person In Lotus Position -\U1F9D9;Mage -\U1F9DA;Fairy -\U1F9DB;Vampire -\U1F9DC;Merperson -\U1F9DD;Elf -\U1F9DE;Genie -\U1F9DF;Zombie -\U1F9E0;Brain -\U1F9E1;Orange Heart -\U1F9E2;Billed Cap -\U1F9E3;Scarf -\U1F9E4;Gloves -\U1F9E5;Coat -\U1F9E6;Socks -\U1F9E7;Red Gift Envelope -\U1F9E8;Firecracker -\U1F9E9;Jigsaw Puzzle Piece -\U1F9EA;Test Tube -\U1F9EB;Petri Dish -\U1F9EC;Dna Double Helix -\U1F9ED;Compass -\U1F9EE;Abacus -\U1F9EF;Fire Extinguisher -\U1F9F0;Toolbox -\U1F9F1;Brick -\U1F9F2;Magnet -\U1F9F3;Luggage -\U1F9F4;Lotion Bottle -\U1F9F5;Spool Of Thread -\U1F9F6;Ball Of Yarn -\U1F9F7;Safety Pin -\U1F9F8;Teddy Bear -\U1F9F9;Broom -\U1F9FA;Basket -\U1F9FB;Roll Of Paper -\U1F9FC;Bar Of Soap -\U1F9FD;Sponge -\U1F9FE;Receipt -\U1F9FF;Nazar Amulet -\U1FA00;Neutral Chess King -\U1FA01;Neutral Chess Queen -\U1FA02;Neutral Chess Rook -\U1FA03;Neutral Chess Bishop -\U1FA04;Neutral Chess Knight -\U1FA05;Neutral Chess Pawn -\U1FA06;White Chess Knight Rotated Forty-Five Degrees -\U1FA07;Black Chess Knight Rotated Forty-Five Degrees -\U1FA08;Neutral Chess Knight Rotated Forty-Five Degrees -\U1FA09;White Chess King Rotated Ninety Degrees -\U1FA0A;White Chess Queen Rotated Ninety Degrees -\U1FA0B;White Chess Rook Rotated Ninety Degrees -\U1FA0C;White Chess Bishop Rotated Ninety Degrees -\U1FA0D;White Chess Knight Rotated Ninety Degrees -\U1FA0E;White Chess Pawn Rotated Ninety Degrees -\U1FA0F;Black Chess King Rotated Ninety Degrees -\U1FA10;Black Chess Queen Rotated Ninety Degrees -\U1FA11;Black Chess Rook Rotated Ninety Degrees -\U1FA12;Black Chess Bishop Rotated Ninety Degrees -\U1FA13;Black Chess Knight Rotated Ninety Degrees -\U1FA14;Black Chess Pawn Rotated Ninety Degrees -\U1FA15;Neutral Chess King Rotated Ninety Degrees -\U1FA16;Neutral Chess Queen Rotated Ninety Degrees -\U1FA17;Neutral Chess Rook Rotated Ninety Degrees -\U1FA18;Neutral Chess Bishop Rotated Ninety Degrees -\U1FA19;Neutral Chess Knight Rotated Ninety Degrees -\U1FA1A;Neutral Chess Pawn Rotated Ninety Degrees -\U1FA1B;White Chess Knight Rotated One Hundred Thirty-Five Degrees -\U1FA1C;Black Chess Knight Rotated One Hundred Thirty-Five Degrees -\U1FA1D;Neutral Chess Knight Rotated One Hundred Thirty-Five Degrees -\U1FA1E;White Chess Turned King -\U1FA1F;White Chess Turned Queen -\U1FA20;White Chess Turned Rook -\U1FA21;White Chess Turned Bishop -\U1FA22;White Chess Turned Knight -\U1FA23;White Chess Turned Pawn -\U1FA24;Black Chess Turned King -\U1FA25;Black Chess Turned Queen -\U1FA26;Black Chess Turned Rook -\U1FA27;Black Chess Turned Bishop -\U1FA28;Black Chess Turned Knight -\U1FA29;Black Chess Turned Pawn -\U1FA2A;Neutral Chess Turned King -\U1FA2B;Neutral Chess Turned Queen -\U1FA2C;Neutral Chess Turned Rook -\U1FA2D;Neutral Chess Turned Bishop -\U1FA2E;Neutral Chess Turned Knight -\U1FA2F;Neutral Chess Turned Pawn -\U1FA30;White Chess Knight Rotated Two Hundred Twenty-Five Degrees -\U1FA31;Black Chess Knight Rotated Two Hundred Twenty-Five Degrees -\U1FA32;Neutral Chess Knight Rotated Two Hundred Twenty-Five Degrees -\U1FA33;White Chess King Rotated Two Hundred Seventy Degrees -\U1FA34;White Chess Queen Rotated Two Hundred Seventy Degrees -\U1FA35;White Chess Rook Rotated Two Hundred Seventy Degrees -\U1FA36;White Chess Bishop Rotated Two Hundred Seventy Degrees -\U1FA37;White Chess Knight Rotated Two Hundred Seventy Degrees -\U1FA38;White Chess Pawn Rotated Two Hundred Seventy Degrees -\U1FA39;Black Chess King Rotated Two Hundred Seventy Degrees -\U1FA3A;Black Chess Queen Rotated Two Hundred Seventy Degrees -\U1FA3B;Black Chess Rook Rotated Two Hundred Seventy Degrees -\U1FA3C;Black Chess Bishop Rotated Two Hundred Seventy Degrees -\U1FA3D;Black Chess Knight Rotated Two Hundred Seventy Degrees -\U1FA3E;Black Chess Pawn Rotated Two Hundred Seventy Degrees -\U1FA3F;Neutral Chess King Rotated Two Hundred Seventy Degrees -\U1FA40;Neutral Chess Queen Rotated Two Hundred Seventy Degrees -\U1FA41;Neutral Chess Rook Rotated Two Hundred Seventy Degrees -\U1FA42;Neutral Chess Bishop Rotated Two Hundred Seventy Degrees -\U1FA43;Neutral Chess Knight Rotated Two Hundred Seventy Degrees -\U1FA44;Neutral Chess Pawn Rotated Two Hundred Seventy Degrees -\U1FA45;White Chess Knight Rotated Three Hundred Fifteen Degrees -\U1FA46;Black Chess Knight Rotated Three Hundred Fifteen Degrees -\U1FA47;Neutral Chess Knight Rotated Three Hundred Fifteen Degrees -\U1FA48;White Chess Equihopper -\U1FA49;Black Chess Equihopper -\U1FA4A;Neutral Chess Equihopper -\U1FA4B;White Chess Equihopper Rotated Ninety Degrees -\U1FA4C;Black Chess Equihopper Rotated Ninety Degrees -\U1FA4D;Neutral Chess Equihopper Rotated Ninety Degrees -\U1FA4E;White Chess Knight-Queen -\U1FA4F;White Chess Knight-Rook -\U1FA50;White Chess Knight-Bishop -\U1FA51;Black Chess Knight-Queen -\U1FA52;Black Chess Knight-Rook -\U1FA53;Black Chess Knight-Bishop -\U1FA60;Xiangqi Red General -\U1FA61;Xiangqi Red Mandarin -\U1FA62;Xiangqi Red Elephant -\U1FA63;Xiangqi Red Horse -\U1FA64;Xiangqi Red Chariot -\U1FA65;Xiangqi Red Cannon -\U1FA66;Xiangqi Red Soldier -\U1FA67;Xiangqi Black General -\U1FA68;Xiangqi Black Mandarin -\U1FA69;Xiangqi Black Elephant -\U1FA6A;Xiangqi Black Horse -\U1FA6B;Xiangqi Black Chariot -\U1FA6C;Xiangqi Black Cannon -\U1FA6D;Xiangqi Black Soldier -\U1FA70;Ballet Shoes -\U1FA71;One-Piece Swimsuit -\U1FA72;Briefs -\U1FA73;Shorts -\U1FA74;Thong Sandal -\U1FA75;Light Blue Heart -\U1FA76;Grey Heart -\U1FA77;Pink Heart -\U1FA78;Drop Of Blood -\U1FA79;Adhesive Bandage -\U1FA7A;Stethoscope -\U1FA7B;X-Ray -\U1FA7C;Crutch -\U1FA80;Yo-Yo -\U1FA81;Kite -\U1FA82;Parachute -\U1FA83;Boomerang -\U1FA84;Magic Wand -\U1FA85;Pinata -\U1FA86;Nesting Dolls -\U1FA87;Maracas -\U1FA88;Flute -\U1FA90;Ringed Planet -\U1FA91;Chair -\U1FA92;Razor -\U1FA93;Axe -\U1FA94;Diya Lamp -\U1FA95;Banjo -\U1FA96;Military Helmet -\U1FA97;Accordion -\U1FA98;Long Drum -\U1FA99;Coin -\U1FA9A;Carpentry Saw -\U1FA9B;Screwdriver -\U1FA9C;Ladder -\U1FA9D;Hook -\U1FA9E;Mirror -\U1FA9F;Window -\U1FAA0;Plunger -\U1FAA1;Sewing Needle -\U1FAA2;Knot -\U1FAA3;Bucket -\U1FAA4;Mouse Trap -\U1FAA5;Toothbrush -\U1FAA6;Headstone -\U1FAA7;Placard -\U1FAA8;Rock -\U1FAA9;Mirror Ball -\U1FAAA;Identification Card -\U1FAAB;Low Battery -\U1FAAC;Hamsa -\U1FAAD;Folding Hand Fan -\U1FAAE;Hair Pick -\U1FAAF;Khanda -\U1FAB0;Fly -\U1FAB1;Worm -\U1FAB2;Beetle -\U1FAB3;Cockroach -\U1FAB4;Potted Plant -\U1FAB5;Wood -\U1FAB6;Feather -\U1FAB7;Lotus -\U1FAB8;Coral -\U1FAB9;Empty Nest -\U1FABA;Nest With Eggs -\U1FABB;Hyacinth -\U1FABC;Jellyfish -\U1FABD;Wing -\U1FABF;Goose -\U1FAC0;Anatomical Heart -\U1FAC1;Lungs -\U1FAC2;People Hugging -\U1FAC3;Pregnant Man -\U1FAC4;Pregnant Person -\U1FAC5;Person With Crown -\U1FACE;Moose -\U1FACF;Donkey -\U1FAD0;Blueberries -\U1FAD1;Bell Pepper -\U1FAD2;Olive -\U1FAD3;Flatbread -\U1FAD4;Tamale -\U1FAD5;Fondue -\U1FAD6;Teapot -\U1FAD7;Pouring Liquid -\U1FAD8;Beans -\U1FAD9;Jar -\U1FADA;Ginger Root -\U1FADB;Pea Pod -\U1FAE0;Melting Face -\U1FAE1;Saluting Face -\U1FAE2;Face With Open Eyes And Hand Over Mouth -\U1FAE3;Face With Peeking Eye -\U1FAE4;Face With Diagonal Mouth -\U1FAE5;Dotted Line Face -\U1FAE6;Biting Lip -\U1FAE7;Bubbles -\U1FAE8;Shaking Face -\U1FAF0;Hand With Index Finger And Thumb Crossed -\U1FAF1;Rightwards Hand -\U1FAF2;Leftwards Hand -\U1FAF3;Palm Down Hand -\U1FAF4;Palm Up Hand -\U1FAF5;Index Pointing At The Viewer -\U1FAF6;Heart Hands -\U1FAF7;Leftwards Pushing Hand -\U1FAF8;Rightwards Pushing Hand -\U1FB00;Block Sextant-1 -\U1FB01;Block Sextant-2 -\U1FB02;Block Sextant-12 -\U1FB03;Block Sextant-3 -\U1FB04;Block Sextant-13 -\U1FB05;Block Sextant-23 -\U1FB06;Block Sextant-123 -\U1FB07;Block Sextant-4 -\U1FB08;Block Sextant-14 -\U1FB09;Block Sextant-24 -\U1FB0A;Block Sextant-124 -\U1FB0B;Block Sextant-34 -\U1FB0C;Block Sextant-134 -\U1FB0D;Block Sextant-234 -\U1FB0E;Block Sextant-1234 -\U1FB0F;Block Sextant-5 -\U1FB10;Block Sextant-15 -\U1FB11;Block Sextant-25 -\U1FB12;Block Sextant-125 -\U1FB13;Block Sextant-35 -\U1FB14;Block Sextant-235 -\U1FB15;Block Sextant-1235 -\U1FB16;Block Sextant-45 -\U1FB17;Block Sextant-145 -\U1FB18;Block Sextant-245 -\U1FB19;Block Sextant-1245 -\U1FB1A;Block Sextant-345 -\U1FB1B;Block Sextant-1345 -\U1FB1C;Block Sextant-2345 -\U1FB1D;Block Sextant-12345 -\U1FB1E;Block Sextant-6 -\U1FB1F;Block Sextant-16 -\U1FB20;Block Sextant-26 -\U1FB21;Block Sextant-126 -\U1FB22;Block Sextant-36 -\U1FB23;Block Sextant-136 -\U1FB24;Block Sextant-236 -\U1FB25;Block Sextant-1236 -\U1FB26;Block Sextant-46 -\U1FB27;Block Sextant-146 -\U1FB28;Block Sextant-1246 -\U1FB29;Block Sextant-346 -\U1FB2A;Block Sextant-1346 -\U1FB2B;Block Sextant-2346 -\U1FB2C;Block Sextant-12346 -\U1FB2D;Block Sextant-56 -\U1FB2E;Block Sextant-156 -\U1FB2F;Block Sextant-256 -\U1FB30;Block Sextant-1256 -\U1FB31;Block Sextant-356 -\U1FB32;Block Sextant-1356 -\U1FB33;Block Sextant-2356 -\U1FB34;Block Sextant-12356 -\U1FB35;Block Sextant-456 -\U1FB36;Block Sextant-1456 -\U1FB37;Block Sextant-2456 -\U1FB38;Block Sextant-12456 -\U1FB39;Block Sextant-3456 -\U1FB3A;Block Sextant-13456 -\U1FB3B;Block Sextant-23456 -\U1FB3C;Lower Left Block Diagonal Lower Middle Left To Lower Centre -\U1FB3D;Lower Left Block Diagonal Lower Middle Left To Lower Right -\U1FB3E;Lower Left Block Diagonal Upper Middle Left To Lower Centre -\U1FB3F;Lower Left Block Diagonal Upper Middle Left To Lower Right -\U1FB40;Lower Left Block Diagonal Upper Left To Lower Centre -\U1FB41;Lower Right Block Diagonal Upper Middle Left To Upper Centre -\U1FB42;Lower Right Block Diagonal Upper Middle Left To Upper Right -\U1FB43;Lower Right Block Diagonal Lower Middle Left To Upper Centre -\U1FB44;Lower Right Block Diagonal Lower Middle Left To Upper Right -\U1FB45;Lower Right Block Diagonal Lower Left To Upper Centre -\U1FB46;Lower Right Block Diagonal Lower Middle Left To Upper Middle Right -\U1FB47;Lower Right Block Diagonal Lower Centre To Lower Middle Right -\U1FB48;Lower Right Block Diagonal Lower Left To Lower Middle Right -\U1FB49;Lower Right Block Diagonal Lower Centre To Upper Middle Right -\U1FB4A;Lower Right Block Diagonal Lower Left To Upper Middle Right -\U1FB4B;Lower Right Block Diagonal Lower Centre To Upper Right -\U1FB4C;Lower Left Block Diagonal Upper Centre To Upper Middle Right -\U1FB4D;Lower Left Block Diagonal Upper Left To Upper Middle Right -\U1FB4E;Lower Left Block Diagonal Upper Centre To Lower Middle Right -\U1FB4F;Lower Left Block Diagonal Upper Left To Lower Middle Right -\U1FB50;Lower Left Block Diagonal Upper Centre To Lower Right -\U1FB51;Lower Left Block Diagonal Upper Middle Left To Lower Middle Right -\U1FB52;Upper Right Block Diagonal Lower Middle Left To Lower Centre -\U1FB53;Upper Right Block Diagonal Lower Middle Left To Lower Right -\U1FB54;Upper Right Block Diagonal Upper Middle Left To Lower Centre -\U1FB55;Upper Right Block Diagonal Upper Middle Left To Lower Right -\U1FB56;Upper Right Block Diagonal Upper Left To Lower Centre -\U1FB57;Upper Left Block Diagonal Upper Middle Left To Upper Centre -\U1FB58;Upper Left Block Diagonal Upper Middle Left To Upper Right -\U1FB59;Upper Left Block Diagonal Lower Middle Left To Upper Centre -\U1FB5A;Upper Left Block Diagonal Lower Middle Left To Upper Right -\U1FB5B;Upper Left Block Diagonal Lower Left To Upper Centre -\U1FB5C;Upper Left Block Diagonal Lower Middle Left To Upper Middle Right -\U1FB5D;Upper Left Block Diagonal Lower Centre To Lower Middle Right -\U1FB5E;Upper Left Block Diagonal Lower Left To Lower Middle Right -\U1FB5F;Upper Left Block Diagonal Lower Centre To Upper Middle Right -\U1FB60;Upper Left Block Diagonal Lower Left To Upper Middle Right -\U1FB61;Upper Left Block Diagonal Lower Centre To Upper Right -\U1FB62;Upper Right Block Diagonal Upper Centre To Upper Middle Right -\U1FB63;Upper Right Block Diagonal Upper Left To Upper Middle Right -\U1FB64;Upper Right Block Diagonal Upper Centre To Lower Middle Right -\U1FB65;Upper Right Block Diagonal Upper Left To Lower Middle Right -\U1FB66;Upper Right Block Diagonal Upper Centre To Lower Right -\U1FB67;Upper Right Block Diagonal Upper Middle Left To Lower Middle Right -\U1FB68;Upper And Right And Lower Triangular Three Quarters Block -\U1FB69;Left And Lower And Right Triangular Three Quarters Block -\U1FB6A;Upper And Left And Lower Triangular Three Quarters Block -\U1FB6B;Left And Upper And Right Triangular Three Quarters Block -\U1FB6C;Left Triangular One Quarter Block -\U1FB6D;Upper Triangular One Quarter Block -\U1FB6E;Right Triangular One Quarter Block -\U1FB6F;Lower Triangular One Quarter Block -\U1FB70;Vertical One Eighth Block-2 -\U1FB71;Vertical One Eighth Block-3 -\U1FB72;Vertical One Eighth Block-4 -\U1FB73;Vertical One Eighth Block-5 -\U1FB74;Vertical One Eighth Block-6 -\U1FB75;Vertical One Eighth Block-7 -\U1FB76;Horizontal One Eighth Block-2 -\U1FB77;Horizontal One Eighth Block-3 -\U1FB78;Horizontal One Eighth Block-4 -\U1FB79;Horizontal One Eighth Block-5 -\U1FB7A;Horizontal One Eighth Block-6 -\U1FB7B;Horizontal One Eighth Block-7 -\U1FB7C;Left And Lower One Eighth Block -\U1FB7D;Left And Upper One Eighth Block -\U1FB7E;Right And Upper One Eighth Block -\U1FB7F;Right And Lower One Eighth Block -\U1FB80;Upper And Lower One Eighth Block -\U1FB81;Horizontal One Eighth Block-1358 -\U1FB82;Upper One Quarter Block -\U1FB83;Upper Three Eighths Block -\U1FB84;Upper Five Eighths Block -\U1FB85;Upper Three Quarters Block -\U1FB86;Upper Seven Eighths Block -\U1FB87;Right One Quarter Block -\U1FB88;Right Three Eighths Block -\U1FB89;Right Five Eighths Block -\U1FB8A;Right Three Quarters Block -\U1FB8B;Right Seven Eighths Block -\U1FB8C;Left Half Medium Shade -\U1FB8D;Right Half Medium Shade -\U1FB8E;Upper Half Medium Shade -\U1FB8F;Lower Half Medium Shade -\U1FB90;Inverse Medium Shade -\U1FB91;Upper Half Block And Lower Half Inverse Medium Shade -\U1FB92;Upper Half Inverse Medium Shade And Lower Half Block -\U1FB94;Left Half Inverse Medium Shade And Right Half Block -\U1FB95;Checker Board Fill -\U1FB96;Inverse Checker Board Fill -\U1FB97;Heavy Horizontal Fill -\U1FB98;Upper Left To Lower Right Fill -\U1FB99;Upper Right To Lower Left Fill -\U1FB9A;Upper And Lower Triangular Half Block -\U1FB9B;Left And Right Triangular Half Block -\U1FB9C;Upper Left Triangular Medium Shade -\U1FB9D;Upper Right Triangular Medium Shade -\U1FB9E;Lower Right Triangular Medium Shade -\U1FB9F;Lower Left Triangular Medium Shade -\U1FBA0;Box Drawings Light Diagonal Upper Centre To Middle Left -\U1FBA1;Box Drawings Light Diagonal Upper Centre To Middle Right -\U1FBA2;Box Drawings Light Diagonal Middle Left To Lower Centre -\U1FBA3;Box Drawings Light Diagonal Middle Right To Lower Centre -\U1FBA4;Box Drawings Light Diagonal Upper Centre To Middle Left To Lower Centre -\U1FBA5;Box Drawings Light Diagonal Upper Centre To Middle Right To Lower Centre -\U1FBA6;Box Drawings Light Diagonal Middle Left To Lower Centre To Middle Right -\U1FBA7;Box Drawings Light Diagonal Middle Left To Upper Centre To Middle Right -\U1FBA8;Box Drawings Light Diagonal Upper Centre To Middle Left And Middle Right To Lower Centre -\U1FBA9;Box Drawings Light Diagonal Upper Centre To Middle Right And Middle Left To Lower Centre -\U1FBAA;Box Drawings Light Diagonal Upper Centre To Middle Right To Lower Centre To Middle Left -\U1FBAB;Box Drawings Light Diagonal Upper Centre To Middle Left To Lower Centre To Middle Right -\U1FBAC;Box Drawings Light Diagonal Middle Left To Upper Centre To Middle Right To Lower Centre -\U1FBAD;Box Drawings Light Diagonal Middle Right To Upper Centre To Middle Left To Lower Centre -\U1FBAE;Box Drawings Light Diagonal Diamond -\U1FBAF;Box Drawings Light Horizontal With Vertical Stroke -\U1FBB0;Arrowhead-Shaped Pointer -\U1FBB1;Inverse Check Mark -\U1FBB2;Left Half Running Man -\U1FBB3;Right Half Running Man -\U1FBB4;Inverse Downwards Arrow With Tip Leftwards -\U1FBB5;Leftwards Arrow And Upper And Lower One Eighth Block -\U1FBB6;Rightwards Arrow And Upper And Lower One Eighth Block -\U1FBB7;Downwards Arrow And Right One Eighth Block -\U1FBB8;Upwards Arrow And Right One Eighth Block -\U1FBB9;Left Half Folder -\U1FBBA;Right Half Folder -\U1FBBB;Voided Greek Cross -\U1FBBC;Right Open Squared Dot -\U1FBBD;Negative Diagonal Cross -\U1FBBE;Negative Diagonal Middle Right To Lower Centre -\U1FBBF;Negative Diagonal Diamond -\U1FBC0;White Heavy Saltire With Rounded Corners -\U1FBC1;Left Third White Right Pointing Index -\U1FBC2;Middle Third White Right Pointing Index -\U1FBC3;Right Third White Right Pointing Index -\U1FBC4;Negative Squared Question Mark -\U1FBC5;Stick Figure -\U1FBC6;Stick Figure With Arms Raised -\U1FBC7;Stick Figure Leaning Left -\U1FBC8;Stick Figure Leaning Right -\U1FBC9;Stick Figure With Dress -\U1FBCA;White Up-Pointing Chevron -\U1FBF0;Segmented Digit Zero -\U1FBF1;Segmented Digit One -\U1FBF2;Segmented Digit Two -\U1FBF3;Segmented Digit Three -\U1FBF4;Segmented Digit Four -\U1FBF5;Segmented Digit Five -\U1FBF6;Segmented Digit Six -\U1FBF7;Segmented Digit Seven -\U1FBF8;Segmented Digit Eight -\U1FBF9;Segmented Digit Nine -\UE0001;Language Tag -\UE0020;Tag Space -\UE0021;Tag Exclamation Mark -\UE0022;Tag Quotation Mark -\UE0023;Tag Number Sign -\UE0024;Tag Dollar Sign -\UE0025;Tag Percent Sign -\UE0026;Tag Ampersand -\UE0027;Tag Apostrophe -\UE0028;Tag Left Parenthesis -\UE0029;Tag Right Parenthesis -\UE002A;Tag Asterisk -\UE002B;Tag Plus Sign -\UE002C;Tag Comma -\UE002D;Tag Hyphen-Minus -\UE002E;Tag Full Stop -\UE002F;Tag Solidus -\UE0030;Tag Digit Zero -\UE0031;Tag Digit One -\UE0032;Tag Digit Two -\UE0033;Tag Digit Three -\UE0034;Tag Digit Four -\UE0035;Tag Digit Five -\UE0036;Tag Digit Six -\UE0037;Tag Digit Seven -\UE0038;Tag Digit Eight -\UE0039;Tag Digit Nine -\UE003A;Tag Colon -\UE003B;Tag Semicolon -\UE003C;Tag Less-Than Sign -\UE003D;Tag Equals Sign -\UE003E;Tag Greater-Than Sign -\UE003F;Tag Question Mark -\UE0040;Tag Commercial At -\UE0041;Tag Latin Capital Letter A -\UE0042;Tag Latin Capital Letter B -\UE0043;Tag Latin Capital Letter C -\UE0044;Tag Latin Capital Letter D -\UE0045;Tag Latin Capital Letter E -\UE0046;Tag Latin Capital Letter F -\UE0047;Tag Latin Capital Letter G -\UE0048;Tag Latin Capital Letter H -\UE0049;Tag Latin Capital Letter I -\UE004A;Tag Latin Capital Letter J -\UE004B;Tag Latin Capital Letter K -\UE004C;Tag Latin Capital Letter L -\UE004D;Tag Latin Capital Letter M -\UE004E;Tag Latin Capital Letter N -\UE004F;Tag Latin Capital Letter O -\UE0050;Tag Latin Capital Letter P -\UE0051;Tag Latin Capital Letter Q -\UE0052;Tag Latin Capital Letter R -\UE0053;Tag Latin Capital Letter S -\UE0054;Tag Latin Capital Letter T -\UE0055;Tag Latin Capital Letter U -\UE0056;Tag Latin Capital Letter V -\UE0057;Tag Latin Capital Letter W -\UE0058;Tag Latin Capital Letter X -\UE0059;Tag Latin Capital Letter Y -\UE005A;Tag Latin Capital Letter Z -\UE005B;Tag Left Square Bracket -\UE005C;Tag Reverse Solidus -\UE005D;Tag Right Square Bracket -\UE005E;Tag Circumflex Accent -\UE005F;Tag Low Line -\UE0060;Tag Grave Accent -\UE0061;Tag Latin Small Letter A -\UE0062;Tag Latin Small Letter B -\UE0063;Tag Latin Small Letter C -\UE0064;Tag Latin Small Letter D -\UE0065;Tag Latin Small Letter E -\UE0066;Tag Latin Small Letter F -\UE0067;Tag Latin Small Letter G -\UE0068;Tag Latin Small Letter H -\UE0069;Tag Latin Small Letter I -\UE006A;Tag Latin Small Letter J -\UE006B;Tag Latin Small Letter K -\UE006C;Tag Latin Small Letter L -\UE006D;Tag Latin Small Letter M -\UE006E;Tag Latin Small Letter N -\UE006F;Tag Latin Small Letter O -\UE0070;Tag Latin Small Letter P -\UE0071;Tag Latin Small Letter Q -\UE0072;Tag Latin Small Letter R -\UE0073;Tag Latin Small Letter S -\UE0074;Tag Latin Small Letter T -\UE0075;Tag Latin Small Letter U -\UE0076;Tag Latin Small Letter V -\UE0077;Tag Latin Small Letter W -\UE0078;Tag Latin Small Letter X -\UE0079;Tag Latin Small Letter Y -\UE007A;Tag Latin Small Letter Z -\UE007B;Tag Left Curly Bracket -\UE007C;Tag Vertical Line -\UE007D;Tag Right Curly Bracket -\UE007E;Tag Tilde -\UE007F;Cancel Tag +\u0020;Space +\u0021;Exclamation Mark +\u0022;Quotation Mark +\u0023;Number Sign +\u0024;Dollar Sign +\u0025;Percent Sign +\u0026;Ampersand +\u0027;Apostrophe +\u0028;Left Parenthesis +\u0029;Right Parenthesis +\u002A;Asterisk +\u002B;Plus Sign +\u002C;Comma +\u002D;Hyphen-Minus +\u002E;Full Stop +\u002F;Solidus +\u0030;Digit Zero +\u0031;Digit One +\u0032;Digit Two +\u0033;Digit Three +\u0034;Digit Four +\u0035;Digit Five +\u0036;Digit Six +\u0037;Digit Seven +\u0038;Digit Eight +\u0039;Digit Nine +\u003A;Colon +\u003B;Semicolon +\u003C;Less-Than Sign +\u003D;Equals Sign +\u003E;Greater-Than Sign +\u003F;Question Mark +\u0040;Commercial At +\u0041;Latin Capital Letter A +\u0042;Latin Capital Letter B +\u0043;Latin Capital Letter C +\u0044;Latin Capital Letter D +\u0045;Latin Capital Letter E +\u0046;Latin Capital Letter F +\u0047;Latin Capital Letter G +\u0048;Latin Capital Letter H +\u0049;Latin Capital Letter I +\u004A;Latin Capital Letter J +\u004B;Latin Capital Letter K +\u004C;Latin Capital Letter L +\u004D;Latin Capital Letter M +\u004E;Latin Capital Letter N +\u004F;Latin Capital Letter O +\u0050;Latin Capital Letter P +\u0051;Latin Capital Letter Q +\u0052;Latin Capital Letter R +\u0053;Latin Capital Letter S +\u0054;Latin Capital Letter T +\u0055;Latin Capital Letter U +\u0056;Latin Capital Letter V +\u0057;Latin Capital Letter W +\u0058;Latin Capital Letter X +\u0059;Latin Capital Letter Y +\u005A;Latin Capital Letter Z +\u005B;Left Square Bracket +\u005C;Reverse Solidus +\u005D;Right Square Bracket +\u005E;Circumflex Accent +\u005F;Low Line +\u0060;Grave Accent +\u0061;Latin Small Letter A +\u0062;Latin Small Letter B +\u0063;Latin Small Letter C +\u0064;Latin Small Letter D +\u0065;Latin Small Letter E +\u0066;Latin Small Letter F +\u0067;Latin Small Letter G +\u0068;Latin Small Letter H +\u0069;Latin Small Letter I +\u006A;Latin Small Letter J +\u006B;Latin Small Letter K +\u006C;Latin Small Letter L +\u006D;Latin Small Letter M +\u006E;Latin Small Letter N +\u006F;Latin Small Letter O +\u0070;Latin Small Letter P +\u0071;Latin Small Letter Q +\u0072;Latin Small Letter R +\u0073;Latin Small Letter S +\u0074;Latin Small Letter T +\u0075;Latin Small Letter U +\u0076;Latin Small Letter V +\u0077;Latin Small Letter W +\u0078;Latin Small Letter X +\u0079;Latin Small Letter Y +\u007A;Latin Small Letter Z +\u007B;Left Curly Bracket +\u007C;Vertical Line +\u007D;Right Curly Bracket +\u007E;Tilde +\u00A0;No-Break Space +\u00A1;Inverted Exclamation Mark +\u00A2;Cent Sign +\u00A3;Pound Sign +\u00A4;Currency Sign +\u00A5;Yen Sign +\u00A6;Broken Bar +\u00A7;Section Sign +\u00A8;Diaeresis +\u00A9;Copyright Sign +\u00AA;Feminine Ordinal Indicator +\u00AB;Left-Pointing Double Angle Quotation Mark +\u00AC;Not Sign +\u00AD;Soft Hyphen +\u00AE;Registered Sign +\u00AF;Macron +\u00B0;Degree Sign +\u00B1;Plus-Minus Sign +\u00B2;Superscript Two +\u00B3;Superscript Three +\u00B4;Acute Accent +\u00B5;Micro Sign +\u00B6;Pilcrow Sign +\u00B7;Middle Dot +\u00B8;Cedilla +\u00B9;Superscript One +\u00BA;Masculine Ordinal Indicator +\u00BB;Right-Pointing Double Angle Quotation Mark +\u00BC;Vulgar Fraction One Quarter +\u00BD;Vulgar Fraction One Half +\u00BE;Vulgar Fraction Three Quarters +\u00BF;Inverted Question Mark +\u00C0;Latin Capital Letter A With Grave +\u00C1;Latin Capital Letter A With Acute +\u00C2;Latin Capital Letter A With Circumflex +\u00C3;Latin Capital Letter A With Tilde +\u00C4;Latin Capital Letter A With Diaeresis +\u00C5;Latin Capital Letter A With Ring Above +\u00C6;Latin Capital Letter Ae +\u00C7;Latin Capital Letter C With Cedilla +\u00C8;Latin Capital Letter E With Grave +\u00C9;Latin Capital Letter E With Acute +\u00CA;Latin Capital Letter E With Circumflex +\u00CB;Latin Capital Letter E With Diaeresis +\u00CC;Latin Capital Letter I With Grave +\u00CD;Latin Capital Letter I With Acute +\u00CE;Latin Capital Letter I With Circumflex +\u00CF;Latin Capital Letter I With Diaeresis +\u00D0;Latin Capital Letter Eth +\u00D1;Latin Capital Letter N With Tilde +\u00D2;Latin Capital Letter O With Grave +\u00D3;Latin Capital Letter O With Acute +\u00D4;Latin Capital Letter O With Circumflex +\u00D5;Latin Capital Letter O With Tilde +\u00D6;Latin Capital Letter O With Diaeresis +\u00D7;Multiplication Sign +\u00D8;Latin Capital Letter O With Stroke +\u00D9;Latin Capital Letter U With Grave +\u00DA;Latin Capital Letter U With Acute +\u00DB;Latin Capital Letter U With Circumflex +\u00DC;Latin Capital Letter U With Diaeresis +\u00DD;Latin Capital Letter Y With Acute +\u00DE;Latin Capital Letter Thorn +\u00DF;Latin Small Letter Sharp S +\u00E0;Latin Small Letter A With Grave +\u00E1;Latin Small Letter A With Acute +\u00E2;Latin Small Letter A With Circumflex +\u00E3;Latin Small Letter A With Tilde +\u00E4;Latin Small Letter A With Diaeresis +\u00E5;Latin Small Letter A With Ring Above +\u00E6;Latin Small Letter Ae +\u00E7;Latin Small Letter C With Cedilla +\u00E8;Latin Small Letter E With Grave +\u00E9;Latin Small Letter E With Acute +\u00EA;Latin Small Letter E With Circumflex +\u00EB;Latin Small Letter E With Diaeresis +\u00EC;Latin Small Letter I With Grave +\u00ED;Latin Small Letter I With Acute +\u00EE;Latin Small Letter I With Circumflex +\u00EF;Latin Small Letter I With Diaeresis +\u00F0;Latin Small Letter Eth +\u00F1;Latin Small Letter N With Tilde +\u00F2;Latin Small Letter O With Grave +\u00F3;Latin Small Letter O With Acute +\u00F4;Latin Small Letter O With Circumflex +\u00F5;Latin Small Letter O With Tilde +\u00F6;Latin Small Letter O With Diaeresis +\u00F7;Division Sign +\u00F8;Latin Small Letter O With Stroke +\u00F9;Latin Small Letter U With Grave +\u00FA;Latin Small Letter U With Acute +\u00FB;Latin Small Letter U With Circumflex +\u00FC;Latin Small Letter U With Diaeresis +\u00FD;Latin Small Letter Y With Acute +\u00FE;Latin Small Letter Thorn +\u00FF;Latin Small Letter Y With Diaeresis +\u0100;Latin Capital Letter A With Macron +\u0101;Latin Small Letter A With Macron +\u0102;Latin Capital Letter A With Breve +\u0103;Latin Small Letter A With Breve +\u0104;Latin Capital Letter A With Ogonek +\u0105;Latin Small Letter A With Ogonek +\u0106;Latin Capital Letter C With Acute +\u0107;Latin Small Letter C With Acute +\u0108;Latin Capital Letter C With Circumflex +\u0109;Latin Small Letter C With Circumflex +\u010A;Latin Capital Letter C With Dot Above +\u010B;Latin Small Letter C With Dot Above +\u010C;Latin Capital Letter C With Caron +\u010D;Latin Small Letter C With Caron +\u010E;Latin Capital Letter D With Caron +\u010F;Latin Small Letter D With Caron +\u0110;Latin Capital Letter D With Stroke +\u0111;Latin Small Letter D With Stroke +\u0112;Latin Capital Letter E With Macron +\u0113;Latin Small Letter E With Macron +\u0114;Latin Capital Letter E With Breve +\u0115;Latin Small Letter E With Breve +\u0116;Latin Capital Letter E With Dot Above +\u0117;Latin Small Letter E With Dot Above +\u0118;Latin Capital Letter E With Ogonek +\u0119;Latin Small Letter E With Ogonek +\u011A;Latin Capital Letter E With Caron +\u011B;Latin Small Letter E With Caron +\u011C;Latin Capital Letter G With Circumflex +\u011D;Latin Small Letter G With Circumflex +\u011E;Latin Capital Letter G With Breve +\u011F;Latin Small Letter G With Breve +\u0120;Latin Capital Letter G With Dot Above +\u0121;Latin Small Letter G With Dot Above +\u0122;Latin Capital Letter G With Cedilla +\u0123;Latin Small Letter G With Cedilla +\u0124;Latin Capital Letter H With Circumflex +\u0125;Latin Small Letter H With Circumflex +\u0126;Latin Capital Letter H With Stroke +\u0127;Latin Small Letter H With Stroke +\u0128;Latin Capital Letter I With Tilde +\u0129;Latin Small Letter I With Tilde +\u012A;Latin Capital Letter I With Macron +\u012B;Latin Small Letter I With Macron +\u012C;Latin Capital Letter I With Breve +\u012D;Latin Small Letter I With Breve +\u012E;Latin Capital Letter I With Ogonek +\u012F;Latin Small Letter I With Ogonek +\u0130;Latin Capital Letter I With Dot Above +\u0131;Latin Small Letter Dotless I +\u0132;Latin Capital Ligature Ij +\u0133;Latin Small Ligature Ij +\u0134;Latin Capital Letter J With Circumflex +\u0135;Latin Small Letter J With Circumflex +\u0136;Latin Capital Letter K With Cedilla +\u0137;Latin Small Letter K With Cedilla +\u0138;Latin Small Letter Kra +\u0139;Latin Capital Letter L With Acute +\u013A;Latin Small Letter L With Acute +\u013B;Latin Capital Letter L With Cedilla +\u013C;Latin Small Letter L With Cedilla +\u013D;Latin Capital Letter L With Caron +\u013E;Latin Small Letter L With Caron +\u013F;Latin Capital Letter L With Middle Dot +\u0140;Latin Small Letter L With Middle Dot +\u0141;Latin Capital Letter L With Stroke +\u0142;Latin Small Letter L With Stroke +\u0143;Latin Capital Letter N With Acute +\u0144;Latin Small Letter N With Acute +\u0145;Latin Capital Letter N With Cedilla +\u0146;Latin Small Letter N With Cedilla +\u0147;Latin Capital Letter N With Caron +\u0148;Latin Small Letter N With Caron +\u0149;Latin Small Letter N Preceded By Apostrophe +\u014A;Latin Capital Letter Eng +\u014B;Latin Small Letter Eng +\u014C;Latin Capital Letter O With Macron +\u014D;Latin Small Letter O With Macron +\u014E;Latin Capital Letter O With Breve +\u014F;Latin Small Letter O With Breve +\u0150;Latin Capital Letter O With Double Acute +\u0151;Latin Small Letter O With Double Acute +\u0152;Latin Capital Ligature Oe +\u0153;Latin Small Ligature Oe +\u0154;Latin Capital Letter R With Acute +\u0155;Latin Small Letter R With Acute +\u0156;Latin Capital Letter R With Cedilla +\u0157;Latin Small Letter R With Cedilla +\u0158;Latin Capital Letter R With Caron +\u0159;Latin Small Letter R With Caron +\u015A;Latin Capital Letter S With Acute +\u015B;Latin Small Letter S With Acute +\u015C;Latin Capital Letter S With Circumflex +\u015D;Latin Small Letter S With Circumflex +\u015E;Latin Capital Letter S With Cedilla +\u015F;Latin Small Letter S With Cedilla +\u0160;Latin Capital Letter S With Caron +\u0161;Latin Small Letter S With Caron +\u0162;Latin Capital Letter T With Cedilla +\u0163;Latin Small Letter T With Cedilla +\u0164;Latin Capital Letter T With Caron +\u0165;Latin Small Letter T With Caron +\u0166;Latin Capital Letter T With Stroke +\u0167;Latin Small Letter T With Stroke +\u0168;Latin Capital Letter U With Tilde +\u0169;Latin Small Letter U With Tilde +\u016A;Latin Capital Letter U With Macron +\u016B;Latin Small Letter U With Macron +\u016C;Latin Capital Letter U With Breve +\u016D;Latin Small Letter U With Breve +\u016E;Latin Capital Letter U With Ring Above +\u016F;Latin Small Letter U With Ring Above +\u0170;Latin Capital Letter U With Double Acute +\u0171;Latin Small Letter U With Double Acute +\u0172;Latin Capital Letter U With Ogonek +\u0173;Latin Small Letter U With Ogonek +\u0174;Latin Capital Letter W With Circumflex +\u0175;Latin Small Letter W With Circumflex +\u0176;Latin Capital Letter Y With Circumflex +\u0177;Latin Small Letter Y With Circumflex +\u0178;Latin Capital Letter Y With Diaeresis +\u0179;Latin Capital Letter Z With Acute +\u017A;Latin Small Letter Z With Acute +\u017B;Latin Capital Letter Z With Dot Above +\u017C;Latin Small Letter Z With Dot Above +\u017D;Latin Capital Letter Z With Caron +\u017E;Latin Small Letter Z With Caron +\u017F;Latin Small Letter Long S +\u0180;Latin Small Letter B With Stroke +\u0181;Latin Capital Letter B With Hook +\u0182;Latin Capital Letter B With Topbar +\u0183;Latin Small Letter B With Topbar +\u0184;Latin Capital Letter Tone Six +\u0185;Latin Small Letter Tone Six +\u0186;Latin Capital Letter Open O +\u0187;Latin Capital Letter C With Hook +\u0188;Latin Small Letter C With Hook +\u0189;Latin Capital Letter African D +\u018A;Latin Capital Letter D With Hook +\u018B;Latin Capital Letter D With Topbar +\u018C;Latin Small Letter D With Topbar +\u018D;Latin Small Letter Turned Delta +\u018E;Latin Capital Letter Reversed E +\u018F;Latin Capital Letter Schwa +\u0190;Latin Capital Letter Open E +\u0191;Latin Capital Letter F With Hook +\u0192;Latin Small Letter F With Hook +\u0193;Latin Capital Letter G With Hook +\u0194;Latin Capital Letter Gamma +\u0195;Latin Small Letter Hv +\u0196;Latin Capital Letter Iota +\u0197;Latin Capital Letter I With Stroke +\u0198;Latin Capital Letter K With Hook +\u0199;Latin Small Letter K With Hook +\u019A;Latin Small Letter L With Bar +\u019B;Latin Small Letter Lambda With Stroke +\u019C;Latin Capital Letter Turned M +\u019D;Latin Capital Letter N With Left Hook +\u019E;Latin Small Letter N With Long Right Leg +\u019F;Latin Capital Letter O With Middle Tilde +\u01A0;Latin Capital Letter O With Horn +\u01A1;Latin Small Letter O With Horn +\u01A2;Latin Capital Letter Oi +\u01A3;Latin Small Letter Oi +\u01A4;Latin Capital Letter P With Hook +\u01A5;Latin Small Letter P With Hook +\u01A6;Latin Letter Yr +\u01A7;Latin Capital Letter Tone Two +\u01A8;Latin Small Letter Tone Two +\u01A9;Latin Capital Letter Esh +\u01AA;Latin Letter Reversed Esh Loop +\u01AB;Latin Small Letter T With Palatal Hook +\u01AC;Latin Capital Letter T With Hook +\u01AD;Latin Small Letter T With Hook +\u01AE;Latin Capital Letter T With Retroflex Hook +\u01AF;Latin Capital Letter U With Horn +\u01B0;Latin Small Letter U With Horn +\u01B1;Latin Capital Letter Upsilon +\u01B2;Latin Capital Letter V With Hook +\u01B3;Latin Capital Letter Y With Hook +\u01B4;Latin Small Letter Y With Hook +\u01B5;Latin Capital Letter Z With Stroke +\u01B6;Latin Small Letter Z With Stroke +\u01B7;Latin Capital Letter Ezh +\u01B8;Latin Capital Letter Ezh Reversed +\u01B9;Latin Small Letter Ezh Reversed +\u01BA;Latin Small Letter Ezh With Tail +\u01BB;Latin Letter Two With Stroke +\u01BC;Latin Capital Letter Tone Five +\u01BD;Latin Small Letter Tone Five +\u01BE;Latin Letter Inverted Glottal Stop With Stroke +\u01BF;Latin Letter Wynn +\u01C0;Latin Letter Dental Click +\u01C1;Latin Letter Lateral Click +\u01C2;Latin Letter Alveolar Click +\u01C3;Latin Letter Retroflex Click +\u01C4;Latin Capital Letter Dz With Caron +\u01C5;Latin Capital Letter D With Small Letter Z With Caron +\u01C6;Latin Small Letter Dz With Caron +\u01C7;Latin Capital Letter Lj +\u01C8;Latin Capital Letter L With Small Letter J +\u01C9;Latin Small Letter Lj +\u01CA;Latin Capital Letter Nj +\u01CB;Latin Capital Letter N With Small Letter J +\u01CC;Latin Small Letter Nj +\u01CD;Latin Capital Letter A With Caron +\u01CE;Latin Small Letter A With Caron +\u01CF;Latin Capital Letter I With Caron +\u01D0;Latin Small Letter I With Caron +\u01D1;Latin Capital Letter O With Caron +\u01D2;Latin Small Letter O With Caron +\u01D3;Latin Capital Letter U With Caron +\u01D4;Latin Small Letter U With Caron +\u01D5;Latin Capital Letter U With Diaeresis And Macron +\u01D6;Latin Small Letter U With Diaeresis And Macron +\u01D7;Latin Capital Letter U With Diaeresis And Acute +\u01D8;Latin Small Letter U With Diaeresis And Acute +\u01D9;Latin Capital Letter U With Diaeresis And Caron +\u01DA;Latin Small Letter U With Diaeresis And Caron +\u01DB;Latin Capital Letter U With Diaeresis And Grave +\u01DC;Latin Small Letter U With Diaeresis And Grave +\u01DD;Latin Small Letter Turned E +\u01DE;Latin Capital Letter A With Diaeresis And Macron +\u01DF;Latin Small Letter A With Diaeresis And Macron +\u01E0;Latin Capital Letter A With Dot Above And Macron +\u01E1;Latin Small Letter A With Dot Above And Macron +\u01E2;Latin Capital Letter Ae With Macron +\u01E3;Latin Small Letter Ae With Macron +\u01E4;Latin Capital Letter G With Stroke +\u01E5;Latin Small Letter G With Stroke +\u01E6;Latin Capital Letter G With Caron +\u01E7;Latin Small Letter G With Caron +\u01E8;Latin Capital Letter K With Caron +\u01E9;Latin Small Letter K With Caron +\u01EA;Latin Capital Letter O With Ogonek +\u01EB;Latin Small Letter O With Ogonek +\u01EC;Latin Capital Letter O With Ogonek And Macron +\u01ED;Latin Small Letter O With Ogonek And Macron +\u01EE;Latin Capital Letter Ezh With Caron +\u01EF;Latin Small Letter Ezh With Caron +\u01F0;Latin Small Letter J With Caron +\u01F1;Latin Capital Letter Dz +\u01F2;Latin Capital Letter D With Small Letter Z +\u01F3;Latin Small Letter Dz +\u01F4;Latin Capital Letter G With Acute +\u01F5;Latin Small Letter G With Acute +\u01F6;Latin Capital Letter Hwair +\u01F7;Latin Capital Letter Wynn +\u01F8;Latin Capital Letter N With Grave +\u01F9;Latin Small Letter N With Grave +\u01FA;Latin Capital Letter A With Ring Above And Acute +\u01FB;Latin Small Letter A With Ring Above And Acute +\u01FC;Latin Capital Letter Ae With Acute +\u01FD;Latin Small Letter Ae With Acute +\u01FE;Latin Capital Letter O With Stroke And Acute +\u01FF;Latin Small Letter O With Stroke And Acute +\u0200;Latin Capital Letter A With Double Grave +\u0201;Latin Small Letter A With Double Grave +\u0202;Latin Capital Letter A With Inverted Breve +\u0203;Latin Small Letter A With Inverted Breve +\u0204;Latin Capital Letter E With Double Grave +\u0205;Latin Small Letter E With Double Grave +\u0206;Latin Capital Letter E With Inverted Breve +\u0207;Latin Small Letter E With Inverted Breve +\u0208;Latin Capital Letter I With Double Grave +\u0209;Latin Small Letter I With Double Grave +\u020A;Latin Capital Letter I With Inverted Breve +\u020B;Latin Small Letter I With Inverted Breve +\u020C;Latin Capital Letter O With Double Grave +\u020D;Latin Small Letter O With Double Grave +\u020E;Latin Capital Letter O With Inverted Breve +\u020F;Latin Small Letter O With Inverted Breve +\u0210;Latin Capital Letter R With Double Grave +\u0211;Latin Small Letter R With Double Grave +\u0212;Latin Capital Letter R With Inverted Breve +\u0213;Latin Small Letter R With Inverted Breve +\u0214;Latin Capital Letter U With Double Grave +\u0215;Latin Small Letter U With Double Grave +\u0216;Latin Capital Letter U With Inverted Breve +\u0217;Latin Small Letter U With Inverted Breve +\u0218;Latin Capital Letter S With Comma Below +\u0219;Latin Small Letter S With Comma Below +\u021A;Latin Capital Letter T With Comma Below +\u021B;Latin Small Letter T With Comma Below +\u021C;Latin Capital Letter Yogh +\u021D;Latin Small Letter Yogh +\u021E;Latin Capital Letter H With Caron +\u021F;Latin Small Letter H With Caron +\u0220;Latin Capital Letter N With Long Right Leg +\u0221;Latin Small Letter D With Curl +\u0222;Latin Capital Letter Ou +\u0223;Latin Small Letter Ou +\u0224;Latin Capital Letter Z With Hook +\u0225;Latin Small Letter Z With Hook +\u0226;Latin Capital Letter A With Dot Above +\u0227;Latin Small Letter A With Dot Above +\u0228;Latin Capital Letter E With Cedilla +\u0229;Latin Small Letter E With Cedilla +\u022A;Latin Capital Letter O With Diaeresis And Macron +\u022B;Latin Small Letter O With Diaeresis And Macron +\u022C;Latin Capital Letter O With Tilde And Macron +\u022D;Latin Small Letter O With Tilde And Macron +\u022E;Latin Capital Letter O With Dot Above +\u022F;Latin Small Letter O With Dot Above +\u0230;Latin Capital Letter O With Dot Above And Macron +\u0231;Latin Small Letter O With Dot Above And Macron +\u0232;Latin Capital Letter Y With Macron +\u0233;Latin Small Letter Y With Macron +\u0234;Latin Small Letter L With Curl +\u0235;Latin Small Letter N With Curl +\u0236;Latin Small Letter T With Curl +\u0237;Latin Small Letter Dotless J +\u0238;Latin Small Letter Db Digraph +\u0239;Latin Small Letter Qp Digraph +\u023A;Latin Capital Letter A With Stroke +\u023B;Latin Capital Letter C With Stroke +\u023C;Latin Small Letter C With Stroke +\u023D;Latin Capital Letter L With Bar +\u023E;Latin Capital Letter T With Diagonal Stroke +\u023F;Latin Small Letter S With Swash Tail +\u0240;Latin Small Letter Z With Swash Tail +\u0241;Latin Capital Letter Glottal Stop +\u0242;Latin Small Letter Glottal Stop +\u0243;Latin Capital Letter B With Stroke +\u0244;Latin Capital Letter U Bar +\u0245;Latin Capital Letter Turned V +\u0246;Latin Capital Letter E With Stroke +\u0247;Latin Small Letter E With Stroke +\u0248;Latin Capital Letter J With Stroke +\u0249;Latin Small Letter J With Stroke +\u024A;Latin Capital Letter Small Q With Hook Tail +\u024B;Latin Small Letter Q With Hook Tail +\u024C;Latin Capital Letter R With Stroke +\u024D;Latin Small Letter R With Stroke +\u024E;Latin Capital Letter Y With Stroke +\u024F;Latin Small Letter Y With Stroke +\u0250;Latin Small Letter Turned A +\u0251;Latin Small Letter Alpha +\u0252;Latin Small Letter Turned Alpha +\u0253;Latin Small Letter B With Hook +\u0254;Latin Small Letter Open O +\u0255;Latin Small Letter C With Curl +\u0256;Latin Small Letter D With Tail +\u0257;Latin Small Letter D With Hook +\u0258;Latin Small Letter Reversed E +\u0259;Latin Small Letter Schwa +\u025A;Latin Small Letter Schwa With Hook +\u025B;Latin Small Letter Open E +\u025C;Latin Small Letter Reversed Open E +\u025D;Latin Small Letter Reversed Open E With Hook +\u025E;Latin Small Letter Closed Reversed Open E +\u025F;Latin Small Letter Dotless J With Stroke +\u0260;Latin Small Letter G With Hook +\u0261;Latin Small Letter Script G +\u0262;Latin Letter Small Capital G +\u0263;Latin Small Letter Gamma +\u0264;Latin Small Letter Rams Horn +\u0265;Latin Small Letter Turned H +\u0266;Latin Small Letter H With Hook +\u0267;Latin Small Letter Heng With Hook +\u0268;Latin Small Letter I With Stroke +\u0269;Latin Small Letter Iota +\u026A;Latin Letter Small Capital I +\u026B;Latin Small Letter L With Middle Tilde +\u026C;Latin Small Letter L With Belt +\u026D;Latin Small Letter L With Retroflex Hook +\u026E;Latin Small Letter Lezh +\u026F;Latin Small Letter Turned M +\u0270;Latin Small Letter Turned M With Long Leg +\u0271;Latin Small Letter M With Hook +\u0272;Latin Small Letter N With Left Hook +\u0273;Latin Small Letter N With Retroflex Hook +\u0274;Latin Letter Small Capital N +\u0275;Latin Small Letter Barred O +\u0276;Latin Letter Small Capital Oe +\u0277;Latin Small Letter Closed Omega +\u0278;Latin Small Letter Phi +\u0279;Latin Small Letter Turned R +\u027A;Latin Small Letter Turned R With Long Leg +\u027B;Latin Small Letter Turned R With Hook +\u027C;Latin Small Letter R With Long Leg +\u027D;Latin Small Letter R With Tail +\u027E;Latin Small Letter R With Fishhook +\u027F;Latin Small Letter Reversed R With Fishhook +\u0280;Latin Letter Small Capital R +\u0281;Latin Letter Small Capital Inverted R +\u0282;Latin Small Letter S With Hook +\u0283;Latin Small Letter Esh +\u0284;Latin Small Letter Dotless J With Stroke And Hook +\u0285;Latin Small Letter Squat Reversed Esh +\u0286;Latin Small Letter Esh With Curl +\u0287;Latin Small Letter Turned T +\u0288;Latin Small Letter T With Retroflex Hook +\u0289;Latin Small Letter U Bar +\u028A;Latin Small Letter Upsilon +\u028B;Latin Small Letter V With Hook +\u028C;Latin Small Letter Turned V +\u028D;Latin Small Letter Turned W +\u028E;Latin Small Letter Turned Y +\u028F;Latin Letter Small Capital Y +\u0290;Latin Small Letter Z With Retroflex Hook +\u0291;Latin Small Letter Z With Curl +\u0292;Latin Small Letter Ezh +\u0293;Latin Small Letter Ezh With Curl +\u0294;Latin Letter Glottal Stop +\u0295;Latin Letter Pharyngeal Voiced Fricative +\u0296;Latin Letter Inverted Glottal Stop +\u0297;Latin Letter Stretched C +\u0298;Latin Letter Bilabial Click +\u0299;Latin Letter Small Capital B +\u029A;Latin Small Letter Closed Open E +\u029B;Latin Letter Small Capital G With Hook +\u029C;Latin Letter Small Capital H +\u029D;Latin Small Letter J With Crossed-Tail +\u029E;Latin Small Letter Turned K +\u029F;Latin Letter Small Capital L +\u02A0;Latin Small Letter Q With Hook +\u02A1;Latin Letter Glottal Stop With Stroke +\u02A2;Latin Letter Reversed Glottal Stop With Stroke +\u02A3;Latin Small Letter Dz Digraph +\u02A4;Latin Small Letter Dezh Digraph +\u02A5;Latin Small Letter Dz Digraph With Curl +\u02A6;Latin Small Letter Ts Digraph +\u02A7;Latin Small Letter Tesh Digraph +\u02A8;Latin Small Letter Tc Digraph With Curl +\u02A9;Latin Small Letter Feng Digraph +\u02AA;Latin Small Letter Ls Digraph +\u02AB;Latin Small Letter Lz Digraph +\u02AC;Latin Letter Bilabial Percussive +\u02AD;Latin Letter Bidental Percussive +\u02AE;Latin Small Letter Turned H With Fishhook +\u02AF;Latin Small Letter Turned H With Fishhook And Tail +\u02B0;Modifier Letter Small H +\u02B1;Modifier Letter Small H With Hook +\u02B2;Modifier Letter Small J +\u02B3;Modifier Letter Small R +\u02B4;Modifier Letter Small Turned R +\u02B5;Modifier Letter Small Turned R With Hook +\u02B6;Modifier Letter Small Capital Inverted R +\u02B7;Modifier Letter Small W +\u02B8;Modifier Letter Small Y +\u02B9;Modifier Letter Prime +\u02BA;Modifier Letter Double Prime +\u02BB;Modifier Letter Turned Comma +\u02BC;Modifier Letter Apostrophe +\u02BD;Modifier Letter Reversed Comma +\u02BE;Modifier Letter Right Half Ring +\u02BF;Modifier Letter Left Half Ring +\u02C0;Modifier Letter Glottal Stop +\u02C1;Modifier Letter Reversed Glottal Stop +\u02C2;Modifier Letter Left Arrowhead +\u02C3;Modifier Letter Right Arrowhead +\u02C4;Modifier Letter Up Arrowhead +\u02C5;Modifier Letter Down Arrowhead +\u02C6;Modifier Letter Circumflex Accent +\u02C7;Caron +\u02C8;Modifier Letter Vertical Line +\u02C9;Modifier Letter Macron +\u02CA;Modifier Letter Acute Accent +\u02CB;Modifier Letter Grave Accent +\u02CC;Modifier Letter Low Vertical Line +\u02CD;Modifier Letter Low Macron +\u02CE;Modifier Letter Low Grave Accent +\u02CF;Modifier Letter Low Acute Accent +\u02D0;Modifier Letter Triangular Colon +\u02D1;Modifier Letter Half Triangular Colon +\u02D2;Modifier Letter Centred Right Half Ring +\u02D3;Modifier Letter Centred Left Half Ring +\u02D4;Modifier Letter Up Tack +\u02D5;Modifier Letter Down Tack +\u02D6;Modifier Letter Plus Sign +\u02D7;Modifier Letter Minus Sign +\u02D8;Breve +\u02D9;Dot Above +\u02DA;Ring Above +\u02DB;Ogonek +\u02DC;Small Tilde +\u02DD;Double Acute Accent +\u02DE;Modifier Letter Rhotic Hook +\u02DF;Modifier Letter Cross Accent +\u02E0;Modifier Letter Small Gamma +\u02E1;Modifier Letter Small L +\u02E2;Modifier Letter Small S +\u02E3;Modifier Letter Small X +\u02E4;Modifier Letter Small Reversed Glottal Stop +\u02E5;Modifier Letter Extra-High Tone Bar +\u02E6;Modifier Letter High Tone Bar +\u02E7;Modifier Letter Mid Tone Bar +\u02E8;Modifier Letter Low Tone Bar +\u02E9;Modifier Letter Extra-Low Tone Bar +\u02EA;Modifier Letter Yin Departing Tone Mark +\u02EB;Modifier Letter Yang Departing Tone Mark +\u02EC;Modifier Letter Voicing +\u02ED;Modifier Letter Unaspirated +\u02EE;Modifier Letter Double Apostrophe +\u02EF;Modifier Letter Low Down Arrowhead +\u02F0;Modifier Letter Low Up Arrowhead +\u02F1;Modifier Letter Low Left Arrowhead +\u02F2;Modifier Letter Low Right Arrowhead +\u02F3;Modifier Letter Low Ring +\u02F4;Modifier Letter Middle Grave Accent +\u02F5;Modifier Letter Middle Double Grave Accent +\u02F6;Modifier Letter Middle Double Acute Accent +\u02F7;Modifier Letter Low Tilde +\u02F8;Modifier Letter Raised Colon +\u02F9;Modifier Letter Begin High Tone +\u02FA;Modifier Letter End High Tone +\u02FB;Modifier Letter Begin Low Tone +\u02FC;Modifier Letter End Low Tone +\u02FD;Modifier Letter Shelf +\u02FE;Modifier Letter Open Shelf +\u02FF;Modifier Letter Low Left Arrow +\u0300;Combining Grave Accent +\u0301;Combining Acute Accent +\u0302;Combining Circumflex Accent +\u0303;Combining Tilde +\u0304;Combining Macron +\u0305;Combining Overline +\u0306;Combining Breve +\u0307;Combining Dot Above +\u0308;Combining Diaeresis +\u0309;Combining Hook Above +\u030A;Combining Ring Above +\u030B;Combining Double Acute Accent +\u030C;Combining Caron +\u030D;Combining Vertical Line Above +\u030E;Combining Double Vertical Line Above +\u030F;Combining Double Grave Accent +\u0310;Combining Candrabindu +\u0311;Combining Inverted Breve +\u0312;Combining Turned Comma Above +\u0313;Combining Comma Above +\u0314;Combining Reversed Comma Above +\u0315;Combining Comma Above Right +\u0316;Combining Grave Accent Below +\u0317;Combining Acute Accent Below +\u0318;Combining Left Tack Below +\u0319;Combining Right Tack Below +\u031A;Combining Left Angle Above +\u031B;Combining Horn +\u031C;Combining Left Half Ring Below +\u031D;Combining Up Tack Below +\u031E;Combining Down Tack Below +\u031F;Combining Plus Sign Below +\u0320;Combining Minus Sign Below +\u0321;Combining Palatalized Hook Below +\u0322;Combining Retroflex Hook Below +\u0323;Combining Dot Below +\u0324;Combining Diaeresis Below +\u0325;Combining Ring Below +\u0326;Combining Comma Below +\u0327;Combining Cedilla +\u0328;Combining Ogonek +\u0329;Combining Vertical Line Below +\u032A;Combining Bridge Below +\u032B;Combining Inverted Double Arch Below +\u032C;Combining Caron Below +\u032D;Combining Circumflex Accent Below +\u032E;Combining Breve Below +\u032F;Combining Inverted Breve Below +\u0330;Combining Tilde Below +\u0331;Combining Macron Below +\u0332;Combining Low Line +\u0333;Combining Double Low Line +\u0334;Combining Tilde Overlay +\u0335;Combining Short Stroke Overlay +\u0336;Combining Long Stroke Overlay +\u0337;Combining Short Solidus Overlay +\u0338;Combining Long Solidus Overlay +\u0339;Combining Right Half Ring Below +\u033A;Combining Inverted Bridge Below +\u033B;Combining Square Below +\u033C;Combining Seagull Below +\u033D;Combining X Above +\u033E;Combining Vertical Tilde +\u033F;Combining Double Overline +\u0340;Combining Grave Tone Mark +\u0341;Combining Acute Tone Mark +\u0342;Combining Greek Perispomeni +\u0343;Combining Greek Koronis +\u0344;Combining Greek Dialytika Tonos +\u0345;Combining Greek Ypogegrammeni +\u0346;Combining Bridge Above +\u0347;Combining Equals Sign Below +\u0348;Combining Double Vertical Line Below +\u0349;Combining Left Angle Below +\u034A;Combining Not Tilde Above +\u034B;Combining Homothetic Above +\u034C;Combining Almost Equal To Above +\u034D;Combining Left Right Arrow Below +\u034E;Combining Upwards Arrow Below +\u034F;Combining Grapheme Joiner +\u0350;Combining Right Arrowhead Above +\u0351;Combining Left Half Ring Above +\u0352;Combining Fermata +\u0353;Combining X Below +\u0354;Combining Left Arrowhead Below +\u0355;Combining Right Arrowhead Below +\u0356;Combining Right Arrowhead And Up Arrowhead Below +\u0357;Combining Right Half Ring Above +\u0358;Combining Dot Above Right +\u0359;Combining Asterisk Below +\u035A;Combining Double Ring Below +\u035B;Combining Zigzag Above +\u035C;Combining Double Breve Below +\u035D;Combining Double Breve +\u035E;Combining Double Macron +\u035F;Combining Double Macron Below +\u0360;Combining Double Tilde +\u0361;Combining Double Inverted Breve +\u0362;Combining Double Rightwards Arrow Below +\u0363;Combining Latin Small Letter A +\u0364;Combining Latin Small Letter E +\u0365;Combining Latin Small Letter I +\u0366;Combining Latin Small Letter O +\u0367;Combining Latin Small Letter U +\u0368;Combining Latin Small Letter C +\u0369;Combining Latin Small Letter D +\u036A;Combining Latin Small Letter H +\u036B;Combining Latin Small Letter M +\u036C;Combining Latin Small Letter R +\u036D;Combining Latin Small Letter T +\u036E;Combining Latin Small Letter V +\u036F;Combining Latin Small Letter X +\u0370;Greek Capital Letter Heta +\u0371;Greek Small Letter Heta +\u0372;Greek Capital Letter Archaic Sampi +\u0373;Greek Small Letter Archaic Sampi +\u0374;Greek Numeral Sign +\u0375;Greek Lower Numeral Sign +\u0376;Greek Capital Letter Pamphylian Digamma +\u0377;Greek Small Letter Pamphylian Digamma +\u037A;Greek Ypogegrammeni +\u037B;Greek Small Reversed Lunate Sigma Symbol +\u037C;Greek Small Dotted Lunate Sigma Symbol +\u037D;Greek Small Reversed Dotted Lunate Sigma Symbol +\u037E;Greek Question Mark +\u037F;Greek Capital Letter Yot +\u0384;Greek Tonos +\u0385;Greek Dialytika Tonos +\u0386;Greek Capital Letter Alpha With Tonos +\u0387;Greek Ano Teleia +\u0388;Greek Capital Letter Epsilon With Tonos +\u0389;Greek Capital Letter Eta With Tonos +\u038A;Greek Capital Letter Iota With Tonos +\u038C;Greek Capital Letter Omicron With Tonos +\u038E;Greek Capital Letter Upsilon With Tonos +\u038F;Greek Capital Letter Omega With Tonos +\u0390;Greek Small Letter Iota With Dialytika And Tonos +\u0391;Greek Capital Letter Alpha +\u0392;Greek Capital Letter Beta +\u0393;Greek Capital Letter Gamma +\u0394;Greek Capital Letter Delta +\u0395;Greek Capital Letter Epsilon +\u0396;Greek Capital Letter Zeta +\u0397;Greek Capital Letter Eta +\u0398;Greek Capital Letter Theta +\u0399;Greek Capital Letter Iota +\u039A;Greek Capital Letter Kappa +\u039B;Greek Capital Letter Lamda +\u039C;Greek Capital Letter Mu +\u039D;Greek Capital Letter Nu +\u039E;Greek Capital Letter Xi +\u039F;Greek Capital Letter Omicron +\u03A0;Greek Capital Letter Pi +\u03A1;Greek Capital Letter Rho +\u03A3;Greek Capital Letter Sigma +\u03A4;Greek Capital Letter Tau +\u03A5;Greek Capital Letter Upsilon +\u03A6;Greek Capital Letter Phi +\u03A7;Greek Capital Letter Chi +\u03A8;Greek Capital Letter Psi +\u03A9;Greek Capital Letter Omega +\u03AA;Greek Capital Letter Iota With Dialytika +\u03AB;Greek Capital Letter Upsilon With Dialytika +\u03AC;Greek Small Letter Alpha With Tonos +\u03AD;Greek Small Letter Epsilon With Tonos +\u03AE;Greek Small Letter Eta With Tonos +\u03AF;Greek Small Letter Iota With Tonos +\u03B0;Greek Small Letter Upsilon With Dialytika And Tonos +\u03B1;Greek Small Letter Alpha +\u03B2;Greek Small Letter Beta +\u03B3;Greek Small Letter Gamma +\u03B4;Greek Small Letter Delta +\u03B5;Greek Small Letter Epsilon +\u03B6;Greek Small Letter Zeta +\u03B7;Greek Small Letter Eta +\u03B8;Greek Small Letter Theta +\u03B9;Greek Small Letter Iota +\u03BA;Greek Small Letter Kappa +\u03BB;Greek Small Letter Lamda +\u03BC;Greek Small Letter Mu +\u03BD;Greek Small Letter Nu +\u03BE;Greek Small Letter Xi +\u03BF;Greek Small Letter Omicron +\u03C0;Greek Small Letter Pi +\u03C1;Greek Small Letter Rho +\u03C2;Greek Small Letter Final Sigma +\u03C3;Greek Small Letter Sigma +\u03C4;Greek Small Letter Tau +\u03C5;Greek Small Letter Upsilon +\u03C6;Greek Small Letter Phi +\u03C7;Greek Small Letter Chi +\u03C8;Greek Small Letter Psi +\u03C9;Greek Small Letter Omega +\u03CA;Greek Small Letter Iota With Dialytika +\u03CB;Greek Small Letter Upsilon With Dialytika +\u03CC;Greek Small Letter Omicron With Tonos +\u03CD;Greek Small Letter Upsilon With Tonos +\u03CE;Greek Small Letter Omega With Tonos +\u03CF;Greek Capital Kai Symbol +\u03D0;Greek Beta Symbol +\u03D1;Greek Theta Symbol +\u03D2;Greek Upsilon With Hook Symbol +\u03D3;Greek Upsilon With Acute And Hook Symbol +\u03D4;Greek Upsilon With Diaeresis And Hook Symbol +\u03D5;Greek Phi Symbol +\u03D6;Greek Pi Symbol +\u03D7;Greek Kai Symbol +\u03D8;Greek Letter Archaic Koppa +\u03D9;Greek Small Letter Archaic Koppa +\u03DA;Greek Letter Stigma +\u03DB;Greek Small Letter Stigma +\u03DC;Greek Letter Digamma +\u03DD;Greek Small Letter Digamma +\u03DE;Greek Letter Koppa +\u03DF;Greek Small Letter Koppa +\u03E0;Greek Letter Sampi +\u03E1;Greek Small Letter Sampi +\u03E2;Coptic Capital Letter Shei +\u03E3;Coptic Small Letter Shei +\u03E4;Coptic Capital Letter Fei +\u03E5;Coptic Small Letter Fei +\u03E6;Coptic Capital Letter Khei +\u03E7;Coptic Small Letter Khei +\u03E8;Coptic Capital Letter Hori +\u03E9;Coptic Small Letter Hori +\u03EA;Coptic Capital Letter Gangia +\u03EB;Coptic Small Letter Gangia +\u03EC;Coptic Capital Letter Shima +\u03ED;Coptic Small Letter Shima +\u03EE;Coptic Capital Letter Dei +\u03EF;Coptic Small Letter Dei +\u03F0;Greek Kappa Symbol +\u03F1;Greek Rho Symbol +\u03F2;Greek Lunate Sigma Symbol +\u03F3;Greek Letter Yot +\u03F4;Greek Capital Theta Symbol +\u03F5;Greek Lunate Epsilon Symbol +\u03F6;Greek Reversed Lunate Epsilon Symbol +\u03F7;Greek Capital Letter Sho +\u03F8;Greek Small Letter Sho +\u03F9;Greek Capital Lunate Sigma Symbol +\u03FA;Greek Capital Letter San +\u03FB;Greek Small Letter San +\u03FC;Greek Rho With Stroke Symbol +\u03FD;Greek Capital Reversed Lunate Sigma Symbol +\u03FE;Greek Capital Dotted Lunate Sigma Symbol +\u03FF;Greek Capital Reversed Dotted Lunate Sigma Symbol +\u0400;Cyrillic Capital Letter Ie With Grave +\u0401;Cyrillic Capital Letter Io +\u0402;Cyrillic Capital Letter Dje +\u0403;Cyrillic Capital Letter Gje +\u0404;Cyrillic Capital Letter Ukrainian Ie +\u0405;Cyrillic Capital Letter Dze +\u0406;Cyrillic Capital Letter Byelorussian-Ukrainian I +\u0407;Cyrillic Capital Letter Yi +\u0408;Cyrillic Capital Letter Je +\u0409;Cyrillic Capital Letter Lje +\u040A;Cyrillic Capital Letter Nje +\u040B;Cyrillic Capital Letter Tshe +\u040C;Cyrillic Capital Letter Kje +\u040D;Cyrillic Capital Letter I With Grave +\u040E;Cyrillic Capital Letter Short U +\u040F;Cyrillic Capital Letter Dzhe +\u0410;Cyrillic Capital Letter A +\u0411;Cyrillic Capital Letter Be +\u0412;Cyrillic Capital Letter Ve +\u0413;Cyrillic Capital Letter Ghe +\u0414;Cyrillic Capital Letter De +\u0415;Cyrillic Capital Letter Ie +\u0416;Cyrillic Capital Letter Zhe +\u0417;Cyrillic Capital Letter Ze +\u0418;Cyrillic Capital Letter I +\u0419;Cyrillic Capital Letter Short I +\u041A;Cyrillic Capital Letter Ka +\u041B;Cyrillic Capital Letter El +\u041C;Cyrillic Capital Letter Em +\u041D;Cyrillic Capital Letter En +\u041E;Cyrillic Capital Letter O +\u041F;Cyrillic Capital Letter Pe +\u0420;Cyrillic Capital Letter Er +\u0421;Cyrillic Capital Letter Es +\u0422;Cyrillic Capital Letter Te +\u0423;Cyrillic Capital Letter U +\u0424;Cyrillic Capital Letter Ef +\u0425;Cyrillic Capital Letter Ha +\u0426;Cyrillic Capital Letter Tse +\u0427;Cyrillic Capital Letter Che +\u0428;Cyrillic Capital Letter Sha +\u0429;Cyrillic Capital Letter Shcha +\u042A;Cyrillic Capital Letter Hard Sign +\u042B;Cyrillic Capital Letter Yeru +\u042C;Cyrillic Capital Letter Soft Sign +\u042D;Cyrillic Capital Letter E +\u042E;Cyrillic Capital Letter Yu +\u042F;Cyrillic Capital Letter Ya +\u0430;Cyrillic Small Letter A +\u0431;Cyrillic Small Letter Be +\u0432;Cyrillic Small Letter Ve +\u0433;Cyrillic Small Letter Ghe +\u0434;Cyrillic Small Letter De +\u0435;Cyrillic Small Letter Ie +\u0436;Cyrillic Small Letter Zhe +\u0437;Cyrillic Small Letter Ze +\u0438;Cyrillic Small Letter I +\u0439;Cyrillic Small Letter Short I +\u043A;Cyrillic Small Letter Ka +\u043B;Cyrillic Small Letter El +\u043C;Cyrillic Small Letter Em +\u043D;Cyrillic Small Letter En +\u043E;Cyrillic Small Letter O +\u043F;Cyrillic Small Letter Pe +\u0440;Cyrillic Small Letter Er +\u0441;Cyrillic Small Letter Es +\u0442;Cyrillic Small Letter Te +\u0443;Cyrillic Small Letter U +\u0444;Cyrillic Small Letter Ef +\u0445;Cyrillic Small Letter Ha +\u0446;Cyrillic Small Letter Tse +\u0447;Cyrillic Small Letter Che +\u0448;Cyrillic Small Letter Sha +\u0449;Cyrillic Small Letter Shcha +\u044A;Cyrillic Small Letter Hard Sign +\u044B;Cyrillic Small Letter Yeru +\u044C;Cyrillic Small Letter Soft Sign +\u044D;Cyrillic Small Letter E +\u044E;Cyrillic Small Letter Yu +\u044F;Cyrillic Small Letter Ya +\u0450;Cyrillic Small Letter Ie With Grave +\u0451;Cyrillic Small Letter Io +\u0452;Cyrillic Small Letter Dje +\u0453;Cyrillic Small Letter Gje +\u0454;Cyrillic Small Letter Ukrainian Ie +\u0455;Cyrillic Small Letter Dze +\u0456;Cyrillic Small Letter Byelorussian-Ukrainian I +\u0457;Cyrillic Small Letter Yi +\u0458;Cyrillic Small Letter Je +\u0459;Cyrillic Small Letter Lje +\u045A;Cyrillic Small Letter Nje +\u045B;Cyrillic Small Letter Tshe +\u045C;Cyrillic Small Letter Kje +\u045D;Cyrillic Small Letter I With Grave +\u045E;Cyrillic Small Letter Short U +\u045F;Cyrillic Small Letter Dzhe +\u0460;Cyrillic Capital Letter Omega +\u0461;Cyrillic Small Letter Omega +\u0462;Cyrillic Capital Letter Yat +\u0463;Cyrillic Small Letter Yat +\u0464;Cyrillic Capital Letter Iotified E +\u0465;Cyrillic Small Letter Iotified E +\u0466;Cyrillic Capital Letter Little Yus +\u0467;Cyrillic Small Letter Little Yus +\u0468;Cyrillic Capital Letter Iotified Little Yus +\u0469;Cyrillic Small Letter Iotified Little Yus +\u046A;Cyrillic Capital Letter Big Yus +\u046B;Cyrillic Small Letter Big Yus +\u046C;Cyrillic Capital Letter Iotified Big Yus +\u046D;Cyrillic Small Letter Iotified Big Yus +\u046E;Cyrillic Capital Letter Ksi +\u046F;Cyrillic Small Letter Ksi +\u0470;Cyrillic Capital Letter Psi +\u0471;Cyrillic Small Letter Psi +\u0472;Cyrillic Capital Letter Fita +\u0473;Cyrillic Small Letter Fita +\u0474;Cyrillic Capital Letter Izhitsa +\u0475;Cyrillic Small Letter Izhitsa +\u0476;Cyrillic Capital Letter Izhitsa With Double Grave Accent +\u0477;Cyrillic Small Letter Izhitsa With Double Grave Accent +\u0478;Cyrillic Capital Letter Uk +\u0479;Cyrillic Small Letter Uk +\u047A;Cyrillic Capital Letter Round Omega +\u047B;Cyrillic Small Letter Round Omega +\u047C;Cyrillic Capital Letter Omega With Titlo +\u047D;Cyrillic Small Letter Omega With Titlo +\u047E;Cyrillic Capital Letter Ot +\u047F;Cyrillic Small Letter Ot +\u0480;Cyrillic Capital Letter Koppa +\u0481;Cyrillic Small Letter Koppa +\u0482;Cyrillic Thousands Sign +\u0483;Combining Cyrillic Titlo +\u0484;Combining Cyrillic Palatalization +\u0485;Combining Cyrillic Dasia Pneumata +\u0486;Combining Cyrillic Psili Pneumata +\u0487;Combining Cyrillic Pokrytie +\u0488;Combining Cyrillic Hundred Thousands Sign +\u0489;Combining Cyrillic Millions Sign +\u048A;Cyrillic Capital Letter Short I With Tail +\u048B;Cyrillic Small Letter Short I With Tail +\u048C;Cyrillic Capital Letter Semisoft Sign +\u048D;Cyrillic Small Letter Semisoft Sign +\u048E;Cyrillic Capital Letter Er With Tick +\u048F;Cyrillic Small Letter Er With Tick +\u0490;Cyrillic Capital Letter Ghe With Upturn +\u0491;Cyrillic Small Letter Ghe With Upturn +\u0492;Cyrillic Capital Letter Ghe With Stroke +\u0493;Cyrillic Small Letter Ghe With Stroke +\u0494;Cyrillic Capital Letter Ghe With Middle Hook +\u0495;Cyrillic Small Letter Ghe With Middle Hook +\u0496;Cyrillic Capital Letter Zhe With Descender +\u0497;Cyrillic Small Letter Zhe With Descender +\u0498;Cyrillic Capital Letter Ze With Descender +\u0499;Cyrillic Small Letter Ze With Descender +\u049A;Cyrillic Capital Letter Ka With Descender +\u049B;Cyrillic Small Letter Ka With Descender +\u049C;Cyrillic Capital Letter Ka With Vertical Stroke +\u049D;Cyrillic Small Letter Ka With Vertical Stroke +\u049E;Cyrillic Capital Letter Ka With Stroke +\u049F;Cyrillic Small Letter Ka With Stroke +\u04A0;Cyrillic Capital Letter Bashkir Ka +\u04A1;Cyrillic Small Letter Bashkir Ka +\u04A2;Cyrillic Capital Letter En With Descender +\u04A3;Cyrillic Small Letter En With Descender +\u04A4;Cyrillic Capital Ligature En Ghe +\u04A5;Cyrillic Small Ligature En Ghe +\u04A6;Cyrillic Capital Letter Pe With Middle Hook +\u04A7;Cyrillic Small Letter Pe With Middle Hook +\u04A8;Cyrillic Capital Letter Abkhasian Ha +\u04A9;Cyrillic Small Letter Abkhasian Ha +\u04AA;Cyrillic Capital Letter Es With Descender +\u04AB;Cyrillic Small Letter Es With Descender +\u04AC;Cyrillic Capital Letter Te With Descender +\u04AD;Cyrillic Small Letter Te With Descender +\u04AE;Cyrillic Capital Letter Straight U +\u04AF;Cyrillic Small Letter Straight U +\u04B0;Cyrillic Capital Letter Straight U With Stroke +\u04B1;Cyrillic Small Letter Straight U With Stroke +\u04B2;Cyrillic Capital Letter Ha With Descender +\u04B3;Cyrillic Small Letter Ha With Descender +\u04B4;Cyrillic Capital Ligature Te Tse +\u04B5;Cyrillic Small Ligature Te Tse +\u04B6;Cyrillic Capital Letter Che With Descender +\u04B7;Cyrillic Small Letter Che With Descender +\u04B8;Cyrillic Capital Letter Che With Vertical Stroke +\u04B9;Cyrillic Small Letter Che With Vertical Stroke +\u04BA;Cyrillic Capital Letter Shha +\u04BB;Cyrillic Small Letter Shha +\u04BC;Cyrillic Capital Letter Abkhasian Che +\u04BD;Cyrillic Small Letter Abkhasian Che +\u04BE;Cyrillic Capital Letter Abkhasian Che With Descender +\u04BF;Cyrillic Small Letter Abkhasian Che With Descender +\u04C0;Cyrillic Letter Palochka +\u04C1;Cyrillic Capital Letter Zhe With Breve +\u04C2;Cyrillic Small Letter Zhe With Breve +\u04C3;Cyrillic Capital Letter Ka With Hook +\u04C4;Cyrillic Small Letter Ka With Hook +\u04C5;Cyrillic Capital Letter El With Tail +\u04C6;Cyrillic Small Letter El With Tail +\u04C7;Cyrillic Capital Letter En With Hook +\u04C8;Cyrillic Small Letter En With Hook +\u04C9;Cyrillic Capital Letter En With Tail +\u04CA;Cyrillic Small Letter En With Tail +\u04CB;Cyrillic Capital Letter Khakassian Che +\u04CC;Cyrillic Small Letter Khakassian Che +\u04CD;Cyrillic Capital Letter Em With Tail +\u04CE;Cyrillic Small Letter Em With Tail +\u04CF;Cyrillic Small Letter Palochka +\u04D0;Cyrillic Capital Letter A With Breve +\u04D1;Cyrillic Small Letter A With Breve +\u04D2;Cyrillic Capital Letter A With Diaeresis +\u04D3;Cyrillic Small Letter A With Diaeresis +\u04D4;Cyrillic Capital Ligature A Ie +\u04D5;Cyrillic Small Ligature A Ie +\u04D6;Cyrillic Capital Letter Ie With Breve +\u04D7;Cyrillic Small Letter Ie With Breve +\u04D8;Cyrillic Capital Letter Schwa +\u04D9;Cyrillic Small Letter Schwa +\u04DA;Cyrillic Capital Letter Schwa With Diaeresis +\u04DB;Cyrillic Small Letter Schwa With Diaeresis +\u04DC;Cyrillic Capital Letter Zhe With Diaeresis +\u04DD;Cyrillic Small Letter Zhe With Diaeresis +\u04DE;Cyrillic Capital Letter Ze With Diaeresis +\u04DF;Cyrillic Small Letter Ze With Diaeresis +\u04E0;Cyrillic Capital Letter Abkhasian Dze +\u04E1;Cyrillic Small Letter Abkhasian Dze +\u04E2;Cyrillic Capital Letter I With Macron +\u04E3;Cyrillic Small Letter I With Macron +\u04E4;Cyrillic Capital Letter I With Diaeresis +\u04E5;Cyrillic Small Letter I With Diaeresis +\u04E6;Cyrillic Capital Letter O With Diaeresis +\u04E7;Cyrillic Small Letter O With Diaeresis +\u04E8;Cyrillic Capital Letter Barred O +\u04E9;Cyrillic Small Letter Barred O +\u04EA;Cyrillic Capital Letter Barred O With Diaeresis +\u04EB;Cyrillic Small Letter Barred O With Diaeresis +\u04EC;Cyrillic Capital Letter E With Diaeresis +\u04ED;Cyrillic Small Letter E With Diaeresis +\u04EE;Cyrillic Capital Letter U With Macron +\u04EF;Cyrillic Small Letter U With Macron +\u04F0;Cyrillic Capital Letter U With Diaeresis +\u04F1;Cyrillic Small Letter U With Diaeresis +\u04F2;Cyrillic Capital Letter U With Double Acute +\u04F3;Cyrillic Small Letter U With Double Acute +\u04F4;Cyrillic Capital Letter Che With Diaeresis +\u04F5;Cyrillic Small Letter Che With Diaeresis +\u04F6;Cyrillic Capital Letter Ghe With Descender +\u04F7;Cyrillic Small Letter Ghe With Descender +\u04F8;Cyrillic Capital Letter Yeru With Diaeresis +\u04F9;Cyrillic Small Letter Yeru With Diaeresis +\u04FA;Cyrillic Capital Letter Ghe With Stroke And Hook +\u04FB;Cyrillic Small Letter Ghe With Stroke And Hook +\u04FC;Cyrillic Capital Letter Ha With Hook +\u04FD;Cyrillic Small Letter Ha With Hook +\u04FE;Cyrillic Capital Letter Ha With Stroke +\u04FF;Cyrillic Small Letter Ha With Stroke +\u0500;Cyrillic Capital Letter Komi De +\u0501;Cyrillic Small Letter Komi De +\u0502;Cyrillic Capital Letter Komi Dje +\u0503;Cyrillic Small Letter Komi Dje +\u0504;Cyrillic Capital Letter Komi Zje +\u0505;Cyrillic Small Letter Komi Zje +\u0506;Cyrillic Capital Letter Komi Dzje +\u0507;Cyrillic Small Letter Komi Dzje +\u0508;Cyrillic Capital Letter Komi Lje +\u0509;Cyrillic Small Letter Komi Lje +\u050A;Cyrillic Capital Letter Komi Nje +\u050B;Cyrillic Small Letter Komi Nje +\u050C;Cyrillic Capital Letter Komi Sje +\u050D;Cyrillic Small Letter Komi Sje +\u050E;Cyrillic Capital Letter Komi Tje +\u050F;Cyrillic Small Letter Komi Tje +\u0510;Cyrillic Capital Letter Reversed Ze +\u0511;Cyrillic Small Letter Reversed Ze +\u0512;Cyrillic Capital Letter El With Hook +\u0513;Cyrillic Small Letter El With Hook +\u0514;Cyrillic Capital Letter Lha +\u0515;Cyrillic Small Letter Lha +\u0516;Cyrillic Capital Letter Rha +\u0517;Cyrillic Small Letter Rha +\u0518;Cyrillic Capital Letter Yae +\u0519;Cyrillic Small Letter Yae +\u051A;Cyrillic Capital Letter Qa +\u051B;Cyrillic Small Letter Qa +\u051C;Cyrillic Capital Letter We +\u051D;Cyrillic Small Letter We +\u051E;Cyrillic Capital Letter Aleut Ka +\u051F;Cyrillic Small Letter Aleut Ka +\u0520;Cyrillic Capital Letter El With Middle Hook +\u0521;Cyrillic Small Letter El With Middle Hook +\u0522;Cyrillic Capital Letter En With Middle Hook +\u0523;Cyrillic Small Letter En With Middle Hook +\u0524;Cyrillic Capital Letter Pe With Descender +\u0525;Cyrillic Small Letter Pe With Descender +\u0526;Cyrillic Capital Letter Shha With Descender +\u0527;Cyrillic Small Letter Shha With Descender +\u0528;Cyrillic Capital Letter En With Left Hook +\u0529;Cyrillic Small Letter En With Left Hook +\u052A;Cyrillic Capital Letter Dzzhe +\u052B;Cyrillic Small Letter Dzzhe +\u052C;Cyrillic Capital Letter Dche +\u052D;Cyrillic Small Letter Dche +\u052E;Cyrillic Capital Letter El With Descender +\u052F;Cyrillic Small Letter El With Descender +\u0531;Armenian Capital Letter Ayb +\u0532;Armenian Capital Letter Ben +\u0533;Armenian Capital Letter Gim +\u0534;Armenian Capital Letter Da +\u0535;Armenian Capital Letter Ech +\u0536;Armenian Capital Letter Za +\u0537;Armenian Capital Letter Eh +\u0538;Armenian Capital Letter Et +\u0539;Armenian Capital Letter To +\u053A;Armenian Capital Letter Zhe +\u053B;Armenian Capital Letter Ini +\u053C;Armenian Capital Letter Liwn +\u053D;Armenian Capital Letter Xeh +\u053E;Armenian Capital Letter Ca +\u053F;Armenian Capital Letter Ken +\u0540;Armenian Capital Letter Ho +\u0541;Armenian Capital Letter Ja +\u0542;Armenian Capital Letter Ghad +\u0543;Armenian Capital Letter Cheh +\u0544;Armenian Capital Letter Men +\u0545;Armenian Capital Letter Yi +\u0546;Armenian Capital Letter Now +\u0547;Armenian Capital Letter Sha +\u0548;Armenian Capital Letter Vo +\u0549;Armenian Capital Letter Cha +\u054A;Armenian Capital Letter Peh +\u054B;Armenian Capital Letter Jheh +\u054C;Armenian Capital Letter Ra +\u054D;Armenian Capital Letter Seh +\u054E;Armenian Capital Letter Vew +\u054F;Armenian Capital Letter Tiwn +\u0550;Armenian Capital Letter Reh +\u0551;Armenian Capital Letter Co +\u0552;Armenian Capital Letter Yiwn +\u0553;Armenian Capital Letter Piwr +\u0554;Armenian Capital Letter Keh +\u0555;Armenian Capital Letter Oh +\u0556;Armenian Capital Letter Feh +\u0559;Armenian Modifier Letter Left Half Ring +\u055A;Armenian Apostrophe +\u055B;Armenian Emphasis Mark +\u055C;Armenian Exclamation Mark +\u055D;Armenian Comma +\u055E;Armenian Question Mark +\u055F;Armenian Abbreviation Mark +\u0560;Armenian Small Letter Turned Ayb +\u0561;Armenian Small Letter Ayb +\u0562;Armenian Small Letter Ben +\u0563;Armenian Small Letter Gim +\u0564;Armenian Small Letter Da +\u0565;Armenian Small Letter Ech +\u0566;Armenian Small Letter Za +\u0567;Armenian Small Letter Eh +\u0568;Armenian Small Letter Et +\u0569;Armenian Small Letter To +\u056A;Armenian Small Letter Zhe +\u056B;Armenian Small Letter Ini +\u056C;Armenian Small Letter Liwn +\u056D;Armenian Small Letter Xeh +\u056E;Armenian Small Letter Ca +\u056F;Armenian Small Letter Ken +\u0570;Armenian Small Letter Ho +\u0571;Armenian Small Letter Ja +\u0572;Armenian Small Letter Ghad +\u0573;Armenian Small Letter Cheh +\u0574;Armenian Small Letter Men +\u0575;Armenian Small Letter Yi +\u0576;Armenian Small Letter Now +\u0577;Armenian Small Letter Sha +\u0578;Armenian Small Letter Vo +\u0579;Armenian Small Letter Cha +\u057A;Armenian Small Letter Peh +\u057B;Armenian Small Letter Jheh +\u057C;Armenian Small Letter Ra +\u057D;Armenian Small Letter Seh +\u057E;Armenian Small Letter Vew +\u057F;Armenian Small Letter Tiwn +\u0580;Armenian Small Letter Reh +\u0581;Armenian Small Letter Co +\u0582;Armenian Small Letter Yiwn +\u0583;Armenian Small Letter Piwr +\u0584;Armenian Small Letter Keh +\u0585;Armenian Small Letter Oh +\u0586;Armenian Small Letter Feh +\u0587;Armenian Small Ligature Ech Yiwn +\u0588;Armenian Small Letter Yi With Stroke +\u0589;Armenian Full Stop +\u058A;Armenian Hyphen +\u058D;Right-Facing Armenian Eternity Sign +\u058E;Left-Facing Armenian Eternity Sign +\u058F;Armenian Dram Sign +\u0591;Hebrew Accent Etnahta +\u0592;Hebrew Accent Segol +\u0593;Hebrew Accent Shalshelet +\u0594;Hebrew Accent Zaqef Qatan +\u0595;Hebrew Accent Zaqef Gadol +\u0596;Hebrew Accent Tipeha +\u0597;Hebrew Accent Revia +\u0598;Hebrew Accent Zarqa +\u0599;Hebrew Accent Pashta +\u059A;Hebrew Accent Yetiv +\u059B;Hebrew Accent Tevir +\u059C;Hebrew Accent Geresh +\u059D;Hebrew Accent Geresh Muqdam +\u059E;Hebrew Accent Gershayim +\u059F;Hebrew Accent Qarney Para +\u05A0;Hebrew Accent Telisha Gedola +\u05A1;Hebrew Accent Pazer +\u05A2;Hebrew Accent Atnah Hafukh +\u05A3;Hebrew Accent Munah +\u05A4;Hebrew Accent Mahapakh +\u05A5;Hebrew Accent Merkha +\u05A6;Hebrew Accent Merkha Kefula +\u05A7;Hebrew Accent Darga +\u05A8;Hebrew Accent Qadma +\u05A9;Hebrew Accent Telisha Qetana +\u05AA;Hebrew Accent Yerah Ben Yomo +\u05AB;Hebrew Accent Ole +\u05AC;Hebrew Accent Iluy +\u05AD;Hebrew Accent Dehi +\u05AE;Hebrew Accent Zinor +\u05AF;Hebrew Mark Masora Circle +\u05B0;Hebrew Point Sheva +\u05B1;Hebrew Point Hataf Segol +\u05B2;Hebrew Point Hataf Patah +\u05B3;Hebrew Point Hataf Qamats +\u05B4;Hebrew Point Hiriq +\u05B5;Hebrew Point Tsere +\u05B6;Hebrew Point Segol +\u05B7;Hebrew Point Patah +\u05B8;Hebrew Point Qamats +\u05B9;Hebrew Point Holam +\u05BA;Hebrew Point Holam Haser For Vav +\u05BB;Hebrew Point Qubuts +\u05BC;Hebrew Point Dagesh Or Mapiq +\u05BD;Hebrew Point Meteg +\u05BE;Hebrew Punctuation Maqaf +\u05BF;Hebrew Point Rafe +\u05C0;Hebrew Punctuation Paseq +\u05C1;Hebrew Point Shin Dot +\u05C2;Hebrew Point Sin Dot +\u05C3;Hebrew Punctuation Sof Pasuq +\u05C4;Hebrew Mark Upper Dot +\u05C5;Hebrew Mark Lower Dot +\u05C6;Hebrew Punctuation Nun Hafukha +\u05C7;Hebrew Point Qamats Qatan +\u05D0;Hebrew Letter Alef +\u05D1;Hebrew Letter Bet +\u05D2;Hebrew Letter Gimel +\u05D3;Hebrew Letter Dalet +\u05D4;Hebrew Letter He +\u05D5;Hebrew Letter Vav +\u05D6;Hebrew Letter Zayin +\u05D7;Hebrew Letter Het +\u05D8;Hebrew Letter Tet +\u05D9;Hebrew Letter Yod +\u05DA;Hebrew Letter Final Kaf +\u05DB;Hebrew Letter Kaf +\u05DC;Hebrew Letter Lamed +\u05DD;Hebrew Letter Final Mem +\u05DE;Hebrew Letter Mem +\u05DF;Hebrew Letter Final Nun +\u05E0;Hebrew Letter Nun +\u05E1;Hebrew Letter Samekh +\u05E2;Hebrew Letter Ayin +\u05E3;Hebrew Letter Final Pe +\u05E4;Hebrew Letter Pe +\u05E5;Hebrew Letter Final Tsadi +\u05E6;Hebrew Letter Tsadi +\u05E7;Hebrew Letter Qof +\u05E8;Hebrew Letter Resh +\u05E9;Hebrew Letter Shin +\u05EA;Hebrew Letter Tav +\u05EF;Hebrew Yod Triangle +\u05F0;Hebrew Ligature Yiddish Double Vav +\u05F1;Hebrew Ligature Yiddish Vav Yod +\u05F2;Hebrew Ligature Yiddish Double Yod +\u05F3;Hebrew Punctuation Geresh +\u05F4;Hebrew Punctuation Gershayim +\u0600;Arabic Number Sign +\u0601;Arabic Sign Sanah +\u0602;Arabic Footnote Marker +\u0603;Arabic Sign Safha +\u0604;Arabic Sign Samvat +\u0605;Arabic Number Mark Above +\u0606;Arabic-Indic Cube Root +\u0607;Arabic-Indic Fourth Root +\u0608;Arabic Ray +\u0609;Arabic-Indic Per Mille Sign +\u060A;Arabic-Indic Per Ten Thousand Sign +\u060B;Afghani Sign +\u060C;Arabic Comma +\u060D;Arabic Date Separator +\u060E;Arabic Poetic Verse Sign +\u060F;Arabic Sign Misra +\u0610;Arabic Sign Sallallahou Alayhe Wassallam +\u0611;Arabic Sign Alayhe Assallam +\u0612;Arabic Sign Rahmatullah Alayhe +\u0613;Arabic Sign Radi Allahou Anhu +\u0614;Arabic Sign Takhallus +\u0615;Arabic Small High Tah +\u0616;Arabic Small High Ligature Alef With Lam With Yeh +\u0617;Arabic Small High Zain +\u0618;Arabic Small Fatha +\u0619;Arabic Small Damma +\u061A;Arabic Small Kasra +\u061B;Arabic Semicolon +\u061C;Arabic Letter Mark +\u061D;Arabic End Of Text Mark +\u061E;Arabic Triple Dot Punctuation Mark +\u061F;Arabic Question Mark +\u0620;Arabic Letter Kashmiri Yeh +\u0621;Arabic Letter Hamza +\u0622;Arabic Letter Alef With Madda Above +\u0623;Arabic Letter Alef With Hamza Above +\u0624;Arabic Letter Waw With Hamza Above +\u0625;Arabic Letter Alef With Hamza Below +\u0626;Arabic Letter Yeh With Hamza Above +\u0627;Arabic Letter Alef +\u0628;Arabic Letter Beh +\u0629;Arabic Letter Teh Marbuta +\u062A;Arabic Letter Teh +\u062B;Arabic Letter Theh +\u062C;Arabic Letter Jeem +\u062D;Arabic Letter Hah +\u062E;Arabic Letter Khah +\u062F;Arabic Letter Dal +\u0630;Arabic Letter Thal +\u0631;Arabic Letter Reh +\u0632;Arabic Letter Zain +\u0633;Arabic Letter Seen +\u0634;Arabic Letter Sheen +\u0635;Arabic Letter Sad +\u0636;Arabic Letter Dad +\u0637;Arabic Letter Tah +\u0638;Arabic Letter Zah +\u0639;Arabic Letter Ain +\u063A;Arabic Letter Ghain +\u063B;Arabic Letter Keheh With Two Dots Above +\u063C;Arabic Letter Keheh With Three Dots Below +\u063D;Arabic Letter Farsi Yeh With Inverted V +\u063E;Arabic Letter Farsi Yeh With Two Dots Above +\u063F;Arabic Letter Farsi Yeh With Three Dots Above +\u0640;Arabic Tatweel +\u0641;Arabic Letter Feh +\u0642;Arabic Letter Qaf +\u0643;Arabic Letter Kaf +\u0644;Arabic Letter Lam +\u0645;Arabic Letter Meem +\u0646;Arabic Letter Noon +\u0647;Arabic Letter Heh +\u0648;Arabic Letter Waw +\u0649;Arabic Letter Alef Maksura +\u064A;Arabic Letter Yeh +\u064B;Arabic Fathatan +\u064C;Arabic Dammatan +\u064D;Arabic Kasratan +\u064E;Arabic Fatha +\u064F;Arabic Damma +\u0650;Arabic Kasra +\u0651;Arabic Shadda +\u0652;Arabic Sukun +\u0653;Arabic Maddah Above +\u0654;Arabic Hamza Above +\u0655;Arabic Hamza Below +\u0656;Arabic Subscript Alef +\u0657;Arabic Inverted Damma +\u0658;Arabic Mark Noon Ghunna +\u0659;Arabic Zwarakay +\u065A;Arabic Vowel Sign Small V Above +\u065B;Arabic Vowel Sign Inverted Small V Above +\u065C;Arabic Vowel Sign Dot Below +\u065D;Arabic Reversed Damma +\u065E;Arabic Fatha With Two Dots +\u065F;Arabic Wavy Hamza Below +\u0660;Arabic-Indic Digit Zero +\u0661;Arabic-Indic Digit One +\u0662;Arabic-Indic Digit Two +\u0663;Arabic-Indic Digit Three +\u0664;Arabic-Indic Digit Four +\u0665;Arabic-Indic Digit Five +\u0666;Arabic-Indic Digit Six +\u0667;Arabic-Indic Digit Seven +\u0668;Arabic-Indic Digit Eight +\u0669;Arabic-Indic Digit Nine +\u066A;Arabic Percent Sign +\u066B;Arabic Decimal Separator +\u066C;Arabic Thousands Separator +\u066D;Arabic Five Pointed Star +\u066E;Arabic Letter Dotless Beh +\u066F;Arabic Letter Dotless Qaf +\u0670;Arabic Letter Superscript Alef +\u0671;Arabic Letter Alef Wasla +\u0672;Arabic Letter Alef With Wavy Hamza Above +\u0673;Arabic Letter Alef With Wavy Hamza Below +\u0674;Arabic Letter High Hamza +\u0675;Arabic Letter High Hamza Alef +\u0676;Arabic Letter High Hamza Waw +\u0677;Arabic Letter U With Hamza Above +\u0678;Arabic Letter High Hamza Yeh +\u0679;Arabic Letter Tteh +\u067A;Arabic Letter Tteheh +\u067B;Arabic Letter Beeh +\u067C;Arabic Letter Teh With Ring +\u067D;Arabic Letter Teh With Three Dots Above Downwards +\u067E;Arabic Letter Peh +\u067F;Arabic Letter Teheh +\u0680;Arabic Letter Beheh +\u0681;Arabic Letter Hah With Hamza Above +\u0682;Arabic Letter Hah With Two Dots Vertical Above +\u0683;Arabic Letter Nyeh +\u0684;Arabic Letter Dyeh +\u0685;Arabic Letter Hah With Three Dots Above +\u0686;Arabic Letter Tcheh +\u0687;Arabic Letter Tcheheh +\u0688;Arabic Letter Ddal +\u0689;Arabic Letter Dal With Ring +\u068A;Arabic Letter Dal With Dot Below +\u068B;Arabic Letter Dal With Dot Below And Small Tah +\u068C;Arabic Letter Dahal +\u068D;Arabic Letter Ddahal +\u068E;Arabic Letter Dul +\u068F;Arabic Letter Dal With Three Dots Above Downwards +\u0690;Arabic Letter Dal With Four Dots Above +\u0691;Arabic Letter Rreh +\u0692;Arabic Letter Reh With Small V +\u0693;Arabic Letter Reh With Ring +\u0694;Arabic Letter Reh With Dot Below +\u0695;Arabic Letter Reh With Small V Below +\u0696;Arabic Letter Reh With Dot Below And Dot Above +\u0697;Arabic Letter Reh With Two Dots Above +\u0698;Arabic Letter Jeh +\u0699;Arabic Letter Reh With Four Dots Above +\u069A;Arabic Letter Seen With Dot Below And Dot Above +\u069B;Arabic Letter Seen With Three Dots Below +\u069C;Arabic Letter Seen With Three Dots Below And Three Dots Above +\u069D;Arabic Letter Sad With Two Dots Below +\u069E;Arabic Letter Sad With Three Dots Above +\u069F;Arabic Letter Tah With Three Dots Above +\u06A0;Arabic Letter Ain With Three Dots Above +\u06A1;Arabic Letter Dotless Feh +\u06A2;Arabic Letter Feh With Dot Moved Below +\u06A3;Arabic Letter Feh With Dot Below +\u06A4;Arabic Letter Veh +\u06A5;Arabic Letter Feh With Three Dots Below +\u06A6;Arabic Letter Peheh +\u06A7;Arabic Letter Qaf With Dot Above +\u06A8;Arabic Letter Qaf With Three Dots Above +\u06A9;Arabic Letter Keheh +\u06AA;Arabic Letter Swash Kaf +\u06AB;Arabic Letter Kaf With Ring +\u06AC;Arabic Letter Kaf With Dot Above +\u06AD;Arabic Letter Ng +\u06AE;Arabic Letter Kaf With Three Dots Below +\u06AF;Arabic Letter Gaf +\u06B0;Arabic Letter Gaf With Ring +\u06B1;Arabic Letter Ngoeh +\u06B2;Arabic Letter Gaf With Two Dots Below +\u06B3;Arabic Letter Gueh +\u06B4;Arabic Letter Gaf With Three Dots Above +\u06B5;Arabic Letter Lam With Small V +\u06B6;Arabic Letter Lam With Dot Above +\u06B7;Arabic Letter Lam With Three Dots Above +\u06B8;Arabic Letter Lam With Three Dots Below +\u06B9;Arabic Letter Noon With Dot Below +\u06BA;Arabic Letter Noon Ghunna +\u06BB;Arabic Letter Rnoon +\u06BC;Arabic Letter Noon With Ring +\u06BD;Arabic Letter Noon With Three Dots Above +\u06BE;Arabic Letter Heh Doachashmee +\u06BF;Arabic Letter Tcheh With Dot Above +\u06C0;Arabic Letter Heh With Yeh Above +\u06C1;Arabic Letter Heh Goal +\u06C2;Arabic Letter Heh Goal With Hamza Above +\u06C3;Arabic Letter Teh Marbuta Goal +\u06C4;Arabic Letter Waw With Ring +\u06C5;Arabic Letter Kirghiz Oe +\u06C6;Arabic Letter Oe +\u06C7;Arabic Letter U +\u06C8;Arabic Letter Yu +\u06C9;Arabic Letter Kirghiz Yu +\u06CA;Arabic Letter Waw With Two Dots Above +\u06CB;Arabic Letter Ve +\u06CC;Arabic Letter Farsi Yeh +\u06CD;Arabic Letter Yeh With Tail +\u06CE;Arabic Letter Yeh With Small V +\u06CF;Arabic Letter Waw With Dot Above +\u06D0;Arabic Letter E +\u06D1;Arabic Letter Yeh With Three Dots Below +\u06D2;Arabic Letter Yeh Barree +\u06D3;Arabic Letter Yeh Barree With Hamza Above +\u06D4;Arabic Full Stop +\u06D5;Arabic Letter Ae +\u06D6;Arabic Small High Ligature Sad With Lam With Alef Maksura +\u06D7;Arabic Small High Ligature Qaf With Lam With Alef Maksura +\u06D8;Arabic Small High Meem Initial Form +\u06D9;Arabic Small High Lam Alef +\u06DA;Arabic Small High Jeem +\u06DB;Arabic Small High Three Dots +\u06DC;Arabic Small High Seen +\u06DD;Arabic End Of Ayah +\u06DE;Arabic Start Of Rub El Hizb +\u06DF;Arabic Small High Rounded Zero +\u06E0;Arabic Small High Upright Rectangular Zero +\u06E1;Arabic Small High Dotless Head Of Khah +\u06E2;Arabic Small High Meem Isolated Form +\u06E3;Arabic Small Low Seen +\u06E4;Arabic Small High Madda +\u06E5;Arabic Small Waw +\u06E6;Arabic Small Yeh +\u06E7;Arabic Small High Yeh +\u06E8;Arabic Small High Noon +\u06E9;Arabic Place Of Sajdah +\u06EA;Arabic Empty Centre Low Stop +\u06EB;Arabic Empty Centre High Stop +\u06EC;Arabic Rounded High Stop With Filled Centre +\u06ED;Arabic Small Low Meem +\u06EE;Arabic Letter Dal With Inverted V +\u06EF;Arabic Letter Reh With Inverted V +\u06F0;Extended Arabic-Indic Digit Zero +\u06F1;Extended Arabic-Indic Digit One +\u06F2;Extended Arabic-Indic Digit Two +\u06F3;Extended Arabic-Indic Digit Three +\u06F4;Extended Arabic-Indic Digit Four +\u06F5;Extended Arabic-Indic Digit Five +\u06F6;Extended Arabic-Indic Digit Six +\u06F7;Extended Arabic-Indic Digit Seven +\u06F8;Extended Arabic-Indic Digit Eight +\u06F9;Extended Arabic-Indic Digit Nine +\u06FA;Arabic Letter Sheen With Dot Below +\u06FB;Arabic Letter Dad With Dot Below +\u06FC;Arabic Letter Ghain With Dot Below +\u06FD;Arabic Sign Sindhi Ampersand +\u06FE;Arabic Sign Sindhi Postposition Men +\u06FF;Arabic Letter Heh With Inverted V +\u0700;Syriac End Of Paragraph +\u0701;Syriac Supralinear Full Stop +\u0702;Syriac Sublinear Full Stop +\u0703;Syriac Supralinear Colon +\u0704;Syriac Sublinear Colon +\u0705;Syriac Horizontal Colon +\u0706;Syriac Colon Skewed Left +\u0707;Syriac Colon Skewed Right +\u0708;Syriac Supralinear Colon Skewed Left +\u0709;Syriac Sublinear Colon Skewed Right +\u070A;Syriac Contraction +\u070B;Syriac Harklean Obelus +\u070C;Syriac Harklean Metobelus +\u070D;Syriac Harklean Asteriscus +\u070F;Syriac Abbreviation Mark +\u0710;Syriac Letter Alaph +\u0711;Syriac Letter Superscript Alaph +\u0712;Syriac Letter Beth +\u0713;Syriac Letter Gamal +\u0714;Syriac Letter Gamal Garshuni +\u0715;Syriac Letter Dalath +\u0716;Syriac Letter Dotless Dalath Rish +\u0717;Syriac Letter He +\u0718;Syriac Letter Waw +\u0719;Syriac Letter Zain +\u071A;Syriac Letter Heth +\u071B;Syriac Letter Teth +\u071C;Syriac Letter Teth Garshuni +\u071D;Syriac Letter Yudh +\u071E;Syriac Letter Yudh He +\u071F;Syriac Letter Kaph +\u0720;Syriac Letter Lamadh +\u0721;Syriac Letter Mim +\u0722;Syriac Letter Nun +\u0723;Syriac Letter Semkath +\u0724;Syriac Letter Final Semkath +\u0725;Syriac Letter E +\u0726;Syriac Letter Pe +\u0727;Syriac Letter Reversed Pe +\u0728;Syriac Letter Sadhe +\u0729;Syriac Letter Qaph +\u072A;Syriac Letter Rish +\u072B;Syriac Letter Shin +\u072C;Syriac Letter Taw +\u072D;Syriac Letter Persian Bheth +\u072E;Syriac Letter Persian Ghamal +\u072F;Syriac Letter Persian Dhalath +\u0730;Syriac Pthaha Above +\u0731;Syriac Pthaha Below +\u0732;Syriac Pthaha Dotted +\u0733;Syriac Zqapha Above +\u0734;Syriac Zqapha Below +\u0735;Syriac Zqapha Dotted +\u0736;Syriac Rbasa Above +\u0737;Syriac Rbasa Below +\u0738;Syriac Dotted Zlama Horizontal +\u0739;Syriac Dotted Zlama Angular +\u073A;Syriac Hbasa Above +\u073B;Syriac Hbasa Below +\u073C;Syriac Hbasa-Esasa Dotted +\u073D;Syriac Esasa Above +\u073E;Syriac Esasa Below +\u073F;Syriac Rwaha +\u0740;Syriac Feminine Dot +\u0741;Syriac Qushshaya +\u0742;Syriac Rukkakha +\u0743;Syriac Two Vertical Dots Above +\u0744;Syriac Two Vertical Dots Below +\u0745;Syriac Three Dots Above +\u0746;Syriac Three Dots Below +\u0747;Syriac Oblique Line Above +\u0748;Syriac Oblique Line Below +\u0749;Syriac Music +\u074A;Syriac Barrekh +\u074D;Syriac Letter Sogdian Zhain +\u074E;Syriac Letter Sogdian Khaph +\u074F;Syriac Letter Sogdian Fe +\u0750;Arabic Letter Beh With Three Dots Horizontally Below +\u0751;Arabic Letter Beh With Dot Below And Three Dots Above +\u0752;Arabic Letter Beh With Three Dots Pointing Upwards Below +\u0753;Arabic Letter Beh With Three Dots Pointing Upwards Below And Two Dots Above +\u0754;Arabic Letter Beh With Two Dots Below And Dot Above +\u0755;Arabic Letter Beh With Inverted Small V Below +\u0756;Arabic Letter Beh With Small V +\u0757;Arabic Letter Hah With Two Dots Above +\u0758;Arabic Letter Hah With Three Dots Pointing Upwards Below +\u0759;Arabic Letter Dal With Two Dots Vertically Below And Small Tah +\u075A;Arabic Letter Dal With Inverted Small V Below +\u075B;Arabic Letter Reh With Stroke +\u075C;Arabic Letter Seen With Four Dots Above +\u075D;Arabic Letter Ain With Two Dots Above +\u075E;Arabic Letter Ain With Three Dots Pointing Downwards Above +\u075F;Arabic Letter Ain With Two Dots Vertically Above +\u0760;Arabic Letter Feh With Two Dots Below +\u0761;Arabic Letter Feh With Three Dots Pointing Upwards Below +\u0762;Arabic Letter Keheh With Dot Above +\u0763;Arabic Letter Keheh With Three Dots Above +\u0764;Arabic Letter Keheh With Three Dots Pointing Upwards Below +\u0765;Arabic Letter Meem With Dot Above +\u0766;Arabic Letter Meem With Dot Below +\u0767;Arabic Letter Noon With Two Dots Below +\u0768;Arabic Letter Noon With Small Tah +\u0769;Arabic Letter Noon With Small V +\u076A;Arabic Letter Lam With Bar +\u076B;Arabic Letter Reh With Two Dots Vertically Above +\u076C;Arabic Letter Reh With Hamza Above +\u076D;Arabic Letter Seen With Two Dots Vertically Above +\u076E;Arabic Letter Hah With Small Arabic Letter Tah Below +\u076F;Arabic Letter Hah With Small Arabic Letter Tah And Two Dots +\u0770;Arabic Letter Seen With Small Arabic Letter Tah And Two Dots +\u0771;Arabic Letter Reh With Small Arabic Letter Tah And Two Dots +\u0772;Arabic Letter Hah With Small Arabic Letter Tah Above +\u0773;Arabic Letter Alef With Extended Arabic-Indic Digit Two Above +\u0774;Arabic Letter Alef With Extended Arabic-Indic Digit Three Above +\u0775;Arabic Letter Farsi Yeh With Extended Arabic-Indic Digit Two Above +\u0776;Arabic Letter Farsi Yeh With Extended Arabic-Indic Digit Three Above +\u0777;Arabic Letter Farsi Yeh With Extended Arabic-Indic Digit Four Below +\u0778;Arabic Letter Waw With Extended Arabic-Indic Digit Two Above +\u0779;Arabic Letter Waw With Extended Arabic-Indic Digit Three Above +\u077A;Arabic Letter Yeh Barree With Extended Arabic-Indic Digit Two Above +\u077B;Arabic Letter Yeh Barree With Extended Arabic-Indic Digit Three Above +\u077C;Arabic Letter Hah With Extended Arabic-Indic Digit Four Below +\u077D;Arabic Letter Seen With Extended Arabic-Indic Digit Four Above +\u077E;Arabic Letter Seen With Inverted V +\u077F;Arabic Letter Kaf With Two Dots Above +\u0780;Thaana Letter Haa +\u0781;Thaana Letter Shaviyani +\u0782;Thaana Letter Noonu +\u0783;Thaana Letter Raa +\u0784;Thaana Letter Baa +\u0785;Thaana Letter Lhaviyani +\u0786;Thaana Letter Kaafu +\u0787;Thaana Letter Alifu +\u0788;Thaana Letter Vaavu +\u0789;Thaana Letter Meemu +\u078A;Thaana Letter Faafu +\u078B;Thaana Letter Dhaalu +\u078C;Thaana Letter Thaa +\u078D;Thaana Letter Laamu +\u078E;Thaana Letter Gaafu +\u078F;Thaana Letter Gnaviyani +\u0790;Thaana Letter Seenu +\u0791;Thaana Letter Daviyani +\u0792;Thaana Letter Zaviyani +\u0793;Thaana Letter Taviyani +\u0794;Thaana Letter Yaa +\u0795;Thaana Letter Paviyani +\u0796;Thaana Letter Javiyani +\u0797;Thaana Letter Chaviyani +\u0798;Thaana Letter Ttaa +\u0799;Thaana Letter Hhaa +\u079A;Thaana Letter Khaa +\u079B;Thaana Letter Thaalu +\u079C;Thaana Letter Zaa +\u079D;Thaana Letter Sheenu +\u079E;Thaana Letter Saadhu +\u079F;Thaana Letter Daadhu +\u07A0;Thaana Letter To +\u07A1;Thaana Letter Zo +\u07A2;Thaana Letter Ainu +\u07A3;Thaana Letter Ghainu +\u07A4;Thaana Letter Qaafu +\u07A5;Thaana Letter Waavu +\u07A6;Thaana Abafili +\u07A7;Thaana Aabaafili +\u07A8;Thaana Ibifili +\u07A9;Thaana Eebeefili +\u07AA;Thaana Ubufili +\u07AB;Thaana Ooboofili +\u07AC;Thaana Ebefili +\u07AD;Thaana Eybeyfili +\u07AE;Thaana Obofili +\u07AF;Thaana Oaboafili +\u07B0;Thaana Sukun +\u07B1;Thaana Letter Naa +\u07C0;Nko Digit Zero +\u07C1;Nko Digit One +\u07C2;Nko Digit Two +\u07C3;Nko Digit Three +\u07C4;Nko Digit Four +\u07C5;Nko Digit Five +\u07C6;Nko Digit Six +\u07C7;Nko Digit Seven +\u07C8;Nko Digit Eight +\u07C9;Nko Digit Nine +\u07CA;Nko Letter A +\u07CB;Nko Letter Ee +\u07CC;Nko Letter I +\u07CD;Nko Letter E +\u07CE;Nko Letter U +\u07CF;Nko Letter Oo +\u07D0;Nko Letter O +\u07D1;Nko Letter Dagbasinna +\u07D2;Nko Letter N +\u07D3;Nko Letter Ba +\u07D4;Nko Letter Pa +\u07D5;Nko Letter Ta +\u07D6;Nko Letter Ja +\u07D7;Nko Letter Cha +\u07D8;Nko Letter Da +\u07D9;Nko Letter Ra +\u07DA;Nko Letter Rra +\u07DB;Nko Letter Sa +\u07DC;Nko Letter Gba +\u07DD;Nko Letter Fa +\u07DE;Nko Letter Ka +\u07DF;Nko Letter La +\u07E0;Nko Letter Na Woloso +\u07E1;Nko Letter Ma +\u07E2;Nko Letter Nya +\u07E3;Nko Letter Na +\u07E4;Nko Letter Ha +\u07E5;Nko Letter Wa +\u07E6;Nko Letter Ya +\u07E7;Nko Letter Nya Woloso +\u07E8;Nko Letter Jona Ja +\u07E9;Nko Letter Jona Cha +\u07EA;Nko Letter Jona Ra +\u07EB;Nko Combining Short High Tone +\u07EC;Nko Combining Short Low Tone +\u07ED;Nko Combining Short Rising Tone +\u07EE;Nko Combining Long Descending Tone +\u07EF;Nko Combining Long High Tone +\u07F0;Nko Combining Long Low Tone +\u07F1;Nko Combining Long Rising Tone +\u07F2;Nko Combining Nasalization Mark +\u07F3;Nko Combining Double Dot Above +\u07F4;Nko High Tone Apostrophe +\u07F5;Nko Low Tone Apostrophe +\u07F6;Nko Symbol Oo Dennen +\u07F7;Nko Symbol Gbakurunen +\u07F8;Nko Comma +\u07F9;Nko Exclamation Mark +\u07FA;Nko Lajanyalan +\u07FD;Nko Dantayalan +\u07FE;Nko Dorome Sign +\u07FF;Nko Taman Sign +\u0800;Samaritan Letter Alaf +\u0801;Samaritan Letter Bit +\u0802;Samaritan Letter Gaman +\u0803;Samaritan Letter Dalat +\u0804;Samaritan Letter Iy +\u0805;Samaritan Letter Baa +\u0806;Samaritan Letter Zen +\u0807;Samaritan Letter It +\u0808;Samaritan Letter Tit +\u0809;Samaritan Letter Yut +\u080A;Samaritan Letter Kaaf +\u080B;Samaritan Letter Labat +\u080C;Samaritan Letter Mim +\u080D;Samaritan Letter Nun +\u080E;Samaritan Letter Singaat +\u080F;Samaritan Letter In +\u0810;Samaritan Letter Fi +\u0811;Samaritan Letter Tsaadiy +\u0812;Samaritan Letter Quf +\u0813;Samaritan Letter Rish +\u0814;Samaritan Letter Shan +\u0815;Samaritan Letter Taaf +\u0816;Samaritan Mark In +\u0817;Samaritan Mark In-Alaf +\u0818;Samaritan Mark Occlusion +\u0819;Samaritan Mark Dagesh +\u081A;Samaritan Modifier Letter Epenthetic Yut +\u081B;Samaritan Mark Epenthetic Yut +\u081C;Samaritan Vowel Sign Long E +\u081D;Samaritan Vowel Sign E +\u081E;Samaritan Vowel Sign Overlong Aa +\u081F;Samaritan Vowel Sign Long Aa +\u0820;Samaritan Vowel Sign Aa +\u0821;Samaritan Vowel Sign Overlong A +\u0822;Samaritan Vowel Sign Long A +\u0823;Samaritan Vowel Sign A +\u0824;Samaritan Modifier Letter Short A +\u0825;Samaritan Vowel Sign Short A +\u0826;Samaritan Vowel Sign Long U +\u0827;Samaritan Vowel Sign U +\u0828;Samaritan Modifier Letter I +\u0829;Samaritan Vowel Sign Long I +\u082A;Samaritan Vowel Sign I +\u082B;Samaritan Vowel Sign O +\u082C;Samaritan Vowel Sign Sukun +\u082D;Samaritan Mark Nequdaa +\u0830;Samaritan Punctuation Nequdaa +\u0831;Samaritan Punctuation Afsaaq +\u0832;Samaritan Punctuation Anged +\u0833;Samaritan Punctuation Bau +\u0834;Samaritan Punctuation Atmaau +\u0835;Samaritan Punctuation Shiyyaalaa +\u0836;Samaritan Abbreviation Mark +\u0837;Samaritan Punctuation Melodic Qitsa +\u0838;Samaritan Punctuation Ziqaa +\u0839;Samaritan Punctuation Qitsa +\u083A;Samaritan Punctuation Zaef +\u083B;Samaritan Punctuation Turu +\u083C;Samaritan Punctuation Arkaanu +\u083D;Samaritan Punctuation Sof Mashfaat +\u083E;Samaritan Punctuation Annaau +\u0840;Mandaic Letter Halqa +\u0841;Mandaic Letter Ab +\u0842;Mandaic Letter Ag +\u0843;Mandaic Letter Ad +\u0844;Mandaic Letter Ah +\u0845;Mandaic Letter Ushenna +\u0846;Mandaic Letter Az +\u0847;Mandaic Letter It +\u0848;Mandaic Letter Att +\u0849;Mandaic Letter Aksa +\u084A;Mandaic Letter Ak +\u084B;Mandaic Letter Al +\u084C;Mandaic Letter Am +\u084D;Mandaic Letter An +\u084E;Mandaic Letter As +\u084F;Mandaic Letter In +\u0850;Mandaic Letter Ap +\u0851;Mandaic Letter Asz +\u0852;Mandaic Letter Aq +\u0853;Mandaic Letter Ar +\u0854;Mandaic Letter Ash +\u0855;Mandaic Letter At +\u0856;Mandaic Letter Dushenna +\u0857;Mandaic Letter Kad +\u0858;Mandaic Letter Ain +\u0859;Mandaic Affrication Mark +\u085A;Mandaic Vocalization Mark +\u085B;Mandaic Gemination Mark +\u085E;Mandaic Punctuation +\u0860;Syriac Letter Malayalam Nga +\u0861;Syriac Letter Malayalam Ja +\u0862;Syriac Letter Malayalam Nya +\u0863;Syriac Letter Malayalam Tta +\u0864;Syriac Letter Malayalam Nna +\u0865;Syriac Letter Malayalam Nnna +\u0866;Syriac Letter Malayalam Bha +\u0867;Syriac Letter Malayalam Ra +\u0868;Syriac Letter Malayalam Lla +\u0869;Syriac Letter Malayalam Llla +\u086A;Syriac Letter Malayalam Ssa +\u0870;Arabic Letter Alef With Attached Fatha +\u0871;Arabic Letter Alef With Attached Top Right Fatha +\u0872;Arabic Letter Alef With Right Middle Stroke +\u0873;Arabic Letter Alef With Left Middle Stroke +\u0874;Arabic Letter Alef With Attached Kasra +\u0875;Arabic Letter Alef With Attached Bottom Right Kasra +\u0876;Arabic Letter Alef With Attached Round Dot Above +\u0877;Arabic Letter Alef With Attached Right Round Dot +\u0878;Arabic Letter Alef With Attached Left Round Dot +\u0879;Arabic Letter Alef With Attached Round Dot Below +\u087A;Arabic Letter Alef With Dot Above +\u087B;Arabic Letter Alef With Attached Top Right Fatha And Dot Above +\u087C;Arabic Letter Alef With Right Middle Stroke And Dot Above +\u087D;Arabic Letter Alef With Attached Bottom Right Kasra And Dot Above +\u087E;Arabic Letter Alef With Attached Top Right Fatha And Left Ring +\u087F;Arabic Letter Alef With Right Middle Stroke And Left Ring +\u0880;Arabic Letter Alef With Attached Bottom Right Kasra And Left Ring +\u0881;Arabic Letter Alef With Attached Right Hamza +\u0882;Arabic Letter Alef With Attached Left Hamza +\u0883;Arabic Tatweel With Overstruck Hamza +\u0884;Arabic Tatweel With Overstruck Waw +\u0885;Arabic Tatweel With Two Dots Below +\u0886;Arabic Letter Thin Yeh +\u0887;Arabic Baseline Round Dot +\u0888;Arabic Raised Round Dot +\u0889;Arabic Letter Noon With Inverted Small V +\u088A;Arabic Letter Hah With Inverted Small V Below +\u088B;Arabic Letter Tah With Dot Below +\u088C;Arabic Letter Tah With Three Dots Below +\u088D;Arabic Letter Keheh With Two Dots Vertically Below +\u088E;Arabic Vertical Tail +\u0890;Arabic Pound Mark Above +\u0891;Arabic Piastre Mark Above +\u0898;Arabic Small High Word Al-Juz +\u0899;Arabic Small Low Word Ishmaam +\u089A;Arabic Small Low Word Imaala +\u089B;Arabic Small Low Word Tasheel +\u089C;Arabic Madda Waajib +\u089D;Arabic Superscript Alef Mokhassas +\u089E;Arabic Doubled Madda +\u089F;Arabic Half Madda Over Madda +\u08A0;Arabic Letter Beh With Small V Below +\u08A1;Arabic Letter Beh With Hamza Above +\u08A2;Arabic Letter Jeem With Two Dots Above +\u08A3;Arabic Letter Tah With Two Dots Above +\u08A4;Arabic Letter Feh With Dot Below And Three Dots Above +\u08A5;Arabic Letter Qaf With Dot Below +\u08A6;Arabic Letter Lam With Double Bar +\u08A7;Arabic Letter Meem With Three Dots Above +\u08A8;Arabic Letter Yeh With Two Dots Below And Hamza Above +\u08A9;Arabic Letter Yeh With Two Dots Below And Dot Above +\u08AA;Arabic Letter Reh With Loop +\u08AB;Arabic Letter Waw With Dot Within +\u08AC;Arabic Letter Rohingya Yeh +\u08AD;Arabic Letter Low Alef +\u08AE;Arabic Letter Dal With Three Dots Below +\u08AF;Arabic Letter Sad With Three Dots Below +\u08B0;Arabic Letter Gaf With Inverted Stroke +\u08B1;Arabic Letter Straight Waw +\u08B2;Arabic Letter Zain With Inverted V Above +\u08B3;Arabic Letter Ain With Three Dots Below +\u08B4;Arabic Letter Kaf With Dot Below +\u08B5;Arabic Letter Qaf With Dot Below And No Dots Above +\u08B6;Arabic Letter Beh With Small Meem Above +\u08B7;Arabic Letter Peh With Small Meem Above +\u08B8;Arabic Letter Teh With Small Teh Above +\u08B9;Arabic Letter Reh With Small Noon Above +\u08BA;Arabic Letter Yeh With Two Dots Below And Small Noon Above +\u08BB;Arabic Letter African Feh +\u08BC;Arabic Letter African Qaf +\u08BD;Arabic Letter African Noon +\u08BE;Arabic Letter Peh With Small V +\u08BF;Arabic Letter Teh With Small V +\u08C0;Arabic Letter Tteh With Small V +\u08C1;Arabic Letter Tcheh With Small V +\u08C2;Arabic Letter Keheh With Small V +\u08C3;Arabic Letter Ghain With Three Dots Above +\u08C4;Arabic Letter African Qaf With Three Dots Above +\u08C5;Arabic Letter Jeem With Three Dots Above +\u08C6;Arabic Letter Jeem With Three Dots Below +\u08C7;Arabic Letter Lam With Small Arabic Letter Tah Above +\u08C8;Arabic Letter Graf +\u08C9;Arabic Small Farsi Yeh +\u08CA;Arabic Small High Farsi Yeh +\u08CB;Arabic Small High Yeh Barree With Two Dots Below +\u08CC;Arabic Small High Word Sah +\u08CD;Arabic Small High Zah +\u08CE;Arabic Large Round Dot Above +\u08CF;Arabic Large Round Dot Below +\u08D0;Arabic Sukun Below +\u08D1;Arabic Large Circle Below +\u08D2;Arabic Large Round Dot Inside Circle Below +\u08D3;Arabic Small Low Waw +\u08D4;Arabic Small High Word Ar-Rub +\u08D5;Arabic Small High Sad +\u08D6;Arabic Small High Ain +\u08D7;Arabic Small High Qaf +\u08D8;Arabic Small High Noon With Kasra +\u08D9;Arabic Small Low Noon With Kasra +\u08DA;Arabic Small High Word Ath-Thalatha +\u08DB;Arabic Small High Word As-Sajda +\u08DC;Arabic Small High Word An-Nisf +\u08DD;Arabic Small High Word Sakta +\u08DE;Arabic Small High Word Qif +\u08DF;Arabic Small High Word Waqfa +\u08E0;Arabic Small High Footnote Marker +\u08E1;Arabic Small High Sign Safha +\u08E2;Arabic Disputed End Of Ayah +\u08E3;Arabic Turned Damma Below +\u08E4;Arabic Curly Fatha +\u08E5;Arabic Curly Damma +\u08E6;Arabic Curly Kasra +\u08E7;Arabic Curly Fathatan +\u08E8;Arabic Curly Dammatan +\u08E9;Arabic Curly Kasratan +\u08EA;Arabic Tone One Dot Above +\u08EB;Arabic Tone Two Dots Above +\u08EC;Arabic Tone Loop Above +\u08ED;Arabic Tone One Dot Below +\u08EE;Arabic Tone Two Dots Below +\u08EF;Arabic Tone Loop Below +\u08F0;Arabic Open Fathatan +\u08F1;Arabic Open Dammatan +\u08F2;Arabic Open Kasratan +\u08F3;Arabic Small High Waw +\u08F4;Arabic Fatha With Ring +\u08F5;Arabic Fatha With Dot Above +\u08F6;Arabic Kasra With Dot Below +\u08F7;Arabic Left Arrowhead Above +\u08F8;Arabic Right Arrowhead Above +\u08F9;Arabic Left Arrowhead Below +\u08FA;Arabic Right Arrowhead Below +\u08FB;Arabic Double Right Arrowhead Above +\u08FC;Arabic Double Right Arrowhead Above With Dot +\u08FD;Arabic Right Arrowhead Above With Dot +\u08FE;Arabic Damma With Dot +\u08FF;Arabic Mark Sideways Noon Ghunna +\u0900;Devanagari Sign Inverted Candrabindu +\u0901;Devanagari Sign Candrabindu +\u0902;Devanagari Sign Anusvara +\u0903;Devanagari Sign Visarga +\u0904;Devanagari Letter Short A +\u0905;Devanagari Letter A +\u0906;Devanagari Letter Aa +\u0907;Devanagari Letter I +\u0908;Devanagari Letter Ii +\u0909;Devanagari Letter U +\u090A;Devanagari Letter Uu +\u090B;Devanagari Letter Vocalic R +\u090C;Devanagari Letter Vocalic L +\u090D;Devanagari Letter Candra E +\u090E;Devanagari Letter Short E +\u090F;Devanagari Letter E +\u0910;Devanagari Letter Ai +\u0911;Devanagari Letter Candra O +\u0912;Devanagari Letter Short O +\u0913;Devanagari Letter O +\u0914;Devanagari Letter Au +\u0915;Devanagari Letter Ka +\u0916;Devanagari Letter Kha +\u0917;Devanagari Letter Ga +\u0918;Devanagari Letter Gha +\u0919;Devanagari Letter Nga +\u091A;Devanagari Letter Ca +\u091B;Devanagari Letter Cha +\u091C;Devanagari Letter Ja +\u091D;Devanagari Letter Jha +\u091E;Devanagari Letter Nya +\u091F;Devanagari Letter Tta +\u0920;Devanagari Letter Ttha +\u0921;Devanagari Letter Dda +\u0922;Devanagari Letter Ddha +\u0923;Devanagari Letter Nna +\u0924;Devanagari Letter Ta +\u0925;Devanagari Letter Tha +\u0926;Devanagari Letter Da +\u0927;Devanagari Letter Dha +\u0928;Devanagari Letter Na +\u0929;Devanagari Letter Nnna +\u092A;Devanagari Letter Pa +\u092B;Devanagari Letter Pha +\u092C;Devanagari Letter Ba +\u092D;Devanagari Letter Bha +\u092E;Devanagari Letter Ma +\u092F;Devanagari Letter Ya +\u0930;Devanagari Letter Ra +\u0931;Devanagari Letter Rra +\u0932;Devanagari Letter La +\u0933;Devanagari Letter Lla +\u0934;Devanagari Letter Llla +\u0935;Devanagari Letter Va +\u0936;Devanagari Letter Sha +\u0937;Devanagari Letter Ssa +\u0938;Devanagari Letter Sa +\u0939;Devanagari Letter Ha +\u093A;Devanagari Vowel Sign Oe +\u093B;Devanagari Vowel Sign Ooe +\u093C;Devanagari Sign Nukta +\u093D;Devanagari Sign Avagraha +\u093E;Devanagari Vowel Sign Aa +\u093F;Devanagari Vowel Sign I +\u0940;Devanagari Vowel Sign Ii +\u0941;Devanagari Vowel Sign U +\u0942;Devanagari Vowel Sign Uu +\u0943;Devanagari Vowel Sign Vocalic R +\u0944;Devanagari Vowel Sign Vocalic Rr +\u0945;Devanagari Vowel Sign Candra E +\u0946;Devanagari Vowel Sign Short E +\u0947;Devanagari Vowel Sign E +\u0948;Devanagari Vowel Sign Ai +\u0949;Devanagari Vowel Sign Candra O +\u094A;Devanagari Vowel Sign Short O +\u094B;Devanagari Vowel Sign O +\u094C;Devanagari Vowel Sign Au +\u094D;Devanagari Sign Virama +\u094E;Devanagari Vowel Sign Prishthamatra E +\u094F;Devanagari Vowel Sign Aw +\u0950;Devanagari Om +\u0951;Devanagari Stress Sign Udatta +\u0952;Devanagari Stress Sign Anudatta +\u0953;Devanagari Grave Accent +\u0954;Devanagari Acute Accent +\u0955;Devanagari Vowel Sign Candra Long E +\u0956;Devanagari Vowel Sign Ue +\u0957;Devanagari Vowel Sign Uue +\u0958;Devanagari Letter Qa +\u0959;Devanagari Letter Khha +\u095A;Devanagari Letter Ghha +\u095B;Devanagari Letter Za +\u095C;Devanagari Letter Dddha +\u095D;Devanagari Letter Rha +\u095E;Devanagari Letter Fa +\u095F;Devanagari Letter Yya +\u0960;Devanagari Letter Vocalic Rr +\u0961;Devanagari Letter Vocalic Ll +\u0962;Devanagari Vowel Sign Vocalic L +\u0963;Devanagari Vowel Sign Vocalic Ll +\u0964;Devanagari Danda +\u0965;Devanagari Double Danda +\u0966;Devanagari Digit Zero +\u0967;Devanagari Digit One +\u0968;Devanagari Digit Two +\u0969;Devanagari Digit Three +\u096A;Devanagari Digit Four +\u096B;Devanagari Digit Five +\u096C;Devanagari Digit Six +\u096D;Devanagari Digit Seven +\u096E;Devanagari Digit Eight +\u096F;Devanagari Digit Nine +\u0970;Devanagari Abbreviation Sign +\u0971;Devanagari Sign High Spacing Dot +\u0972;Devanagari Letter Candra A +\u0973;Devanagari Letter Oe +\u0974;Devanagari Letter Ooe +\u0975;Devanagari Letter Aw +\u0976;Devanagari Letter Ue +\u0977;Devanagari Letter Uue +\u0978;Devanagari Letter Marwari Dda +\u0979;Devanagari Letter Zha +\u097A;Devanagari Letter Heavy Ya +\u097B;Devanagari Letter Gga +\u097C;Devanagari Letter Jja +\u097D;Devanagari Letter Glottal Stop +\u097E;Devanagari Letter Ddda +\u097F;Devanagari Letter Bba +\u0980;Bengali Anji +\u0981;Bengali Sign Candrabindu +\u0982;Bengali Sign Anusvara +\u0983;Bengali Sign Visarga +\u0985;Bengali Letter A +\u0986;Bengali Letter Aa +\u0987;Bengali Letter I +\u0988;Bengali Letter Ii +\u0989;Bengali Letter U +\u098A;Bengali Letter Uu +\u098B;Bengali Letter Vocalic R +\u098C;Bengali Letter Vocalic L +\u098F;Bengali Letter E +\u0990;Bengali Letter Ai +\u0993;Bengali Letter O +\u0994;Bengali Letter Au +\u0995;Bengali Letter Ka +\u0996;Bengali Letter Kha +\u0997;Bengali Letter Ga +\u0998;Bengali Letter Gha +\u0999;Bengali Letter Nga +\u099A;Bengali Letter Ca +\u099B;Bengali Letter Cha +\u099C;Bengali Letter Ja +\u099D;Bengali Letter Jha +\u099E;Bengali Letter Nya +\u099F;Bengali Letter Tta +\u09A0;Bengali Letter Ttha +\u09A1;Bengali Letter Dda +\u09A2;Bengali Letter Ddha +\u09A3;Bengali Letter Nna +\u09A4;Bengali Letter Ta +\u09A5;Bengali Letter Tha +\u09A6;Bengali Letter Da +\u09A7;Bengali Letter Dha +\u09A8;Bengali Letter Na +\u09AA;Bengali Letter Pa +\u09AB;Bengali Letter Pha +\u09AC;Bengali Letter Ba +\u09AD;Bengali Letter Bha +\u09AE;Bengali Letter Ma +\u09AF;Bengali Letter Ya +\u09B0;Bengali Letter Ra +\u09B2;Bengali Letter La +\u09B6;Bengali Letter Sha +\u09B7;Bengali Letter Ssa +\u09B8;Bengali Letter Sa +\u09B9;Bengali Letter Ha +\u09BC;Bengali Sign Nukta +\u09BD;Bengali Sign Avagraha +\u09BE;Bengali Vowel Sign Aa +\u09BF;Bengali Vowel Sign I +\u09C0;Bengali Vowel Sign Ii +\u09C1;Bengali Vowel Sign U +\u09C2;Bengali Vowel Sign Uu +\u09C3;Bengali Vowel Sign Vocalic R +\u09C4;Bengali Vowel Sign Vocalic Rr +\u09C7;Bengali Vowel Sign E +\u09C8;Bengali Vowel Sign Ai +\u09CB;Bengali Vowel Sign O +\u09CC;Bengali Vowel Sign Au +\u09CD;Bengali Sign Virama +\u09CE;Bengali Letter Khanda Ta +\u09D7;Bengali Au Length Mark +\u09DC;Bengali Letter Rra +\u09DD;Bengali Letter Rha +\u09DF;Bengali Letter Yya +\u09E0;Bengali Letter Vocalic Rr +\u09E1;Bengali Letter Vocalic Ll +\u09E2;Bengali Vowel Sign Vocalic L +\u09E3;Bengali Vowel Sign Vocalic Ll +\u09E6;Bengali Digit Zero +\u09E7;Bengali Digit One +\u09E8;Bengali Digit Two +\u09E9;Bengali Digit Three +\u09EA;Bengali Digit Four +\u09EB;Bengali Digit Five +\u09EC;Bengali Digit Six +\u09ED;Bengali Digit Seven +\u09EE;Bengali Digit Eight +\u09EF;Bengali Digit Nine +\u09F0;Bengali Letter Ra With Middle Diagonal +\u09F1;Bengali Letter Ra With Lower Diagonal +\u09F2;Bengali Rupee Mark +\u09F3;Bengali Rupee Sign +\u09F4;Bengali Currency Numerator One +\u09F5;Bengali Currency Numerator Two +\u09F6;Bengali Currency Numerator Three +\u09F7;Bengali Currency Numerator Four +\u09F8;Bengali Currency Numerator One Less Than The Denominator +\u09F9;Bengali Currency Denominator Sixteen +\u09FA;Bengali Isshar +\u09FB;Bengali Ganda Mark +\u09FC;Bengali Letter Vedic Anusvara +\u09FD;Bengali Abbreviation Sign +\u09FE;Bengali Sandhi Mark +\u0A01;Gurmukhi Sign Adak Bindi +\u0A02;Gurmukhi Sign Bindi +\u0A03;Gurmukhi Sign Visarga +\u0A05;Gurmukhi Letter A +\u0A06;Gurmukhi Letter Aa +\u0A07;Gurmukhi Letter I +\u0A08;Gurmukhi Letter Ii +\u0A09;Gurmukhi Letter U +\u0A0A;Gurmukhi Letter Uu +\u0A0F;Gurmukhi Letter Ee +\u0A10;Gurmukhi Letter Ai +\u0A13;Gurmukhi Letter Oo +\u0A14;Gurmukhi Letter Au +\u0A15;Gurmukhi Letter Ka +\u0A16;Gurmukhi Letter Kha +\u0A17;Gurmukhi Letter Ga +\u0A18;Gurmukhi Letter Gha +\u0A19;Gurmukhi Letter Nga +\u0A1A;Gurmukhi Letter Ca +\u0A1B;Gurmukhi Letter Cha +\u0A1C;Gurmukhi Letter Ja +\u0A1D;Gurmukhi Letter Jha +\u0A1E;Gurmukhi Letter Nya +\u0A1F;Gurmukhi Letter Tta +\u0A20;Gurmukhi Letter Ttha +\u0A21;Gurmukhi Letter Dda +\u0A22;Gurmukhi Letter Ddha +\u0A23;Gurmukhi Letter Nna +\u0A24;Gurmukhi Letter Ta +\u0A25;Gurmukhi Letter Tha +\u0A26;Gurmukhi Letter Da +\u0A27;Gurmukhi Letter Dha +\u0A28;Gurmukhi Letter Na +\u0A2A;Gurmukhi Letter Pa +\u0A2B;Gurmukhi Letter Pha +\u0A2C;Gurmukhi Letter Ba +\u0A2D;Gurmukhi Letter Bha +\u0A2E;Gurmukhi Letter Ma +\u0A2F;Gurmukhi Letter Ya +\u0A30;Gurmukhi Letter Ra +\u0A32;Gurmukhi Letter La +\u0A33;Gurmukhi Letter Lla +\u0A35;Gurmukhi Letter Va +\u0A36;Gurmukhi Letter Sha +\u0A38;Gurmukhi Letter Sa +\u0A39;Gurmukhi Letter Ha +\u0A3C;Gurmukhi Sign Nukta +\u0A3E;Gurmukhi Vowel Sign Aa +\u0A3F;Gurmukhi Vowel Sign I +\u0A40;Gurmukhi Vowel Sign Ii +\u0A41;Gurmukhi Vowel Sign U +\u0A42;Gurmukhi Vowel Sign Uu +\u0A47;Gurmukhi Vowel Sign Ee +\u0A48;Gurmukhi Vowel Sign Ai +\u0A4B;Gurmukhi Vowel Sign Oo +\u0A4C;Gurmukhi Vowel Sign Au +\u0A4D;Gurmukhi Sign Virama +\u0A51;Gurmukhi Sign Udaat +\u0A59;Gurmukhi Letter Khha +\u0A5A;Gurmukhi Letter Ghha +\u0A5B;Gurmukhi Letter Za +\u0A5C;Gurmukhi Letter Rra +\u0A5E;Gurmukhi Letter Fa +\u0A66;Gurmukhi Digit Zero +\u0A67;Gurmukhi Digit One +\u0A68;Gurmukhi Digit Two +\u0A69;Gurmukhi Digit Three +\u0A6A;Gurmukhi Digit Four +\u0A6B;Gurmukhi Digit Five +\u0A6C;Gurmukhi Digit Six +\u0A6D;Gurmukhi Digit Seven +\u0A6E;Gurmukhi Digit Eight +\u0A6F;Gurmukhi Digit Nine +\u0A70;Gurmukhi Tippi +\u0A71;Gurmukhi Addak +\u0A72;Gurmukhi Iri +\u0A73;Gurmukhi Ura +\u0A74;Gurmukhi Ek Onkar +\u0A75;Gurmukhi Sign Yakash +\u0A76;Gurmukhi Abbreviation Sign +\u0A81;Gujarati Sign Candrabindu +\u0A82;Gujarati Sign Anusvara +\u0A83;Gujarati Sign Visarga +\u0A85;Gujarati Letter A +\u0A86;Gujarati Letter Aa +\u0A87;Gujarati Letter I +\u0A88;Gujarati Letter Ii +\u0A89;Gujarati Letter U +\u0A8A;Gujarati Letter Uu +\u0A8B;Gujarati Letter Vocalic R +\u0A8C;Gujarati Letter Vocalic L +\u0A8D;Gujarati Vowel Candra E +\u0A8F;Gujarati Letter E +\u0A90;Gujarati Letter Ai +\u0A91;Gujarati Vowel Candra O +\u0A93;Gujarati Letter O +\u0A94;Gujarati Letter Au +\u0A95;Gujarati Letter Ka +\u0A96;Gujarati Letter Kha +\u0A97;Gujarati Letter Ga +\u0A98;Gujarati Letter Gha +\u0A99;Gujarati Letter Nga +\u0A9A;Gujarati Letter Ca +\u0A9B;Gujarati Letter Cha +\u0A9C;Gujarati Letter Ja +\u0A9D;Gujarati Letter Jha +\u0A9E;Gujarati Letter Nya +\u0A9F;Gujarati Letter Tta +\u0AA0;Gujarati Letter Ttha +\u0AA1;Gujarati Letter Dda +\u0AA2;Gujarati Letter Ddha +\u0AA3;Gujarati Letter Nna +\u0AA4;Gujarati Letter Ta +\u0AA5;Gujarati Letter Tha +\u0AA6;Gujarati Letter Da +\u0AA7;Gujarati Letter Dha +\u0AA8;Gujarati Letter Na +\u0AAA;Gujarati Letter Pa +\u0AAB;Gujarati Letter Pha +\u0AAC;Gujarati Letter Ba +\u0AAD;Gujarati Letter Bha +\u0AAE;Gujarati Letter Ma +\u0AAF;Gujarati Letter Ya +\u0AB0;Gujarati Letter Ra +\u0AB2;Gujarati Letter La +\u0AB3;Gujarati Letter Lla +\u0AB5;Gujarati Letter Va +\u0AB6;Gujarati Letter Sha +\u0AB7;Gujarati Letter Ssa +\u0AB8;Gujarati Letter Sa +\u0AB9;Gujarati Letter Ha +\u0ABC;Gujarati Sign Nukta +\u0ABD;Gujarati Sign Avagraha +\u0ABE;Gujarati Vowel Sign Aa +\u0ABF;Gujarati Vowel Sign I +\u0AC0;Gujarati Vowel Sign Ii +\u0AC1;Gujarati Vowel Sign U +\u0AC2;Gujarati Vowel Sign Uu +\u0AC3;Gujarati Vowel Sign Vocalic R +\u0AC4;Gujarati Vowel Sign Vocalic Rr +\u0AC5;Gujarati Vowel Sign Candra E +\u0AC7;Gujarati Vowel Sign E +\u0AC8;Gujarati Vowel Sign Ai +\u0AC9;Gujarati Vowel Sign Candra O +\u0ACB;Gujarati Vowel Sign O +\u0ACC;Gujarati Vowel Sign Au +\u0ACD;Gujarati Sign Virama +\u0AD0;Gujarati Om +\u0AE0;Gujarati Letter Vocalic Rr +\u0AE1;Gujarati Letter Vocalic Ll +\u0AE2;Gujarati Vowel Sign Vocalic L +\u0AE3;Gujarati Vowel Sign Vocalic Ll +\u0AE6;Gujarati Digit Zero +\u0AE7;Gujarati Digit One +\u0AE8;Gujarati Digit Two +\u0AE9;Gujarati Digit Three +\u0AEA;Gujarati Digit Four +\u0AEB;Gujarati Digit Five +\u0AEC;Gujarati Digit Six +\u0AED;Gujarati Digit Seven +\u0AEE;Gujarati Digit Eight +\u0AEF;Gujarati Digit Nine +\u0AF0;Gujarati Abbreviation Sign +\u0AF1;Gujarati Rupee Sign +\u0AF9;Gujarati Letter Zha +\u0AFA;Gujarati Sign Sukun +\u0AFB;Gujarati Sign Shadda +\u0AFC;Gujarati Sign Maddah +\u0AFD;Gujarati Sign Three-Dot Nukta Above +\u0AFE;Gujarati Sign Circle Nukta Above +\u0AFF;Gujarati Sign Two-Circle Nukta Above +\u0B01;Oriya Sign Candrabindu +\u0B02;Oriya Sign Anusvara +\u0B03;Oriya Sign Visarga +\u0B05;Oriya Letter A +\u0B06;Oriya Letter Aa +\u0B07;Oriya Letter I +\u0B08;Oriya Letter Ii +\u0B09;Oriya Letter U +\u0B0A;Oriya Letter Uu +\u0B0B;Oriya Letter Vocalic R +\u0B0C;Oriya Letter Vocalic L +\u0B0F;Oriya Letter E +\u0B10;Oriya Letter Ai +\u0B13;Oriya Letter O +\u0B14;Oriya Letter Au +\u0B15;Oriya Letter Ka +\u0B16;Oriya Letter Kha +\u0B17;Oriya Letter Ga +\u0B18;Oriya Letter Gha +\u0B19;Oriya Letter Nga +\u0B1A;Oriya Letter Ca +\u0B1B;Oriya Letter Cha +\u0B1C;Oriya Letter Ja +\u0B1D;Oriya Letter Jha +\u0B1E;Oriya Letter Nya +\u0B1F;Oriya Letter Tta +\u0B20;Oriya Letter Ttha +\u0B21;Oriya Letter Dda +\u0B22;Oriya Letter Ddha +\u0B23;Oriya Letter Nna +\u0B24;Oriya Letter Ta +\u0B25;Oriya Letter Tha +\u0B26;Oriya Letter Da +\u0B27;Oriya Letter Dha +\u0B28;Oriya Letter Na +\u0B2A;Oriya Letter Pa +\u0B2B;Oriya Letter Pha +\u0B2C;Oriya Letter Ba +\u0B2D;Oriya Letter Bha +\u0B2E;Oriya Letter Ma +\u0B2F;Oriya Letter Ya +\u0B30;Oriya Letter Ra +\u0B32;Oriya Letter La +\u0B33;Oriya Letter Lla +\u0B35;Oriya Letter Va +\u0B36;Oriya Letter Sha +\u0B37;Oriya Letter Ssa +\u0B38;Oriya Letter Sa +\u0B39;Oriya Letter Ha +\u0B3C;Oriya Sign Nukta +\u0B3D;Oriya Sign Avagraha +\u0B3E;Oriya Vowel Sign Aa +\u0B3F;Oriya Vowel Sign I +\u0B40;Oriya Vowel Sign Ii +\u0B41;Oriya Vowel Sign U +\u0B42;Oriya Vowel Sign Uu +\u0B43;Oriya Vowel Sign Vocalic R +\u0B44;Oriya Vowel Sign Vocalic Rr +\u0B47;Oriya Vowel Sign E +\u0B48;Oriya Vowel Sign Ai +\u0B4B;Oriya Vowel Sign O +\u0B4C;Oriya Vowel Sign Au +\u0B4D;Oriya Sign Virama +\u0B55;Oriya Sign Overline +\u0B56;Oriya Ai Length Mark +\u0B57;Oriya Au Length Mark +\u0B5C;Oriya Letter Rra +\u0B5D;Oriya Letter Rha +\u0B5F;Oriya Letter Yya +\u0B60;Oriya Letter Vocalic Rr +\u0B61;Oriya Letter Vocalic Ll +\u0B62;Oriya Vowel Sign Vocalic L +\u0B63;Oriya Vowel Sign Vocalic Ll +\u0B66;Oriya Digit Zero +\u0B67;Oriya Digit One +\u0B68;Oriya Digit Two +\u0B69;Oriya Digit Three +\u0B6A;Oriya Digit Four +\u0B6B;Oriya Digit Five +\u0B6C;Oriya Digit Six +\u0B6D;Oriya Digit Seven +\u0B6E;Oriya Digit Eight +\u0B6F;Oriya Digit Nine +\u0B70;Oriya Isshar +\u0B71;Oriya Letter Wa +\u0B72;Oriya Fraction One Quarter +\u0B73;Oriya Fraction One Half +\u0B74;Oriya Fraction Three Quarters +\u0B75;Oriya Fraction One Sixteenth +\u0B76;Oriya Fraction One Eighth +\u0B77;Oriya Fraction Three Sixteenths +\u0B82;Tamil Sign Anusvara +\u0B83;Tamil Sign Visarga +\u0B85;Tamil Letter A +\u0B86;Tamil Letter Aa +\u0B87;Tamil Letter I +\u0B88;Tamil Letter Ii +\u0B89;Tamil Letter U +\u0B8A;Tamil Letter Uu +\u0B8E;Tamil Letter E +\u0B8F;Tamil Letter Ee +\u0B90;Tamil Letter Ai +\u0B92;Tamil Letter O +\u0B93;Tamil Letter Oo +\u0B94;Tamil Letter Au +\u0B95;Tamil Letter Ka +\u0B99;Tamil Letter Nga +\u0B9A;Tamil Letter Ca +\u0B9C;Tamil Letter Ja +\u0B9E;Tamil Letter Nya +\u0B9F;Tamil Letter Tta +\u0BA3;Tamil Letter Nna +\u0BA4;Tamil Letter Ta +\u0BA8;Tamil Letter Na +\u0BA9;Tamil Letter Nnna +\u0BAA;Tamil Letter Pa +\u0BAE;Tamil Letter Ma +\u0BAF;Tamil Letter Ya +\u0BB0;Tamil Letter Ra +\u0BB1;Tamil Letter Rra +\u0BB2;Tamil Letter La +\u0BB3;Tamil Letter Lla +\u0BB4;Tamil Letter Llla +\u0BB5;Tamil Letter Va +\u0BB6;Tamil Letter Sha +\u0BB7;Tamil Letter Ssa +\u0BB8;Tamil Letter Sa +\u0BB9;Tamil Letter Ha +\u0BBE;Tamil Vowel Sign Aa +\u0BBF;Tamil Vowel Sign I +\u0BC0;Tamil Vowel Sign Ii +\u0BC1;Tamil Vowel Sign U +\u0BC2;Tamil Vowel Sign Uu +\u0BC6;Tamil Vowel Sign E +\u0BC7;Tamil Vowel Sign Ee +\u0BC8;Tamil Vowel Sign Ai +\u0BCA;Tamil Vowel Sign O +\u0BCB;Tamil Vowel Sign Oo +\u0BCC;Tamil Vowel Sign Au +\u0BCD;Tamil Sign Virama +\u0BD0;Tamil Om +\u0BD7;Tamil Au Length Mark +\u0BE6;Tamil Digit Zero +\u0BE7;Tamil Digit One +\u0BE8;Tamil Digit Two +\u0BE9;Tamil Digit Three +\u0BEA;Tamil Digit Four +\u0BEB;Tamil Digit Five +\u0BEC;Tamil Digit Six +\u0BED;Tamil Digit Seven +\u0BEE;Tamil Digit Eight +\u0BEF;Tamil Digit Nine +\u0BF0;Tamil Number Ten +\u0BF1;Tamil Number One Hundred +\u0BF2;Tamil Number One Thousand +\u0BF3;Tamil Day Sign +\u0BF4;Tamil Month Sign +\u0BF5;Tamil Year Sign +\u0BF6;Tamil Debit Sign +\u0BF7;Tamil Credit Sign +\u0BF8;Tamil As Above Sign +\u0BF9;Tamil Rupee Sign +\u0BFA;Tamil Number Sign +\u0C00;Telugu Sign Combining Candrabindu Above +\u0C01;Telugu Sign Candrabindu +\u0C02;Telugu Sign Anusvara +\u0C03;Telugu Sign Visarga +\u0C04;Telugu Sign Combining Anusvara Above +\u0C05;Telugu Letter A +\u0C06;Telugu Letter Aa +\u0C07;Telugu Letter I +\u0C08;Telugu Letter Ii +\u0C09;Telugu Letter U +\u0C0A;Telugu Letter Uu +\u0C0B;Telugu Letter Vocalic R +\u0C0C;Telugu Letter Vocalic L +\u0C0E;Telugu Letter E +\u0C0F;Telugu Letter Ee +\u0C10;Telugu Letter Ai +\u0C12;Telugu Letter O +\u0C13;Telugu Letter Oo +\u0C14;Telugu Letter Au +\u0C15;Telugu Letter Ka +\u0C16;Telugu Letter Kha +\u0C17;Telugu Letter Ga +\u0C18;Telugu Letter Gha +\u0C19;Telugu Letter Nga +\u0C1A;Telugu Letter Ca +\u0C1B;Telugu Letter Cha +\u0C1C;Telugu Letter Ja +\u0C1D;Telugu Letter Jha +\u0C1E;Telugu Letter Nya +\u0C1F;Telugu Letter Tta +\u0C20;Telugu Letter Ttha +\u0C21;Telugu Letter Dda +\u0C22;Telugu Letter Ddha +\u0C23;Telugu Letter Nna +\u0C24;Telugu Letter Ta +\u0C25;Telugu Letter Tha +\u0C26;Telugu Letter Da +\u0C27;Telugu Letter Dha +\u0C28;Telugu Letter Na +\u0C2A;Telugu Letter Pa +\u0C2B;Telugu Letter Pha +\u0C2C;Telugu Letter Ba +\u0C2D;Telugu Letter Bha +\u0C2E;Telugu Letter Ma +\u0C2F;Telugu Letter Ya +\u0C30;Telugu Letter Ra +\u0C31;Telugu Letter Rra +\u0C32;Telugu Letter La +\u0C33;Telugu Letter Lla +\u0C34;Telugu Letter Llla +\u0C35;Telugu Letter Va +\u0C36;Telugu Letter Sha +\u0C37;Telugu Letter Ssa +\u0C38;Telugu Letter Sa +\u0C39;Telugu Letter Ha +\u0C3C;Telugu Sign Nukta +\u0C3D;Telugu Sign Avagraha +\u0C3E;Telugu Vowel Sign Aa +\u0C3F;Telugu Vowel Sign I +\u0C40;Telugu Vowel Sign Ii +\u0C41;Telugu Vowel Sign U +\u0C42;Telugu Vowel Sign Uu +\u0C43;Telugu Vowel Sign Vocalic R +\u0C44;Telugu Vowel Sign Vocalic Rr +\u0C46;Telugu Vowel Sign E +\u0C47;Telugu Vowel Sign Ee +\u0C48;Telugu Vowel Sign Ai +\u0C4A;Telugu Vowel Sign O +\u0C4B;Telugu Vowel Sign Oo +\u0C4C;Telugu Vowel Sign Au +\u0C4D;Telugu Sign Virama +\u0C55;Telugu Length Mark +\u0C56;Telugu Ai Length Mark +\u0C58;Telugu Letter Tsa +\u0C59;Telugu Letter Dza +\u0C5A;Telugu Letter Rrra +\u0C5D;Telugu Letter Nakaara Pollu +\u0C60;Telugu Letter Vocalic Rr +\u0C61;Telugu Letter Vocalic Ll +\u0C62;Telugu Vowel Sign Vocalic L +\u0C63;Telugu Vowel Sign Vocalic Ll +\u0C66;Telugu Digit Zero +\u0C67;Telugu Digit One +\u0C68;Telugu Digit Two +\u0C69;Telugu Digit Three +\u0C6A;Telugu Digit Four +\u0C6B;Telugu Digit Five +\u0C6C;Telugu Digit Six +\u0C6D;Telugu Digit Seven +\u0C6E;Telugu Digit Eight +\u0C6F;Telugu Digit Nine +\u0C77;Telugu Sign Siddham +\u0C78;Telugu Fraction Digit Zero For Odd Powers Of Four +\u0C79;Telugu Fraction Digit One For Odd Powers Of Four +\u0C7A;Telugu Fraction Digit Two For Odd Powers Of Four +\u0C7B;Telugu Fraction Digit Three For Odd Powers Of Four +\u0C7C;Telugu Fraction Digit One For Even Powers Of Four +\u0C7D;Telugu Fraction Digit Two For Even Powers Of Four +\u0C7E;Telugu Fraction Digit Three For Even Powers Of Four +\u0C7F;Telugu Sign Tuumu +\u0C80;Kannada Sign Spacing Candrabindu +\u0C81;Kannada Sign Candrabindu +\u0C82;Kannada Sign Anusvara +\u0C83;Kannada Sign Visarga +\u0C84;Kannada Sign Siddham +\u0C85;Kannada Letter A +\u0C86;Kannada Letter Aa +\u0C87;Kannada Letter I +\u0C88;Kannada Letter Ii +\u0C89;Kannada Letter U +\u0C8A;Kannada Letter Uu +\u0C8B;Kannada Letter Vocalic R +\u0C8C;Kannada Letter Vocalic L +\u0C8E;Kannada Letter E +\u0C8F;Kannada Letter Ee +\u0C90;Kannada Letter Ai +\u0C92;Kannada Letter O +\u0C93;Kannada Letter Oo +\u0C94;Kannada Letter Au +\u0C95;Kannada Letter Ka +\u0C96;Kannada Letter Kha +\u0C97;Kannada Letter Ga +\u0C98;Kannada Letter Gha +\u0C99;Kannada Letter Nga +\u0C9A;Kannada Letter Ca +\u0C9B;Kannada Letter Cha +\u0C9C;Kannada Letter Ja +\u0C9D;Kannada Letter Jha +\u0C9E;Kannada Letter Nya +\u0C9F;Kannada Letter Tta +\u0CA0;Kannada Letter Ttha +\u0CA1;Kannada Letter Dda +\u0CA2;Kannada Letter Ddha +\u0CA3;Kannada Letter Nna +\u0CA4;Kannada Letter Ta +\u0CA5;Kannada Letter Tha +\u0CA6;Kannada Letter Da +\u0CA7;Kannada Letter Dha +\u0CA8;Kannada Letter Na +\u0CAA;Kannada Letter Pa +\u0CAB;Kannada Letter Pha +\u0CAC;Kannada Letter Ba +\u0CAD;Kannada Letter Bha +\u0CAE;Kannada Letter Ma +\u0CAF;Kannada Letter Ya +\u0CB0;Kannada Letter Ra +\u0CB1;Kannada Letter Rra +\u0CB2;Kannada Letter La +\u0CB3;Kannada Letter Lla +\u0CB5;Kannada Letter Va +\u0CB6;Kannada Letter Sha +\u0CB7;Kannada Letter Ssa +\u0CB8;Kannada Letter Sa +\u0CB9;Kannada Letter Ha +\u0CBC;Kannada Sign Nukta +\u0CBD;Kannada Sign Avagraha +\u0CBE;Kannada Vowel Sign Aa +\u0CBF;Kannada Vowel Sign I +\u0CC0;Kannada Vowel Sign Ii +\u0CC1;Kannada Vowel Sign U +\u0CC2;Kannada Vowel Sign Uu +\u0CC3;Kannada Vowel Sign Vocalic R +\u0CC4;Kannada Vowel Sign Vocalic Rr +\u0CC6;Kannada Vowel Sign E +\u0CC7;Kannada Vowel Sign Ee +\u0CC8;Kannada Vowel Sign Ai +\u0CCA;Kannada Vowel Sign O +\u0CCB;Kannada Vowel Sign Oo +\u0CCC;Kannada Vowel Sign Au +\u0CCD;Kannada Sign Virama +\u0CD5;Kannada Length Mark +\u0CD6;Kannada Ai Length Mark +\u0CDD;Kannada Letter Nakaara Pollu +\u0CDE;Kannada Letter Fa +\u0CE0;Kannada Letter Vocalic Rr +\u0CE1;Kannada Letter Vocalic Ll +\u0CE2;Kannada Vowel Sign Vocalic L +\u0CE3;Kannada Vowel Sign Vocalic Ll +\u0CE6;Kannada Digit Zero +\u0CE7;Kannada Digit One +\u0CE8;Kannada Digit Two +\u0CE9;Kannada Digit Three +\u0CEA;Kannada Digit Four +\u0CEB;Kannada Digit Five +\u0CEC;Kannada Digit Six +\u0CED;Kannada Digit Seven +\u0CEE;Kannada Digit Eight +\u0CEF;Kannada Digit Nine +\u0CF1;Kannada Sign Jihvamuliya +\u0CF2;Kannada Sign Upadhmaniya +\u0CF3;Kannada Sign Combining Anusvara Above Right +\u0D00;Malayalam Sign Combining Anusvara Above +\u0D01;Malayalam Sign Candrabindu +\u0D02;Malayalam Sign Anusvara +\u0D03;Malayalam Sign Visarga +\u0D04;Malayalam Letter Vedic Anusvara +\u0D05;Malayalam Letter A +\u0D06;Malayalam Letter Aa +\u0D07;Malayalam Letter I +\u0D08;Malayalam Letter Ii +\u0D09;Malayalam Letter U +\u0D0A;Malayalam Letter Uu +\u0D0B;Malayalam Letter Vocalic R +\u0D0C;Malayalam Letter Vocalic L +\u0D0E;Malayalam Letter E +\u0D0F;Malayalam Letter Ee +\u0D10;Malayalam Letter Ai +\u0D12;Malayalam Letter O +\u0D13;Malayalam Letter Oo +\u0D14;Malayalam Letter Au +\u0D15;Malayalam Letter Ka +\u0D16;Malayalam Letter Kha +\u0D17;Malayalam Letter Ga +\u0D18;Malayalam Letter Gha +\u0D19;Malayalam Letter Nga +\u0D1A;Malayalam Letter Ca +\u0D1B;Malayalam Letter Cha +\u0D1C;Malayalam Letter Ja +\u0D1D;Malayalam Letter Jha +\u0D1E;Malayalam Letter Nya +\u0D1F;Malayalam Letter Tta +\u0D20;Malayalam Letter Ttha +\u0D21;Malayalam Letter Dda +\u0D22;Malayalam Letter Ddha +\u0D23;Malayalam Letter Nna +\u0D24;Malayalam Letter Ta +\u0D25;Malayalam Letter Tha +\u0D26;Malayalam Letter Da +\u0D27;Malayalam Letter Dha +\u0D28;Malayalam Letter Na +\u0D29;Malayalam Letter Nnna +\u0D2A;Malayalam Letter Pa +\u0D2B;Malayalam Letter Pha +\u0D2C;Malayalam Letter Ba +\u0D2D;Malayalam Letter Bha +\u0D2E;Malayalam Letter Ma +\u0D2F;Malayalam Letter Ya +\u0D30;Malayalam Letter Ra +\u0D31;Malayalam Letter Rra +\u0D32;Malayalam Letter La +\u0D33;Malayalam Letter Lla +\u0D34;Malayalam Letter Llla +\u0D35;Malayalam Letter Va +\u0D36;Malayalam Letter Sha +\u0D37;Malayalam Letter Ssa +\u0D38;Malayalam Letter Sa +\u0D39;Malayalam Letter Ha +\u0D3A;Malayalam Letter Ttta +\u0D3B;Malayalam Sign Vertical Bar Virama +\u0D3C;Malayalam Sign Circular Virama +\u0D3D;Malayalam Sign Avagraha +\u0D3E;Malayalam Vowel Sign Aa +\u0D3F;Malayalam Vowel Sign I +\u0D40;Malayalam Vowel Sign Ii +\u0D41;Malayalam Vowel Sign U +\u0D42;Malayalam Vowel Sign Uu +\u0D43;Malayalam Vowel Sign Vocalic R +\u0D44;Malayalam Vowel Sign Vocalic Rr +\u0D46;Malayalam Vowel Sign E +\u0D47;Malayalam Vowel Sign Ee +\u0D48;Malayalam Vowel Sign Ai +\u0D4A;Malayalam Vowel Sign O +\u0D4B;Malayalam Vowel Sign Oo +\u0D4C;Malayalam Vowel Sign Au +\u0D4D;Malayalam Sign Virama +\u0D4E;Malayalam Letter Dot Reph +\u0D4F;Malayalam Sign Para +\u0D54;Malayalam Letter Chillu M +\u0D55;Malayalam Letter Chillu Y +\u0D56;Malayalam Letter Chillu Lll +\u0D57;Malayalam Au Length Mark +\u0D58;Malayalam Fraction One One-Hundred-And-Sixtieth +\u0D59;Malayalam Fraction One Fortieth +\u0D5A;Malayalam Fraction Three Eightieths +\u0D5B;Malayalam Fraction One Twentieth +\u0D5C;Malayalam Fraction One Tenth +\u0D5D;Malayalam Fraction Three Twentieths +\u0D5E;Malayalam Fraction One Fifth +\u0D5F;Malayalam Letter Archaic Ii +\u0D60;Malayalam Letter Vocalic Rr +\u0D61;Malayalam Letter Vocalic Ll +\u0D62;Malayalam Vowel Sign Vocalic L +\u0D63;Malayalam Vowel Sign Vocalic Ll +\u0D66;Malayalam Digit Zero +\u0D67;Malayalam Digit One +\u0D68;Malayalam Digit Two +\u0D69;Malayalam Digit Three +\u0D6A;Malayalam Digit Four +\u0D6B;Malayalam Digit Five +\u0D6C;Malayalam Digit Six +\u0D6D;Malayalam Digit Seven +\u0D6E;Malayalam Digit Eight +\u0D6F;Malayalam Digit Nine +\u0D70;Malayalam Number Ten +\u0D71;Malayalam Number One Hundred +\u0D72;Malayalam Number One Thousand +\u0D73;Malayalam Fraction One Quarter +\u0D74;Malayalam Fraction One Half +\u0D75;Malayalam Fraction Three Quarters +\u0D76;Malayalam Fraction One Sixteenth +\u0D77;Malayalam Fraction One Eighth +\u0D78;Malayalam Fraction Three Sixteenths +\u0D79;Malayalam Date Mark +\u0D7A;Malayalam Letter Chillu Nn +\u0D7B;Malayalam Letter Chillu N +\u0D7C;Malayalam Letter Chillu Rr +\u0D7D;Malayalam Letter Chillu L +\u0D7E;Malayalam Letter Chillu Ll +\u0D7F;Malayalam Letter Chillu K +\u0D81;Sinhala Sign Candrabindu +\u0D82;Sinhala Sign Anusvaraya +\u0D83;Sinhala Sign Visargaya +\u0D85;Sinhala Letter Ayanna +\u0D86;Sinhala Letter Aayanna +\u0D87;Sinhala Letter Aeyanna +\u0D88;Sinhala Letter Aeeyanna +\u0D89;Sinhala Letter Iyanna +\u0D8A;Sinhala Letter Iiyanna +\u0D8B;Sinhala Letter Uyanna +\u0D8C;Sinhala Letter Uuyanna +\u0D8D;Sinhala Letter Iruyanna +\u0D8E;Sinhala Letter Iruuyanna +\u0D8F;Sinhala Letter Iluyanna +\u0D90;Sinhala Letter Iluuyanna +\u0D91;Sinhala Letter Eyanna +\u0D92;Sinhala Letter Eeyanna +\u0D93;Sinhala Letter Aiyanna +\u0D94;Sinhala Letter Oyanna +\u0D95;Sinhala Letter Ooyanna +\u0D96;Sinhala Letter Auyanna +\u0D9A;Sinhala Letter Alpapraana Kayanna +\u0D9B;Sinhala Letter Mahaapraana Kayanna +\u0D9C;Sinhala Letter Alpapraana Gayanna +\u0D9D;Sinhala Letter Mahaapraana Gayanna +\u0D9E;Sinhala Letter Kantaja Naasikyaya +\u0D9F;Sinhala Letter Sanyaka Gayanna +\u0DA0;Sinhala Letter Alpapraana Cayanna +\u0DA1;Sinhala Letter Mahaapraana Cayanna +\u0DA2;Sinhala Letter Alpapraana Jayanna +\u0DA3;Sinhala Letter Mahaapraana Jayanna +\u0DA4;Sinhala Letter Taaluja Naasikyaya +\u0DA5;Sinhala Letter Taaluja Sanyooga Naaksikyaya +\u0DA6;Sinhala Letter Sanyaka Jayanna +\u0DA7;Sinhala Letter Alpapraana Ttayanna +\u0DA8;Sinhala Letter Mahaapraana Ttayanna +\u0DA9;Sinhala Letter Alpapraana Ddayanna +\u0DAA;Sinhala Letter Mahaapraana Ddayanna +\u0DAB;Sinhala Letter Muurdhaja Nayanna +\u0DAC;Sinhala Letter Sanyaka Ddayanna +\u0DAD;Sinhala Letter Alpapraana Tayanna +\u0DAE;Sinhala Letter Mahaapraana Tayanna +\u0DAF;Sinhala Letter Alpapraana Dayanna +\u0DB0;Sinhala Letter Mahaapraana Dayanna +\u0DB1;Sinhala Letter Dantaja Nayanna +\u0DB3;Sinhala Letter Sanyaka Dayanna +\u0DB4;Sinhala Letter Alpapraana Payanna +\u0DB5;Sinhala Letter Mahaapraana Payanna +\u0DB6;Sinhala Letter Alpapraana Bayanna +\u0DB7;Sinhala Letter Mahaapraana Bayanna +\u0DB8;Sinhala Letter Mayanna +\u0DB9;Sinhala Letter Amba Bayanna +\u0DBA;Sinhala Letter Yayanna +\u0DBB;Sinhala Letter Rayanna +\u0DBD;Sinhala Letter Dantaja Layanna +\u0DC0;Sinhala Letter Vayanna +\u0DC1;Sinhala Letter Taaluja Sayanna +\u0DC2;Sinhala Letter Muurdhaja Sayanna +\u0DC3;Sinhala Letter Dantaja Sayanna +\u0DC4;Sinhala Letter Hayanna +\u0DC5;Sinhala Letter Muurdhaja Layanna +\u0DC6;Sinhala Letter Fayanna +\u0DCA;Sinhala Sign Al-Lakuna +\u0DCF;Sinhala Vowel Sign Aela-Pilla +\u0DD0;Sinhala Vowel Sign Ketti Aeda-Pilla +\u0DD1;Sinhala Vowel Sign Diga Aeda-Pilla +\u0DD2;Sinhala Vowel Sign Ketti Is-Pilla +\u0DD3;Sinhala Vowel Sign Diga Is-Pilla +\u0DD4;Sinhala Vowel Sign Ketti Paa-Pilla +\u0DD6;Sinhala Vowel Sign Diga Paa-Pilla +\u0DD8;Sinhala Vowel Sign Gaetta-Pilla +\u0DD9;Sinhala Vowel Sign Kombuva +\u0DDA;Sinhala Vowel Sign Diga Kombuva +\u0DDB;Sinhala Vowel Sign Kombu Deka +\u0DDC;Sinhala Vowel Sign Kombuva Haa Aela-Pilla +\u0DDD;Sinhala Vowel Sign Kombuva Haa Diga Aela-Pilla +\u0DDE;Sinhala Vowel Sign Kombuva Haa Gayanukitta +\u0DDF;Sinhala Vowel Sign Gayanukitta +\u0DE6;Sinhala Lith Digit Zero +\u0DE7;Sinhala Lith Digit One +\u0DE8;Sinhala Lith Digit Two +\u0DE9;Sinhala Lith Digit Three +\u0DEA;Sinhala Lith Digit Four +\u0DEB;Sinhala Lith Digit Five +\u0DEC;Sinhala Lith Digit Six +\u0DED;Sinhala Lith Digit Seven +\u0DEE;Sinhala Lith Digit Eight +\u0DEF;Sinhala Lith Digit Nine +\u0DF2;Sinhala Vowel Sign Diga Gaetta-Pilla +\u0DF3;Sinhala Vowel Sign Diga Gayanukitta +\u0DF4;Sinhala Punctuation Kunddaliya +\u0E01;Thai Character Ko Kai +\u0E02;Thai Character Kho Khai +\u0E03;Thai Character Kho Khuat +\u0E04;Thai Character Kho Khwai +\u0E05;Thai Character Kho Khon +\u0E06;Thai Character Kho Rakhang +\u0E07;Thai Character Ngo Ngu +\u0E08;Thai Character Cho Chan +\u0E09;Thai Character Cho Ching +\u0E0A;Thai Character Cho Chang +\u0E0B;Thai Character So So +\u0E0C;Thai Character Cho Choe +\u0E0D;Thai Character Yo Ying +\u0E0E;Thai Character Do Chada +\u0E0F;Thai Character To Patak +\u0E10;Thai Character Tho Than +\u0E11;Thai Character Tho Nangmontho +\u0E12;Thai Character Tho Phuthao +\u0E13;Thai Character No Nen +\u0E14;Thai Character Do Dek +\u0E15;Thai Character To Tao +\u0E16;Thai Character Tho Thung +\u0E17;Thai Character Tho Thahan +\u0E18;Thai Character Tho Thong +\u0E19;Thai Character No Nu +\u0E1A;Thai Character Bo Baimai +\u0E1B;Thai Character Po Pla +\u0E1C;Thai Character Pho Phung +\u0E1D;Thai Character Fo Fa +\u0E1E;Thai Character Pho Phan +\u0E1F;Thai Character Fo Fan +\u0E20;Thai Character Pho Samphao +\u0E21;Thai Character Mo Ma +\u0E22;Thai Character Yo Yak +\u0E23;Thai Character Ro Rua +\u0E24;Thai Character Ru +\u0E25;Thai Character Lo Ling +\u0E26;Thai Character Lu +\u0E27;Thai Character Wo Waen +\u0E28;Thai Character So Sala +\u0E29;Thai Character So Rusi +\u0E2A;Thai Character So Sua +\u0E2B;Thai Character Ho Hip +\u0E2C;Thai Character Lo Chula +\u0E2D;Thai Character O Ang +\u0E2E;Thai Character Ho Nokhuk +\u0E2F;Thai Character Paiyannoi +\u0E30;Thai Character Sara A +\u0E31;Thai Character Mai Han-Akat +\u0E32;Thai Character Sara Aa +\u0E33;Thai Character Sara Am +\u0E34;Thai Character Sara I +\u0E35;Thai Character Sara Ii +\u0E36;Thai Character Sara Ue +\u0E37;Thai Character Sara Uee +\u0E38;Thai Character Sara U +\u0E39;Thai Character Sara Uu +\u0E3A;Thai Character Phinthu +\u0E3F;Thai Currency Symbol Baht +\u0E40;Thai Character Sara E +\u0E41;Thai Character Sara Ae +\u0E42;Thai Character Sara O +\u0E43;Thai Character Sara Ai Maimuan +\u0E44;Thai Character Sara Ai Maimalai +\u0E45;Thai Character Lakkhangyao +\u0E46;Thai Character Maiyamok +\u0E47;Thai Character Maitaikhu +\u0E48;Thai Character Mai Ek +\u0E49;Thai Character Mai Tho +\u0E4A;Thai Character Mai Tri +\u0E4B;Thai Character Mai Chattawa +\u0E4C;Thai Character Thanthakhat +\u0E4D;Thai Character Nikhahit +\u0E4E;Thai Character Yamakkan +\u0E4F;Thai Character Fongman +\u0E50;Thai Digit Zero +\u0E51;Thai Digit One +\u0E52;Thai Digit Two +\u0E53;Thai Digit Three +\u0E54;Thai Digit Four +\u0E55;Thai Digit Five +\u0E56;Thai Digit Six +\u0E57;Thai Digit Seven +\u0E58;Thai Digit Eight +\u0E59;Thai Digit Nine +\u0E5A;Thai Character Angkhankhu +\u0E5B;Thai Character Khomut +\u0E81;Lao Letter Ko +\u0E82;Lao Letter Kho Sung +\u0E84;Lao Letter Kho Tam +\u0E86;Lao Letter Pali Gha +\u0E87;Lao Letter Ngo +\u0E88;Lao Letter Co +\u0E89;Lao Letter Pali Cha +\u0E8A;Lao Letter So Tam +\u0E8C;Lao Letter Pali Jha +\u0E8D;Lao Letter Nyo +\u0E8E;Lao Letter Pali Nya +\u0E8F;Lao Letter Pali Tta +\u0E90;Lao Letter Pali Ttha +\u0E91;Lao Letter Pali Dda +\u0E92;Lao Letter Pali Ddha +\u0E93;Lao Letter Pali Nna +\u0E94;Lao Letter Do +\u0E95;Lao Letter To +\u0E96;Lao Letter Tho Sung +\u0E97;Lao Letter Tho Tam +\u0E98;Lao Letter Pali Dha +\u0E99;Lao Letter No +\u0E9A;Lao Letter Bo +\u0E9B;Lao Letter Po +\u0E9C;Lao Letter Pho Sung +\u0E9D;Lao Letter Fo Tam +\u0E9E;Lao Letter Pho Tam +\u0E9F;Lao Letter Fo Sung +\u0EA0;Lao Letter Pali Bha +\u0EA1;Lao Letter Mo +\u0EA2;Lao Letter Yo +\u0EA3;Lao Letter Lo Ling +\u0EA5;Lao Letter Lo Loot +\u0EA7;Lao Letter Wo +\u0EA8;Lao Letter Sanskrit Sha +\u0EA9;Lao Letter Sanskrit Ssa +\u0EAA;Lao Letter So Sung +\u0EAB;Lao Letter Ho Sung +\u0EAC;Lao Letter Pali Lla +\u0EAD;Lao Letter O +\u0EAE;Lao Letter Ho Tam +\u0EAF;Lao Ellipsis +\u0EB0;Lao Vowel Sign A +\u0EB1;Lao Vowel Sign Mai Kan +\u0EB2;Lao Vowel Sign Aa +\u0EB3;Lao Vowel Sign Am +\u0EB4;Lao Vowel Sign I +\u0EB5;Lao Vowel Sign Ii +\u0EB6;Lao Vowel Sign Y +\u0EB7;Lao Vowel Sign Yy +\u0EB8;Lao Vowel Sign U +\u0EB9;Lao Vowel Sign Uu +\u0EBA;Lao Sign Pali Virama +\u0EBB;Lao Vowel Sign Mai Kon +\u0EBC;Lao Semivowel Sign Lo +\u0EBD;Lao Semivowel Sign Nyo +\u0EC0;Lao Vowel Sign E +\u0EC1;Lao Vowel Sign Ei +\u0EC2;Lao Vowel Sign O +\u0EC3;Lao Vowel Sign Ay +\u0EC4;Lao Vowel Sign Ai +\u0EC6;Lao Ko La +\u0EC8;Lao Tone Mai Ek +\u0EC9;Lao Tone Mai Tho +\u0ECA;Lao Tone Mai Ti +\u0ECB;Lao Tone Mai Catawa +\u0ECC;Lao Cancellation Mark +\u0ECD;Lao Niggahita +\u0ECE;Lao Yamakkan +\u0ED0;Lao Digit Zero +\u0ED1;Lao Digit One +\u0ED2;Lao Digit Two +\u0ED3;Lao Digit Three +\u0ED4;Lao Digit Four +\u0ED5;Lao Digit Five +\u0ED6;Lao Digit Six +\u0ED7;Lao Digit Seven +\u0ED8;Lao Digit Eight +\u0ED9;Lao Digit Nine +\u0EDC;Lao Ho No +\u0EDD;Lao Ho Mo +\u0EDE;Lao Letter Khmu Go +\u0EDF;Lao Letter Khmu Nyo +\u0F00;Tibetan Syllable Om +\u0F01;Tibetan Mark Gter Yig Mgo Truncated A +\u0F02;Tibetan Mark Gter Yig Mgo -Um Rnam Bcad Ma +\u0F03;Tibetan Mark Gter Yig Mgo -Um Gter Tsheg Ma +\u0F04;Tibetan Mark Initial Yig Mgo Mdun Ma +\u0F05;Tibetan Mark Closing Yig Mgo Sgab Ma +\u0F06;Tibetan Mark Caret Yig Mgo Phur Shad Ma +\u0F07;Tibetan Mark Yig Mgo Tsheg Shad Ma +\u0F08;Tibetan Mark Sbrul Shad +\u0F09;Tibetan Mark Bskur Yig Mgo +\u0F0A;Tibetan Mark Bka- Shog Yig Mgo +\u0F0B;Tibetan Mark Intersyllabic Tsheg +\u0F0C;Tibetan Mark Delimiter Tsheg Bstar +\u0F0D;Tibetan Mark Shad +\u0F0E;Tibetan Mark Nyis Shad +\u0F0F;Tibetan Mark Tsheg Shad +\u0F10;Tibetan Mark Nyis Tsheg Shad +\u0F11;Tibetan Mark Rin Chen Spungs Shad +\u0F12;Tibetan Mark Rgya Gram Shad +\u0F13;Tibetan Mark Caret -Dzud Rtags Me Long Can +\u0F14;Tibetan Mark Gter Tsheg +\u0F15;Tibetan Logotype Sign Chad Rtags +\u0F16;Tibetan Logotype Sign Lhag Rtags +\u0F17;Tibetan Astrological Sign Sgra Gcan -Char Rtags +\u0F18;Tibetan Astrological Sign -Khyud Pa +\u0F19;Tibetan Astrological Sign Sdong Tshugs +\u0F1A;Tibetan Sign Rdel Dkar Gcig +\u0F1B;Tibetan Sign Rdel Dkar Gnyis +\u0F1C;Tibetan Sign Rdel Dkar Gsum +\u0F1D;Tibetan Sign Rdel Nag Gcig +\u0F1E;Tibetan Sign Rdel Nag Gnyis +\u0F1F;Tibetan Sign Rdel Dkar Rdel Nag +\u0F20;Tibetan Digit Zero +\u0F21;Tibetan Digit One +\u0F22;Tibetan Digit Two +\u0F23;Tibetan Digit Three +\u0F24;Tibetan Digit Four +\u0F25;Tibetan Digit Five +\u0F26;Tibetan Digit Six +\u0F27;Tibetan Digit Seven +\u0F28;Tibetan Digit Eight +\u0F29;Tibetan Digit Nine +\u0F2A;Tibetan Digit Half One +\u0F2B;Tibetan Digit Half Two +\u0F2C;Tibetan Digit Half Three +\u0F2D;Tibetan Digit Half Four +\u0F2E;Tibetan Digit Half Five +\u0F2F;Tibetan Digit Half Six +\u0F30;Tibetan Digit Half Seven +\u0F31;Tibetan Digit Half Eight +\u0F32;Tibetan Digit Half Nine +\u0F33;Tibetan Digit Half Zero +\u0F34;Tibetan Mark Bsdus Rtags +\u0F35;Tibetan Mark Ngas Bzung Nyi Zla +\u0F36;Tibetan Mark Caret -Dzud Rtags Bzhi Mig Can +\u0F37;Tibetan Mark Ngas Bzung Sgor Rtags +\u0F38;Tibetan Mark Che Mgo +\u0F39;Tibetan Mark Tsa -Phru +\u0F3A;Tibetan Mark Gug Rtags Gyon +\u0F3B;Tibetan Mark Gug Rtags Gyas +\u0F3C;Tibetan Mark Ang Khang Gyon +\u0F3D;Tibetan Mark Ang Khang Gyas +\u0F3E;Tibetan Sign Yar Tshes +\u0F3F;Tibetan Sign Mar Tshes +\u0F40;Tibetan Letter Ka +\u0F41;Tibetan Letter Kha +\u0F42;Tibetan Letter Ga +\u0F43;Tibetan Letter Gha +\u0F44;Tibetan Letter Nga +\u0F45;Tibetan Letter Ca +\u0F46;Tibetan Letter Cha +\u0F47;Tibetan Letter Ja +\u0F49;Tibetan Letter Nya +\u0F4A;Tibetan Letter Tta +\u0F4B;Tibetan Letter Ttha +\u0F4C;Tibetan Letter Dda +\u0F4D;Tibetan Letter Ddha +\u0F4E;Tibetan Letter Nna +\u0F4F;Tibetan Letter Ta +\u0F50;Tibetan Letter Tha +\u0F51;Tibetan Letter Da +\u0F52;Tibetan Letter Dha +\u0F53;Tibetan Letter Na +\u0F54;Tibetan Letter Pa +\u0F55;Tibetan Letter Pha +\u0F56;Tibetan Letter Ba +\u0F57;Tibetan Letter Bha +\u0F58;Tibetan Letter Ma +\u0F59;Tibetan Letter Tsa +\u0F5A;Tibetan Letter Tsha +\u0F5B;Tibetan Letter Dza +\u0F5C;Tibetan Letter Dzha +\u0F5D;Tibetan Letter Wa +\u0F5E;Tibetan Letter Zha +\u0F5F;Tibetan Letter Za +\u0F60;Tibetan Letter -A +\u0F61;Tibetan Letter Ya +\u0F62;Tibetan Letter Ra +\u0F63;Tibetan Letter La +\u0F64;Tibetan Letter Sha +\u0F65;Tibetan Letter Ssa +\u0F66;Tibetan Letter Sa +\u0F67;Tibetan Letter Ha +\u0F68;Tibetan Letter A +\u0F69;Tibetan Letter Kssa +\u0F6A;Tibetan Letter Fixed-Form Ra +\u0F6B;Tibetan Letter Kka +\u0F6C;Tibetan Letter Rra +\u0F71;Tibetan Vowel Sign Aa +\u0F72;Tibetan Vowel Sign I +\u0F73;Tibetan Vowel Sign Ii +\u0F74;Tibetan Vowel Sign U +\u0F75;Tibetan Vowel Sign Uu +\u0F76;Tibetan Vowel Sign Vocalic R +\u0F77;Tibetan Vowel Sign Vocalic Rr +\u0F78;Tibetan Vowel Sign Vocalic L +\u0F79;Tibetan Vowel Sign Vocalic Ll +\u0F7A;Tibetan Vowel Sign E +\u0F7B;Tibetan Vowel Sign Ee +\u0F7C;Tibetan Vowel Sign O +\u0F7D;Tibetan Vowel Sign Oo +\u0F7E;Tibetan Sign Rjes Su Nga Ro +\u0F7F;Tibetan Sign Rnam Bcad +\u0F80;Tibetan Vowel Sign Reversed I +\u0F81;Tibetan Vowel Sign Reversed Ii +\u0F82;Tibetan Sign Nyi Zla Naa Da +\u0F83;Tibetan Sign Sna Ldan +\u0F84;Tibetan Mark Halanta +\u0F85;Tibetan Mark Paluta +\u0F86;Tibetan Sign Lci Rtags +\u0F87;Tibetan Sign Yang Rtags +\u0F88;Tibetan Sign Lce Tsa Can +\u0F89;Tibetan Sign Mchu Can +\u0F8A;Tibetan Sign Gru Can Rgyings +\u0F8B;Tibetan Sign Gru Med Rgyings +\u0F8C;Tibetan Sign Inverted Mchu Can +\u0F8D;Tibetan Subjoined Sign Lce Tsa Can +\u0F8E;Tibetan Subjoined Sign Mchu Can +\u0F8F;Tibetan Subjoined Sign Inverted Mchu Can +\u0F90;Tibetan Subjoined Letter Ka +\u0F91;Tibetan Subjoined Letter Kha +\u0F92;Tibetan Subjoined Letter Ga +\u0F93;Tibetan Subjoined Letter Gha +\u0F94;Tibetan Subjoined Letter Nga +\u0F95;Tibetan Subjoined Letter Ca +\u0F96;Tibetan Subjoined Letter Cha +\u0F97;Tibetan Subjoined Letter Ja +\u0F99;Tibetan Subjoined Letter Nya +\u0F9A;Tibetan Subjoined Letter Tta +\u0F9B;Tibetan Subjoined Letter Ttha +\u0F9C;Tibetan Subjoined Letter Dda +\u0F9D;Tibetan Subjoined Letter Ddha +\u0F9E;Tibetan Subjoined Letter Nna +\u0F9F;Tibetan Subjoined Letter Ta +\u0FA0;Tibetan Subjoined Letter Tha +\u0FA1;Tibetan Subjoined Letter Da +\u0FA2;Tibetan Subjoined Letter Dha +\u0FA3;Tibetan Subjoined Letter Na +\u0FA4;Tibetan Subjoined Letter Pa +\u0FA5;Tibetan Subjoined Letter Pha +\u0FA6;Tibetan Subjoined Letter Ba +\u0FA7;Tibetan Subjoined Letter Bha +\u0FA8;Tibetan Subjoined Letter Ma +\u0FA9;Tibetan Subjoined Letter Tsa +\u0FAA;Tibetan Subjoined Letter Tsha +\u0FAB;Tibetan Subjoined Letter Dza +\u0FAC;Tibetan Subjoined Letter Dzha +\u0FAD;Tibetan Subjoined Letter Wa +\u0FAE;Tibetan Subjoined Letter Zha +\u0FAF;Tibetan Subjoined Letter Za +\u0FB0;Tibetan Subjoined Letter -A +\u0FB1;Tibetan Subjoined Letter Ya +\u0FB2;Tibetan Subjoined Letter Ra +\u0FB3;Tibetan Subjoined Letter La +\u0FB4;Tibetan Subjoined Letter Sha +\u0FB5;Tibetan Subjoined Letter Ssa +\u0FB6;Tibetan Subjoined Letter Sa +\u0FB7;Tibetan Subjoined Letter Ha +\u0FB8;Tibetan Subjoined Letter A +\u0FB9;Tibetan Subjoined Letter Kssa +\u0FBA;Tibetan Subjoined Letter Fixed-Form Wa +\u0FBB;Tibetan Subjoined Letter Fixed-Form Ya +\u0FBC;Tibetan Subjoined Letter Fixed-Form Ra +\u0FBE;Tibetan Ku Ru Kha +\u0FBF;Tibetan Ku Ru Kha Bzhi Mig Can +\u0FC0;Tibetan Cantillation Sign Heavy Beat +\u0FC1;Tibetan Cantillation Sign Light Beat +\u0FC2;Tibetan Cantillation Sign Cang Te-U +\u0FC3;Tibetan Cantillation Sign Sbub -Chal +\u0FC4;Tibetan Symbol Dril Bu +\u0FC5;Tibetan Symbol Rdo Rje +\u0FC6;Tibetan Symbol Padma Gdan +\u0FC7;Tibetan Symbol Rdo Rje Rgya Gram +\u0FC8;Tibetan Symbol Phur Pa +\u0FC9;Tibetan Symbol Nor Bu +\u0FCA;Tibetan Symbol Nor Bu Nyis -Khyil +\u0FCB;Tibetan Symbol Nor Bu Gsum -Khyil +\u0FCC;Tibetan Symbol Nor Bu Bzhi -Khyil +\u0FCE;Tibetan Sign Rdel Nag Rdel Dkar +\u0FCF;Tibetan Sign Rdel Nag Gsum +\u0FD0;Tibetan Mark Bska- Shog Gi Mgo Rgyan +\u0FD1;Tibetan Mark Mnyam Yig Gi Mgo Rgyan +\u0FD2;Tibetan Mark Nyis Tsheg +\u0FD3;Tibetan Mark Initial Brda Rnying Yig Mgo Mdun Ma +\u0FD4;Tibetan Mark Closing Brda Rnying Yig Mgo Sgab Ma +\u0FD5;Right-Facing Svasti Sign +\u0FD6;Left-Facing Svasti Sign +\u0FD7;Right-Facing Svasti Sign With Dots +\u0FD8;Left-Facing Svasti Sign With Dots +\u0FD9;Tibetan Mark Leading Mchan Rtags +\u0FDA;Tibetan Mark Trailing Mchan Rtags +\u1000;Myanmar Letter Ka +\u1001;Myanmar Letter Kha +\u1002;Myanmar Letter Ga +\u1003;Myanmar Letter Gha +\u1004;Myanmar Letter Nga +\u1005;Myanmar Letter Ca +\u1006;Myanmar Letter Cha +\u1007;Myanmar Letter Ja +\u1008;Myanmar Letter Jha +\u1009;Myanmar Letter Nya +\u100A;Myanmar Letter Nnya +\u100B;Myanmar Letter Tta +\u100C;Myanmar Letter Ttha +\u100D;Myanmar Letter Dda +\u100E;Myanmar Letter Ddha +\u100F;Myanmar Letter Nna +\u1010;Myanmar Letter Ta +\u1011;Myanmar Letter Tha +\u1012;Myanmar Letter Da +\u1013;Myanmar Letter Dha +\u1014;Myanmar Letter Na +\u1015;Myanmar Letter Pa +\u1016;Myanmar Letter Pha +\u1017;Myanmar Letter Ba +\u1018;Myanmar Letter Bha +\u1019;Myanmar Letter Ma +\u101A;Myanmar Letter Ya +\u101B;Myanmar Letter Ra +\u101C;Myanmar Letter La +\u101D;Myanmar Letter Wa +\u101E;Myanmar Letter Sa +\u101F;Myanmar Letter Ha +\u1020;Myanmar Letter Lla +\u1021;Myanmar Letter A +\u1022;Myanmar Letter Shan A +\u1023;Myanmar Letter I +\u1024;Myanmar Letter Ii +\u1025;Myanmar Letter U +\u1026;Myanmar Letter Uu +\u1027;Myanmar Letter E +\u1028;Myanmar Letter Mon E +\u1029;Myanmar Letter O +\u102A;Myanmar Letter Au +\u102B;Myanmar Vowel Sign Tall Aa +\u102C;Myanmar Vowel Sign Aa +\u102D;Myanmar Vowel Sign I +\u102E;Myanmar Vowel Sign Ii +\u102F;Myanmar Vowel Sign U +\u1030;Myanmar Vowel Sign Uu +\u1031;Myanmar Vowel Sign E +\u1032;Myanmar Vowel Sign Ai +\u1033;Myanmar Vowel Sign Mon Ii +\u1034;Myanmar Vowel Sign Mon O +\u1035;Myanmar Vowel Sign E Above +\u1036;Myanmar Sign Anusvara +\u1037;Myanmar Sign Dot Below +\u1038;Myanmar Sign Visarga +\u1039;Myanmar Sign Virama +\u103A;Myanmar Sign Asat +\u103B;Myanmar Consonant Sign Medial Ya +\u103C;Myanmar Consonant Sign Medial Ra +\u103D;Myanmar Consonant Sign Medial Wa +\u103E;Myanmar Consonant Sign Medial Ha +\u103F;Myanmar Letter Great Sa +\u1040;Myanmar Digit Zero +\u1041;Myanmar Digit One +\u1042;Myanmar Digit Two +\u1043;Myanmar Digit Three +\u1044;Myanmar Digit Four +\u1045;Myanmar Digit Five +\u1046;Myanmar Digit Six +\u1047;Myanmar Digit Seven +\u1048;Myanmar Digit Eight +\u1049;Myanmar Digit Nine +\u104A;Myanmar Sign Little Section +\u104B;Myanmar Sign Section +\u104C;Myanmar Symbol Locative +\u104D;Myanmar Symbol Completed +\u104E;Myanmar Symbol Aforementioned +\u104F;Myanmar Symbol Genitive +\u1050;Myanmar Letter Sha +\u1051;Myanmar Letter Ssa +\u1052;Myanmar Letter Vocalic R +\u1053;Myanmar Letter Vocalic Rr +\u1054;Myanmar Letter Vocalic L +\u1055;Myanmar Letter Vocalic Ll +\u1056;Myanmar Vowel Sign Vocalic R +\u1057;Myanmar Vowel Sign Vocalic Rr +\u1058;Myanmar Vowel Sign Vocalic L +\u1059;Myanmar Vowel Sign Vocalic Ll +\u105A;Myanmar Letter Mon Nga +\u105B;Myanmar Letter Mon Jha +\u105C;Myanmar Letter Mon Bba +\u105D;Myanmar Letter Mon Bbe +\u105E;Myanmar Consonant Sign Mon Medial Na +\u105F;Myanmar Consonant Sign Mon Medial Ma +\u1060;Myanmar Consonant Sign Mon Medial La +\u1061;Myanmar Letter Sgaw Karen Sha +\u1062;Myanmar Vowel Sign Sgaw Karen Eu +\u1063;Myanmar Tone Mark Sgaw Karen Hathi +\u1064;Myanmar Tone Mark Sgaw Karen Ke Pho +\u1065;Myanmar Letter Western Pwo Karen Tha +\u1066;Myanmar Letter Western Pwo Karen Pwa +\u1067;Myanmar Vowel Sign Western Pwo Karen Eu +\u1068;Myanmar Vowel Sign Western Pwo Karen Ue +\u1069;Myanmar Sign Western Pwo Karen Tone-1 +\u106A;Myanmar Sign Western Pwo Karen Tone-2 +\u106B;Myanmar Sign Western Pwo Karen Tone-3 +\u106C;Myanmar Sign Western Pwo Karen Tone-4 +\u106D;Myanmar Sign Western Pwo Karen Tone-5 +\u106E;Myanmar Letter Eastern Pwo Karen Nna +\u106F;Myanmar Letter Eastern Pwo Karen Ywa +\u1070;Myanmar Letter Eastern Pwo Karen Ghwa +\u1071;Myanmar Vowel Sign Geba Karen I +\u1072;Myanmar Vowel Sign Kayah Oe +\u1073;Myanmar Vowel Sign Kayah U +\u1074;Myanmar Vowel Sign Kayah Ee +\u1075;Myanmar Letter Shan Ka +\u1076;Myanmar Letter Shan Kha +\u1077;Myanmar Letter Shan Ga +\u1078;Myanmar Letter Shan Ca +\u1079;Myanmar Letter Shan Za +\u107A;Myanmar Letter Shan Nya +\u107B;Myanmar Letter Shan Da +\u107C;Myanmar Letter Shan Na +\u107D;Myanmar Letter Shan Pha +\u107E;Myanmar Letter Shan Fa +\u107F;Myanmar Letter Shan Ba +\u1080;Myanmar Letter Shan Tha +\u1081;Myanmar Letter Shan Ha +\u1082;Myanmar Consonant Sign Shan Medial Wa +\u1083;Myanmar Vowel Sign Shan Aa +\u1084;Myanmar Vowel Sign Shan E +\u1085;Myanmar Vowel Sign Shan E Above +\u1086;Myanmar Vowel Sign Shan Final Y +\u1087;Myanmar Sign Shan Tone-2 +\u1088;Myanmar Sign Shan Tone-3 +\u1089;Myanmar Sign Shan Tone-5 +\u108A;Myanmar Sign Shan Tone-6 +\u108B;Myanmar Sign Shan Council Tone-2 +\u108C;Myanmar Sign Shan Council Tone-3 +\u108D;Myanmar Sign Shan Council Emphatic Tone +\u108E;Myanmar Letter Rumai Palaung Fa +\u108F;Myanmar Sign Rumai Palaung Tone-5 +\u1090;Myanmar Shan Digit Zero +\u1091;Myanmar Shan Digit One +\u1092;Myanmar Shan Digit Two +\u1093;Myanmar Shan Digit Three +\u1094;Myanmar Shan Digit Four +\u1095;Myanmar Shan Digit Five +\u1096;Myanmar Shan Digit Six +\u1097;Myanmar Shan Digit Seven +\u1098;Myanmar Shan Digit Eight +\u1099;Myanmar Shan Digit Nine +\u109A;Myanmar Sign Khamti Tone-1 +\u109B;Myanmar Sign Khamti Tone-3 +\u109C;Myanmar Vowel Sign Aiton A +\u109D;Myanmar Vowel Sign Aiton Ai +\u109E;Myanmar Symbol Shan One +\u109F;Myanmar Symbol Shan Exclamation +\u10A0;Georgian Capital Letter An +\u10A1;Georgian Capital Letter Ban +\u10A2;Georgian Capital Letter Gan +\u10A3;Georgian Capital Letter Don +\u10A4;Georgian Capital Letter En +\u10A5;Georgian Capital Letter Vin +\u10A6;Georgian Capital Letter Zen +\u10A7;Georgian Capital Letter Tan +\u10A8;Georgian Capital Letter In +\u10A9;Georgian Capital Letter Kan +\u10AA;Georgian Capital Letter Las +\u10AB;Georgian Capital Letter Man +\u10AC;Georgian Capital Letter Nar +\u10AD;Georgian Capital Letter On +\u10AE;Georgian Capital Letter Par +\u10AF;Georgian Capital Letter Zhar +\u10B0;Georgian Capital Letter Rae +\u10B1;Georgian Capital Letter San +\u10B2;Georgian Capital Letter Tar +\u10B3;Georgian Capital Letter Un +\u10B4;Georgian Capital Letter Phar +\u10B5;Georgian Capital Letter Khar +\u10B6;Georgian Capital Letter Ghan +\u10B7;Georgian Capital Letter Qar +\u10B8;Georgian Capital Letter Shin +\u10B9;Georgian Capital Letter Chin +\u10BA;Georgian Capital Letter Can +\u10BB;Georgian Capital Letter Jil +\u10BC;Georgian Capital Letter Cil +\u10BD;Georgian Capital Letter Char +\u10BE;Georgian Capital Letter Xan +\u10BF;Georgian Capital Letter Jhan +\u10C0;Georgian Capital Letter Hae +\u10C1;Georgian Capital Letter He +\u10C2;Georgian Capital Letter Hie +\u10C3;Georgian Capital Letter We +\u10C4;Georgian Capital Letter Har +\u10C5;Georgian Capital Letter Hoe +\u10C7;Georgian Capital Letter Yn +\u10CD;Georgian Capital Letter Aen +\u10D0;Georgian Letter An +\u10D1;Georgian Letter Ban +\u10D2;Georgian Letter Gan +\u10D3;Georgian Letter Don +\u10D4;Georgian Letter En +\u10D5;Georgian Letter Vin +\u10D6;Georgian Letter Zen +\u10D7;Georgian Letter Tan +\u10D8;Georgian Letter In +\u10D9;Georgian Letter Kan +\u10DA;Georgian Letter Las +\u10DB;Georgian Letter Man +\u10DC;Georgian Letter Nar +\u10DD;Georgian Letter On +\u10DE;Georgian Letter Par +\u10DF;Georgian Letter Zhar +\u10E0;Georgian Letter Rae +\u10E1;Georgian Letter San +\u10E2;Georgian Letter Tar +\u10E3;Georgian Letter Un +\u10E4;Georgian Letter Phar +\u10E5;Georgian Letter Khar +\u10E6;Georgian Letter Ghan +\u10E7;Georgian Letter Qar +\u10E8;Georgian Letter Shin +\u10E9;Georgian Letter Chin +\u10EA;Georgian Letter Can +\u10EB;Georgian Letter Jil +\u10EC;Georgian Letter Cil +\u10ED;Georgian Letter Char +\u10EE;Georgian Letter Xan +\u10EF;Georgian Letter Jhan +\u10F0;Georgian Letter Hae +\u10F1;Georgian Letter He +\u10F2;Georgian Letter Hie +\u10F3;Georgian Letter We +\u10F4;Georgian Letter Har +\u10F5;Georgian Letter Hoe +\u10F6;Georgian Letter Fi +\u10F7;Georgian Letter Yn +\u10F8;Georgian Letter Elifi +\u10F9;Georgian Letter Turned Gan +\u10FA;Georgian Letter Ain +\u10FB;Georgian Paragraph Separator +\u10FC;Modifier Letter Georgian Nar +\u10FD;Georgian Letter Aen +\u10FE;Georgian Letter Hard Sign +\u10FF;Georgian Letter Labial Sign +\u1100;Hangul Choseong Kiyeok +\u1101;Hangul Choseong Ssangkiyeok +\u1102;Hangul Choseong Nieun +\u1103;Hangul Choseong Tikeut +\u1104;Hangul Choseong Ssangtikeut +\u1105;Hangul Choseong Rieul +\u1106;Hangul Choseong Mieum +\u1107;Hangul Choseong Pieup +\u1108;Hangul Choseong Ssangpieup +\u1109;Hangul Choseong Sios +\u110A;Hangul Choseong Ssangsios +\u110B;Hangul Choseong Ieung +\u110C;Hangul Choseong Cieuc +\u110D;Hangul Choseong Ssangcieuc +\u110E;Hangul Choseong Chieuch +\u110F;Hangul Choseong Khieukh +\u1110;Hangul Choseong Thieuth +\u1111;Hangul Choseong Phieuph +\u1112;Hangul Choseong Hieuh +\u1113;Hangul Choseong Nieun-Kiyeok +\u1114;Hangul Choseong Ssangnieun +\u1115;Hangul Choseong Nieun-Tikeut +\u1116;Hangul Choseong Nieun-Pieup +\u1117;Hangul Choseong Tikeut-Kiyeok +\u1118;Hangul Choseong Rieul-Nieun +\u1119;Hangul Choseong Ssangrieul +\u111A;Hangul Choseong Rieul-Hieuh +\u111B;Hangul Choseong Kapyeounrieul +\u111C;Hangul Choseong Mieum-Pieup +\u111D;Hangul Choseong Kapyeounmieum +\u111E;Hangul Choseong Pieup-Kiyeok +\u111F;Hangul Choseong Pieup-Nieun +\u1120;Hangul Choseong Pieup-Tikeut +\u1121;Hangul Choseong Pieup-Sios +\u1122;Hangul Choseong Pieup-Sios-Kiyeok +\u1123;Hangul Choseong Pieup-Sios-Tikeut +\u1124;Hangul Choseong Pieup-Sios-Pieup +\u1125;Hangul Choseong Pieup-Ssangsios +\u1126;Hangul Choseong Pieup-Sios-Cieuc +\u1127;Hangul Choseong Pieup-Cieuc +\u1128;Hangul Choseong Pieup-Chieuch +\u1129;Hangul Choseong Pieup-Thieuth +\u112A;Hangul Choseong Pieup-Phieuph +\u112B;Hangul Choseong Kapyeounpieup +\u112C;Hangul Choseong Kapyeounssangpieup +\u112D;Hangul Choseong Sios-Kiyeok +\u112E;Hangul Choseong Sios-Nieun +\u112F;Hangul Choseong Sios-Tikeut +\u1130;Hangul Choseong Sios-Rieul +\u1131;Hangul Choseong Sios-Mieum +\u1132;Hangul Choseong Sios-Pieup +\u1133;Hangul Choseong Sios-Pieup-Kiyeok +\u1134;Hangul Choseong Sios-Ssangsios +\u1135;Hangul Choseong Sios-Ieung +\u1136;Hangul Choseong Sios-Cieuc +\u1137;Hangul Choseong Sios-Chieuch +\u1138;Hangul Choseong Sios-Khieukh +\u1139;Hangul Choseong Sios-Thieuth +\u113A;Hangul Choseong Sios-Phieuph +\u113B;Hangul Choseong Sios-Hieuh +\u113C;Hangul Choseong Chitueumsios +\u113D;Hangul Choseong Chitueumssangsios +\u113E;Hangul Choseong Ceongchieumsios +\u113F;Hangul Choseong Ceongchieumssangsios +\u1140;Hangul Choseong Pansios +\u1141;Hangul Choseong Ieung-Kiyeok +\u1142;Hangul Choseong Ieung-Tikeut +\u1143;Hangul Choseong Ieung-Mieum +\u1144;Hangul Choseong Ieung-Pieup +\u1145;Hangul Choseong Ieung-Sios +\u1146;Hangul Choseong Ieung-Pansios +\u1147;Hangul Choseong Ssangieung +\u1148;Hangul Choseong Ieung-Cieuc +\u1149;Hangul Choseong Ieung-Chieuch +\u114A;Hangul Choseong Ieung-Thieuth +\u114B;Hangul Choseong Ieung-Phieuph +\u114C;Hangul Choseong Yesieung +\u114D;Hangul Choseong Cieuc-Ieung +\u114E;Hangul Choseong Chitueumcieuc +\u114F;Hangul Choseong Chitueumssangcieuc +\u1150;Hangul Choseong Ceongchieumcieuc +\u1151;Hangul Choseong Ceongchieumssangcieuc +\u1152;Hangul Choseong Chieuch-Khieukh +\u1153;Hangul Choseong Chieuch-Hieuh +\u1154;Hangul Choseong Chitueumchieuch +\u1155;Hangul Choseong Ceongchieumchieuch +\u1156;Hangul Choseong Phieuph-Pieup +\u1157;Hangul Choseong Kapyeounphieuph +\u1158;Hangul Choseong Ssanghieuh +\u1159;Hangul Choseong Yeorinhieuh +\u115A;Hangul Choseong Kiyeok-Tikeut +\u115B;Hangul Choseong Nieun-Sios +\u115C;Hangul Choseong Nieun-Cieuc +\u115D;Hangul Choseong Nieun-Hieuh +\u115E;Hangul Choseong Tikeut-Rieul +\u115F;Hangul Choseong Filler +\u1160;Hangul Jungseong Filler +\u1161;Hangul Jungseong A +\u1162;Hangul Jungseong Ae +\u1163;Hangul Jungseong Ya +\u1164;Hangul Jungseong Yae +\u1165;Hangul Jungseong Eo +\u1166;Hangul Jungseong E +\u1167;Hangul Jungseong Yeo +\u1168;Hangul Jungseong Ye +\u1169;Hangul Jungseong O +\u116A;Hangul Jungseong Wa +\u116B;Hangul Jungseong Wae +\u116C;Hangul Jungseong Oe +\u116D;Hangul Jungseong Yo +\u116E;Hangul Jungseong U +\u116F;Hangul Jungseong Weo +\u1170;Hangul Jungseong We +\u1171;Hangul Jungseong Wi +\u1172;Hangul Jungseong Yu +\u1173;Hangul Jungseong Eu +\u1174;Hangul Jungseong Yi +\u1175;Hangul Jungseong I +\u1176;Hangul Jungseong A-O +\u1177;Hangul Jungseong A-U +\u1178;Hangul Jungseong Ya-O +\u1179;Hangul Jungseong Ya-Yo +\u117A;Hangul Jungseong Eo-O +\u117B;Hangul Jungseong Eo-U +\u117C;Hangul Jungseong Eo-Eu +\u117D;Hangul Jungseong Yeo-O +\u117E;Hangul Jungseong Yeo-U +\u117F;Hangul Jungseong O-Eo +\u1180;Hangul Jungseong O-E +\u1181;Hangul Jungseong O-Ye +\u1182;Hangul Jungseong O-O +\u1183;Hangul Jungseong O-U +\u1184;Hangul Jungseong Yo-Ya +\u1185;Hangul Jungseong Yo-Yae +\u1186;Hangul Jungseong Yo-Yeo +\u1187;Hangul Jungseong Yo-O +\u1188;Hangul Jungseong Yo-I +\u1189;Hangul Jungseong U-A +\u118A;Hangul Jungseong U-Ae +\u118B;Hangul Jungseong U-Eo-Eu +\u118C;Hangul Jungseong U-Ye +\u118D;Hangul Jungseong U-U +\u118E;Hangul Jungseong Yu-A +\u118F;Hangul Jungseong Yu-Eo +\u1190;Hangul Jungseong Yu-E +\u1191;Hangul Jungseong Yu-Yeo +\u1192;Hangul Jungseong Yu-Ye +\u1193;Hangul Jungseong Yu-U +\u1194;Hangul Jungseong Yu-I +\u1195;Hangul Jungseong Eu-U +\u1196;Hangul Jungseong Eu-Eu +\u1197;Hangul Jungseong Yi-U +\u1198;Hangul Jungseong I-A +\u1199;Hangul Jungseong I-Ya +\u119A;Hangul Jungseong I-O +\u119B;Hangul Jungseong I-U +\u119C;Hangul Jungseong I-Eu +\u119D;Hangul Jungseong I-Araea +\u119E;Hangul Jungseong Araea +\u119F;Hangul Jungseong Araea-Eo +\u11A0;Hangul Jungseong Araea-U +\u11A1;Hangul Jungseong Araea-I +\u11A2;Hangul Jungseong Ssangaraea +\u11A3;Hangul Jungseong A-Eu +\u11A4;Hangul Jungseong Ya-U +\u11A5;Hangul Jungseong Yeo-Ya +\u11A6;Hangul Jungseong O-Ya +\u11A7;Hangul Jungseong O-Yae +\u11A8;Hangul Jongseong Kiyeok +\u11A9;Hangul Jongseong Ssangkiyeok +\u11AA;Hangul Jongseong Kiyeok-Sios +\u11AB;Hangul Jongseong Nieun +\u11AC;Hangul Jongseong Nieun-Cieuc +\u11AD;Hangul Jongseong Nieun-Hieuh +\u11AE;Hangul Jongseong Tikeut +\u11AF;Hangul Jongseong Rieul +\u11B0;Hangul Jongseong Rieul-Kiyeok +\u11B1;Hangul Jongseong Rieul-Mieum +\u11B2;Hangul Jongseong Rieul-Pieup +\u11B3;Hangul Jongseong Rieul-Sios +\u11B4;Hangul Jongseong Rieul-Thieuth +\u11B5;Hangul Jongseong Rieul-Phieuph +\u11B6;Hangul Jongseong Rieul-Hieuh +\u11B7;Hangul Jongseong Mieum +\u11B8;Hangul Jongseong Pieup +\u11B9;Hangul Jongseong Pieup-Sios +\u11BA;Hangul Jongseong Sios +\u11BB;Hangul Jongseong Ssangsios +\u11BC;Hangul Jongseong Ieung +\u11BD;Hangul Jongseong Cieuc +\u11BE;Hangul Jongseong Chieuch +\u11BF;Hangul Jongseong Khieukh +\u11C0;Hangul Jongseong Thieuth +\u11C1;Hangul Jongseong Phieuph +\u11C2;Hangul Jongseong Hieuh +\u11C3;Hangul Jongseong Kiyeok-Rieul +\u11C4;Hangul Jongseong Kiyeok-Sios-Kiyeok +\u11C5;Hangul Jongseong Nieun-Kiyeok +\u11C6;Hangul Jongseong Nieun-Tikeut +\u11C7;Hangul Jongseong Nieun-Sios +\u11C8;Hangul Jongseong Nieun-Pansios +\u11C9;Hangul Jongseong Nieun-Thieuth +\u11CA;Hangul Jongseong Tikeut-Kiyeok +\u11CB;Hangul Jongseong Tikeut-Rieul +\u11CC;Hangul Jongseong Rieul-Kiyeok-Sios +\u11CD;Hangul Jongseong Rieul-Nieun +\u11CE;Hangul Jongseong Rieul-Tikeut +\u11CF;Hangul Jongseong Rieul-Tikeut-Hieuh +\u11D0;Hangul Jongseong Ssangrieul +\u11D1;Hangul Jongseong Rieul-Mieum-Kiyeok +\u11D2;Hangul Jongseong Rieul-Mieum-Sios +\u11D3;Hangul Jongseong Rieul-Pieup-Sios +\u11D4;Hangul Jongseong Rieul-Pieup-Hieuh +\u11D5;Hangul Jongseong Rieul-Kapyeounpieup +\u11D6;Hangul Jongseong Rieul-Ssangsios +\u11D7;Hangul Jongseong Rieul-Pansios +\u11D8;Hangul Jongseong Rieul-Khieukh +\u11D9;Hangul Jongseong Rieul-Yeorinhieuh +\u11DA;Hangul Jongseong Mieum-Kiyeok +\u11DB;Hangul Jongseong Mieum-Rieul +\u11DC;Hangul Jongseong Mieum-Pieup +\u11DD;Hangul Jongseong Mieum-Sios +\u11DE;Hangul Jongseong Mieum-Ssangsios +\u11DF;Hangul Jongseong Mieum-Pansios +\u11E0;Hangul Jongseong Mieum-Chieuch +\u11E1;Hangul Jongseong Mieum-Hieuh +\u11E2;Hangul Jongseong Kapyeounmieum +\u11E3;Hangul Jongseong Pieup-Rieul +\u11E4;Hangul Jongseong Pieup-Phieuph +\u11E5;Hangul Jongseong Pieup-Hieuh +\u11E6;Hangul Jongseong Kapyeounpieup +\u11E7;Hangul Jongseong Sios-Kiyeok +\u11E8;Hangul Jongseong Sios-Tikeut +\u11E9;Hangul Jongseong Sios-Rieul +\u11EA;Hangul Jongseong Sios-Pieup +\u11EB;Hangul Jongseong Pansios +\u11EC;Hangul Jongseong Ieung-Kiyeok +\u11ED;Hangul Jongseong Ieung-Ssangkiyeok +\u11EE;Hangul Jongseong Ssangieung +\u11EF;Hangul Jongseong Ieung-Khieukh +\u11F0;Hangul Jongseong Yesieung +\u11F1;Hangul Jongseong Yesieung-Sios +\u11F2;Hangul Jongseong Yesieung-Pansios +\u11F3;Hangul Jongseong Phieuph-Pieup +\u11F4;Hangul Jongseong Kapyeounphieuph +\u11F5;Hangul Jongseong Hieuh-Nieun +\u11F6;Hangul Jongseong Hieuh-Rieul +\u11F7;Hangul Jongseong Hieuh-Mieum +\u11F8;Hangul Jongseong Hieuh-Pieup +\u11F9;Hangul Jongseong Yeorinhieuh +\u11FA;Hangul Jongseong Kiyeok-Nieun +\u11FB;Hangul Jongseong Kiyeok-Pieup +\u11FC;Hangul Jongseong Kiyeok-Chieuch +\u11FD;Hangul Jongseong Kiyeok-Khieukh +\u11FE;Hangul Jongseong Kiyeok-Hieuh +\u11FF;Hangul Jongseong Ssangnieun +\u1200;Ethiopic Syllable Ha +\u1201;Ethiopic Syllable Hu +\u1202;Ethiopic Syllable Hi +\u1203;Ethiopic Syllable Haa +\u1204;Ethiopic Syllable Hee +\u1205;Ethiopic Syllable He +\u1206;Ethiopic Syllable Ho +\u1207;Ethiopic Syllable Hoa +\u1208;Ethiopic Syllable La +\u1209;Ethiopic Syllable Lu +\u120A;Ethiopic Syllable Li +\u120B;Ethiopic Syllable Laa +\u120C;Ethiopic Syllable Lee +\u120D;Ethiopic Syllable Le +\u120E;Ethiopic Syllable Lo +\u120F;Ethiopic Syllable Lwa +\u1210;Ethiopic Syllable Hha +\u1211;Ethiopic Syllable Hhu +\u1212;Ethiopic Syllable Hhi +\u1213;Ethiopic Syllable Hhaa +\u1214;Ethiopic Syllable Hhee +\u1215;Ethiopic Syllable Hhe +\u1216;Ethiopic Syllable Hho +\u1217;Ethiopic Syllable Hhwa +\u1218;Ethiopic Syllable Ma +\u1219;Ethiopic Syllable Mu +\u121A;Ethiopic Syllable Mi +\u121B;Ethiopic Syllable Maa +\u121C;Ethiopic Syllable Mee +\u121D;Ethiopic Syllable Me +\u121E;Ethiopic Syllable Mo +\u121F;Ethiopic Syllable Mwa +\u1220;Ethiopic Syllable Sza +\u1221;Ethiopic Syllable Szu +\u1222;Ethiopic Syllable Szi +\u1223;Ethiopic Syllable Szaa +\u1224;Ethiopic Syllable Szee +\u1225;Ethiopic Syllable Sze +\u1226;Ethiopic Syllable Szo +\u1227;Ethiopic Syllable Szwa +\u1228;Ethiopic Syllable Ra +\u1229;Ethiopic Syllable Ru +\u122A;Ethiopic Syllable Ri +\u122B;Ethiopic Syllable Raa +\u122C;Ethiopic Syllable Ree +\u122D;Ethiopic Syllable Re +\u122E;Ethiopic Syllable Ro +\u122F;Ethiopic Syllable Rwa +\u1230;Ethiopic Syllable Sa +\u1231;Ethiopic Syllable Su +\u1232;Ethiopic Syllable Si +\u1233;Ethiopic Syllable Saa +\u1234;Ethiopic Syllable See +\u1235;Ethiopic Syllable Se +\u1236;Ethiopic Syllable So +\u1237;Ethiopic Syllable Swa +\u1238;Ethiopic Syllable Sha +\u1239;Ethiopic Syllable Shu +\u123A;Ethiopic Syllable Shi +\u123B;Ethiopic Syllable Shaa +\u123C;Ethiopic Syllable Shee +\u123D;Ethiopic Syllable She +\u123E;Ethiopic Syllable Sho +\u123F;Ethiopic Syllable Shwa +\u1240;Ethiopic Syllable Qa +\u1241;Ethiopic Syllable Qu +\u1242;Ethiopic Syllable Qi +\u1243;Ethiopic Syllable Qaa +\u1244;Ethiopic Syllable Qee +\u1245;Ethiopic Syllable Qe +\u1246;Ethiopic Syllable Qo +\u1247;Ethiopic Syllable Qoa +\u1248;Ethiopic Syllable Qwa +\u124A;Ethiopic Syllable Qwi +\u124B;Ethiopic Syllable Qwaa +\u124C;Ethiopic Syllable Qwee +\u124D;Ethiopic Syllable Qwe +\u1250;Ethiopic Syllable Qha +\u1251;Ethiopic Syllable Qhu +\u1252;Ethiopic Syllable Qhi +\u1253;Ethiopic Syllable Qhaa +\u1254;Ethiopic Syllable Qhee +\u1255;Ethiopic Syllable Qhe +\u1256;Ethiopic Syllable Qho +\u1258;Ethiopic Syllable Qhwa +\u125A;Ethiopic Syllable Qhwi +\u125B;Ethiopic Syllable Qhwaa +\u125C;Ethiopic Syllable Qhwee +\u125D;Ethiopic Syllable Qhwe +\u1260;Ethiopic Syllable Ba +\u1261;Ethiopic Syllable Bu +\u1262;Ethiopic Syllable Bi +\u1263;Ethiopic Syllable Baa +\u1264;Ethiopic Syllable Bee +\u1265;Ethiopic Syllable Be +\u1266;Ethiopic Syllable Bo +\u1267;Ethiopic Syllable Bwa +\u1268;Ethiopic Syllable Va +\u1269;Ethiopic Syllable Vu +\u126A;Ethiopic Syllable Vi +\u126B;Ethiopic Syllable Vaa +\u126C;Ethiopic Syllable Vee +\u126D;Ethiopic Syllable Ve +\u126E;Ethiopic Syllable Vo +\u126F;Ethiopic Syllable Vwa +\u1270;Ethiopic Syllable Ta +\u1271;Ethiopic Syllable Tu +\u1272;Ethiopic Syllable Ti +\u1273;Ethiopic Syllable Taa +\u1274;Ethiopic Syllable Tee +\u1275;Ethiopic Syllable Te +\u1276;Ethiopic Syllable To +\u1277;Ethiopic Syllable Twa +\u1278;Ethiopic Syllable Ca +\u1279;Ethiopic Syllable Cu +\u127A;Ethiopic Syllable Ci +\u127B;Ethiopic Syllable Caa +\u127C;Ethiopic Syllable Cee +\u127D;Ethiopic Syllable Ce +\u127E;Ethiopic Syllable Co +\u127F;Ethiopic Syllable Cwa +\u1280;Ethiopic Syllable Xa +\u1281;Ethiopic Syllable Xu +\u1282;Ethiopic Syllable Xi +\u1283;Ethiopic Syllable Xaa +\u1284;Ethiopic Syllable Xee +\u1285;Ethiopic Syllable Xe +\u1286;Ethiopic Syllable Xo +\u1287;Ethiopic Syllable Xoa +\u1288;Ethiopic Syllable Xwa +\u128A;Ethiopic Syllable Xwi +\u128B;Ethiopic Syllable Xwaa +\u128C;Ethiopic Syllable Xwee +\u128D;Ethiopic Syllable Xwe +\u1290;Ethiopic Syllable Na +\u1291;Ethiopic Syllable Nu +\u1292;Ethiopic Syllable Ni +\u1293;Ethiopic Syllable Naa +\u1294;Ethiopic Syllable Nee +\u1295;Ethiopic Syllable Ne +\u1296;Ethiopic Syllable No +\u1297;Ethiopic Syllable Nwa +\u1298;Ethiopic Syllable Nya +\u1299;Ethiopic Syllable Nyu +\u129A;Ethiopic Syllable Nyi +\u129B;Ethiopic Syllable Nyaa +\u129C;Ethiopic Syllable Nyee +\u129D;Ethiopic Syllable Nye +\u129E;Ethiopic Syllable Nyo +\u129F;Ethiopic Syllable Nywa +\u12A0;Ethiopic Syllable Glottal A +\u12A1;Ethiopic Syllable Glottal U +\u12A2;Ethiopic Syllable Glottal I +\u12A3;Ethiopic Syllable Glottal Aa +\u12A4;Ethiopic Syllable Glottal Ee +\u12A5;Ethiopic Syllable Glottal E +\u12A6;Ethiopic Syllable Glottal O +\u12A7;Ethiopic Syllable Glottal Wa +\u12A8;Ethiopic Syllable Ka +\u12A9;Ethiopic Syllable Ku +\u12AA;Ethiopic Syllable Ki +\u12AB;Ethiopic Syllable Kaa +\u12AC;Ethiopic Syllable Kee +\u12AD;Ethiopic Syllable Ke +\u12AE;Ethiopic Syllable Ko +\u12AF;Ethiopic Syllable Koa +\u12B0;Ethiopic Syllable Kwa +\u12B2;Ethiopic Syllable Kwi +\u12B3;Ethiopic Syllable Kwaa +\u12B4;Ethiopic Syllable Kwee +\u12B5;Ethiopic Syllable Kwe +\u12B8;Ethiopic Syllable Kxa +\u12B9;Ethiopic Syllable Kxu +\u12BA;Ethiopic Syllable Kxi +\u12BB;Ethiopic Syllable Kxaa +\u12BC;Ethiopic Syllable Kxee +\u12BD;Ethiopic Syllable Kxe +\u12BE;Ethiopic Syllable Kxo +\u12C0;Ethiopic Syllable Kxwa +\u12C2;Ethiopic Syllable Kxwi +\u12C3;Ethiopic Syllable Kxwaa +\u12C4;Ethiopic Syllable Kxwee +\u12C5;Ethiopic Syllable Kxwe +\u12C8;Ethiopic Syllable Wa +\u12C9;Ethiopic Syllable Wu +\u12CA;Ethiopic Syllable Wi +\u12CB;Ethiopic Syllable Waa +\u12CC;Ethiopic Syllable Wee +\u12CD;Ethiopic Syllable We +\u12CE;Ethiopic Syllable Wo +\u12CF;Ethiopic Syllable Woa +\u12D0;Ethiopic Syllable Pharyngeal A +\u12D1;Ethiopic Syllable Pharyngeal U +\u12D2;Ethiopic Syllable Pharyngeal I +\u12D3;Ethiopic Syllable Pharyngeal Aa +\u12D4;Ethiopic Syllable Pharyngeal Ee +\u12D5;Ethiopic Syllable Pharyngeal E +\u12D6;Ethiopic Syllable Pharyngeal O +\u12D8;Ethiopic Syllable Za +\u12D9;Ethiopic Syllable Zu +\u12DA;Ethiopic Syllable Zi +\u12DB;Ethiopic Syllable Zaa +\u12DC;Ethiopic Syllable Zee +\u12DD;Ethiopic Syllable Ze +\u12DE;Ethiopic Syllable Zo +\u12DF;Ethiopic Syllable Zwa +\u12E0;Ethiopic Syllable Zha +\u12E1;Ethiopic Syllable Zhu +\u12E2;Ethiopic Syllable Zhi +\u12E3;Ethiopic Syllable Zhaa +\u12E4;Ethiopic Syllable Zhee +\u12E5;Ethiopic Syllable Zhe +\u12E6;Ethiopic Syllable Zho +\u12E7;Ethiopic Syllable Zhwa +\u12E8;Ethiopic Syllable Ya +\u12E9;Ethiopic Syllable Yu +\u12EA;Ethiopic Syllable Yi +\u12EB;Ethiopic Syllable Yaa +\u12EC;Ethiopic Syllable Yee +\u12ED;Ethiopic Syllable Ye +\u12EE;Ethiopic Syllable Yo +\u12EF;Ethiopic Syllable Yoa +\u12F0;Ethiopic Syllable Da +\u12F1;Ethiopic Syllable Du +\u12F2;Ethiopic Syllable Di +\u12F3;Ethiopic Syllable Daa +\u12F4;Ethiopic Syllable Dee +\u12F5;Ethiopic Syllable De +\u12F6;Ethiopic Syllable Do +\u12F7;Ethiopic Syllable Dwa +\u12F8;Ethiopic Syllable Dda +\u12F9;Ethiopic Syllable Ddu +\u12FA;Ethiopic Syllable Ddi +\u12FB;Ethiopic Syllable Ddaa +\u12FC;Ethiopic Syllable Ddee +\u12FD;Ethiopic Syllable Dde +\u12FE;Ethiopic Syllable Ddo +\u12FF;Ethiopic Syllable Ddwa +\u1300;Ethiopic Syllable Ja +\u1301;Ethiopic Syllable Ju +\u1302;Ethiopic Syllable Ji +\u1303;Ethiopic Syllable Jaa +\u1304;Ethiopic Syllable Jee +\u1305;Ethiopic Syllable Je +\u1306;Ethiopic Syllable Jo +\u1307;Ethiopic Syllable Jwa +\u1308;Ethiopic Syllable Ga +\u1309;Ethiopic Syllable Gu +\u130A;Ethiopic Syllable Gi +\u130B;Ethiopic Syllable Gaa +\u130C;Ethiopic Syllable Gee +\u130D;Ethiopic Syllable Ge +\u130E;Ethiopic Syllable Go +\u130F;Ethiopic Syllable Goa +\u1310;Ethiopic Syllable Gwa +\u1312;Ethiopic Syllable Gwi +\u1313;Ethiopic Syllable Gwaa +\u1314;Ethiopic Syllable Gwee +\u1315;Ethiopic Syllable Gwe +\u1318;Ethiopic Syllable Gga +\u1319;Ethiopic Syllable Ggu +\u131A;Ethiopic Syllable Ggi +\u131B;Ethiopic Syllable Ggaa +\u131C;Ethiopic Syllable Ggee +\u131D;Ethiopic Syllable Gge +\u131E;Ethiopic Syllable Ggo +\u131F;Ethiopic Syllable Ggwaa +\u1320;Ethiopic Syllable Tha +\u1321;Ethiopic Syllable Thu +\u1322;Ethiopic Syllable Thi +\u1323;Ethiopic Syllable Thaa +\u1324;Ethiopic Syllable Thee +\u1325;Ethiopic Syllable The +\u1326;Ethiopic Syllable Tho +\u1327;Ethiopic Syllable Thwa +\u1328;Ethiopic Syllable Cha +\u1329;Ethiopic Syllable Chu +\u132A;Ethiopic Syllable Chi +\u132B;Ethiopic Syllable Chaa +\u132C;Ethiopic Syllable Chee +\u132D;Ethiopic Syllable Che +\u132E;Ethiopic Syllable Cho +\u132F;Ethiopic Syllable Chwa +\u1330;Ethiopic Syllable Pha +\u1331;Ethiopic Syllable Phu +\u1332;Ethiopic Syllable Phi +\u1333;Ethiopic Syllable Phaa +\u1334;Ethiopic Syllable Phee +\u1335;Ethiopic Syllable Phe +\u1336;Ethiopic Syllable Pho +\u1337;Ethiopic Syllable Phwa +\u1338;Ethiopic Syllable Tsa +\u1339;Ethiopic Syllable Tsu +\u133A;Ethiopic Syllable Tsi +\u133B;Ethiopic Syllable Tsaa +\u133C;Ethiopic Syllable Tsee +\u133D;Ethiopic Syllable Tse +\u133E;Ethiopic Syllable Tso +\u133F;Ethiopic Syllable Tswa +\u1340;Ethiopic Syllable Tza +\u1341;Ethiopic Syllable Tzu +\u1342;Ethiopic Syllable Tzi +\u1343;Ethiopic Syllable Tzaa +\u1344;Ethiopic Syllable Tzee +\u1345;Ethiopic Syllable Tze +\u1346;Ethiopic Syllable Tzo +\u1347;Ethiopic Syllable Tzoa +\u1348;Ethiopic Syllable Fa +\u1349;Ethiopic Syllable Fu +\u134A;Ethiopic Syllable Fi +\u134B;Ethiopic Syllable Faa +\u134C;Ethiopic Syllable Fee +\u134D;Ethiopic Syllable Fe +\u134E;Ethiopic Syllable Fo +\u134F;Ethiopic Syllable Fwa +\u1350;Ethiopic Syllable Pa +\u1351;Ethiopic Syllable Pu +\u1352;Ethiopic Syllable Pi +\u1353;Ethiopic Syllable Paa +\u1354;Ethiopic Syllable Pee +\u1355;Ethiopic Syllable Pe +\u1356;Ethiopic Syllable Po +\u1357;Ethiopic Syllable Pwa +\u1358;Ethiopic Syllable Rya +\u1359;Ethiopic Syllable Mya +\u135A;Ethiopic Syllable Fya +\u135D;Ethiopic Combining Gemination And Vowel Length Mark +\u135E;Ethiopic Combining Vowel Length Mark +\u135F;Ethiopic Combining Gemination Mark +\u1360;Ethiopic Section Mark +\u1361;Ethiopic Wordspace +\u1362;Ethiopic Full Stop +\u1363;Ethiopic Comma +\u1364;Ethiopic Semicolon +\u1365;Ethiopic Colon +\u1366;Ethiopic Preface Colon +\u1367;Ethiopic Question Mark +\u1368;Ethiopic Paragraph Separator +\u1369;Ethiopic Digit One +\u136A;Ethiopic Digit Two +\u136B;Ethiopic Digit Three +\u136C;Ethiopic Digit Four +\u136D;Ethiopic Digit Five +\u136E;Ethiopic Digit Six +\u136F;Ethiopic Digit Seven +\u1370;Ethiopic Digit Eight +\u1371;Ethiopic Digit Nine +\u1372;Ethiopic Number Ten +\u1373;Ethiopic Number Twenty +\u1374;Ethiopic Number Thirty +\u1375;Ethiopic Number Forty +\u1376;Ethiopic Number Fifty +\u1377;Ethiopic Number Sixty +\u1378;Ethiopic Number Seventy +\u1379;Ethiopic Number Eighty +\u137A;Ethiopic Number Ninety +\u137B;Ethiopic Number Hundred +\u137C;Ethiopic Number Ten Thousand +\u1380;Ethiopic Syllable Sebatbeit Mwa +\u1381;Ethiopic Syllable Mwi +\u1382;Ethiopic Syllable Mwee +\u1383;Ethiopic Syllable Mwe +\u1384;Ethiopic Syllable Sebatbeit Bwa +\u1385;Ethiopic Syllable Bwi +\u1386;Ethiopic Syllable Bwee +\u1387;Ethiopic Syllable Bwe +\u1388;Ethiopic Syllable Sebatbeit Fwa +\u1389;Ethiopic Syllable Fwi +\u138A;Ethiopic Syllable Fwee +\u138B;Ethiopic Syllable Fwe +\u138C;Ethiopic Syllable Sebatbeit Pwa +\u138D;Ethiopic Syllable Pwi +\u138E;Ethiopic Syllable Pwee +\u138F;Ethiopic Syllable Pwe +\u1390;Ethiopic Tonal Mark Yizet +\u1391;Ethiopic Tonal Mark Deret +\u1392;Ethiopic Tonal Mark Rikrik +\u1393;Ethiopic Tonal Mark Short Rikrik +\u1394;Ethiopic Tonal Mark Difat +\u1395;Ethiopic Tonal Mark Kenat +\u1396;Ethiopic Tonal Mark Chiret +\u1397;Ethiopic Tonal Mark Hidet +\u1398;Ethiopic Tonal Mark Deret-Hidet +\u1399;Ethiopic Tonal Mark Kurt +\u13A0;Cherokee Letter A +\u13A1;Cherokee Letter E +\u13A2;Cherokee Letter I +\u13A3;Cherokee Letter O +\u13A4;Cherokee Letter U +\u13A5;Cherokee Letter V +\u13A6;Cherokee Letter Ga +\u13A7;Cherokee Letter Ka +\u13A8;Cherokee Letter Ge +\u13A9;Cherokee Letter Gi +\u13AA;Cherokee Letter Go +\u13AB;Cherokee Letter Gu +\u13AC;Cherokee Letter Gv +\u13AD;Cherokee Letter Ha +\u13AE;Cherokee Letter He +\u13AF;Cherokee Letter Hi +\u13B0;Cherokee Letter Ho +\u13B1;Cherokee Letter Hu +\u13B2;Cherokee Letter Hv +\u13B3;Cherokee Letter La +\u13B4;Cherokee Letter Le +\u13B5;Cherokee Letter Li +\u13B6;Cherokee Letter Lo +\u13B7;Cherokee Letter Lu +\u13B8;Cherokee Letter Lv +\u13B9;Cherokee Letter Ma +\u13BA;Cherokee Letter Me +\u13BB;Cherokee Letter Mi +\u13BC;Cherokee Letter Mo +\u13BD;Cherokee Letter Mu +\u13BE;Cherokee Letter Na +\u13BF;Cherokee Letter Hna +\u13C0;Cherokee Letter Nah +\u13C1;Cherokee Letter Ne +\u13C2;Cherokee Letter Ni +\u13C3;Cherokee Letter No +\u13C4;Cherokee Letter Nu +\u13C5;Cherokee Letter Nv +\u13C6;Cherokee Letter Qua +\u13C7;Cherokee Letter Que +\u13C8;Cherokee Letter Qui +\u13C9;Cherokee Letter Quo +\u13CA;Cherokee Letter Quu +\u13CB;Cherokee Letter Quv +\u13CC;Cherokee Letter Sa +\u13CD;Cherokee Letter S +\u13CE;Cherokee Letter Se +\u13CF;Cherokee Letter Si +\u13D0;Cherokee Letter So +\u13D1;Cherokee Letter Su +\u13D2;Cherokee Letter Sv +\u13D3;Cherokee Letter Da +\u13D4;Cherokee Letter Ta +\u13D5;Cherokee Letter De +\u13D6;Cherokee Letter Te +\u13D7;Cherokee Letter Di +\u13D8;Cherokee Letter Ti +\u13D9;Cherokee Letter Do +\u13DA;Cherokee Letter Du +\u13DB;Cherokee Letter Dv +\u13DC;Cherokee Letter Dla +\u13DD;Cherokee Letter Tla +\u13DE;Cherokee Letter Tle +\u13DF;Cherokee Letter Tli +\u13E0;Cherokee Letter Tlo +\u13E1;Cherokee Letter Tlu +\u13E2;Cherokee Letter Tlv +\u13E3;Cherokee Letter Tsa +\u13E4;Cherokee Letter Tse +\u13E5;Cherokee Letter Tsi +\u13E6;Cherokee Letter Tso +\u13E7;Cherokee Letter Tsu +\u13E8;Cherokee Letter Tsv +\u13E9;Cherokee Letter Wa +\u13EA;Cherokee Letter We +\u13EB;Cherokee Letter Wi +\u13EC;Cherokee Letter Wo +\u13ED;Cherokee Letter Wu +\u13EE;Cherokee Letter Wv +\u13EF;Cherokee Letter Ya +\u13F0;Cherokee Letter Ye +\u13F1;Cherokee Letter Yi +\u13F2;Cherokee Letter Yo +\u13F3;Cherokee Letter Yu +\u13F4;Cherokee Letter Yv +\u13F5;Cherokee Letter Mv +\u13F8;Cherokee Small Letter Ye +\u13F9;Cherokee Small Letter Yi +\u13FA;Cherokee Small Letter Yo +\u13FB;Cherokee Small Letter Yu +\u13FC;Cherokee Small Letter Yv +\u13FD;Cherokee Small Letter Mv +\u1400;Canadian Syllabics Hyphen +\u1401;Canadian Syllabics E +\u1402;Canadian Syllabics Aai +\u1403;Canadian Syllabics I +\u1404;Canadian Syllabics Ii +\u1405;Canadian Syllabics O +\u1406;Canadian Syllabics Oo +\u1407;Canadian Syllabics Y-Cree Oo +\u1408;Canadian Syllabics Carrier Ee +\u1409;Canadian Syllabics Carrier I +\u140A;Canadian Syllabics A +\u140B;Canadian Syllabics Aa +\u140C;Canadian Syllabics We +\u140D;Canadian Syllabics West-Cree We +\u140E;Canadian Syllabics Wi +\u140F;Canadian Syllabics West-Cree Wi +\u1410;Canadian Syllabics Wii +\u1411;Canadian Syllabics West-Cree Wii +\u1412;Canadian Syllabics Wo +\u1413;Canadian Syllabics West-Cree Wo +\u1414;Canadian Syllabics Woo +\u1415;Canadian Syllabics West-Cree Woo +\u1416;Canadian Syllabics Naskapi Woo +\u1417;Canadian Syllabics Wa +\u1418;Canadian Syllabics West-Cree Wa +\u1419;Canadian Syllabics Waa +\u141A;Canadian Syllabics West-Cree Waa +\u141B;Canadian Syllabics Naskapi Waa +\u141C;Canadian Syllabics Ai +\u141D;Canadian Syllabics Y-Cree W +\u141E;Canadian Syllabics Glottal Stop +\u141F;Canadian Syllabics Final Acute +\u1420;Canadian Syllabics Final Grave +\u1421;Canadian Syllabics Final Bottom Half Ring +\u1422;Canadian Syllabics Final Top Half Ring +\u1423;Canadian Syllabics Final Right Half Ring +\u1424;Canadian Syllabics Final Ring +\u1425;Canadian Syllabics Final Double Acute +\u1426;Canadian Syllabics Final Double Short Vertical Strokes +\u1427;Canadian Syllabics Final Middle Dot +\u1428;Canadian Syllabics Final Short Horizontal Stroke +\u1429;Canadian Syllabics Final Plus +\u142A;Canadian Syllabics Final Down Tack +\u142B;Canadian Syllabics En +\u142C;Canadian Syllabics In +\u142D;Canadian Syllabics On +\u142E;Canadian Syllabics An +\u142F;Canadian Syllabics Pe +\u1430;Canadian Syllabics Paai +\u1431;Canadian Syllabics Pi +\u1432;Canadian Syllabics Pii +\u1433;Canadian Syllabics Po +\u1434;Canadian Syllabics Poo +\u1435;Canadian Syllabics Y-Cree Poo +\u1436;Canadian Syllabics Carrier Hee +\u1437;Canadian Syllabics Carrier Hi +\u1438;Canadian Syllabics Pa +\u1439;Canadian Syllabics Paa +\u143A;Canadian Syllabics Pwe +\u143B;Canadian Syllabics West-Cree Pwe +\u143C;Canadian Syllabics Pwi +\u143D;Canadian Syllabics West-Cree Pwi +\u143E;Canadian Syllabics Pwii +\u143F;Canadian Syllabics West-Cree Pwii +\u1440;Canadian Syllabics Pwo +\u1441;Canadian Syllabics West-Cree Pwo +\u1442;Canadian Syllabics Pwoo +\u1443;Canadian Syllabics West-Cree Pwoo +\u1444;Canadian Syllabics Pwa +\u1445;Canadian Syllabics West-Cree Pwa +\u1446;Canadian Syllabics Pwaa +\u1447;Canadian Syllabics West-Cree Pwaa +\u1448;Canadian Syllabics Y-Cree Pwaa +\u1449;Canadian Syllabics P +\u144A;Canadian Syllabics West-Cree P +\u144B;Canadian Syllabics Carrier H +\u144C;Canadian Syllabics Te +\u144D;Canadian Syllabics Taai +\u144E;Canadian Syllabics Ti +\u144F;Canadian Syllabics Tii +\u1450;Canadian Syllabics To +\u1451;Canadian Syllabics Too +\u1452;Canadian Syllabics Y-Cree Too +\u1453;Canadian Syllabics Carrier Dee +\u1454;Canadian Syllabics Carrier Di +\u1455;Canadian Syllabics Ta +\u1456;Canadian Syllabics Taa +\u1457;Canadian Syllabics Twe +\u1458;Canadian Syllabics West-Cree Twe +\u1459;Canadian Syllabics Twi +\u145A;Canadian Syllabics West-Cree Twi +\u145B;Canadian Syllabics Twii +\u145C;Canadian Syllabics West-Cree Twii +\u145D;Canadian Syllabics Two +\u145E;Canadian Syllabics West-Cree Two +\u145F;Canadian Syllabics Twoo +\u1460;Canadian Syllabics West-Cree Twoo +\u1461;Canadian Syllabics Twa +\u1462;Canadian Syllabics West-Cree Twa +\u1463;Canadian Syllabics Twaa +\u1464;Canadian Syllabics West-Cree Twaa +\u1465;Canadian Syllabics Naskapi Twaa +\u1466;Canadian Syllabics T +\u1467;Canadian Syllabics Tte +\u1468;Canadian Syllabics Tti +\u1469;Canadian Syllabics Tto +\u146A;Canadian Syllabics Tta +\u146B;Canadian Syllabics Ke +\u146C;Canadian Syllabics Kaai +\u146D;Canadian Syllabics Ki +\u146E;Canadian Syllabics Kii +\u146F;Canadian Syllabics Ko +\u1470;Canadian Syllabics Koo +\u1471;Canadian Syllabics Y-Cree Koo +\u1472;Canadian Syllabics Ka +\u1473;Canadian Syllabics Kaa +\u1474;Canadian Syllabics Kwe +\u1475;Canadian Syllabics West-Cree Kwe +\u1476;Canadian Syllabics Kwi +\u1477;Canadian Syllabics West-Cree Kwi +\u1478;Canadian Syllabics Kwii +\u1479;Canadian Syllabics West-Cree Kwii +\u147A;Canadian Syllabics Kwo +\u147B;Canadian Syllabics West-Cree Kwo +\u147C;Canadian Syllabics Kwoo +\u147D;Canadian Syllabics West-Cree Kwoo +\u147E;Canadian Syllabics Kwa +\u147F;Canadian Syllabics West-Cree Kwa +\u1480;Canadian Syllabics Kwaa +\u1481;Canadian Syllabics West-Cree Kwaa +\u1482;Canadian Syllabics Naskapi Kwaa +\u1483;Canadian Syllabics K +\u1484;Canadian Syllabics Kw +\u1485;Canadian Syllabics South-Slavey Keh +\u1486;Canadian Syllabics South-Slavey Kih +\u1487;Canadian Syllabics South-Slavey Koh +\u1488;Canadian Syllabics South-Slavey Kah +\u1489;Canadian Syllabics Ce +\u148A;Canadian Syllabics Caai +\u148B;Canadian Syllabics Ci +\u148C;Canadian Syllabics Cii +\u148D;Canadian Syllabics Co +\u148E;Canadian Syllabics Coo +\u148F;Canadian Syllabics Y-Cree Coo +\u1490;Canadian Syllabics Ca +\u1491;Canadian Syllabics Caa +\u1492;Canadian Syllabics Cwe +\u1493;Canadian Syllabics West-Cree Cwe +\u1494;Canadian Syllabics Cwi +\u1495;Canadian Syllabics West-Cree Cwi +\u1496;Canadian Syllabics Cwii +\u1497;Canadian Syllabics West-Cree Cwii +\u1498;Canadian Syllabics Cwo +\u1499;Canadian Syllabics West-Cree Cwo +\u149A;Canadian Syllabics Cwoo +\u149B;Canadian Syllabics West-Cree Cwoo +\u149C;Canadian Syllabics Cwa +\u149D;Canadian Syllabics West-Cree Cwa +\u149E;Canadian Syllabics Cwaa +\u149F;Canadian Syllabics West-Cree Cwaa +\u14A0;Canadian Syllabics Naskapi Cwaa +\u14A1;Canadian Syllabics C +\u14A2;Canadian Syllabics Sayisi Th +\u14A3;Canadian Syllabics Me +\u14A4;Canadian Syllabics Maai +\u14A5;Canadian Syllabics Mi +\u14A6;Canadian Syllabics Mii +\u14A7;Canadian Syllabics Mo +\u14A8;Canadian Syllabics Moo +\u14A9;Canadian Syllabics Y-Cree Moo +\u14AA;Canadian Syllabics Ma +\u14AB;Canadian Syllabics Maa +\u14AC;Canadian Syllabics Mwe +\u14AD;Canadian Syllabics West-Cree Mwe +\u14AE;Canadian Syllabics Mwi +\u14AF;Canadian Syllabics West-Cree Mwi +\u14B0;Canadian Syllabics Mwii +\u14B1;Canadian Syllabics West-Cree Mwii +\u14B2;Canadian Syllabics Mwo +\u14B3;Canadian Syllabics West-Cree Mwo +\u14B4;Canadian Syllabics Mwoo +\u14B5;Canadian Syllabics West-Cree Mwoo +\u14B6;Canadian Syllabics Mwa +\u14B7;Canadian Syllabics West-Cree Mwa +\u14B8;Canadian Syllabics Mwaa +\u14B9;Canadian Syllabics West-Cree Mwaa +\u14BA;Canadian Syllabics Naskapi Mwaa +\u14BB;Canadian Syllabics M +\u14BC;Canadian Syllabics West-Cree M +\u14BD;Canadian Syllabics Mh +\u14BE;Canadian Syllabics Athapascan M +\u14BF;Canadian Syllabics Sayisi M +\u14C0;Canadian Syllabics Ne +\u14C1;Canadian Syllabics Naai +\u14C2;Canadian Syllabics Ni +\u14C3;Canadian Syllabics Nii +\u14C4;Canadian Syllabics No +\u14C5;Canadian Syllabics Noo +\u14C6;Canadian Syllabics Y-Cree Noo +\u14C7;Canadian Syllabics Na +\u14C8;Canadian Syllabics Naa +\u14C9;Canadian Syllabics Nwe +\u14CA;Canadian Syllabics West-Cree Nwe +\u14CB;Canadian Syllabics Nwa +\u14CC;Canadian Syllabics West-Cree Nwa +\u14CD;Canadian Syllabics Nwaa +\u14CE;Canadian Syllabics West-Cree Nwaa +\u14CF;Canadian Syllabics Naskapi Nwaa +\u14D0;Canadian Syllabics N +\u14D1;Canadian Syllabics Carrier Ng +\u14D2;Canadian Syllabics Nh +\u14D3;Canadian Syllabics Le +\u14D4;Canadian Syllabics Laai +\u14D5;Canadian Syllabics Li +\u14D6;Canadian Syllabics Lii +\u14D7;Canadian Syllabics Lo +\u14D8;Canadian Syllabics Loo +\u14D9;Canadian Syllabics Y-Cree Loo +\u14DA;Canadian Syllabics La +\u14DB;Canadian Syllabics Laa +\u14DC;Canadian Syllabics Lwe +\u14DD;Canadian Syllabics West-Cree Lwe +\u14DE;Canadian Syllabics Lwi +\u14DF;Canadian Syllabics West-Cree Lwi +\u14E0;Canadian Syllabics Lwii +\u14E1;Canadian Syllabics West-Cree Lwii +\u14E2;Canadian Syllabics Lwo +\u14E3;Canadian Syllabics West-Cree Lwo +\u14E4;Canadian Syllabics Lwoo +\u14E5;Canadian Syllabics West-Cree Lwoo +\u14E6;Canadian Syllabics Lwa +\u14E7;Canadian Syllabics West-Cree Lwa +\u14E8;Canadian Syllabics Lwaa +\u14E9;Canadian Syllabics West-Cree Lwaa +\u14EA;Canadian Syllabics L +\u14EB;Canadian Syllabics West-Cree L +\u14EC;Canadian Syllabics Medial L +\u14ED;Canadian Syllabics Se +\u14EE;Canadian Syllabics Saai +\u14EF;Canadian Syllabics Si +\u14F0;Canadian Syllabics Sii +\u14F1;Canadian Syllabics So +\u14F2;Canadian Syllabics Soo +\u14F3;Canadian Syllabics Y-Cree Soo +\u14F4;Canadian Syllabics Sa +\u14F5;Canadian Syllabics Saa +\u14F6;Canadian Syllabics Swe +\u14F7;Canadian Syllabics West-Cree Swe +\u14F8;Canadian Syllabics Swi +\u14F9;Canadian Syllabics West-Cree Swi +\u14FA;Canadian Syllabics Swii +\u14FB;Canadian Syllabics West-Cree Swii +\u14FC;Canadian Syllabics Swo +\u14FD;Canadian Syllabics West-Cree Swo +\u14FE;Canadian Syllabics Swoo +\u14FF;Canadian Syllabics West-Cree Swoo +\u1500;Canadian Syllabics Swa +\u1501;Canadian Syllabics West-Cree Swa +\u1502;Canadian Syllabics Swaa +\u1503;Canadian Syllabics West-Cree Swaa +\u1504;Canadian Syllabics Naskapi Swaa +\u1505;Canadian Syllabics S +\u1506;Canadian Syllabics Athapascan S +\u1507;Canadian Syllabics Sw +\u1508;Canadian Syllabics Blackfoot S +\u1509;Canadian Syllabics Moose-Cree Sk +\u150A;Canadian Syllabics Naskapi Skw +\u150B;Canadian Syllabics Naskapi S-W +\u150C;Canadian Syllabics Naskapi Spwa +\u150D;Canadian Syllabics Naskapi Stwa +\u150E;Canadian Syllabics Naskapi Skwa +\u150F;Canadian Syllabics Naskapi Scwa +\u1510;Canadian Syllabics She +\u1511;Canadian Syllabics Shi +\u1512;Canadian Syllabics Shii +\u1513;Canadian Syllabics Sho +\u1514;Canadian Syllabics Shoo +\u1515;Canadian Syllabics Sha +\u1516;Canadian Syllabics Shaa +\u1517;Canadian Syllabics Shwe +\u1518;Canadian Syllabics West-Cree Shwe +\u1519;Canadian Syllabics Shwi +\u151A;Canadian Syllabics West-Cree Shwi +\u151B;Canadian Syllabics Shwii +\u151C;Canadian Syllabics West-Cree Shwii +\u151D;Canadian Syllabics Shwo +\u151E;Canadian Syllabics West-Cree Shwo +\u151F;Canadian Syllabics Shwoo +\u1520;Canadian Syllabics West-Cree Shwoo +\u1521;Canadian Syllabics Shwa +\u1522;Canadian Syllabics West-Cree Shwa +\u1523;Canadian Syllabics Shwaa +\u1524;Canadian Syllabics West-Cree Shwaa +\u1525;Canadian Syllabics Sh +\u1526;Canadian Syllabics Ye +\u1527;Canadian Syllabics Yaai +\u1528;Canadian Syllabics Yi +\u1529;Canadian Syllabics Yii +\u152A;Canadian Syllabics Yo +\u152B;Canadian Syllabics Yoo +\u152C;Canadian Syllabics Y-Cree Yoo +\u152D;Canadian Syllabics Ya +\u152E;Canadian Syllabics Yaa +\u152F;Canadian Syllabics Ywe +\u1530;Canadian Syllabics West-Cree Ywe +\u1531;Canadian Syllabics Ywi +\u1532;Canadian Syllabics West-Cree Ywi +\u1533;Canadian Syllabics Ywii +\u1534;Canadian Syllabics West-Cree Ywii +\u1535;Canadian Syllabics Ywo +\u1536;Canadian Syllabics West-Cree Ywo +\u1537;Canadian Syllabics Ywoo +\u1538;Canadian Syllabics West-Cree Ywoo +\u1539;Canadian Syllabics Ywa +\u153A;Canadian Syllabics West-Cree Ywa +\u153B;Canadian Syllabics Ywaa +\u153C;Canadian Syllabics West-Cree Ywaa +\u153D;Canadian Syllabics Naskapi Ywaa +\u153E;Canadian Syllabics Y +\u153F;Canadian Syllabics Bible-Cree Y +\u1540;Canadian Syllabics West-Cree Y +\u1541;Canadian Syllabics Sayisi Yi +\u1542;Canadian Syllabics Re +\u1543;Canadian Syllabics R-Cree Re +\u1544;Canadian Syllabics West-Cree Le +\u1545;Canadian Syllabics Raai +\u1546;Canadian Syllabics Ri +\u1547;Canadian Syllabics Rii +\u1548;Canadian Syllabics Ro +\u1549;Canadian Syllabics Roo +\u154A;Canadian Syllabics West-Cree Lo +\u154B;Canadian Syllabics Ra +\u154C;Canadian Syllabics Raa +\u154D;Canadian Syllabics West-Cree La +\u154E;Canadian Syllabics Rwaa +\u154F;Canadian Syllabics West-Cree Rwaa +\u1550;Canadian Syllabics R +\u1551;Canadian Syllabics West-Cree R +\u1552;Canadian Syllabics Medial R +\u1553;Canadian Syllabics Fe +\u1554;Canadian Syllabics Faai +\u1555;Canadian Syllabics Fi +\u1556;Canadian Syllabics Fii +\u1557;Canadian Syllabics Fo +\u1558;Canadian Syllabics Foo +\u1559;Canadian Syllabics Fa +\u155A;Canadian Syllabics Faa +\u155B;Canadian Syllabics Fwaa +\u155C;Canadian Syllabics West-Cree Fwaa +\u155D;Canadian Syllabics F +\u155E;Canadian Syllabics The +\u155F;Canadian Syllabics N-Cree The +\u1560;Canadian Syllabics Thi +\u1561;Canadian Syllabics N-Cree Thi +\u1562;Canadian Syllabics Thii +\u1563;Canadian Syllabics N-Cree Thii +\u1564;Canadian Syllabics Tho +\u1565;Canadian Syllabics Thoo +\u1566;Canadian Syllabics Tha +\u1567;Canadian Syllabics Thaa +\u1568;Canadian Syllabics Thwaa +\u1569;Canadian Syllabics West-Cree Thwaa +\u156A;Canadian Syllabics Th +\u156B;Canadian Syllabics Tthe +\u156C;Canadian Syllabics Tthi +\u156D;Canadian Syllabics Ttho +\u156E;Canadian Syllabics Ttha +\u156F;Canadian Syllabics Tth +\u1570;Canadian Syllabics Tye +\u1571;Canadian Syllabics Tyi +\u1572;Canadian Syllabics Tyo +\u1573;Canadian Syllabics Tya +\u1574;Canadian Syllabics Nunavik He +\u1575;Canadian Syllabics Nunavik Hi +\u1576;Canadian Syllabics Nunavik Hii +\u1577;Canadian Syllabics Nunavik Ho +\u1578;Canadian Syllabics Nunavik Hoo +\u1579;Canadian Syllabics Nunavik Ha +\u157A;Canadian Syllabics Nunavik Haa +\u157B;Canadian Syllabics Nunavik H +\u157C;Canadian Syllabics Nunavut H +\u157D;Canadian Syllabics Hk +\u157E;Canadian Syllabics Qaai +\u157F;Canadian Syllabics Qi +\u1580;Canadian Syllabics Qii +\u1581;Canadian Syllabics Qo +\u1582;Canadian Syllabics Qoo +\u1583;Canadian Syllabics Qa +\u1584;Canadian Syllabics Qaa +\u1585;Canadian Syllabics Q +\u1586;Canadian Syllabics Tlhe +\u1587;Canadian Syllabics Tlhi +\u1588;Canadian Syllabics Tlho +\u1589;Canadian Syllabics Tlha +\u158A;Canadian Syllabics West-Cree Re +\u158B;Canadian Syllabics West-Cree Ri +\u158C;Canadian Syllabics West-Cree Ro +\u158D;Canadian Syllabics West-Cree Ra +\u158E;Canadian Syllabics Ngaai +\u158F;Canadian Syllabics Ngi +\u1590;Canadian Syllabics Ngii +\u1591;Canadian Syllabics Ngo +\u1592;Canadian Syllabics Ngoo +\u1593;Canadian Syllabics Nga +\u1594;Canadian Syllabics Ngaa +\u1595;Canadian Syllabics Ng +\u1596;Canadian Syllabics Nng +\u1597;Canadian Syllabics Sayisi She +\u1598;Canadian Syllabics Sayisi Shi +\u1599;Canadian Syllabics Sayisi Sho +\u159A;Canadian Syllabics Sayisi Sha +\u159B;Canadian Syllabics Woods-Cree The +\u159C;Canadian Syllabics Woods-Cree Thi +\u159D;Canadian Syllabics Woods-Cree Tho +\u159E;Canadian Syllabics Woods-Cree Tha +\u159F;Canadian Syllabics Woods-Cree Th +\u15A0;Canadian Syllabics Lhi +\u15A1;Canadian Syllabics Lhii +\u15A2;Canadian Syllabics Lho +\u15A3;Canadian Syllabics Lhoo +\u15A4;Canadian Syllabics Lha +\u15A5;Canadian Syllabics Lhaa +\u15A6;Canadian Syllabics Lh +\u15A7;Canadian Syllabics Th-Cree The +\u15A8;Canadian Syllabics Th-Cree Thi +\u15A9;Canadian Syllabics Th-Cree Thii +\u15AA;Canadian Syllabics Th-Cree Tho +\u15AB;Canadian Syllabics Th-Cree Thoo +\u15AC;Canadian Syllabics Th-Cree Tha +\u15AD;Canadian Syllabics Th-Cree Thaa +\u15AE;Canadian Syllabics Th-Cree Th +\u15AF;Canadian Syllabics Aivilik B +\u15B0;Canadian Syllabics Blackfoot E +\u15B1;Canadian Syllabics Blackfoot I +\u15B2;Canadian Syllabics Blackfoot O +\u15B3;Canadian Syllabics Blackfoot A +\u15B4;Canadian Syllabics Blackfoot We +\u15B5;Canadian Syllabics Blackfoot Wi +\u15B6;Canadian Syllabics Blackfoot Wo +\u15B7;Canadian Syllabics Blackfoot Wa +\u15B8;Canadian Syllabics Blackfoot Ne +\u15B9;Canadian Syllabics Blackfoot Ni +\u15BA;Canadian Syllabics Blackfoot No +\u15BB;Canadian Syllabics Blackfoot Na +\u15BC;Canadian Syllabics Blackfoot Ke +\u15BD;Canadian Syllabics Blackfoot Ki +\u15BE;Canadian Syllabics Blackfoot Ko +\u15BF;Canadian Syllabics Blackfoot Ka +\u15C0;Canadian Syllabics Sayisi He +\u15C1;Canadian Syllabics Sayisi Hi +\u15C2;Canadian Syllabics Sayisi Ho +\u15C3;Canadian Syllabics Sayisi Ha +\u15C4;Canadian Syllabics Carrier Ghu +\u15C5;Canadian Syllabics Carrier Gho +\u15C6;Canadian Syllabics Carrier Ghe +\u15C7;Canadian Syllabics Carrier Ghee +\u15C8;Canadian Syllabics Carrier Ghi +\u15C9;Canadian Syllabics Carrier Gha +\u15CA;Canadian Syllabics Carrier Ru +\u15CB;Canadian Syllabics Carrier Ro +\u15CC;Canadian Syllabics Carrier Re +\u15CD;Canadian Syllabics Carrier Ree +\u15CE;Canadian Syllabics Carrier Ri +\u15CF;Canadian Syllabics Carrier Ra +\u15D0;Canadian Syllabics Carrier Wu +\u15D1;Canadian Syllabics Carrier Wo +\u15D2;Canadian Syllabics Carrier We +\u15D3;Canadian Syllabics Carrier Wee +\u15D4;Canadian Syllabics Carrier Wi +\u15D5;Canadian Syllabics Carrier Wa +\u15D6;Canadian Syllabics Carrier Hwu +\u15D7;Canadian Syllabics Carrier Hwo +\u15D8;Canadian Syllabics Carrier Hwe +\u15D9;Canadian Syllabics Carrier Hwee +\u15DA;Canadian Syllabics Carrier Hwi +\u15DB;Canadian Syllabics Carrier Hwa +\u15DC;Canadian Syllabics Carrier Thu +\u15DD;Canadian Syllabics Carrier Tho +\u15DE;Canadian Syllabics Carrier The +\u15DF;Canadian Syllabics Carrier Thee +\u15E0;Canadian Syllabics Carrier Thi +\u15E1;Canadian Syllabics Carrier Tha +\u15E2;Canadian Syllabics Carrier Ttu +\u15E3;Canadian Syllabics Carrier Tto +\u15E4;Canadian Syllabics Carrier Tte +\u15E5;Canadian Syllabics Carrier Ttee +\u15E6;Canadian Syllabics Carrier Tti +\u15E7;Canadian Syllabics Carrier Tta +\u15E8;Canadian Syllabics Carrier Pu +\u15E9;Canadian Syllabics Carrier Po +\u15EA;Canadian Syllabics Carrier Pe +\u15EB;Canadian Syllabics Carrier Pee +\u15EC;Canadian Syllabics Carrier Pi +\u15ED;Canadian Syllabics Carrier Pa +\u15EE;Canadian Syllabics Carrier P +\u15EF;Canadian Syllabics Carrier Gu +\u15F0;Canadian Syllabics Carrier Go +\u15F1;Canadian Syllabics Carrier Ge +\u15F2;Canadian Syllabics Carrier Gee +\u15F3;Canadian Syllabics Carrier Gi +\u15F4;Canadian Syllabics Carrier Ga +\u15F5;Canadian Syllabics Carrier Khu +\u15F6;Canadian Syllabics Carrier Kho +\u15F7;Canadian Syllabics Carrier Khe +\u15F8;Canadian Syllabics Carrier Khee +\u15F9;Canadian Syllabics Carrier Khi +\u15FA;Canadian Syllabics Carrier Kha +\u15FB;Canadian Syllabics Carrier Kku +\u15FC;Canadian Syllabics Carrier Kko +\u15FD;Canadian Syllabics Carrier Kke +\u15FE;Canadian Syllabics Carrier Kkee +\u15FF;Canadian Syllabics Carrier Kki +\u1600;Canadian Syllabics Carrier Kka +\u1601;Canadian Syllabics Carrier Kk +\u1602;Canadian Syllabics Carrier Nu +\u1603;Canadian Syllabics Carrier No +\u1604;Canadian Syllabics Carrier Ne +\u1605;Canadian Syllabics Carrier Nee +\u1606;Canadian Syllabics Carrier Ni +\u1607;Canadian Syllabics Carrier Na +\u1608;Canadian Syllabics Carrier Mu +\u1609;Canadian Syllabics Carrier Mo +\u160A;Canadian Syllabics Carrier Me +\u160B;Canadian Syllabics Carrier Mee +\u160C;Canadian Syllabics Carrier Mi +\u160D;Canadian Syllabics Carrier Ma +\u160E;Canadian Syllabics Carrier Yu +\u160F;Canadian Syllabics Carrier Yo +\u1610;Canadian Syllabics Carrier Ye +\u1611;Canadian Syllabics Carrier Yee +\u1612;Canadian Syllabics Carrier Yi +\u1613;Canadian Syllabics Carrier Ya +\u1614;Canadian Syllabics Carrier Ju +\u1615;Canadian Syllabics Sayisi Ju +\u1616;Canadian Syllabics Carrier Jo +\u1617;Canadian Syllabics Carrier Je +\u1618;Canadian Syllabics Carrier Jee +\u1619;Canadian Syllabics Carrier Ji +\u161A;Canadian Syllabics Sayisi Ji +\u161B;Canadian Syllabics Carrier Ja +\u161C;Canadian Syllabics Carrier Jju +\u161D;Canadian Syllabics Carrier Jjo +\u161E;Canadian Syllabics Carrier Jje +\u161F;Canadian Syllabics Carrier Jjee +\u1620;Canadian Syllabics Carrier Jji +\u1621;Canadian Syllabics Carrier Jja +\u1622;Canadian Syllabics Carrier Lu +\u1623;Canadian Syllabics Carrier Lo +\u1624;Canadian Syllabics Carrier Le +\u1625;Canadian Syllabics Carrier Lee +\u1626;Canadian Syllabics Carrier Li +\u1627;Canadian Syllabics Carrier La +\u1628;Canadian Syllabics Carrier Dlu +\u1629;Canadian Syllabics Carrier Dlo +\u162A;Canadian Syllabics Carrier Dle +\u162B;Canadian Syllabics Carrier Dlee +\u162C;Canadian Syllabics Carrier Dli +\u162D;Canadian Syllabics Carrier Dla +\u162E;Canadian Syllabics Carrier Lhu +\u162F;Canadian Syllabics Carrier Lho +\u1630;Canadian Syllabics Carrier Lhe +\u1631;Canadian Syllabics Carrier Lhee +\u1632;Canadian Syllabics Carrier Lhi +\u1633;Canadian Syllabics Carrier Lha +\u1634;Canadian Syllabics Carrier Tlhu +\u1635;Canadian Syllabics Carrier Tlho +\u1636;Canadian Syllabics Carrier Tlhe +\u1637;Canadian Syllabics Carrier Tlhee +\u1638;Canadian Syllabics Carrier Tlhi +\u1639;Canadian Syllabics Carrier Tlha +\u163A;Canadian Syllabics Carrier Tlu +\u163B;Canadian Syllabics Carrier Tlo +\u163C;Canadian Syllabics Carrier Tle +\u163D;Canadian Syllabics Carrier Tlee +\u163E;Canadian Syllabics Carrier Tli +\u163F;Canadian Syllabics Carrier Tla +\u1640;Canadian Syllabics Carrier Zu +\u1641;Canadian Syllabics Carrier Zo +\u1642;Canadian Syllabics Carrier Ze +\u1643;Canadian Syllabics Carrier Zee +\u1644;Canadian Syllabics Carrier Zi +\u1645;Canadian Syllabics Carrier Za +\u1646;Canadian Syllabics Carrier Z +\u1647;Canadian Syllabics Carrier Initial Z +\u1648;Canadian Syllabics Carrier Dzu +\u1649;Canadian Syllabics Carrier Dzo +\u164A;Canadian Syllabics Carrier Dze +\u164B;Canadian Syllabics Carrier Dzee +\u164C;Canadian Syllabics Carrier Dzi +\u164D;Canadian Syllabics Carrier Dza +\u164E;Canadian Syllabics Carrier Su +\u164F;Canadian Syllabics Carrier So +\u1650;Canadian Syllabics Carrier Se +\u1651;Canadian Syllabics Carrier See +\u1652;Canadian Syllabics Carrier Si +\u1653;Canadian Syllabics Carrier Sa +\u1654;Canadian Syllabics Carrier Shu +\u1655;Canadian Syllabics Carrier Sho +\u1656;Canadian Syllabics Carrier She +\u1657;Canadian Syllabics Carrier Shee +\u1658;Canadian Syllabics Carrier Shi +\u1659;Canadian Syllabics Carrier Sha +\u165A;Canadian Syllabics Carrier Sh +\u165B;Canadian Syllabics Carrier Tsu +\u165C;Canadian Syllabics Carrier Tso +\u165D;Canadian Syllabics Carrier Tse +\u165E;Canadian Syllabics Carrier Tsee +\u165F;Canadian Syllabics Carrier Tsi +\u1660;Canadian Syllabics Carrier Tsa +\u1661;Canadian Syllabics Carrier Chu +\u1662;Canadian Syllabics Carrier Cho +\u1663;Canadian Syllabics Carrier Che +\u1664;Canadian Syllabics Carrier Chee +\u1665;Canadian Syllabics Carrier Chi +\u1666;Canadian Syllabics Carrier Cha +\u1667;Canadian Syllabics Carrier Ttsu +\u1668;Canadian Syllabics Carrier Ttso +\u1669;Canadian Syllabics Carrier Ttse +\u166A;Canadian Syllabics Carrier Ttsee +\u166B;Canadian Syllabics Carrier Ttsi +\u166C;Canadian Syllabics Carrier Ttsa +\u166D;Canadian Syllabics Chi Sign +\u166E;Canadian Syllabics Full Stop +\u166F;Canadian Syllabics Qai +\u1670;Canadian Syllabics Ngai +\u1671;Canadian Syllabics Nngi +\u1672;Canadian Syllabics Nngii +\u1673;Canadian Syllabics Nngo +\u1674;Canadian Syllabics Nngoo +\u1675;Canadian Syllabics Nnga +\u1676;Canadian Syllabics Nngaa +\u1677;Canadian Syllabics Woods-Cree Thwee +\u1678;Canadian Syllabics Woods-Cree Thwi +\u1679;Canadian Syllabics Woods-Cree Thwii +\u167A;Canadian Syllabics Woods-Cree Thwo +\u167B;Canadian Syllabics Woods-Cree Thwoo +\u167C;Canadian Syllabics Woods-Cree Thwa +\u167D;Canadian Syllabics Woods-Cree Thwaa +\u167E;Canadian Syllabics Woods-Cree Final Th +\u167F;Canadian Syllabics Blackfoot W +\u1680;Ogham Space Mark +\u1681;Ogham Letter Beith +\u1682;Ogham Letter Luis +\u1683;Ogham Letter Fearn +\u1684;Ogham Letter Sail +\u1685;Ogham Letter Nion +\u1686;Ogham Letter Uath +\u1687;Ogham Letter Dair +\u1688;Ogham Letter Tinne +\u1689;Ogham Letter Coll +\u168A;Ogham Letter Ceirt +\u168B;Ogham Letter Muin +\u168C;Ogham Letter Gort +\u168D;Ogham Letter Ngeadal +\u168E;Ogham Letter Straif +\u168F;Ogham Letter Ruis +\u1690;Ogham Letter Ailm +\u1691;Ogham Letter Onn +\u1692;Ogham Letter Ur +\u1693;Ogham Letter Eadhadh +\u1694;Ogham Letter Iodhadh +\u1695;Ogham Letter Eabhadh +\u1696;Ogham Letter Or +\u1697;Ogham Letter Uilleann +\u1698;Ogham Letter Ifin +\u1699;Ogham Letter Eamhancholl +\u169A;Ogham Letter Peith +\u169B;Ogham Feather Mark +\u169C;Ogham Reversed Feather Mark +\u16A0;Runic Letter Fehu Feoh Fe F +\u16A1;Runic Letter V +\u16A2;Runic Letter Uruz Ur U +\u16A3;Runic Letter Yr +\u16A4;Runic Letter Y +\u16A5;Runic Letter W +\u16A6;Runic Letter Thurisaz Thurs Thorn +\u16A7;Runic Letter Eth +\u16A8;Runic Letter Ansuz A +\u16A9;Runic Letter Os O +\u16AA;Runic Letter Ac A +\u16AB;Runic Letter Aesc +\u16AC;Runic Letter Long-Branch-Oss O +\u16AD;Runic Letter Short-Twig-Oss O +\u16AE;Runic Letter O +\u16AF;Runic Letter Oe +\u16B0;Runic Letter On +\u16B1;Runic Letter Raido Rad Reid R +\u16B2;Runic Letter Kauna +\u16B3;Runic Letter Cen +\u16B4;Runic Letter Kaun K +\u16B5;Runic Letter G +\u16B6;Runic Letter Eng +\u16B7;Runic Letter Gebo Gyfu G +\u16B8;Runic Letter Gar +\u16B9;Runic Letter Wunjo Wynn W +\u16BA;Runic Letter Haglaz H +\u16BB;Runic Letter Haegl H +\u16BC;Runic Letter Long-Branch-Hagall H +\u16BD;Runic Letter Short-Twig-Hagall H +\u16BE;Runic Letter Naudiz Nyd Naud N +\u16BF;Runic Letter Short-Twig-Naud N +\u16C0;Runic Letter Dotted-N +\u16C1;Runic Letter Isaz Is Iss I +\u16C2;Runic Letter E +\u16C3;Runic Letter Jeran J +\u16C4;Runic Letter Ger +\u16C5;Runic Letter Long-Branch-Ar Ae +\u16C6;Runic Letter Short-Twig-Ar A +\u16C7;Runic Letter Iwaz Eoh +\u16C8;Runic Letter Pertho Peorth P +\u16C9;Runic Letter Algiz Eolhx +\u16CA;Runic Letter Sowilo S +\u16CB;Runic Letter Sigel Long-Branch-Sol S +\u16CC;Runic Letter Short-Twig-Sol S +\u16CD;Runic Letter C +\u16CE;Runic Letter Z +\u16CF;Runic Letter Tiwaz Tir Tyr T +\u16D0;Runic Letter Short-Twig-Tyr T +\u16D1;Runic Letter D +\u16D2;Runic Letter Berkanan Beorc Bjarkan B +\u16D3;Runic Letter Short-Twig-Bjarkan B +\u16D4;Runic Letter Dotted-P +\u16D5;Runic Letter Open-P +\u16D6;Runic Letter Ehwaz Eh E +\u16D7;Runic Letter Mannaz Man M +\u16D8;Runic Letter Long-Branch-Madr M +\u16D9;Runic Letter Short-Twig-Madr M +\u16DA;Runic Letter Laukaz Lagu Logr L +\u16DB;Runic Letter Dotted-L +\u16DC;Runic Letter Ingwaz +\u16DD;Runic Letter Ing +\u16DE;Runic Letter Dagaz Daeg D +\u16DF;Runic Letter Othalan Ethel O +\u16E0;Runic Letter Ear +\u16E1;Runic Letter Ior +\u16E2;Runic Letter Cweorth +\u16E3;Runic Letter Calc +\u16E4;Runic Letter Cealc +\u16E5;Runic Letter Stan +\u16E6;Runic Letter Long-Branch-Yr +\u16E7;Runic Letter Short-Twig-Yr +\u16E8;Runic Letter Icelandic-Yr +\u16E9;Runic Letter Q +\u16EA;Runic Letter X +\u16EB;Runic Single Punctuation +\u16EC;Runic Multiple Punctuation +\u16ED;Runic Cross Punctuation +\u16EE;Runic Arlaug Symbol +\u16EF;Runic Tvimadur Symbol +\u16F0;Runic Belgthor Symbol +\u16F1;Runic Letter K +\u16F2;Runic Letter Sh +\u16F3;Runic Letter Oo +\u16F4;Runic Letter Franks Casket Os +\u16F5;Runic Letter Franks Casket Is +\u16F6;Runic Letter Franks Casket Eh +\u16F7;Runic Letter Franks Casket Ac +\u16F8;Runic Letter Franks Casket Aesc +\u1700;Tagalog Letter A +\u1701;Tagalog Letter I +\u1702;Tagalog Letter U +\u1703;Tagalog Letter Ka +\u1704;Tagalog Letter Ga +\u1705;Tagalog Letter Nga +\u1706;Tagalog Letter Ta +\u1707;Tagalog Letter Da +\u1708;Tagalog Letter Na +\u1709;Tagalog Letter Pa +\u170A;Tagalog Letter Ba +\u170B;Tagalog Letter Ma +\u170C;Tagalog Letter Ya +\u170D;Tagalog Letter Ra +\u170E;Tagalog Letter La +\u170F;Tagalog Letter Wa +\u1710;Tagalog Letter Sa +\u1711;Tagalog Letter Ha +\u1712;Tagalog Vowel Sign I +\u1713;Tagalog Vowel Sign U +\u1714;Tagalog Sign Virama +\u1715;Tagalog Sign Pamudpod +\u171F;Tagalog Letter Archaic Ra +\u1720;Hanunoo Letter A +\u1721;Hanunoo Letter I +\u1722;Hanunoo Letter U +\u1723;Hanunoo Letter Ka +\u1724;Hanunoo Letter Ga +\u1725;Hanunoo Letter Nga +\u1726;Hanunoo Letter Ta +\u1727;Hanunoo Letter Da +\u1728;Hanunoo Letter Na +\u1729;Hanunoo Letter Pa +\u172A;Hanunoo Letter Ba +\u172B;Hanunoo Letter Ma +\u172C;Hanunoo Letter Ya +\u172D;Hanunoo Letter Ra +\u172E;Hanunoo Letter La +\u172F;Hanunoo Letter Wa +\u1730;Hanunoo Letter Sa +\u1731;Hanunoo Letter Ha +\u1732;Hanunoo Vowel Sign I +\u1733;Hanunoo Vowel Sign U +\u1734;Hanunoo Sign Pamudpod +\u1735;Philippine Single Punctuation +\u1736;Philippine Double Punctuation +\u1740;Buhid Letter A +\u1741;Buhid Letter I +\u1742;Buhid Letter U +\u1743;Buhid Letter Ka +\u1744;Buhid Letter Ga +\u1745;Buhid Letter Nga +\u1746;Buhid Letter Ta +\u1747;Buhid Letter Da +\u1748;Buhid Letter Na +\u1749;Buhid Letter Pa +\u174A;Buhid Letter Ba +\u174B;Buhid Letter Ma +\u174C;Buhid Letter Ya +\u174D;Buhid Letter Ra +\u174E;Buhid Letter La +\u174F;Buhid Letter Wa +\u1750;Buhid Letter Sa +\u1751;Buhid Letter Ha +\u1752;Buhid Vowel Sign I +\u1753;Buhid Vowel Sign U +\u1760;Tagbanwa Letter A +\u1761;Tagbanwa Letter I +\u1762;Tagbanwa Letter U +\u1763;Tagbanwa Letter Ka +\u1764;Tagbanwa Letter Ga +\u1765;Tagbanwa Letter Nga +\u1766;Tagbanwa Letter Ta +\u1767;Tagbanwa Letter Da +\u1768;Tagbanwa Letter Na +\u1769;Tagbanwa Letter Pa +\u176A;Tagbanwa Letter Ba +\u176B;Tagbanwa Letter Ma +\u176C;Tagbanwa Letter Ya +\u176E;Tagbanwa Letter La +\u176F;Tagbanwa Letter Wa +\u1770;Tagbanwa Letter Sa +\u1772;Tagbanwa Vowel Sign I +\u1773;Tagbanwa Vowel Sign U +\u1780;Khmer Letter Ka +\u1781;Khmer Letter Kha +\u1782;Khmer Letter Ko +\u1783;Khmer Letter Kho +\u1784;Khmer Letter Ngo +\u1785;Khmer Letter Ca +\u1786;Khmer Letter Cha +\u1787;Khmer Letter Co +\u1788;Khmer Letter Cho +\u1789;Khmer Letter Nyo +\u178A;Khmer Letter Da +\u178B;Khmer Letter Ttha +\u178C;Khmer Letter Do +\u178D;Khmer Letter Ttho +\u178E;Khmer Letter Nno +\u178F;Khmer Letter Ta +\u1790;Khmer Letter Tha +\u1791;Khmer Letter To +\u1792;Khmer Letter Tho +\u1793;Khmer Letter No +\u1794;Khmer Letter Ba +\u1795;Khmer Letter Pha +\u1796;Khmer Letter Po +\u1797;Khmer Letter Pho +\u1798;Khmer Letter Mo +\u1799;Khmer Letter Yo +\u179A;Khmer Letter Ro +\u179B;Khmer Letter Lo +\u179C;Khmer Letter Vo +\u179D;Khmer Letter Sha +\u179E;Khmer Letter Sso +\u179F;Khmer Letter Sa +\u17A0;Khmer Letter Ha +\u17A1;Khmer Letter La +\u17A2;Khmer Letter Qa +\u17A3;Khmer Independent Vowel Qaq +\u17A4;Khmer Independent Vowel Qaa +\u17A5;Khmer Independent Vowel Qi +\u17A6;Khmer Independent Vowel Qii +\u17A7;Khmer Independent Vowel Qu +\u17A8;Khmer Independent Vowel Quk +\u17A9;Khmer Independent Vowel Quu +\u17AA;Khmer Independent Vowel Quuv +\u17AB;Khmer Independent Vowel Ry +\u17AC;Khmer Independent Vowel Ryy +\u17AD;Khmer Independent Vowel Ly +\u17AE;Khmer Independent Vowel Lyy +\u17AF;Khmer Independent Vowel Qe +\u17B0;Khmer Independent Vowel Qai +\u17B1;Khmer Independent Vowel Qoo Type One +\u17B2;Khmer Independent Vowel Qoo Type Two +\u17B3;Khmer Independent Vowel Qau +\u17B4;Khmer Vowel Inherent Aq +\u17B5;Khmer Vowel Inherent Aa +\u17B6;Khmer Vowel Sign Aa +\u17B7;Khmer Vowel Sign I +\u17B8;Khmer Vowel Sign Ii +\u17B9;Khmer Vowel Sign Y +\u17BA;Khmer Vowel Sign Yy +\u17BB;Khmer Vowel Sign U +\u17BC;Khmer Vowel Sign Uu +\u17BD;Khmer Vowel Sign Ua +\u17BE;Khmer Vowel Sign Oe +\u17BF;Khmer Vowel Sign Ya +\u17C0;Khmer Vowel Sign Ie +\u17C1;Khmer Vowel Sign E +\u17C2;Khmer Vowel Sign Ae +\u17C3;Khmer Vowel Sign Ai +\u17C4;Khmer Vowel Sign Oo +\u17C5;Khmer Vowel Sign Au +\u17C6;Khmer Sign Nikahit +\u17C7;Khmer Sign Reahmuk +\u17C8;Khmer Sign Yuukaleapintu +\u17C9;Khmer Sign Muusikatoan +\u17CA;Khmer Sign Triisap +\u17CB;Khmer Sign Bantoc +\u17CC;Khmer Sign Robat +\u17CD;Khmer Sign Toandakhiat +\u17CE;Khmer Sign Kakabat +\u17CF;Khmer Sign Ahsda +\u17D0;Khmer Sign Samyok Sannya +\u17D1;Khmer Sign Viriam +\u17D2;Khmer Sign Coeng +\u17D3;Khmer Sign Bathamasat +\u17D4;Khmer Sign Khan +\u17D5;Khmer Sign Bariyoosan +\u17D6;Khmer Sign Camnuc Pii Kuuh +\u17D7;Khmer Sign Lek Too +\u17D8;Khmer Sign Beyyal +\u17D9;Khmer Sign Phnaek Muan +\u17DA;Khmer Sign Koomuut +\u17DB;Khmer Currency Symbol Riel +\u17DC;Khmer Sign Avakrahasanya +\u17DD;Khmer Sign Atthacan +\u17E0;Khmer Digit Zero +\u17E1;Khmer Digit One +\u17E2;Khmer Digit Two +\u17E3;Khmer Digit Three +\u17E4;Khmer Digit Four +\u17E5;Khmer Digit Five +\u17E6;Khmer Digit Six +\u17E7;Khmer Digit Seven +\u17E8;Khmer Digit Eight +\u17E9;Khmer Digit Nine +\u17F0;Khmer Symbol Lek Attak Son +\u17F1;Khmer Symbol Lek Attak Muoy +\u17F2;Khmer Symbol Lek Attak Pii +\u17F3;Khmer Symbol Lek Attak Bei +\u17F4;Khmer Symbol Lek Attak Buon +\u17F5;Khmer Symbol Lek Attak Pram +\u17F6;Khmer Symbol Lek Attak Pram-Muoy +\u17F7;Khmer Symbol Lek Attak Pram-Pii +\u17F8;Khmer Symbol Lek Attak Pram-Bei +\u17F9;Khmer Symbol Lek Attak Pram-Buon +\u1800;Mongolian Birga +\u1801;Mongolian Ellipsis +\u1802;Mongolian Comma +\u1803;Mongolian Full Stop +\u1804;Mongolian Colon +\u1805;Mongolian Four Dots +\u1806;Mongolian Todo Soft Hyphen +\u1807;Mongolian Sibe Syllable Boundary Marker +\u1808;Mongolian Manchu Comma +\u1809;Mongolian Manchu Full Stop +\u180A;Mongolian Nirugu +\u180E;Mongolian Vowel Separator +\u1810;Mongolian Digit Zero +\u1811;Mongolian Digit One +\u1812;Mongolian Digit Two +\u1813;Mongolian Digit Three +\u1814;Mongolian Digit Four +\u1815;Mongolian Digit Five +\u1816;Mongolian Digit Six +\u1817;Mongolian Digit Seven +\u1818;Mongolian Digit Eight +\u1819;Mongolian Digit Nine +\u1820;Mongolian Letter A +\u1821;Mongolian Letter E +\u1822;Mongolian Letter I +\u1823;Mongolian Letter O +\u1824;Mongolian Letter U +\u1825;Mongolian Letter Oe +\u1826;Mongolian Letter Ue +\u1827;Mongolian Letter Ee +\u1828;Mongolian Letter Na +\u1829;Mongolian Letter Ang +\u182A;Mongolian Letter Ba +\u182B;Mongolian Letter Pa +\u182C;Mongolian Letter Qa +\u182D;Mongolian Letter Ga +\u182E;Mongolian Letter Ma +\u182F;Mongolian Letter La +\u1830;Mongolian Letter Sa +\u1831;Mongolian Letter Sha +\u1832;Mongolian Letter Ta +\u1833;Mongolian Letter Da +\u1834;Mongolian Letter Cha +\u1835;Mongolian Letter Ja +\u1836;Mongolian Letter Ya +\u1837;Mongolian Letter Ra +\u1838;Mongolian Letter Wa +\u1839;Mongolian Letter Fa +\u183A;Mongolian Letter Ka +\u183B;Mongolian Letter Kha +\u183C;Mongolian Letter Tsa +\u183D;Mongolian Letter Za +\u183E;Mongolian Letter Haa +\u183F;Mongolian Letter Zra +\u1840;Mongolian Letter Lha +\u1841;Mongolian Letter Zhi +\u1842;Mongolian Letter Chi +\u1843;Mongolian Letter Todo Long Vowel Sign +\u1844;Mongolian Letter Todo E +\u1845;Mongolian Letter Todo I +\u1846;Mongolian Letter Todo O +\u1847;Mongolian Letter Todo U +\u1848;Mongolian Letter Todo Oe +\u1849;Mongolian Letter Todo Ue +\u184A;Mongolian Letter Todo Ang +\u184B;Mongolian Letter Todo Ba +\u184C;Mongolian Letter Todo Pa +\u184D;Mongolian Letter Todo Qa +\u184E;Mongolian Letter Todo Ga +\u184F;Mongolian Letter Todo Ma +\u1850;Mongolian Letter Todo Ta +\u1851;Mongolian Letter Todo Da +\u1852;Mongolian Letter Todo Cha +\u1853;Mongolian Letter Todo Ja +\u1854;Mongolian Letter Todo Tsa +\u1855;Mongolian Letter Todo Ya +\u1856;Mongolian Letter Todo Wa +\u1857;Mongolian Letter Todo Ka +\u1858;Mongolian Letter Todo Gaa +\u1859;Mongolian Letter Todo Haa +\u185A;Mongolian Letter Todo Jia +\u185B;Mongolian Letter Todo Nia +\u185C;Mongolian Letter Todo Dza +\u185D;Mongolian Letter Sibe E +\u185E;Mongolian Letter Sibe I +\u185F;Mongolian Letter Sibe Iy +\u1860;Mongolian Letter Sibe Ue +\u1861;Mongolian Letter Sibe U +\u1862;Mongolian Letter Sibe Ang +\u1863;Mongolian Letter Sibe Ka +\u1864;Mongolian Letter Sibe Ga +\u1865;Mongolian Letter Sibe Ha +\u1866;Mongolian Letter Sibe Pa +\u1867;Mongolian Letter Sibe Sha +\u1868;Mongolian Letter Sibe Ta +\u1869;Mongolian Letter Sibe Da +\u186A;Mongolian Letter Sibe Ja +\u186B;Mongolian Letter Sibe Fa +\u186C;Mongolian Letter Sibe Gaa +\u186D;Mongolian Letter Sibe Haa +\u186E;Mongolian Letter Sibe Tsa +\u186F;Mongolian Letter Sibe Za +\u1870;Mongolian Letter Sibe Raa +\u1871;Mongolian Letter Sibe Cha +\u1872;Mongolian Letter Sibe Zha +\u1873;Mongolian Letter Manchu I +\u1874;Mongolian Letter Manchu Ka +\u1875;Mongolian Letter Manchu Ra +\u1876;Mongolian Letter Manchu Fa +\u1877;Mongolian Letter Manchu Zha +\u1878;Mongolian Letter Cha With Two Dots +\u1880;Mongolian Letter Ali Gali Anusvara One +\u1881;Mongolian Letter Ali Gali Visarga One +\u1882;Mongolian Letter Ali Gali Damaru +\u1883;Mongolian Letter Ali Gali Ubadama +\u1884;Mongolian Letter Ali Gali Inverted Ubadama +\u1885;Mongolian Letter Ali Gali Baluda +\u1886;Mongolian Letter Ali Gali Three Baluda +\u1887;Mongolian Letter Ali Gali A +\u1888;Mongolian Letter Ali Gali I +\u1889;Mongolian Letter Ali Gali Ka +\u188A;Mongolian Letter Ali Gali Nga +\u188B;Mongolian Letter Ali Gali Ca +\u188C;Mongolian Letter Ali Gali Tta +\u188D;Mongolian Letter Ali Gali Ttha +\u188E;Mongolian Letter Ali Gali Dda +\u188F;Mongolian Letter Ali Gali Nna +\u1890;Mongolian Letter Ali Gali Ta +\u1891;Mongolian Letter Ali Gali Da +\u1892;Mongolian Letter Ali Gali Pa +\u1893;Mongolian Letter Ali Gali Pha +\u1894;Mongolian Letter Ali Gali Ssa +\u1895;Mongolian Letter Ali Gali Zha +\u1896;Mongolian Letter Ali Gali Za +\u1897;Mongolian Letter Ali Gali Ah +\u1898;Mongolian Letter Todo Ali Gali Ta +\u1899;Mongolian Letter Todo Ali Gali Zha +\u189A;Mongolian Letter Manchu Ali Gali Gha +\u189B;Mongolian Letter Manchu Ali Gali Nga +\u189C;Mongolian Letter Manchu Ali Gali Ca +\u189D;Mongolian Letter Manchu Ali Gali Jha +\u189E;Mongolian Letter Manchu Ali Gali Tta +\u189F;Mongolian Letter Manchu Ali Gali Ddha +\u18A0;Mongolian Letter Manchu Ali Gali Ta +\u18A1;Mongolian Letter Manchu Ali Gali Dha +\u18A2;Mongolian Letter Manchu Ali Gali Ssa +\u18A3;Mongolian Letter Manchu Ali Gali Cya +\u18A4;Mongolian Letter Manchu Ali Gali Zha +\u18A5;Mongolian Letter Manchu Ali Gali Za +\u18A6;Mongolian Letter Ali Gali Half U +\u18A7;Mongolian Letter Ali Gali Half Ya +\u18A8;Mongolian Letter Manchu Ali Gali Bha +\u18A9;Mongolian Letter Ali Gali Dagalga +\u18AA;Mongolian Letter Manchu Ali Gali Lha +\u18B0;Canadian Syllabics Oy +\u18B1;Canadian Syllabics Ay +\u18B2;Canadian Syllabics Aay +\u18B3;Canadian Syllabics Way +\u18B4;Canadian Syllabics Poy +\u18B5;Canadian Syllabics Pay +\u18B6;Canadian Syllabics Pwoy +\u18B7;Canadian Syllabics Tay +\u18B8;Canadian Syllabics Kay +\u18B9;Canadian Syllabics Kway +\u18BA;Canadian Syllabics May +\u18BB;Canadian Syllabics Noy +\u18BC;Canadian Syllabics Nay +\u18BD;Canadian Syllabics Lay +\u18BE;Canadian Syllabics Soy +\u18BF;Canadian Syllabics Say +\u18C0;Canadian Syllabics Shoy +\u18C1;Canadian Syllabics Shay +\u18C2;Canadian Syllabics Shwoy +\u18C3;Canadian Syllabics Yoy +\u18C4;Canadian Syllabics Yay +\u18C5;Canadian Syllabics Ray +\u18C6;Canadian Syllabics Nwi +\u18C7;Canadian Syllabics Ojibway Nwi +\u18C8;Canadian Syllabics Nwii +\u18C9;Canadian Syllabics Ojibway Nwii +\u18CA;Canadian Syllabics Nwo +\u18CB;Canadian Syllabics Ojibway Nwo +\u18CC;Canadian Syllabics Nwoo +\u18CD;Canadian Syllabics Ojibway Nwoo +\u18CE;Canadian Syllabics Rwee +\u18CF;Canadian Syllabics Rwi +\u18D0;Canadian Syllabics Rwii +\u18D1;Canadian Syllabics Rwo +\u18D2;Canadian Syllabics Rwoo +\u18D3;Canadian Syllabics Rwa +\u18D4;Canadian Syllabics Ojibway P +\u18D5;Canadian Syllabics Ojibway T +\u18D6;Canadian Syllabics Ojibway K +\u18D7;Canadian Syllabics Ojibway C +\u18D8;Canadian Syllabics Ojibway M +\u18D9;Canadian Syllabics Ojibway N +\u18DA;Canadian Syllabics Ojibway S +\u18DB;Canadian Syllabics Ojibway Sh +\u18DC;Canadian Syllabics Eastern W +\u18DD;Canadian Syllabics Western W +\u18DE;Canadian Syllabics Final Small Ring +\u18DF;Canadian Syllabics Final Raised Dot +\u18E0;Canadian Syllabics R-Cree Rwe +\u18E1;Canadian Syllabics West-Cree Loo +\u18E2;Canadian Syllabics West-Cree Laa +\u18E3;Canadian Syllabics Thwe +\u18E4;Canadian Syllabics Thwa +\u18E5;Canadian Syllabics Tthwe +\u18E6;Canadian Syllabics Tthoo +\u18E7;Canadian Syllabics Tthaa +\u18E8;Canadian Syllabics Tlhwe +\u18E9;Canadian Syllabics Tlhoo +\u18EA;Canadian Syllabics Sayisi Shwe +\u18EB;Canadian Syllabics Sayisi Shoo +\u18EC;Canadian Syllabics Sayisi Hoo +\u18ED;Canadian Syllabics Carrier Gwu +\u18EE;Canadian Syllabics Carrier Dene Gee +\u18EF;Canadian Syllabics Carrier Gaa +\u18F0;Canadian Syllabics Carrier Gwa +\u18F1;Canadian Syllabics Sayisi Juu +\u18F2;Canadian Syllabics Carrier Jwa +\u18F3;Canadian Syllabics Beaver Dene L +\u18F4;Canadian Syllabics Beaver Dene R +\u18F5;Canadian Syllabics Carrier Dental S +\u1900;Limbu Vowel-Carrier Letter +\u1901;Limbu Letter Ka +\u1902;Limbu Letter Kha +\u1903;Limbu Letter Ga +\u1904;Limbu Letter Gha +\u1905;Limbu Letter Nga +\u1906;Limbu Letter Ca +\u1907;Limbu Letter Cha +\u1908;Limbu Letter Ja +\u1909;Limbu Letter Jha +\u190A;Limbu Letter Yan +\u190B;Limbu Letter Ta +\u190C;Limbu Letter Tha +\u190D;Limbu Letter Da +\u190E;Limbu Letter Dha +\u190F;Limbu Letter Na +\u1910;Limbu Letter Pa +\u1911;Limbu Letter Pha +\u1912;Limbu Letter Ba +\u1913;Limbu Letter Bha +\u1914;Limbu Letter Ma +\u1915;Limbu Letter Ya +\u1916;Limbu Letter Ra +\u1917;Limbu Letter La +\u1918;Limbu Letter Wa +\u1919;Limbu Letter Sha +\u191A;Limbu Letter Ssa +\u191B;Limbu Letter Sa +\u191C;Limbu Letter Ha +\u191D;Limbu Letter Gyan +\u191E;Limbu Letter Tra +\u1920;Limbu Vowel Sign A +\u1921;Limbu Vowel Sign I +\u1922;Limbu Vowel Sign U +\u1923;Limbu Vowel Sign Ee +\u1924;Limbu Vowel Sign Ai +\u1925;Limbu Vowel Sign Oo +\u1926;Limbu Vowel Sign Au +\u1927;Limbu Vowel Sign E +\u1928;Limbu Vowel Sign O +\u1929;Limbu Subjoined Letter Ya +\u192A;Limbu Subjoined Letter Ra +\u192B;Limbu Subjoined Letter Wa +\u1930;Limbu Small Letter Ka +\u1931;Limbu Small Letter Nga +\u1932;Limbu Small Letter Anusvara +\u1933;Limbu Small Letter Ta +\u1934;Limbu Small Letter Na +\u1935;Limbu Small Letter Pa +\u1936;Limbu Small Letter Ma +\u1937;Limbu Small Letter Ra +\u1938;Limbu Small Letter La +\u1939;Limbu Sign Mukphreng +\u193A;Limbu Sign Kemphreng +\u193B;Limbu Sign Sa-I +\u1940;Limbu Sign Loo +\u1944;Limbu Exclamation Mark +\u1945;Limbu Question Mark +\u1946;Limbu Digit Zero +\u1947;Limbu Digit One +\u1948;Limbu Digit Two +\u1949;Limbu Digit Three +\u194A;Limbu Digit Four +\u194B;Limbu Digit Five +\u194C;Limbu Digit Six +\u194D;Limbu Digit Seven +\u194E;Limbu Digit Eight +\u194F;Limbu Digit Nine +\u1950;Tai Le Letter Ka +\u1951;Tai Le Letter Xa +\u1952;Tai Le Letter Nga +\u1953;Tai Le Letter Tsa +\u1954;Tai Le Letter Sa +\u1955;Tai Le Letter Ya +\u1956;Tai Le Letter Ta +\u1957;Tai Le Letter Tha +\u1958;Tai Le Letter La +\u1959;Tai Le Letter Pa +\u195A;Tai Le Letter Pha +\u195B;Tai Le Letter Ma +\u195C;Tai Le Letter Fa +\u195D;Tai Le Letter Va +\u195E;Tai Le Letter Ha +\u195F;Tai Le Letter Qa +\u1960;Tai Le Letter Kha +\u1961;Tai Le Letter Tsha +\u1962;Tai Le Letter Na +\u1963;Tai Le Letter A +\u1964;Tai Le Letter I +\u1965;Tai Le Letter Ee +\u1966;Tai Le Letter Eh +\u1967;Tai Le Letter U +\u1968;Tai Le Letter Oo +\u1969;Tai Le Letter O +\u196A;Tai Le Letter Ue +\u196B;Tai Le Letter E +\u196C;Tai Le Letter Aue +\u196D;Tai Le Letter Ai +\u1970;Tai Le Letter Tone-2 +\u1971;Tai Le Letter Tone-3 +\u1972;Tai Le Letter Tone-4 +\u1973;Tai Le Letter Tone-5 +\u1974;Tai Le Letter Tone-6 +\u1980;New Tai Lue Letter High Qa +\u1981;New Tai Lue Letter Low Qa +\u1982;New Tai Lue Letter High Ka +\u1983;New Tai Lue Letter High Xa +\u1984;New Tai Lue Letter High Nga +\u1985;New Tai Lue Letter Low Ka +\u1986;New Tai Lue Letter Low Xa +\u1987;New Tai Lue Letter Low Nga +\u1988;New Tai Lue Letter High Tsa +\u1989;New Tai Lue Letter High Sa +\u198A;New Tai Lue Letter High Ya +\u198B;New Tai Lue Letter Low Tsa +\u198C;New Tai Lue Letter Low Sa +\u198D;New Tai Lue Letter Low Ya +\u198E;New Tai Lue Letter High Ta +\u198F;New Tai Lue Letter High Tha +\u1990;New Tai Lue Letter High Na +\u1991;New Tai Lue Letter Low Ta +\u1992;New Tai Lue Letter Low Tha +\u1993;New Tai Lue Letter Low Na +\u1994;New Tai Lue Letter High Pa +\u1995;New Tai Lue Letter High Pha +\u1996;New Tai Lue Letter High Ma +\u1997;New Tai Lue Letter Low Pa +\u1998;New Tai Lue Letter Low Pha +\u1999;New Tai Lue Letter Low Ma +\u199A;New Tai Lue Letter High Fa +\u199B;New Tai Lue Letter High Va +\u199C;New Tai Lue Letter High La +\u199D;New Tai Lue Letter Low Fa +\u199E;New Tai Lue Letter Low Va +\u199F;New Tai Lue Letter Low La +\u19A0;New Tai Lue Letter High Ha +\u19A1;New Tai Lue Letter High Da +\u19A2;New Tai Lue Letter High Ba +\u19A3;New Tai Lue Letter Low Ha +\u19A4;New Tai Lue Letter Low Da +\u19A5;New Tai Lue Letter Low Ba +\u19A6;New Tai Lue Letter High Kva +\u19A7;New Tai Lue Letter High Xva +\u19A8;New Tai Lue Letter Low Kva +\u19A9;New Tai Lue Letter Low Xva +\u19AA;New Tai Lue Letter High Sua +\u19AB;New Tai Lue Letter Low Sua +\u19B0;New Tai Lue Vowel Sign Vowel Shortener +\u19B1;New Tai Lue Vowel Sign Aa +\u19B2;New Tai Lue Vowel Sign Ii +\u19B3;New Tai Lue Vowel Sign U +\u19B4;New Tai Lue Vowel Sign Uu +\u19B5;New Tai Lue Vowel Sign E +\u19B6;New Tai Lue Vowel Sign Ae +\u19B7;New Tai Lue Vowel Sign O +\u19B8;New Tai Lue Vowel Sign Oa +\u19B9;New Tai Lue Vowel Sign Ue +\u19BA;New Tai Lue Vowel Sign Ay +\u19BB;New Tai Lue Vowel Sign Aay +\u19BC;New Tai Lue Vowel Sign Uy +\u19BD;New Tai Lue Vowel Sign Oy +\u19BE;New Tai Lue Vowel Sign Oay +\u19BF;New Tai Lue Vowel Sign Uey +\u19C0;New Tai Lue Vowel Sign Iy +\u19C1;New Tai Lue Letter Final V +\u19C2;New Tai Lue Letter Final Ng +\u19C3;New Tai Lue Letter Final N +\u19C4;New Tai Lue Letter Final M +\u19C5;New Tai Lue Letter Final K +\u19C6;New Tai Lue Letter Final D +\u19C7;New Tai Lue Letter Final B +\u19C8;New Tai Lue Tone Mark-1 +\u19C9;New Tai Lue Tone Mark-2 +\u19D0;New Tai Lue Digit Zero +\u19D1;New Tai Lue Digit One +\u19D2;New Tai Lue Digit Two +\u19D3;New Tai Lue Digit Three +\u19D4;New Tai Lue Digit Four +\u19D5;New Tai Lue Digit Five +\u19D6;New Tai Lue Digit Six +\u19D7;New Tai Lue Digit Seven +\u19D8;New Tai Lue Digit Eight +\u19D9;New Tai Lue Digit Nine +\u19DA;New Tai Lue Tham Digit One +\u19DE;New Tai Lue Sign Lae +\u19DF;New Tai Lue Sign Laev +\u19E0;Khmer Symbol Pathamasat +\u19E1;Khmer Symbol Muoy Koet +\u19E2;Khmer Symbol Pii Koet +\u19E3;Khmer Symbol Bei Koet +\u19E4;Khmer Symbol Buon Koet +\u19E5;Khmer Symbol Pram Koet +\u19E6;Khmer Symbol Pram-Muoy Koet +\u19E7;Khmer Symbol Pram-Pii Koet +\u19E8;Khmer Symbol Pram-Bei Koet +\u19E9;Khmer Symbol Pram-Buon Koet +\u19EA;Khmer Symbol Dap Koet +\u19EB;Khmer Symbol Dap-Muoy Koet +\u19EC;Khmer Symbol Dap-Pii Koet +\u19ED;Khmer Symbol Dap-Bei Koet +\u19EE;Khmer Symbol Dap-Buon Koet +\u19EF;Khmer Symbol Dap-Pram Koet +\u19F0;Khmer Symbol Tuteyasat +\u19F1;Khmer Symbol Muoy Roc +\u19F2;Khmer Symbol Pii Roc +\u19F3;Khmer Symbol Bei Roc +\u19F4;Khmer Symbol Buon Roc +\u19F5;Khmer Symbol Pram Roc +\u19F6;Khmer Symbol Pram-Muoy Roc +\u19F7;Khmer Symbol Pram-Pii Roc +\u19F8;Khmer Symbol Pram-Bei Roc +\u19F9;Khmer Symbol Pram-Buon Roc +\u19FA;Khmer Symbol Dap Roc +\u19FB;Khmer Symbol Dap-Muoy Roc +\u19FC;Khmer Symbol Dap-Pii Roc +\u19FD;Khmer Symbol Dap-Bei Roc +\u19FE;Khmer Symbol Dap-Buon Roc +\u19FF;Khmer Symbol Dap-Pram Roc +\u1A00;Buginese Letter Ka +\u1A01;Buginese Letter Ga +\u1A02;Buginese Letter Nga +\u1A03;Buginese Letter Ngka +\u1A04;Buginese Letter Pa +\u1A05;Buginese Letter Ba +\u1A06;Buginese Letter Ma +\u1A07;Buginese Letter Mpa +\u1A08;Buginese Letter Ta +\u1A09;Buginese Letter Da +\u1A0A;Buginese Letter Na +\u1A0B;Buginese Letter Nra +\u1A0C;Buginese Letter Ca +\u1A0D;Buginese Letter Ja +\u1A0E;Buginese Letter Nya +\u1A0F;Buginese Letter Nyca +\u1A10;Buginese Letter Ya +\u1A11;Buginese Letter Ra +\u1A12;Buginese Letter La +\u1A13;Buginese Letter Va +\u1A14;Buginese Letter Sa +\u1A15;Buginese Letter A +\u1A16;Buginese Letter Ha +\u1A17;Buginese Vowel Sign I +\u1A18;Buginese Vowel Sign U +\u1A19;Buginese Vowel Sign E +\u1A1A;Buginese Vowel Sign O +\u1A1B;Buginese Vowel Sign Ae +\u1A1E;Buginese Pallawa +\u1A1F;Buginese End Of Section +\u1A20;Tai Tham Letter High Ka +\u1A21;Tai Tham Letter High Kha +\u1A22;Tai Tham Letter High Kxa +\u1A23;Tai Tham Letter Low Ka +\u1A24;Tai Tham Letter Low Kxa +\u1A25;Tai Tham Letter Low Kha +\u1A26;Tai Tham Letter Nga +\u1A27;Tai Tham Letter High Ca +\u1A28;Tai Tham Letter High Cha +\u1A29;Tai Tham Letter Low Ca +\u1A2A;Tai Tham Letter Low Sa +\u1A2B;Tai Tham Letter Low Cha +\u1A2C;Tai Tham Letter Nya +\u1A2D;Tai Tham Letter Rata +\u1A2E;Tai Tham Letter High Ratha +\u1A2F;Tai Tham Letter Da +\u1A30;Tai Tham Letter Low Ratha +\u1A31;Tai Tham Letter Rana +\u1A32;Tai Tham Letter High Ta +\u1A33;Tai Tham Letter High Tha +\u1A34;Tai Tham Letter Low Ta +\u1A35;Tai Tham Letter Low Tha +\u1A36;Tai Tham Letter Na +\u1A37;Tai Tham Letter Ba +\u1A38;Tai Tham Letter High Pa +\u1A39;Tai Tham Letter High Pha +\u1A3A;Tai Tham Letter High Fa +\u1A3B;Tai Tham Letter Low Pa +\u1A3C;Tai Tham Letter Low Fa +\u1A3D;Tai Tham Letter Low Pha +\u1A3E;Tai Tham Letter Ma +\u1A3F;Tai Tham Letter Low Ya +\u1A40;Tai Tham Letter High Ya +\u1A41;Tai Tham Letter Ra +\u1A42;Tai Tham Letter Rue +\u1A43;Tai Tham Letter La +\u1A44;Tai Tham Letter Lue +\u1A45;Tai Tham Letter Wa +\u1A46;Tai Tham Letter High Sha +\u1A47;Tai Tham Letter High Ssa +\u1A48;Tai Tham Letter High Sa +\u1A49;Tai Tham Letter High Ha +\u1A4A;Tai Tham Letter Lla +\u1A4B;Tai Tham Letter A +\u1A4C;Tai Tham Letter Low Ha +\u1A4D;Tai Tham Letter I +\u1A4E;Tai Tham Letter Ii +\u1A4F;Tai Tham Letter U +\u1A50;Tai Tham Letter Uu +\u1A51;Tai Tham Letter Ee +\u1A52;Tai Tham Letter Oo +\u1A53;Tai Tham Letter Lae +\u1A54;Tai Tham Letter Great Sa +\u1A55;Tai Tham Consonant Sign Medial Ra +\u1A56;Tai Tham Consonant Sign Medial La +\u1A57;Tai Tham Consonant Sign La Tang Lai +\u1A58;Tai Tham Sign Mai Kang Lai +\u1A59;Tai Tham Consonant Sign Final Nga +\u1A5A;Tai Tham Consonant Sign Low Pa +\u1A5B;Tai Tham Consonant Sign High Ratha Or Low Pa +\u1A5C;Tai Tham Consonant Sign Ma +\u1A5D;Tai Tham Consonant Sign Ba +\u1A5E;Tai Tham Consonant Sign Sa +\u1A60;Tai Tham Sign Sakot +\u1A61;Tai Tham Vowel Sign A +\u1A62;Tai Tham Vowel Sign Mai Sat +\u1A63;Tai Tham Vowel Sign Aa +\u1A64;Tai Tham Vowel Sign Tall Aa +\u1A65;Tai Tham Vowel Sign I +\u1A66;Tai Tham Vowel Sign Ii +\u1A67;Tai Tham Vowel Sign Ue +\u1A68;Tai Tham Vowel Sign Uue +\u1A69;Tai Tham Vowel Sign U +\u1A6A;Tai Tham Vowel Sign Uu +\u1A6B;Tai Tham Vowel Sign O +\u1A6C;Tai Tham Vowel Sign Oa Below +\u1A6D;Tai Tham Vowel Sign Oy +\u1A6E;Tai Tham Vowel Sign E +\u1A6F;Tai Tham Vowel Sign Ae +\u1A70;Tai Tham Vowel Sign Oo +\u1A71;Tai Tham Vowel Sign Ai +\u1A72;Tai Tham Vowel Sign Tham Ai +\u1A73;Tai Tham Vowel Sign Oa Above +\u1A74;Tai Tham Sign Mai Kang +\u1A75;Tai Tham Sign Tone-1 +\u1A76;Tai Tham Sign Tone-2 +\u1A77;Tai Tham Sign Khuen Tone-3 +\u1A78;Tai Tham Sign Khuen Tone-4 +\u1A79;Tai Tham Sign Khuen Tone-5 +\u1A7A;Tai Tham Sign Ra Haam +\u1A7B;Tai Tham Sign Mai Sam +\u1A7C;Tai Tham Sign Khuen-Lue Karan +\u1A7F;Tai Tham Combining Cryptogrammic Dot +\u1A80;Tai Tham Hora Digit Zero +\u1A81;Tai Tham Hora Digit One +\u1A82;Tai Tham Hora Digit Two +\u1A83;Tai Tham Hora Digit Three +\u1A84;Tai Tham Hora Digit Four +\u1A85;Tai Tham Hora Digit Five +\u1A86;Tai Tham Hora Digit Six +\u1A87;Tai Tham Hora Digit Seven +\u1A88;Tai Tham Hora Digit Eight +\u1A89;Tai Tham Hora Digit Nine +\u1A90;Tai Tham Tham Digit Zero +\u1A91;Tai Tham Tham Digit One +\u1A92;Tai Tham Tham Digit Two +\u1A93;Tai Tham Tham Digit Three +\u1A94;Tai Tham Tham Digit Four +\u1A95;Tai Tham Tham Digit Five +\u1A96;Tai Tham Tham Digit Six +\u1A97;Tai Tham Tham Digit Seven +\u1A98;Tai Tham Tham Digit Eight +\u1A99;Tai Tham Tham Digit Nine +\u1AA0;Tai Tham Sign Wiang +\u1AA1;Tai Tham Sign Wiangwaak +\u1AA2;Tai Tham Sign Sawan +\u1AA3;Tai Tham Sign Keow +\u1AA4;Tai Tham Sign Hoy +\u1AA5;Tai Tham Sign Dokmai +\u1AA6;Tai Tham Sign Reversed Rotated Rana +\u1AA7;Tai Tham Sign Mai Yamok +\u1AA8;Tai Tham Sign Kaan +\u1AA9;Tai Tham Sign Kaankuu +\u1AAA;Tai Tham Sign Satkaan +\u1AAB;Tai Tham Sign Satkaankuu +\u1AAC;Tai Tham Sign Hang +\u1AAD;Tai Tham Sign Caang +\u1AB0;Combining Doubled Circumflex Accent +\u1AB1;Combining Diaeresis-Ring +\u1AB2;Combining Infinity +\u1AB3;Combining Downwards Arrow +\u1AB4;Combining Triple Dot +\u1AB5;Combining X-X Below +\u1AB6;Combining Wiggly Line Below +\u1AB7;Combining Open Mark Below +\u1AB8;Combining Double Open Mark Below +\u1AB9;Combining Light Centralization Stroke Below +\u1ABA;Combining Strong Centralization Stroke Below +\u1ABB;Combining Parentheses Above +\u1ABC;Combining Double Parentheses Above +\u1ABD;Combining Parentheses Below +\u1ABE;Combining Parentheses Overlay +\u1ABF;Combining Latin Small Letter W Below +\u1AC0;Combining Latin Small Letter Turned W Below +\u1AC1;Combining Left Parenthesis Above Left +\u1AC2;Combining Right Parenthesis Above Right +\u1AC3;Combining Left Parenthesis Below Left +\u1AC4;Combining Right Parenthesis Below Right +\u1AC5;Combining Square Brackets Above +\u1AC6;Combining Number Sign Above +\u1AC7;Combining Inverted Double Arch Above +\u1AC8;Combining Plus Sign Above +\u1AC9;Combining Double Plus Sign Above +\u1ACA;Combining Double Plus Sign Below +\u1ACB;Combining Triple Acute Accent +\u1ACC;Combining Latin Small Letter Insular G +\u1ACD;Combining Latin Small Letter Insular R +\u1ACE;Combining Latin Small Letter Insular T +\u1B00;Balinese Sign Ulu Ricem +\u1B01;Balinese Sign Ulu Candra +\u1B02;Balinese Sign Cecek +\u1B03;Balinese Sign Surang +\u1B04;Balinese Sign Bisah +\u1B05;Balinese Letter Akara +\u1B06;Balinese Letter Akara Tedung +\u1B07;Balinese Letter Ikara +\u1B08;Balinese Letter Ikara Tedung +\u1B09;Balinese Letter Ukara +\u1B0A;Balinese Letter Ukara Tedung +\u1B0B;Balinese Letter Ra Repa +\u1B0C;Balinese Letter Ra Repa Tedung +\u1B0D;Balinese Letter La Lenga +\u1B0E;Balinese Letter La Lenga Tedung +\u1B0F;Balinese Letter Ekara +\u1B10;Balinese Letter Aikara +\u1B11;Balinese Letter Okara +\u1B12;Balinese Letter Okara Tedung +\u1B13;Balinese Letter Ka +\u1B14;Balinese Letter Ka Mahaprana +\u1B15;Balinese Letter Ga +\u1B16;Balinese Letter Ga Gora +\u1B17;Balinese Letter Nga +\u1B18;Balinese Letter Ca +\u1B19;Balinese Letter Ca Laca +\u1B1A;Balinese Letter Ja +\u1B1B;Balinese Letter Ja Jera +\u1B1C;Balinese Letter Nya +\u1B1D;Balinese Letter Ta Latik +\u1B1E;Balinese Letter Ta Murda Mahaprana +\u1B1F;Balinese Letter Da Murda Alpaprana +\u1B20;Balinese Letter Da Murda Mahaprana +\u1B21;Balinese Letter Na Rambat +\u1B22;Balinese Letter Ta +\u1B23;Balinese Letter Ta Tawa +\u1B24;Balinese Letter Da +\u1B25;Balinese Letter Da Madu +\u1B26;Balinese Letter Na +\u1B27;Balinese Letter Pa +\u1B28;Balinese Letter Pa Kapal +\u1B29;Balinese Letter Ba +\u1B2A;Balinese Letter Ba Kembang +\u1B2B;Balinese Letter Ma +\u1B2C;Balinese Letter Ya +\u1B2D;Balinese Letter Ra +\u1B2E;Balinese Letter La +\u1B2F;Balinese Letter Wa +\u1B30;Balinese Letter Sa Saga +\u1B31;Balinese Letter Sa Sapa +\u1B32;Balinese Letter Sa +\u1B33;Balinese Letter Ha +\u1B34;Balinese Sign Rerekan +\u1B35;Balinese Vowel Sign Tedung +\u1B36;Balinese Vowel Sign Ulu +\u1B37;Balinese Vowel Sign Ulu Sari +\u1B38;Balinese Vowel Sign Suku +\u1B39;Balinese Vowel Sign Suku Ilut +\u1B3A;Balinese Vowel Sign Ra Repa +\u1B3B;Balinese Vowel Sign Ra Repa Tedung +\u1B3C;Balinese Vowel Sign La Lenga +\u1B3D;Balinese Vowel Sign La Lenga Tedung +\u1B3E;Balinese Vowel Sign Taling +\u1B3F;Balinese Vowel Sign Taling Repa +\u1B40;Balinese Vowel Sign Taling Tedung +\u1B41;Balinese Vowel Sign Taling Repa Tedung +\u1B42;Balinese Vowel Sign Pepet +\u1B43;Balinese Vowel Sign Pepet Tedung +\u1B44;Balinese Adeg Adeg +\u1B45;Balinese Letter Kaf Sasak +\u1B46;Balinese Letter Khot Sasak +\u1B47;Balinese Letter Tzir Sasak +\u1B48;Balinese Letter Ef Sasak +\u1B49;Balinese Letter Ve Sasak +\u1B4A;Balinese Letter Zal Sasak +\u1B4B;Balinese Letter Asyura Sasak +\u1B4C;Balinese Letter Archaic Jnya +\u1B50;Balinese Digit Zero +\u1B51;Balinese Digit One +\u1B52;Balinese Digit Two +\u1B53;Balinese Digit Three +\u1B54;Balinese Digit Four +\u1B55;Balinese Digit Five +\u1B56;Balinese Digit Six +\u1B57;Balinese Digit Seven +\u1B58;Balinese Digit Eight +\u1B59;Balinese Digit Nine +\u1B5A;Balinese Panti +\u1B5B;Balinese Pamada +\u1B5C;Balinese Windu +\u1B5D;Balinese Carik Pamungkah +\u1B5E;Balinese Carik Siki +\u1B5F;Balinese Carik Pareren +\u1B60;Balinese Pameneng +\u1B61;Balinese Musical Symbol Dong +\u1B62;Balinese Musical Symbol Deng +\u1B63;Balinese Musical Symbol Dung +\u1B64;Balinese Musical Symbol Dang +\u1B65;Balinese Musical Symbol Dang Surang +\u1B66;Balinese Musical Symbol Ding +\u1B67;Balinese Musical Symbol Daeng +\u1B68;Balinese Musical Symbol Deung +\u1B69;Balinese Musical Symbol Daing +\u1B6A;Balinese Musical Symbol Dang Gede +\u1B6B;Balinese Musical Symbol Combining Tegeh +\u1B6C;Balinese Musical Symbol Combining Endep +\u1B6D;Balinese Musical Symbol Combining Kempul +\u1B6E;Balinese Musical Symbol Combining Kempli +\u1B6F;Balinese Musical Symbol Combining Jegogan +\u1B70;Balinese Musical Symbol Combining Kempul With Jegogan +\u1B71;Balinese Musical Symbol Combining Kempli With Jegogan +\u1B72;Balinese Musical Symbol Combining Bende +\u1B73;Balinese Musical Symbol Combining Gong +\u1B74;Balinese Musical Symbol Right-Hand Open Dug +\u1B75;Balinese Musical Symbol Right-Hand Open Dag +\u1B76;Balinese Musical Symbol Right-Hand Closed Tuk +\u1B77;Balinese Musical Symbol Right-Hand Closed Tak +\u1B78;Balinese Musical Symbol Left-Hand Open Pang +\u1B79;Balinese Musical Symbol Left-Hand Open Pung +\u1B7A;Balinese Musical Symbol Left-Hand Closed Plak +\u1B7B;Balinese Musical Symbol Left-Hand Closed Pluk +\u1B7C;Balinese Musical Symbol Left-Hand Open Ping +\u1B7D;Balinese Panti Lantang +\u1B7E;Balinese Pamada Lantang +\u1B80;Sundanese Sign Panyecek +\u1B81;Sundanese Sign Panglayar +\u1B82;Sundanese Sign Pangwisad +\u1B83;Sundanese Letter A +\u1B84;Sundanese Letter I +\u1B85;Sundanese Letter U +\u1B86;Sundanese Letter Ae +\u1B87;Sundanese Letter O +\u1B88;Sundanese Letter E +\u1B89;Sundanese Letter Eu +\u1B8A;Sundanese Letter Ka +\u1B8B;Sundanese Letter Qa +\u1B8C;Sundanese Letter Ga +\u1B8D;Sundanese Letter Nga +\u1B8E;Sundanese Letter Ca +\u1B8F;Sundanese Letter Ja +\u1B90;Sundanese Letter Za +\u1B91;Sundanese Letter Nya +\u1B92;Sundanese Letter Ta +\u1B93;Sundanese Letter Da +\u1B94;Sundanese Letter Na +\u1B95;Sundanese Letter Pa +\u1B96;Sundanese Letter Fa +\u1B97;Sundanese Letter Va +\u1B98;Sundanese Letter Ba +\u1B99;Sundanese Letter Ma +\u1B9A;Sundanese Letter Ya +\u1B9B;Sundanese Letter Ra +\u1B9C;Sundanese Letter La +\u1B9D;Sundanese Letter Wa +\u1B9E;Sundanese Letter Sa +\u1B9F;Sundanese Letter Xa +\u1BA0;Sundanese Letter Ha +\u1BA1;Sundanese Consonant Sign Pamingkal +\u1BA2;Sundanese Consonant Sign Panyakra +\u1BA3;Sundanese Consonant Sign Panyiku +\u1BA4;Sundanese Vowel Sign Panghulu +\u1BA5;Sundanese Vowel Sign Panyuku +\u1BA6;Sundanese Vowel Sign Panaelaeng +\u1BA7;Sundanese Vowel Sign Panolong +\u1BA8;Sundanese Vowel Sign Pamepet +\u1BA9;Sundanese Vowel Sign Paneuleung +\u1BAA;Sundanese Sign Pamaaeh +\u1BAB;Sundanese Sign Virama +\u1BAC;Sundanese Consonant Sign Pasangan Ma +\u1BAD;Sundanese Consonant Sign Pasangan Wa +\u1BAE;Sundanese Letter Kha +\u1BAF;Sundanese Letter Sya +\u1BB0;Sundanese Digit Zero +\u1BB1;Sundanese Digit One +\u1BB2;Sundanese Digit Two +\u1BB3;Sundanese Digit Three +\u1BB4;Sundanese Digit Four +\u1BB5;Sundanese Digit Five +\u1BB6;Sundanese Digit Six +\u1BB7;Sundanese Digit Seven +\u1BB8;Sundanese Digit Eight +\u1BB9;Sundanese Digit Nine +\u1BBA;Sundanese Avagraha +\u1BBB;Sundanese Letter Reu +\u1BBC;Sundanese Letter Leu +\u1BBD;Sundanese Letter Bha +\u1BBE;Sundanese Letter Final K +\u1BBF;Sundanese Letter Final M +\u1BC0;Batak Letter A +\u1BC1;Batak Letter Simalungun A +\u1BC2;Batak Letter Ha +\u1BC3;Batak Letter Simalungun Ha +\u1BC4;Batak Letter Mandailing Ha +\u1BC5;Batak Letter Ba +\u1BC6;Batak Letter Karo Ba +\u1BC7;Batak Letter Pa +\u1BC8;Batak Letter Simalungun Pa +\u1BC9;Batak Letter Na +\u1BCA;Batak Letter Mandailing Na +\u1BCB;Batak Letter Wa +\u1BCC;Batak Letter Simalungun Wa +\u1BCD;Batak Letter Pakpak Wa +\u1BCE;Batak Letter Ga +\u1BCF;Batak Letter Simalungun Ga +\u1BD0;Batak Letter Ja +\u1BD1;Batak Letter Da +\u1BD2;Batak Letter Ra +\u1BD3;Batak Letter Simalungun Ra +\u1BD4;Batak Letter Ma +\u1BD5;Batak Letter Simalungun Ma +\u1BD6;Batak Letter Southern Ta +\u1BD7;Batak Letter Northern Ta +\u1BD8;Batak Letter Sa +\u1BD9;Batak Letter Simalungun Sa +\u1BDA;Batak Letter Mandailing Sa +\u1BDB;Batak Letter Ya +\u1BDC;Batak Letter Simalungun Ya +\u1BDD;Batak Letter Nga +\u1BDE;Batak Letter La +\u1BDF;Batak Letter Simalungun La +\u1BE0;Batak Letter Nya +\u1BE1;Batak Letter Ca +\u1BE2;Batak Letter Nda +\u1BE3;Batak Letter Mba +\u1BE4;Batak Letter I +\u1BE5;Batak Letter U +\u1BE6;Batak Sign Tompi +\u1BE7;Batak Vowel Sign E +\u1BE8;Batak Vowel Sign Pakpak E +\u1BE9;Batak Vowel Sign Ee +\u1BEA;Batak Vowel Sign I +\u1BEB;Batak Vowel Sign Karo I +\u1BEC;Batak Vowel Sign O +\u1BED;Batak Vowel Sign Karo O +\u1BEE;Batak Vowel Sign U +\u1BEF;Batak Vowel Sign U For Simalungun Sa +\u1BF0;Batak Consonant Sign Ng +\u1BF1;Batak Consonant Sign H +\u1BF2;Batak Pangolat +\u1BF3;Batak Panongonan +\u1BFC;Batak Symbol Bindu Na Metek +\u1BFD;Batak Symbol Bindu Pinarboras +\u1BFE;Batak Symbol Bindu Judul +\u1BFF;Batak Symbol Bindu Pangolat +\u1C00;Lepcha Letter Ka +\u1C01;Lepcha Letter Kla +\u1C02;Lepcha Letter Kha +\u1C03;Lepcha Letter Ga +\u1C04;Lepcha Letter Gla +\u1C05;Lepcha Letter Nga +\u1C06;Lepcha Letter Ca +\u1C07;Lepcha Letter Cha +\u1C08;Lepcha Letter Ja +\u1C09;Lepcha Letter Nya +\u1C0A;Lepcha Letter Ta +\u1C0B;Lepcha Letter Tha +\u1C0C;Lepcha Letter Da +\u1C0D;Lepcha Letter Na +\u1C0E;Lepcha Letter Pa +\u1C0F;Lepcha Letter Pla +\u1C10;Lepcha Letter Pha +\u1C11;Lepcha Letter Fa +\u1C12;Lepcha Letter Fla +\u1C13;Lepcha Letter Ba +\u1C14;Lepcha Letter Bla +\u1C15;Lepcha Letter Ma +\u1C16;Lepcha Letter Mla +\u1C17;Lepcha Letter Tsa +\u1C18;Lepcha Letter Tsha +\u1C19;Lepcha Letter Dza +\u1C1A;Lepcha Letter Ya +\u1C1B;Lepcha Letter Ra +\u1C1C;Lepcha Letter La +\u1C1D;Lepcha Letter Ha +\u1C1E;Lepcha Letter Hla +\u1C1F;Lepcha Letter Va +\u1C20;Lepcha Letter Sa +\u1C21;Lepcha Letter Sha +\u1C22;Lepcha Letter Wa +\u1C23;Lepcha Letter A +\u1C24;Lepcha Subjoined Letter Ya +\u1C25;Lepcha Subjoined Letter Ra +\u1C26;Lepcha Vowel Sign Aa +\u1C27;Lepcha Vowel Sign I +\u1C28;Lepcha Vowel Sign O +\u1C29;Lepcha Vowel Sign Oo +\u1C2A;Lepcha Vowel Sign U +\u1C2B;Lepcha Vowel Sign Uu +\u1C2C;Lepcha Vowel Sign E +\u1C2D;Lepcha Consonant Sign K +\u1C2E;Lepcha Consonant Sign M +\u1C2F;Lepcha Consonant Sign L +\u1C30;Lepcha Consonant Sign N +\u1C31;Lepcha Consonant Sign P +\u1C32;Lepcha Consonant Sign R +\u1C33;Lepcha Consonant Sign T +\u1C34;Lepcha Consonant Sign Nyin-Do +\u1C35;Lepcha Consonant Sign Kang +\u1C36;Lepcha Sign Ran +\u1C37;Lepcha Sign Nukta +\u1C3B;Lepcha Punctuation Ta-Rol +\u1C3C;Lepcha Punctuation Nyet Thyoom Ta-Rol +\u1C3D;Lepcha Punctuation Cer-Wa +\u1C3E;Lepcha Punctuation Tshook Cer-Wa +\u1C3F;Lepcha Punctuation Tshook +\u1C40;Lepcha Digit Zero +\u1C41;Lepcha Digit One +\u1C42;Lepcha Digit Two +\u1C43;Lepcha Digit Three +\u1C44;Lepcha Digit Four +\u1C45;Lepcha Digit Five +\u1C46;Lepcha Digit Six +\u1C47;Lepcha Digit Seven +\u1C48;Lepcha Digit Eight +\u1C49;Lepcha Digit Nine +\u1C4D;Lepcha Letter Tta +\u1C4E;Lepcha Letter Ttha +\u1C4F;Lepcha Letter Dda +\u1C50;Ol Chiki Digit Zero +\u1C51;Ol Chiki Digit One +\u1C52;Ol Chiki Digit Two +\u1C53;Ol Chiki Digit Three +\u1C54;Ol Chiki Digit Four +\u1C55;Ol Chiki Digit Five +\u1C56;Ol Chiki Digit Six +\u1C57;Ol Chiki Digit Seven +\u1C58;Ol Chiki Digit Eight +\u1C59;Ol Chiki Digit Nine +\u1C5A;Ol Chiki Letter La +\u1C5B;Ol Chiki Letter At +\u1C5C;Ol Chiki Letter Ag +\u1C5D;Ol Chiki Letter Ang +\u1C5E;Ol Chiki Letter Al +\u1C5F;Ol Chiki Letter Laa +\u1C60;Ol Chiki Letter Aak +\u1C61;Ol Chiki Letter Aaj +\u1C62;Ol Chiki Letter Aam +\u1C63;Ol Chiki Letter Aaw +\u1C64;Ol Chiki Letter Li +\u1C65;Ol Chiki Letter Is +\u1C66;Ol Chiki Letter Ih +\u1C67;Ol Chiki Letter Iny +\u1C68;Ol Chiki Letter Ir +\u1C69;Ol Chiki Letter Lu +\u1C6A;Ol Chiki Letter Uc +\u1C6B;Ol Chiki Letter Ud +\u1C6C;Ol Chiki Letter Unn +\u1C6D;Ol Chiki Letter Uy +\u1C6E;Ol Chiki Letter Le +\u1C6F;Ol Chiki Letter Ep +\u1C70;Ol Chiki Letter Edd +\u1C71;Ol Chiki Letter En +\u1C72;Ol Chiki Letter Err +\u1C73;Ol Chiki Letter Lo +\u1C74;Ol Chiki Letter Ott +\u1C75;Ol Chiki Letter Ob +\u1C76;Ol Chiki Letter Ov +\u1C77;Ol Chiki Letter Oh +\u1C78;Ol Chiki Mu Ttuddag +\u1C79;Ol Chiki Gaahlaa Ttuddaag +\u1C7A;Ol Chiki Mu-Gaahlaa Ttuddaag +\u1C7B;Ol Chiki Relaa +\u1C7C;Ol Chiki Phaarkaa +\u1C7D;Ol Chiki Ahad +\u1C7E;Ol Chiki Punctuation Mucaad +\u1C7F;Ol Chiki Punctuation Double Mucaad +\u1C80;Cyrillic Small Letter Rounded Ve +\u1C81;Cyrillic Small Letter Long-Legged De +\u1C82;Cyrillic Small Letter Narrow O +\u1C83;Cyrillic Small Letter Wide Es +\u1C84;Cyrillic Small Letter Tall Te +\u1C85;Cyrillic Small Letter Three-Legged Te +\u1C86;Cyrillic Small Letter Tall Hard Sign +\u1C87;Cyrillic Small Letter Tall Yat +\u1C88;Cyrillic Small Letter Unblended Uk +\u1C90;Georgian Mtavruli Capital Letter An +\u1C91;Georgian Mtavruli Capital Letter Ban +\u1C92;Georgian Mtavruli Capital Letter Gan +\u1C93;Georgian Mtavruli Capital Letter Don +\u1C94;Georgian Mtavruli Capital Letter En +\u1C95;Georgian Mtavruli Capital Letter Vin +\u1C96;Georgian Mtavruli Capital Letter Zen +\u1C97;Georgian Mtavruli Capital Letter Tan +\u1C98;Georgian Mtavruli Capital Letter In +\u1C99;Georgian Mtavruli Capital Letter Kan +\u1C9A;Georgian Mtavruli Capital Letter Las +\u1C9B;Georgian Mtavruli Capital Letter Man +\u1C9C;Georgian Mtavruli Capital Letter Nar +\u1C9D;Georgian Mtavruli Capital Letter On +\u1C9E;Georgian Mtavruli Capital Letter Par +\u1C9F;Georgian Mtavruli Capital Letter Zhar +\u1CA0;Georgian Mtavruli Capital Letter Rae +\u1CA1;Georgian Mtavruli Capital Letter San +\u1CA2;Georgian Mtavruli Capital Letter Tar +\u1CA3;Georgian Mtavruli Capital Letter Un +\u1CA4;Georgian Mtavruli Capital Letter Phar +\u1CA5;Georgian Mtavruli Capital Letter Khar +\u1CA6;Georgian Mtavruli Capital Letter Ghan +\u1CA7;Georgian Mtavruli Capital Letter Qar +\u1CA8;Georgian Mtavruli Capital Letter Shin +\u1CA9;Georgian Mtavruli Capital Letter Chin +\u1CAA;Georgian Mtavruli Capital Letter Can +\u1CAB;Georgian Mtavruli Capital Letter Jil +\u1CAC;Georgian Mtavruli Capital Letter Cil +\u1CAD;Georgian Mtavruli Capital Letter Char +\u1CAE;Georgian Mtavruli Capital Letter Xan +\u1CAF;Georgian Mtavruli Capital Letter Jhan +\u1CB0;Georgian Mtavruli Capital Letter Hae +\u1CB1;Georgian Mtavruli Capital Letter He +\u1CB2;Georgian Mtavruli Capital Letter Hie +\u1CB3;Georgian Mtavruli Capital Letter We +\u1CB4;Georgian Mtavruli Capital Letter Har +\u1CB5;Georgian Mtavruli Capital Letter Hoe +\u1CB6;Georgian Mtavruli Capital Letter Fi +\u1CB7;Georgian Mtavruli Capital Letter Yn +\u1CB8;Georgian Mtavruli Capital Letter Elifi +\u1CB9;Georgian Mtavruli Capital Letter Turned Gan +\u1CBA;Georgian Mtavruli Capital Letter Ain +\u1CBD;Georgian Mtavruli Capital Letter Aen +\u1CBE;Georgian Mtavruli Capital Letter Hard Sign +\u1CBF;Georgian Mtavruli Capital Letter Labial Sign +\u1CC0;Sundanese Punctuation Bindu Surya +\u1CC1;Sundanese Punctuation Bindu Panglong +\u1CC2;Sundanese Punctuation Bindu Purnama +\u1CC3;Sundanese Punctuation Bindu Cakra +\u1CC4;Sundanese Punctuation Bindu Leu Satanga +\u1CC5;Sundanese Punctuation Bindu Ka Satanga +\u1CC6;Sundanese Punctuation Bindu Da Satanga +\u1CC7;Sundanese Punctuation Bindu Ba Satanga +\u1CD0;Vedic Tone Karshana +\u1CD1;Vedic Tone Shara +\u1CD2;Vedic Tone Prenkha +\u1CD3;Vedic Sign Nihshvasa +\u1CD4;Vedic Sign Yajurvedic Midline Svarita +\u1CD5;Vedic Tone Yajurvedic Aggravated Independent Svarita +\u1CD6;Vedic Tone Yajurvedic Independent Svarita +\u1CD7;Vedic Tone Yajurvedic Kathaka Independent Svarita +\u1CD8;Vedic Tone Candra Below +\u1CD9;Vedic Tone Yajurvedic Kathaka Independent Svarita Schroeder +\u1CDA;Vedic Tone Double Svarita +\u1CDB;Vedic Tone Triple Svarita +\u1CDC;Vedic Tone Kathaka Anudatta +\u1CDD;Vedic Tone Dot Below +\u1CDE;Vedic Tone Two Dots Below +\u1CDF;Vedic Tone Three Dots Below +\u1CE0;Vedic Tone Rigvedic Kashmiri Independent Svarita +\u1CE1;Vedic Tone Atharvavedic Independent Svarita +\u1CE2;Vedic Sign Visarga Svarita +\u1CE3;Vedic Sign Visarga Udatta +\u1CE4;Vedic Sign Reversed Visarga Udatta +\u1CE5;Vedic Sign Visarga Anudatta +\u1CE6;Vedic Sign Reversed Visarga Anudatta +\u1CE7;Vedic Sign Visarga Udatta With Tail +\u1CE8;Vedic Sign Visarga Anudatta With Tail +\u1CE9;Vedic Sign Anusvara Antargomukha +\u1CEA;Vedic Sign Anusvara Bahirgomukha +\u1CEB;Vedic Sign Anusvara Vamagomukha +\u1CEC;Vedic Sign Anusvara Vamagomukha With Tail +\u1CED;Vedic Sign Tiryak +\u1CEE;Vedic Sign Hexiform Long Anusvara +\u1CEF;Vedic Sign Long Anusvara +\u1CF0;Vedic Sign Rthang Long Anusvara +\u1CF1;Vedic Sign Anusvara Ubhayato Mukha +\u1CF2;Vedic Sign Ardhavisarga +\u1CF3;Vedic Sign Rotated Ardhavisarga +\u1CF4;Vedic Tone Candra Above +\u1CF5;Vedic Sign Jihvamuliya +\u1CF6;Vedic Sign Upadhmaniya +\u1CF7;Vedic Sign Atikrama +\u1CF8;Vedic Tone Ring Above +\u1CF9;Vedic Tone Double Ring Above +\u1CFA;Vedic Sign Double Anusvara Antargomukha +\u1D00;Latin Letter Small Capital A +\u1D01;Latin Letter Small Capital Ae +\u1D02;Latin Small Letter Turned Ae +\u1D03;Latin Letter Small Capital Barred B +\u1D04;Latin Letter Small Capital C +\u1D05;Latin Letter Small Capital D +\u1D06;Latin Letter Small Capital Eth +\u1D07;Latin Letter Small Capital E +\u1D08;Latin Small Letter Turned Open E +\u1D09;Latin Small Letter Turned I +\u1D0A;Latin Letter Small Capital J +\u1D0B;Latin Letter Small Capital K +\u1D0C;Latin Letter Small Capital L With Stroke +\u1D0D;Latin Letter Small Capital M +\u1D0E;Latin Letter Small Capital Reversed N +\u1D0F;Latin Letter Small Capital O +\u1D10;Latin Letter Small Capital Open O +\u1D11;Latin Small Letter Sideways O +\u1D12;Latin Small Letter Sideways Open O +\u1D13;Latin Small Letter Sideways O With Stroke +\u1D14;Latin Small Letter Turned Oe +\u1D15;Latin Letter Small Capital Ou +\u1D16;Latin Small Letter Top Half O +\u1D17;Latin Small Letter Bottom Half O +\u1D18;Latin Letter Small Capital P +\u1D19;Latin Letter Small Capital Reversed R +\u1D1A;Latin Letter Small Capital Turned R +\u1D1B;Latin Letter Small Capital T +\u1D1C;Latin Letter Small Capital U +\u1D1D;Latin Small Letter Sideways U +\u1D1E;Latin Small Letter Sideways Diaeresized U +\u1D1F;Latin Small Letter Sideways Turned M +\u1D20;Latin Letter Small Capital V +\u1D21;Latin Letter Small Capital W +\u1D22;Latin Letter Small Capital Z +\u1D23;Latin Letter Small Capital Ezh +\u1D24;Latin Letter Voiced Laryngeal Spirant +\u1D25;Latin Letter Ain +\u1D26;Greek Letter Small Capital Gamma +\u1D27;Greek Letter Small Capital Lamda +\u1D28;Greek Letter Small Capital Pi +\u1D29;Greek Letter Small Capital Rho +\u1D2A;Greek Letter Small Capital Psi +\u1D2B;Cyrillic Letter Small Capital El +\u1D2C;Modifier Letter Capital A +\u1D2D;Modifier Letter Capital Ae +\u1D2E;Modifier Letter Capital B +\u1D2F;Modifier Letter Capital Barred B +\u1D30;Modifier Letter Capital D +\u1D31;Modifier Letter Capital E +\u1D32;Modifier Letter Capital Reversed E +\u1D33;Modifier Letter Capital G +\u1D34;Modifier Letter Capital H +\u1D35;Modifier Letter Capital I +\u1D36;Modifier Letter Capital J +\u1D37;Modifier Letter Capital K +\u1D38;Modifier Letter Capital L +\u1D39;Modifier Letter Capital M +\u1D3A;Modifier Letter Capital N +\u1D3B;Modifier Letter Capital Reversed N +\u1D3C;Modifier Letter Capital O +\u1D3D;Modifier Letter Capital Ou +\u1D3E;Modifier Letter Capital P +\u1D3F;Modifier Letter Capital R +\u1D40;Modifier Letter Capital T +\u1D41;Modifier Letter Capital U +\u1D42;Modifier Letter Capital W +\u1D43;Modifier Letter Small A +\u1D44;Modifier Letter Small Turned A +\u1D45;Modifier Letter Small Alpha +\u1D46;Modifier Letter Small Turned Ae +\u1D47;Modifier Letter Small B +\u1D48;Modifier Letter Small D +\u1D49;Modifier Letter Small E +\u1D4A;Modifier Letter Small Schwa +\u1D4B;Modifier Letter Small Open E +\u1D4C;Modifier Letter Small Turned Open E +\u1D4D;Modifier Letter Small G +\u1D4E;Modifier Letter Small Turned I +\u1D4F;Modifier Letter Small K +\u1D50;Modifier Letter Small M +\u1D51;Modifier Letter Small Eng +\u1D52;Modifier Letter Small O +\u1D53;Modifier Letter Small Open O +\u1D54;Modifier Letter Small Top Half O +\u1D55;Modifier Letter Small Bottom Half O +\u1D56;Modifier Letter Small P +\u1D57;Modifier Letter Small T +\u1D58;Modifier Letter Small U +\u1D59;Modifier Letter Small Sideways U +\u1D5A;Modifier Letter Small Turned M +\u1D5B;Modifier Letter Small V +\u1D5C;Modifier Letter Small Ain +\u1D5D;Modifier Letter Small Beta +\u1D5E;Modifier Letter Small Greek Gamma +\u1D5F;Modifier Letter Small Delta +\u1D60;Modifier Letter Small Greek Phi +\u1D61;Modifier Letter Small Chi +\u1D62;Latin Subscript Small Letter I +\u1D63;Latin Subscript Small Letter R +\u1D64;Latin Subscript Small Letter U +\u1D65;Latin Subscript Small Letter V +\u1D66;Greek Subscript Small Letter Beta +\u1D67;Greek Subscript Small Letter Gamma +\u1D68;Greek Subscript Small Letter Rho +\u1D69;Greek Subscript Small Letter Phi +\u1D6A;Greek Subscript Small Letter Chi +\u1D6B;Latin Small Letter Ue +\u1D6C;Latin Small Letter B With Middle Tilde +\u1D6D;Latin Small Letter D With Middle Tilde +\u1D6E;Latin Small Letter F With Middle Tilde +\u1D6F;Latin Small Letter M With Middle Tilde +\u1D70;Latin Small Letter N With Middle Tilde +\u1D71;Latin Small Letter P With Middle Tilde +\u1D72;Latin Small Letter R With Middle Tilde +\u1D73;Latin Small Letter R With Fishhook And Middle Tilde +\u1D74;Latin Small Letter S With Middle Tilde +\u1D75;Latin Small Letter T With Middle Tilde +\u1D76;Latin Small Letter Z With Middle Tilde +\u1D77;Latin Small Letter Turned G +\u1D78;Modifier Letter Cyrillic En +\u1D79;Latin Small Letter Insular G +\u1D7A;Latin Small Letter Th With Strikethrough +\u1D7B;Latin Small Capital Letter I With Stroke +\u1D7C;Latin Small Letter Iota With Stroke +\u1D7D;Latin Small Letter P With Stroke +\u1D7E;Latin Small Capital Letter U With Stroke +\u1D7F;Latin Small Letter Upsilon With Stroke +\u1D80;Latin Small Letter B With Palatal Hook +\u1D81;Latin Small Letter D With Palatal Hook +\u1D82;Latin Small Letter F With Palatal Hook +\u1D83;Latin Small Letter G With Palatal Hook +\u1D84;Latin Small Letter K With Palatal Hook +\u1D85;Latin Small Letter L With Palatal Hook +\u1D86;Latin Small Letter M With Palatal Hook +\u1D87;Latin Small Letter N With Palatal Hook +\u1D88;Latin Small Letter P With Palatal Hook +\u1D89;Latin Small Letter R With Palatal Hook +\u1D8A;Latin Small Letter S With Palatal Hook +\u1D8B;Latin Small Letter Esh With Palatal Hook +\u1D8C;Latin Small Letter V With Palatal Hook +\u1D8D;Latin Small Letter X With Palatal Hook +\u1D8E;Latin Small Letter Z With Palatal Hook +\u1D8F;Latin Small Letter A With Retroflex Hook +\u1D90;Latin Small Letter Alpha With Retroflex Hook +\u1D91;Latin Small Letter D With Hook And Tail +\u1D92;Latin Small Letter E With Retroflex Hook +\u1D93;Latin Small Letter Open E With Retroflex Hook +\u1D94;Latin Small Letter Reversed Open E With Retroflex Hook +\u1D95;Latin Small Letter Schwa With Retroflex Hook +\u1D96;Latin Small Letter I With Retroflex Hook +\u1D97;Latin Small Letter Open O With Retroflex Hook +\u1D98;Latin Small Letter Esh With Retroflex Hook +\u1D99;Latin Small Letter U With Retroflex Hook +\u1D9A;Latin Small Letter Ezh With Retroflex Hook +\u1D9B;Modifier Letter Small Turned Alpha +\u1D9C;Modifier Letter Small C +\u1D9D;Modifier Letter Small C With Curl +\u1D9E;Modifier Letter Small Eth +\u1D9F;Modifier Letter Small Reversed Open E +\u1DA0;Modifier Letter Small F +\u1DA1;Modifier Letter Small Dotless J With Stroke +\u1DA2;Modifier Letter Small Script G +\u1DA3;Modifier Letter Small Turned H +\u1DA4;Modifier Letter Small I With Stroke +\u1DA5;Modifier Letter Small Iota +\u1DA6;Modifier Letter Small Capital I +\u1DA7;Modifier Letter Small Capital I With Stroke +\u1DA8;Modifier Letter Small J With Crossed-Tail +\u1DA9;Modifier Letter Small L With Retroflex Hook +\u1DAA;Modifier Letter Small L With Palatal Hook +\u1DAB;Modifier Letter Small Capital L +\u1DAC;Modifier Letter Small M With Hook +\u1DAD;Modifier Letter Small Turned M With Long Leg +\u1DAE;Modifier Letter Small N With Left Hook +\u1DAF;Modifier Letter Small N With Retroflex Hook +\u1DB0;Modifier Letter Small Capital N +\u1DB1;Modifier Letter Small Barred O +\u1DB2;Modifier Letter Small Phi +\u1DB3;Modifier Letter Small S With Hook +\u1DB4;Modifier Letter Small Esh +\u1DB5;Modifier Letter Small T With Palatal Hook +\u1DB6;Modifier Letter Small U Bar +\u1DB7;Modifier Letter Small Upsilon +\u1DB8;Modifier Letter Small Capital U +\u1DB9;Modifier Letter Small V With Hook +\u1DBA;Modifier Letter Small Turned V +\u1DBB;Modifier Letter Small Z +\u1DBC;Modifier Letter Small Z With Retroflex Hook +\u1DBD;Modifier Letter Small Z With Curl +\u1DBE;Modifier Letter Small Ezh +\u1DBF;Modifier Letter Small Theta +\u1DC0;Combining Dotted Grave Accent +\u1DC1;Combining Dotted Acute Accent +\u1DC2;Combining Snake Below +\u1DC3;Combining Suspension Mark +\u1DC4;Combining Macron-Acute +\u1DC5;Combining Grave-Macron +\u1DC6;Combining Macron-Grave +\u1DC7;Combining Acute-Macron +\u1DC8;Combining Grave-Acute-Grave +\u1DC9;Combining Acute-Grave-Acute +\u1DCA;Combining Latin Small Letter R Below +\u1DCB;Combining Breve-Macron +\u1DCC;Combining Macron-Breve +\u1DCD;Combining Double Circumflex Above +\u1DCE;Combining Ogonek Above +\u1DCF;Combining Zigzag Below +\u1DD0;Combining Is Below +\u1DD1;Combining Ur Above +\u1DD2;Combining Us Above +\u1DD3;Combining Latin Small Letter Flattened Open A Above +\u1DD4;Combining Latin Small Letter Ae +\u1DD5;Combining Latin Small Letter Ao +\u1DD6;Combining Latin Small Letter Av +\u1DD7;Combining Latin Small Letter C Cedilla +\u1DD8;Combining Latin Small Letter Insular D +\u1DD9;Combining Latin Small Letter Eth +\u1DDA;Combining Latin Small Letter G +\u1DDB;Combining Latin Letter Small Capital G +\u1DDC;Combining Latin Small Letter K +\u1DDD;Combining Latin Small Letter L +\u1DDE;Combining Latin Letter Small Capital L +\u1DDF;Combining Latin Letter Small Capital M +\u1DE0;Combining Latin Small Letter N +\u1DE1;Combining Latin Letter Small Capital N +\u1DE2;Combining Latin Letter Small Capital R +\u1DE3;Combining Latin Small Letter R Rotunda +\u1DE4;Combining Latin Small Letter S +\u1DE5;Combining Latin Small Letter Long S +\u1DE6;Combining Latin Small Letter Z +\u1DE7;Combining Latin Small Letter Alpha +\u1DE8;Combining Latin Small Letter B +\u1DE9;Combining Latin Small Letter Beta +\u1DEA;Combining Latin Small Letter Schwa +\u1DEB;Combining Latin Small Letter F +\u1DEC;Combining Latin Small Letter L With Double Middle Tilde +\u1DED;Combining Latin Small Letter O With Light Centralization Stroke +\u1DEE;Combining Latin Small Letter P +\u1DEF;Combining Latin Small Letter Esh +\u1DF0;Combining Latin Small Letter U With Light Centralization Stroke +\u1DF1;Combining Latin Small Letter W +\u1DF2;Combining Latin Small Letter A With Diaeresis +\u1DF3;Combining Latin Small Letter O With Diaeresis +\u1DF4;Combining Latin Small Letter U With Diaeresis +\u1DF5;Combining Up Tack Above +\u1DF6;Combining Kavyka Above Right +\u1DF7;Combining Kavyka Above Left +\u1DF8;Combining Dot Above Left +\u1DF9;Combining Wide Inverted Bridge Below +\u1DFA;Combining Dot Below Left +\u1DFB;Combining Deletion Mark +\u1DFC;Combining Double Inverted Breve Below +\u1DFD;Combining Almost Equal To Below +\u1DFE;Combining Left Arrowhead Above +\u1DFF;Combining Right Arrowhead And Down Arrowhead Below +\u1E00;Latin Capital Letter A With Ring Below +\u1E01;Latin Small Letter A With Ring Below +\u1E02;Latin Capital Letter B With Dot Above +\u1E03;Latin Small Letter B With Dot Above +\u1E04;Latin Capital Letter B With Dot Below +\u1E05;Latin Small Letter B With Dot Below +\u1E06;Latin Capital Letter B With Line Below +\u1E07;Latin Small Letter B With Line Below +\u1E08;Latin Capital Letter C With Cedilla And Acute +\u1E09;Latin Small Letter C With Cedilla And Acute +\u1E0A;Latin Capital Letter D With Dot Above +\u1E0B;Latin Small Letter D With Dot Above +\u1E0C;Latin Capital Letter D With Dot Below +\u1E0D;Latin Small Letter D With Dot Below +\u1E0E;Latin Capital Letter D With Line Below +\u1E0F;Latin Small Letter D With Line Below +\u1E10;Latin Capital Letter D With Cedilla +\u1E11;Latin Small Letter D With Cedilla +\u1E12;Latin Capital Letter D With Circumflex Below +\u1E13;Latin Small Letter D With Circumflex Below +\u1E14;Latin Capital Letter E With Macron And Grave +\u1E15;Latin Small Letter E With Macron And Grave +\u1E16;Latin Capital Letter E With Macron And Acute +\u1E17;Latin Small Letter E With Macron And Acute +\u1E18;Latin Capital Letter E With Circumflex Below +\u1E19;Latin Small Letter E With Circumflex Below +\u1E1A;Latin Capital Letter E With Tilde Below +\u1E1B;Latin Small Letter E With Tilde Below +\u1E1C;Latin Capital Letter E With Cedilla And Breve +\u1E1D;Latin Small Letter E With Cedilla And Breve +\u1E1E;Latin Capital Letter F With Dot Above +\u1E1F;Latin Small Letter F With Dot Above +\u1E20;Latin Capital Letter G With Macron +\u1E21;Latin Small Letter G With Macron +\u1E22;Latin Capital Letter H With Dot Above +\u1E23;Latin Small Letter H With Dot Above +\u1E24;Latin Capital Letter H With Dot Below +\u1E25;Latin Small Letter H With Dot Below +\u1E26;Latin Capital Letter H With Diaeresis +\u1E27;Latin Small Letter H With Diaeresis +\u1E28;Latin Capital Letter H With Cedilla +\u1E29;Latin Small Letter H With Cedilla +\u1E2A;Latin Capital Letter H With Breve Below +\u1E2B;Latin Small Letter H With Breve Below +\u1E2C;Latin Capital Letter I With Tilde Below +\u1E2D;Latin Small Letter I With Tilde Below +\u1E2E;Latin Capital Letter I With Diaeresis And Acute +\u1E2F;Latin Small Letter I With Diaeresis And Acute +\u1E30;Latin Capital Letter K With Acute +\u1E31;Latin Small Letter K With Acute +\u1E32;Latin Capital Letter K With Dot Below +\u1E33;Latin Small Letter K With Dot Below +\u1E34;Latin Capital Letter K With Line Below +\u1E35;Latin Small Letter K With Line Below +\u1E36;Latin Capital Letter L With Dot Below +\u1E37;Latin Small Letter L With Dot Below +\u1E38;Latin Capital Letter L With Dot Below And Macron +\u1E39;Latin Small Letter L With Dot Below And Macron +\u1E3A;Latin Capital Letter L With Line Below +\u1E3B;Latin Small Letter L With Line Below +\u1E3C;Latin Capital Letter L With Circumflex Below +\u1E3D;Latin Small Letter L With Circumflex Below +\u1E3E;Latin Capital Letter M With Acute +\u1E3F;Latin Small Letter M With Acute +\u1E40;Latin Capital Letter M With Dot Above +\u1E41;Latin Small Letter M With Dot Above +\u1E42;Latin Capital Letter M With Dot Below +\u1E43;Latin Small Letter M With Dot Below +\u1E44;Latin Capital Letter N With Dot Above +\u1E45;Latin Small Letter N With Dot Above +\u1E46;Latin Capital Letter N With Dot Below +\u1E47;Latin Small Letter N With Dot Below +\u1E48;Latin Capital Letter N With Line Below +\u1E49;Latin Small Letter N With Line Below +\u1E4A;Latin Capital Letter N With Circumflex Below +\u1E4B;Latin Small Letter N With Circumflex Below +\u1E4C;Latin Capital Letter O With Tilde And Acute +\u1E4D;Latin Small Letter O With Tilde And Acute +\u1E4E;Latin Capital Letter O With Tilde And Diaeresis +\u1E4F;Latin Small Letter O With Tilde And Diaeresis +\u1E50;Latin Capital Letter O With Macron And Grave +\u1E51;Latin Small Letter O With Macron And Grave +\u1E52;Latin Capital Letter O With Macron And Acute +\u1E53;Latin Small Letter O With Macron And Acute +\u1E54;Latin Capital Letter P With Acute +\u1E55;Latin Small Letter P With Acute +\u1E56;Latin Capital Letter P With Dot Above +\u1E57;Latin Small Letter P With Dot Above +\u1E58;Latin Capital Letter R With Dot Above +\u1E59;Latin Small Letter R With Dot Above +\u1E5A;Latin Capital Letter R With Dot Below +\u1E5B;Latin Small Letter R With Dot Below +\u1E5C;Latin Capital Letter R With Dot Below And Macron +\u1E5D;Latin Small Letter R With Dot Below And Macron +\u1E5E;Latin Capital Letter R With Line Below +\u1E5F;Latin Small Letter R With Line Below +\u1E60;Latin Capital Letter S With Dot Above +\u1E61;Latin Small Letter S With Dot Above +\u1E62;Latin Capital Letter S With Dot Below +\u1E63;Latin Small Letter S With Dot Below +\u1E64;Latin Capital Letter S With Acute And Dot Above +\u1E65;Latin Small Letter S With Acute And Dot Above +\u1E66;Latin Capital Letter S With Caron And Dot Above +\u1E67;Latin Small Letter S With Caron And Dot Above +\u1E68;Latin Capital Letter S With Dot Below And Dot Above +\u1E69;Latin Small Letter S With Dot Below And Dot Above +\u1E6A;Latin Capital Letter T With Dot Above +\u1E6B;Latin Small Letter T With Dot Above +\u1E6C;Latin Capital Letter T With Dot Below +\u1E6D;Latin Small Letter T With Dot Below +\u1E6E;Latin Capital Letter T With Line Below +\u1E6F;Latin Small Letter T With Line Below +\u1E70;Latin Capital Letter T With Circumflex Below +\u1E71;Latin Small Letter T With Circumflex Below +\u1E72;Latin Capital Letter U With Diaeresis Below +\u1E73;Latin Small Letter U With Diaeresis Below +\u1E74;Latin Capital Letter U With Tilde Below +\u1E75;Latin Small Letter U With Tilde Below +\u1E76;Latin Capital Letter U With Circumflex Below +\u1E77;Latin Small Letter U With Circumflex Below +\u1E78;Latin Capital Letter U With Tilde And Acute +\u1E79;Latin Small Letter U With Tilde And Acute +\u1E7A;Latin Capital Letter U With Macron And Diaeresis +\u1E7B;Latin Small Letter U With Macron And Diaeresis +\u1E7C;Latin Capital Letter V With Tilde +\u1E7D;Latin Small Letter V With Tilde +\u1E7E;Latin Capital Letter V With Dot Below +\u1E7F;Latin Small Letter V With Dot Below +\u1E80;Latin Capital Letter W With Grave +\u1E81;Latin Small Letter W With Grave +\u1E82;Latin Capital Letter W With Acute +\u1E83;Latin Small Letter W With Acute +\u1E84;Latin Capital Letter W With Diaeresis +\u1E85;Latin Small Letter W With Diaeresis +\u1E86;Latin Capital Letter W With Dot Above +\u1E87;Latin Small Letter W With Dot Above +\u1E88;Latin Capital Letter W With Dot Below +\u1E89;Latin Small Letter W With Dot Below +\u1E8A;Latin Capital Letter X With Dot Above +\u1E8B;Latin Small Letter X With Dot Above +\u1E8C;Latin Capital Letter X With Diaeresis +\u1E8D;Latin Small Letter X With Diaeresis +\u1E8E;Latin Capital Letter Y With Dot Above +\u1E8F;Latin Small Letter Y With Dot Above +\u1E90;Latin Capital Letter Z With Circumflex +\u1E91;Latin Small Letter Z With Circumflex +\u1E92;Latin Capital Letter Z With Dot Below +\u1E93;Latin Small Letter Z With Dot Below +\u1E94;Latin Capital Letter Z With Line Below +\u1E95;Latin Small Letter Z With Line Below +\u1E96;Latin Small Letter H With Line Below +\u1E97;Latin Small Letter T With Diaeresis +\u1E98;Latin Small Letter W With Ring Above +\u1E99;Latin Small Letter Y With Ring Above +\u1E9A;Latin Small Letter A With Right Half Ring +\u1E9B;Latin Small Letter Long S With Dot Above +\u1E9C;Latin Small Letter Long S With Diagonal Stroke +\u1E9D;Latin Small Letter Long S With High Stroke +\u1E9E;Latin Capital Letter Sharp S +\u1E9F;Latin Small Letter Delta +\u1EA0;Latin Capital Letter A With Dot Below +\u1EA1;Latin Small Letter A With Dot Below +\u1EA2;Latin Capital Letter A With Hook Above +\u1EA3;Latin Small Letter A With Hook Above +\u1EA4;Latin Capital Letter A With Circumflex And Acute +\u1EA5;Latin Small Letter A With Circumflex And Acute +\u1EA6;Latin Capital Letter A With Circumflex And Grave +\u1EA7;Latin Small Letter A With Circumflex And Grave +\u1EA8;Latin Capital Letter A With Circumflex And Hook Above +\u1EA9;Latin Small Letter A With Circumflex And Hook Above +\u1EAA;Latin Capital Letter A With Circumflex And Tilde +\u1EAB;Latin Small Letter A With Circumflex And Tilde +\u1EAC;Latin Capital Letter A With Circumflex And Dot Below +\u1EAD;Latin Small Letter A With Circumflex And Dot Below +\u1EAE;Latin Capital Letter A With Breve And Acute +\u1EAF;Latin Small Letter A With Breve And Acute +\u1EB0;Latin Capital Letter A With Breve And Grave +\u1EB1;Latin Small Letter A With Breve And Grave +\u1EB2;Latin Capital Letter A With Breve And Hook Above +\u1EB3;Latin Small Letter A With Breve And Hook Above +\u1EB4;Latin Capital Letter A With Breve And Tilde +\u1EB5;Latin Small Letter A With Breve And Tilde +\u1EB6;Latin Capital Letter A With Breve And Dot Below +\u1EB7;Latin Small Letter A With Breve And Dot Below +\u1EB8;Latin Capital Letter E With Dot Below +\u1EB9;Latin Small Letter E With Dot Below +\u1EBA;Latin Capital Letter E With Hook Above +\u1EBB;Latin Small Letter E With Hook Above +\u1EBC;Latin Capital Letter E With Tilde +\u1EBD;Latin Small Letter E With Tilde +\u1EBE;Latin Capital Letter E With Circumflex And Acute +\u1EBF;Latin Small Letter E With Circumflex And Acute +\u1EC0;Latin Capital Letter E With Circumflex And Grave +\u1EC1;Latin Small Letter E With Circumflex And Grave +\u1EC2;Latin Capital Letter E With Circumflex And Hook Above +\u1EC3;Latin Small Letter E With Circumflex And Hook Above +\u1EC4;Latin Capital Letter E With Circumflex And Tilde +\u1EC5;Latin Small Letter E With Circumflex And Tilde +\u1EC6;Latin Capital Letter E With Circumflex And Dot Below +\u1EC7;Latin Small Letter E With Circumflex And Dot Below +\u1EC8;Latin Capital Letter I With Hook Above +\u1EC9;Latin Small Letter I With Hook Above +\u1ECA;Latin Capital Letter I With Dot Below +\u1ECB;Latin Small Letter I With Dot Below +\u1ECC;Latin Capital Letter O With Dot Below +\u1ECD;Latin Small Letter O With Dot Below +\u1ECE;Latin Capital Letter O With Hook Above +\u1ECF;Latin Small Letter O With Hook Above +\u1ED0;Latin Capital Letter O With Circumflex And Acute +\u1ED1;Latin Small Letter O With Circumflex And Acute +\u1ED2;Latin Capital Letter O With Circumflex And Grave +\u1ED3;Latin Small Letter O With Circumflex And Grave +\u1ED4;Latin Capital Letter O With Circumflex And Hook Above +\u1ED5;Latin Small Letter O With Circumflex And Hook Above +\u1ED6;Latin Capital Letter O With Circumflex And Tilde +\u1ED7;Latin Small Letter O With Circumflex And Tilde +\u1ED8;Latin Capital Letter O With Circumflex And Dot Below +\u1ED9;Latin Small Letter O With Circumflex And Dot Below +\u1EDA;Latin Capital Letter O With Horn And Acute +\u1EDB;Latin Small Letter O With Horn And Acute +\u1EDC;Latin Capital Letter O With Horn And Grave +\u1EDD;Latin Small Letter O With Horn And Grave +\u1EDE;Latin Capital Letter O With Horn And Hook Above +\u1EDF;Latin Small Letter O With Horn And Hook Above +\u1EE0;Latin Capital Letter O With Horn And Tilde +\u1EE1;Latin Small Letter O With Horn And Tilde +\u1EE2;Latin Capital Letter O With Horn And Dot Below +\u1EE3;Latin Small Letter O With Horn And Dot Below +\u1EE4;Latin Capital Letter U With Dot Below +\u1EE5;Latin Small Letter U With Dot Below +\u1EE6;Latin Capital Letter U With Hook Above +\u1EE7;Latin Small Letter U With Hook Above +\u1EE8;Latin Capital Letter U With Horn And Acute +\u1EE9;Latin Small Letter U With Horn And Acute +\u1EEA;Latin Capital Letter U With Horn And Grave +\u1EEB;Latin Small Letter U With Horn And Grave +\u1EEC;Latin Capital Letter U With Horn And Hook Above +\u1EED;Latin Small Letter U With Horn And Hook Above +\u1EEE;Latin Capital Letter U With Horn And Tilde +\u1EEF;Latin Small Letter U With Horn And Tilde +\u1EF0;Latin Capital Letter U With Horn And Dot Below +\u1EF1;Latin Small Letter U With Horn And Dot Below +\u1EF2;Latin Capital Letter Y With Grave +\u1EF3;Latin Small Letter Y With Grave +\u1EF4;Latin Capital Letter Y With Dot Below +\u1EF5;Latin Small Letter Y With Dot Below +\u1EF6;Latin Capital Letter Y With Hook Above +\u1EF7;Latin Small Letter Y With Hook Above +\u1EF8;Latin Capital Letter Y With Tilde +\u1EF9;Latin Small Letter Y With Tilde +\u1EFA;Latin Capital Letter Middle-Welsh Ll +\u1EFB;Latin Small Letter Middle-Welsh Ll +\u1EFC;Latin Capital Letter Middle-Welsh V +\u1EFD;Latin Small Letter Middle-Welsh V +\u1EFE;Latin Capital Letter Y With Loop +\u1EFF;Latin Small Letter Y With Loop +\u1F00;Greek Small Letter Alpha With Psili +\u1F01;Greek Small Letter Alpha With Dasia +\u1F02;Greek Small Letter Alpha With Psili And Varia +\u1F03;Greek Small Letter Alpha With Dasia And Varia +\u1F04;Greek Small Letter Alpha With Psili And Oxia +\u1F05;Greek Small Letter Alpha With Dasia And Oxia +\u1F06;Greek Small Letter Alpha With Psili And Perispomeni +\u1F07;Greek Small Letter Alpha With Dasia And Perispomeni +\u1F08;Greek Capital Letter Alpha With Psili +\u1F09;Greek Capital Letter Alpha With Dasia +\u1F0A;Greek Capital Letter Alpha With Psili And Varia +\u1F0B;Greek Capital Letter Alpha With Dasia And Varia +\u1F0C;Greek Capital Letter Alpha With Psili And Oxia +\u1F0D;Greek Capital Letter Alpha With Dasia And Oxia +\u1F0E;Greek Capital Letter Alpha With Psili And Perispomeni +\u1F0F;Greek Capital Letter Alpha With Dasia And Perispomeni +\u1F10;Greek Small Letter Epsilon With Psili +\u1F11;Greek Small Letter Epsilon With Dasia +\u1F12;Greek Small Letter Epsilon With Psili And Varia +\u1F13;Greek Small Letter Epsilon With Dasia And Varia +\u1F14;Greek Small Letter Epsilon With Psili And Oxia +\u1F15;Greek Small Letter Epsilon With Dasia And Oxia +\u1F18;Greek Capital Letter Epsilon With Psili +\u1F19;Greek Capital Letter Epsilon With Dasia +\u1F1A;Greek Capital Letter Epsilon With Psili And Varia +\u1F1B;Greek Capital Letter Epsilon With Dasia And Varia +\u1F1C;Greek Capital Letter Epsilon With Psili And Oxia +\u1F1D;Greek Capital Letter Epsilon With Dasia And Oxia +\u1F20;Greek Small Letter Eta With Psili +\u1F21;Greek Small Letter Eta With Dasia +\u1F22;Greek Small Letter Eta With Psili And Varia +\u1F23;Greek Small Letter Eta With Dasia And Varia +\u1F24;Greek Small Letter Eta With Psili And Oxia +\u1F25;Greek Small Letter Eta With Dasia And Oxia +\u1F26;Greek Small Letter Eta With Psili And Perispomeni +\u1F27;Greek Small Letter Eta With Dasia And Perispomeni +\u1F28;Greek Capital Letter Eta With Psili +\u1F29;Greek Capital Letter Eta With Dasia +\u1F2A;Greek Capital Letter Eta With Psili And Varia +\u1F2B;Greek Capital Letter Eta With Dasia And Varia +\u1F2C;Greek Capital Letter Eta With Psili And Oxia +\u1F2D;Greek Capital Letter Eta With Dasia And Oxia +\u1F2E;Greek Capital Letter Eta With Psili And Perispomeni +\u1F2F;Greek Capital Letter Eta With Dasia And Perispomeni +\u1F30;Greek Small Letter Iota With Psili +\u1F31;Greek Small Letter Iota With Dasia +\u1F32;Greek Small Letter Iota With Psili And Varia +\u1F33;Greek Small Letter Iota With Dasia And Varia +\u1F34;Greek Small Letter Iota With Psili And Oxia +\u1F35;Greek Small Letter Iota With Dasia And Oxia +\u1F36;Greek Small Letter Iota With Psili And Perispomeni +\u1F37;Greek Small Letter Iota With Dasia And Perispomeni +\u1F38;Greek Capital Letter Iota With Psili +\u1F39;Greek Capital Letter Iota With Dasia +\u1F3A;Greek Capital Letter Iota With Psili And Varia +\u1F3B;Greek Capital Letter Iota With Dasia And Varia +\u1F3C;Greek Capital Letter Iota With Psili And Oxia +\u1F3D;Greek Capital Letter Iota With Dasia And Oxia +\u1F3E;Greek Capital Letter Iota With Psili And Perispomeni +\u1F3F;Greek Capital Letter Iota With Dasia And Perispomeni +\u1F40;Greek Small Letter Omicron With Psili +\u1F41;Greek Small Letter Omicron With Dasia +\u1F42;Greek Small Letter Omicron With Psili And Varia +\u1F43;Greek Small Letter Omicron With Dasia And Varia +\u1F44;Greek Small Letter Omicron With Psili And Oxia +\u1F45;Greek Small Letter Omicron With Dasia And Oxia +\u1F48;Greek Capital Letter Omicron With Psili +\u1F49;Greek Capital Letter Omicron With Dasia +\u1F4A;Greek Capital Letter Omicron With Psili And Varia +\u1F4B;Greek Capital Letter Omicron With Dasia And Varia +\u1F4C;Greek Capital Letter Omicron With Psili And Oxia +\u1F4D;Greek Capital Letter Omicron With Dasia And Oxia +\u1F50;Greek Small Letter Upsilon With Psili +\u1F51;Greek Small Letter Upsilon With Dasia +\u1F52;Greek Small Letter Upsilon With Psili And Varia +\u1F53;Greek Small Letter Upsilon With Dasia And Varia +\u1F54;Greek Small Letter Upsilon With Psili And Oxia +\u1F55;Greek Small Letter Upsilon With Dasia And Oxia +\u1F56;Greek Small Letter Upsilon With Psili And Perispomeni +\u1F57;Greek Small Letter Upsilon With Dasia And Perispomeni +\u1F59;Greek Capital Letter Upsilon With Dasia +\u1F5B;Greek Capital Letter Upsilon With Dasia And Varia +\u1F5D;Greek Capital Letter Upsilon With Dasia And Oxia +\u1F5F;Greek Capital Letter Upsilon With Dasia And Perispomeni +\u1F60;Greek Small Letter Omega With Psili +\u1F61;Greek Small Letter Omega With Dasia +\u1F62;Greek Small Letter Omega With Psili And Varia +\u1F63;Greek Small Letter Omega With Dasia And Varia +\u1F64;Greek Small Letter Omega With Psili And Oxia +\u1F65;Greek Small Letter Omega With Dasia And Oxia +\u1F66;Greek Small Letter Omega With Psili And Perispomeni +\u1F67;Greek Small Letter Omega With Dasia And Perispomeni +\u1F68;Greek Capital Letter Omega With Psili +\u1F69;Greek Capital Letter Omega With Dasia +\u1F6A;Greek Capital Letter Omega With Psili And Varia +\u1F6B;Greek Capital Letter Omega With Dasia And Varia +\u1F6C;Greek Capital Letter Omega With Psili And Oxia +\u1F6D;Greek Capital Letter Omega With Dasia And Oxia +\u1F6E;Greek Capital Letter Omega With Psili And Perispomeni +\u1F6F;Greek Capital Letter Omega With Dasia And Perispomeni +\u1F70;Greek Small Letter Alpha With Varia +\u1F71;Greek Small Letter Alpha With Oxia +\u1F72;Greek Small Letter Epsilon With Varia +\u1F73;Greek Small Letter Epsilon With Oxia +\u1F74;Greek Small Letter Eta With Varia +\u1F75;Greek Small Letter Eta With Oxia +\u1F76;Greek Small Letter Iota With Varia +\u1F77;Greek Small Letter Iota With Oxia +\u1F78;Greek Small Letter Omicron With Varia +\u1F79;Greek Small Letter Omicron With Oxia +\u1F7A;Greek Small Letter Upsilon With Varia +\u1F7B;Greek Small Letter Upsilon With Oxia +\u1F7C;Greek Small Letter Omega With Varia +\u1F7D;Greek Small Letter Omega With Oxia +\u1F80;Greek Small Letter Alpha With Psili And Ypogegrammeni +\u1F81;Greek Small Letter Alpha With Dasia And Ypogegrammeni +\u1F82;Greek Small Letter Alpha With Psili And Varia And Ypogegrammeni +\u1F83;Greek Small Letter Alpha With Dasia And Varia And Ypogegrammeni +\u1F84;Greek Small Letter Alpha With Psili And Oxia And Ypogegrammeni +\u1F85;Greek Small Letter Alpha With Dasia And Oxia And Ypogegrammeni +\u1F86;Greek Small Letter Alpha With Psili And Perispomeni And Ypogegrammeni +\u1F87;Greek Small Letter Alpha With Dasia And Perispomeni And Ypogegrammeni +\u1F88;Greek Capital Letter Alpha With Psili And Prosgegrammeni +\u1F89;Greek Capital Letter Alpha With Dasia And Prosgegrammeni +\u1F8A;Greek Capital Letter Alpha With Psili And Varia And Prosgegrammeni +\u1F8B;Greek Capital Letter Alpha With Dasia And Varia And Prosgegrammeni +\u1F8C;Greek Capital Letter Alpha With Psili And Oxia And Prosgegrammeni +\u1F8D;Greek Capital Letter Alpha With Dasia And Oxia And Prosgegrammeni +\u1F8E;Greek Capital Letter Alpha With Psili And Perispomeni And Prosgegrammeni +\u1F8F;Greek Capital Letter Alpha With Dasia And Perispomeni And Prosgegrammeni +\u1F90;Greek Small Letter Eta With Psili And Ypogegrammeni +\u1F91;Greek Small Letter Eta With Dasia And Ypogegrammeni +\u1F92;Greek Small Letter Eta With Psili And Varia And Ypogegrammeni +\u1F93;Greek Small Letter Eta With Dasia And Varia And Ypogegrammeni +\u1F94;Greek Small Letter Eta With Psili And Oxia And Ypogegrammeni +\u1F95;Greek Small Letter Eta With Dasia And Oxia And Ypogegrammeni +\u1F96;Greek Small Letter Eta With Psili And Perispomeni And Ypogegrammeni +\u1F97;Greek Small Letter Eta With Dasia And Perispomeni And Ypogegrammeni +\u1F98;Greek Capital Letter Eta With Psili And Prosgegrammeni +\u1F99;Greek Capital Letter Eta With Dasia And Prosgegrammeni +\u1F9A;Greek Capital Letter Eta With Psili And Varia And Prosgegrammeni +\u1F9B;Greek Capital Letter Eta With Dasia And Varia And Prosgegrammeni +\u1F9C;Greek Capital Letter Eta With Psili And Oxia And Prosgegrammeni +\u1F9D;Greek Capital Letter Eta With Dasia And Oxia And Prosgegrammeni +\u1F9E;Greek Capital Letter Eta With Psili And Perispomeni And Prosgegrammeni +\u1F9F;Greek Capital Letter Eta With Dasia And Perispomeni And Prosgegrammeni +\u1FA0;Greek Small Letter Omega With Psili And Ypogegrammeni +\u1FA1;Greek Small Letter Omega With Dasia And Ypogegrammeni +\u1FA2;Greek Small Letter Omega With Psili And Varia And Ypogegrammeni +\u1FA3;Greek Small Letter Omega With Dasia And Varia And Ypogegrammeni +\u1FA4;Greek Small Letter Omega With Psili And Oxia And Ypogegrammeni +\u1FA5;Greek Small Letter Omega With Dasia And Oxia And Ypogegrammeni +\u1FA6;Greek Small Letter Omega With Psili And Perispomeni And Ypogegrammeni +\u1FA7;Greek Small Letter Omega With Dasia And Perispomeni And Ypogegrammeni +\u1FA8;Greek Capital Letter Omega With Psili And Prosgegrammeni +\u1FA9;Greek Capital Letter Omega With Dasia And Prosgegrammeni +\u1FAA;Greek Capital Letter Omega With Psili And Varia And Prosgegrammeni +\u1FAB;Greek Capital Letter Omega With Dasia And Varia And Prosgegrammeni +\u1FAC;Greek Capital Letter Omega With Psili And Oxia And Prosgegrammeni +\u1FAD;Greek Capital Letter Omega With Dasia And Oxia And Prosgegrammeni +\u1FAE;Greek Capital Letter Omega With Psili And Perispomeni And Prosgegrammeni +\u1FAF;Greek Capital Letter Omega With Dasia And Perispomeni And Prosgegrammeni +\u1FB0;Greek Small Letter Alpha With Vrachy +\u1FB1;Greek Small Letter Alpha With Macron +\u1FB2;Greek Small Letter Alpha With Varia And Ypogegrammeni +\u1FB3;Greek Small Letter Alpha With Ypogegrammeni +\u1FB4;Greek Small Letter Alpha With Oxia And Ypogegrammeni +\u1FB6;Greek Small Letter Alpha With Perispomeni +\u1FB7;Greek Small Letter Alpha With Perispomeni And Ypogegrammeni +\u1FB8;Greek Capital Letter Alpha With Vrachy +\u1FB9;Greek Capital Letter Alpha With Macron +\u1FBA;Greek Capital Letter Alpha With Varia +\u1FBB;Greek Capital Letter Alpha With Oxia +\u1FBC;Greek Capital Letter Alpha With Prosgegrammeni +\u1FBD;Greek Koronis +\u1FBE;Greek Prosgegrammeni +\u1FBF;Greek Psili +\u1FC0;Greek Perispomeni +\u1FC1;Greek Dialytika And Perispomeni +\u1FC2;Greek Small Letter Eta With Varia And Ypogegrammeni +\u1FC3;Greek Small Letter Eta With Ypogegrammeni +\u1FC4;Greek Small Letter Eta With Oxia And Ypogegrammeni +\u1FC6;Greek Small Letter Eta With Perispomeni +\u1FC7;Greek Small Letter Eta With Perispomeni And Ypogegrammeni +\u1FC8;Greek Capital Letter Epsilon With Varia +\u1FC9;Greek Capital Letter Epsilon With Oxia +\u1FCA;Greek Capital Letter Eta With Varia +\u1FCB;Greek Capital Letter Eta With Oxia +\u1FCC;Greek Capital Letter Eta With Prosgegrammeni +\u1FCD;Greek Psili And Varia +\u1FCE;Greek Psili And Oxia +\u1FCF;Greek Psili And Perispomeni +\u1FD0;Greek Small Letter Iota With Vrachy +\u1FD1;Greek Small Letter Iota With Macron +\u1FD2;Greek Small Letter Iota With Dialytika And Varia +\u1FD3;Greek Small Letter Iota With Dialytika And Oxia +\u1FD6;Greek Small Letter Iota With Perispomeni +\u1FD7;Greek Small Letter Iota With Dialytika And Perispomeni +\u1FD8;Greek Capital Letter Iota With Vrachy +\u1FD9;Greek Capital Letter Iota With Macron +\u1FDA;Greek Capital Letter Iota With Varia +\u1FDB;Greek Capital Letter Iota With Oxia +\u1FDD;Greek Dasia And Varia +\u1FDE;Greek Dasia And Oxia +\u1FDF;Greek Dasia And Perispomeni +\u1FE0;Greek Small Letter Upsilon With Vrachy +\u1FE1;Greek Small Letter Upsilon With Macron +\u1FE2;Greek Small Letter Upsilon With Dialytika And Varia +\u1FE3;Greek Small Letter Upsilon With Dialytika And Oxia +\u1FE4;Greek Small Letter Rho With Psili +\u1FE5;Greek Small Letter Rho With Dasia +\u1FE6;Greek Small Letter Upsilon With Perispomeni +\u1FE7;Greek Small Letter Upsilon With Dialytika And Perispomeni +\u1FE8;Greek Capital Letter Upsilon With Vrachy +\u1FE9;Greek Capital Letter Upsilon With Macron +\u1FEA;Greek Capital Letter Upsilon With Varia +\u1FEB;Greek Capital Letter Upsilon With Oxia +\u1FEC;Greek Capital Letter Rho With Dasia +\u1FED;Greek Dialytika And Varia +\u1FEE;Greek Dialytika And Oxia +\u1FEF;Greek Varia +\u1FF2;Greek Small Letter Omega With Varia And Ypogegrammeni +\u1FF3;Greek Small Letter Omega With Ypogegrammeni +\u1FF4;Greek Small Letter Omega With Oxia And Ypogegrammeni +\u1FF6;Greek Small Letter Omega With Perispomeni +\u1FF7;Greek Small Letter Omega With Perispomeni And Ypogegrammeni +\u1FF8;Greek Capital Letter Omicron With Varia +\u1FF9;Greek Capital Letter Omicron With Oxia +\u1FFA;Greek Capital Letter Omega With Varia +\u1FFB;Greek Capital Letter Omega With Oxia +\u1FFC;Greek Capital Letter Omega With Prosgegrammeni +\u1FFD;Greek Oxia +\u1FFE;Greek Dasia +\u2000;En Quad +\u2001;Em Quad +\u2002;En Space +\u2003;Em Space +\u2004;Three-Per-Em Space +\u2005;Four-Per-Em Space +\u2006;Six-Per-Em Space +\u2007;Figure Space +\u2008;Punctuation Space +\u2009;Thin Space +\u200A;Hair Space +\u200B;Zero Width Space +\u200C;Zero Width Non-Joiner +\u200D;Zero Width Joiner +\u200E;Left-To-Right Mark +\u200F;Right-To-Left Mark +\u2010;Hyphen +\u2011;Non-Breaking Hyphen +\u2012;Figure Dash +\u2013;En Dash +\u2014;Em Dash +\u2015;Horizontal Bar +\u2016;Double Vertical Line +\u2017;Double Low Line +\u2018;Left Single Quotation Mark +\u2019;Right Single Quotation Mark +\u201A;Single Low-9 Quotation Mark +\u201B;Single High-Reversed-9 Quotation Mark +\u201C;Left Double Quotation Mark +\u201D;Right Double Quotation Mark +\u201E;Double Low-9 Quotation Mark +\u201F;Double High-Reversed-9 Quotation Mark +\u2020;Dagger +\u2021;Double Dagger +\u2022;Bullet +\u2023;Triangular Bullet +\u2024;One Dot Leader +\u2025;Two Dot Leader +\u2026;Horizontal Ellipsis +\u2027;Hyphenation Point +\u2028;Line Separator +\u2029;Paragraph Separator +\u202A;Left-To-Right Embedding +\u202B;Right-To-Left Embedding +\u202C;Pop Directional Formatting +\u202D;Left-To-Right Override +\u202E;Right-To-Left Override +\u202F;Narrow No-Break Space +\u2030;Per Mille Sign +\u2031;Per Ten Thousand Sign +\u2032;Prime +\u2033;Double Prime +\u2034;Triple Prime +\u2035;Reversed Prime +\u2036;Reversed Double Prime +\u2037;Reversed Triple Prime +\u2038;Caret +\u2039;Single Left-Pointing Angle Quotation Mark +\u203A;Single Right-Pointing Angle Quotation Mark +\u203B;Reference Mark +\u203C;Double Exclamation Mark +\u203D;Interrobang +\u203E;Overline +\u203F;Undertie +\u2040;Character Tie +\u2041;Caret Insertion Point +\u2042;Asterism +\u2043;Hyphen Bullet +\u2044;Fraction Slash +\u2045;Left Square Bracket With Quill +\u2046;Right Square Bracket With Quill +\u2047;Double Question Mark +\u2048;Question Exclamation Mark +\u2049;Exclamation Question Mark +\u204A;Tironian Sign Et +\u204B;Reversed Pilcrow Sign +\u204C;Black Leftwards Bullet +\u204D;Black Rightwards Bullet +\u204E;Low Asterisk +\u204F;Reversed Semicolon +\u2050;Close Up +\u2051;Two Asterisks Aligned Vertically +\u2052;Commercial Minus Sign +\u2053;Swung Dash +\u2054;Inverted Undertie +\u2055;Flower Punctuation Mark +\u2056;Three Dot Punctuation +\u2057;Quadruple Prime +\u2058;Four Dot Punctuation +\u2059;Five Dot Punctuation +\u205A;Two Dot Punctuation +\u205B;Four Dot Mark +\u205C;Dotted Cross +\u205D;Tricolon +\u205E;Vertical Four Dots +\u205F;Medium Mathematical Space +\u2060;Word Joiner +\u2061;Function Application +\u2062;Invisible Times +\u2063;Invisible Separator +\u2064;Invisible Plus +\u2066;Left-To-Right Isolate +\u2067;Right-To-Left Isolate +\u2068;First Strong Isolate +\u2069;Pop Directional Isolate +\u206A;Inhibit Symmetric Swapping +\u206B;Activate Symmetric Swapping +\u206C;Inhibit Arabic Form Shaping +\u206D;Activate Arabic Form Shaping +\u206E;National Digit Shapes +\u206F;Nominal Digit Shapes +\u2070;Superscript Zero +\u2071;Superscript Latin Small Letter I +\u2074;Superscript Four +\u2075;Superscript Five +\u2076;Superscript Six +\u2077;Superscript Seven +\u2078;Superscript Eight +\u2079;Superscript Nine +\u207A;Superscript Plus Sign +\u207B;Superscript Minus +\u207C;Superscript Equals Sign +\u207D;Superscript Left Parenthesis +\u207E;Superscript Right Parenthesis +\u207F;Superscript Latin Small Letter N +\u2080;Subscript Zero +\u2081;Subscript One +\u2082;Subscript Two +\u2083;Subscript Three +\u2084;Subscript Four +\u2085;Subscript Five +\u2086;Subscript Six +\u2087;Subscript Seven +\u2088;Subscript Eight +\u2089;Subscript Nine +\u208A;Subscript Plus Sign +\u208B;Subscript Minus +\u208C;Subscript Equals Sign +\u208D;Subscript Left Parenthesis +\u208E;Subscript Right Parenthesis +\u2090;Latin Subscript Small Letter A +\u2091;Latin Subscript Small Letter E +\u2092;Latin Subscript Small Letter O +\u2093;Latin Subscript Small Letter X +\u2094;Latin Subscript Small Letter Schwa +\u2095;Latin Subscript Small Letter H +\u2096;Latin Subscript Small Letter K +\u2097;Latin Subscript Small Letter L +\u2098;Latin Subscript Small Letter M +\u2099;Latin Subscript Small Letter N +\u209A;Latin Subscript Small Letter P +\u209B;Latin Subscript Small Letter S +\u209C;Latin Subscript Small Letter T +\u20A0;Euro-Currency Sign +\u20A1;Colon Sign +\u20A2;Cruzeiro Sign +\u20A3;French Franc Sign +\u20A4;Lira Sign +\u20A5;Mill Sign +\u20A6;Naira Sign +\u20A7;Peseta Sign +\u20A8;Rupee Sign +\u20A9;Won Sign +\u20AA;New Sheqel Sign +\u20AB;Dong Sign +\u20AC;Euro Sign +\u20AD;Kip Sign +\u20AE;Tugrik Sign +\u20AF;Drachma Sign +\u20B0;German Penny Sign +\u20B1;Peso Sign +\u20B2;Guarani Sign +\u20B3;Austral Sign +\u20B4;Hryvnia Sign +\u20B5;Cedi Sign +\u20B6;Livre Tournois Sign +\u20B7;Spesmilo Sign +\u20B8;Tenge Sign +\u20B9;Indian Rupee Sign +\u20BA;Turkish Lira Sign +\u20BB;Nordic Mark Sign +\u20BC;Manat Sign +\u20BD;Ruble Sign +\u20BE;Lari Sign +\u20BF;Bitcoin Sign +\u20C0;Som Sign +\u20D0;Combining Left Harpoon Above +\u20D1;Combining Right Harpoon Above +\u20D2;Combining Long Vertical Line Overlay +\u20D3;Combining Short Vertical Line Overlay +\u20D4;Combining Anticlockwise Arrow Above +\u20D5;Combining Clockwise Arrow Above +\u20D6;Combining Left Arrow Above +\u20D7;Combining Right Arrow Above +\u20D8;Combining Ring Overlay +\u20D9;Combining Clockwise Ring Overlay +\u20DA;Combining Anticlockwise Ring Overlay +\u20DB;Combining Three Dots Above +\u20DC;Combining Four Dots Above +\u20DD;Combining Enclosing Circle +\u20DE;Combining Enclosing Square +\u20DF;Combining Enclosing Diamond +\u20E0;Combining Enclosing Circle Backslash +\u20E1;Combining Left Right Arrow Above +\u20E2;Combining Enclosing Screen +\u20E3;Combining Enclosing Keycap +\u20E4;Combining Enclosing Upward Pointing Triangle +\u20E5;Combining Reverse Solidus Overlay +\u20E6;Combining Double Vertical Stroke Overlay +\u20E7;Combining Annuity Symbol +\u20E8;Combining Triple Underdot +\u20E9;Combining Wide Bridge Above +\u20EA;Combining Leftwards Arrow Overlay +\u20EB;Combining Long Double Solidus Overlay +\u20EC;Combining Rightwards Harpoon With Barb Downwards +\u20ED;Combining Leftwards Harpoon With Barb Downwards +\u20EE;Combining Left Arrow Below +\u20EF;Combining Right Arrow Below +\u20F0;Combining Asterisk Above +\u2100;Account Of +\u2101;Addressed To The Subject +\u2102;Double-Struck Capital C +\u2103;Degree Celsius +\u2104;Centre Line Symbol +\u2105;Care Of +\u2106;Cada Una +\u2107;Euler Constant +\u2108;Scruple +\u2109;Degree Fahrenheit +\u210A;Script Small G +\u210B;Script Capital H +\u210C;Black-Letter Capital H +\u210D;Double-Struck Capital H +\u210E;Planck Constant +\u210F;Planck Constant Over Two Pi +\u2110;Script Capital I +\u2111;Black-Letter Capital I +\u2112;Script Capital L +\u2113;Script Small L +\u2114;L B Bar Symbol +\u2115;Double-Struck Capital N +\u2116;Numero Sign +\u2117;Sound Recording Copyright +\u2118;Script Capital P +\u2119;Double-Struck Capital P +\u211A;Double-Struck Capital Q +\u211B;Script Capital R +\u211C;Black-Letter Capital R +\u211D;Double-Struck Capital R +\u211E;Prescription Take +\u211F;Response +\u2120;Service Mark +\u2121;Telephone Sign +\u2122;Trade Mark Sign +\u2123;Versicle +\u2124;Double-Struck Capital Z +\u2125;Ounce Sign +\u2126;Ohm Sign +\u2127;Inverted Ohm Sign +\u2128;Black-Letter Capital Z +\u2129;Turned Greek Small Letter Iota +\u212A;Kelvin Sign +\u212B;Angstrom Sign +\u212C;Script Capital B +\u212D;Black-Letter Capital C +\u212E;Estimated Symbol +\u212F;Script Small E +\u2130;Script Capital E +\u2131;Script Capital F +\u2132;Turned Capital F +\u2133;Script Capital M +\u2134;Script Small O +\u2135;Alef Symbol +\u2136;Bet Symbol +\u2137;Gimel Symbol +\u2138;Dalet Symbol +\u2139;Information Source +\u213A;Rotated Capital Q +\u213B;Facsimile Sign +\u213C;Double-Struck Small Pi +\u213D;Double-Struck Small Gamma +\u213E;Double-Struck Capital Gamma +\u213F;Double-Struck Capital Pi +\u2140;Double-Struck N-Ary Summation +\u2141;Turned Sans-Serif Capital G +\u2142;Turned Sans-Serif Capital L +\u2143;Reversed Sans-Serif Capital L +\u2144;Turned Sans-Serif Capital Y +\u2145;Double-Struck Italic Capital D +\u2146;Double-Struck Italic Small D +\u2147;Double-Struck Italic Small E +\u2148;Double-Struck Italic Small I +\u2149;Double-Struck Italic Small J +\u214A;Property Line +\u214B;Turned Ampersand +\u214C;Per Sign +\u214D;Aktieselskab +\u214E;Turned Small F +\u214F;Symbol For Samaritan Source +\u2150;Vulgar Fraction One Seventh +\u2151;Vulgar Fraction One Ninth +\u2152;Vulgar Fraction One Tenth +\u2153;Vulgar Fraction One Third +\u2154;Vulgar Fraction Two Thirds +\u2155;Vulgar Fraction One Fifth +\u2156;Vulgar Fraction Two Fifths +\u2157;Vulgar Fraction Three Fifths +\u2158;Vulgar Fraction Four Fifths +\u2159;Vulgar Fraction One Sixth +\u215A;Vulgar Fraction Five Sixths +\u215B;Vulgar Fraction One Eighth +\u215C;Vulgar Fraction Three Eighths +\u215D;Vulgar Fraction Five Eighths +\u215E;Vulgar Fraction Seven Eighths +\u215F;Fraction Numerator One +\u2160;Roman Numeral One +\u2161;Roman Numeral Two +\u2162;Roman Numeral Three +\u2163;Roman Numeral Four +\u2164;Roman Numeral Five +\u2165;Roman Numeral Six +\u2166;Roman Numeral Seven +\u2167;Roman Numeral Eight +\u2168;Roman Numeral Nine +\u2169;Roman Numeral Ten +\u216A;Roman Numeral Eleven +\u216B;Roman Numeral Twelve +\u216C;Roman Numeral Fifty +\u216D;Roman Numeral One Hundred +\u216E;Roman Numeral Five Hundred +\u216F;Roman Numeral One Thousand +\u2170;Small Roman Numeral One +\u2171;Small Roman Numeral Two +\u2172;Small Roman Numeral Three +\u2173;Small Roman Numeral Four +\u2174;Small Roman Numeral Five +\u2175;Small Roman Numeral Six +\u2176;Small Roman Numeral Seven +\u2177;Small Roman Numeral Eight +\u2178;Small Roman Numeral Nine +\u2179;Small Roman Numeral Ten +\u217A;Small Roman Numeral Eleven +\u217B;Small Roman Numeral Twelve +\u217C;Small Roman Numeral Fifty +\u217D;Small Roman Numeral One Hundred +\u217E;Small Roman Numeral Five Hundred +\u217F;Small Roman Numeral One Thousand +\u2180;Roman Numeral One Thousand C D +\u2181;Roman Numeral Five Thousand +\u2182;Roman Numeral Ten Thousand +\u2183;Roman Numeral Reversed One Hundred +\u2184;Latin Small Letter Reversed C +\u2185;Roman Numeral Six Late Form +\u2186;Roman Numeral Fifty Early Form +\u2187;Roman Numeral Fifty Thousand +\u2188;Roman Numeral One Hundred Thousand +\u2189;Vulgar Fraction Zero Thirds +\u218A;Turned Digit Two +\u218B;Turned Digit Three +\u2190;Leftwards Arrow +\u2191;Upwards Arrow +\u2192;Rightwards Arrow +\u2193;Downwards Arrow +\u2194;Left Right Arrow +\u2195;Up Down Arrow +\u2196;North West Arrow +\u2197;North East Arrow +\u2198;South East Arrow +\u2199;South West Arrow +\u219A;Leftwards Arrow With Stroke +\u219B;Rightwards Arrow With Stroke +\u219C;Leftwards Wave Arrow +\u219D;Rightwards Wave Arrow +\u219E;Leftwards Two Headed Arrow +\u219F;Upwards Two Headed Arrow +\u21A0;Rightwards Two Headed Arrow +\u21A1;Downwards Two Headed Arrow +\u21A2;Leftwards Arrow With Tail +\u21A3;Rightwards Arrow With Tail +\u21A4;Leftwards Arrow From Bar +\u21A5;Upwards Arrow From Bar +\u21A6;Rightwards Arrow From Bar +\u21A7;Downwards Arrow From Bar +\u21A8;Up Down Arrow With Base +\u21A9;Leftwards Arrow With Hook +\u21AA;Rightwards Arrow With Hook +\u21AB;Leftwards Arrow With Loop +\u21AC;Rightwards Arrow With Loop +\u21AD;Left Right Wave Arrow +\u21AE;Left Right Arrow With Stroke +\u21AF;Downwards Zigzag Arrow +\u21B0;Upwards Arrow With Tip Leftwards +\u21B1;Upwards Arrow With Tip Rightwards +\u21B2;Downwards Arrow With Tip Leftwards +\u21B3;Downwards Arrow With Tip Rightwards +\u21B4;Rightwards Arrow With Corner Downwards +\u21B5;Downwards Arrow With Corner Leftwards +\u21B6;Anticlockwise Top Semicircle Arrow +\u21B7;Clockwise Top Semicircle Arrow +\u21B8;North West Arrow To Long Bar +\u21B9;Leftwards Arrow To Bar Over Rightwards Arrow To Bar +\u21BA;Anticlockwise Open Circle Arrow +\u21BB;Clockwise Open Circle Arrow +\u21BC;Leftwards Harpoon With Barb Upwards +\u21BD;Leftwards Harpoon With Barb Downwards +\u21BE;Upwards Harpoon With Barb Rightwards +\u21BF;Upwards Harpoon With Barb Leftwards +\u21C0;Rightwards Harpoon With Barb Upwards +\u21C1;Rightwards Harpoon With Barb Downwards +\u21C2;Downwards Harpoon With Barb Rightwards +\u21C3;Downwards Harpoon With Barb Leftwards +\u21C4;Rightwards Arrow Over Leftwards Arrow +\u21C5;Upwards Arrow Leftwards Of Downwards Arrow +\u21C6;Leftwards Arrow Over Rightwards Arrow +\u21C7;Leftwards Paired Arrows +\u21C8;Upwards Paired Arrows +\u21C9;Rightwards Paired Arrows +\u21CA;Downwards Paired Arrows +\u21CB;Leftwards Harpoon Over Rightwards Harpoon +\u21CC;Rightwards Harpoon Over Leftwards Harpoon +\u21CD;Leftwards Double Arrow With Stroke +\u21CE;Left Right Double Arrow With Stroke +\u21CF;Rightwards Double Arrow With Stroke +\u21D0;Leftwards Double Arrow +\u21D1;Upwards Double Arrow +\u21D2;Rightwards Double Arrow +\u21D3;Downwards Double Arrow +\u21D4;Left Right Double Arrow +\u21D5;Up Down Double Arrow +\u21D6;North West Double Arrow +\u21D7;North East Double Arrow +\u21D8;South East Double Arrow +\u21D9;South West Double Arrow +\u21DA;Leftwards Triple Arrow +\u21DB;Rightwards Triple Arrow +\u21DC;Leftwards Squiggle Arrow +\u21DD;Rightwards Squiggle Arrow +\u21DE;Upwards Arrow With Double Stroke +\u21DF;Downwards Arrow With Double Stroke +\u21E0;Leftwards Dashed Arrow +\u21E1;Upwards Dashed Arrow +\u21E2;Rightwards Dashed Arrow +\u21E3;Downwards Dashed Arrow +\u21E4;Leftwards Arrow To Bar +\u21E5;Rightwards Arrow To Bar +\u21E6;Leftwards White Arrow +\u21E7;Upwards White Arrow +\u21E8;Rightwards White Arrow +\u21E9;Downwards White Arrow +\u21EA;Upwards White Arrow From Bar +\u21EB;Upwards White Arrow On Pedestal +\u21EC;Upwards White Arrow On Pedestal With Horizontal Bar +\u21ED;Upwards White Arrow On Pedestal With Vertical Bar +\u21EE;Upwards White Double Arrow +\u21EF;Upwards White Double Arrow On Pedestal +\u21F0;Rightwards White Arrow From Wall +\u21F1;North West Arrow To Corner +\u21F2;South East Arrow To Corner +\u21F3;Up Down White Arrow +\u21F4;Right Arrow With Small Circle +\u21F5;Downwards Arrow Leftwards Of Upwards Arrow +\u21F6;Three Rightwards Arrows +\u21F7;Leftwards Arrow With Vertical Stroke +\u21F8;Rightwards Arrow With Vertical Stroke +\u21F9;Left Right Arrow With Vertical Stroke +\u21FA;Leftwards Arrow With Double Vertical Stroke +\u21FB;Rightwards Arrow With Double Vertical Stroke +\u21FC;Left Right Arrow With Double Vertical Stroke +\u21FD;Leftwards Open-Headed Arrow +\u21FE;Rightwards Open-Headed Arrow +\u21FF;Left Right Open-Headed Arrow +\u2200;For All +\u2201;Complement +\u2202;Partial Differential +\u2203;There Exists +\u2204;There Does Not Exist +\u2205;Empty Set +\u2206;Increment +\u2207;Nabla +\u2208;Element Of +\u2209;Not An Element Of +\u220A;Small Element Of +\u220B;Contains As Member +\u220C;Does Not Contain As Member +\u220D;Small Contains As Member +\u220E;End Of Proof +\u220F;N-Ary Product +\u2210;N-Ary Coproduct +\u2211;N-Ary Summation +\u2212;Minus Sign +\u2213;Minus-Or-Plus Sign +\u2214;Dot Plus +\u2215;Division Slash +\u2216;Set Minus +\u2217;Asterisk Operator +\u2218;Ring Operator +\u2219;Bullet Operator +\u221A;Square Root +\u221B;Cube Root +\u221C;Fourth Root +\u221D;Proportional To +\u221E;Infinity +\u221F;Right Angle +\u2220;Angle +\u2221;Measured Angle +\u2222;Spherical Angle +\u2223;Divides +\u2224;Does Not Divide +\u2225;Parallel To +\u2226;Not Parallel To +\u2227;Logical And +\u2228;Logical Or +\u2229;Intersection +\u222A;Union +\u222B;Integral +\u222C;Double Integral +\u222D;Triple Integral +\u222E;Contour Integral +\u222F;Surface Integral +\u2230;Volume Integral +\u2231;Clockwise Integral +\u2232;Clockwise Contour Integral +\u2233;Anticlockwise Contour Integral +\u2234;Therefore +\u2235;Because +\u2236;Ratio +\u2237;Proportion +\u2238;Dot Minus +\u2239;Excess +\u223A;Geometric Proportion +\u223B;Homothetic +\u223C;Tilde Operator +\u223D;Reversed Tilde +\u223E;Inverted Lazy S +\u223F;Sine Wave +\u2240;Wreath Product +\u2241;Not Tilde +\u2242;Minus Tilde +\u2243;Asymptotically Equal To +\u2244;Not Asymptotically Equal To +\u2245;Approximately Equal To +\u2246;Approximately But Not Actually Equal To +\u2247;Neither Approximately Nor Actually Equal To +\u2248;Almost Equal To +\u2249;Not Almost Equal To +\u224A;Almost Equal Or Equal To +\u224B;Triple Tilde +\u224C;All Equal To +\u224D;Equivalent To +\u224E;Geometrically Equivalent To +\u224F;Difference Between +\u2250;Approaches The Limit +\u2251;Geometrically Equal To +\u2252;Approximately Equal To Or The Image Of +\u2253;Image Of Or Approximately Equal To +\u2254;Colon Equals +\u2255;Equals Colon +\u2256;Ring In Equal To +\u2257;Ring Equal To +\u2258;Corresponds To +\u2259;Estimates +\u225A;Equiangular To +\u225B;Star Equals +\u225C;Delta Equal To +\u225D;Equal To By Definition +\u225E;Measured By +\u225F;Questioned Equal To +\u2260;Not Equal To +\u2261;Identical To +\u2262;Not Identical To +\u2263;Strictly Equivalent To +\u2264;Less-Than Or Equal To +\u2265;Greater-Than Or Equal To +\u2266;Less-Than Over Equal To +\u2267;Greater-Than Over Equal To +\u2268;Less-Than But Not Equal To +\u2269;Greater-Than But Not Equal To +\u226A;Much Less-Than +\u226B;Much Greater-Than +\u226C;Between +\u226D;Not Equivalent To +\u226E;Not Less-Than +\u226F;Not Greater-Than +\u2270;Neither Less-Than Nor Equal To +\u2271;Neither Greater-Than Nor Equal To +\u2272;Less-Than Or Equivalent To +\u2273;Greater-Than Or Equivalent To +\u2274;Neither Less-Than Nor Equivalent To +\u2275;Neither Greater-Than Nor Equivalent To +\u2276;Less-Than Or Greater-Than +\u2277;Greater-Than Or Less-Than +\u2278;Neither Less-Than Nor Greater-Than +\u2279;Neither Greater-Than Nor Less-Than +\u227A;Precedes +\u227B;Succeeds +\u227C;Precedes Or Equal To +\u227D;Succeeds Or Equal To +\u227E;Precedes Or Equivalent To +\u227F;Succeeds Or Equivalent To +\u2280;Does Not Precede +\u2281;Does Not Succeed +\u2282;Subset Of +\u2283;Superset Of +\u2284;Not A Subset Of +\u2285;Not A Superset Of +\u2286;Subset Of Or Equal To +\u2287;Superset Of Or Equal To +\u2288;Neither A Subset Of Nor Equal To +\u2289;Neither A Superset Of Nor Equal To +\u228A;Subset Of With Not Equal To +\u228B;Superset Of With Not Equal To +\u228C;Multiset +\u228D;Multiset Multiplication +\u228E;Multiset Union +\u228F;Square Image Of +\u2290;Square Original Of +\u2291;Square Image Of Or Equal To +\u2292;Square Original Of Or Equal To +\u2293;Square Cap +\u2294;Square Cup +\u2295;Circled Plus +\u2296;Circled Minus +\u2297;Circled Times +\u2298;Circled Division Slash +\u2299;Circled Dot Operator +\u229A;Circled Ring Operator +\u229B;Circled Asterisk Operator +\u229C;Circled Equals +\u229D;Circled Dash +\u229E;Squared Plus +\u229F;Squared Minus +\u22A0;Squared Times +\u22A1;Squared Dot Operator +\u22A2;Right Tack +\u22A3;Left Tack +\u22A4;Down Tack +\u22A5;Up Tack +\u22A6;Assertion +\u22A7;Models +\u22A8;True +\u22A9;Forces +\u22AA;Triple Vertical Bar Right Turnstile +\u22AB;Double Vertical Bar Double Right Turnstile +\u22AC;Does Not Prove +\u22AD;Not True +\u22AE;Does Not Force +\u22AF;Negated Double Vertical Bar Double Right Turnstile +\u22B0;Precedes Under Relation +\u22B1;Succeeds Under Relation +\u22B2;Normal Subgroup Of +\u22B3;Contains As Normal Subgroup +\u22B4;Normal Subgroup Of Or Equal To +\u22B5;Contains As Normal Subgroup Or Equal To +\u22B6;Original Of +\u22B7;Image Of +\u22B8;Multimap +\u22B9;Hermitian Conjugate Matrix +\u22BA;Intercalate +\u22BB;Xor +\u22BC;Nand +\u22BD;Nor +\u22BE;Right Angle With Arc +\u22BF;Right Triangle +\u22C0;N-Ary Logical And +\u22C1;N-Ary Logical Or +\u22C2;N-Ary Intersection +\u22C3;N-Ary Union +\u22C4;Diamond Operator +\u22C5;Dot Operator +\u22C6;Star Operator +\u22C7;Division Times +\u22C8;Bowtie +\u22C9;Left Normal Factor Semidirect Product +\u22CA;Right Normal Factor Semidirect Product +\u22CB;Left Semidirect Product +\u22CC;Right Semidirect Product +\u22CD;Reversed Tilde Equals +\u22CE;Curly Logical Or +\u22CF;Curly Logical And +\u22D0;Double Subset +\u22D1;Double Superset +\u22D2;Double Intersection +\u22D3;Double Union +\u22D4;Pitchfork +\u22D5;Equal And Parallel To +\u22D6;Less-Than With Dot +\u22D7;Greater-Than With Dot +\u22D8;Very Much Less-Than +\u22D9;Very Much Greater-Than +\u22DA;Less-Than Equal To Or Greater-Than +\u22DB;Greater-Than Equal To Or Less-Than +\u22DC;Equal To Or Less-Than +\u22DD;Equal To Or Greater-Than +\u22DE;Equal To Or Precedes +\u22DF;Equal To Or Succeeds +\u22E0;Does Not Precede Or Equal +\u22E1;Does Not Succeed Or Equal +\u22E2;Not Square Image Of Or Equal To +\u22E3;Not Square Original Of Or Equal To +\u22E4;Square Image Of Or Not Equal To +\u22E5;Square Original Of Or Not Equal To +\u22E6;Less-Than But Not Equivalent To +\u22E7;Greater-Than But Not Equivalent To +\u22E8;Precedes But Not Equivalent To +\u22E9;Succeeds But Not Equivalent To +\u22EA;Not Normal Subgroup Of +\u22EB;Does Not Contain As Normal Subgroup +\u22EC;Not Normal Subgroup Of Or Equal To +\u22ED;Does Not Contain As Normal Subgroup Or Equal +\u22EE;Vertical Ellipsis +\u22EF;Midline Horizontal Ellipsis +\u22F0;Up Right Diagonal Ellipsis +\u22F1;Down Right Diagonal Ellipsis +\u22F2;Element Of With Long Horizontal Stroke +\u22F3;Element Of With Vertical Bar At End Of Horizontal Stroke +\u22F4;Small Element Of With Vertical Bar At End Of Horizontal Stroke +\u22F5;Element Of With Dot Above +\u22F6;Element Of With Overbar +\u22F7;Small Element Of With Overbar +\u22F8;Element Of With Underbar +\u22F9;Element Of With Two Horizontal Strokes +\u22FA;Contains With Long Horizontal Stroke +\u22FB;Contains With Vertical Bar At End Of Horizontal Stroke +\u22FC;Small Contains With Vertical Bar At End Of Horizontal Stroke +\u22FD;Contains With Overbar +\u22FE;Small Contains With Overbar +\u22FF;Z Notation Bag Membership +\u2300;Diameter Sign +\u2301;Electric Arrow +\u2302;House +\u2303;Up Arrowhead +\u2304;Down Arrowhead +\u2305;Projective +\u2306;Perspective +\u2307;Wavy Line +\u2308;Left Ceiling +\u2309;Right Ceiling +\u230A;Left Floor +\u230B;Right Floor +\u230C;Bottom Right Crop +\u230D;Bottom Left Crop +\u230E;Top Right Crop +\u230F;Top Left Crop +\u2310;Reversed Not Sign +\u2311;Square Lozenge +\u2312;Arc +\u2313;Segment +\u2314;Sector +\u2315;Telephone Recorder +\u2316;Position Indicator +\u2317;Viewdata Square +\u2318;Place Of Interest Sign +\u2319;Turned Not Sign +\u231A;Watch +\u231B;Hourglass +\u231C;Top Left Corner +\u231D;Top Right Corner +\u231E;Bottom Left Corner +\u231F;Bottom Right Corner +\u2320;Top Half Integral +\u2321;Bottom Half Integral +\u2322;Frown +\u2323;Smile +\u2324;Up Arrowhead Between Two Horizontal Bars +\u2325;Option Key +\u2326;Erase To The Right +\u2327;X In A Rectangle Box +\u2328;Keyboard +\u2329;Left-Pointing Angle Bracket +\u232A;Right-Pointing Angle Bracket +\u232B;Erase To The Left +\u232C;Benzene Ring +\u232D;Cylindricity +\u232E;All Around-Profile +\u232F;Symmetry +\u2330;Total Runout +\u2331;Dimension Origin +\u2332;Conical Taper +\u2333;Slope +\u2334;Counterbore +\u2335;Countersink +\u2336;Apl Functional Symbol I-Beam +\u2337;Apl Functional Symbol Squish Quad +\u2338;Apl Functional Symbol Quad Equal +\u2339;Apl Functional Symbol Quad Divide +\u233A;Apl Functional Symbol Quad Diamond +\u233B;Apl Functional Symbol Quad Jot +\u233C;Apl Functional Symbol Quad Circle +\u233D;Apl Functional Symbol Circle Stile +\u233E;Apl Functional Symbol Circle Jot +\u233F;Apl Functional Symbol Slash Bar +\u2340;Apl Functional Symbol Backslash Bar +\u2341;Apl Functional Symbol Quad Slash +\u2342;Apl Functional Symbol Quad Backslash +\u2343;Apl Functional Symbol Quad Less-Than +\u2344;Apl Functional Symbol Quad Greater-Than +\u2345;Apl Functional Symbol Leftwards Vane +\u2346;Apl Functional Symbol Rightwards Vane +\u2347;Apl Functional Symbol Quad Leftwards Arrow +\u2348;Apl Functional Symbol Quad Rightwards Arrow +\u2349;Apl Functional Symbol Circle Backslash +\u234A;Apl Functional Symbol Down Tack Underbar +\u234B;Apl Functional Symbol Delta Stile +\u234C;Apl Functional Symbol Quad Down Caret +\u234D;Apl Functional Symbol Quad Delta +\u234E;Apl Functional Symbol Down Tack Jot +\u234F;Apl Functional Symbol Upwards Vane +\u2350;Apl Functional Symbol Quad Upwards Arrow +\u2351;Apl Functional Symbol Up Tack Overbar +\u2352;Apl Functional Symbol Del Stile +\u2353;Apl Functional Symbol Quad Up Caret +\u2354;Apl Functional Symbol Quad Del +\u2355;Apl Functional Symbol Up Tack Jot +\u2356;Apl Functional Symbol Downwards Vane +\u2357;Apl Functional Symbol Quad Downwards Arrow +\u2358;Apl Functional Symbol Quote Underbar +\u2359;Apl Functional Symbol Delta Underbar +\u235A;Apl Functional Symbol Diamond Underbar +\u235B;Apl Functional Symbol Jot Underbar +\u235C;Apl Functional Symbol Circle Underbar +\u235D;Apl Functional Symbol Up Shoe Jot +\u235E;Apl Functional Symbol Quote Quad +\u235F;Apl Functional Symbol Circle Star +\u2360;Apl Functional Symbol Quad Colon +\u2361;Apl Functional Symbol Up Tack Diaeresis +\u2362;Apl Functional Symbol Del Diaeresis +\u2363;Apl Functional Symbol Star Diaeresis +\u2364;Apl Functional Symbol Jot Diaeresis +\u2365;Apl Functional Symbol Circle Diaeresis +\u2366;Apl Functional Symbol Down Shoe Stile +\u2367;Apl Functional Symbol Left Shoe Stile +\u2368;Apl Functional Symbol Tilde Diaeresis +\u2369;Apl Functional Symbol Greater-Than Diaeresis +\u236A;Apl Functional Symbol Comma Bar +\u236B;Apl Functional Symbol Del Tilde +\u236C;Apl Functional Symbol Zilde +\u236D;Apl Functional Symbol Stile Tilde +\u236E;Apl Functional Symbol Semicolon Underbar +\u236F;Apl Functional Symbol Quad Not Equal +\u2370;Apl Functional Symbol Quad Question +\u2371;Apl Functional Symbol Down Caret Tilde +\u2372;Apl Functional Symbol Up Caret Tilde +\u2373;Apl Functional Symbol Iota +\u2374;Apl Functional Symbol Rho +\u2375;Apl Functional Symbol Omega +\u2376;Apl Functional Symbol Alpha Underbar +\u2377;Apl Functional Symbol Epsilon Underbar +\u2378;Apl Functional Symbol Iota Underbar +\u2379;Apl Functional Symbol Omega Underbar +\u237A;Apl Functional Symbol Alpha +\u237B;Not Check Mark +\u237C;Right Angle With Downwards Zigzag Arrow +\u237D;Shouldered Open Box +\u237E;Bell Symbol +\u237F;Vertical Line With Middle Dot +\u2380;Insertion Symbol +\u2381;Continuous Underline Symbol +\u2382;Discontinuous Underline Symbol +\u2383;Emphasis Symbol +\u2384;Composition Symbol +\u2385;White Square With Centre Vertical Line +\u2386;Enter Symbol +\u2387;Alternative Key Symbol +\u2388;Helm Symbol +\u2389;Circled Horizontal Bar With Notch +\u238A;Circled Triangle Down +\u238B;Broken Circle With Northwest Arrow +\u238C;Undo Symbol +\u238D;Monostable Symbol +\u238E;Hysteresis Symbol +\u238F;Open-Circuit-Output H-Type Symbol +\u2390;Open-Circuit-Output L-Type Symbol +\u2391;Passive-Pull-Down-Output Symbol +\u2392;Passive-Pull-Up-Output Symbol +\u2393;Direct Current Symbol Form Two +\u2394;Software-Function Symbol +\u2395;Apl Functional Symbol Quad +\u2396;Decimal Separator Key Symbol +\u2397;Previous Page +\u2398;Next Page +\u2399;Print Screen Symbol +\u239A;Clear Screen Symbol +\u239B;Left Parenthesis Upper Hook +\u239C;Left Parenthesis Extension +\u239D;Left Parenthesis Lower Hook +\u239E;Right Parenthesis Upper Hook +\u239F;Right Parenthesis Extension +\u23A0;Right Parenthesis Lower Hook +\u23A1;Left Square Bracket Upper Corner +\u23A2;Left Square Bracket Extension +\u23A3;Left Square Bracket Lower Corner +\u23A4;Right Square Bracket Upper Corner +\u23A5;Right Square Bracket Extension +\u23A6;Right Square Bracket Lower Corner +\u23A7;Left Curly Bracket Upper Hook +\u23A8;Left Curly Bracket Middle Piece +\u23A9;Left Curly Bracket Lower Hook +\u23AA;Curly Bracket Extension +\u23AB;Right Curly Bracket Upper Hook +\u23AC;Right Curly Bracket Middle Piece +\u23AD;Right Curly Bracket Lower Hook +\u23AE;Integral Extension +\u23AF;Horizontal Line Extension +\u23B0;Upper Left Or Lower Right Curly Bracket Section +\u23B1;Upper Right Or Lower Left Curly Bracket Section +\u23B2;Summation Top +\u23B3;Summation Bottom +\u23B4;Top Square Bracket +\u23B5;Bottom Square Bracket +\u23B6;Bottom Square Bracket Over Top Square Bracket +\u23B7;Radical Symbol Bottom +\u23B8;Left Vertical Box Line +\u23B9;Right Vertical Box Line +\u23BA;Horizontal Scan Line-1 +\u23BB;Horizontal Scan Line-3 +\u23BC;Horizontal Scan Line-7 +\u23BD;Horizontal Scan Line-9 +\u23BE;Dentistry Symbol Light Vertical And Top Right +\u23BF;Dentistry Symbol Light Vertical And Bottom Right +\u23C0;Dentistry Symbol Light Vertical With Circle +\u23C1;Dentistry Symbol Light Down And Horizontal With Circle +\u23C2;Dentistry Symbol Light Up And Horizontal With Circle +\u23C3;Dentistry Symbol Light Vertical With Triangle +\u23C4;Dentistry Symbol Light Down And Horizontal With Triangle +\u23C5;Dentistry Symbol Light Up And Horizontal With Triangle +\u23C6;Dentistry Symbol Light Vertical And Wave +\u23C7;Dentistry Symbol Light Down And Horizontal With Wave +\u23C8;Dentistry Symbol Light Up And Horizontal With Wave +\u23C9;Dentistry Symbol Light Down And Horizontal +\u23CA;Dentistry Symbol Light Up And Horizontal +\u23CB;Dentistry Symbol Light Vertical And Top Left +\u23CC;Dentistry Symbol Light Vertical And Bottom Left +\u23CD;Square Foot +\u23CE;Return Symbol +\u23CF;Eject Symbol +\u23D0;Vertical Line Extension +\u23D1;Metrical Breve +\u23D2;Metrical Long Over Short +\u23D3;Metrical Short Over Long +\u23D4;Metrical Long Over Two Shorts +\u23D5;Metrical Two Shorts Over Long +\u23D6;Metrical Two Shorts Joined +\u23D7;Metrical Triseme +\u23D8;Metrical Tetraseme +\u23D9;Metrical Pentaseme +\u23DA;Earth Ground +\u23DB;Fuse +\u23DC;Top Parenthesis +\u23DD;Bottom Parenthesis +\u23DE;Top Curly Bracket +\u23DF;Bottom Curly Bracket +\u23E0;Top Tortoise Shell Bracket +\u23E1;Bottom Tortoise Shell Bracket +\u23E2;White Trapezium +\u23E3;Benzene Ring With Circle +\u23E4;Straightness +\u23E5;Flatness +\u23E6;Ac Current +\u23E7;Electrical Intersection +\u23E8;Decimal Exponent Symbol +\u23E9;Black Right-Pointing Double Triangle +\u23EA;Black Left-Pointing Double Triangle +\u23EB;Black Up-Pointing Double Triangle +\u23EC;Black Down-Pointing Double Triangle +\u23ED;Black Right-Pointing Double Triangle With Vertical Bar +\u23EE;Black Left-Pointing Double Triangle With Vertical Bar +\u23EF;Black Right-Pointing Triangle With Double Vertical Bar +\u23F0;Alarm Clock +\u23F1;Stopwatch +\u23F2;Timer Clock +\u23F3;Hourglass With Flowing Sand +\u23F4;Black Medium Left-Pointing Triangle +\u23F5;Black Medium Right-Pointing Triangle +\u23F6;Black Medium Up-Pointing Triangle +\u23F7;Black Medium Down-Pointing Triangle +\u23F8;Double Vertical Bar +\u23F9;Black Square For Stop +\u23FA;Black Circle For Record +\u23FB;Power Symbol +\u23FC;Power On-Off Symbol +\u23FD;Power On Symbol +\u23FE;Power Sleep Symbol +\u23FF;Observer Eye Symbol +\u2400;Symbol For Null +\u2401;Symbol For Start Of Heading +\u2402;Symbol For Start Of Text +\u2403;Symbol For End Of Text +\u2404;Symbol For End Of Transmission +\u2405;Symbol For Enquiry +\u2406;Symbol For Acknowledge +\u2407;Symbol For Bell +\u2408;Symbol For Backspace +\u2409;Symbol For Horizontal Tabulation +\u240A;Symbol For Line Feed +\u240B;Symbol For Vertical Tabulation +\u240C;Symbol For Form Feed +\u240D;Symbol For Carriage Return +\u240E;Symbol For Shift Out +\u240F;Symbol For Shift In +\u2410;Symbol For Data Link Escape +\u2411;Symbol For Device Control One +\u2412;Symbol For Device Control Two +\u2413;Symbol For Device Control Three +\u2414;Symbol For Device Control Four +\u2415;Symbol For Negative Acknowledge +\u2416;Symbol For Synchronous Idle +\u2417;Symbol For End Of Transmission Block +\u2418;Symbol For Cancel +\u2419;Symbol For End Of Medium +\u241A;Symbol For Substitute +\u241B;Symbol For Escape +\u241C;Symbol For File Separator +\u241D;Symbol For Group Separator +\u241E;Symbol For Record Separator +\u241F;Symbol For Unit Separator +\u2420;Symbol For Space +\u2421;Symbol For Delete +\u2422;Blank Symbol +\u2423;Open Box +\u2424;Symbol For Newline +\u2425;Symbol For Delete Form Two +\u2426;Symbol For Substitute Form Two +\u2440;Ocr Hook +\u2441;Ocr Chair +\u2442;Ocr Fork +\u2443;Ocr Inverted Fork +\u2444;Ocr Belt Buckle +\u2445;Ocr Bow Tie +\u2446;Ocr Branch Bank Identification +\u2447;Ocr Amount Of Check +\u2448;Ocr Dash +\u2449;Ocr Customer Account Number +\u244A;Ocr Double Backslash +\u2460;Circled Digit One +\u2461;Circled Digit Two +\u2462;Circled Digit Three +\u2463;Circled Digit Four +\u2464;Circled Digit Five +\u2465;Circled Digit Six +\u2466;Circled Digit Seven +\u2467;Circled Digit Eight +\u2468;Circled Digit Nine +\u2469;Circled Number Ten +\u246A;Circled Number Eleven +\u246B;Circled Number Twelve +\u246C;Circled Number Thirteen +\u246D;Circled Number Fourteen +\u246E;Circled Number Fifteen +\u246F;Circled Number Sixteen +\u2470;Circled Number Seventeen +\u2471;Circled Number Eighteen +\u2472;Circled Number Nineteen +\u2473;Circled Number Twenty +\u2474;Parenthesized Digit One +\u2475;Parenthesized Digit Two +\u2476;Parenthesized Digit Three +\u2477;Parenthesized Digit Four +\u2478;Parenthesized Digit Five +\u2479;Parenthesized Digit Six +\u247A;Parenthesized Digit Seven +\u247B;Parenthesized Digit Eight +\u247C;Parenthesized Digit Nine +\u247D;Parenthesized Number Ten +\u247E;Parenthesized Number Eleven +\u247F;Parenthesized Number Twelve +\u2480;Parenthesized Number Thirteen +\u2481;Parenthesized Number Fourteen +\u2482;Parenthesized Number Fifteen +\u2483;Parenthesized Number Sixteen +\u2484;Parenthesized Number Seventeen +\u2485;Parenthesized Number Eighteen +\u2486;Parenthesized Number Nineteen +\u2487;Parenthesized Number Twenty +\u2488;Digit One Full Stop +\u2489;Digit Two Full Stop +\u248A;Digit Three Full Stop +\u248B;Digit Four Full Stop +\u248C;Digit Five Full Stop +\u248D;Digit Six Full Stop +\u248E;Digit Seven Full Stop +\u248F;Digit Eight Full Stop +\u2490;Digit Nine Full Stop +\u2491;Number Ten Full Stop +\u2492;Number Eleven Full Stop +\u2493;Number Twelve Full Stop +\u2494;Number Thirteen Full Stop +\u2495;Number Fourteen Full Stop +\u2496;Number Fifteen Full Stop +\u2497;Number Sixteen Full Stop +\u2498;Number Seventeen Full Stop +\u2499;Number Eighteen Full Stop +\u249A;Number Nineteen Full Stop +\u249B;Number Twenty Full Stop +\u249C;Parenthesized Latin Small Letter A +\u249D;Parenthesized Latin Small Letter B +\u249E;Parenthesized Latin Small Letter C +\u249F;Parenthesized Latin Small Letter D +\u24A0;Parenthesized Latin Small Letter E +\u24A1;Parenthesized Latin Small Letter F +\u24A2;Parenthesized Latin Small Letter G +\u24A3;Parenthesized Latin Small Letter H +\u24A4;Parenthesized Latin Small Letter I +\u24A5;Parenthesized Latin Small Letter J +\u24A6;Parenthesized Latin Small Letter K +\u24A7;Parenthesized Latin Small Letter L +\u24A8;Parenthesized Latin Small Letter M +\u24A9;Parenthesized Latin Small Letter N +\u24AA;Parenthesized Latin Small Letter O +\u24AB;Parenthesized Latin Small Letter P +\u24AC;Parenthesized Latin Small Letter Q +\u24AD;Parenthesized Latin Small Letter R +\u24AE;Parenthesized Latin Small Letter S +\u24AF;Parenthesized Latin Small Letter T +\u24B0;Parenthesized Latin Small Letter U +\u24B1;Parenthesized Latin Small Letter V +\u24B2;Parenthesized Latin Small Letter W +\u24B3;Parenthesized Latin Small Letter X +\u24B4;Parenthesized Latin Small Letter Y +\u24B5;Parenthesized Latin Small Letter Z +\u24B6;Circled Latin Capital Letter A +\u24B7;Circled Latin Capital Letter B +\u24B8;Circled Latin Capital Letter C +\u24B9;Circled Latin Capital Letter D +\u24BA;Circled Latin Capital Letter E +\u24BB;Circled Latin Capital Letter F +\u24BC;Circled Latin Capital Letter G +\u24BD;Circled Latin Capital Letter H +\u24BE;Circled Latin Capital Letter I +\u24BF;Circled Latin Capital Letter J +\u24C0;Circled Latin Capital Letter K +\u24C1;Circled Latin Capital Letter L +\u24C2;Circled Latin Capital Letter M +\u24C3;Circled Latin Capital Letter N +\u24C4;Circled Latin Capital Letter O +\u24C5;Circled Latin Capital Letter P +\u24C6;Circled Latin Capital Letter Q +\u24C7;Circled Latin Capital Letter R +\u24C8;Circled Latin Capital Letter S +\u24C9;Circled Latin Capital Letter T +\u24CA;Circled Latin Capital Letter U +\u24CB;Circled Latin Capital Letter V +\u24CC;Circled Latin Capital Letter W +\u24CD;Circled Latin Capital Letter X +\u24CE;Circled Latin Capital Letter Y +\u24CF;Circled Latin Capital Letter Z +\u24D0;Circled Latin Small Letter A +\u24D1;Circled Latin Small Letter B +\u24D2;Circled Latin Small Letter C +\u24D3;Circled Latin Small Letter D +\u24D4;Circled Latin Small Letter E +\u24D5;Circled Latin Small Letter F +\u24D6;Circled Latin Small Letter G +\u24D7;Circled Latin Small Letter H +\u24D8;Circled Latin Small Letter I +\u24D9;Circled Latin Small Letter J +\u24DA;Circled Latin Small Letter K +\u24DB;Circled Latin Small Letter L +\u24DC;Circled Latin Small Letter M +\u24DD;Circled Latin Small Letter N +\u24DE;Circled Latin Small Letter O +\u24DF;Circled Latin Small Letter P +\u24E0;Circled Latin Small Letter Q +\u24E1;Circled Latin Small Letter R +\u24E2;Circled Latin Small Letter S +\u24E3;Circled Latin Small Letter T +\u24E4;Circled Latin Small Letter U +\u24E5;Circled Latin Small Letter V +\u24E6;Circled Latin Small Letter W +\u24E7;Circled Latin Small Letter X +\u24E8;Circled Latin Small Letter Y +\u24E9;Circled Latin Small Letter Z +\u24EA;Circled Digit Zero +\u24EB;Negative Circled Number Eleven +\u24EC;Negative Circled Number Twelve +\u24ED;Negative Circled Number Thirteen +\u24EE;Negative Circled Number Fourteen +\u24EF;Negative Circled Number Fifteen +\u24F0;Negative Circled Number Sixteen +\u24F1;Negative Circled Number Seventeen +\u24F2;Negative Circled Number Eighteen +\u24F3;Negative Circled Number Nineteen +\u24F4;Negative Circled Number Twenty +\u24F5;Double Circled Digit One +\u24F6;Double Circled Digit Two +\u24F7;Double Circled Digit Three +\u24F8;Double Circled Digit Four +\u24F9;Double Circled Digit Five +\u24FA;Double Circled Digit Six +\u24FB;Double Circled Digit Seven +\u24FC;Double Circled Digit Eight +\u24FD;Double Circled Digit Nine +\u24FE;Double Circled Number Ten +\u24FF;Negative Circled Digit Zero +\u2500;Box Drawings Light Horizontal +\u2501;Box Drawings Heavy Horizontal +\u2502;Box Drawings Light Vertical +\u2503;Box Drawings Heavy Vertical +\u2504;Box Drawings Light Triple Dash Horizontal +\u2505;Box Drawings Heavy Triple Dash Horizontal +\u2506;Box Drawings Light Triple Dash Vertical +\u2507;Box Drawings Heavy Triple Dash Vertical +\u2508;Box Drawings Light Quadruple Dash Horizontal +\u2509;Box Drawings Heavy Quadruple Dash Horizontal +\u250A;Box Drawings Light Quadruple Dash Vertical +\u250B;Box Drawings Heavy Quadruple Dash Vertical +\u250C;Box Drawings Light Down And Right +\u250D;Box Drawings Down Light And Right Heavy +\u250E;Box Drawings Down Heavy And Right Light +\u250F;Box Drawings Heavy Down And Right +\u2510;Box Drawings Light Down And Left +\u2511;Box Drawings Down Light And Left Heavy +\u2512;Box Drawings Down Heavy And Left Light +\u2513;Box Drawings Heavy Down And Left +\u2514;Box Drawings Light Up And Right +\u2515;Box Drawings Up Light And Right Heavy +\u2516;Box Drawings Up Heavy And Right Light +\u2517;Box Drawings Heavy Up And Right +\u2518;Box Drawings Light Up And Left +\u2519;Box Drawings Up Light And Left Heavy +\u251A;Box Drawings Up Heavy And Left Light +\u251B;Box Drawings Heavy Up And Left +\u251C;Box Drawings Light Vertical And Right +\u251D;Box Drawings Vertical Light And Right Heavy +\u251E;Box Drawings Up Heavy And Right Down Light +\u251F;Box Drawings Down Heavy And Right Up Light +\u2520;Box Drawings Vertical Heavy And Right Light +\u2521;Box Drawings Down Light And Right Up Heavy +\u2522;Box Drawings Up Light And Right Down Heavy +\u2523;Box Drawings Heavy Vertical And Right +\u2524;Box Drawings Light Vertical And Left +\u2525;Box Drawings Vertical Light And Left Heavy +\u2526;Box Drawings Up Heavy And Left Down Light +\u2527;Box Drawings Down Heavy And Left Up Light +\u2528;Box Drawings Vertical Heavy And Left Light +\u2529;Box Drawings Down Light And Left Up Heavy +\u252A;Box Drawings Up Light And Left Down Heavy +\u252B;Box Drawings Heavy Vertical And Left +\u252C;Box Drawings Light Down And Horizontal +\u252D;Box Drawings Left Heavy And Right Down Light +\u252E;Box Drawings Right Heavy And Left Down Light +\u252F;Box Drawings Down Light And Horizontal Heavy +\u2530;Box Drawings Down Heavy And Horizontal Light +\u2531;Box Drawings Right Light And Left Down Heavy +\u2532;Box Drawings Left Light And Right Down Heavy +\u2533;Box Drawings Heavy Down And Horizontal +\u2534;Box Drawings Light Up And Horizontal +\u2535;Box Drawings Left Heavy And Right Up Light +\u2536;Box Drawings Right Heavy And Left Up Light +\u2537;Box Drawings Up Light And Horizontal Heavy +\u2538;Box Drawings Up Heavy And Horizontal Light +\u2539;Box Drawings Right Light And Left Up Heavy +\u253A;Box Drawings Left Light And Right Up Heavy +\u253B;Box Drawings Heavy Up And Horizontal +\u253C;Box Drawings Light Vertical And Horizontal +\u253D;Box Drawings Left Heavy And Right Vertical Light +\u253E;Box Drawings Right Heavy And Left Vertical Light +\u253F;Box Drawings Vertical Light And Horizontal Heavy +\u2540;Box Drawings Up Heavy And Down Horizontal Light +\u2541;Box Drawings Down Heavy And Up Horizontal Light +\u2542;Box Drawings Vertical Heavy And Horizontal Light +\u2543;Box Drawings Left Up Heavy And Right Down Light +\u2544;Box Drawings Right Up Heavy And Left Down Light +\u2545;Box Drawings Left Down Heavy And Right Up Light +\u2546;Box Drawings Right Down Heavy And Left Up Light +\u2547;Box Drawings Down Light And Up Horizontal Heavy +\u2548;Box Drawings Up Light And Down Horizontal Heavy +\u2549;Box Drawings Right Light And Left Vertical Heavy +\u254A;Box Drawings Left Light And Right Vertical Heavy +\u254B;Box Drawings Heavy Vertical And Horizontal +\u254C;Box Drawings Light Double Dash Horizontal +\u254D;Box Drawings Heavy Double Dash Horizontal +\u254E;Box Drawings Light Double Dash Vertical +\u254F;Box Drawings Heavy Double Dash Vertical +\u2550;Box Drawings Double Horizontal +\u2551;Box Drawings Double Vertical +\u2552;Box Drawings Down Single And Right Double +\u2553;Box Drawings Down Double And Right Single +\u2554;Box Drawings Double Down And Right +\u2555;Box Drawings Down Single And Left Double +\u2556;Box Drawings Down Double And Left Single +\u2557;Box Drawings Double Down And Left +\u2558;Box Drawings Up Single And Right Double +\u2559;Box Drawings Up Double And Right Single +\u255A;Box Drawings Double Up And Right +\u255B;Box Drawings Up Single And Left Double +\u255C;Box Drawings Up Double And Left Single +\u255D;Box Drawings Double Up And Left +\u255E;Box Drawings Vertical Single And Right Double +\u255F;Box Drawings Vertical Double And Right Single +\u2560;Box Drawings Double Vertical And Right +\u2561;Box Drawings Vertical Single And Left Double +\u2562;Box Drawings Vertical Double And Left Single +\u2563;Box Drawings Double Vertical And Left +\u2564;Box Drawings Down Single And Horizontal Double +\u2565;Box Drawings Down Double And Horizontal Single +\u2566;Box Drawings Double Down And Horizontal +\u2567;Box Drawings Up Single And Horizontal Double +\u2568;Box Drawings Up Double And Horizontal Single +\u2569;Box Drawings Double Up And Horizontal +\u256A;Box Drawings Vertical Single And Horizontal Double +\u256B;Box Drawings Vertical Double And Horizontal Single +\u256C;Box Drawings Double Vertical And Horizontal +\u256D;Box Drawings Light Arc Down And Right +\u256E;Box Drawings Light Arc Down And Left +\u256F;Box Drawings Light Arc Up And Left +\u2570;Box Drawings Light Arc Up And Right +\u2571;Box Drawings Light Diagonal Upper Right To Lower Left +\u2572;Box Drawings Light Diagonal Upper Left To Lower Right +\u2573;Box Drawings Light Diagonal Cross +\u2574;Box Drawings Light Left +\u2575;Box Drawings Light Up +\u2576;Box Drawings Light Right +\u2577;Box Drawings Light Down +\u2578;Box Drawings Heavy Left +\u2579;Box Drawings Heavy Up +\u257A;Box Drawings Heavy Right +\u257B;Box Drawings Heavy Down +\u257C;Box Drawings Light Left And Heavy Right +\u257D;Box Drawings Light Up And Heavy Down +\u257E;Box Drawings Heavy Left And Light Right +\u257F;Box Drawings Heavy Up And Light Down +\u2580;Upper Half Block +\u2581;Lower One Eighth Block +\u2582;Lower One Quarter Block +\u2583;Lower Three Eighths Block +\u2584;Lower Half Block +\u2585;Lower Five Eighths Block +\u2586;Lower Three Quarters Block +\u2587;Lower Seven Eighths Block +\u2588;Full Block +\u2589;Left Seven Eighths Block +\u258A;Left Three Quarters Block +\u258B;Left Five Eighths Block +\u258C;Left Half Block +\u258D;Left Three Eighths Block +\u258E;Left One Quarter Block +\u258F;Left One Eighth Block +\u2590;Right Half Block +\u2591;Light Shade +\u2592;Medium Shade +\u2593;Dark Shade +\u2594;Upper One Eighth Block +\u2595;Right One Eighth Block +\u2596;Quadrant Lower Left +\u2597;Quadrant Lower Right +\u2598;Quadrant Upper Left +\u2599;Quadrant Upper Left And Lower Left And Lower Right +\u259A;Quadrant Upper Left And Lower Right +\u259B;Quadrant Upper Left And Upper Right And Lower Left +\u259C;Quadrant Upper Left And Upper Right And Lower Right +\u259D;Quadrant Upper Right +\u259E;Quadrant Upper Right And Lower Left +\u259F;Quadrant Upper Right And Lower Left And Lower Right +\u25A0;Black Square +\u25A1;White Square +\u25A2;White Square With Rounded Corners +\u25A3;White Square Containing Black Small Square +\u25A4;Square With Horizontal Fill +\u25A5;Square With Vertical Fill +\u25A6;Square With Orthogonal Crosshatch Fill +\u25A7;Square With Upper Left To Lower Right Fill +\u25A8;Square With Upper Right To Lower Left Fill +\u25A9;Square With Diagonal Crosshatch Fill +\u25AA;Black Small Square +\u25AB;White Small Square +\u25AC;Black Rectangle +\u25AD;White Rectangle +\u25AE;Black Vertical Rectangle +\u25AF;White Vertical Rectangle +\u25B0;Black Parallelogram +\u25B1;White Parallelogram +\u25B2;Black Up-Pointing Triangle +\u25B3;White Up-Pointing Triangle +\u25B4;Black Up-Pointing Small Triangle +\u25B5;White Up-Pointing Small Triangle +\u25B6;Black Right-Pointing Triangle +\u25B7;White Right-Pointing Triangle +\u25B8;Black Right-Pointing Small Triangle +\u25B9;White Right-Pointing Small Triangle +\u25BA;Black Right-Pointing Pointer +\u25BB;White Right-Pointing Pointer +\u25BC;Black Down-Pointing Triangle +\u25BD;White Down-Pointing Triangle +\u25BE;Black Down-Pointing Small Triangle +\u25BF;White Down-Pointing Small Triangle +\u25C0;Black Left-Pointing Triangle +\u25C1;White Left-Pointing Triangle +\u25C2;Black Left-Pointing Small Triangle +\u25C3;White Left-Pointing Small Triangle +\u25C4;Black Left-Pointing Pointer +\u25C5;White Left-Pointing Pointer +\u25C6;Black Diamond +\u25C7;White Diamond +\u25C8;White Diamond Containing Black Small Diamond +\u25C9;Fisheye +\u25CA;Lozenge +\u25CB;White Circle +\u25CC;Dotted Circle +\u25CD;Circle With Vertical Fill +\u25CE;Bullseye +\u25CF;Black Circle +\u25D0;Circle With Left Half Black +\u25D1;Circle With Right Half Black +\u25D2;Circle With Lower Half Black +\u25D3;Circle With Upper Half Black +\u25D4;Circle With Upper Right Quadrant Black +\u25D5;Circle With All But Upper Left Quadrant Black +\u25D6;Left Half Black Circle +\u25D7;Right Half Black Circle +\u25D8;Inverse Bullet +\u25D9;Inverse White Circle +\u25DA;Upper Half Inverse White Circle +\u25DB;Lower Half Inverse White Circle +\u25DC;Upper Left Quadrant Circular Arc +\u25DD;Upper Right Quadrant Circular Arc +\u25DE;Lower Right Quadrant Circular Arc +\u25DF;Lower Left Quadrant Circular Arc +\u25E0;Upper Half Circle +\u25E1;Lower Half Circle +\u25E2;Black Lower Right Triangle +\u25E3;Black Lower Left Triangle +\u25E4;Black Upper Left Triangle +\u25E5;Black Upper Right Triangle +\u25E6;White Bullet +\u25E7;Square With Left Half Black +\u25E8;Square With Right Half Black +\u25E9;Square With Upper Left Diagonal Half Black +\u25EA;Square With Lower Right Diagonal Half Black +\u25EB;White Square With Vertical Bisecting Line +\u25EC;White Up-Pointing Triangle With Dot +\u25ED;Up-Pointing Triangle With Left Half Black +\u25EE;Up-Pointing Triangle With Right Half Black +\u25EF;Large Circle +\u25F0;White Square With Upper Left Quadrant +\u25F1;White Square With Lower Left Quadrant +\u25F2;White Square With Lower Right Quadrant +\u25F3;White Square With Upper Right Quadrant +\u25F4;White Circle With Upper Left Quadrant +\u25F5;White Circle With Lower Left Quadrant +\u25F6;White Circle With Lower Right Quadrant +\u25F7;White Circle With Upper Right Quadrant +\u25F8;Upper Left Triangle +\u25F9;Upper Right Triangle +\u25FA;Lower Left Triangle +\u25FB;White Medium Square +\u25FC;Black Medium Square +\u25FD;White Medium Small Square +\u25FE;Black Medium Small Square +\u25FF;Lower Right Triangle +\u2600;Black Sun With Rays +\u2601;Cloud +\u2602;Umbrella +\u2603;Snowman +\u2604;Comet +\u2605;Black Star +\u2606;White Star +\u2607;Lightning +\u2608;Thunderstorm +\u2609;Sun +\u260A;Ascending Node +\u260B;Descending Node +\u260C;Conjunction +\u260D;Opposition +\u260E;Black Telephone +\u260F;White Telephone +\u2610;Ballot Box +\u2611;Ballot Box With Check +\u2612;Ballot Box With X +\u2613;Saltire +\u2614;Umbrella With Rain Drops +\u2615;Hot Beverage +\u2616;White Shogi Piece +\u2617;Black Shogi Piece +\u2618;Shamrock +\u2619;Reversed Rotated Floral Heart Bullet +\u261A;Black Left Pointing Index +\u261B;Black Right Pointing Index +\u261C;White Left Pointing Index +\u261D;White Up Pointing Index +\u261E;White Right Pointing Index +\u261F;White Down Pointing Index +\u2620;Skull And Crossbones +\u2621;Caution Sign +\u2622;Radioactive Sign +\u2623;Biohazard Sign +\u2624;Caduceus +\u2625;Ankh +\u2626;Orthodox Cross +\u2627;Chi Rho +\u2628;Cross Of Lorraine +\u2629;Cross Of Jerusalem +\u262A;Star And Crescent +\u262B;Farsi Symbol +\u262C;Adi Shakti +\u262D;Hammer And Sickle +\u262E;Peace Symbol +\u262F;Yin Yang +\u2630;Trigram For Heaven +\u2631;Trigram For Lake +\u2632;Trigram For Fire +\u2633;Trigram For Thunder +\u2634;Trigram For Wind +\u2635;Trigram For Water +\u2636;Trigram For Mountain +\u2637;Trigram For Earth +\u2638;Wheel Of Dharma +\u2639;White Frowning Face +\u263A;White Smiling Face +\u263B;Black Smiling Face +\u263C;White Sun With Rays +\u263D;First Quarter Moon +\u263E;Last Quarter Moon +\u263F;Mercury +\u2640;Female Sign +\u2641;Earth +\u2642;Male Sign +\u2643;Jupiter +\u2644;Saturn +\u2645;Uranus +\u2646;Neptune +\u2647;Pluto +\u2648;Aries +\u2649;Taurus +\u264A;Gemini +\u264B;Cancer +\u264C;Leo +\u264D;Virgo +\u264E;Libra +\u264F;Scorpius +\u2650;Sagittarius +\u2651;Capricorn +\u2652;Aquarius +\u2653;Pisces +\u2654;White Chess King +\u2655;White Chess Queen +\u2656;White Chess Rook +\u2657;White Chess Bishop +\u2658;White Chess Knight +\u2659;White Chess Pawn +\u265A;Black Chess King +\u265B;Black Chess Queen +\u265C;Black Chess Rook +\u265D;Black Chess Bishop +\u265E;Black Chess Knight +\u265F;Black Chess Pawn +\u2660;Black Spade Suit +\u2661;White Heart Suit +\u2662;White Diamond Suit +\u2663;Black Club Suit +\u2664;White Spade Suit +\u2665;Black Heart Suit +\u2666;Black Diamond Suit +\u2667;White Club Suit +\u2668;Hot Springs +\u2669;Quarter Note +\u266A;Eighth Note +\u266B;Beamed Eighth Notes +\u266C;Beamed Sixteenth Notes +\u266D;Music Flat Sign +\u266E;Music Natural Sign +\u266F;Music Sharp Sign +\u2670;West Syriac Cross +\u2671;East Syriac Cross +\u2672;Universal Recycling Symbol +\u2673;Recycling Symbol For Type-1 Plastics +\u2674;Recycling Symbol For Type-2 Plastics +\u2675;Recycling Symbol For Type-3 Plastics +\u2676;Recycling Symbol For Type-4 Plastics +\u2677;Recycling Symbol For Type-5 Plastics +\u2678;Recycling Symbol For Type-6 Plastics +\u2679;Recycling Symbol For Type-7 Plastics +\u267A;Recycling Symbol For Generic Materials +\u267B;Black Universal Recycling Symbol +\u267C;Recycled Paper Symbol +\u267D;Partially-Recycled Paper Symbol +\u267E;Permanent Paper Sign +\u267F;Wheelchair Symbol +\u2680;Die Face-1 +\u2681;Die Face-2 +\u2682;Die Face-3 +\u2683;Die Face-4 +\u2684;Die Face-5 +\u2685;Die Face-6 +\u2686;White Circle With Dot Right +\u2687;White Circle With Two Dots +\u2688;Black Circle With White Dot Right +\u2689;Black Circle With Two White Dots +\u268A;Monogram For Yang +\u268B;Monogram For Yin +\u268C;Digram For Greater Yang +\u268D;Digram For Lesser Yin +\u268E;Digram For Lesser Yang +\u268F;Digram For Greater Yin +\u2690;White Flag +\u2691;Black Flag +\u2692;Hammer And Pick +\u2693;Anchor +\u2694;Crossed Swords +\u2695;Staff Of Aesculapius +\u2696;Scales +\u2697;Alembic +\u2698;Flower +\u2699;Gear +\u269A;Staff Of Hermes +\u269B;Atom Symbol +\u269C;Fleur-De-Lis +\u269D;Outlined White Star +\u269E;Three Lines Converging Right +\u269F;Three Lines Converging Left +\u26A0;Warning Sign +\u26A1;High Voltage Sign +\u26A2;Doubled Female Sign +\u26A3;Doubled Male Sign +\u26A4;Interlocked Female And Male Sign +\u26A5;Male And Female Sign +\u26A6;Male With Stroke Sign +\u26A7;Male With Stroke And Male And Female Sign +\u26A8;Vertical Male With Stroke Sign +\u26A9;Horizontal Male With Stroke Sign +\u26AA;Medium White Circle +\u26AB;Medium Black Circle +\u26AC;Medium Small White Circle +\u26AD;Marriage Symbol +\u26AE;Divorce Symbol +\u26AF;Unmarried Partnership Symbol +\u26B0;Coffin +\u26B1;Funeral Urn +\u26B2;Neuter +\u26B3;Ceres +\u26B4;Pallas +\u26B5;Juno +\u26B6;Vesta +\u26B7;Chiron +\u26B8;Black Moon Lilith +\u26B9;Sextile +\u26BA;Semisextile +\u26BB;Quincunx +\u26BC;Sesquiquadrate +\u26BD;Soccer Ball +\u26BE;Baseball +\u26BF;Squared Key +\u26C0;White Draughts Man +\u26C1;White Draughts King +\u26C2;Black Draughts Man +\u26C3;Black Draughts King +\u26C4;Snowman Without Snow +\u26C5;Sun Behind Cloud +\u26C6;Rain +\u26C7;Black Snowman +\u26C8;Thunder Cloud And Rain +\u26C9;Turned White Shogi Piece +\u26CA;Turned Black Shogi Piece +\u26CB;White Diamond In Square +\u26CC;Crossing Lanes +\u26CD;Disabled Car +\u26CE;Ophiuchus +\u26CF;Pick +\u26D0;Car Sliding +\u26D1;Helmet With White Cross +\u26D2;Circled Crossing Lanes +\u26D3;Chains +\u26D4;No Entry +\u26D5;Alternate One-Way Left Way Traffic +\u26D6;Black Two-Way Left Way Traffic +\u26D7;White Two-Way Left Way Traffic +\u26D8;Black Left Lane Merge +\u26D9;White Left Lane Merge +\u26DA;Drive Slow Sign +\u26DB;Heavy White Down-Pointing Triangle +\u26DC;Left Closed Entry +\u26DD;Squared Saltire +\u26DE;Falling Diagonal In White Circle In Black Square +\u26DF;Black Truck +\u26E0;Restricted Left Entry-1 +\u26E1;Restricted Left Entry-2 +\u26E2;Astronomical Symbol For Uranus +\u26E3;Heavy Circle With Stroke And Two Dots Above +\u26E4;Pentagram +\u26E5;Right-Handed Interlaced Pentagram +\u26E6;Left-Handed Interlaced Pentagram +\u26E7;Inverted Pentagram +\u26E8;Black Cross On Shield +\u26E9;Shinto Shrine +\u26EA;Church +\u26EB;Castle +\u26EC;Historic Site +\u26ED;Gear Without Hub +\u26EE;Gear With Handles +\u26EF;Map Symbol For Lighthouse +\u26F0;Mountain +\u26F1;Umbrella On Ground +\u26F2;Fountain +\u26F3;Flag In Hole +\u26F4;Ferry +\u26F5;Sailboat +\u26F6;Square Four Corners +\u26F7;Skier +\u26F8;Ice Skate +\u26F9;Person With Ball +\u26FA;Tent +\u26FB;Japanese Bank Symbol +\u26FC;Headstone Graveyard Symbol +\u26FD;Fuel Pump +\u26FE;Cup On Black Square +\u26FF;White Flag With Horizontal Middle Black Stripe +\u2700;Black Safety Scissors +\u2701;Upper Blade Scissors +\u2702;Black Scissors +\u2703;Lower Blade Scissors +\u2704;White Scissors +\u2705;White Heavy Check Mark +\u2706;Telephone Location Sign +\u2707;Tape Drive +\u2708;Airplane +\u2709;Envelope +\u270A;Raised Fist +\u270B;Raised Hand +\u270C;Victory Hand +\u270D;Writing Hand +\u270E;Lower Right Pencil +\u270F;Pencil +\u2710;Upper Right Pencil +\u2711;White Nib +\u2712;Black Nib +\u2713;Check Mark +\u2714;Heavy Check Mark +\u2715;Multiplication X +\u2716;Heavy Multiplication X +\u2717;Ballot X +\u2718;Heavy Ballot X +\u2719;Outlined Greek Cross +\u271A;Heavy Greek Cross +\u271B;Open Centre Cross +\u271C;Heavy Open Centre Cross +\u271D;Latin Cross +\u271E;Shadowed White Latin Cross +\u271F;Outlined Latin Cross +\u2720;Maltese Cross +\u2721;Star Of David +\u2722;Four Teardrop-Spoked Asterisk +\u2723;Four Balloon-Spoked Asterisk +\u2724;Heavy Four Balloon-Spoked Asterisk +\u2725;Four Club-Spoked Asterisk +\u2726;Black Four Pointed Star +\u2727;White Four Pointed Star +\u2728;Sparkles +\u2729;Stress Outlined White Star +\u272A;Circled White Star +\u272B;Open Centre Black Star +\u272C;Black Centre White Star +\u272D;Outlined Black Star +\u272E;Heavy Outlined Black Star +\u272F;Pinwheel Star +\u2730;Shadowed White Star +\u2731;Heavy Asterisk +\u2732;Open Centre Asterisk +\u2733;Eight Spoked Asterisk +\u2734;Eight Pointed Black Star +\u2735;Eight Pointed Pinwheel Star +\u2736;Six Pointed Black Star +\u2737;Eight Pointed Rectilinear Black Star +\u2738;Heavy Eight Pointed Rectilinear Black Star +\u2739;Twelve Pointed Black Star +\u273A;Sixteen Pointed Asterisk +\u273B;Teardrop-Spoked Asterisk +\u273C;Open Centre Teardrop-Spoked Asterisk +\u273D;Heavy Teardrop-Spoked Asterisk +\u273E;Six Petalled Black And White Florette +\u273F;Black Florette +\u2740;White Florette +\u2741;Eight Petalled Outlined Black Florette +\u2742;Circled Open Centre Eight Pointed Star +\u2743;Heavy Teardrop-Spoked Pinwheel Asterisk +\u2744;Snowflake +\u2745;Tight Trifoliate Snowflake +\u2746;Heavy Chevron Snowflake +\u2747;Sparkle +\u2748;Heavy Sparkle +\u2749;Balloon-Spoked Asterisk +\u274A;Eight Teardrop-Spoked Propeller Asterisk +\u274B;Heavy Eight Teardrop-Spoked Propeller Asterisk +\u274C;Cross Mark +\u274D;Shadowed White Circle +\u274E;Negative Squared Cross Mark +\u274F;Lower Right Drop-Shadowed White Square +\u2750;Upper Right Drop-Shadowed White Square +\u2751;Lower Right Shadowed White Square +\u2752;Upper Right Shadowed White Square +\u2753;Black Question Mark Ornament +\u2754;White Question Mark Ornament +\u2755;White Exclamation Mark Ornament +\u2756;Black Diamond Minus White X +\u2757;Heavy Exclamation Mark Symbol +\u2758;Light Vertical Bar +\u2759;Medium Vertical Bar +\u275A;Heavy Vertical Bar +\u275B;Heavy Single Turned Comma Quotation Mark Ornament +\u275C;Heavy Single Comma Quotation Mark Ornament +\u275D;Heavy Double Turned Comma Quotation Mark Ornament +\u275E;Heavy Double Comma Quotation Mark Ornament +\u275F;Heavy Low Single Comma Quotation Mark Ornament +\u2760;Heavy Low Double Comma Quotation Mark Ornament +\u2761;Curved Stem Paragraph Sign Ornament +\u2762;Heavy Exclamation Mark Ornament +\u2763;Heavy Heart Exclamation Mark Ornament +\u2764;Heavy Black Heart +\u2765;Rotated Heavy Black Heart Bullet +\u2766;Floral Heart +\u2767;Rotated Floral Heart Bullet +\u2768;Medium Left Parenthesis Ornament +\u2769;Medium Right Parenthesis Ornament +\u276A;Medium Flattened Left Parenthesis Ornament +\u276B;Medium Flattened Right Parenthesis Ornament +\u276C;Medium Left-Pointing Angle Bracket Ornament +\u276D;Medium Right-Pointing Angle Bracket Ornament +\u276E;Heavy Left-Pointing Angle Quotation Mark Ornament +\u276F;Heavy Right-Pointing Angle Quotation Mark Ornament +\u2770;Heavy Left-Pointing Angle Bracket Ornament +\u2771;Heavy Right-Pointing Angle Bracket Ornament +\u2772;Light Left Tortoise Shell Bracket Ornament +\u2773;Light Right Tortoise Shell Bracket Ornament +\u2774;Medium Left Curly Bracket Ornament +\u2775;Medium Right Curly Bracket Ornament +\u2776;Dingbat Negative Circled Digit One +\u2777;Dingbat Negative Circled Digit Two +\u2778;Dingbat Negative Circled Digit Three +\u2779;Dingbat Negative Circled Digit Four +\u277A;Dingbat Negative Circled Digit Five +\u277B;Dingbat Negative Circled Digit Six +\u277C;Dingbat Negative Circled Digit Seven +\u277D;Dingbat Negative Circled Digit Eight +\u277E;Dingbat Negative Circled Digit Nine +\u277F;Dingbat Negative Circled Number Ten +\u2780;Dingbat Circled Sans-Serif Digit One +\u2781;Dingbat Circled Sans-Serif Digit Two +\u2782;Dingbat Circled Sans-Serif Digit Three +\u2783;Dingbat Circled Sans-Serif Digit Four +\u2784;Dingbat Circled Sans-Serif Digit Five +\u2785;Dingbat Circled Sans-Serif Digit Six +\u2786;Dingbat Circled Sans-Serif Digit Seven +\u2787;Dingbat Circled Sans-Serif Digit Eight +\u2788;Dingbat Circled Sans-Serif Digit Nine +\u2789;Dingbat Circled Sans-Serif Number Ten +\u278A;Dingbat Negative Circled Sans-Serif Digit One +\u278B;Dingbat Negative Circled Sans-Serif Digit Two +\u278C;Dingbat Negative Circled Sans-Serif Digit Three +\u278D;Dingbat Negative Circled Sans-Serif Digit Four +\u278E;Dingbat Negative Circled Sans-Serif Digit Five +\u278F;Dingbat Negative Circled Sans-Serif Digit Six +\u2790;Dingbat Negative Circled Sans-Serif Digit Seven +\u2791;Dingbat Negative Circled Sans-Serif Digit Eight +\u2792;Dingbat Negative Circled Sans-Serif Digit Nine +\u2793;Dingbat Negative Circled Sans-Serif Number Ten +\u2794;Heavy Wide-Headed Rightwards Arrow +\u2795;Heavy Plus Sign +\u2796;Heavy Minus Sign +\u2797;Heavy Division Sign +\u2798;Heavy South East Arrow +\u2799;Heavy Rightwards Arrow +\u279A;Heavy North East Arrow +\u279B;Drafting Point Rightwards Arrow +\u279C;Heavy Round-Tipped Rightwards Arrow +\u279D;Triangle-Headed Rightwards Arrow +\u279E;Heavy Triangle-Headed Rightwards Arrow +\u279F;Dashed Triangle-Headed Rightwards Arrow +\u27A0;Heavy Dashed Triangle-Headed Rightwards Arrow +\u27A1;Black Rightwards Arrow +\u27A2;Three-D Top-Lighted Rightwards Arrowhead +\u27A3;Three-D Bottom-Lighted Rightwards Arrowhead +\u27A4;Black Rightwards Arrowhead +\u27A5;Heavy Black Curved Downwards And Rightwards Arrow +\u27A6;Heavy Black Curved Upwards And Rightwards Arrow +\u27A7;Squat Black Rightwards Arrow +\u27A8;Heavy Concave-Pointed Black Rightwards Arrow +\u27A9;Right-Shaded White Rightwards Arrow +\u27AA;Left-Shaded White Rightwards Arrow +\u27AB;Back-Tilted Shadowed White Rightwards Arrow +\u27AC;Front-Tilted Shadowed White Rightwards Arrow +\u27AD;Heavy Lower Right-Shadowed White Rightwards Arrow +\u27AE;Heavy Upper Right-Shadowed White Rightwards Arrow +\u27AF;Notched Lower Right-Shadowed White Rightwards Arrow +\u27B0;Curly Loop +\u27B1;Notched Upper Right-Shadowed White Rightwards Arrow +\u27B2;Circled Heavy White Rightwards Arrow +\u27B3;White-Feathered Rightwards Arrow +\u27B4;Black-Feathered South East Arrow +\u27B5;Black-Feathered Rightwards Arrow +\u27B6;Black-Feathered North East Arrow +\u27B7;Heavy Black-Feathered South East Arrow +\u27B8;Heavy Black-Feathered Rightwards Arrow +\u27B9;Heavy Black-Feathered North East Arrow +\u27BA;Teardrop-Barbed Rightwards Arrow +\u27BB;Heavy Teardrop-Shanked Rightwards Arrow +\u27BC;Wedge-Tailed Rightwards Arrow +\u27BD;Heavy Wedge-Tailed Rightwards Arrow +\u27BE;Open-Outlined Rightwards Arrow +\u27BF;Double Curly Loop +\u27C0;Three Dimensional Angle +\u27C1;White Triangle Containing Small White Triangle +\u27C2;Perpendicular +\u27C3;Open Subset +\u27C4;Open Superset +\u27C5;Left S-Shaped Bag Delimiter +\u27C6;Right S-Shaped Bag Delimiter +\u27C7;Or With Dot Inside +\u27C8;Reverse Solidus Preceding Subset +\u27C9;Superset Preceding Solidus +\u27CA;Vertical Bar With Horizontal Stroke +\u27CB;Mathematical Rising Diagonal +\u27CC;Long Division +\u27CD;Mathematical Falling Diagonal +\u27CE;Squared Logical And +\u27CF;Squared Logical Or +\u27D0;White Diamond With Centred Dot +\u27D1;And With Dot +\u27D2;Element Of Opening Upwards +\u27D3;Lower Right Corner With Dot +\u27D4;Upper Left Corner With Dot +\u27D5;Left Outer Join +\u27D6;Right Outer Join +\u27D7;Full Outer Join +\u27D8;Large Up Tack +\u27D9;Large Down Tack +\u27DA;Left And Right Double Turnstile +\u27DB;Left And Right Tack +\u27DC;Left Multimap +\u27DD;Long Right Tack +\u27DE;Long Left Tack +\u27DF;Up Tack With Circle Above +\u27E0;Lozenge Divided By Horizontal Rule +\u27E1;White Concave-Sided Diamond +\u27E2;White Concave-Sided Diamond With Leftwards Tick +\u27E3;White Concave-Sided Diamond With Rightwards Tick +\u27E4;White Square With Leftwards Tick +\u27E5;White Square With Rightwards Tick +\u27E6;Mathematical Left White Square Bracket +\u27E7;Mathematical Right White Square Bracket +\u27E8;Mathematical Left Angle Bracket +\u27E9;Mathematical Right Angle Bracket +\u27EA;Mathematical Left Double Angle Bracket +\u27EB;Mathematical Right Double Angle Bracket +\u27EC;Mathematical Left White Tortoise Shell Bracket +\u27ED;Mathematical Right White Tortoise Shell Bracket +\u27EE;Mathematical Left Flattened Parenthesis +\u27EF;Mathematical Right Flattened Parenthesis +\u27F0;Upwards Quadruple Arrow +\u27F1;Downwards Quadruple Arrow +\u27F2;Anticlockwise Gapped Circle Arrow +\u27F3;Clockwise Gapped Circle Arrow +\u27F4;Right Arrow With Circled Plus +\u27F5;Long Leftwards Arrow +\u27F6;Long Rightwards Arrow +\u27F7;Long Left Right Arrow +\u27F8;Long Leftwards Double Arrow +\u27F9;Long Rightwards Double Arrow +\u27FA;Long Left Right Double Arrow +\u27FB;Long Leftwards Arrow From Bar +\u27FC;Long Rightwards Arrow From Bar +\u27FD;Long Leftwards Double Arrow From Bar +\u27FE;Long Rightwards Double Arrow From Bar +\u27FF;Long Rightwards Squiggle Arrow +\u2800;Braille Pattern Blank +\u2801;Braille Pattern Dots-1 +\u2802;Braille Pattern Dots-2 +\u2803;Braille Pattern Dots-12 +\u2804;Braille Pattern Dots-3 +\u2805;Braille Pattern Dots-13 +\u2806;Braille Pattern Dots-23 +\u2807;Braille Pattern Dots-123 +\u2808;Braille Pattern Dots-4 +\u2809;Braille Pattern Dots-14 +\u280A;Braille Pattern Dots-24 +\u280B;Braille Pattern Dots-124 +\u280C;Braille Pattern Dots-34 +\u280D;Braille Pattern Dots-134 +\u280E;Braille Pattern Dots-234 +\u280F;Braille Pattern Dots-1234 +\u2810;Braille Pattern Dots-5 +\u2811;Braille Pattern Dots-15 +\u2812;Braille Pattern Dots-25 +\u2813;Braille Pattern Dots-125 +\u2814;Braille Pattern Dots-35 +\u2815;Braille Pattern Dots-135 +\u2816;Braille Pattern Dots-235 +\u2817;Braille Pattern Dots-1235 +\u2818;Braille Pattern Dots-45 +\u2819;Braille Pattern Dots-145 +\u281A;Braille Pattern Dots-245 +\u281B;Braille Pattern Dots-1245 +\u281C;Braille Pattern Dots-345 +\u281D;Braille Pattern Dots-1345 +\u281E;Braille Pattern Dots-2345 +\u281F;Braille Pattern Dots-12345 +\u2820;Braille Pattern Dots-6 +\u2821;Braille Pattern Dots-16 +\u2822;Braille Pattern Dots-26 +\u2823;Braille Pattern Dots-126 +\u2824;Braille Pattern Dots-36 +\u2825;Braille Pattern Dots-136 +\u2826;Braille Pattern Dots-236 +\u2827;Braille Pattern Dots-1236 +\u2828;Braille Pattern Dots-46 +\u2829;Braille Pattern Dots-146 +\u282A;Braille Pattern Dots-246 +\u282B;Braille Pattern Dots-1246 +\u282C;Braille Pattern Dots-346 +\u282D;Braille Pattern Dots-1346 +\u282E;Braille Pattern Dots-2346 +\u282F;Braille Pattern Dots-12346 +\u2830;Braille Pattern Dots-56 +\u2831;Braille Pattern Dots-156 +\u2832;Braille Pattern Dots-256 +\u2833;Braille Pattern Dots-1256 +\u2834;Braille Pattern Dots-356 +\u2835;Braille Pattern Dots-1356 +\u2836;Braille Pattern Dots-2356 +\u2837;Braille Pattern Dots-12356 +\u2838;Braille Pattern Dots-456 +\u2839;Braille Pattern Dots-1456 +\u283A;Braille Pattern Dots-2456 +\u283B;Braille Pattern Dots-12456 +\u283C;Braille Pattern Dots-3456 +\u283D;Braille Pattern Dots-13456 +\u283E;Braille Pattern Dots-23456 +\u283F;Braille Pattern Dots-123456 +\u2840;Braille Pattern Dots-7 +\u2841;Braille Pattern Dots-17 +\u2842;Braille Pattern Dots-27 +\u2843;Braille Pattern Dots-127 +\u2844;Braille Pattern Dots-37 +\u2845;Braille Pattern Dots-137 +\u2846;Braille Pattern Dots-237 +\u2847;Braille Pattern Dots-1237 +\u2848;Braille Pattern Dots-47 +\u2849;Braille Pattern Dots-147 +\u284A;Braille Pattern Dots-247 +\u284B;Braille Pattern Dots-1247 +\u284C;Braille Pattern Dots-347 +\u284D;Braille Pattern Dots-1347 +\u284E;Braille Pattern Dots-2347 +\u284F;Braille Pattern Dots-12347 +\u2850;Braille Pattern Dots-57 +\u2851;Braille Pattern Dots-157 +\u2852;Braille Pattern Dots-257 +\u2853;Braille Pattern Dots-1257 +\u2854;Braille Pattern Dots-357 +\u2855;Braille Pattern Dots-1357 +\u2856;Braille Pattern Dots-2357 +\u2857;Braille Pattern Dots-12357 +\u2858;Braille Pattern Dots-457 +\u2859;Braille Pattern Dots-1457 +\u285A;Braille Pattern Dots-2457 +\u285B;Braille Pattern Dots-12457 +\u285C;Braille Pattern Dots-3457 +\u285D;Braille Pattern Dots-13457 +\u285E;Braille Pattern Dots-23457 +\u285F;Braille Pattern Dots-123457 +\u2860;Braille Pattern Dots-67 +\u2861;Braille Pattern Dots-167 +\u2862;Braille Pattern Dots-267 +\u2863;Braille Pattern Dots-1267 +\u2864;Braille Pattern Dots-367 +\u2865;Braille Pattern Dots-1367 +\u2866;Braille Pattern Dots-2367 +\u2867;Braille Pattern Dots-12367 +\u2868;Braille Pattern Dots-467 +\u2869;Braille Pattern Dots-1467 +\u286A;Braille Pattern Dots-2467 +\u286B;Braille Pattern Dots-12467 +\u286C;Braille Pattern Dots-3467 +\u286D;Braille Pattern Dots-13467 +\u286E;Braille Pattern Dots-23467 +\u286F;Braille Pattern Dots-123467 +\u2870;Braille Pattern Dots-567 +\u2871;Braille Pattern Dots-1567 +\u2872;Braille Pattern Dots-2567 +\u2873;Braille Pattern Dots-12567 +\u2874;Braille Pattern Dots-3567 +\u2875;Braille Pattern Dots-13567 +\u2876;Braille Pattern Dots-23567 +\u2877;Braille Pattern Dots-123567 +\u2878;Braille Pattern Dots-4567 +\u2879;Braille Pattern Dots-14567 +\u287A;Braille Pattern Dots-24567 +\u287B;Braille Pattern Dots-124567 +\u287C;Braille Pattern Dots-34567 +\u287D;Braille Pattern Dots-134567 +\u287E;Braille Pattern Dots-234567 +\u287F;Braille Pattern Dots-1234567 +\u2880;Braille Pattern Dots-8 +\u2881;Braille Pattern Dots-18 +\u2882;Braille Pattern Dots-28 +\u2883;Braille Pattern Dots-128 +\u2884;Braille Pattern Dots-38 +\u2885;Braille Pattern Dots-138 +\u2886;Braille Pattern Dots-238 +\u2887;Braille Pattern Dots-1238 +\u2888;Braille Pattern Dots-48 +\u2889;Braille Pattern Dots-148 +\u288A;Braille Pattern Dots-248 +\u288B;Braille Pattern Dots-1248 +\u288C;Braille Pattern Dots-348 +\u288D;Braille Pattern Dots-1348 +\u288E;Braille Pattern Dots-2348 +\u288F;Braille Pattern Dots-12348 +\u2890;Braille Pattern Dots-58 +\u2891;Braille Pattern Dots-158 +\u2892;Braille Pattern Dots-258 +\u2893;Braille Pattern Dots-1258 +\u2894;Braille Pattern Dots-358 +\u2895;Braille Pattern Dots-1358 +\u2896;Braille Pattern Dots-2358 +\u2897;Braille Pattern Dots-12358 +\u2898;Braille Pattern Dots-458 +\u2899;Braille Pattern Dots-1458 +\u289A;Braille Pattern Dots-2458 +\u289B;Braille Pattern Dots-12458 +\u289C;Braille Pattern Dots-3458 +\u289D;Braille Pattern Dots-13458 +\u289E;Braille Pattern Dots-23458 +\u289F;Braille Pattern Dots-123458 +\u28A0;Braille Pattern Dots-68 +\u28A1;Braille Pattern Dots-168 +\u28A2;Braille Pattern Dots-268 +\u28A3;Braille Pattern Dots-1268 +\u28A4;Braille Pattern Dots-368 +\u28A5;Braille Pattern Dots-1368 +\u28A6;Braille Pattern Dots-2368 +\u28A7;Braille Pattern Dots-12368 +\u28A8;Braille Pattern Dots-468 +\u28A9;Braille Pattern Dots-1468 +\u28AA;Braille Pattern Dots-2468 +\u28AB;Braille Pattern Dots-12468 +\u28AC;Braille Pattern Dots-3468 +\u28AD;Braille Pattern Dots-13468 +\u28AE;Braille Pattern Dots-23468 +\u28AF;Braille Pattern Dots-123468 +\u28B0;Braille Pattern Dots-568 +\u28B1;Braille Pattern Dots-1568 +\u28B2;Braille Pattern Dots-2568 +\u28B3;Braille Pattern Dots-12568 +\u28B4;Braille Pattern Dots-3568 +\u28B5;Braille Pattern Dots-13568 +\u28B6;Braille Pattern Dots-23568 +\u28B7;Braille Pattern Dots-123568 +\u28B8;Braille Pattern Dots-4568 +\u28B9;Braille Pattern Dots-14568 +\u28BA;Braille Pattern Dots-24568 +\u28BB;Braille Pattern Dots-124568 +\u28BC;Braille Pattern Dots-34568 +\u28BD;Braille Pattern Dots-134568 +\u28BE;Braille Pattern Dots-234568 +\u28BF;Braille Pattern Dots-1234568 +\u28C0;Braille Pattern Dots-78 +\u28C1;Braille Pattern Dots-178 +\u28C2;Braille Pattern Dots-278 +\u28C3;Braille Pattern Dots-1278 +\u28C4;Braille Pattern Dots-378 +\u28C5;Braille Pattern Dots-1378 +\u28C6;Braille Pattern Dots-2378 +\u28C7;Braille Pattern Dots-12378 +\u28C8;Braille Pattern Dots-478 +\u28C9;Braille Pattern Dots-1478 +\u28CA;Braille Pattern Dots-2478 +\u28CB;Braille Pattern Dots-12478 +\u28CC;Braille Pattern Dots-3478 +\u28CD;Braille Pattern Dots-13478 +\u28CE;Braille Pattern Dots-23478 +\u28CF;Braille Pattern Dots-123478 +\u28D0;Braille Pattern Dots-578 +\u28D1;Braille Pattern Dots-1578 +\u28D2;Braille Pattern Dots-2578 +\u28D3;Braille Pattern Dots-12578 +\u28D4;Braille Pattern Dots-3578 +\u28D5;Braille Pattern Dots-13578 +\u28D6;Braille Pattern Dots-23578 +\u28D7;Braille Pattern Dots-123578 +\u28D8;Braille Pattern Dots-4578 +\u28D9;Braille Pattern Dots-14578 +\u28DA;Braille Pattern Dots-24578 +\u28DB;Braille Pattern Dots-124578 +\u28DC;Braille Pattern Dots-34578 +\u28DD;Braille Pattern Dots-134578 +\u28DE;Braille Pattern Dots-234578 +\u28DF;Braille Pattern Dots-1234578 +\u28E0;Braille Pattern Dots-678 +\u28E1;Braille Pattern Dots-1678 +\u28E2;Braille Pattern Dots-2678 +\u28E3;Braille Pattern Dots-12678 +\u28E4;Braille Pattern Dots-3678 +\u28E5;Braille Pattern Dots-13678 +\u28E6;Braille Pattern Dots-23678 +\u28E7;Braille Pattern Dots-123678 +\u28E8;Braille Pattern Dots-4678 +\u28E9;Braille Pattern Dots-14678 +\u28EA;Braille Pattern Dots-24678 +\u28EB;Braille Pattern Dots-124678 +\u28EC;Braille Pattern Dots-34678 +\u28ED;Braille Pattern Dots-134678 +\u28EE;Braille Pattern Dots-234678 +\u28EF;Braille Pattern Dots-1234678 +\u28F0;Braille Pattern Dots-5678 +\u28F1;Braille Pattern Dots-15678 +\u28F2;Braille Pattern Dots-25678 +\u28F3;Braille Pattern Dots-125678 +\u28F4;Braille Pattern Dots-35678 +\u28F5;Braille Pattern Dots-135678 +\u28F6;Braille Pattern Dots-235678 +\u28F7;Braille Pattern Dots-1235678 +\u28F8;Braille Pattern Dots-45678 +\u28F9;Braille Pattern Dots-145678 +\u28FA;Braille Pattern Dots-245678 +\u28FB;Braille Pattern Dots-1245678 +\u28FC;Braille Pattern Dots-345678 +\u28FD;Braille Pattern Dots-1345678 +\u28FE;Braille Pattern Dots-2345678 +\u28FF;Braille Pattern Dots-12345678 +\u2900;Rightwards Two-Headed Arrow With Vertical Stroke +\u2901;Rightwards Two-Headed Arrow With Double Vertical Stroke +\u2902;Leftwards Double Arrow With Vertical Stroke +\u2903;Rightwards Double Arrow With Vertical Stroke +\u2904;Left Right Double Arrow With Vertical Stroke +\u2905;Rightwards Two-Headed Arrow From Bar +\u2906;Leftwards Double Arrow From Bar +\u2907;Rightwards Double Arrow From Bar +\u2908;Downwards Arrow With Horizontal Stroke +\u2909;Upwards Arrow With Horizontal Stroke +\u290A;Upwards Triple Arrow +\u290B;Downwards Triple Arrow +\u290C;Leftwards Double Dash Arrow +\u290D;Rightwards Double Dash Arrow +\u290E;Leftwards Triple Dash Arrow +\u290F;Rightwards Triple Dash Arrow +\u2910;Rightwards Two-Headed Triple Dash Arrow +\u2911;Rightwards Arrow With Dotted Stem +\u2912;Upwards Arrow To Bar +\u2913;Downwards Arrow To Bar +\u2914;Rightwards Arrow With Tail With Vertical Stroke +\u2915;Rightwards Arrow With Tail With Double Vertical Stroke +\u2916;Rightwards Two-Headed Arrow With Tail +\u2917;Rightwards Two-Headed Arrow With Tail With Vertical Stroke +\u2918;Rightwards Two-Headed Arrow With Tail With Double Vertical Stroke +\u2919;Leftwards Arrow-Tail +\u291A;Rightwards Arrow-Tail +\u291B;Leftwards Double Arrow-Tail +\u291C;Rightwards Double Arrow-Tail +\u291D;Leftwards Arrow To Black Diamond +\u291E;Rightwards Arrow To Black Diamond +\u291F;Leftwards Arrow From Bar To Black Diamond +\u2920;Rightwards Arrow From Bar To Black Diamond +\u2921;North West And South East Arrow +\u2922;North East And South West Arrow +\u2923;North West Arrow With Hook +\u2924;North East Arrow With Hook +\u2925;South East Arrow With Hook +\u2926;South West Arrow With Hook +\u2927;North West Arrow And North East Arrow +\u2928;North East Arrow And South East Arrow +\u2929;South East Arrow And South West Arrow +\u292A;South West Arrow And North West Arrow +\u292B;Rising Diagonal Crossing Falling Diagonal +\u292C;Falling Diagonal Crossing Rising Diagonal +\u292D;South East Arrow Crossing North East Arrow +\u292E;North East Arrow Crossing South East Arrow +\u292F;Falling Diagonal Crossing North East Arrow +\u2930;Rising Diagonal Crossing South East Arrow +\u2931;North East Arrow Crossing North West Arrow +\u2932;North West Arrow Crossing North East Arrow +\u2933;Wave Arrow Pointing Directly Right +\u2934;Arrow Pointing Rightwards Then Curving Upwards +\u2935;Arrow Pointing Rightwards Then Curving Downwards +\u2936;Arrow Pointing Downwards Then Curving Leftwards +\u2937;Arrow Pointing Downwards Then Curving Rightwards +\u2938;Right-Side Arc Clockwise Arrow +\u2939;Left-Side Arc Anticlockwise Arrow +\u293A;Top Arc Anticlockwise Arrow +\u293B;Bottom Arc Anticlockwise Arrow +\u293C;Top Arc Clockwise Arrow With Minus +\u293D;Top Arc Anticlockwise Arrow With Plus +\u293E;Lower Right Semicircular Clockwise Arrow +\u293F;Lower Left Semicircular Anticlockwise Arrow +\u2940;Anticlockwise Closed Circle Arrow +\u2941;Clockwise Closed Circle Arrow +\u2942;Rightwards Arrow Above Short Leftwards Arrow +\u2943;Leftwards Arrow Above Short Rightwards Arrow +\u2944;Short Rightwards Arrow Above Leftwards Arrow +\u2945;Rightwards Arrow With Plus Below +\u2946;Leftwards Arrow With Plus Below +\u2947;Rightwards Arrow Through X +\u2948;Left Right Arrow Through Small Circle +\u2949;Upwards Two-Headed Arrow From Small Circle +\u294A;Left Barb Up Right Barb Down Harpoon +\u294B;Left Barb Down Right Barb Up Harpoon +\u294C;Up Barb Right Down Barb Left Harpoon +\u294D;Up Barb Left Down Barb Right Harpoon +\u294E;Left Barb Up Right Barb Up Harpoon +\u294F;Up Barb Right Down Barb Right Harpoon +\u2950;Left Barb Down Right Barb Down Harpoon +\u2951;Up Barb Left Down Barb Left Harpoon +\u2952;Leftwards Harpoon With Barb Up To Bar +\u2953;Rightwards Harpoon With Barb Up To Bar +\u2954;Upwards Harpoon With Barb Right To Bar +\u2955;Downwards Harpoon With Barb Right To Bar +\u2956;Leftwards Harpoon With Barb Down To Bar +\u2957;Rightwards Harpoon With Barb Down To Bar +\u2958;Upwards Harpoon With Barb Left To Bar +\u2959;Downwards Harpoon With Barb Left To Bar +\u295A;Leftwards Harpoon With Barb Up From Bar +\u295B;Rightwards Harpoon With Barb Up From Bar +\u295C;Upwards Harpoon With Barb Right From Bar +\u295D;Downwards Harpoon With Barb Right From Bar +\u295E;Leftwards Harpoon With Barb Down From Bar +\u295F;Rightwards Harpoon With Barb Down From Bar +\u2960;Upwards Harpoon With Barb Left From Bar +\u2961;Downwards Harpoon With Barb Left From Bar +\u2962;Leftwards Harpoon With Barb Up Above Leftwards Harpoon With Barb Down +\u2963;Upwards Harpoon With Barb Left Beside Upwards Harpoon With Barb Right +\u2964;Rightwards Harpoon With Barb Up Above Rightwards Harpoon With Barb Down +\u2965;Downwards Harpoon With Barb Left Beside Downwards Harpoon With Barb Right +\u2966;Leftwards Harpoon With Barb Up Above Rightwards Harpoon With Barb Up +\u2967;Leftwards Harpoon With Barb Down Above Rightwards Harpoon With Barb Down +\u2968;Rightwards Harpoon With Barb Up Above Leftwards Harpoon With Barb Up +\u2969;Rightwards Harpoon With Barb Down Above Leftwards Harpoon With Barb Down +\u296A;Leftwards Harpoon With Barb Up Above Long Dash +\u296B;Leftwards Harpoon With Barb Down Below Long Dash +\u296C;Rightwards Harpoon With Barb Up Above Long Dash +\u296D;Rightwards Harpoon With Barb Down Below Long Dash +\u296E;Upwards Harpoon With Barb Left Beside Downwards Harpoon With Barb Right +\u296F;Downwards Harpoon With Barb Left Beside Upwards Harpoon With Barb Right +\u2970;Right Double Arrow With Rounded Head +\u2971;Equals Sign Above Rightwards Arrow +\u2972;Tilde Operator Above Rightwards Arrow +\u2973;Leftwards Arrow Above Tilde Operator +\u2974;Rightwards Arrow Above Tilde Operator +\u2975;Rightwards Arrow Above Almost Equal To +\u2976;Less-Than Above Leftwards Arrow +\u2977;Leftwards Arrow Through Less-Than +\u2978;Greater-Than Above Rightwards Arrow +\u2979;Subset Above Rightwards Arrow +\u297A;Leftwards Arrow Through Subset +\u297B;Superset Above Leftwards Arrow +\u297C;Left Fish Tail +\u297D;Right Fish Tail +\u297E;Up Fish Tail +\u297F;Down Fish Tail +\u2980;Triple Vertical Bar Delimiter +\u2981;Z Notation Spot +\u2982;Z Notation Type Colon +\u2983;Left White Curly Bracket +\u2984;Right White Curly Bracket +\u2985;Left White Parenthesis +\u2986;Right White Parenthesis +\u2987;Z Notation Left Image Bracket +\u2988;Z Notation Right Image Bracket +\u2989;Z Notation Left Binding Bracket +\u298A;Z Notation Right Binding Bracket +\u298B;Left Square Bracket With Underbar +\u298C;Right Square Bracket With Underbar +\u298D;Left Square Bracket With Tick In Top Corner +\u298E;Right Square Bracket With Tick In Bottom Corner +\u298F;Left Square Bracket With Tick In Bottom Corner +\u2990;Right Square Bracket With Tick In Top Corner +\u2991;Left Angle Bracket With Dot +\u2992;Right Angle Bracket With Dot +\u2993;Left Arc Less-Than Bracket +\u2994;Right Arc Greater-Than Bracket +\u2995;Double Left Arc Greater-Than Bracket +\u2996;Double Right Arc Less-Than Bracket +\u2997;Left Black Tortoise Shell Bracket +\u2998;Right Black Tortoise Shell Bracket +\u2999;Dotted Fence +\u299A;Vertical Zigzag Line +\u299B;Measured Angle Opening Left +\u299C;Right Angle Variant With Square +\u299D;Measured Right Angle With Dot +\u299E;Angle With S Inside +\u299F;Acute Angle +\u29A0;Spherical Angle Opening Left +\u29A1;Spherical Angle Opening Up +\u29A2;Turned Angle +\u29A3;Reversed Angle +\u29A4;Angle With Underbar +\u29A5;Reversed Angle With Underbar +\u29A6;Oblique Angle Opening Up +\u29A7;Oblique Angle Opening Down +\u29A8;Measured Angle With Open Arm Ending In Arrow Pointing Up And Right +\u29A9;Measured Angle With Open Arm Ending In Arrow Pointing Up And Left +\u29AA;Measured Angle With Open Arm Ending In Arrow Pointing Down And Right +\u29AB;Measured Angle With Open Arm Ending In Arrow Pointing Down And Left +\u29AC;Measured Angle With Open Arm Ending In Arrow Pointing Right And Up +\u29AD;Measured Angle With Open Arm Ending In Arrow Pointing Left And Up +\u29AE;Measured Angle With Open Arm Ending In Arrow Pointing Right And Down +\u29AF;Measured Angle With Open Arm Ending In Arrow Pointing Left And Down +\u29B0;Reversed Empty Set +\u29B1;Empty Set With Overbar +\u29B2;Empty Set With Small Circle Above +\u29B3;Empty Set With Right Arrow Above +\u29B4;Empty Set With Left Arrow Above +\u29B5;Circle With Horizontal Bar +\u29B6;Circled Vertical Bar +\u29B7;Circled Parallel +\u29B8;Circled Reverse Solidus +\u29B9;Circled Perpendicular +\u29BA;Circle Divided By Horizontal Bar And Top Half Divided By Vertical Bar +\u29BB;Circle With Superimposed X +\u29BC;Circled Anticlockwise-Rotated Division Sign +\u29BD;Up Arrow Through Circle +\u29BE;Circled White Bullet +\u29BF;Circled Bullet +\u29C0;Circled Less-Than +\u29C1;Circled Greater-Than +\u29C2;Circle With Small Circle To The Right +\u29C3;Circle With Two Horizontal Strokes To The Right +\u29C4;Squared Rising Diagonal Slash +\u29C5;Squared Falling Diagonal Slash +\u29C6;Squared Asterisk +\u29C7;Squared Small Circle +\u29C8;Squared Square +\u29C9;Two Joined Squares +\u29CA;Triangle With Dot Above +\u29CB;Triangle With Underbar +\u29CC;S In Triangle +\u29CD;Triangle With Serifs At Bottom +\u29CE;Right Triangle Above Left Triangle +\u29CF;Left Triangle Beside Vertical Bar +\u29D0;Vertical Bar Beside Right Triangle +\u29D1;Bowtie With Left Half Black +\u29D2;Bowtie With Right Half Black +\u29D3;Black Bowtie +\u29D4;Times With Left Half Black +\u29D5;Times With Right Half Black +\u29D6;White Hourglass +\u29D7;Black Hourglass +\u29D8;Left Wiggly Fence +\u29D9;Right Wiggly Fence +\u29DA;Left Double Wiggly Fence +\u29DB;Right Double Wiggly Fence +\u29DC;Incomplete Infinity +\u29DD;Tie Over Infinity +\u29DE;Infinity Negated With Vertical Bar +\u29DF;Double-Ended Multimap +\u29E0;Square With Contoured Outline +\u29E1;Increases As +\u29E2;Shuffle Product +\u29E3;Equals Sign And Slanted Parallel +\u29E4;Equals Sign And Slanted Parallel With Tilde Above +\u29E5;Identical To And Slanted Parallel +\u29E6;Gleich Stark +\u29E7;Thermodynamic +\u29E8;Down-Pointing Triangle With Left Half Black +\u29E9;Down-Pointing Triangle With Right Half Black +\u29EA;Black Diamond With Down Arrow +\u29EB;Black Lozenge +\u29EC;White Circle With Down Arrow +\u29ED;Black Circle With Down Arrow +\u29EE;Error-Barred White Square +\u29EF;Error-Barred Black Square +\u29F0;Error-Barred White Diamond +\u29F1;Error-Barred Black Diamond +\u29F2;Error-Barred White Circle +\u29F3;Error-Barred Black Circle +\u29F4;Rule-Delayed +\u29F5;Reverse Solidus Operator +\u29F6;Solidus With Overbar +\u29F7;Reverse Solidus With Horizontal Stroke +\u29F8;Big Solidus +\u29F9;Big Reverse Solidus +\u29FA;Double Plus +\u29FB;Triple Plus +\u29FC;Left-Pointing Curved Angle Bracket +\u29FD;Right-Pointing Curved Angle Bracket +\u29FE;Tiny +\u29FF;Miny +\u2A00;N-Ary Circled Dot Operator +\u2A01;N-Ary Circled Plus Operator +\u2A02;N-Ary Circled Times Operator +\u2A03;N-Ary Union Operator With Dot +\u2A04;N-Ary Union Operator With Plus +\u2A05;N-Ary Square Intersection Operator +\u2A06;N-Ary Square Union Operator +\u2A07;Two Logical And Operator +\u2A08;Two Logical Or Operator +\u2A09;N-Ary Times Operator +\u2A0A;Modulo Two Sum +\u2A0B;Summation With Integral +\u2A0C;Quadruple Integral Operator +\u2A0D;Finite Part Integral +\u2A0E;Integral With Double Stroke +\u2A0F;Integral Average With Slash +\u2A10;Circulation Function +\u2A11;Anticlockwise Integration +\u2A12;Line Integration With Rectangular Path Around Pole +\u2A13;Line Integration With Semicircular Path Around Pole +\u2A14;Line Integration Not Including The Pole +\u2A15;Integral Around A Point Operator +\u2A16;Quaternion Integral Operator +\u2A17;Integral With Leftwards Arrow With Hook +\u2A18;Integral With Times Sign +\u2A19;Integral With Intersection +\u2A1A;Integral With Union +\u2A1B;Integral With Overbar +\u2A1C;Integral With Underbar +\u2A1D;Join +\u2A1E;Large Left Triangle Operator +\u2A1F;Z Notation Schema Composition +\u2A20;Z Notation Schema Piping +\u2A21;Z Notation Schema Projection +\u2A22;Plus Sign With Small Circle Above +\u2A23;Plus Sign With Circumflex Accent Above +\u2A24;Plus Sign With Tilde Above +\u2A25;Plus Sign With Dot Below +\u2A26;Plus Sign With Tilde Below +\u2A27;Plus Sign With Subscript Two +\u2A28;Plus Sign With Black Triangle +\u2A29;Minus Sign With Comma Above +\u2A2A;Minus Sign With Dot Below +\u2A2B;Minus Sign With Falling Dots +\u2A2C;Minus Sign With Rising Dots +\u2A2D;Plus Sign In Left Half Circle +\u2A2E;Plus Sign In Right Half Circle +\u2A2F;Vector Or Cross Product +\u2A30;Multiplication Sign With Dot Above +\u2A31;Multiplication Sign With Underbar +\u2A32;Semidirect Product With Bottom Closed +\u2A33;Smash Product +\u2A34;Multiplication Sign In Left Half Circle +\u2A35;Multiplication Sign In Right Half Circle +\u2A36;Circled Multiplication Sign With Circumflex Accent +\u2A37;Multiplication Sign In Double Circle +\u2A38;Circled Division Sign +\u2A39;Plus Sign In Triangle +\u2A3A;Minus Sign In Triangle +\u2A3B;Multiplication Sign In Triangle +\u2A3C;Interior Product +\u2A3D;Righthand Interior Product +\u2A3E;Z Notation Relational Composition +\u2A3F;Amalgamation Or Coproduct +\u2A40;Intersection With Dot +\u2A41;Union With Minus Sign +\u2A42;Union With Overbar +\u2A43;Intersection With Overbar +\u2A44;Intersection With Logical And +\u2A45;Union With Logical Or +\u2A46;Union Above Intersection +\u2A47;Intersection Above Union +\u2A48;Union Above Bar Above Intersection +\u2A49;Intersection Above Bar Above Union +\u2A4A;Union Beside And Joined With Union +\u2A4B;Intersection Beside And Joined With Intersection +\u2A4C;Closed Union With Serifs +\u2A4D;Closed Intersection With Serifs +\u2A4E;Double Square Intersection +\u2A4F;Double Square Union +\u2A50;Closed Union With Serifs And Smash Product +\u2A51;Logical And With Dot Above +\u2A52;Logical Or With Dot Above +\u2A53;Double Logical And +\u2A54;Double Logical Or +\u2A55;Two Intersecting Logical And +\u2A56;Two Intersecting Logical Or +\u2A57;Sloping Large Or +\u2A58;Sloping Large And +\u2A59;Logical Or Overlapping Logical And +\u2A5A;Logical And With Middle Stem +\u2A5B;Logical Or With Middle Stem +\u2A5C;Logical And With Horizontal Dash +\u2A5D;Logical Or With Horizontal Dash +\u2A5E;Logical And With Double Overbar +\u2A5F;Logical And With Underbar +\u2A60;Logical And With Double Underbar +\u2A61;Small Vee With Underbar +\u2A62;Logical Or With Double Overbar +\u2A63;Logical Or With Double Underbar +\u2A64;Z Notation Domain Antirestriction +\u2A65;Z Notation Range Antirestriction +\u2A66;Equals Sign With Dot Below +\u2A67;Identical With Dot Above +\u2A68;Triple Horizontal Bar With Double Vertical Stroke +\u2A69;Triple Horizontal Bar With Triple Vertical Stroke +\u2A6A;Tilde Operator With Dot Above +\u2A6B;Tilde Operator With Rising Dots +\u2A6C;Similar Minus Similar +\u2A6D;Congruent With Dot Above +\u2A6E;Equals With Asterisk +\u2A6F;Almost Equal To With Circumflex Accent +\u2A70;Approximately Equal Or Equal To +\u2A71;Equals Sign Above Plus Sign +\u2A72;Plus Sign Above Equals Sign +\u2A73;Equals Sign Above Tilde Operator +\u2A74;Double Colon Equal +\u2A75;Two Consecutive Equals Signs +\u2A76;Three Consecutive Equals Signs +\u2A77;Equals Sign With Two Dots Above And Two Dots Below +\u2A78;Equivalent With Four Dots Above +\u2A79;Less-Than With Circle Inside +\u2A7A;Greater-Than With Circle Inside +\u2A7B;Less-Than With Question Mark Above +\u2A7C;Greater-Than With Question Mark Above +\u2A7D;Less-Than Or Slanted Equal To +\u2A7E;Greater-Than Or Slanted Equal To +\u2A7F;Less-Than Or Slanted Equal To With Dot Inside +\u2A80;Greater-Than Or Slanted Equal To With Dot Inside +\u2A81;Less-Than Or Slanted Equal To With Dot Above +\u2A82;Greater-Than Or Slanted Equal To With Dot Above +\u2A83;Less-Than Or Slanted Equal To With Dot Above Right +\u2A84;Greater-Than Or Slanted Equal To With Dot Above Left +\u2A85;Less-Than Or Approximate +\u2A86;Greater-Than Or Approximate +\u2A87;Less-Than And Single-Line Not Equal To +\u2A88;Greater-Than And Single-Line Not Equal To +\u2A89;Less-Than And Not Approximate +\u2A8A;Greater-Than And Not Approximate +\u2A8B;Less-Than Above Double-Line Equal Above Greater-Than +\u2A8C;Greater-Than Above Double-Line Equal Above Less-Than +\u2A8D;Less-Than Above Similar Or Equal +\u2A8E;Greater-Than Above Similar Or Equal +\u2A8F;Less-Than Above Similar Above Greater-Than +\u2A90;Greater-Than Above Similar Above Less-Than +\u2A91;Less-Than Above Greater-Than Above Double-Line Equal +\u2A92;Greater-Than Above Less-Than Above Double-Line Equal +\u2A93;Less-Than Above Slanted Equal Above Greater-Than Above Slanted Equal +\u2A94;Greater-Than Above Slanted Equal Above Less-Than Above Slanted Equal +\u2A95;Slanted Equal To Or Less-Than +\u2A96;Slanted Equal To Or Greater-Than +\u2A97;Slanted Equal To Or Less-Than With Dot Inside +\u2A98;Slanted Equal To Or Greater-Than With Dot Inside +\u2A99;Double-Line Equal To Or Less-Than +\u2A9A;Double-Line Equal To Or Greater-Than +\u2A9B;Double-Line Slanted Equal To Or Less-Than +\u2A9C;Double-Line Slanted Equal To Or Greater-Than +\u2A9D;Similar Or Less-Than +\u2A9E;Similar Or Greater-Than +\u2A9F;Similar Above Less-Than Above Equals Sign +\u2AA0;Similar Above Greater-Than Above Equals Sign +\u2AA1;Double Nested Less-Than +\u2AA2;Double Nested Greater-Than +\u2AA3;Double Nested Less-Than With Underbar +\u2AA4;Greater-Than Overlapping Less-Than +\u2AA5;Greater-Than Beside Less-Than +\u2AA6;Less-Than Closed By Curve +\u2AA7;Greater-Than Closed By Curve +\u2AA8;Less-Than Closed By Curve Above Slanted Equal +\u2AA9;Greater-Than Closed By Curve Above Slanted Equal +\u2AAA;Smaller Than +\u2AAB;Larger Than +\u2AAC;Smaller Than Or Equal To +\u2AAD;Larger Than Or Equal To +\u2AAE;Equals Sign With Bumpy Above +\u2AAF;Precedes Above Single-Line Equals Sign +\u2AB0;Succeeds Above Single-Line Equals Sign +\u2AB1;Precedes Above Single-Line Not Equal To +\u2AB2;Succeeds Above Single-Line Not Equal To +\u2AB3;Precedes Above Equals Sign +\u2AB4;Succeeds Above Equals Sign +\u2AB5;Precedes Above Not Equal To +\u2AB6;Succeeds Above Not Equal To +\u2AB7;Precedes Above Almost Equal To +\u2AB8;Succeeds Above Almost Equal To +\u2AB9;Precedes Above Not Almost Equal To +\u2ABA;Succeeds Above Not Almost Equal To +\u2ABB;Double Precedes +\u2ABC;Double Succeeds +\u2ABD;Subset With Dot +\u2ABE;Superset With Dot +\u2ABF;Subset With Plus Sign Below +\u2AC0;Superset With Plus Sign Below +\u2AC1;Subset With Multiplication Sign Below +\u2AC2;Superset With Multiplication Sign Below +\u2AC3;Subset Of Or Equal To With Dot Above +\u2AC4;Superset Of Or Equal To With Dot Above +\u2AC5;Subset Of Above Equals Sign +\u2AC6;Superset Of Above Equals Sign +\u2AC7;Subset Of Above Tilde Operator +\u2AC8;Superset Of Above Tilde Operator +\u2AC9;Subset Of Above Almost Equal To +\u2ACA;Superset Of Above Almost Equal To +\u2ACB;Subset Of Above Not Equal To +\u2ACC;Superset Of Above Not Equal To +\u2ACD;Square Left Open Box Operator +\u2ACE;Square Right Open Box Operator +\u2ACF;Closed Subset +\u2AD0;Closed Superset +\u2AD1;Closed Subset Or Equal To +\u2AD2;Closed Superset Or Equal To +\u2AD3;Subset Above Superset +\u2AD4;Superset Above Subset +\u2AD5;Subset Above Subset +\u2AD6;Superset Above Superset +\u2AD7;Superset Beside Subset +\u2AD8;Superset Beside And Joined By Dash With Subset +\u2AD9;Element Of Opening Downwards +\u2ADA;Pitchfork With Tee Top +\u2ADB;Transversal Intersection +\u2ADC;Forking +\u2ADD;Nonforking +\u2ADE;Short Left Tack +\u2ADF;Short Down Tack +\u2AE0;Short Up Tack +\u2AE1;Perpendicular With S +\u2AE2;Vertical Bar Triple Right Turnstile +\u2AE3;Double Vertical Bar Left Turnstile +\u2AE4;Vertical Bar Double Left Turnstile +\u2AE5;Double Vertical Bar Double Left Turnstile +\u2AE6;Long Dash From Left Member Of Double Vertical +\u2AE7;Short Down Tack With Overbar +\u2AE8;Short Up Tack With Underbar +\u2AE9;Short Up Tack Above Short Down Tack +\u2AEA;Double Down Tack +\u2AEB;Double Up Tack +\u2AEC;Double Stroke Not Sign +\u2AED;Reversed Double Stroke Not Sign +\u2AEE;Does Not Divide With Reversed Negation Slash +\u2AEF;Vertical Line With Circle Above +\u2AF0;Vertical Line With Circle Below +\u2AF1;Down Tack With Circle Below +\u2AF2;Parallel With Horizontal Stroke +\u2AF3;Parallel With Tilde Operator +\u2AF4;Triple Vertical Bar Binary Relation +\u2AF5;Triple Vertical Bar With Horizontal Stroke +\u2AF6;Triple Colon Operator +\u2AF7;Triple Nested Less-Than +\u2AF8;Triple Nested Greater-Than +\u2AF9;Double-Line Slanted Less-Than Or Equal To +\u2AFA;Double-Line Slanted Greater-Than Or Equal To +\u2AFB;Triple Solidus Binary Relation +\u2AFC;Large Triple Vertical Bar Operator +\u2AFD;Double Solidus Operator +\u2AFE;White Vertical Bar +\u2AFF;N-Ary White Vertical Bar +\u2B00;North East White Arrow +\u2B01;North West White Arrow +\u2B02;South East White Arrow +\u2B03;South West White Arrow +\u2B04;Left Right White Arrow +\u2B05;Leftwards Black Arrow +\u2B06;Upwards Black Arrow +\u2B07;Downwards Black Arrow +\u2B08;North East Black Arrow +\u2B09;North West Black Arrow +\u2B0A;South East Black Arrow +\u2B0B;South West Black Arrow +\u2B0C;Left Right Black Arrow +\u2B0D;Up Down Black Arrow +\u2B0E;Rightwards Arrow With Tip Downwards +\u2B0F;Rightwards Arrow With Tip Upwards +\u2B10;Leftwards Arrow With Tip Downwards +\u2B11;Leftwards Arrow With Tip Upwards +\u2B12;Square With Top Half Black +\u2B13;Square With Bottom Half Black +\u2B14;Square With Upper Right Diagonal Half Black +\u2B15;Square With Lower Left Diagonal Half Black +\u2B16;Diamond With Left Half Black +\u2B17;Diamond With Right Half Black +\u2B18;Diamond With Top Half Black +\u2B19;Diamond With Bottom Half Black +\u2B1A;Dotted Square +\u2B1B;Black Large Square +\u2B1C;White Large Square +\u2B1D;Black Very Small Square +\u2B1E;White Very Small Square +\u2B1F;Black Pentagon +\u2B20;White Pentagon +\u2B21;White Hexagon +\u2B22;Black Hexagon +\u2B23;Horizontal Black Hexagon +\u2B24;Black Large Circle +\u2B25;Black Medium Diamond +\u2B26;White Medium Diamond +\u2B27;Black Medium Lozenge +\u2B28;White Medium Lozenge +\u2B29;Black Small Diamond +\u2B2A;Black Small Lozenge +\u2B2B;White Small Lozenge +\u2B2C;Black Horizontal Ellipse +\u2B2D;White Horizontal Ellipse +\u2B2E;Black Vertical Ellipse +\u2B2F;White Vertical Ellipse +\u2B30;Left Arrow With Small Circle +\u2B31;Three Leftwards Arrows +\u2B32;Left Arrow With Circled Plus +\u2B33;Long Leftwards Squiggle Arrow +\u2B34;Leftwards Two-Headed Arrow With Vertical Stroke +\u2B35;Leftwards Two-Headed Arrow With Double Vertical Stroke +\u2B36;Leftwards Two-Headed Arrow From Bar +\u2B37;Leftwards Two-Headed Triple Dash Arrow +\u2B38;Leftwards Arrow With Dotted Stem +\u2B39;Leftwards Arrow With Tail With Vertical Stroke +\u2B3A;Leftwards Arrow With Tail With Double Vertical Stroke +\u2B3B;Leftwards Two-Headed Arrow With Tail +\u2B3C;Leftwards Two-Headed Arrow With Tail With Vertical Stroke +\u2B3D;Leftwards Two-Headed Arrow With Tail With Double Vertical Stroke +\u2B3E;Leftwards Arrow Through X +\u2B3F;Wave Arrow Pointing Directly Left +\u2B40;Equals Sign Above Leftwards Arrow +\u2B41;Reverse Tilde Operator Above Leftwards Arrow +\u2B42;Leftwards Arrow Above Reverse Almost Equal To +\u2B43;Rightwards Arrow Through Greater-Than +\u2B44;Rightwards Arrow Through Superset +\u2B45;Leftwards Quadruple Arrow +\u2B46;Rightwards Quadruple Arrow +\u2B47;Reverse Tilde Operator Above Rightwards Arrow +\u2B48;Rightwards Arrow Above Reverse Almost Equal To +\u2B49;Tilde Operator Above Leftwards Arrow +\u2B4A;Leftwards Arrow Above Almost Equal To +\u2B4B;Leftwards Arrow Above Reverse Tilde Operator +\u2B4C;Rightwards Arrow Above Reverse Tilde Operator +\u2B4D;Downwards Triangle-Headed Zigzag Arrow +\u2B4E;Short Slanted North Arrow +\u2B4F;Short Backslanted South Arrow +\u2B50;White Medium Star +\u2B51;Black Small Star +\u2B52;White Small Star +\u2B53;Black Right-Pointing Pentagon +\u2B54;White Right-Pointing Pentagon +\u2B55;Heavy Large Circle +\u2B56;Heavy Oval With Oval Inside +\u2B57;Heavy Circle With Circle Inside +\u2B58;Heavy Circle +\u2B59;Heavy Circled Saltire +\u2B5A;Slanted North Arrow With Hooked Head +\u2B5B;Backslanted South Arrow With Hooked Tail +\u2B5C;Slanted North Arrow With Horizontal Tail +\u2B5D;Backslanted South Arrow With Horizontal Tail +\u2B5E;Bent Arrow Pointing Downwards Then North East +\u2B5F;Short Bent Arrow Pointing Downwards Then North East +\u2B60;Leftwards Triangle-Headed Arrow +\u2B61;Upwards Triangle-Headed Arrow +\u2B62;Rightwards Triangle-Headed Arrow +\u2B63;Downwards Triangle-Headed Arrow +\u2B64;Left Right Triangle-Headed Arrow +\u2B65;Up Down Triangle-Headed Arrow +\u2B66;North West Triangle-Headed Arrow +\u2B67;North East Triangle-Headed Arrow +\u2B68;South East Triangle-Headed Arrow +\u2B69;South West Triangle-Headed Arrow +\u2B6A;Leftwards Triangle-Headed Dashed Arrow +\u2B6B;Upwards Triangle-Headed Dashed Arrow +\u2B6C;Rightwards Triangle-Headed Dashed Arrow +\u2B6D;Downwards Triangle-Headed Dashed Arrow +\u2B6E;Clockwise Triangle-Headed Open Circle Arrow +\u2B6F;Anticlockwise Triangle-Headed Open Circle Arrow +\u2B70;Leftwards Triangle-Headed Arrow To Bar +\u2B71;Upwards Triangle-Headed Arrow To Bar +\u2B72;Rightwards Triangle-Headed Arrow To Bar +\u2B73;Downwards Triangle-Headed Arrow To Bar +\u2B76;North West Triangle-Headed Arrow To Bar +\u2B77;North East Triangle-Headed Arrow To Bar +\u2B78;South East Triangle-Headed Arrow To Bar +\u2B79;South West Triangle-Headed Arrow To Bar +\u2B7A;Leftwards Triangle-Headed Arrow With Double Horizontal Stroke +\u2B7B;Upwards Triangle-Headed Arrow With Double Horizontal Stroke +\u2B7C;Rightwards Triangle-Headed Arrow With Double Horizontal Stroke +\u2B7D;Downwards Triangle-Headed Arrow With Double Horizontal Stroke +\u2B7E;Horizontal Tab Key +\u2B7F;Vertical Tab Key +\u2B80;Leftwards Triangle-Headed Arrow Over Rightwards Triangle-Headed Arrow +\u2B81;Upwards Triangle-Headed Arrow Leftwards Of Downwards Triangle-Headed Arrow +\u2B82;Rightwards Triangle-Headed Arrow Over Leftwards Triangle-Headed Arrow +\u2B83;Downwards Triangle-Headed Arrow Leftwards Of Upwards Triangle-Headed Arrow +\u2B84;Leftwards Triangle-Headed Paired Arrows +\u2B85;Upwards Triangle-Headed Paired Arrows +\u2B86;Rightwards Triangle-Headed Paired Arrows +\u2B87;Downwards Triangle-Headed Paired Arrows +\u2B88;Leftwards Black Circled White Arrow +\u2B89;Upwards Black Circled White Arrow +\u2B8A;Rightwards Black Circled White Arrow +\u2B8B;Downwards Black Circled White Arrow +\u2B8C;Anticlockwise Triangle-Headed Right U-Shaped Arrow +\u2B8D;Anticlockwise Triangle-Headed Bottom U-Shaped Arrow +\u2B8E;Anticlockwise Triangle-Headed Left U-Shaped Arrow +\u2B8F;Anticlockwise Triangle-Headed Top U-Shaped Arrow +\u2B90;Return Left +\u2B91;Return Right +\u2B92;Newline Left +\u2B93;Newline Right +\u2B94;Four Corner Arrows Circling Anticlockwise +\u2B95;Rightwards Black Arrow +\u2B97;Symbol For Type A Electronics +\u2B98;Three-D Top-Lighted Leftwards Equilateral Arrowhead +\u2B99;Three-D Right-Lighted Upwards Equilateral Arrowhead +\u2B9A;Three-D Top-Lighted Rightwards Equilateral Arrowhead +\u2B9B;Three-D Left-Lighted Downwards Equilateral Arrowhead +\u2B9C;Black Leftwards Equilateral Arrowhead +\u2B9D;Black Upwards Equilateral Arrowhead +\u2B9E;Black Rightwards Equilateral Arrowhead +\u2B9F;Black Downwards Equilateral Arrowhead +\u2BA0;Downwards Triangle-Headed Arrow With Long Tip Leftwards +\u2BA1;Downwards Triangle-Headed Arrow With Long Tip Rightwards +\u2BA2;Upwards Triangle-Headed Arrow With Long Tip Leftwards +\u2BA3;Upwards Triangle-Headed Arrow With Long Tip Rightwards +\u2BA4;Leftwards Triangle-Headed Arrow With Long Tip Upwards +\u2BA5;Rightwards Triangle-Headed Arrow With Long Tip Upwards +\u2BA6;Leftwards Triangle-Headed Arrow With Long Tip Downwards +\u2BA7;Rightwards Triangle-Headed Arrow With Long Tip Downwards +\u2BA8;Black Curved Downwards And Leftwards Arrow +\u2BA9;Black Curved Downwards And Rightwards Arrow +\u2BAA;Black Curved Upwards And Leftwards Arrow +\u2BAB;Black Curved Upwards And Rightwards Arrow +\u2BAC;Black Curved Leftwards And Upwards Arrow +\u2BAD;Black Curved Rightwards And Upwards Arrow +\u2BAE;Black Curved Leftwards And Downwards Arrow +\u2BAF;Black Curved Rightwards And Downwards Arrow +\u2BB0;Ribbon Arrow Down Left +\u2BB1;Ribbon Arrow Down Right +\u2BB2;Ribbon Arrow Up Left +\u2BB3;Ribbon Arrow Up Right +\u2BB4;Ribbon Arrow Left Up +\u2BB5;Ribbon Arrow Right Up +\u2BB6;Ribbon Arrow Left Down +\u2BB7;Ribbon Arrow Right Down +\u2BB8;Upwards White Arrow From Bar With Horizontal Bar +\u2BB9;Up Arrowhead In A Rectangle Box +\u2BBA;Overlapping White Squares +\u2BBB;Overlapping White And Black Squares +\u2BBC;Overlapping Black Squares +\u2BBD;Ballot Box With Light X +\u2BBE;Circled X +\u2BBF;Circled Bold X +\u2BC0;Black Square Centred +\u2BC1;Black Diamond Centred +\u2BC2;Turned Black Pentagon +\u2BC3;Horizontal Black Octagon +\u2BC4;Black Octagon +\u2BC5;Black Medium Up-Pointing Triangle Centred +\u2BC6;Black Medium Down-Pointing Triangle Centred +\u2BC7;Black Medium Left-Pointing Triangle Centred +\u2BC8;Black Medium Right-Pointing Triangle Centred +\u2BC9;Neptune Form Two +\u2BCA;Top Half Black Circle +\u2BCB;Bottom Half Black Circle +\u2BCC;Light Four Pointed Black Cusp +\u2BCD;Rotated Light Four Pointed Black Cusp +\u2BCE;White Four Pointed Cusp +\u2BCF;Rotated White Four Pointed Cusp +\u2BD0;Square Position Indicator +\u2BD1;Uncertainty Sign +\u2BD2;Group Mark +\u2BD3;Pluto Form Two +\u2BD4;Pluto Form Three +\u2BD5;Pluto Form Four +\u2BD6;Pluto Form Five +\u2BD7;Transpluto +\u2BD8;Proserpina +\u2BD9;Astraea +\u2BDA;Hygiea +\u2BDB;Pholus +\u2BDC;Nessus +\u2BDD;White Moon Selena +\u2BDE;Black Diamond On Cross +\u2BDF;True Light Moon Arta +\u2BE0;Cupido +\u2BE1;Hades +\u2BE2;Zeus +\u2BE3;Kronos +\u2BE4;Apollon +\u2BE5;Admetos +\u2BE6;Vulcanus +\u2BE7;Poseidon +\u2BE8;Left Half Black Star +\u2BE9;Right Half Black Star +\u2BEA;Star With Left Half Black +\u2BEB;Star With Right Half Black +\u2BEC;Leftwards Two-Headed Arrow With Triangle Arrowheads +\u2BED;Upwards Two-Headed Arrow With Triangle Arrowheads +\u2BEE;Rightwards Two-Headed Arrow With Triangle Arrowheads +\u2BEF;Downwards Two-Headed Arrow With Triangle Arrowheads +\u2BF0;Eris Form One +\u2BF1;Eris Form Two +\u2BF2;Sedna +\u2BF3;Russian Astrological Symbol Vigintile +\u2BF4;Russian Astrological Symbol Novile +\u2BF5;Russian Astrological Symbol Quintile +\u2BF6;Russian Astrological Symbol Binovile +\u2BF7;Russian Astrological Symbol Sentagon +\u2BF8;Russian Astrological Symbol Tredecile +\u2BF9;Equals Sign With Infinity Below +\u2BFA;United Symbol +\u2BFB;Separated Symbol +\u2BFC;Doubled Symbol +\u2BFD;Passed Symbol +\u2BFE;Reversed Right Angle +\u2BFF;Hellschreiber Pause Symbol +\u2C00;Glagolitic Capital Letter Azu +\u2C01;Glagolitic Capital Letter Buky +\u2C02;Glagolitic Capital Letter Vede +\u2C03;Glagolitic Capital Letter Glagoli +\u2C04;Glagolitic Capital Letter Dobro +\u2C05;Glagolitic Capital Letter Yestu +\u2C06;Glagolitic Capital Letter Zhivete +\u2C07;Glagolitic Capital Letter Dzelo +\u2C08;Glagolitic Capital Letter Zemlja +\u2C09;Glagolitic Capital Letter Izhe +\u2C0A;Glagolitic Capital Letter Initial Izhe +\u2C0B;Glagolitic Capital Letter I +\u2C0C;Glagolitic Capital Letter Djervi +\u2C0D;Glagolitic Capital Letter Kako +\u2C0E;Glagolitic Capital Letter Ljudije +\u2C0F;Glagolitic Capital Letter Myslite +\u2C10;Glagolitic Capital Letter Nashi +\u2C11;Glagolitic Capital Letter Onu +\u2C12;Glagolitic Capital Letter Pokoji +\u2C13;Glagolitic Capital Letter Ritsi +\u2C14;Glagolitic Capital Letter Slovo +\u2C15;Glagolitic Capital Letter Tvrido +\u2C16;Glagolitic Capital Letter Uku +\u2C17;Glagolitic Capital Letter Fritu +\u2C18;Glagolitic Capital Letter Heru +\u2C19;Glagolitic Capital Letter Otu +\u2C1A;Glagolitic Capital Letter Pe +\u2C1B;Glagolitic Capital Letter Shta +\u2C1C;Glagolitic Capital Letter Tsi +\u2C1D;Glagolitic Capital Letter Chrivi +\u2C1E;Glagolitic Capital Letter Sha +\u2C1F;Glagolitic Capital Letter Yeru +\u2C20;Glagolitic Capital Letter Yeri +\u2C21;Glagolitic Capital Letter Yati +\u2C22;Glagolitic Capital Letter Spidery Ha +\u2C23;Glagolitic Capital Letter Yu +\u2C24;Glagolitic Capital Letter Small Yus +\u2C25;Glagolitic Capital Letter Small Yus With Tail +\u2C26;Glagolitic Capital Letter Yo +\u2C27;Glagolitic Capital Letter Iotated Small Yus +\u2C28;Glagolitic Capital Letter Big Yus +\u2C29;Glagolitic Capital Letter Iotated Big Yus +\u2C2A;Glagolitic Capital Letter Fita +\u2C2B;Glagolitic Capital Letter Izhitsa +\u2C2C;Glagolitic Capital Letter Shtapic +\u2C2D;Glagolitic Capital Letter Trokutasti A +\u2C2E;Glagolitic Capital Letter Latinate Myslite +\u2C2F;Glagolitic Capital Letter Caudate Chrivi +\u2C30;Glagolitic Small Letter Azu +\u2C31;Glagolitic Small Letter Buky +\u2C32;Glagolitic Small Letter Vede +\u2C33;Glagolitic Small Letter Glagoli +\u2C34;Glagolitic Small Letter Dobro +\u2C35;Glagolitic Small Letter Yestu +\u2C36;Glagolitic Small Letter Zhivete +\u2C37;Glagolitic Small Letter Dzelo +\u2C38;Glagolitic Small Letter Zemlja +\u2C39;Glagolitic Small Letter Izhe +\u2C3A;Glagolitic Small Letter Initial Izhe +\u2C3B;Glagolitic Small Letter I +\u2C3C;Glagolitic Small Letter Djervi +\u2C3D;Glagolitic Small Letter Kako +\u2C3E;Glagolitic Small Letter Ljudije +\u2C3F;Glagolitic Small Letter Myslite +\u2C40;Glagolitic Small Letter Nashi +\u2C41;Glagolitic Small Letter Onu +\u2C42;Glagolitic Small Letter Pokoji +\u2C43;Glagolitic Small Letter Ritsi +\u2C44;Glagolitic Small Letter Slovo +\u2C45;Glagolitic Small Letter Tvrido +\u2C46;Glagolitic Small Letter Uku +\u2C47;Glagolitic Small Letter Fritu +\u2C48;Glagolitic Small Letter Heru +\u2C49;Glagolitic Small Letter Otu +\u2C4A;Glagolitic Small Letter Pe +\u2C4B;Glagolitic Small Letter Shta +\u2C4C;Glagolitic Small Letter Tsi +\u2C4D;Glagolitic Small Letter Chrivi +\u2C4E;Glagolitic Small Letter Sha +\u2C4F;Glagolitic Small Letter Yeru +\u2C50;Glagolitic Small Letter Yeri +\u2C51;Glagolitic Small Letter Yati +\u2C52;Glagolitic Small Letter Spidery Ha +\u2C53;Glagolitic Small Letter Yu +\u2C54;Glagolitic Small Letter Small Yus +\u2C55;Glagolitic Small Letter Small Yus With Tail +\u2C56;Glagolitic Small Letter Yo +\u2C57;Glagolitic Small Letter Iotated Small Yus +\u2C58;Glagolitic Small Letter Big Yus +\u2C59;Glagolitic Small Letter Iotated Big Yus +\u2C5A;Glagolitic Small Letter Fita +\u2C5B;Glagolitic Small Letter Izhitsa +\u2C5C;Glagolitic Small Letter Shtapic +\u2C5D;Glagolitic Small Letter Trokutasti A +\u2C5E;Glagolitic Small Letter Latinate Myslite +\u2C5F;Glagolitic Small Letter Caudate Chrivi +\u2C60;Latin Capital Letter L With Double Bar +\u2C61;Latin Small Letter L With Double Bar +\u2C62;Latin Capital Letter L With Middle Tilde +\u2C63;Latin Capital Letter P With Stroke +\u2C64;Latin Capital Letter R With Tail +\u2C65;Latin Small Letter A With Stroke +\u2C66;Latin Small Letter T With Diagonal Stroke +\u2C67;Latin Capital Letter H With Descender +\u2C68;Latin Small Letter H With Descender +\u2C69;Latin Capital Letter K With Descender +\u2C6A;Latin Small Letter K With Descender +\u2C6B;Latin Capital Letter Z With Descender +\u2C6C;Latin Small Letter Z With Descender +\u2C6D;Latin Capital Letter Alpha +\u2C6E;Latin Capital Letter M With Hook +\u2C6F;Latin Capital Letter Turned A +\u2C70;Latin Capital Letter Turned Alpha +\u2C71;Latin Small Letter V With Right Hook +\u2C72;Latin Capital Letter W With Hook +\u2C73;Latin Small Letter W With Hook +\u2C74;Latin Small Letter V With Curl +\u2C75;Latin Capital Letter Half H +\u2C76;Latin Small Letter Half H +\u2C77;Latin Small Letter Tailless Phi +\u2C78;Latin Small Letter E With Notch +\u2C79;Latin Small Letter Turned R With Tail +\u2C7A;Latin Small Letter O With Low Ring Inside +\u2C7B;Latin Letter Small Capital Turned E +\u2C7C;Latin Subscript Small Letter J +\u2C7D;Modifier Letter Capital V +\u2C7E;Latin Capital Letter S With Swash Tail +\u2C7F;Latin Capital Letter Z With Swash Tail +\u2C80;Coptic Capital Letter Alfa +\u2C81;Coptic Small Letter Alfa +\u2C82;Coptic Capital Letter Vida +\u2C83;Coptic Small Letter Vida +\u2C84;Coptic Capital Letter Gamma +\u2C85;Coptic Small Letter Gamma +\u2C86;Coptic Capital Letter Dalda +\u2C87;Coptic Small Letter Dalda +\u2C88;Coptic Capital Letter Eie +\u2C89;Coptic Small Letter Eie +\u2C8A;Coptic Capital Letter Sou +\u2C8B;Coptic Small Letter Sou +\u2C8C;Coptic Capital Letter Zata +\u2C8D;Coptic Small Letter Zata +\u2C8E;Coptic Capital Letter Hate +\u2C8F;Coptic Small Letter Hate +\u2C90;Coptic Capital Letter Thethe +\u2C91;Coptic Small Letter Thethe +\u2C92;Coptic Capital Letter Iauda +\u2C93;Coptic Small Letter Iauda +\u2C94;Coptic Capital Letter Kapa +\u2C95;Coptic Small Letter Kapa +\u2C96;Coptic Capital Letter Laula +\u2C97;Coptic Small Letter Laula +\u2C98;Coptic Capital Letter Mi +\u2C99;Coptic Small Letter Mi +\u2C9A;Coptic Capital Letter Ni +\u2C9B;Coptic Small Letter Ni +\u2C9C;Coptic Capital Letter Ksi +\u2C9D;Coptic Small Letter Ksi +\u2C9E;Coptic Capital Letter O +\u2C9F;Coptic Small Letter O +\u2CA0;Coptic Capital Letter Pi +\u2CA1;Coptic Small Letter Pi +\u2CA2;Coptic Capital Letter Ro +\u2CA3;Coptic Small Letter Ro +\u2CA4;Coptic Capital Letter Sima +\u2CA5;Coptic Small Letter Sima +\u2CA6;Coptic Capital Letter Tau +\u2CA7;Coptic Small Letter Tau +\u2CA8;Coptic Capital Letter Ua +\u2CA9;Coptic Small Letter Ua +\u2CAA;Coptic Capital Letter Fi +\u2CAB;Coptic Small Letter Fi +\u2CAC;Coptic Capital Letter Khi +\u2CAD;Coptic Small Letter Khi +\u2CAE;Coptic Capital Letter Psi +\u2CAF;Coptic Small Letter Psi +\u2CB0;Coptic Capital Letter Oou +\u2CB1;Coptic Small Letter Oou +\u2CB2;Coptic Capital Letter Dialect-P Alef +\u2CB3;Coptic Small Letter Dialect-P Alef +\u2CB4;Coptic Capital Letter Old Coptic Ain +\u2CB5;Coptic Small Letter Old Coptic Ain +\u2CB6;Coptic Capital Letter Cryptogrammic Eie +\u2CB7;Coptic Small Letter Cryptogrammic Eie +\u2CB8;Coptic Capital Letter Dialect-P Kapa +\u2CB9;Coptic Small Letter Dialect-P Kapa +\u2CBA;Coptic Capital Letter Dialect-P Ni +\u2CBB;Coptic Small Letter Dialect-P Ni +\u2CBC;Coptic Capital Letter Cryptogrammic Ni +\u2CBD;Coptic Small Letter Cryptogrammic Ni +\u2CBE;Coptic Capital Letter Old Coptic Oou +\u2CBF;Coptic Small Letter Old Coptic Oou +\u2CC0;Coptic Capital Letter Sampi +\u2CC1;Coptic Small Letter Sampi +\u2CC2;Coptic Capital Letter Crossed Shei +\u2CC3;Coptic Small Letter Crossed Shei +\u2CC4;Coptic Capital Letter Old Coptic Shei +\u2CC5;Coptic Small Letter Old Coptic Shei +\u2CC6;Coptic Capital Letter Old Coptic Esh +\u2CC7;Coptic Small Letter Old Coptic Esh +\u2CC8;Coptic Capital Letter Akhmimic Khei +\u2CC9;Coptic Small Letter Akhmimic Khei +\u2CCA;Coptic Capital Letter Dialect-P Hori +\u2CCB;Coptic Small Letter Dialect-P Hori +\u2CCC;Coptic Capital Letter Old Coptic Hori +\u2CCD;Coptic Small Letter Old Coptic Hori +\u2CCE;Coptic Capital Letter Old Coptic Ha +\u2CCF;Coptic Small Letter Old Coptic Ha +\u2CD0;Coptic Capital Letter L-Shaped Ha +\u2CD1;Coptic Small Letter L-Shaped Ha +\u2CD2;Coptic Capital Letter Old Coptic Hei +\u2CD3;Coptic Small Letter Old Coptic Hei +\u2CD4;Coptic Capital Letter Old Coptic Hat +\u2CD5;Coptic Small Letter Old Coptic Hat +\u2CD6;Coptic Capital Letter Old Coptic Gangia +\u2CD7;Coptic Small Letter Old Coptic Gangia +\u2CD8;Coptic Capital Letter Old Coptic Dja +\u2CD9;Coptic Small Letter Old Coptic Dja +\u2CDA;Coptic Capital Letter Old Coptic Shima +\u2CDB;Coptic Small Letter Old Coptic Shima +\u2CDC;Coptic Capital Letter Old Nubian Shima +\u2CDD;Coptic Small Letter Old Nubian Shima +\u2CDE;Coptic Capital Letter Old Nubian Ngi +\u2CDF;Coptic Small Letter Old Nubian Ngi +\u2CE0;Coptic Capital Letter Old Nubian Nyi +\u2CE1;Coptic Small Letter Old Nubian Nyi +\u2CE2;Coptic Capital Letter Old Nubian Wau +\u2CE3;Coptic Small Letter Old Nubian Wau +\u2CE4;Coptic Symbol Kai +\u2CE5;Coptic Symbol Mi Ro +\u2CE6;Coptic Symbol Pi Ro +\u2CE7;Coptic Symbol Stauros +\u2CE8;Coptic Symbol Tau Ro +\u2CE9;Coptic Symbol Khi Ro +\u2CEA;Coptic Symbol Shima Sima +\u2CEB;Coptic Capital Letter Cryptogrammic Shei +\u2CEC;Coptic Small Letter Cryptogrammic Shei +\u2CED;Coptic Capital Letter Cryptogrammic Gangia +\u2CEE;Coptic Small Letter Cryptogrammic Gangia +\u2CEF;Coptic Combining Ni Above +\u2CF0;Coptic Combining Spiritus Asper +\u2CF1;Coptic Combining Spiritus Lenis +\u2CF2;Coptic Capital Letter Bohairic Khei +\u2CF3;Coptic Small Letter Bohairic Khei +\u2CF9;Coptic Old Nubian Full Stop +\u2CFA;Coptic Old Nubian Direct Question Mark +\u2CFB;Coptic Old Nubian Indirect Question Mark +\u2CFC;Coptic Old Nubian Verse Divider +\u2CFD;Coptic Fraction One Half +\u2CFE;Coptic Full Stop +\u2CFF;Coptic Morphological Divider +\u2D00;Georgian Small Letter An +\u2D01;Georgian Small Letter Ban +\u2D02;Georgian Small Letter Gan +\u2D03;Georgian Small Letter Don +\u2D04;Georgian Small Letter En +\u2D05;Georgian Small Letter Vin +\u2D06;Georgian Small Letter Zen +\u2D07;Georgian Small Letter Tan +\u2D08;Georgian Small Letter In +\u2D09;Georgian Small Letter Kan +\u2D0A;Georgian Small Letter Las +\u2D0B;Georgian Small Letter Man +\u2D0C;Georgian Small Letter Nar +\u2D0D;Georgian Small Letter On +\u2D0E;Georgian Small Letter Par +\u2D0F;Georgian Small Letter Zhar +\u2D10;Georgian Small Letter Rae +\u2D11;Georgian Small Letter San +\u2D12;Georgian Small Letter Tar +\u2D13;Georgian Small Letter Un +\u2D14;Georgian Small Letter Phar +\u2D15;Georgian Small Letter Khar +\u2D16;Georgian Small Letter Ghan +\u2D17;Georgian Small Letter Qar +\u2D18;Georgian Small Letter Shin +\u2D19;Georgian Small Letter Chin +\u2D1A;Georgian Small Letter Can +\u2D1B;Georgian Small Letter Jil +\u2D1C;Georgian Small Letter Cil +\u2D1D;Georgian Small Letter Char +\u2D1E;Georgian Small Letter Xan +\u2D1F;Georgian Small Letter Jhan +\u2D20;Georgian Small Letter Hae +\u2D21;Georgian Small Letter He +\u2D22;Georgian Small Letter Hie +\u2D23;Georgian Small Letter We +\u2D24;Georgian Small Letter Har +\u2D25;Georgian Small Letter Hoe +\u2D27;Georgian Small Letter Yn +\u2D2D;Georgian Small Letter Aen +\u2D30;Tifinagh Letter Ya +\u2D31;Tifinagh Letter Yab +\u2D32;Tifinagh Letter Yabh +\u2D33;Tifinagh Letter Yag +\u2D34;Tifinagh Letter Yaghh +\u2D35;Tifinagh Letter Berber Academy Yaj +\u2D36;Tifinagh Letter Yaj +\u2D37;Tifinagh Letter Yad +\u2D38;Tifinagh Letter Yadh +\u2D39;Tifinagh Letter Yadd +\u2D3A;Tifinagh Letter Yaddh +\u2D3B;Tifinagh Letter Yey +\u2D3C;Tifinagh Letter Yaf +\u2D3D;Tifinagh Letter Yak +\u2D3E;Tifinagh Letter Tuareg Yak +\u2D3F;Tifinagh Letter Yakhh +\u2D40;Tifinagh Letter Yah +\u2D41;Tifinagh Letter Berber Academy Yah +\u2D42;Tifinagh Letter Tuareg Yah +\u2D43;Tifinagh Letter Yahh +\u2D44;Tifinagh Letter Yaa +\u2D45;Tifinagh Letter Yakh +\u2D46;Tifinagh Letter Tuareg Yakh +\u2D47;Tifinagh Letter Yaq +\u2D48;Tifinagh Letter Tuareg Yaq +\u2D49;Tifinagh Letter Yi +\u2D4A;Tifinagh Letter Yazh +\u2D4B;Tifinagh Letter Ahaggar Yazh +\u2D4C;Tifinagh Letter Tuareg Yazh +\u2D4D;Tifinagh Letter Yal +\u2D4E;Tifinagh Letter Yam +\u2D4F;Tifinagh Letter Yan +\u2D50;Tifinagh Letter Tuareg Yagn +\u2D51;Tifinagh Letter Tuareg Yang +\u2D52;Tifinagh Letter Yap +\u2D53;Tifinagh Letter Yu +\u2D54;Tifinagh Letter Yar +\u2D55;Tifinagh Letter Yarr +\u2D56;Tifinagh Letter Yagh +\u2D57;Tifinagh Letter Tuareg Yagh +\u2D58;Tifinagh Letter Ayer Yagh +\u2D59;Tifinagh Letter Yas +\u2D5A;Tifinagh Letter Yass +\u2D5B;Tifinagh Letter Yash +\u2D5C;Tifinagh Letter Yat +\u2D5D;Tifinagh Letter Yath +\u2D5E;Tifinagh Letter Yach +\u2D5F;Tifinagh Letter Yatt +\u2D60;Tifinagh Letter Yav +\u2D61;Tifinagh Letter Yaw +\u2D62;Tifinagh Letter Yay +\u2D63;Tifinagh Letter Yaz +\u2D64;Tifinagh Letter Tawellemet Yaz +\u2D65;Tifinagh Letter Yazz +\u2D66;Tifinagh Letter Ye +\u2D67;Tifinagh Letter Yo +\u2D6F;Tifinagh Modifier Letter Labialization Mark +\u2D70;Tifinagh Separator Mark +\u2D7F;Tifinagh Consonant Joiner +\u2D80;Ethiopic Syllable Loa +\u2D81;Ethiopic Syllable Moa +\u2D82;Ethiopic Syllable Roa +\u2D83;Ethiopic Syllable Soa +\u2D84;Ethiopic Syllable Shoa +\u2D85;Ethiopic Syllable Boa +\u2D86;Ethiopic Syllable Toa +\u2D87;Ethiopic Syllable Coa +\u2D88;Ethiopic Syllable Noa +\u2D89;Ethiopic Syllable Nyoa +\u2D8A;Ethiopic Syllable Glottal Oa +\u2D8B;Ethiopic Syllable Zoa +\u2D8C;Ethiopic Syllable Doa +\u2D8D;Ethiopic Syllable Ddoa +\u2D8E;Ethiopic Syllable Joa +\u2D8F;Ethiopic Syllable Thoa +\u2D90;Ethiopic Syllable Choa +\u2D91;Ethiopic Syllable Phoa +\u2D92;Ethiopic Syllable Poa +\u2D93;Ethiopic Syllable Ggwa +\u2D94;Ethiopic Syllable Ggwi +\u2D95;Ethiopic Syllable Ggwee +\u2D96;Ethiopic Syllable Ggwe +\u2DA0;Ethiopic Syllable Ssa +\u2DA1;Ethiopic Syllable Ssu +\u2DA2;Ethiopic Syllable Ssi +\u2DA3;Ethiopic Syllable Ssaa +\u2DA4;Ethiopic Syllable Ssee +\u2DA5;Ethiopic Syllable Sse +\u2DA6;Ethiopic Syllable Sso +\u2DA8;Ethiopic Syllable Cca +\u2DA9;Ethiopic Syllable Ccu +\u2DAA;Ethiopic Syllable Cci +\u2DAB;Ethiopic Syllable Ccaa +\u2DAC;Ethiopic Syllable Ccee +\u2DAD;Ethiopic Syllable Cce +\u2DAE;Ethiopic Syllable Cco +\u2DB0;Ethiopic Syllable Zza +\u2DB1;Ethiopic Syllable Zzu +\u2DB2;Ethiopic Syllable Zzi +\u2DB3;Ethiopic Syllable Zzaa +\u2DB4;Ethiopic Syllable Zzee +\u2DB5;Ethiopic Syllable Zze +\u2DB6;Ethiopic Syllable Zzo +\u2DB8;Ethiopic Syllable Ccha +\u2DB9;Ethiopic Syllable Cchu +\u2DBA;Ethiopic Syllable Cchi +\u2DBB;Ethiopic Syllable Cchaa +\u2DBC;Ethiopic Syllable Cchee +\u2DBD;Ethiopic Syllable Cche +\u2DBE;Ethiopic Syllable Ccho +\u2DC0;Ethiopic Syllable Qya +\u2DC1;Ethiopic Syllable Qyu +\u2DC2;Ethiopic Syllable Qyi +\u2DC3;Ethiopic Syllable Qyaa +\u2DC4;Ethiopic Syllable Qyee +\u2DC5;Ethiopic Syllable Qye +\u2DC6;Ethiopic Syllable Qyo +\u2DC8;Ethiopic Syllable Kya +\u2DC9;Ethiopic Syllable Kyu +\u2DCA;Ethiopic Syllable Kyi +\u2DCB;Ethiopic Syllable Kyaa +\u2DCC;Ethiopic Syllable Kyee +\u2DCD;Ethiopic Syllable Kye +\u2DCE;Ethiopic Syllable Kyo +\u2DD0;Ethiopic Syllable Xya +\u2DD1;Ethiopic Syllable Xyu +\u2DD2;Ethiopic Syllable Xyi +\u2DD3;Ethiopic Syllable Xyaa +\u2DD4;Ethiopic Syllable Xyee +\u2DD5;Ethiopic Syllable Xye +\u2DD6;Ethiopic Syllable Xyo +\u2DD8;Ethiopic Syllable Gya +\u2DD9;Ethiopic Syllable Gyu +\u2DDA;Ethiopic Syllable Gyi +\u2DDB;Ethiopic Syllable Gyaa +\u2DDC;Ethiopic Syllable Gyee +\u2DDD;Ethiopic Syllable Gye +\u2DDE;Ethiopic Syllable Gyo +\u2DE0;Combining Cyrillic Letter Be +\u2DE1;Combining Cyrillic Letter Ve +\u2DE2;Combining Cyrillic Letter Ghe +\u2DE3;Combining Cyrillic Letter De +\u2DE4;Combining Cyrillic Letter Zhe +\u2DE5;Combining Cyrillic Letter Ze +\u2DE6;Combining Cyrillic Letter Ka +\u2DE7;Combining Cyrillic Letter El +\u2DE8;Combining Cyrillic Letter Em +\u2DE9;Combining Cyrillic Letter En +\u2DEA;Combining Cyrillic Letter O +\u2DEB;Combining Cyrillic Letter Pe +\u2DEC;Combining Cyrillic Letter Er +\u2DED;Combining Cyrillic Letter Es +\u2DEE;Combining Cyrillic Letter Te +\u2DEF;Combining Cyrillic Letter Ha +\u2DF0;Combining Cyrillic Letter Tse +\u2DF1;Combining Cyrillic Letter Che +\u2DF2;Combining Cyrillic Letter Sha +\u2DF3;Combining Cyrillic Letter Shcha +\u2DF4;Combining Cyrillic Letter Fita +\u2DF5;Combining Cyrillic Letter Es-Te +\u2DF6;Combining Cyrillic Letter A +\u2DF7;Combining Cyrillic Letter Ie +\u2DF8;Combining Cyrillic Letter Djerv +\u2DF9;Combining Cyrillic Letter Monograph Uk +\u2DFA;Combining Cyrillic Letter Yat +\u2DFB;Combining Cyrillic Letter Yu +\u2DFC;Combining Cyrillic Letter Iotified A +\u2DFD;Combining Cyrillic Letter Little Yus +\u2DFE;Combining Cyrillic Letter Big Yus +\u2DFF;Combining Cyrillic Letter Iotified Big Yus +\u2E00;Right Angle Substitution Marker +\u2E01;Right Angle Dotted Substitution Marker +\u2E02;Left Substitution Bracket +\u2E03;Right Substitution Bracket +\u2E04;Left Dotted Substitution Bracket +\u2E05;Right Dotted Substitution Bracket +\u2E06;Raised Interpolation Marker +\u2E07;Raised Dotted Interpolation Marker +\u2E08;Dotted Transposition Marker +\u2E09;Left Transposition Bracket +\u2E0A;Right Transposition Bracket +\u2E0B;Raised Square +\u2E0C;Left Raised Omission Bracket +\u2E0D;Right Raised Omission Bracket +\u2E0E;Editorial Coronis +\u2E0F;Paragraphos +\u2E10;Forked Paragraphos +\u2E11;Reversed Forked Paragraphos +\u2E12;Hypodiastole +\u2E13;Dotted Obelos +\u2E14;Downwards Ancora +\u2E15;Upwards Ancora +\u2E16;Dotted Right-Pointing Angle +\u2E17;Double Oblique Hyphen +\u2E18;Inverted Interrobang +\u2E19;Palm Branch +\u2E1A;Hyphen With Diaeresis +\u2E1B;Tilde With Ring Above +\u2E1C;Left Low Paraphrase Bracket +\u2E1D;Right Low Paraphrase Bracket +\u2E1E;Tilde With Dot Above +\u2E1F;Tilde With Dot Below +\u2E20;Left Vertical Bar With Quill +\u2E21;Right Vertical Bar With Quill +\u2E22;Top Left Half Bracket +\u2E23;Top Right Half Bracket +\u2E24;Bottom Left Half Bracket +\u2E25;Bottom Right Half Bracket +\u2E26;Left Sideways U Bracket +\u2E27;Right Sideways U Bracket +\u2E28;Left Double Parenthesis +\u2E29;Right Double Parenthesis +\u2E2A;Two Dots Over One Dot Punctuation +\u2E2B;One Dot Over Two Dots Punctuation +\u2E2C;Squared Four Dot Punctuation +\u2E2D;Five Dot Mark +\u2E2E;Reversed Question Mark +\u2E2F;Vertical Tilde +\u2E30;Ring Point +\u2E31;Word Separator Middle Dot +\u2E32;Turned Comma +\u2E33;Raised Dot +\u2E34;Raised Comma +\u2E35;Turned Semicolon +\u2E36;Dagger With Left Guard +\u2E37;Dagger With Right Guard +\u2E38;Turned Dagger +\u2E39;Top Half Section Sign +\u2E3A;Two-Em Dash +\u2E3B;Three-Em Dash +\u2E3C;Stenographic Full Stop +\u2E3D;Vertical Six Dots +\u2E3E;Wiggly Vertical Line +\u2E3F;Capitulum +\u2E40;Double Hyphen +\u2E41;Reversed Comma +\u2E42;Double Low-Reversed-9 Quotation Mark +\u2E43;Dash With Left Upturn +\u2E44;Double Suspension Mark +\u2E45;Inverted Low Kavyka +\u2E46;Inverted Low Kavyka With Kavyka Above +\u2E47;Low Kavyka +\u2E48;Low Kavyka With Dot +\u2E49;Double Stacked Comma +\u2E4A;Dotted Solidus +\u2E4B;Triple Dagger +\u2E4C;Medieval Comma +\u2E4D;Paragraphus Mark +\u2E4E;Punctus Elevatus Mark +\u2E4F;Cornish Verse Divider +\u2E50;Cross Patty With Right Crossbar +\u2E51;Cross Patty With Left Crossbar +\u2E52;Tironian Sign Capital Et +\u2E53;Medieval Exclamation Mark +\u2E54;Medieval Question Mark +\u2E55;Left Square Bracket With Stroke +\u2E56;Right Square Bracket With Stroke +\u2E57;Left Square Bracket With Double Stroke +\u2E58;Right Square Bracket With Double Stroke +\u2E59;Top Half Left Parenthesis +\u2E5A;Top Half Right Parenthesis +\u2E5B;Bottom Half Left Parenthesis +\u2E5C;Bottom Half Right Parenthesis +\u2E5D;Oblique Hyphen +\u2E80;Cjk Radical Repeat +\u2E81;Cjk Radical Cliff +\u2E82;Cjk Radical Second One +\u2E83;Cjk Radical Second Two +\u2E84;Cjk Radical Second Three +\u2E85;Cjk Radical Person +\u2E86;Cjk Radical Box +\u2E87;Cjk Radical Table +\u2E88;Cjk Radical Knife One +\u2E89;Cjk Radical Knife Two +\u2E8A;Cjk Radical Divination +\u2E8B;Cjk Radical Seal +\u2E8C;Cjk Radical Small One +\u2E8D;Cjk Radical Small Two +\u2E8E;Cjk Radical Lame One +\u2E8F;Cjk Radical Lame Two +\u2E90;Cjk Radical Lame Three +\u2E91;Cjk Radical Lame Four +\u2E92;Cjk Radical Snake +\u2E93;Cjk Radical Thread +\u2E94;Cjk Radical Snout One +\u2E95;Cjk Radical Snout Two +\u2E96;Cjk Radical Heart One +\u2E97;Cjk Radical Heart Two +\u2E98;Cjk Radical Hand +\u2E99;Cjk Radical Rap +\u2E9B;Cjk Radical Choke +\u2E9C;Cjk Radical Sun +\u2E9D;Cjk Radical Moon +\u2E9E;Cjk Radical Death +\u2E9F;Cjk Radical Mother +\u2EA0;Cjk Radical Civilian +\u2EA1;Cjk Radical Water One +\u2EA2;Cjk Radical Water Two +\u2EA3;Cjk Radical Fire +\u2EA4;Cjk Radical Paw One +\u2EA5;Cjk Radical Paw Two +\u2EA6;Cjk Radical Simplified Half Tree Trunk +\u2EA7;Cjk Radical Cow +\u2EA8;Cjk Radical Dog +\u2EA9;Cjk Radical Jade +\u2EAA;Cjk Radical Bolt Of Cloth +\u2EAB;Cjk Radical Eye +\u2EAC;Cjk Radical Spirit One +\u2EAD;Cjk Radical Spirit Two +\u2EAE;Cjk Radical Bamboo +\u2EAF;Cjk Radical Silk +\u2EB0;Cjk Radical C-Simplified Silk +\u2EB1;Cjk Radical Net One +\u2EB2;Cjk Radical Net Two +\u2EB3;Cjk Radical Net Three +\u2EB4;Cjk Radical Net Four +\u2EB5;Cjk Radical Mesh +\u2EB6;Cjk Radical Sheep +\u2EB7;Cjk Radical Ram +\u2EB8;Cjk Radical Ewe +\u2EB9;Cjk Radical Old +\u2EBA;Cjk Radical Brush One +\u2EBB;Cjk Radical Brush Two +\u2EBC;Cjk Radical Meat +\u2EBD;Cjk Radical Mortar +\u2EBE;Cjk Radical Grass One +\u2EBF;Cjk Radical Grass Two +\u2EC0;Cjk Radical Grass Three +\u2EC1;Cjk Radical Tiger +\u2EC2;Cjk Radical Clothes +\u2EC3;Cjk Radical West One +\u2EC4;Cjk Radical West Two +\u2EC5;Cjk Radical C-Simplified See +\u2EC6;Cjk Radical Simplified Horn +\u2EC7;Cjk Radical Horn +\u2EC8;Cjk Radical C-Simplified Speech +\u2EC9;Cjk Radical C-Simplified Shell +\u2ECA;Cjk Radical Foot +\u2ECB;Cjk Radical C-Simplified Cart +\u2ECC;Cjk Radical Simplified Walk +\u2ECD;Cjk Radical Walk One +\u2ECE;Cjk Radical Walk Two +\u2ECF;Cjk Radical City +\u2ED0;Cjk Radical C-Simplified Gold +\u2ED1;Cjk Radical Long One +\u2ED2;Cjk Radical Long Two +\u2ED3;Cjk Radical C-Simplified Long +\u2ED4;Cjk Radical C-Simplified Gate +\u2ED5;Cjk Radical Mound One +\u2ED6;Cjk Radical Mound Two +\u2ED7;Cjk Radical Rain +\u2ED8;Cjk Radical Blue +\u2ED9;Cjk Radical C-Simplified Tanned Leather +\u2EDA;Cjk Radical C-Simplified Leaf +\u2EDB;Cjk Radical C-Simplified Wind +\u2EDC;Cjk Radical C-Simplified Fly +\u2EDD;Cjk Radical Eat One +\u2EDE;Cjk Radical Eat Two +\u2EDF;Cjk Radical Eat Three +\u2EE0;Cjk Radical C-Simplified Eat +\u2EE1;Cjk Radical Head +\u2EE2;Cjk Radical C-Simplified Horse +\u2EE3;Cjk Radical Bone +\u2EE4;Cjk Radical Ghost +\u2EE5;Cjk Radical C-Simplified Fish +\u2EE6;Cjk Radical C-Simplified Bird +\u2EE7;Cjk Radical C-Simplified Salt +\u2EE8;Cjk Radical Simplified Wheat +\u2EE9;Cjk Radical Simplified Yellow +\u2EEA;Cjk Radical C-Simplified Frog +\u2EEB;Cjk Radical J-Simplified Even +\u2EEC;Cjk Radical C-Simplified Even +\u2EED;Cjk Radical J-Simplified Tooth +\u2EEE;Cjk Radical C-Simplified Tooth +\u2EEF;Cjk Radical J-Simplified Dragon +\u2EF0;Cjk Radical C-Simplified Dragon +\u2EF1;Cjk Radical Turtle +\u2EF2;Cjk Radical J-Simplified Turtle +\u2EF3;Cjk Radical C-Simplified Turtle +\u2F00;Kangxi Radical One +\u2F01;Kangxi Radical Line +\u2F02;Kangxi Radical Dot +\u2F03;Kangxi Radical Slash +\u2F04;Kangxi Radical Second +\u2F05;Kangxi Radical Hook +\u2F06;Kangxi Radical Two +\u2F07;Kangxi Radical Lid +\u2F08;Kangxi Radical Man +\u2F09;Kangxi Radical Legs +\u2F0A;Kangxi Radical Enter +\u2F0B;Kangxi Radical Eight +\u2F0C;Kangxi Radical Down Box +\u2F0D;Kangxi Radical Cover +\u2F0E;Kangxi Radical Ice +\u2F0F;Kangxi Radical Table +\u2F10;Kangxi Radical Open Box +\u2F11;Kangxi Radical Knife +\u2F12;Kangxi Radical Power +\u2F13;Kangxi Radical Wrap +\u2F14;Kangxi Radical Spoon +\u2F15;Kangxi Radical Right Open Box +\u2F16;Kangxi Radical Hiding Enclosure +\u2F17;Kangxi Radical Ten +\u2F18;Kangxi Radical Divination +\u2F19;Kangxi Radical Seal +\u2F1A;Kangxi Radical Cliff +\u2F1B;Kangxi Radical Private +\u2F1C;Kangxi Radical Again +\u2F1D;Kangxi Radical Mouth +\u2F1E;Kangxi Radical Enclosure +\u2F1F;Kangxi Radical Earth +\u2F20;Kangxi Radical Scholar +\u2F21;Kangxi Radical Go +\u2F22;Kangxi Radical Go Slowly +\u2F23;Kangxi Radical Evening +\u2F24;Kangxi Radical Big +\u2F25;Kangxi Radical Woman +\u2F26;Kangxi Radical Child +\u2F27;Kangxi Radical Roof +\u2F28;Kangxi Radical Inch +\u2F29;Kangxi Radical Small +\u2F2A;Kangxi Radical Lame +\u2F2B;Kangxi Radical Corpse +\u2F2C;Kangxi Radical Sprout +\u2F2D;Kangxi Radical Mountain +\u2F2E;Kangxi Radical River +\u2F2F;Kangxi Radical Work +\u2F30;Kangxi Radical Oneself +\u2F31;Kangxi Radical Turban +\u2F32;Kangxi Radical Dry +\u2F33;Kangxi Radical Short Thread +\u2F34;Kangxi Radical Dotted Cliff +\u2F35;Kangxi Radical Long Stride +\u2F36;Kangxi Radical Two Hands +\u2F37;Kangxi Radical Shoot +\u2F38;Kangxi Radical Bow +\u2F39;Kangxi Radical Snout +\u2F3A;Kangxi Radical Bristle +\u2F3B;Kangxi Radical Step +\u2F3C;Kangxi Radical Heart +\u2F3D;Kangxi Radical Halberd +\u2F3E;Kangxi Radical Door +\u2F3F;Kangxi Radical Hand +\u2F40;Kangxi Radical Branch +\u2F41;Kangxi Radical Rap +\u2F42;Kangxi Radical Script +\u2F43;Kangxi Radical Dipper +\u2F44;Kangxi Radical Axe +\u2F45;Kangxi Radical Square +\u2F46;Kangxi Radical Not +\u2F47;Kangxi Radical Sun +\u2F48;Kangxi Radical Say +\u2F49;Kangxi Radical Moon +\u2F4A;Kangxi Radical Tree +\u2F4B;Kangxi Radical Lack +\u2F4C;Kangxi Radical Stop +\u2F4D;Kangxi Radical Death +\u2F4E;Kangxi Radical Weapon +\u2F4F;Kangxi Radical Do Not +\u2F50;Kangxi Radical Compare +\u2F51;Kangxi Radical Fur +\u2F52;Kangxi Radical Clan +\u2F53;Kangxi Radical Steam +\u2F54;Kangxi Radical Water +\u2F55;Kangxi Radical Fire +\u2F56;Kangxi Radical Claw +\u2F57;Kangxi Radical Father +\u2F58;Kangxi Radical Double X +\u2F59;Kangxi Radical Half Tree Trunk +\u2F5A;Kangxi Radical Slice +\u2F5B;Kangxi Radical Fang +\u2F5C;Kangxi Radical Cow +\u2F5D;Kangxi Radical Dog +\u2F5E;Kangxi Radical Profound +\u2F5F;Kangxi Radical Jade +\u2F60;Kangxi Radical Melon +\u2F61;Kangxi Radical Tile +\u2F62;Kangxi Radical Sweet +\u2F63;Kangxi Radical Life +\u2F64;Kangxi Radical Use +\u2F65;Kangxi Radical Field +\u2F66;Kangxi Radical Bolt Of Cloth +\u2F67;Kangxi Radical Sickness +\u2F68;Kangxi Radical Dotted Tent +\u2F69;Kangxi Radical White +\u2F6A;Kangxi Radical Skin +\u2F6B;Kangxi Radical Dish +\u2F6C;Kangxi Radical Eye +\u2F6D;Kangxi Radical Spear +\u2F6E;Kangxi Radical Arrow +\u2F6F;Kangxi Radical Stone +\u2F70;Kangxi Radical Spirit +\u2F71;Kangxi Radical Track +\u2F72;Kangxi Radical Grain +\u2F73;Kangxi Radical Cave +\u2F74;Kangxi Radical Stand +\u2F75;Kangxi Radical Bamboo +\u2F76;Kangxi Radical Rice +\u2F77;Kangxi Radical Silk +\u2F78;Kangxi Radical Jar +\u2F79;Kangxi Radical Net +\u2F7A;Kangxi Radical Sheep +\u2F7B;Kangxi Radical Feather +\u2F7C;Kangxi Radical Old +\u2F7D;Kangxi Radical And +\u2F7E;Kangxi Radical Plow +\u2F7F;Kangxi Radical Ear +\u2F80;Kangxi Radical Brush +\u2F81;Kangxi Radical Meat +\u2F82;Kangxi Radical Minister +\u2F83;Kangxi Radical Self +\u2F84;Kangxi Radical Arrive +\u2F85;Kangxi Radical Mortar +\u2F86;Kangxi Radical Tongue +\u2F87;Kangxi Radical Oppose +\u2F88;Kangxi Radical Boat +\u2F89;Kangxi Radical Stopping +\u2F8A;Kangxi Radical Color +\u2F8B;Kangxi Radical Grass +\u2F8C;Kangxi Radical Tiger +\u2F8D;Kangxi Radical Insect +\u2F8E;Kangxi Radical Blood +\u2F8F;Kangxi Radical Walk Enclosure +\u2F90;Kangxi Radical Clothes +\u2F91;Kangxi Radical West +\u2F92;Kangxi Radical See +\u2F93;Kangxi Radical Horn +\u2F94;Kangxi Radical Speech +\u2F95;Kangxi Radical Valley +\u2F96;Kangxi Radical Bean +\u2F97;Kangxi Radical Pig +\u2F98;Kangxi Radical Badger +\u2F99;Kangxi Radical Shell +\u2F9A;Kangxi Radical Red +\u2F9B;Kangxi Radical Run +\u2F9C;Kangxi Radical Foot +\u2F9D;Kangxi Radical Body +\u2F9E;Kangxi Radical Cart +\u2F9F;Kangxi Radical Bitter +\u2FA0;Kangxi Radical Morning +\u2FA1;Kangxi Radical Walk +\u2FA2;Kangxi Radical City +\u2FA3;Kangxi Radical Wine +\u2FA4;Kangxi Radical Distinguish +\u2FA5;Kangxi Radical Village +\u2FA6;Kangxi Radical Gold +\u2FA7;Kangxi Radical Long +\u2FA8;Kangxi Radical Gate +\u2FA9;Kangxi Radical Mound +\u2FAA;Kangxi Radical Slave +\u2FAB;Kangxi Radical Short Tailed Bird +\u2FAC;Kangxi Radical Rain +\u2FAD;Kangxi Radical Blue +\u2FAE;Kangxi Radical Wrong +\u2FAF;Kangxi Radical Face +\u2FB0;Kangxi Radical Leather +\u2FB1;Kangxi Radical Tanned Leather +\u2FB2;Kangxi Radical Leek +\u2FB3;Kangxi Radical Sound +\u2FB4;Kangxi Radical Leaf +\u2FB5;Kangxi Radical Wind +\u2FB6;Kangxi Radical Fly +\u2FB7;Kangxi Radical Eat +\u2FB8;Kangxi Radical Head +\u2FB9;Kangxi Radical Fragrant +\u2FBA;Kangxi Radical Horse +\u2FBB;Kangxi Radical Bone +\u2FBC;Kangxi Radical Tall +\u2FBD;Kangxi Radical Hair +\u2FBE;Kangxi Radical Fight +\u2FBF;Kangxi Radical Sacrificial Wine +\u2FC0;Kangxi Radical Cauldron +\u2FC1;Kangxi Radical Ghost +\u2FC2;Kangxi Radical Fish +\u2FC3;Kangxi Radical Bird +\u2FC4;Kangxi Radical Salt +\u2FC5;Kangxi Radical Deer +\u2FC6;Kangxi Radical Wheat +\u2FC7;Kangxi Radical Hemp +\u2FC8;Kangxi Radical Yellow +\u2FC9;Kangxi Radical Millet +\u2FCA;Kangxi Radical Black +\u2FCB;Kangxi Radical Embroidery +\u2FCC;Kangxi Radical Frog +\u2FCD;Kangxi Radical Tripod +\u2FCE;Kangxi Radical Drum +\u2FCF;Kangxi Radical Rat +\u2FD0;Kangxi Radical Nose +\u2FD1;Kangxi Radical Even +\u2FD2;Kangxi Radical Tooth +\u2FD3;Kangxi Radical Dragon +\u2FD4;Kangxi Radical Turtle +\u2FD5;Kangxi Radical Flute +\u2FF0;Ideographic Description Character Left To Right +\u2FF1;Ideographic Description Character Above To Below +\u2FF2;Ideographic Description Character Left To Middle And Right +\u2FF3;Ideographic Description Character Above To Middle And Below +\u2FF4;Ideographic Description Character Full Surround +\u2FF5;Ideographic Description Character Surround From Above +\u2FF6;Ideographic Description Character Surround From Below +\u2FF7;Ideographic Description Character Surround From Left +\u2FF8;Ideographic Description Character Surround From Upper Left +\u2FF9;Ideographic Description Character Surround From Upper Right +\u2FFA;Ideographic Description Character Surround From Lower Left +\u2FFB;Ideographic Description Character Overlaid +\u2FFC;Ideographic Description Character Surround From Right +\u2FFD;Ideographic Description Character Surround From Lower Right +\u2FFE;Ideographic Description Character Horizontal Reflection +\u2FFF;Ideographic Description Character Rotation +\u3000;Ideographic Space +\u3001;Ideographic Comma +\u3002;Ideographic Full Stop +\u3003;Ditto Mark +\u3004;Japanese Industrial Standard Symbol +\u3005;Ideographic Iteration Mark +\u3006;Ideographic Closing Mark +\u3007;Ideographic Number Zero +\u3008;Left Angle Bracket +\u3009;Right Angle Bracket +\u300A;Left Double Angle Bracket +\u300B;Right Double Angle Bracket +\u300C;Left Corner Bracket +\u300D;Right Corner Bracket +\u300E;Left White Corner Bracket +\u300F;Right White Corner Bracket +\u3010;Left Black Lenticular Bracket +\u3011;Right Black Lenticular Bracket +\u3012;Postal Mark +\u3013;Geta Mark +\u3014;Left Tortoise Shell Bracket +\u3015;Right Tortoise Shell Bracket +\u3016;Left White Lenticular Bracket +\u3017;Right White Lenticular Bracket +\u3018;Left White Tortoise Shell Bracket +\u3019;Right White Tortoise Shell Bracket +\u301A;Left White Square Bracket +\u301B;Right White Square Bracket +\u301C;Wave Dash +\u301D;Reversed Double Prime Quotation Mark +\u301E;Double Prime Quotation Mark +\u301F;Low Double Prime Quotation Mark +\u3020;Postal Mark Face +\u3021;Hangzhou Numeral One +\u3022;Hangzhou Numeral Two +\u3023;Hangzhou Numeral Three +\u3024;Hangzhou Numeral Four +\u3025;Hangzhou Numeral Five +\u3026;Hangzhou Numeral Six +\u3027;Hangzhou Numeral Seven +\u3028;Hangzhou Numeral Eight +\u3029;Hangzhou Numeral Nine +\u302A;Ideographic Level Tone Mark +\u302B;Ideographic Rising Tone Mark +\u302C;Ideographic Departing Tone Mark +\u302D;Ideographic Entering Tone Mark +\u302E;Hangul Single Dot Tone Mark +\u302F;Hangul Double Dot Tone Mark +\u3030;Wavy Dash +\u3031;Vertical Kana Repeat Mark +\u3032;Vertical Kana Repeat With Voiced Sound Mark +\u3033;Vertical Kana Repeat Mark Upper Half +\u3034;Vertical Kana Repeat With Voiced Sound Mark Upper Half +\u3035;Vertical Kana Repeat Mark Lower Half +\u3036;Circled Postal Mark +\u3037;Ideographic Telegraph Line Feed Separator Symbol +\u3038;Hangzhou Numeral Ten +\u3039;Hangzhou Numeral Twenty +\u303A;Hangzhou Numeral Thirty +\u303B;Vertical Ideographic Iteration Mark +\u303C;Masu Mark +\u303D;Part Alternation Mark +\u303E;Ideographic Variation Indicator +\u303F;Ideographic Half Fill Space +\u3041;Hiragana Letter Small A +\u3042;Hiragana Letter A +\u3043;Hiragana Letter Small I +\u3044;Hiragana Letter I +\u3045;Hiragana Letter Small U +\u3046;Hiragana Letter U +\u3047;Hiragana Letter Small E +\u3048;Hiragana Letter E +\u3049;Hiragana Letter Small O +\u304A;Hiragana Letter O +\u304B;Hiragana Letter Ka +\u304C;Hiragana Letter Ga +\u304D;Hiragana Letter Ki +\u304E;Hiragana Letter Gi +\u304F;Hiragana Letter Ku +\u3050;Hiragana Letter Gu +\u3051;Hiragana Letter Ke +\u3052;Hiragana Letter Ge +\u3053;Hiragana Letter Ko +\u3054;Hiragana Letter Go +\u3055;Hiragana Letter Sa +\u3056;Hiragana Letter Za +\u3057;Hiragana Letter Si +\u3058;Hiragana Letter Zi +\u3059;Hiragana Letter Su +\u305A;Hiragana Letter Zu +\u305B;Hiragana Letter Se +\u305C;Hiragana Letter Ze +\u305D;Hiragana Letter So +\u305E;Hiragana Letter Zo +\u305F;Hiragana Letter Ta +\u3060;Hiragana Letter Da +\u3061;Hiragana Letter Ti +\u3062;Hiragana Letter Di +\u3063;Hiragana Letter Small Tu +\u3064;Hiragana Letter Tu +\u3065;Hiragana Letter Du +\u3066;Hiragana Letter Te +\u3067;Hiragana Letter De +\u3068;Hiragana Letter To +\u3069;Hiragana Letter Do +\u306A;Hiragana Letter Na +\u306B;Hiragana Letter Ni +\u306C;Hiragana Letter Nu +\u306D;Hiragana Letter Ne +\u306E;Hiragana Letter No +\u306F;Hiragana Letter Ha +\u3070;Hiragana Letter Ba +\u3071;Hiragana Letter Pa +\u3072;Hiragana Letter Hi +\u3073;Hiragana Letter Bi +\u3074;Hiragana Letter Pi +\u3075;Hiragana Letter Hu +\u3076;Hiragana Letter Bu +\u3077;Hiragana Letter Pu +\u3078;Hiragana Letter He +\u3079;Hiragana Letter Be +\u307A;Hiragana Letter Pe +\u307B;Hiragana Letter Ho +\u307C;Hiragana Letter Bo +\u307D;Hiragana Letter Po +\u307E;Hiragana Letter Ma +\u307F;Hiragana Letter Mi +\u3080;Hiragana Letter Mu +\u3081;Hiragana Letter Me +\u3082;Hiragana Letter Mo +\u3083;Hiragana Letter Small Ya +\u3084;Hiragana Letter Ya +\u3085;Hiragana Letter Small Yu +\u3086;Hiragana Letter Yu +\u3087;Hiragana Letter Small Yo +\u3088;Hiragana Letter Yo +\u3089;Hiragana Letter Ra +\u308A;Hiragana Letter Ri +\u308B;Hiragana Letter Ru +\u308C;Hiragana Letter Re +\u308D;Hiragana Letter Ro +\u308E;Hiragana Letter Small Wa +\u308F;Hiragana Letter Wa +\u3090;Hiragana Letter Wi +\u3091;Hiragana Letter We +\u3092;Hiragana Letter Wo +\u3093;Hiragana Letter N +\u3094;Hiragana Letter Vu +\u3095;Hiragana Letter Small Ka +\u3096;Hiragana Letter Small Ke +\u3099;Combining Katakana-Hiragana Voiced Sound Mark +\u309A;Combining Katakana-Hiragana Semi-Voiced Sound Mark +\u309B;Katakana-Hiragana Voiced Sound Mark +\u309C;Katakana-Hiragana Semi-Voiced Sound Mark +\u309D;Hiragana Iteration Mark +\u309E;Hiragana Voiced Iteration Mark +\u309F;Hiragana Digraph Yori +\u30A0;Katakana-Hiragana Double Hyphen +\u30A1;Katakana Letter Small A +\u30A2;Katakana Letter A +\u30A3;Katakana Letter Small I +\u30A4;Katakana Letter I +\u30A5;Katakana Letter Small U +\u30A6;Katakana Letter U +\u30A7;Katakana Letter Small E +\u30A8;Katakana Letter E +\u30A9;Katakana Letter Small O +\u30AA;Katakana Letter O +\u30AB;Katakana Letter Ka +\u30AC;Katakana Letter Ga +\u30AD;Katakana Letter Ki +\u30AE;Katakana Letter Gi +\u30AF;Katakana Letter Ku +\u30B0;Katakana Letter Gu +\u30B1;Katakana Letter Ke +\u30B2;Katakana Letter Ge +\u30B3;Katakana Letter Ko +\u30B4;Katakana Letter Go +\u30B5;Katakana Letter Sa +\u30B6;Katakana Letter Za +\u30B7;Katakana Letter Si +\u30B8;Katakana Letter Zi +\u30B9;Katakana Letter Su +\u30BA;Katakana Letter Zu +\u30BB;Katakana Letter Se +\u30BC;Katakana Letter Ze +\u30BD;Katakana Letter So +\u30BE;Katakana Letter Zo +\u30BF;Katakana Letter Ta +\u30C0;Katakana Letter Da +\u30C1;Katakana Letter Ti +\u30C2;Katakana Letter Di +\u30C3;Katakana Letter Small Tu +\u30C4;Katakana Letter Tu +\u30C5;Katakana Letter Du +\u30C6;Katakana Letter Te +\u30C7;Katakana Letter De +\u30C8;Katakana Letter To +\u30C9;Katakana Letter Do +\u30CA;Katakana Letter Na +\u30CB;Katakana Letter Ni +\u30CC;Katakana Letter Nu +\u30CD;Katakana Letter Ne +\u30CE;Katakana Letter No +\u30CF;Katakana Letter Ha +\u30D0;Katakana Letter Ba +\u30D1;Katakana Letter Pa +\u30D2;Katakana Letter Hi +\u30D3;Katakana Letter Bi +\u30D4;Katakana Letter Pi +\u30D5;Katakana Letter Hu +\u30D6;Katakana Letter Bu +\u30D7;Katakana Letter Pu +\u30D8;Katakana Letter He +\u30D9;Katakana Letter Be +\u30DA;Katakana Letter Pe +\u30DB;Katakana Letter Ho +\u30DC;Katakana Letter Bo +\u30DD;Katakana Letter Po +\u30DE;Katakana Letter Ma +\u30DF;Katakana Letter Mi +\u30E0;Katakana Letter Mu +\u30E1;Katakana Letter Me +\u30E2;Katakana Letter Mo +\u30E3;Katakana Letter Small Ya +\u30E4;Katakana Letter Ya +\u30E5;Katakana Letter Small Yu +\u30E6;Katakana Letter Yu +\u30E7;Katakana Letter Small Yo +\u30E8;Katakana Letter Yo +\u30E9;Katakana Letter Ra +\u30EA;Katakana Letter Ri +\u30EB;Katakana Letter Ru +\u30EC;Katakana Letter Re +\u30ED;Katakana Letter Ro +\u30EE;Katakana Letter Small Wa +\u30EF;Katakana Letter Wa +\u30F0;Katakana Letter Wi +\u30F1;Katakana Letter We +\u30F2;Katakana Letter Wo +\u30F3;Katakana Letter N +\u30F4;Katakana Letter Vu +\u30F5;Katakana Letter Small Ka +\u30F6;Katakana Letter Small Ke +\u30F7;Katakana Letter Va +\u30F8;Katakana Letter Vi +\u30F9;Katakana Letter Ve +\u30FA;Katakana Letter Vo +\u30FB;Katakana Middle Dot +\u30FC;Katakana-Hiragana Prolonged Sound Mark +\u30FD;Katakana Iteration Mark +\u30FE;Katakana Voiced Iteration Mark +\u30FF;Katakana Digraph Koto +\u3105;Bopomofo Letter B +\u3106;Bopomofo Letter P +\u3107;Bopomofo Letter M +\u3108;Bopomofo Letter F +\u3109;Bopomofo Letter D +\u310A;Bopomofo Letter T +\u310B;Bopomofo Letter N +\u310C;Bopomofo Letter L +\u310D;Bopomofo Letter G +\u310E;Bopomofo Letter K +\u310F;Bopomofo Letter H +\u3110;Bopomofo Letter J +\u3111;Bopomofo Letter Q +\u3112;Bopomofo Letter X +\u3113;Bopomofo Letter Zh +\u3114;Bopomofo Letter Ch +\u3115;Bopomofo Letter Sh +\u3116;Bopomofo Letter R +\u3117;Bopomofo Letter Z +\u3118;Bopomofo Letter C +\u3119;Bopomofo Letter S +\u311A;Bopomofo Letter A +\u311B;Bopomofo Letter O +\u311C;Bopomofo Letter E +\u311D;Bopomofo Letter Eh +\u311E;Bopomofo Letter Ai +\u311F;Bopomofo Letter Ei +\u3120;Bopomofo Letter Au +\u3121;Bopomofo Letter Ou +\u3122;Bopomofo Letter An +\u3123;Bopomofo Letter En +\u3124;Bopomofo Letter Ang +\u3125;Bopomofo Letter Eng +\u3126;Bopomofo Letter Er +\u3127;Bopomofo Letter I +\u3128;Bopomofo Letter U +\u3129;Bopomofo Letter Iu +\u312A;Bopomofo Letter V +\u312B;Bopomofo Letter Ng +\u312C;Bopomofo Letter Gn +\u312D;Bopomofo Letter Ih +\u312E;Bopomofo Letter O With Dot Above +\u312F;Bopomofo Letter Nn +\u3131;Hangul Letter Kiyeok +\u3132;Hangul Letter Ssangkiyeok +\u3133;Hangul Letter Kiyeok-Sios +\u3134;Hangul Letter Nieun +\u3135;Hangul Letter Nieun-Cieuc +\u3136;Hangul Letter Nieun-Hieuh +\u3137;Hangul Letter Tikeut +\u3138;Hangul Letter Ssangtikeut +\u3139;Hangul Letter Rieul +\u313A;Hangul Letter Rieul-Kiyeok +\u313B;Hangul Letter Rieul-Mieum +\u313C;Hangul Letter Rieul-Pieup +\u313D;Hangul Letter Rieul-Sios +\u313E;Hangul Letter Rieul-Thieuth +\u313F;Hangul Letter Rieul-Phieuph +\u3140;Hangul Letter Rieul-Hieuh +\u3141;Hangul Letter Mieum +\u3142;Hangul Letter Pieup +\u3143;Hangul Letter Ssangpieup +\u3144;Hangul Letter Pieup-Sios +\u3145;Hangul Letter Sios +\u3146;Hangul Letter Ssangsios +\u3147;Hangul Letter Ieung +\u3148;Hangul Letter Cieuc +\u3149;Hangul Letter Ssangcieuc +\u314A;Hangul Letter Chieuch +\u314B;Hangul Letter Khieukh +\u314C;Hangul Letter Thieuth +\u314D;Hangul Letter Phieuph +\u314E;Hangul Letter Hieuh +\u314F;Hangul Letter A +\u3150;Hangul Letter Ae +\u3151;Hangul Letter Ya +\u3152;Hangul Letter Yae +\u3153;Hangul Letter Eo +\u3154;Hangul Letter E +\u3155;Hangul Letter Yeo +\u3156;Hangul Letter Ye +\u3157;Hangul Letter O +\u3158;Hangul Letter Wa +\u3159;Hangul Letter Wae +\u315A;Hangul Letter Oe +\u315B;Hangul Letter Yo +\u315C;Hangul Letter U +\u315D;Hangul Letter Weo +\u315E;Hangul Letter We +\u315F;Hangul Letter Wi +\u3160;Hangul Letter Yu +\u3161;Hangul Letter Eu +\u3162;Hangul Letter Yi +\u3163;Hangul Letter I +\u3164;Hangul Filler +\u3165;Hangul Letter Ssangnieun +\u3166;Hangul Letter Nieun-Tikeut +\u3167;Hangul Letter Nieun-Sios +\u3168;Hangul Letter Nieun-Pansios +\u3169;Hangul Letter Rieul-Kiyeok-Sios +\u316A;Hangul Letter Rieul-Tikeut +\u316B;Hangul Letter Rieul-Pieup-Sios +\u316C;Hangul Letter Rieul-Pansios +\u316D;Hangul Letter Rieul-Yeorinhieuh +\u316E;Hangul Letter Mieum-Pieup +\u316F;Hangul Letter Mieum-Sios +\u3170;Hangul Letter Mieum-Pansios +\u3171;Hangul Letter Kapyeounmieum +\u3172;Hangul Letter Pieup-Kiyeok +\u3173;Hangul Letter Pieup-Tikeut +\u3174;Hangul Letter Pieup-Sios-Kiyeok +\u3175;Hangul Letter Pieup-Sios-Tikeut +\u3176;Hangul Letter Pieup-Cieuc +\u3177;Hangul Letter Pieup-Thieuth +\u3178;Hangul Letter Kapyeounpieup +\u3179;Hangul Letter Kapyeounssangpieup +\u317A;Hangul Letter Sios-Kiyeok +\u317B;Hangul Letter Sios-Nieun +\u317C;Hangul Letter Sios-Tikeut +\u317D;Hangul Letter Sios-Pieup +\u317E;Hangul Letter Sios-Cieuc +\u317F;Hangul Letter Pansios +\u3180;Hangul Letter Ssangieung +\u3181;Hangul Letter Yesieung +\u3182;Hangul Letter Yesieung-Sios +\u3183;Hangul Letter Yesieung-Pansios +\u3184;Hangul Letter Kapyeounphieuph +\u3185;Hangul Letter Ssanghieuh +\u3186;Hangul Letter Yeorinhieuh +\u3187;Hangul Letter Yo-Ya +\u3188;Hangul Letter Yo-Yae +\u3189;Hangul Letter Yo-I +\u318A;Hangul Letter Yu-Yeo +\u318B;Hangul Letter Yu-Ye +\u318C;Hangul Letter Yu-I +\u318D;Hangul Letter Araea +\u318E;Hangul Letter Araeae +\u3190;Ideographic Annotation Linking Mark +\u3191;Ideographic Annotation Reverse Mark +\u3192;Ideographic Annotation One Mark +\u3193;Ideographic Annotation Two Mark +\u3194;Ideographic Annotation Three Mark +\u3195;Ideographic Annotation Four Mark +\u3196;Ideographic Annotation Top Mark +\u3197;Ideographic Annotation Middle Mark +\u3198;Ideographic Annotation Bottom Mark +\u3199;Ideographic Annotation First Mark +\u319A;Ideographic Annotation Second Mark +\u319B;Ideographic Annotation Third Mark +\u319C;Ideographic Annotation Fourth Mark +\u319D;Ideographic Annotation Heaven Mark +\u319E;Ideographic Annotation Earth Mark +\u319F;Ideographic Annotation Man Mark +\u31A0;Bopomofo Letter Bu +\u31A1;Bopomofo Letter Zi +\u31A2;Bopomofo Letter Ji +\u31A3;Bopomofo Letter Gu +\u31A4;Bopomofo Letter Ee +\u31A5;Bopomofo Letter Enn +\u31A6;Bopomofo Letter Oo +\u31A7;Bopomofo Letter Onn +\u31A8;Bopomofo Letter Ir +\u31A9;Bopomofo Letter Ann +\u31AA;Bopomofo Letter Inn +\u31AB;Bopomofo Letter Unn +\u31AC;Bopomofo Letter Im +\u31AD;Bopomofo Letter Ngg +\u31AE;Bopomofo Letter Ainn +\u31AF;Bopomofo Letter Aunn +\u31B0;Bopomofo Letter Am +\u31B1;Bopomofo Letter Om +\u31B2;Bopomofo Letter Ong +\u31B3;Bopomofo Letter Innn +\u31B4;Bopomofo Final Letter P +\u31B5;Bopomofo Final Letter T +\u31B6;Bopomofo Final Letter K +\u31B7;Bopomofo Final Letter H +\u31B8;Bopomofo Letter Gh +\u31B9;Bopomofo Letter Lh +\u31BA;Bopomofo Letter Zy +\u31BB;Bopomofo Final Letter G +\u31BC;Bopomofo Letter Gw +\u31BD;Bopomofo Letter Kw +\u31BE;Bopomofo Letter Oe +\u31BF;Bopomofo Letter Ah +\u31C0;Cjk Stroke T +\u31C1;Cjk Stroke Wg +\u31C2;Cjk Stroke Xg +\u31C3;Cjk Stroke Bxg +\u31C4;Cjk Stroke Sw +\u31C5;Cjk Stroke Hzz +\u31C6;Cjk Stroke Hzg +\u31C7;Cjk Stroke Hp +\u31C8;Cjk Stroke Hzwg +\u31C9;Cjk Stroke Szwg +\u31CA;Cjk Stroke Hzt +\u31CB;Cjk Stroke Hzzp +\u31CC;Cjk Stroke Hpwg +\u31CD;Cjk Stroke Hzw +\u31CE;Cjk Stroke Hzzz +\u31CF;Cjk Stroke N +\u31D0;Cjk Stroke H +\u31D1;Cjk Stroke S +\u31D2;Cjk Stroke P +\u31D3;Cjk Stroke Sp +\u31D4;Cjk Stroke D +\u31D5;Cjk Stroke Hz +\u31D6;Cjk Stroke Hg +\u31D7;Cjk Stroke Sz +\u31D8;Cjk Stroke Swz +\u31D9;Cjk Stroke St +\u31DA;Cjk Stroke Sg +\u31DB;Cjk Stroke Pd +\u31DC;Cjk Stroke Pz +\u31DD;Cjk Stroke Tn +\u31DE;Cjk Stroke Szz +\u31DF;Cjk Stroke Swg +\u31E0;Cjk Stroke Hxwg +\u31E1;Cjk Stroke Hzzzg +\u31E2;Cjk Stroke Pg +\u31E3;Cjk Stroke Q +\u31EF;Ideographic Description Character Subtraction +\u31F0;Katakana Letter Small Ku +\u31F1;Katakana Letter Small Si +\u31F2;Katakana Letter Small Su +\u31F3;Katakana Letter Small To +\u31F4;Katakana Letter Small Nu +\u31F5;Katakana Letter Small Ha +\u31F6;Katakana Letter Small Hi +\u31F7;Katakana Letter Small Hu +\u31F8;Katakana Letter Small He +\u31F9;Katakana Letter Small Ho +\u31FA;Katakana Letter Small Mu +\u31FB;Katakana Letter Small Ra +\u31FC;Katakana Letter Small Ri +\u31FD;Katakana Letter Small Ru +\u31FE;Katakana Letter Small Re +\u31FF;Katakana Letter Small Ro +\u3200;Parenthesized Hangul Kiyeok +\u3201;Parenthesized Hangul Nieun +\u3202;Parenthesized Hangul Tikeut +\u3203;Parenthesized Hangul Rieul +\u3204;Parenthesized Hangul Mieum +\u3205;Parenthesized Hangul Pieup +\u3206;Parenthesized Hangul Sios +\u3207;Parenthesized Hangul Ieung +\u3208;Parenthesized Hangul Cieuc +\u3209;Parenthesized Hangul Chieuch +\u320A;Parenthesized Hangul Khieukh +\u320B;Parenthesized Hangul Thieuth +\u320C;Parenthesized Hangul Phieuph +\u320D;Parenthesized Hangul Hieuh +\u320E;Parenthesized Hangul Kiyeok A +\u320F;Parenthesized Hangul Nieun A +\u3210;Parenthesized Hangul Tikeut A +\u3211;Parenthesized Hangul Rieul A +\u3212;Parenthesized Hangul Mieum A +\u3213;Parenthesized Hangul Pieup A +\u3214;Parenthesized Hangul Sios A +\u3215;Parenthesized Hangul Ieung A +\u3216;Parenthesized Hangul Cieuc A +\u3217;Parenthesized Hangul Chieuch A +\u3218;Parenthesized Hangul Khieukh A +\u3219;Parenthesized Hangul Thieuth A +\u321A;Parenthesized Hangul Phieuph A +\u321B;Parenthesized Hangul Hieuh A +\u321C;Parenthesized Hangul Cieuc U +\u321D;Parenthesized Korean Character Ojeon +\u321E;Parenthesized Korean Character O Hu +\u3220;Parenthesized Ideograph One +\u3221;Parenthesized Ideograph Two +\u3222;Parenthesized Ideograph Three +\u3223;Parenthesized Ideograph Four +\u3224;Parenthesized Ideograph Five +\u3225;Parenthesized Ideograph Six +\u3226;Parenthesized Ideograph Seven +\u3227;Parenthesized Ideograph Eight +\u3228;Parenthesized Ideograph Nine +\u3229;Parenthesized Ideograph Ten +\u322A;Parenthesized Ideograph Moon +\u322B;Parenthesized Ideograph Fire +\u322C;Parenthesized Ideograph Water +\u322D;Parenthesized Ideograph Wood +\u322E;Parenthesized Ideograph Metal +\u322F;Parenthesized Ideograph Earth +\u3230;Parenthesized Ideograph Sun +\u3231;Parenthesized Ideograph Stock +\u3232;Parenthesized Ideograph Have +\u3233;Parenthesized Ideograph Society +\u3234;Parenthesized Ideograph Name +\u3235;Parenthesized Ideograph Special +\u3236;Parenthesized Ideograph Financial +\u3237;Parenthesized Ideograph Congratulation +\u3238;Parenthesized Ideograph Labor +\u3239;Parenthesized Ideograph Represent +\u323A;Parenthesized Ideograph Call +\u323B;Parenthesized Ideograph Study +\u323C;Parenthesized Ideograph Supervise +\u323D;Parenthesized Ideograph Enterprise +\u323E;Parenthesized Ideograph Resource +\u323F;Parenthesized Ideograph Alliance +\u3240;Parenthesized Ideograph Festival +\u3241;Parenthesized Ideograph Rest +\u3242;Parenthesized Ideograph Self +\u3243;Parenthesized Ideograph Reach +\u3244;Circled Ideograph Question +\u3245;Circled Ideograph Kindergarten +\u3246;Circled Ideograph School +\u3247;Circled Ideograph Koto +\u3248;Circled Number Ten On Black Square +\u3249;Circled Number Twenty On Black Square +\u324A;Circled Number Thirty On Black Square +\u324B;Circled Number Forty On Black Square +\u324C;Circled Number Fifty On Black Square +\u324D;Circled Number Sixty On Black Square +\u324E;Circled Number Seventy On Black Square +\u324F;Circled Number Eighty On Black Square +\u3250;Partnership Sign +\u3251;Circled Number Twenty One +\u3252;Circled Number Twenty Two +\u3253;Circled Number Twenty Three +\u3254;Circled Number Twenty Four +\u3255;Circled Number Twenty Five +\u3256;Circled Number Twenty Six +\u3257;Circled Number Twenty Seven +\u3258;Circled Number Twenty Eight +\u3259;Circled Number Twenty Nine +\u325A;Circled Number Thirty +\u325B;Circled Number Thirty One +\u325C;Circled Number Thirty Two +\u325D;Circled Number Thirty Three +\u325E;Circled Number Thirty Four +\u325F;Circled Number Thirty Five +\u3260;Circled Hangul Kiyeok +\u3261;Circled Hangul Nieun +\u3262;Circled Hangul Tikeut +\u3263;Circled Hangul Rieul +\u3264;Circled Hangul Mieum +\u3265;Circled Hangul Pieup +\u3266;Circled Hangul Sios +\u3267;Circled Hangul Ieung +\u3268;Circled Hangul Cieuc +\u3269;Circled Hangul Chieuch +\u326A;Circled Hangul Khieukh +\u326B;Circled Hangul Thieuth +\u326C;Circled Hangul Phieuph +\u326D;Circled Hangul Hieuh +\u326E;Circled Hangul Kiyeok A +\u326F;Circled Hangul Nieun A +\u3270;Circled Hangul Tikeut A +\u3271;Circled Hangul Rieul A +\u3272;Circled Hangul Mieum A +\u3273;Circled Hangul Pieup A +\u3274;Circled Hangul Sios A +\u3275;Circled Hangul Ieung A +\u3276;Circled Hangul Cieuc A +\u3277;Circled Hangul Chieuch A +\u3278;Circled Hangul Khieukh A +\u3279;Circled Hangul Thieuth A +\u327A;Circled Hangul Phieuph A +\u327B;Circled Hangul Hieuh A +\u327C;Circled Korean Character Chamko +\u327D;Circled Korean Character Jueui +\u327E;Circled Hangul Ieung U +\u327F;Korean Standard Symbol +\u3280;Circled Ideograph One +\u3281;Circled Ideograph Two +\u3282;Circled Ideograph Three +\u3283;Circled Ideograph Four +\u3284;Circled Ideograph Five +\u3285;Circled Ideograph Six +\u3286;Circled Ideograph Seven +\u3287;Circled Ideograph Eight +\u3288;Circled Ideograph Nine +\u3289;Circled Ideograph Ten +\u328A;Circled Ideograph Moon +\u328B;Circled Ideograph Fire +\u328C;Circled Ideograph Water +\u328D;Circled Ideograph Wood +\u328E;Circled Ideograph Metal +\u328F;Circled Ideograph Earth +\u3290;Circled Ideograph Sun +\u3291;Circled Ideograph Stock +\u3292;Circled Ideograph Have +\u3293;Circled Ideograph Society +\u3294;Circled Ideograph Name +\u3295;Circled Ideograph Special +\u3296;Circled Ideograph Financial +\u3297;Circled Ideograph Congratulation +\u3298;Circled Ideograph Labor +\u3299;Circled Ideograph Secret +\u329A;Circled Ideograph Male +\u329B;Circled Ideograph Female +\u329C;Circled Ideograph Suitable +\u329D;Circled Ideograph Excellent +\u329E;Circled Ideograph Print +\u329F;Circled Ideograph Attention +\u32A0;Circled Ideograph Item +\u32A1;Circled Ideograph Rest +\u32A2;Circled Ideograph Copy +\u32A3;Circled Ideograph Correct +\u32A4;Circled Ideograph High +\u32A5;Circled Ideograph Centre +\u32A6;Circled Ideograph Low +\u32A7;Circled Ideograph Left +\u32A8;Circled Ideograph Right +\u32A9;Circled Ideograph Medicine +\u32AA;Circled Ideograph Religion +\u32AB;Circled Ideograph Study +\u32AC;Circled Ideograph Supervise +\u32AD;Circled Ideograph Enterprise +\u32AE;Circled Ideograph Resource +\u32AF;Circled Ideograph Alliance +\u32B0;Circled Ideograph Night +\u32B1;Circled Number Thirty Six +\u32B2;Circled Number Thirty Seven +\u32B3;Circled Number Thirty Eight +\u32B4;Circled Number Thirty Nine +\u32B5;Circled Number Forty +\u32B6;Circled Number Forty One +\u32B7;Circled Number Forty Two +\u32B8;Circled Number Forty Three +\u32B9;Circled Number Forty Four +\u32BA;Circled Number Forty Five +\u32BB;Circled Number Forty Six +\u32BC;Circled Number Forty Seven +\u32BD;Circled Number Forty Eight +\u32BE;Circled Number Forty Nine +\u32BF;Circled Number Fifty +\u32C0;Ideographic Telegraph Symbol For January +\u32C1;Ideographic Telegraph Symbol For February +\u32C2;Ideographic Telegraph Symbol For March +\u32C3;Ideographic Telegraph Symbol For April +\u32C4;Ideographic Telegraph Symbol For May +\u32C5;Ideographic Telegraph Symbol For June +\u32C6;Ideographic Telegraph Symbol For July +\u32C7;Ideographic Telegraph Symbol For August +\u32C8;Ideographic Telegraph Symbol For September +\u32C9;Ideographic Telegraph Symbol For October +\u32CA;Ideographic Telegraph Symbol For November +\u32CB;Ideographic Telegraph Symbol For December +\u32CC;Square Hg +\u32CD;Square Erg +\u32CE;Square Ev +\u32CF;Limited Liability Sign +\u32D0;Circled Katakana A +\u32D1;Circled Katakana I +\u32D2;Circled Katakana U +\u32D3;Circled Katakana E +\u32D4;Circled Katakana O +\u32D5;Circled Katakana Ka +\u32D6;Circled Katakana Ki +\u32D7;Circled Katakana Ku +\u32D8;Circled Katakana Ke +\u32D9;Circled Katakana Ko +\u32DA;Circled Katakana Sa +\u32DB;Circled Katakana Si +\u32DC;Circled Katakana Su +\u32DD;Circled Katakana Se +\u32DE;Circled Katakana So +\u32DF;Circled Katakana Ta +\u32E0;Circled Katakana Ti +\u32E1;Circled Katakana Tu +\u32E2;Circled Katakana Te +\u32E3;Circled Katakana To +\u32E4;Circled Katakana Na +\u32E5;Circled Katakana Ni +\u32E6;Circled Katakana Nu +\u32E7;Circled Katakana Ne +\u32E8;Circled Katakana No +\u32E9;Circled Katakana Ha +\u32EA;Circled Katakana Hi +\u32EB;Circled Katakana Hu +\u32EC;Circled Katakana He +\u32ED;Circled Katakana Ho +\u32EE;Circled Katakana Ma +\u32EF;Circled Katakana Mi +\u32F0;Circled Katakana Mu +\u32F1;Circled Katakana Me +\u32F2;Circled Katakana Mo +\u32F3;Circled Katakana Ya +\u32F4;Circled Katakana Yu +\u32F5;Circled Katakana Yo +\u32F6;Circled Katakana Ra +\u32F7;Circled Katakana Ri +\u32F8;Circled Katakana Ru +\u32F9;Circled Katakana Re +\u32FA;Circled Katakana Ro +\u32FB;Circled Katakana Wa +\u32FC;Circled Katakana Wi +\u32FD;Circled Katakana We +\u32FE;Circled Katakana Wo +\u32FF;Square Era Name Reiwa +\u3300;Square Apaato +\u3301;Square Aruhua +\u3302;Square Anpea +\u3303;Square Aaru +\u3304;Square Iningu +\u3305;Square Inti +\u3306;Square Uon +\u3307;Square Esukuudo +\u3308;Square Eekaa +\u3309;Square Onsu +\u330A;Square Oomu +\u330B;Square Kairi +\u330C;Square Karatto +\u330D;Square Karorii +\u330E;Square Garon +\u330F;Square Ganma +\u3310;Square Giga +\u3311;Square Ginii +\u3312;Square Kyurii +\u3313;Square Girudaa +\u3314;Square Kiro +\u3315;Square Kiroguramu +\u3316;Square Kiromeetoru +\u3317;Square Kirowatto +\u3318;Square Guramu +\u3319;Square Guramuton +\u331A;Square Kuruzeiro +\u331B;Square Kuroone +\u331C;Square Keesu +\u331D;Square Koruna +\u331E;Square Koopo +\u331F;Square Saikuru +\u3320;Square Santiimu +\u3321;Square Siringu +\u3322;Square Senti +\u3323;Square Sento +\u3324;Square Daasu +\u3325;Square Desi +\u3326;Square Doru +\u3327;Square Ton +\u3328;Square Nano +\u3329;Square Notto +\u332A;Square Haitu +\u332B;Square Paasento +\u332C;Square Paatu +\u332D;Square Baareru +\u332E;Square Piasutoru +\u332F;Square Pikuru +\u3330;Square Piko +\u3331;Square Biru +\u3332;Square Huaraddo +\u3333;Square Huiito +\u3334;Square Bussyeru +\u3335;Square Huran +\u3336;Square Hekutaaru +\u3337;Square Peso +\u3338;Square Penihi +\u3339;Square Herutu +\u333A;Square Pensu +\u333B;Square Peezi +\u333C;Square Beeta +\u333D;Square Pointo +\u333E;Square Boruto +\u333F;Square Hon +\u3340;Square Pondo +\u3341;Square Hooru +\u3342;Square Hoon +\u3343;Square Maikuro +\u3344;Square Mairu +\u3345;Square Mahha +\u3346;Square Maruku +\u3347;Square Mansyon +\u3348;Square Mikuron +\u3349;Square Miri +\u334A;Square Miribaaru +\u334B;Square Mega +\u334C;Square Megaton +\u334D;Square Meetoru +\u334E;Square Yaado +\u334F;Square Yaaru +\u3350;Square Yuan +\u3351;Square Rittoru +\u3352;Square Rira +\u3353;Square Rupii +\u3354;Square Ruuburu +\u3355;Square Remu +\u3356;Square Rentogen +\u3357;Square Watto +\u3358;Ideographic Telegraph Symbol For Hour Zero +\u3359;Ideographic Telegraph Symbol For Hour One +\u335A;Ideographic Telegraph Symbol For Hour Two +\u335B;Ideographic Telegraph Symbol For Hour Three +\u335C;Ideographic Telegraph Symbol For Hour Four +\u335D;Ideographic Telegraph Symbol For Hour Five +\u335E;Ideographic Telegraph Symbol For Hour Six +\u335F;Ideographic Telegraph Symbol For Hour Seven +\u3360;Ideographic Telegraph Symbol For Hour Eight +\u3361;Ideographic Telegraph Symbol For Hour Nine +\u3362;Ideographic Telegraph Symbol For Hour Ten +\u3363;Ideographic Telegraph Symbol For Hour Eleven +\u3364;Ideographic Telegraph Symbol For Hour Twelve +\u3365;Ideographic Telegraph Symbol For Hour Thirteen +\u3366;Ideographic Telegraph Symbol For Hour Fourteen +\u3367;Ideographic Telegraph Symbol For Hour Fifteen +\u3368;Ideographic Telegraph Symbol For Hour Sixteen +\u3369;Ideographic Telegraph Symbol For Hour Seventeen +\u336A;Ideographic Telegraph Symbol For Hour Eighteen +\u336B;Ideographic Telegraph Symbol For Hour Nineteen +\u336C;Ideographic Telegraph Symbol For Hour Twenty +\u336D;Ideographic Telegraph Symbol For Hour Twenty-One +\u336E;Ideographic Telegraph Symbol For Hour Twenty-Two +\u336F;Ideographic Telegraph Symbol For Hour Twenty-Three +\u3370;Ideographic Telegraph Symbol For Hour Twenty-Four +\u3371;Square Hpa +\u3372;Square Da +\u3373;Square Au +\u3374;Square Bar +\u3375;Square Ov +\u3376;Square Pc +\u3377;Square Dm +\u3378;Square Dm Squared +\u3379;Square Dm Cubed +\u337A;Square Iu +\u337B;Square Era Name Heisei +\u337C;Square Era Name Syouwa +\u337D;Square Era Name Taisyou +\u337E;Square Era Name Meizi +\u337F;Square Corporation +\u3380;Square Pa Amps +\u3381;Square Na +\u3382;Square Mu A +\u3383;Square Ma +\u3384;Square Ka +\u3385;Square Kb +\u3386;Square Mb +\u3387;Square Gb +\u3388;Square Cal +\u3389;Square Kcal +\u338A;Square Pf +\u338B;Square Nf +\u338C;Square Mu F +\u338D;Square Mu G +\u338E;Square Mg +\u338F;Square Kg +\u3390;Square Hz +\u3391;Square Khz +\u3392;Square Mhz +\u3393;Square Ghz +\u3394;Square Thz +\u3395;Square Mu L +\u3396;Square Ml +\u3397;Square Dl +\u3398;Square Kl +\u3399;Square Fm +\u339A;Square Nm +\u339B;Square Mu M +\u339C;Square Mm +\u339D;Square Cm +\u339E;Square Km +\u339F;Square Mm Squared +\u33A0;Square Cm Squared +\u33A1;Square M Squared +\u33A2;Square Km Squared +\u33A3;Square Mm Cubed +\u33A4;Square Cm Cubed +\u33A5;Square M Cubed +\u33A6;Square Km Cubed +\u33A7;Square M Over S +\u33A8;Square M Over S Squared +\u33A9;Square Pa +\u33AA;Square Kpa +\u33AB;Square Mpa +\u33AC;Square Gpa +\u33AD;Square Rad +\u33AE;Square Rad Over S +\u33AF;Square Rad Over S Squared +\u33B0;Square Ps +\u33B1;Square Ns +\u33B2;Square Mu S +\u33B3;Square Ms +\u33B4;Square Pv +\u33B5;Square Nv +\u33B6;Square Mu V +\u33B7;Square Mv +\u33B8;Square Kv +\u33B9;Square Mv Mega +\u33BA;Square Pw +\u33BB;Square Nw +\u33BC;Square Mu W +\u33BD;Square Mw +\u33BE;Square Kw +\u33BF;Square Mw Mega +\u33C0;Square K Ohm +\u33C1;Square M Ohm +\u33C2;Square Am +\u33C3;Square Bq +\u33C4;Square Cc +\u33C5;Square Cd +\u33C6;Square C Over Kg +\u33C7;Square Co +\u33C8;Square Db +\u33C9;Square Gy +\u33CA;Square Ha +\u33CB;Square Hp +\u33CC;Square In +\u33CD;Square Kk +\u33CE;Square Km Capital +\u33CF;Square Kt +\u33D0;Square Lm +\u33D1;Square Ln +\u33D2;Square Log +\u33D3;Square Lx +\u33D4;Square Mb Small +\u33D5;Square Mil +\u33D6;Square Mol +\u33D7;Square Ph +\u33D8;Square Pm +\u33D9;Square Ppm +\u33DA;Square Pr +\u33DB;Square Sr +\u33DC;Square Sv +\u33DD;Square Wb +\u33DE;Square V Over M +\u33DF;Square A Over M +\u33E0;Ideographic Telegraph Symbol For Day One +\u33E1;Ideographic Telegraph Symbol For Day Two +\u33E2;Ideographic Telegraph Symbol For Day Three +\u33E3;Ideographic Telegraph Symbol For Day Four +\u33E4;Ideographic Telegraph Symbol For Day Five +\u33E5;Ideographic Telegraph Symbol For Day Six +\u33E6;Ideographic Telegraph Symbol For Day Seven +\u33E7;Ideographic Telegraph Symbol For Day Eight +\u33E8;Ideographic Telegraph Symbol For Day Nine +\u33E9;Ideographic Telegraph Symbol For Day Ten +\u33EA;Ideographic Telegraph Symbol For Day Eleven +\u33EB;Ideographic Telegraph Symbol For Day Twelve +\u33EC;Ideographic Telegraph Symbol For Day Thirteen +\u33ED;Ideographic Telegraph Symbol For Day Fourteen +\u33EE;Ideographic Telegraph Symbol For Day Fifteen +\u33EF;Ideographic Telegraph Symbol For Day Sixteen +\u33F0;Ideographic Telegraph Symbol For Day Seventeen +\u33F1;Ideographic Telegraph Symbol For Day Eighteen +\u33F2;Ideographic Telegraph Symbol For Day Nineteen +\u33F3;Ideographic Telegraph Symbol For Day Twenty +\u33F4;Ideographic Telegraph Symbol For Day Twenty-One +\u33F5;Ideographic Telegraph Symbol For Day Twenty-Two +\u33F6;Ideographic Telegraph Symbol For Day Twenty-Three +\u33F7;Ideographic Telegraph Symbol For Day Twenty-Four +\u33F8;Ideographic Telegraph Symbol For Day Twenty-Five +\u33F9;Ideographic Telegraph Symbol For Day Twenty-Six +\u33FA;Ideographic Telegraph Symbol For Day Twenty-Seven +\u33FB;Ideographic Telegraph Symbol For Day Twenty-Eight +\u33FC;Ideographic Telegraph Symbol For Day Twenty-Nine +\u33FD;Ideographic Telegraph Symbol For Day Thirty +\u33FE;Ideographic Telegraph Symbol For Day Thirty-One +\u33FF;Square Gal +\u4DC0;Hexagram For The Creative Heaven +\u4DC1;Hexagram For The Receptive Earth +\u4DC2;Hexagram For Difficulty At The Beginning +\u4DC3;Hexagram For Youthful Folly +\u4DC4;Hexagram For Waiting +\u4DC5;Hexagram For Conflict +\u4DC6;Hexagram For The Army +\u4DC7;Hexagram For Holding Together +\u4DC8;Hexagram For Small Taming +\u4DC9;Hexagram For Treading +\u4DCA;Hexagram For Peace +\u4DCB;Hexagram For Standstill +\u4DCC;Hexagram For Fellowship +\u4DCD;Hexagram For Great Possession +\u4DCE;Hexagram For Modesty +\u4DCF;Hexagram For Enthusiasm +\u4DD0;Hexagram For Following +\u4DD1;Hexagram For Work On The Decayed +\u4DD2;Hexagram For Approach +\u4DD3;Hexagram For Contemplation +\u4DD4;Hexagram For Biting Through +\u4DD5;Hexagram For Grace +\u4DD6;Hexagram For Splitting Apart +\u4DD7;Hexagram For Return +\u4DD8;Hexagram For Innocence +\u4DD9;Hexagram For Great Taming +\u4DDA;Hexagram For Mouth Corners +\u4DDB;Hexagram For Great Preponderance +\u4DDC;Hexagram For The Abysmal Water +\u4DDD;Hexagram For The Clinging Fire +\u4DDE;Hexagram For Influence +\u4DDF;Hexagram For Duration +\u4DE0;Hexagram For Retreat +\u4DE1;Hexagram For Great Power +\u4DE2;Hexagram For Progress +\u4DE3;Hexagram For Darkening Of The Light +\u4DE4;Hexagram For The Family +\u4DE5;Hexagram For Opposition +\u4DE6;Hexagram For Obstruction +\u4DE7;Hexagram For Deliverance +\u4DE8;Hexagram For Decrease +\u4DE9;Hexagram For Increase +\u4DEA;Hexagram For Breakthrough +\u4DEB;Hexagram For Coming To Meet +\u4DEC;Hexagram For Gathering Together +\u4DED;Hexagram For Pushing Upward +\u4DEE;Hexagram For Oppression +\u4DEF;Hexagram For The Well +\u4DF0;Hexagram For Revolution +\u4DF1;Hexagram For The Cauldron +\u4DF2;Hexagram For The Arousing Thunder +\u4DF3;Hexagram For The Keeping Still Mountain +\u4DF4;Hexagram For Development +\u4DF5;Hexagram For The Marrying Maiden +\u4DF6;Hexagram For Abundance +\u4DF7;Hexagram For The Wanderer +\u4DF8;Hexagram For The Gentle Wind +\u4DF9;Hexagram For The Joyous Lake +\u4DFA;Hexagram For Dispersion +\u4DFB;Hexagram For Limitation +\u4DFC;Hexagram For Inner Truth +\u4DFD;Hexagram For Small Preponderance +\u4DFE;Hexagram For After Completion +\u4DFF;Hexagram For Before Completion +\uA000;Yi Syllable It +\uA001;Yi Syllable Ix +\uA002;Yi Syllable I +\uA003;Yi Syllable Ip +\uA004;Yi Syllable Iet +\uA005;Yi Syllable Iex +\uA006;Yi Syllable Ie +\uA007;Yi Syllable Iep +\uA008;Yi Syllable At +\uA009;Yi Syllable Ax +\uA00A;Yi Syllable A +\uA00B;Yi Syllable Ap +\uA00C;Yi Syllable Uox +\uA00D;Yi Syllable Uo +\uA00E;Yi Syllable Uop +\uA00F;Yi Syllable Ot +\uA010;Yi Syllable Ox +\uA011;Yi Syllable O +\uA012;Yi Syllable Op +\uA013;Yi Syllable Ex +\uA014;Yi Syllable E +\uA015;Yi Syllable Wu +\uA016;Yi Syllable Bit +\uA017;Yi Syllable Bix +\uA018;Yi Syllable Bi +\uA019;Yi Syllable Bip +\uA01A;Yi Syllable Biet +\uA01B;Yi Syllable Biex +\uA01C;Yi Syllable Bie +\uA01D;Yi Syllable Biep +\uA01E;Yi Syllable Bat +\uA01F;Yi Syllable Bax +\uA020;Yi Syllable Ba +\uA021;Yi Syllable Bap +\uA022;Yi Syllable Buox +\uA023;Yi Syllable Buo +\uA024;Yi Syllable Buop +\uA025;Yi Syllable Bot +\uA026;Yi Syllable Box +\uA027;Yi Syllable Bo +\uA028;Yi Syllable Bop +\uA029;Yi Syllable Bex +\uA02A;Yi Syllable Be +\uA02B;Yi Syllable Bep +\uA02C;Yi Syllable But +\uA02D;Yi Syllable Bux +\uA02E;Yi Syllable Bu +\uA02F;Yi Syllable Bup +\uA030;Yi Syllable Burx +\uA031;Yi Syllable Bur +\uA032;Yi Syllable Byt +\uA033;Yi Syllable Byx +\uA034;Yi Syllable By +\uA035;Yi Syllable Byp +\uA036;Yi Syllable Byrx +\uA037;Yi Syllable Byr +\uA038;Yi Syllable Pit +\uA039;Yi Syllable Pix +\uA03A;Yi Syllable Pi +\uA03B;Yi Syllable Pip +\uA03C;Yi Syllable Piex +\uA03D;Yi Syllable Pie +\uA03E;Yi Syllable Piep +\uA03F;Yi Syllable Pat +\uA040;Yi Syllable Pax +\uA041;Yi Syllable Pa +\uA042;Yi Syllable Pap +\uA043;Yi Syllable Puox +\uA044;Yi Syllable Puo +\uA045;Yi Syllable Puop +\uA046;Yi Syllable Pot +\uA047;Yi Syllable Pox +\uA048;Yi Syllable Po +\uA049;Yi Syllable Pop +\uA04A;Yi Syllable Put +\uA04B;Yi Syllable Pux +\uA04C;Yi Syllable Pu +\uA04D;Yi Syllable Pup +\uA04E;Yi Syllable Purx +\uA04F;Yi Syllable Pur +\uA050;Yi Syllable Pyt +\uA051;Yi Syllable Pyx +\uA052;Yi Syllable Py +\uA053;Yi Syllable Pyp +\uA054;Yi Syllable Pyrx +\uA055;Yi Syllable Pyr +\uA056;Yi Syllable Bbit +\uA057;Yi Syllable Bbix +\uA058;Yi Syllable Bbi +\uA059;Yi Syllable Bbip +\uA05A;Yi Syllable Bbiet +\uA05B;Yi Syllable Bbiex +\uA05C;Yi Syllable Bbie +\uA05D;Yi Syllable Bbiep +\uA05E;Yi Syllable Bbat +\uA05F;Yi Syllable Bbax +\uA060;Yi Syllable Bba +\uA061;Yi Syllable Bbap +\uA062;Yi Syllable Bbuox +\uA063;Yi Syllable Bbuo +\uA064;Yi Syllable Bbuop +\uA065;Yi Syllable Bbot +\uA066;Yi Syllable Bbox +\uA067;Yi Syllable Bbo +\uA068;Yi Syllable Bbop +\uA069;Yi Syllable Bbex +\uA06A;Yi Syllable Bbe +\uA06B;Yi Syllable Bbep +\uA06C;Yi Syllable Bbut +\uA06D;Yi Syllable Bbux +\uA06E;Yi Syllable Bbu +\uA06F;Yi Syllable Bbup +\uA070;Yi Syllable Bburx +\uA071;Yi Syllable Bbur +\uA072;Yi Syllable Bbyt +\uA073;Yi Syllable Bbyx +\uA074;Yi Syllable Bby +\uA075;Yi Syllable Bbyp +\uA076;Yi Syllable Nbit +\uA077;Yi Syllable Nbix +\uA078;Yi Syllable Nbi +\uA079;Yi Syllable Nbip +\uA07A;Yi Syllable Nbiex +\uA07B;Yi Syllable Nbie +\uA07C;Yi Syllable Nbiep +\uA07D;Yi Syllable Nbat +\uA07E;Yi Syllable Nbax +\uA07F;Yi Syllable Nba +\uA080;Yi Syllable Nbap +\uA081;Yi Syllable Nbot +\uA082;Yi Syllable Nbox +\uA083;Yi Syllable Nbo +\uA084;Yi Syllable Nbop +\uA085;Yi Syllable Nbut +\uA086;Yi Syllable Nbux +\uA087;Yi Syllable Nbu +\uA088;Yi Syllable Nbup +\uA089;Yi Syllable Nburx +\uA08A;Yi Syllable Nbur +\uA08B;Yi Syllable Nbyt +\uA08C;Yi Syllable Nbyx +\uA08D;Yi Syllable Nby +\uA08E;Yi Syllable Nbyp +\uA08F;Yi Syllable Nbyrx +\uA090;Yi Syllable Nbyr +\uA091;Yi Syllable Hmit +\uA092;Yi Syllable Hmix +\uA093;Yi Syllable Hmi +\uA094;Yi Syllable Hmip +\uA095;Yi Syllable Hmiex +\uA096;Yi Syllable Hmie +\uA097;Yi Syllable Hmiep +\uA098;Yi Syllable Hmat +\uA099;Yi Syllable Hmax +\uA09A;Yi Syllable Hma +\uA09B;Yi Syllable Hmap +\uA09C;Yi Syllable Hmuox +\uA09D;Yi Syllable Hmuo +\uA09E;Yi Syllable Hmuop +\uA09F;Yi Syllable Hmot +\uA0A0;Yi Syllable Hmox +\uA0A1;Yi Syllable Hmo +\uA0A2;Yi Syllable Hmop +\uA0A3;Yi Syllable Hmut +\uA0A4;Yi Syllable Hmux +\uA0A5;Yi Syllable Hmu +\uA0A6;Yi Syllable Hmup +\uA0A7;Yi Syllable Hmurx +\uA0A8;Yi Syllable Hmur +\uA0A9;Yi Syllable Hmyx +\uA0AA;Yi Syllable Hmy +\uA0AB;Yi Syllable Hmyp +\uA0AC;Yi Syllable Hmyrx +\uA0AD;Yi Syllable Hmyr +\uA0AE;Yi Syllable Mit +\uA0AF;Yi Syllable Mix +\uA0B0;Yi Syllable Mi +\uA0B1;Yi Syllable Mip +\uA0B2;Yi Syllable Miex +\uA0B3;Yi Syllable Mie +\uA0B4;Yi Syllable Miep +\uA0B5;Yi Syllable Mat +\uA0B6;Yi Syllable Max +\uA0B7;Yi Syllable Ma +\uA0B8;Yi Syllable Map +\uA0B9;Yi Syllable Muot +\uA0BA;Yi Syllable Muox +\uA0BB;Yi Syllable Muo +\uA0BC;Yi Syllable Muop +\uA0BD;Yi Syllable Mot +\uA0BE;Yi Syllable Mox +\uA0BF;Yi Syllable Mo +\uA0C0;Yi Syllable Mop +\uA0C1;Yi Syllable Mex +\uA0C2;Yi Syllable Me +\uA0C3;Yi Syllable Mut +\uA0C4;Yi Syllable Mux +\uA0C5;Yi Syllable Mu +\uA0C6;Yi Syllable Mup +\uA0C7;Yi Syllable Murx +\uA0C8;Yi Syllable Mur +\uA0C9;Yi Syllable Myt +\uA0CA;Yi Syllable Myx +\uA0CB;Yi Syllable My +\uA0CC;Yi Syllable Myp +\uA0CD;Yi Syllable Fit +\uA0CE;Yi Syllable Fix +\uA0CF;Yi Syllable Fi +\uA0D0;Yi Syllable Fip +\uA0D1;Yi Syllable Fat +\uA0D2;Yi Syllable Fax +\uA0D3;Yi Syllable Fa +\uA0D4;Yi Syllable Fap +\uA0D5;Yi Syllable Fox +\uA0D6;Yi Syllable Fo +\uA0D7;Yi Syllable Fop +\uA0D8;Yi Syllable Fut +\uA0D9;Yi Syllable Fux +\uA0DA;Yi Syllable Fu +\uA0DB;Yi Syllable Fup +\uA0DC;Yi Syllable Furx +\uA0DD;Yi Syllable Fur +\uA0DE;Yi Syllable Fyt +\uA0DF;Yi Syllable Fyx +\uA0E0;Yi Syllable Fy +\uA0E1;Yi Syllable Fyp +\uA0E2;Yi Syllable Vit +\uA0E3;Yi Syllable Vix +\uA0E4;Yi Syllable Vi +\uA0E5;Yi Syllable Vip +\uA0E6;Yi Syllable Viet +\uA0E7;Yi Syllable Viex +\uA0E8;Yi Syllable Vie +\uA0E9;Yi Syllable Viep +\uA0EA;Yi Syllable Vat +\uA0EB;Yi Syllable Vax +\uA0EC;Yi Syllable Va +\uA0ED;Yi Syllable Vap +\uA0EE;Yi Syllable Vot +\uA0EF;Yi Syllable Vox +\uA0F0;Yi Syllable Vo +\uA0F1;Yi Syllable Vop +\uA0F2;Yi Syllable Vex +\uA0F3;Yi Syllable Vep +\uA0F4;Yi Syllable Vut +\uA0F5;Yi Syllable Vux +\uA0F6;Yi Syllable Vu +\uA0F7;Yi Syllable Vup +\uA0F8;Yi Syllable Vurx +\uA0F9;Yi Syllable Vur +\uA0FA;Yi Syllable Vyt +\uA0FB;Yi Syllable Vyx +\uA0FC;Yi Syllable Vy +\uA0FD;Yi Syllable Vyp +\uA0FE;Yi Syllable Vyrx +\uA0FF;Yi Syllable Vyr +\uA100;Yi Syllable Dit +\uA101;Yi Syllable Dix +\uA102;Yi Syllable Di +\uA103;Yi Syllable Dip +\uA104;Yi Syllable Diex +\uA105;Yi Syllable Die +\uA106;Yi Syllable Diep +\uA107;Yi Syllable Dat +\uA108;Yi Syllable Dax +\uA109;Yi Syllable Da +\uA10A;Yi Syllable Dap +\uA10B;Yi Syllable Duox +\uA10C;Yi Syllable Duo +\uA10D;Yi Syllable Dot +\uA10E;Yi Syllable Dox +\uA10F;Yi Syllable Do +\uA110;Yi Syllable Dop +\uA111;Yi Syllable Dex +\uA112;Yi Syllable De +\uA113;Yi Syllable Dep +\uA114;Yi Syllable Dut +\uA115;Yi Syllable Dux +\uA116;Yi Syllable Du +\uA117;Yi Syllable Dup +\uA118;Yi Syllable Durx +\uA119;Yi Syllable Dur +\uA11A;Yi Syllable Tit +\uA11B;Yi Syllable Tix +\uA11C;Yi Syllable Ti +\uA11D;Yi Syllable Tip +\uA11E;Yi Syllable Tiex +\uA11F;Yi Syllable Tie +\uA120;Yi Syllable Tiep +\uA121;Yi Syllable Tat +\uA122;Yi Syllable Tax +\uA123;Yi Syllable Ta +\uA124;Yi Syllable Tap +\uA125;Yi Syllable Tuot +\uA126;Yi Syllable Tuox +\uA127;Yi Syllable Tuo +\uA128;Yi Syllable Tuop +\uA129;Yi Syllable Tot +\uA12A;Yi Syllable Tox +\uA12B;Yi Syllable To +\uA12C;Yi Syllable Top +\uA12D;Yi Syllable Tex +\uA12E;Yi Syllable Te +\uA12F;Yi Syllable Tep +\uA130;Yi Syllable Tut +\uA131;Yi Syllable Tux +\uA132;Yi Syllable Tu +\uA133;Yi Syllable Tup +\uA134;Yi Syllable Turx +\uA135;Yi Syllable Tur +\uA136;Yi Syllable Ddit +\uA137;Yi Syllable Ddix +\uA138;Yi Syllable Ddi +\uA139;Yi Syllable Ddip +\uA13A;Yi Syllable Ddiex +\uA13B;Yi Syllable Ddie +\uA13C;Yi Syllable Ddiep +\uA13D;Yi Syllable Ddat +\uA13E;Yi Syllable Ddax +\uA13F;Yi Syllable Dda +\uA140;Yi Syllable Ddap +\uA141;Yi Syllable Dduox +\uA142;Yi Syllable Dduo +\uA143;Yi Syllable Dduop +\uA144;Yi Syllable Ddot +\uA145;Yi Syllable Ddox +\uA146;Yi Syllable Ddo +\uA147;Yi Syllable Ddop +\uA148;Yi Syllable Ddex +\uA149;Yi Syllable Dde +\uA14A;Yi Syllable Ddep +\uA14B;Yi Syllable Ddut +\uA14C;Yi Syllable Ddux +\uA14D;Yi Syllable Ddu +\uA14E;Yi Syllable Ddup +\uA14F;Yi Syllable Ddurx +\uA150;Yi Syllable Ddur +\uA151;Yi Syllable Ndit +\uA152;Yi Syllable Ndix +\uA153;Yi Syllable Ndi +\uA154;Yi Syllable Ndip +\uA155;Yi Syllable Ndiex +\uA156;Yi Syllable Ndie +\uA157;Yi Syllable Ndat +\uA158;Yi Syllable Ndax +\uA159;Yi Syllable Nda +\uA15A;Yi Syllable Ndap +\uA15B;Yi Syllable Ndot +\uA15C;Yi Syllable Ndox +\uA15D;Yi Syllable Ndo +\uA15E;Yi Syllable Ndop +\uA15F;Yi Syllable Ndex +\uA160;Yi Syllable Nde +\uA161;Yi Syllable Ndep +\uA162;Yi Syllable Ndut +\uA163;Yi Syllable Ndux +\uA164;Yi Syllable Ndu +\uA165;Yi Syllable Ndup +\uA166;Yi Syllable Ndurx +\uA167;Yi Syllable Ndur +\uA168;Yi Syllable Hnit +\uA169;Yi Syllable Hnix +\uA16A;Yi Syllable Hni +\uA16B;Yi Syllable Hnip +\uA16C;Yi Syllable Hniet +\uA16D;Yi Syllable Hniex +\uA16E;Yi Syllable Hnie +\uA16F;Yi Syllable Hniep +\uA170;Yi Syllable Hnat +\uA171;Yi Syllable Hnax +\uA172;Yi Syllable Hna +\uA173;Yi Syllable Hnap +\uA174;Yi Syllable Hnuox +\uA175;Yi Syllable Hnuo +\uA176;Yi Syllable Hnot +\uA177;Yi Syllable Hnox +\uA178;Yi Syllable Hnop +\uA179;Yi Syllable Hnex +\uA17A;Yi Syllable Hne +\uA17B;Yi Syllable Hnep +\uA17C;Yi Syllable Hnut +\uA17D;Yi Syllable Nit +\uA17E;Yi Syllable Nix +\uA17F;Yi Syllable Ni +\uA180;Yi Syllable Nip +\uA181;Yi Syllable Niex +\uA182;Yi Syllable Nie +\uA183;Yi Syllable Niep +\uA184;Yi Syllable Nax +\uA185;Yi Syllable Na +\uA186;Yi Syllable Nap +\uA187;Yi Syllable Nuox +\uA188;Yi Syllable Nuo +\uA189;Yi Syllable Nuop +\uA18A;Yi Syllable Not +\uA18B;Yi Syllable Nox +\uA18C;Yi Syllable No +\uA18D;Yi Syllable Nop +\uA18E;Yi Syllable Nex +\uA18F;Yi Syllable Ne +\uA190;Yi Syllable Nep +\uA191;Yi Syllable Nut +\uA192;Yi Syllable Nux +\uA193;Yi Syllable Nu +\uA194;Yi Syllable Nup +\uA195;Yi Syllable Nurx +\uA196;Yi Syllable Nur +\uA197;Yi Syllable Hlit +\uA198;Yi Syllable Hlix +\uA199;Yi Syllable Hli +\uA19A;Yi Syllable Hlip +\uA19B;Yi Syllable Hliex +\uA19C;Yi Syllable Hlie +\uA19D;Yi Syllable Hliep +\uA19E;Yi Syllable Hlat +\uA19F;Yi Syllable Hlax +\uA1A0;Yi Syllable Hla +\uA1A1;Yi Syllable Hlap +\uA1A2;Yi Syllable Hluox +\uA1A3;Yi Syllable Hluo +\uA1A4;Yi Syllable Hluop +\uA1A5;Yi Syllable Hlox +\uA1A6;Yi Syllable Hlo +\uA1A7;Yi Syllable Hlop +\uA1A8;Yi Syllable Hlex +\uA1A9;Yi Syllable Hle +\uA1AA;Yi Syllable Hlep +\uA1AB;Yi Syllable Hlut +\uA1AC;Yi Syllable Hlux +\uA1AD;Yi Syllable Hlu +\uA1AE;Yi Syllable Hlup +\uA1AF;Yi Syllable Hlurx +\uA1B0;Yi Syllable Hlur +\uA1B1;Yi Syllable Hlyt +\uA1B2;Yi Syllable Hlyx +\uA1B3;Yi Syllable Hly +\uA1B4;Yi Syllable Hlyp +\uA1B5;Yi Syllable Hlyrx +\uA1B6;Yi Syllable Hlyr +\uA1B7;Yi Syllable Lit +\uA1B8;Yi Syllable Lix +\uA1B9;Yi Syllable Li +\uA1BA;Yi Syllable Lip +\uA1BB;Yi Syllable Liet +\uA1BC;Yi Syllable Liex +\uA1BD;Yi Syllable Lie +\uA1BE;Yi Syllable Liep +\uA1BF;Yi Syllable Lat +\uA1C0;Yi Syllable Lax +\uA1C1;Yi Syllable La +\uA1C2;Yi Syllable Lap +\uA1C3;Yi Syllable Luot +\uA1C4;Yi Syllable Luox +\uA1C5;Yi Syllable Luo +\uA1C6;Yi Syllable Luop +\uA1C7;Yi Syllable Lot +\uA1C8;Yi Syllable Lox +\uA1C9;Yi Syllable Lo +\uA1CA;Yi Syllable Lop +\uA1CB;Yi Syllable Lex +\uA1CC;Yi Syllable Le +\uA1CD;Yi Syllable Lep +\uA1CE;Yi Syllable Lut +\uA1CF;Yi Syllable Lux +\uA1D0;Yi Syllable Lu +\uA1D1;Yi Syllable Lup +\uA1D2;Yi Syllable Lurx +\uA1D3;Yi Syllable Lur +\uA1D4;Yi Syllable Lyt +\uA1D5;Yi Syllable Lyx +\uA1D6;Yi Syllable Ly +\uA1D7;Yi Syllable Lyp +\uA1D8;Yi Syllable Lyrx +\uA1D9;Yi Syllable Lyr +\uA1DA;Yi Syllable Git +\uA1DB;Yi Syllable Gix +\uA1DC;Yi Syllable Gi +\uA1DD;Yi Syllable Gip +\uA1DE;Yi Syllable Giet +\uA1DF;Yi Syllable Giex +\uA1E0;Yi Syllable Gie +\uA1E1;Yi Syllable Giep +\uA1E2;Yi Syllable Gat +\uA1E3;Yi Syllable Gax +\uA1E4;Yi Syllable Ga +\uA1E5;Yi Syllable Gap +\uA1E6;Yi Syllable Guot +\uA1E7;Yi Syllable Guox +\uA1E8;Yi Syllable Guo +\uA1E9;Yi Syllable Guop +\uA1EA;Yi Syllable Got +\uA1EB;Yi Syllable Gox +\uA1EC;Yi Syllable Go +\uA1ED;Yi Syllable Gop +\uA1EE;Yi Syllable Get +\uA1EF;Yi Syllable Gex +\uA1F0;Yi Syllable Ge +\uA1F1;Yi Syllable Gep +\uA1F2;Yi Syllable Gut +\uA1F3;Yi Syllable Gux +\uA1F4;Yi Syllable Gu +\uA1F5;Yi Syllable Gup +\uA1F6;Yi Syllable Gurx +\uA1F7;Yi Syllable Gur +\uA1F8;Yi Syllable Kit +\uA1F9;Yi Syllable Kix +\uA1FA;Yi Syllable Ki +\uA1FB;Yi Syllable Kip +\uA1FC;Yi Syllable Kiex +\uA1FD;Yi Syllable Kie +\uA1FE;Yi Syllable Kiep +\uA1FF;Yi Syllable Kat +\uA200;Yi Syllable Kax +\uA201;Yi Syllable Ka +\uA202;Yi Syllable Kap +\uA203;Yi Syllable Kuox +\uA204;Yi Syllable Kuo +\uA205;Yi Syllable Kuop +\uA206;Yi Syllable Kot +\uA207;Yi Syllable Kox +\uA208;Yi Syllable Ko +\uA209;Yi Syllable Kop +\uA20A;Yi Syllable Ket +\uA20B;Yi Syllable Kex +\uA20C;Yi Syllable Ke +\uA20D;Yi Syllable Kep +\uA20E;Yi Syllable Kut +\uA20F;Yi Syllable Kux +\uA210;Yi Syllable Ku +\uA211;Yi Syllable Kup +\uA212;Yi Syllable Kurx +\uA213;Yi Syllable Kur +\uA214;Yi Syllable Ggit +\uA215;Yi Syllable Ggix +\uA216;Yi Syllable Ggi +\uA217;Yi Syllable Ggiex +\uA218;Yi Syllable Ggie +\uA219;Yi Syllable Ggiep +\uA21A;Yi Syllable Ggat +\uA21B;Yi Syllable Ggax +\uA21C;Yi Syllable Gga +\uA21D;Yi Syllable Ggap +\uA21E;Yi Syllable Gguot +\uA21F;Yi Syllable Gguox +\uA220;Yi Syllable Gguo +\uA221;Yi Syllable Gguop +\uA222;Yi Syllable Ggot +\uA223;Yi Syllable Ggox +\uA224;Yi Syllable Ggo +\uA225;Yi Syllable Ggop +\uA226;Yi Syllable Gget +\uA227;Yi Syllable Ggex +\uA228;Yi Syllable Gge +\uA229;Yi Syllable Ggep +\uA22A;Yi Syllable Ggut +\uA22B;Yi Syllable Ggux +\uA22C;Yi Syllable Ggu +\uA22D;Yi Syllable Ggup +\uA22E;Yi Syllable Ggurx +\uA22F;Yi Syllable Ggur +\uA230;Yi Syllable Mgiex +\uA231;Yi Syllable Mgie +\uA232;Yi Syllable Mgat +\uA233;Yi Syllable Mgax +\uA234;Yi Syllable Mga +\uA235;Yi Syllable Mgap +\uA236;Yi Syllable Mguox +\uA237;Yi Syllable Mguo +\uA238;Yi Syllable Mguop +\uA239;Yi Syllable Mgot +\uA23A;Yi Syllable Mgox +\uA23B;Yi Syllable Mgo +\uA23C;Yi Syllable Mgop +\uA23D;Yi Syllable Mgex +\uA23E;Yi Syllable Mge +\uA23F;Yi Syllable Mgep +\uA240;Yi Syllable Mgut +\uA241;Yi Syllable Mgux +\uA242;Yi Syllable Mgu +\uA243;Yi Syllable Mgup +\uA244;Yi Syllable Mgurx +\uA245;Yi Syllable Mgur +\uA246;Yi Syllable Hxit +\uA247;Yi Syllable Hxix +\uA248;Yi Syllable Hxi +\uA249;Yi Syllable Hxip +\uA24A;Yi Syllable Hxiet +\uA24B;Yi Syllable Hxiex +\uA24C;Yi Syllable Hxie +\uA24D;Yi Syllable Hxiep +\uA24E;Yi Syllable Hxat +\uA24F;Yi Syllable Hxax +\uA250;Yi Syllable Hxa +\uA251;Yi Syllable Hxap +\uA252;Yi Syllable Hxuot +\uA253;Yi Syllable Hxuox +\uA254;Yi Syllable Hxuo +\uA255;Yi Syllable Hxuop +\uA256;Yi Syllable Hxot +\uA257;Yi Syllable Hxox +\uA258;Yi Syllable Hxo +\uA259;Yi Syllable Hxop +\uA25A;Yi Syllable Hxex +\uA25B;Yi Syllable Hxe +\uA25C;Yi Syllable Hxep +\uA25D;Yi Syllable Ngiex +\uA25E;Yi Syllable Ngie +\uA25F;Yi Syllable Ngiep +\uA260;Yi Syllable Ngat +\uA261;Yi Syllable Ngax +\uA262;Yi Syllable Nga +\uA263;Yi Syllable Ngap +\uA264;Yi Syllable Nguot +\uA265;Yi Syllable Nguox +\uA266;Yi Syllable Nguo +\uA267;Yi Syllable Ngot +\uA268;Yi Syllable Ngox +\uA269;Yi Syllable Ngo +\uA26A;Yi Syllable Ngop +\uA26B;Yi Syllable Ngex +\uA26C;Yi Syllable Nge +\uA26D;Yi Syllable Ngep +\uA26E;Yi Syllable Hit +\uA26F;Yi Syllable Hiex +\uA270;Yi Syllable Hie +\uA271;Yi Syllable Hat +\uA272;Yi Syllable Hax +\uA273;Yi Syllable Ha +\uA274;Yi Syllable Hap +\uA275;Yi Syllable Huot +\uA276;Yi Syllable Huox +\uA277;Yi Syllable Huo +\uA278;Yi Syllable Huop +\uA279;Yi Syllable Hot +\uA27A;Yi Syllable Hox +\uA27B;Yi Syllable Ho +\uA27C;Yi Syllable Hop +\uA27D;Yi Syllable Hex +\uA27E;Yi Syllable He +\uA27F;Yi Syllable Hep +\uA280;Yi Syllable Wat +\uA281;Yi Syllable Wax +\uA282;Yi Syllable Wa +\uA283;Yi Syllable Wap +\uA284;Yi Syllable Wuox +\uA285;Yi Syllable Wuo +\uA286;Yi Syllable Wuop +\uA287;Yi Syllable Wox +\uA288;Yi Syllable Wo +\uA289;Yi Syllable Wop +\uA28A;Yi Syllable Wex +\uA28B;Yi Syllable We +\uA28C;Yi Syllable Wep +\uA28D;Yi Syllable Zit +\uA28E;Yi Syllable Zix +\uA28F;Yi Syllable Zi +\uA290;Yi Syllable Zip +\uA291;Yi Syllable Ziex +\uA292;Yi Syllable Zie +\uA293;Yi Syllable Ziep +\uA294;Yi Syllable Zat +\uA295;Yi Syllable Zax +\uA296;Yi Syllable Za +\uA297;Yi Syllable Zap +\uA298;Yi Syllable Zuox +\uA299;Yi Syllable Zuo +\uA29A;Yi Syllable Zuop +\uA29B;Yi Syllable Zot +\uA29C;Yi Syllable Zox +\uA29D;Yi Syllable Zo +\uA29E;Yi Syllable Zop +\uA29F;Yi Syllable Zex +\uA2A0;Yi Syllable Ze +\uA2A1;Yi Syllable Zep +\uA2A2;Yi Syllable Zut +\uA2A3;Yi Syllable Zux +\uA2A4;Yi Syllable Zu +\uA2A5;Yi Syllable Zup +\uA2A6;Yi Syllable Zurx +\uA2A7;Yi Syllable Zur +\uA2A8;Yi Syllable Zyt +\uA2A9;Yi Syllable Zyx +\uA2AA;Yi Syllable Zy +\uA2AB;Yi Syllable Zyp +\uA2AC;Yi Syllable Zyrx +\uA2AD;Yi Syllable Zyr +\uA2AE;Yi Syllable Cit +\uA2AF;Yi Syllable Cix +\uA2B0;Yi Syllable Ci +\uA2B1;Yi Syllable Cip +\uA2B2;Yi Syllable Ciet +\uA2B3;Yi Syllable Ciex +\uA2B4;Yi Syllable Cie +\uA2B5;Yi Syllable Ciep +\uA2B6;Yi Syllable Cat +\uA2B7;Yi Syllable Cax +\uA2B8;Yi Syllable Ca +\uA2B9;Yi Syllable Cap +\uA2BA;Yi Syllable Cuox +\uA2BB;Yi Syllable Cuo +\uA2BC;Yi Syllable Cuop +\uA2BD;Yi Syllable Cot +\uA2BE;Yi Syllable Cox +\uA2BF;Yi Syllable Co +\uA2C0;Yi Syllable Cop +\uA2C1;Yi Syllable Cex +\uA2C2;Yi Syllable Ce +\uA2C3;Yi Syllable Cep +\uA2C4;Yi Syllable Cut +\uA2C5;Yi Syllable Cux +\uA2C6;Yi Syllable Cu +\uA2C7;Yi Syllable Cup +\uA2C8;Yi Syllable Curx +\uA2C9;Yi Syllable Cur +\uA2CA;Yi Syllable Cyt +\uA2CB;Yi Syllable Cyx +\uA2CC;Yi Syllable Cy +\uA2CD;Yi Syllable Cyp +\uA2CE;Yi Syllable Cyrx +\uA2CF;Yi Syllable Cyr +\uA2D0;Yi Syllable Zzit +\uA2D1;Yi Syllable Zzix +\uA2D2;Yi Syllable Zzi +\uA2D3;Yi Syllable Zzip +\uA2D4;Yi Syllable Zziet +\uA2D5;Yi Syllable Zziex +\uA2D6;Yi Syllable Zzie +\uA2D7;Yi Syllable Zziep +\uA2D8;Yi Syllable Zzat +\uA2D9;Yi Syllable Zzax +\uA2DA;Yi Syllable Zza +\uA2DB;Yi Syllable Zzap +\uA2DC;Yi Syllable Zzox +\uA2DD;Yi Syllable Zzo +\uA2DE;Yi Syllable Zzop +\uA2DF;Yi Syllable Zzex +\uA2E0;Yi Syllable Zze +\uA2E1;Yi Syllable Zzep +\uA2E2;Yi Syllable Zzux +\uA2E3;Yi Syllable Zzu +\uA2E4;Yi Syllable Zzup +\uA2E5;Yi Syllable Zzurx +\uA2E6;Yi Syllable Zzur +\uA2E7;Yi Syllable Zzyt +\uA2E8;Yi Syllable Zzyx +\uA2E9;Yi Syllable Zzy +\uA2EA;Yi Syllable Zzyp +\uA2EB;Yi Syllable Zzyrx +\uA2EC;Yi Syllable Zzyr +\uA2ED;Yi Syllable Nzit +\uA2EE;Yi Syllable Nzix +\uA2EF;Yi Syllable Nzi +\uA2F0;Yi Syllable Nzip +\uA2F1;Yi Syllable Nziex +\uA2F2;Yi Syllable Nzie +\uA2F3;Yi Syllable Nziep +\uA2F4;Yi Syllable Nzat +\uA2F5;Yi Syllable Nzax +\uA2F6;Yi Syllable Nza +\uA2F7;Yi Syllable Nzap +\uA2F8;Yi Syllable Nzuox +\uA2F9;Yi Syllable Nzuo +\uA2FA;Yi Syllable Nzox +\uA2FB;Yi Syllable Nzop +\uA2FC;Yi Syllable Nzex +\uA2FD;Yi Syllable Nze +\uA2FE;Yi Syllable Nzux +\uA2FF;Yi Syllable Nzu +\uA300;Yi Syllable Nzup +\uA301;Yi Syllable Nzurx +\uA302;Yi Syllable Nzur +\uA303;Yi Syllable Nzyt +\uA304;Yi Syllable Nzyx +\uA305;Yi Syllable Nzy +\uA306;Yi Syllable Nzyp +\uA307;Yi Syllable Nzyrx +\uA308;Yi Syllable Nzyr +\uA309;Yi Syllable Sit +\uA30A;Yi Syllable Six +\uA30B;Yi Syllable Si +\uA30C;Yi Syllable Sip +\uA30D;Yi Syllable Siex +\uA30E;Yi Syllable Sie +\uA30F;Yi Syllable Siep +\uA310;Yi Syllable Sat +\uA311;Yi Syllable Sax +\uA312;Yi Syllable Sa +\uA313;Yi Syllable Sap +\uA314;Yi Syllable Suox +\uA315;Yi Syllable Suo +\uA316;Yi Syllable Suop +\uA317;Yi Syllable Sot +\uA318;Yi Syllable Sox +\uA319;Yi Syllable So +\uA31A;Yi Syllable Sop +\uA31B;Yi Syllable Sex +\uA31C;Yi Syllable Se +\uA31D;Yi Syllable Sep +\uA31E;Yi Syllable Sut +\uA31F;Yi Syllable Sux +\uA320;Yi Syllable Su +\uA321;Yi Syllable Sup +\uA322;Yi Syllable Surx +\uA323;Yi Syllable Sur +\uA324;Yi Syllable Syt +\uA325;Yi Syllable Syx +\uA326;Yi Syllable Sy +\uA327;Yi Syllable Syp +\uA328;Yi Syllable Syrx +\uA329;Yi Syllable Syr +\uA32A;Yi Syllable Ssit +\uA32B;Yi Syllable Ssix +\uA32C;Yi Syllable Ssi +\uA32D;Yi Syllable Ssip +\uA32E;Yi Syllable Ssiex +\uA32F;Yi Syllable Ssie +\uA330;Yi Syllable Ssiep +\uA331;Yi Syllable Ssat +\uA332;Yi Syllable Ssax +\uA333;Yi Syllable Ssa +\uA334;Yi Syllable Ssap +\uA335;Yi Syllable Ssot +\uA336;Yi Syllable Ssox +\uA337;Yi Syllable Sso +\uA338;Yi Syllable Ssop +\uA339;Yi Syllable Ssex +\uA33A;Yi Syllable Sse +\uA33B;Yi Syllable Ssep +\uA33C;Yi Syllable Ssut +\uA33D;Yi Syllable Ssux +\uA33E;Yi Syllable Ssu +\uA33F;Yi Syllable Ssup +\uA340;Yi Syllable Ssyt +\uA341;Yi Syllable Ssyx +\uA342;Yi Syllable Ssy +\uA343;Yi Syllable Ssyp +\uA344;Yi Syllable Ssyrx +\uA345;Yi Syllable Ssyr +\uA346;Yi Syllable Zhat +\uA347;Yi Syllable Zhax +\uA348;Yi Syllable Zha +\uA349;Yi Syllable Zhap +\uA34A;Yi Syllable Zhuox +\uA34B;Yi Syllable Zhuo +\uA34C;Yi Syllable Zhuop +\uA34D;Yi Syllable Zhot +\uA34E;Yi Syllable Zhox +\uA34F;Yi Syllable Zho +\uA350;Yi Syllable Zhop +\uA351;Yi Syllable Zhet +\uA352;Yi Syllable Zhex +\uA353;Yi Syllable Zhe +\uA354;Yi Syllable Zhep +\uA355;Yi Syllable Zhut +\uA356;Yi Syllable Zhux +\uA357;Yi Syllable Zhu +\uA358;Yi Syllable Zhup +\uA359;Yi Syllable Zhurx +\uA35A;Yi Syllable Zhur +\uA35B;Yi Syllable Zhyt +\uA35C;Yi Syllable Zhyx +\uA35D;Yi Syllable Zhy +\uA35E;Yi Syllable Zhyp +\uA35F;Yi Syllable Zhyrx +\uA360;Yi Syllable Zhyr +\uA361;Yi Syllable Chat +\uA362;Yi Syllable Chax +\uA363;Yi Syllable Cha +\uA364;Yi Syllable Chap +\uA365;Yi Syllable Chuot +\uA366;Yi Syllable Chuox +\uA367;Yi Syllable Chuo +\uA368;Yi Syllable Chuop +\uA369;Yi Syllable Chot +\uA36A;Yi Syllable Chox +\uA36B;Yi Syllable Cho +\uA36C;Yi Syllable Chop +\uA36D;Yi Syllable Chet +\uA36E;Yi Syllable Chex +\uA36F;Yi Syllable Che +\uA370;Yi Syllable Chep +\uA371;Yi Syllable Chux +\uA372;Yi Syllable Chu +\uA373;Yi Syllable Chup +\uA374;Yi Syllable Churx +\uA375;Yi Syllable Chur +\uA376;Yi Syllable Chyt +\uA377;Yi Syllable Chyx +\uA378;Yi Syllable Chy +\uA379;Yi Syllable Chyp +\uA37A;Yi Syllable Chyrx +\uA37B;Yi Syllable Chyr +\uA37C;Yi Syllable Rrax +\uA37D;Yi Syllable Rra +\uA37E;Yi Syllable Rruox +\uA37F;Yi Syllable Rruo +\uA380;Yi Syllable Rrot +\uA381;Yi Syllable Rrox +\uA382;Yi Syllable Rro +\uA383;Yi Syllable Rrop +\uA384;Yi Syllable Rret +\uA385;Yi Syllable Rrex +\uA386;Yi Syllable Rre +\uA387;Yi Syllable Rrep +\uA388;Yi Syllable Rrut +\uA389;Yi Syllable Rrux +\uA38A;Yi Syllable Rru +\uA38B;Yi Syllable Rrup +\uA38C;Yi Syllable Rrurx +\uA38D;Yi Syllable Rrur +\uA38E;Yi Syllable Rryt +\uA38F;Yi Syllable Rryx +\uA390;Yi Syllable Rry +\uA391;Yi Syllable Rryp +\uA392;Yi Syllable Rryrx +\uA393;Yi Syllable Rryr +\uA394;Yi Syllable Nrat +\uA395;Yi Syllable Nrax +\uA396;Yi Syllable Nra +\uA397;Yi Syllable Nrap +\uA398;Yi Syllable Nrox +\uA399;Yi Syllable Nro +\uA39A;Yi Syllable Nrop +\uA39B;Yi Syllable Nret +\uA39C;Yi Syllable Nrex +\uA39D;Yi Syllable Nre +\uA39E;Yi Syllable Nrep +\uA39F;Yi Syllable Nrut +\uA3A0;Yi Syllable Nrux +\uA3A1;Yi Syllable Nru +\uA3A2;Yi Syllable Nrup +\uA3A3;Yi Syllable Nrurx +\uA3A4;Yi Syllable Nrur +\uA3A5;Yi Syllable Nryt +\uA3A6;Yi Syllable Nryx +\uA3A7;Yi Syllable Nry +\uA3A8;Yi Syllable Nryp +\uA3A9;Yi Syllable Nryrx +\uA3AA;Yi Syllable Nryr +\uA3AB;Yi Syllable Shat +\uA3AC;Yi Syllable Shax +\uA3AD;Yi Syllable Sha +\uA3AE;Yi Syllable Shap +\uA3AF;Yi Syllable Shuox +\uA3B0;Yi Syllable Shuo +\uA3B1;Yi Syllable Shuop +\uA3B2;Yi Syllable Shot +\uA3B3;Yi Syllable Shox +\uA3B4;Yi Syllable Sho +\uA3B5;Yi Syllable Shop +\uA3B6;Yi Syllable Shet +\uA3B7;Yi Syllable Shex +\uA3B8;Yi Syllable She +\uA3B9;Yi Syllable Shep +\uA3BA;Yi Syllable Shut +\uA3BB;Yi Syllable Shux +\uA3BC;Yi Syllable Shu +\uA3BD;Yi Syllable Shup +\uA3BE;Yi Syllable Shurx +\uA3BF;Yi Syllable Shur +\uA3C0;Yi Syllable Shyt +\uA3C1;Yi Syllable Shyx +\uA3C2;Yi Syllable Shy +\uA3C3;Yi Syllable Shyp +\uA3C4;Yi Syllable Shyrx +\uA3C5;Yi Syllable Shyr +\uA3C6;Yi Syllable Rat +\uA3C7;Yi Syllable Rax +\uA3C8;Yi Syllable Ra +\uA3C9;Yi Syllable Rap +\uA3CA;Yi Syllable Ruox +\uA3CB;Yi Syllable Ruo +\uA3CC;Yi Syllable Ruop +\uA3CD;Yi Syllable Rot +\uA3CE;Yi Syllable Rox +\uA3CF;Yi Syllable Ro +\uA3D0;Yi Syllable Rop +\uA3D1;Yi Syllable Rex +\uA3D2;Yi Syllable Re +\uA3D3;Yi Syllable Rep +\uA3D4;Yi Syllable Rut +\uA3D5;Yi Syllable Rux +\uA3D6;Yi Syllable Ru +\uA3D7;Yi Syllable Rup +\uA3D8;Yi Syllable Rurx +\uA3D9;Yi Syllable Rur +\uA3DA;Yi Syllable Ryt +\uA3DB;Yi Syllable Ryx +\uA3DC;Yi Syllable Ry +\uA3DD;Yi Syllable Ryp +\uA3DE;Yi Syllable Ryrx +\uA3DF;Yi Syllable Ryr +\uA3E0;Yi Syllable Jit +\uA3E1;Yi Syllable Jix +\uA3E2;Yi Syllable Ji +\uA3E3;Yi Syllable Jip +\uA3E4;Yi Syllable Jiet +\uA3E5;Yi Syllable Jiex +\uA3E6;Yi Syllable Jie +\uA3E7;Yi Syllable Jiep +\uA3E8;Yi Syllable Juot +\uA3E9;Yi Syllable Juox +\uA3EA;Yi Syllable Juo +\uA3EB;Yi Syllable Juop +\uA3EC;Yi Syllable Jot +\uA3ED;Yi Syllable Jox +\uA3EE;Yi Syllable Jo +\uA3EF;Yi Syllable Jop +\uA3F0;Yi Syllable Jut +\uA3F1;Yi Syllable Jux +\uA3F2;Yi Syllable Ju +\uA3F3;Yi Syllable Jup +\uA3F4;Yi Syllable Jurx +\uA3F5;Yi Syllable Jur +\uA3F6;Yi Syllable Jyt +\uA3F7;Yi Syllable Jyx +\uA3F8;Yi Syllable Jy +\uA3F9;Yi Syllable Jyp +\uA3FA;Yi Syllable Jyrx +\uA3FB;Yi Syllable Jyr +\uA3FC;Yi Syllable Qit +\uA3FD;Yi Syllable Qix +\uA3FE;Yi Syllable Qi +\uA3FF;Yi Syllable Qip +\uA400;Yi Syllable Qiet +\uA401;Yi Syllable Qiex +\uA402;Yi Syllable Qie +\uA403;Yi Syllable Qiep +\uA404;Yi Syllable Quot +\uA405;Yi Syllable Quox +\uA406;Yi Syllable Quo +\uA407;Yi Syllable Quop +\uA408;Yi Syllable Qot +\uA409;Yi Syllable Qox +\uA40A;Yi Syllable Qo +\uA40B;Yi Syllable Qop +\uA40C;Yi Syllable Qut +\uA40D;Yi Syllable Qux +\uA40E;Yi Syllable Qu +\uA40F;Yi Syllable Qup +\uA410;Yi Syllable Qurx +\uA411;Yi Syllable Qur +\uA412;Yi Syllable Qyt +\uA413;Yi Syllable Qyx +\uA414;Yi Syllable Qy +\uA415;Yi Syllable Qyp +\uA416;Yi Syllable Qyrx +\uA417;Yi Syllable Qyr +\uA418;Yi Syllable Jjit +\uA419;Yi Syllable Jjix +\uA41A;Yi Syllable Jji +\uA41B;Yi Syllable Jjip +\uA41C;Yi Syllable Jjiet +\uA41D;Yi Syllable Jjiex +\uA41E;Yi Syllable Jjie +\uA41F;Yi Syllable Jjiep +\uA420;Yi Syllable Jjuox +\uA421;Yi Syllable Jjuo +\uA422;Yi Syllable Jjuop +\uA423;Yi Syllable Jjot +\uA424;Yi Syllable Jjox +\uA425;Yi Syllable Jjo +\uA426;Yi Syllable Jjop +\uA427;Yi Syllable Jjut +\uA428;Yi Syllable Jjux +\uA429;Yi Syllable Jju +\uA42A;Yi Syllable Jjup +\uA42B;Yi Syllable Jjurx +\uA42C;Yi Syllable Jjur +\uA42D;Yi Syllable Jjyt +\uA42E;Yi Syllable Jjyx +\uA42F;Yi Syllable Jjy +\uA430;Yi Syllable Jjyp +\uA431;Yi Syllable Njit +\uA432;Yi Syllable Njix +\uA433;Yi Syllable Nji +\uA434;Yi Syllable Njip +\uA435;Yi Syllable Njiet +\uA436;Yi Syllable Njiex +\uA437;Yi Syllable Njie +\uA438;Yi Syllable Njiep +\uA439;Yi Syllable Njuox +\uA43A;Yi Syllable Njuo +\uA43B;Yi Syllable Njot +\uA43C;Yi Syllable Njox +\uA43D;Yi Syllable Njo +\uA43E;Yi Syllable Njop +\uA43F;Yi Syllable Njux +\uA440;Yi Syllable Nju +\uA441;Yi Syllable Njup +\uA442;Yi Syllable Njurx +\uA443;Yi Syllable Njur +\uA444;Yi Syllable Njyt +\uA445;Yi Syllable Njyx +\uA446;Yi Syllable Njy +\uA447;Yi Syllable Njyp +\uA448;Yi Syllable Njyrx +\uA449;Yi Syllable Njyr +\uA44A;Yi Syllable Nyit +\uA44B;Yi Syllable Nyix +\uA44C;Yi Syllable Nyi +\uA44D;Yi Syllable Nyip +\uA44E;Yi Syllable Nyiet +\uA44F;Yi Syllable Nyiex +\uA450;Yi Syllable Nyie +\uA451;Yi Syllable Nyiep +\uA452;Yi Syllable Nyuox +\uA453;Yi Syllable Nyuo +\uA454;Yi Syllable Nyuop +\uA455;Yi Syllable Nyot +\uA456;Yi Syllable Nyox +\uA457;Yi Syllable Nyo +\uA458;Yi Syllable Nyop +\uA459;Yi Syllable Nyut +\uA45A;Yi Syllable Nyux +\uA45B;Yi Syllable Nyu +\uA45C;Yi Syllable Nyup +\uA45D;Yi Syllable Xit +\uA45E;Yi Syllable Xix +\uA45F;Yi Syllable Xi +\uA460;Yi Syllable Xip +\uA461;Yi Syllable Xiet +\uA462;Yi Syllable Xiex +\uA463;Yi Syllable Xie +\uA464;Yi Syllable Xiep +\uA465;Yi Syllable Xuox +\uA466;Yi Syllable Xuo +\uA467;Yi Syllable Xot +\uA468;Yi Syllable Xox +\uA469;Yi Syllable Xo +\uA46A;Yi Syllable Xop +\uA46B;Yi Syllable Xyt +\uA46C;Yi Syllable Xyx +\uA46D;Yi Syllable Xy +\uA46E;Yi Syllable Xyp +\uA46F;Yi Syllable Xyrx +\uA470;Yi Syllable Xyr +\uA471;Yi Syllable Yit +\uA472;Yi Syllable Yix +\uA473;Yi Syllable Yi +\uA474;Yi Syllable Yip +\uA475;Yi Syllable Yiet +\uA476;Yi Syllable Yiex +\uA477;Yi Syllable Yie +\uA478;Yi Syllable Yiep +\uA479;Yi Syllable Yuot +\uA47A;Yi Syllable Yuox +\uA47B;Yi Syllable Yuo +\uA47C;Yi Syllable Yuop +\uA47D;Yi Syllable Yot +\uA47E;Yi Syllable Yox +\uA47F;Yi Syllable Yo +\uA480;Yi Syllable Yop +\uA481;Yi Syllable Yut +\uA482;Yi Syllable Yux +\uA483;Yi Syllable Yu +\uA484;Yi Syllable Yup +\uA485;Yi Syllable Yurx +\uA486;Yi Syllable Yur +\uA487;Yi Syllable Yyt +\uA488;Yi Syllable Yyx +\uA489;Yi Syllable Yy +\uA48A;Yi Syllable Yyp +\uA48B;Yi Syllable Yyrx +\uA48C;Yi Syllable Yyr +\uA490;Yi Radical Qot +\uA491;Yi Radical Li +\uA492;Yi Radical Kit +\uA493;Yi Radical Nyip +\uA494;Yi Radical Cyp +\uA495;Yi Radical Ssi +\uA496;Yi Radical Ggop +\uA497;Yi Radical Gep +\uA498;Yi Radical Mi +\uA499;Yi Radical Hxit +\uA49A;Yi Radical Lyr +\uA49B;Yi Radical Bbut +\uA49C;Yi Radical Mop +\uA49D;Yi Radical Yo +\uA49E;Yi Radical Put +\uA49F;Yi Radical Hxuo +\uA4A0;Yi Radical Tat +\uA4A1;Yi Radical Ga +\uA4A2;Yi Radical Zup +\uA4A3;Yi Radical Cyt +\uA4A4;Yi Radical Ddur +\uA4A5;Yi Radical Bur +\uA4A6;Yi Radical Gguo +\uA4A7;Yi Radical Nyop +\uA4A8;Yi Radical Tu +\uA4A9;Yi Radical Op +\uA4AA;Yi Radical Jjut +\uA4AB;Yi Radical Zot +\uA4AC;Yi Radical Pyt +\uA4AD;Yi Radical Hmo +\uA4AE;Yi Radical Yit +\uA4AF;Yi Radical Vur +\uA4B0;Yi Radical Shy +\uA4B1;Yi Radical Vep +\uA4B2;Yi Radical Za +\uA4B3;Yi Radical Jo +\uA4B4;Yi Radical Nzup +\uA4B5;Yi Radical Jjy +\uA4B6;Yi Radical Got +\uA4B7;Yi Radical Jjie +\uA4B8;Yi Radical Wo +\uA4B9;Yi Radical Du +\uA4BA;Yi Radical Shur +\uA4BB;Yi Radical Lie +\uA4BC;Yi Radical Cy +\uA4BD;Yi Radical Cuop +\uA4BE;Yi Radical Cip +\uA4BF;Yi Radical Hxop +\uA4C0;Yi Radical Shat +\uA4C1;Yi Radical Zur +\uA4C2;Yi Radical Shop +\uA4C3;Yi Radical Che +\uA4C4;Yi Radical Zziet +\uA4C5;Yi Radical Nbie +\uA4C6;Yi Radical Ke +\uA4D0;Lisu Letter Ba +\uA4D1;Lisu Letter Pa +\uA4D2;Lisu Letter Pha +\uA4D3;Lisu Letter Da +\uA4D4;Lisu Letter Ta +\uA4D5;Lisu Letter Tha +\uA4D6;Lisu Letter Ga +\uA4D7;Lisu Letter Ka +\uA4D8;Lisu Letter Kha +\uA4D9;Lisu Letter Ja +\uA4DA;Lisu Letter Ca +\uA4DB;Lisu Letter Cha +\uA4DC;Lisu Letter Dza +\uA4DD;Lisu Letter Tsa +\uA4DE;Lisu Letter Tsha +\uA4DF;Lisu Letter Ma +\uA4E0;Lisu Letter Na +\uA4E1;Lisu Letter La +\uA4E2;Lisu Letter Sa +\uA4E3;Lisu Letter Zha +\uA4E4;Lisu Letter Za +\uA4E5;Lisu Letter Nga +\uA4E6;Lisu Letter Ha +\uA4E7;Lisu Letter Xa +\uA4E8;Lisu Letter Hha +\uA4E9;Lisu Letter Fa +\uA4EA;Lisu Letter Wa +\uA4EB;Lisu Letter Sha +\uA4EC;Lisu Letter Ya +\uA4ED;Lisu Letter Gha +\uA4EE;Lisu Letter A +\uA4EF;Lisu Letter Ae +\uA4F0;Lisu Letter E +\uA4F1;Lisu Letter Eu +\uA4F2;Lisu Letter I +\uA4F3;Lisu Letter O +\uA4F4;Lisu Letter U +\uA4F5;Lisu Letter Ue +\uA4F6;Lisu Letter Uh +\uA4F7;Lisu Letter Oe +\uA4F8;Lisu Letter Tone Mya Ti +\uA4F9;Lisu Letter Tone Na Po +\uA4FA;Lisu Letter Tone Mya Cya +\uA4FB;Lisu Letter Tone Mya Bo +\uA4FC;Lisu Letter Tone Mya Na +\uA4FD;Lisu Letter Tone Mya Jeu +\uA4FE;Lisu Punctuation Comma +\uA4FF;Lisu Punctuation Full Stop +\uA500;Vai Syllable Ee +\uA501;Vai Syllable Een +\uA502;Vai Syllable Hee +\uA503;Vai Syllable Wee +\uA504;Vai Syllable Ween +\uA505;Vai Syllable Pee +\uA506;Vai Syllable Bhee +\uA507;Vai Syllable Bee +\uA508;Vai Syllable Mbee +\uA509;Vai Syllable Kpee +\uA50A;Vai Syllable Mgbee +\uA50B;Vai Syllable Gbee +\uA50C;Vai Syllable Fee +\uA50D;Vai Syllable Vee +\uA50E;Vai Syllable Tee +\uA50F;Vai Syllable Thee +\uA510;Vai Syllable Dhee +\uA511;Vai Syllable Dhhee +\uA512;Vai Syllable Lee +\uA513;Vai Syllable Ree +\uA514;Vai Syllable Dee +\uA515;Vai Syllable Ndee +\uA516;Vai Syllable See +\uA517;Vai Syllable Shee +\uA518;Vai Syllable Zee +\uA519;Vai Syllable Zhee +\uA51A;Vai Syllable Cee +\uA51B;Vai Syllable Jee +\uA51C;Vai Syllable Njee +\uA51D;Vai Syllable Yee +\uA51E;Vai Syllable Kee +\uA51F;Vai Syllable Nggee +\uA520;Vai Syllable Gee +\uA521;Vai Syllable Mee +\uA522;Vai Syllable Nee +\uA523;Vai Syllable Nyee +\uA524;Vai Syllable I +\uA525;Vai Syllable In +\uA526;Vai Syllable Hi +\uA527;Vai Syllable Hin +\uA528;Vai Syllable Wi +\uA529;Vai Syllable Win +\uA52A;Vai Syllable Pi +\uA52B;Vai Syllable Bhi +\uA52C;Vai Syllable Bi +\uA52D;Vai Syllable Mbi +\uA52E;Vai Syllable Kpi +\uA52F;Vai Syllable Mgbi +\uA530;Vai Syllable Gbi +\uA531;Vai Syllable Fi +\uA532;Vai Syllable Vi +\uA533;Vai Syllable Ti +\uA534;Vai Syllable Thi +\uA535;Vai Syllable Dhi +\uA536;Vai Syllable Dhhi +\uA537;Vai Syllable Li +\uA538;Vai Syllable Ri +\uA539;Vai Syllable Di +\uA53A;Vai Syllable Ndi +\uA53B;Vai Syllable Si +\uA53C;Vai Syllable Shi +\uA53D;Vai Syllable Zi +\uA53E;Vai Syllable Zhi +\uA53F;Vai Syllable Ci +\uA540;Vai Syllable Ji +\uA541;Vai Syllable Nji +\uA542;Vai Syllable Yi +\uA543;Vai Syllable Ki +\uA544;Vai Syllable Nggi +\uA545;Vai Syllable Gi +\uA546;Vai Syllable Mi +\uA547;Vai Syllable Ni +\uA548;Vai Syllable Nyi +\uA549;Vai Syllable A +\uA54A;Vai Syllable An +\uA54B;Vai Syllable Ngan +\uA54C;Vai Syllable Ha +\uA54D;Vai Syllable Han +\uA54E;Vai Syllable Wa +\uA54F;Vai Syllable Wan +\uA550;Vai Syllable Pa +\uA551;Vai Syllable Bha +\uA552;Vai Syllable Ba +\uA553;Vai Syllable Mba +\uA554;Vai Syllable Kpa +\uA555;Vai Syllable Kpan +\uA556;Vai Syllable Mgba +\uA557;Vai Syllable Gba +\uA558;Vai Syllable Fa +\uA559;Vai Syllable Va +\uA55A;Vai Syllable Ta +\uA55B;Vai Syllable Tha +\uA55C;Vai Syllable Dha +\uA55D;Vai Syllable Dhha +\uA55E;Vai Syllable La +\uA55F;Vai Syllable Ra +\uA560;Vai Syllable Da +\uA561;Vai Syllable Nda +\uA562;Vai Syllable Sa +\uA563;Vai Syllable Sha +\uA564;Vai Syllable Za +\uA565;Vai Syllable Zha +\uA566;Vai Syllable Ca +\uA567;Vai Syllable Ja +\uA568;Vai Syllable Nja +\uA569;Vai Syllable Ya +\uA56A;Vai Syllable Ka +\uA56B;Vai Syllable Kan +\uA56C;Vai Syllable Ngga +\uA56D;Vai Syllable Ga +\uA56E;Vai Syllable Ma +\uA56F;Vai Syllable Na +\uA570;Vai Syllable Nya +\uA571;Vai Syllable Oo +\uA572;Vai Syllable Oon +\uA573;Vai Syllable Hoo +\uA574;Vai Syllable Woo +\uA575;Vai Syllable Woon +\uA576;Vai Syllable Poo +\uA577;Vai Syllable Bhoo +\uA578;Vai Syllable Boo +\uA579;Vai Syllable Mboo +\uA57A;Vai Syllable Kpoo +\uA57B;Vai Syllable Mgboo +\uA57C;Vai Syllable Gboo +\uA57D;Vai Syllable Foo +\uA57E;Vai Syllable Voo +\uA57F;Vai Syllable Too +\uA580;Vai Syllable Thoo +\uA581;Vai Syllable Dhoo +\uA582;Vai Syllable Dhhoo +\uA583;Vai Syllable Loo +\uA584;Vai Syllable Roo +\uA585;Vai Syllable Doo +\uA586;Vai Syllable Ndoo +\uA587;Vai Syllable Soo +\uA588;Vai Syllable Shoo +\uA589;Vai Syllable Zoo +\uA58A;Vai Syllable Zhoo +\uA58B;Vai Syllable Coo +\uA58C;Vai Syllable Joo +\uA58D;Vai Syllable Njoo +\uA58E;Vai Syllable Yoo +\uA58F;Vai Syllable Koo +\uA590;Vai Syllable Nggoo +\uA591;Vai Syllable Goo +\uA592;Vai Syllable Moo +\uA593;Vai Syllable Noo +\uA594;Vai Syllable Nyoo +\uA595;Vai Syllable U +\uA596;Vai Syllable Un +\uA597;Vai Syllable Hu +\uA598;Vai Syllable Hun +\uA599;Vai Syllable Wu +\uA59A;Vai Syllable Wun +\uA59B;Vai Syllable Pu +\uA59C;Vai Syllable Bhu +\uA59D;Vai Syllable Bu +\uA59E;Vai Syllable Mbu +\uA59F;Vai Syllable Kpu +\uA5A0;Vai Syllable Mgbu +\uA5A1;Vai Syllable Gbu +\uA5A2;Vai Syllable Fu +\uA5A3;Vai Syllable Vu +\uA5A4;Vai Syllable Tu +\uA5A5;Vai Syllable Thu +\uA5A6;Vai Syllable Dhu +\uA5A7;Vai Syllable Dhhu +\uA5A8;Vai Syllable Lu +\uA5A9;Vai Syllable Ru +\uA5AA;Vai Syllable Du +\uA5AB;Vai Syllable Ndu +\uA5AC;Vai Syllable Su +\uA5AD;Vai Syllable Shu +\uA5AE;Vai Syllable Zu +\uA5AF;Vai Syllable Zhu +\uA5B0;Vai Syllable Cu +\uA5B1;Vai Syllable Ju +\uA5B2;Vai Syllable Nju +\uA5B3;Vai Syllable Yu +\uA5B4;Vai Syllable Ku +\uA5B5;Vai Syllable Nggu +\uA5B6;Vai Syllable Gu +\uA5B7;Vai Syllable Mu +\uA5B8;Vai Syllable Nu +\uA5B9;Vai Syllable Nyu +\uA5BA;Vai Syllable O +\uA5BB;Vai Syllable On +\uA5BC;Vai Syllable Ngon +\uA5BD;Vai Syllable Ho +\uA5BE;Vai Syllable Hon +\uA5BF;Vai Syllable Wo +\uA5C0;Vai Syllable Won +\uA5C1;Vai Syllable Po +\uA5C2;Vai Syllable Bho +\uA5C3;Vai Syllable Bo +\uA5C4;Vai Syllable Mbo +\uA5C5;Vai Syllable Kpo +\uA5C6;Vai Syllable Mgbo +\uA5C7;Vai Syllable Gbo +\uA5C8;Vai Syllable Gbon +\uA5C9;Vai Syllable Fo +\uA5CA;Vai Syllable Vo +\uA5CB;Vai Syllable To +\uA5CC;Vai Syllable Tho +\uA5CD;Vai Syllable Dho +\uA5CE;Vai Syllable Dhho +\uA5CF;Vai Syllable Lo +\uA5D0;Vai Syllable Ro +\uA5D1;Vai Syllable Do +\uA5D2;Vai Syllable Ndo +\uA5D3;Vai Syllable So +\uA5D4;Vai Syllable Sho +\uA5D5;Vai Syllable Zo +\uA5D6;Vai Syllable Zho +\uA5D7;Vai Syllable Co +\uA5D8;Vai Syllable Jo +\uA5D9;Vai Syllable Njo +\uA5DA;Vai Syllable Yo +\uA5DB;Vai Syllable Ko +\uA5DC;Vai Syllable Nggo +\uA5DD;Vai Syllable Go +\uA5DE;Vai Syllable Mo +\uA5DF;Vai Syllable No +\uA5E0;Vai Syllable Nyo +\uA5E1;Vai Syllable E +\uA5E2;Vai Syllable En +\uA5E3;Vai Syllable Ngen +\uA5E4;Vai Syllable He +\uA5E5;Vai Syllable Hen +\uA5E6;Vai Syllable We +\uA5E7;Vai Syllable Wen +\uA5E8;Vai Syllable Pe +\uA5E9;Vai Syllable Bhe +\uA5EA;Vai Syllable Be +\uA5EB;Vai Syllable Mbe +\uA5EC;Vai Syllable Kpe +\uA5ED;Vai Syllable Kpen +\uA5EE;Vai Syllable Mgbe +\uA5EF;Vai Syllable Gbe +\uA5F0;Vai Syllable Gben +\uA5F1;Vai Syllable Fe +\uA5F2;Vai Syllable Ve +\uA5F3;Vai Syllable Te +\uA5F4;Vai Syllable The +\uA5F5;Vai Syllable Dhe +\uA5F6;Vai Syllable Dhhe +\uA5F7;Vai Syllable Le +\uA5F8;Vai Syllable Re +\uA5F9;Vai Syllable De +\uA5FA;Vai Syllable Nde +\uA5FB;Vai Syllable Se +\uA5FC;Vai Syllable She +\uA5FD;Vai Syllable Ze +\uA5FE;Vai Syllable Zhe +\uA5FF;Vai Syllable Ce +\uA600;Vai Syllable Je +\uA601;Vai Syllable Nje +\uA602;Vai Syllable Ye +\uA603;Vai Syllable Ke +\uA604;Vai Syllable Ngge +\uA605;Vai Syllable Nggen +\uA606;Vai Syllable Ge +\uA607;Vai Syllable Gen +\uA608;Vai Syllable Me +\uA609;Vai Syllable Ne +\uA60A;Vai Syllable Nye +\uA60B;Vai Syllable Ng +\uA60C;Vai Syllable Lengthener +\uA60D;Vai Comma +\uA60E;Vai Full Stop +\uA60F;Vai Question Mark +\uA610;Vai Syllable Ndole Fa +\uA611;Vai Syllable Ndole Ka +\uA612;Vai Syllable Ndole Soo +\uA613;Vai Symbol Feeng +\uA614;Vai Symbol Keeng +\uA615;Vai Symbol Ting +\uA616;Vai Symbol Nii +\uA617;Vai Symbol Bang +\uA618;Vai Symbol Faa +\uA619;Vai Symbol Taa +\uA61A;Vai Symbol Dang +\uA61B;Vai Symbol Doong +\uA61C;Vai Symbol Kung +\uA61D;Vai Symbol Tong +\uA61E;Vai Symbol Do-O +\uA61F;Vai Symbol Jong +\uA620;Vai Digit Zero +\uA621;Vai Digit One +\uA622;Vai Digit Two +\uA623;Vai Digit Three +\uA624;Vai Digit Four +\uA625;Vai Digit Five +\uA626;Vai Digit Six +\uA627;Vai Digit Seven +\uA628;Vai Digit Eight +\uA629;Vai Digit Nine +\uA62A;Vai Syllable Ndole Ma +\uA62B;Vai Syllable Ndole Do +\uA640;Cyrillic Capital Letter Zemlya +\uA641;Cyrillic Small Letter Zemlya +\uA642;Cyrillic Capital Letter Dzelo +\uA643;Cyrillic Small Letter Dzelo +\uA644;Cyrillic Capital Letter Reversed Dze +\uA645;Cyrillic Small Letter Reversed Dze +\uA646;Cyrillic Capital Letter Iota +\uA647;Cyrillic Small Letter Iota +\uA648;Cyrillic Capital Letter Djerv +\uA649;Cyrillic Small Letter Djerv +\uA64A;Cyrillic Capital Letter Monograph Uk +\uA64B;Cyrillic Small Letter Monograph Uk +\uA64C;Cyrillic Capital Letter Broad Omega +\uA64D;Cyrillic Small Letter Broad Omega +\uA64E;Cyrillic Capital Letter Neutral Yer +\uA64F;Cyrillic Small Letter Neutral Yer +\uA650;Cyrillic Capital Letter Yeru With Back Yer +\uA651;Cyrillic Small Letter Yeru With Back Yer +\uA652;Cyrillic Capital Letter Iotified Yat +\uA653;Cyrillic Small Letter Iotified Yat +\uA654;Cyrillic Capital Letter Reversed Yu +\uA655;Cyrillic Small Letter Reversed Yu +\uA656;Cyrillic Capital Letter Iotified A +\uA657;Cyrillic Small Letter Iotified A +\uA658;Cyrillic Capital Letter Closed Little Yus +\uA659;Cyrillic Small Letter Closed Little Yus +\uA65A;Cyrillic Capital Letter Blended Yus +\uA65B;Cyrillic Small Letter Blended Yus +\uA65C;Cyrillic Capital Letter Iotified Closed Little Yus +\uA65D;Cyrillic Small Letter Iotified Closed Little Yus +\uA65E;Cyrillic Capital Letter Yn +\uA65F;Cyrillic Small Letter Yn +\uA660;Cyrillic Capital Letter Reversed Tse +\uA661;Cyrillic Small Letter Reversed Tse +\uA662;Cyrillic Capital Letter Soft De +\uA663;Cyrillic Small Letter Soft De +\uA664;Cyrillic Capital Letter Soft El +\uA665;Cyrillic Small Letter Soft El +\uA666;Cyrillic Capital Letter Soft Em +\uA667;Cyrillic Small Letter Soft Em +\uA668;Cyrillic Capital Letter Monocular O +\uA669;Cyrillic Small Letter Monocular O +\uA66A;Cyrillic Capital Letter Binocular O +\uA66B;Cyrillic Small Letter Binocular O +\uA66C;Cyrillic Capital Letter Double Monocular O +\uA66D;Cyrillic Small Letter Double Monocular O +\uA66E;Cyrillic Letter Multiocular O +\uA66F;Combining Cyrillic Vzmet +\uA670;Combining Cyrillic Ten Millions Sign +\uA671;Combining Cyrillic Hundred Millions Sign +\uA672;Combining Cyrillic Thousand Millions Sign +\uA673;Slavonic Asterisk +\uA674;Combining Cyrillic Letter Ukrainian Ie +\uA675;Combining Cyrillic Letter I +\uA676;Combining Cyrillic Letter Yi +\uA677;Combining Cyrillic Letter U +\uA678;Combining Cyrillic Letter Hard Sign +\uA679;Combining Cyrillic Letter Yeru +\uA67A;Combining Cyrillic Letter Soft Sign +\uA67B;Combining Cyrillic Letter Omega +\uA67C;Combining Cyrillic Kavyka +\uA67D;Combining Cyrillic Payerok +\uA67E;Cyrillic Kavyka +\uA67F;Cyrillic Payerok +\uA680;Cyrillic Capital Letter Dwe +\uA681;Cyrillic Small Letter Dwe +\uA682;Cyrillic Capital Letter Dzwe +\uA683;Cyrillic Small Letter Dzwe +\uA684;Cyrillic Capital Letter Zhwe +\uA685;Cyrillic Small Letter Zhwe +\uA686;Cyrillic Capital Letter Cche +\uA687;Cyrillic Small Letter Cche +\uA688;Cyrillic Capital Letter Dzze +\uA689;Cyrillic Small Letter Dzze +\uA68A;Cyrillic Capital Letter Te With Middle Hook +\uA68B;Cyrillic Small Letter Te With Middle Hook +\uA68C;Cyrillic Capital Letter Twe +\uA68D;Cyrillic Small Letter Twe +\uA68E;Cyrillic Capital Letter Tswe +\uA68F;Cyrillic Small Letter Tswe +\uA690;Cyrillic Capital Letter Tsse +\uA691;Cyrillic Small Letter Tsse +\uA692;Cyrillic Capital Letter Tche +\uA693;Cyrillic Small Letter Tche +\uA694;Cyrillic Capital Letter Hwe +\uA695;Cyrillic Small Letter Hwe +\uA696;Cyrillic Capital Letter Shwe +\uA697;Cyrillic Small Letter Shwe +\uA698;Cyrillic Capital Letter Double O +\uA699;Cyrillic Small Letter Double O +\uA69A;Cyrillic Capital Letter Crossed O +\uA69B;Cyrillic Small Letter Crossed O +\uA69C;Modifier Letter Cyrillic Hard Sign +\uA69D;Modifier Letter Cyrillic Soft Sign +\uA69E;Combining Cyrillic Letter Ef +\uA69F;Combining Cyrillic Letter Iotified E +\uA6A0;Bamum Letter A +\uA6A1;Bamum Letter Ka +\uA6A2;Bamum Letter U +\uA6A3;Bamum Letter Ku +\uA6A4;Bamum Letter Ee +\uA6A5;Bamum Letter Ree +\uA6A6;Bamum Letter Tae +\uA6A7;Bamum Letter O +\uA6A8;Bamum Letter Nyi +\uA6A9;Bamum Letter I +\uA6AA;Bamum Letter La +\uA6AB;Bamum Letter Pa +\uA6AC;Bamum Letter Rii +\uA6AD;Bamum Letter Riee +\uA6AE;Bamum Letter Leeee +\uA6AF;Bamum Letter Meeee +\uA6B0;Bamum Letter Taa +\uA6B1;Bamum Letter Ndaa +\uA6B2;Bamum Letter Njaem +\uA6B3;Bamum Letter M +\uA6B4;Bamum Letter Suu +\uA6B5;Bamum Letter Mu +\uA6B6;Bamum Letter Shii +\uA6B7;Bamum Letter Si +\uA6B8;Bamum Letter Sheux +\uA6B9;Bamum Letter Seux +\uA6BA;Bamum Letter Kyee +\uA6BB;Bamum Letter Ket +\uA6BC;Bamum Letter Nuae +\uA6BD;Bamum Letter Nu +\uA6BE;Bamum Letter Njuae +\uA6BF;Bamum Letter Yoq +\uA6C0;Bamum Letter Shu +\uA6C1;Bamum Letter Yuq +\uA6C2;Bamum Letter Ya +\uA6C3;Bamum Letter Nsha +\uA6C4;Bamum Letter Keux +\uA6C5;Bamum Letter Peux +\uA6C6;Bamum Letter Njee +\uA6C7;Bamum Letter Ntee +\uA6C8;Bamum Letter Pue +\uA6C9;Bamum Letter Wue +\uA6CA;Bamum Letter Pee +\uA6CB;Bamum Letter Fee +\uA6CC;Bamum Letter Ru +\uA6CD;Bamum Letter Lu +\uA6CE;Bamum Letter Mi +\uA6CF;Bamum Letter Ni +\uA6D0;Bamum Letter Reux +\uA6D1;Bamum Letter Rae +\uA6D2;Bamum Letter Ken +\uA6D3;Bamum Letter Ngkwaen +\uA6D4;Bamum Letter Ngga +\uA6D5;Bamum Letter Nga +\uA6D6;Bamum Letter Sho +\uA6D7;Bamum Letter Puae +\uA6D8;Bamum Letter Fu +\uA6D9;Bamum Letter Fom +\uA6DA;Bamum Letter Wa +\uA6DB;Bamum Letter Na +\uA6DC;Bamum Letter Li +\uA6DD;Bamum Letter Pi +\uA6DE;Bamum Letter Loq +\uA6DF;Bamum Letter Ko +\uA6E0;Bamum Letter Mben +\uA6E1;Bamum Letter Ren +\uA6E2;Bamum Letter Men +\uA6E3;Bamum Letter Ma +\uA6E4;Bamum Letter Ti +\uA6E5;Bamum Letter Ki +\uA6E6;Bamum Letter Mo +\uA6E7;Bamum Letter Mbaa +\uA6E8;Bamum Letter Tet +\uA6E9;Bamum Letter Kpa +\uA6EA;Bamum Letter Ten +\uA6EB;Bamum Letter Ntuu +\uA6EC;Bamum Letter Samba +\uA6ED;Bamum Letter Faamae +\uA6EE;Bamum Letter Kovuu +\uA6EF;Bamum Letter Koghom +\uA6F0;Bamum Combining Mark Koqndon +\uA6F1;Bamum Combining Mark Tukwentis +\uA6F2;Bamum Njaemli +\uA6F3;Bamum Full Stop +\uA6F4;Bamum Colon +\uA6F5;Bamum Comma +\uA6F6;Bamum Semicolon +\uA6F7;Bamum Question Mark +\uA700;Modifier Letter Chinese Tone Yin Ping +\uA701;Modifier Letter Chinese Tone Yang Ping +\uA702;Modifier Letter Chinese Tone Yin Shang +\uA703;Modifier Letter Chinese Tone Yang Shang +\uA704;Modifier Letter Chinese Tone Yin Qu +\uA705;Modifier Letter Chinese Tone Yang Qu +\uA706;Modifier Letter Chinese Tone Yin Ru +\uA707;Modifier Letter Chinese Tone Yang Ru +\uA708;Modifier Letter Extra-High Dotted Tone Bar +\uA709;Modifier Letter High Dotted Tone Bar +\uA70A;Modifier Letter Mid Dotted Tone Bar +\uA70B;Modifier Letter Low Dotted Tone Bar +\uA70C;Modifier Letter Extra-Low Dotted Tone Bar +\uA70D;Modifier Letter Extra-High Dotted Left-Stem Tone Bar +\uA70E;Modifier Letter High Dotted Left-Stem Tone Bar +\uA70F;Modifier Letter Mid Dotted Left-Stem Tone Bar +\uA710;Modifier Letter Low Dotted Left-Stem Tone Bar +\uA711;Modifier Letter Extra-Low Dotted Left-Stem Tone Bar +\uA712;Modifier Letter Extra-High Left-Stem Tone Bar +\uA713;Modifier Letter High Left-Stem Tone Bar +\uA714;Modifier Letter Mid Left-Stem Tone Bar +\uA715;Modifier Letter Low Left-Stem Tone Bar +\uA716;Modifier Letter Extra-Low Left-Stem Tone Bar +\uA717;Modifier Letter Dot Vertical Bar +\uA718;Modifier Letter Dot Slash +\uA719;Modifier Letter Dot Horizontal Bar +\uA71A;Modifier Letter Lower Right Corner Angle +\uA71B;Modifier Letter Raised Up Arrow +\uA71C;Modifier Letter Raised Down Arrow +\uA71D;Modifier Letter Raised Exclamation Mark +\uA71E;Modifier Letter Raised Inverted Exclamation Mark +\uA71F;Modifier Letter Low Inverted Exclamation Mark +\uA720;Modifier Letter Stress And High Tone +\uA721;Modifier Letter Stress And Low Tone +\uA722;Latin Capital Letter Egyptological Alef +\uA723;Latin Small Letter Egyptological Alef +\uA724;Latin Capital Letter Egyptological Ain +\uA725;Latin Small Letter Egyptological Ain +\uA726;Latin Capital Letter Heng +\uA727;Latin Small Letter Heng +\uA728;Latin Capital Letter Tz +\uA729;Latin Small Letter Tz +\uA72A;Latin Capital Letter Tresillo +\uA72B;Latin Small Letter Tresillo +\uA72C;Latin Capital Letter Cuatrillo +\uA72D;Latin Small Letter Cuatrillo +\uA72E;Latin Capital Letter Cuatrillo With Comma +\uA72F;Latin Small Letter Cuatrillo With Comma +\uA730;Latin Letter Small Capital F +\uA731;Latin Letter Small Capital S +\uA732;Latin Capital Letter Aa +\uA733;Latin Small Letter Aa +\uA734;Latin Capital Letter Ao +\uA735;Latin Small Letter Ao +\uA736;Latin Capital Letter Au +\uA737;Latin Small Letter Au +\uA738;Latin Capital Letter Av +\uA739;Latin Small Letter Av +\uA73A;Latin Capital Letter Av With Horizontal Bar +\uA73B;Latin Small Letter Av With Horizontal Bar +\uA73C;Latin Capital Letter Ay +\uA73D;Latin Small Letter Ay +\uA73E;Latin Capital Letter Reversed C With Dot +\uA73F;Latin Small Letter Reversed C With Dot +\uA740;Latin Capital Letter K With Stroke +\uA741;Latin Small Letter K With Stroke +\uA742;Latin Capital Letter K With Diagonal Stroke +\uA743;Latin Small Letter K With Diagonal Stroke +\uA744;Latin Capital Letter K With Stroke And Diagonal Stroke +\uA745;Latin Small Letter K With Stroke And Diagonal Stroke +\uA746;Latin Capital Letter Broken L +\uA747;Latin Small Letter Broken L +\uA748;Latin Capital Letter L With High Stroke +\uA749;Latin Small Letter L With High Stroke +\uA74A;Latin Capital Letter O With Long Stroke Overlay +\uA74B;Latin Small Letter O With Long Stroke Overlay +\uA74C;Latin Capital Letter O With Loop +\uA74D;Latin Small Letter O With Loop +\uA74E;Latin Capital Letter Oo +\uA74F;Latin Small Letter Oo +\uA750;Latin Capital Letter P With Stroke Through Descender +\uA751;Latin Small Letter P With Stroke Through Descender +\uA752;Latin Capital Letter P With Flourish +\uA753;Latin Small Letter P With Flourish +\uA754;Latin Capital Letter P With Squirrel Tail +\uA755;Latin Small Letter P With Squirrel Tail +\uA756;Latin Capital Letter Q With Stroke Through Descender +\uA757;Latin Small Letter Q With Stroke Through Descender +\uA758;Latin Capital Letter Q With Diagonal Stroke +\uA759;Latin Small Letter Q With Diagonal Stroke +\uA75A;Latin Capital Letter R Rotunda +\uA75B;Latin Small Letter R Rotunda +\uA75C;Latin Capital Letter Rum Rotunda +\uA75D;Latin Small Letter Rum Rotunda +\uA75E;Latin Capital Letter V With Diagonal Stroke +\uA75F;Latin Small Letter V With Diagonal Stroke +\uA760;Latin Capital Letter Vy +\uA761;Latin Small Letter Vy +\uA762;Latin Capital Letter Visigothic Z +\uA763;Latin Small Letter Visigothic Z +\uA764;Latin Capital Letter Thorn With Stroke +\uA765;Latin Small Letter Thorn With Stroke +\uA766;Latin Capital Letter Thorn With Stroke Through Descender +\uA767;Latin Small Letter Thorn With Stroke Through Descender +\uA768;Latin Capital Letter Vend +\uA769;Latin Small Letter Vend +\uA76A;Latin Capital Letter Et +\uA76B;Latin Small Letter Et +\uA76C;Latin Capital Letter Is +\uA76D;Latin Small Letter Is +\uA76E;Latin Capital Letter Con +\uA76F;Latin Small Letter Con +\uA770;Modifier Letter Us +\uA771;Latin Small Letter Dum +\uA772;Latin Small Letter Lum +\uA773;Latin Small Letter Mum +\uA774;Latin Small Letter Num +\uA775;Latin Small Letter Rum +\uA776;Latin Letter Small Capital Rum +\uA777;Latin Small Letter Tum +\uA778;Latin Small Letter Um +\uA779;Latin Capital Letter Insular D +\uA77A;Latin Small Letter Insular D +\uA77B;Latin Capital Letter Insular F +\uA77C;Latin Small Letter Insular F +\uA77D;Latin Capital Letter Insular G +\uA77E;Latin Capital Letter Turned Insular G +\uA77F;Latin Small Letter Turned Insular G +\uA780;Latin Capital Letter Turned L +\uA781;Latin Small Letter Turned L +\uA782;Latin Capital Letter Insular R +\uA783;Latin Small Letter Insular R +\uA784;Latin Capital Letter Insular S +\uA785;Latin Small Letter Insular S +\uA786;Latin Capital Letter Insular T +\uA787;Latin Small Letter Insular T +\uA788;Modifier Letter Low Circumflex Accent +\uA789;Modifier Letter Colon +\uA78A;Modifier Letter Short Equals Sign +\uA78B;Latin Capital Letter Saltillo +\uA78C;Latin Small Letter Saltillo +\uA78D;Latin Capital Letter Turned H +\uA78E;Latin Small Letter L With Retroflex Hook And Belt +\uA78F;Latin Letter Sinological Dot +\uA790;Latin Capital Letter N With Descender +\uA791;Latin Small Letter N With Descender +\uA792;Latin Capital Letter C With Bar +\uA793;Latin Small Letter C With Bar +\uA794;Latin Small Letter C With Palatal Hook +\uA795;Latin Small Letter H With Palatal Hook +\uA796;Latin Capital Letter B With Flourish +\uA797;Latin Small Letter B With Flourish +\uA798;Latin Capital Letter F With Stroke +\uA799;Latin Small Letter F With Stroke +\uA79A;Latin Capital Letter Volapuk Ae +\uA79B;Latin Small Letter Volapuk Ae +\uA79C;Latin Capital Letter Volapuk Oe +\uA79D;Latin Small Letter Volapuk Oe +\uA79E;Latin Capital Letter Volapuk Ue +\uA79F;Latin Small Letter Volapuk Ue +\uA7A0;Latin Capital Letter G With Oblique Stroke +\uA7A1;Latin Small Letter G With Oblique Stroke +\uA7A2;Latin Capital Letter K With Oblique Stroke +\uA7A3;Latin Small Letter K With Oblique Stroke +\uA7A4;Latin Capital Letter N With Oblique Stroke +\uA7A5;Latin Small Letter N With Oblique Stroke +\uA7A6;Latin Capital Letter R With Oblique Stroke +\uA7A7;Latin Small Letter R With Oblique Stroke +\uA7A8;Latin Capital Letter S With Oblique Stroke +\uA7A9;Latin Small Letter S With Oblique Stroke +\uA7AA;Latin Capital Letter H With Hook +\uA7AB;Latin Capital Letter Reversed Open E +\uA7AC;Latin Capital Letter Script G +\uA7AD;Latin Capital Letter L With Belt +\uA7AE;Latin Capital Letter Small Capital I +\uA7AF;Latin Letter Small Capital Q +\uA7B0;Latin Capital Letter Turned K +\uA7B1;Latin Capital Letter Turned T +\uA7B2;Latin Capital Letter J With Crossed-Tail +\uA7B3;Latin Capital Letter Chi +\uA7B4;Latin Capital Letter Beta +\uA7B5;Latin Small Letter Beta +\uA7B6;Latin Capital Letter Omega +\uA7B7;Latin Small Letter Omega +\uA7B8;Latin Capital Letter U With Stroke +\uA7B9;Latin Small Letter U With Stroke +\uA7BA;Latin Capital Letter Glottal A +\uA7BB;Latin Small Letter Glottal A +\uA7BC;Latin Capital Letter Glottal I +\uA7BD;Latin Small Letter Glottal I +\uA7BE;Latin Capital Letter Glottal U +\uA7BF;Latin Small Letter Glottal U +\uA7C0;Latin Capital Letter Old Polish O +\uA7C1;Latin Small Letter Old Polish O +\uA7C2;Latin Capital Letter Anglicana W +\uA7C3;Latin Small Letter Anglicana W +\uA7C4;Latin Capital Letter C With Palatal Hook +\uA7C5;Latin Capital Letter S With Hook +\uA7C6;Latin Capital Letter Z With Palatal Hook +\uA7C7;Latin Capital Letter D With Short Stroke Overlay +\uA7C8;Latin Small Letter D With Short Stroke Overlay +\uA7C9;Latin Capital Letter S With Short Stroke Overlay +\uA7CA;Latin Small Letter S With Short Stroke Overlay +\uA7D0;Latin Capital Letter Closed Insular G +\uA7D1;Latin Small Letter Closed Insular G +\uA7D3;Latin Small Letter Double Thorn +\uA7D5;Latin Small Letter Double Wynn +\uA7D6;Latin Capital Letter Middle Scots S +\uA7D7;Latin Small Letter Middle Scots S +\uA7D8;Latin Capital Letter Sigmoid S +\uA7D9;Latin Small Letter Sigmoid S +\uA7F2;Modifier Letter Capital C +\uA7F3;Modifier Letter Capital F +\uA7F4;Modifier Letter Capital Q +\uA7F5;Latin Capital Letter Reversed Half H +\uA7F6;Latin Small Letter Reversed Half H +\uA7F7;Latin Epigraphic Letter Sideways I +\uA7F8;Modifier Letter Capital H With Stroke +\uA7F9;Modifier Letter Small Ligature Oe +\uA7FA;Latin Letter Small Capital Turned M +\uA7FB;Latin Epigraphic Letter Reversed F +\uA7FC;Latin Epigraphic Letter Reversed P +\uA7FD;Latin Epigraphic Letter Inverted M +\uA7FE;Latin Epigraphic Letter I Longa +\uA7FF;Latin Epigraphic Letter Archaic M +\uA800;Syloti Nagri Letter A +\uA801;Syloti Nagri Letter I +\uA802;Syloti Nagri Sign Dvisvara +\uA803;Syloti Nagri Letter U +\uA804;Syloti Nagri Letter E +\uA805;Syloti Nagri Letter O +\uA806;Syloti Nagri Sign Hasanta +\uA807;Syloti Nagri Letter Ko +\uA808;Syloti Nagri Letter Kho +\uA809;Syloti Nagri Letter Go +\uA80A;Syloti Nagri Letter Gho +\uA80B;Syloti Nagri Sign Anusvara +\uA80C;Syloti Nagri Letter Co +\uA80D;Syloti Nagri Letter Cho +\uA80E;Syloti Nagri Letter Jo +\uA80F;Syloti Nagri Letter Jho +\uA810;Syloti Nagri Letter Tto +\uA811;Syloti Nagri Letter Ttho +\uA812;Syloti Nagri Letter Ddo +\uA813;Syloti Nagri Letter Ddho +\uA814;Syloti Nagri Letter To +\uA815;Syloti Nagri Letter Tho +\uA816;Syloti Nagri Letter Do +\uA817;Syloti Nagri Letter Dho +\uA818;Syloti Nagri Letter No +\uA819;Syloti Nagri Letter Po +\uA81A;Syloti Nagri Letter Pho +\uA81B;Syloti Nagri Letter Bo +\uA81C;Syloti Nagri Letter Bho +\uA81D;Syloti Nagri Letter Mo +\uA81E;Syloti Nagri Letter Ro +\uA81F;Syloti Nagri Letter Lo +\uA820;Syloti Nagri Letter Rro +\uA821;Syloti Nagri Letter So +\uA822;Syloti Nagri Letter Ho +\uA823;Syloti Nagri Vowel Sign A +\uA824;Syloti Nagri Vowel Sign I +\uA825;Syloti Nagri Vowel Sign U +\uA826;Syloti Nagri Vowel Sign E +\uA827;Syloti Nagri Vowel Sign Oo +\uA828;Syloti Nagri Poetry Mark-1 +\uA829;Syloti Nagri Poetry Mark-2 +\uA82A;Syloti Nagri Poetry Mark-3 +\uA82B;Syloti Nagri Poetry Mark-4 +\uA82C;Syloti Nagri Sign Alternate Hasanta +\uA830;North Indic Fraction One Quarter +\uA831;North Indic Fraction One Half +\uA832;North Indic Fraction Three Quarters +\uA833;North Indic Fraction One Sixteenth +\uA834;North Indic Fraction One Eighth +\uA835;North Indic Fraction Three Sixteenths +\uA836;North Indic Quarter Mark +\uA837;North Indic Placeholder Mark +\uA838;North Indic Rupee Mark +\uA839;North Indic Quantity Mark +\uA840;Phags-Pa Letter Ka +\uA841;Phags-Pa Letter Kha +\uA842;Phags-Pa Letter Ga +\uA843;Phags-Pa Letter Nga +\uA844;Phags-Pa Letter Ca +\uA845;Phags-Pa Letter Cha +\uA846;Phags-Pa Letter Ja +\uA847;Phags-Pa Letter Nya +\uA848;Phags-Pa Letter Ta +\uA849;Phags-Pa Letter Tha +\uA84A;Phags-Pa Letter Da +\uA84B;Phags-Pa Letter Na +\uA84C;Phags-Pa Letter Pa +\uA84D;Phags-Pa Letter Pha +\uA84E;Phags-Pa Letter Ba +\uA84F;Phags-Pa Letter Ma +\uA850;Phags-Pa Letter Tsa +\uA851;Phags-Pa Letter Tsha +\uA852;Phags-Pa Letter Dza +\uA853;Phags-Pa Letter Wa +\uA854;Phags-Pa Letter Zha +\uA855;Phags-Pa Letter Za +\uA856;Phags-Pa Letter Small A +\uA857;Phags-Pa Letter Ya +\uA858;Phags-Pa Letter Ra +\uA859;Phags-Pa Letter La +\uA85A;Phags-Pa Letter Sha +\uA85B;Phags-Pa Letter Sa +\uA85C;Phags-Pa Letter Ha +\uA85D;Phags-Pa Letter A +\uA85E;Phags-Pa Letter I +\uA85F;Phags-Pa Letter U +\uA860;Phags-Pa Letter E +\uA861;Phags-Pa Letter O +\uA862;Phags-Pa Letter Qa +\uA863;Phags-Pa Letter Xa +\uA864;Phags-Pa Letter Fa +\uA865;Phags-Pa Letter Gga +\uA866;Phags-Pa Letter Ee +\uA867;Phags-Pa Subjoined Letter Wa +\uA868;Phags-Pa Subjoined Letter Ya +\uA869;Phags-Pa Letter Tta +\uA86A;Phags-Pa Letter Ttha +\uA86B;Phags-Pa Letter Dda +\uA86C;Phags-Pa Letter Nna +\uA86D;Phags-Pa Letter Alternate Ya +\uA86E;Phags-Pa Letter Voiceless Sha +\uA86F;Phags-Pa Letter Voiced Ha +\uA870;Phags-Pa Letter Aspirated Fa +\uA871;Phags-Pa Subjoined Letter Ra +\uA872;Phags-Pa Superfixed Letter Ra +\uA873;Phags-Pa Letter Candrabindu +\uA874;Phags-Pa Single Head Mark +\uA875;Phags-Pa Double Head Mark +\uA876;Phags-Pa Mark Shad +\uA877;Phags-Pa Mark Double Shad +\uA880;Saurashtra Sign Anusvara +\uA881;Saurashtra Sign Visarga +\uA882;Saurashtra Letter A +\uA883;Saurashtra Letter Aa +\uA884;Saurashtra Letter I +\uA885;Saurashtra Letter Ii +\uA886;Saurashtra Letter U +\uA887;Saurashtra Letter Uu +\uA888;Saurashtra Letter Vocalic R +\uA889;Saurashtra Letter Vocalic Rr +\uA88A;Saurashtra Letter Vocalic L +\uA88B;Saurashtra Letter Vocalic Ll +\uA88C;Saurashtra Letter E +\uA88D;Saurashtra Letter Ee +\uA88E;Saurashtra Letter Ai +\uA88F;Saurashtra Letter O +\uA890;Saurashtra Letter Oo +\uA891;Saurashtra Letter Au +\uA892;Saurashtra Letter Ka +\uA893;Saurashtra Letter Kha +\uA894;Saurashtra Letter Ga +\uA895;Saurashtra Letter Gha +\uA896;Saurashtra Letter Nga +\uA897;Saurashtra Letter Ca +\uA898;Saurashtra Letter Cha +\uA899;Saurashtra Letter Ja +\uA89A;Saurashtra Letter Jha +\uA89B;Saurashtra Letter Nya +\uA89C;Saurashtra Letter Tta +\uA89D;Saurashtra Letter Ttha +\uA89E;Saurashtra Letter Dda +\uA89F;Saurashtra Letter Ddha +\uA8A0;Saurashtra Letter Nna +\uA8A1;Saurashtra Letter Ta +\uA8A2;Saurashtra Letter Tha +\uA8A3;Saurashtra Letter Da +\uA8A4;Saurashtra Letter Dha +\uA8A5;Saurashtra Letter Na +\uA8A6;Saurashtra Letter Pa +\uA8A7;Saurashtra Letter Pha +\uA8A8;Saurashtra Letter Ba +\uA8A9;Saurashtra Letter Bha +\uA8AA;Saurashtra Letter Ma +\uA8AB;Saurashtra Letter Ya +\uA8AC;Saurashtra Letter Ra +\uA8AD;Saurashtra Letter La +\uA8AE;Saurashtra Letter Va +\uA8AF;Saurashtra Letter Sha +\uA8B0;Saurashtra Letter Ssa +\uA8B1;Saurashtra Letter Sa +\uA8B2;Saurashtra Letter Ha +\uA8B3;Saurashtra Letter Lla +\uA8B4;Saurashtra Consonant Sign Haaru +\uA8B5;Saurashtra Vowel Sign Aa +\uA8B6;Saurashtra Vowel Sign I +\uA8B7;Saurashtra Vowel Sign Ii +\uA8B8;Saurashtra Vowel Sign U +\uA8B9;Saurashtra Vowel Sign Uu +\uA8BA;Saurashtra Vowel Sign Vocalic R +\uA8BB;Saurashtra Vowel Sign Vocalic Rr +\uA8BC;Saurashtra Vowel Sign Vocalic L +\uA8BD;Saurashtra Vowel Sign Vocalic Ll +\uA8BE;Saurashtra Vowel Sign E +\uA8BF;Saurashtra Vowel Sign Ee +\uA8C0;Saurashtra Vowel Sign Ai +\uA8C1;Saurashtra Vowel Sign O +\uA8C2;Saurashtra Vowel Sign Oo +\uA8C3;Saurashtra Vowel Sign Au +\uA8C4;Saurashtra Sign Virama +\uA8C5;Saurashtra Sign Candrabindu +\uA8CE;Saurashtra Danda +\uA8CF;Saurashtra Double Danda +\uA8D0;Saurashtra Digit Zero +\uA8D1;Saurashtra Digit One +\uA8D2;Saurashtra Digit Two +\uA8D3;Saurashtra Digit Three +\uA8D4;Saurashtra Digit Four +\uA8D5;Saurashtra Digit Five +\uA8D6;Saurashtra Digit Six +\uA8D7;Saurashtra Digit Seven +\uA8D8;Saurashtra Digit Eight +\uA8D9;Saurashtra Digit Nine +\uA8E0;Combining Devanagari Digit Zero +\uA8E1;Combining Devanagari Digit One +\uA8E2;Combining Devanagari Digit Two +\uA8E3;Combining Devanagari Digit Three +\uA8E4;Combining Devanagari Digit Four +\uA8E5;Combining Devanagari Digit Five +\uA8E6;Combining Devanagari Digit Six +\uA8E7;Combining Devanagari Digit Seven +\uA8E8;Combining Devanagari Digit Eight +\uA8E9;Combining Devanagari Digit Nine +\uA8EA;Combining Devanagari Letter A +\uA8EB;Combining Devanagari Letter U +\uA8EC;Combining Devanagari Letter Ka +\uA8ED;Combining Devanagari Letter Na +\uA8EE;Combining Devanagari Letter Pa +\uA8EF;Combining Devanagari Letter Ra +\uA8F0;Combining Devanagari Letter Vi +\uA8F1;Combining Devanagari Sign Avagraha +\uA8F2;Devanagari Sign Spacing Candrabindu +\uA8F3;Devanagari Sign Candrabindu Virama +\uA8F4;Devanagari Sign Double Candrabindu Virama +\uA8F5;Devanagari Sign Candrabindu Two +\uA8F6;Devanagari Sign Candrabindu Three +\uA8F7;Devanagari Sign Candrabindu Avagraha +\uA8F8;Devanagari Sign Pushpika +\uA8F9;Devanagari Gap Filler +\uA8FA;Devanagari Caret +\uA8FB;Devanagari Headstroke +\uA8FC;Devanagari Sign Siddham +\uA8FD;Devanagari Jain Om +\uA8FE;Devanagari Letter Ay +\uA8FF;Devanagari Vowel Sign Ay +\uA900;Kayah Li Digit Zero +\uA901;Kayah Li Digit One +\uA902;Kayah Li Digit Two +\uA903;Kayah Li Digit Three +\uA904;Kayah Li Digit Four +\uA905;Kayah Li Digit Five +\uA906;Kayah Li Digit Six +\uA907;Kayah Li Digit Seven +\uA908;Kayah Li Digit Eight +\uA909;Kayah Li Digit Nine +\uA90A;Kayah Li Letter Ka +\uA90B;Kayah Li Letter Kha +\uA90C;Kayah Li Letter Ga +\uA90D;Kayah Li Letter Nga +\uA90E;Kayah Li Letter Sa +\uA90F;Kayah Li Letter Sha +\uA910;Kayah Li Letter Za +\uA911;Kayah Li Letter Nya +\uA912;Kayah Li Letter Ta +\uA913;Kayah Li Letter Hta +\uA914;Kayah Li Letter Na +\uA915;Kayah Li Letter Pa +\uA916;Kayah Li Letter Pha +\uA917;Kayah Li Letter Ma +\uA918;Kayah Li Letter Da +\uA919;Kayah Li Letter Ba +\uA91A;Kayah Li Letter Ra +\uA91B;Kayah Li Letter Ya +\uA91C;Kayah Li Letter La +\uA91D;Kayah Li Letter Wa +\uA91E;Kayah Li Letter Tha +\uA91F;Kayah Li Letter Ha +\uA920;Kayah Li Letter Va +\uA921;Kayah Li Letter Ca +\uA922;Kayah Li Letter A +\uA923;Kayah Li Letter Oe +\uA924;Kayah Li Letter I +\uA925;Kayah Li Letter Oo +\uA926;Kayah Li Vowel Ue +\uA927;Kayah Li Vowel E +\uA928;Kayah Li Vowel U +\uA929;Kayah Li Vowel Ee +\uA92A;Kayah Li Vowel O +\uA92B;Kayah Li Tone Plophu +\uA92C;Kayah Li Tone Calya +\uA92D;Kayah Li Tone Calya Plophu +\uA92E;Kayah Li Sign Cwi +\uA92F;Kayah Li Sign Shya +\uA930;Rejang Letter Ka +\uA931;Rejang Letter Ga +\uA932;Rejang Letter Nga +\uA933;Rejang Letter Ta +\uA934;Rejang Letter Da +\uA935;Rejang Letter Na +\uA936;Rejang Letter Pa +\uA937;Rejang Letter Ba +\uA938;Rejang Letter Ma +\uA939;Rejang Letter Ca +\uA93A;Rejang Letter Ja +\uA93B;Rejang Letter Nya +\uA93C;Rejang Letter Sa +\uA93D;Rejang Letter Ra +\uA93E;Rejang Letter La +\uA93F;Rejang Letter Ya +\uA940;Rejang Letter Wa +\uA941;Rejang Letter Ha +\uA942;Rejang Letter Mba +\uA943;Rejang Letter Ngga +\uA944;Rejang Letter Nda +\uA945;Rejang Letter Nyja +\uA946;Rejang Letter A +\uA947;Rejang Vowel Sign I +\uA948;Rejang Vowel Sign U +\uA949;Rejang Vowel Sign E +\uA94A;Rejang Vowel Sign Ai +\uA94B;Rejang Vowel Sign O +\uA94C;Rejang Vowel Sign Au +\uA94D;Rejang Vowel Sign Eu +\uA94E;Rejang Vowel Sign Ea +\uA94F;Rejang Consonant Sign Ng +\uA950;Rejang Consonant Sign N +\uA951;Rejang Consonant Sign R +\uA952;Rejang Consonant Sign H +\uA953;Rejang Virama +\uA95F;Rejang Section Mark +\uA960;Hangul Choseong Tikeut-Mieum +\uA961;Hangul Choseong Tikeut-Pieup +\uA962;Hangul Choseong Tikeut-Sios +\uA963;Hangul Choseong Tikeut-Cieuc +\uA964;Hangul Choseong Rieul-Kiyeok +\uA965;Hangul Choseong Rieul-Ssangkiyeok +\uA966;Hangul Choseong Rieul-Tikeut +\uA967;Hangul Choseong Rieul-Ssangtikeut +\uA968;Hangul Choseong Rieul-Mieum +\uA969;Hangul Choseong Rieul-Pieup +\uA96A;Hangul Choseong Rieul-Ssangpieup +\uA96B;Hangul Choseong Rieul-Kapyeounpieup +\uA96C;Hangul Choseong Rieul-Sios +\uA96D;Hangul Choseong Rieul-Cieuc +\uA96E;Hangul Choseong Rieul-Khieukh +\uA96F;Hangul Choseong Mieum-Kiyeok +\uA970;Hangul Choseong Mieum-Tikeut +\uA971;Hangul Choseong Mieum-Sios +\uA972;Hangul Choseong Pieup-Sios-Thieuth +\uA973;Hangul Choseong Pieup-Khieukh +\uA974;Hangul Choseong Pieup-Hieuh +\uA975;Hangul Choseong Ssangsios-Pieup +\uA976;Hangul Choseong Ieung-Rieul +\uA977;Hangul Choseong Ieung-Hieuh +\uA978;Hangul Choseong Ssangcieuc-Hieuh +\uA979;Hangul Choseong Ssangthieuth +\uA97A;Hangul Choseong Phieuph-Hieuh +\uA97B;Hangul Choseong Hieuh-Sios +\uA97C;Hangul Choseong Ssangyeorinhieuh +\uA980;Javanese Sign Panyangga +\uA981;Javanese Sign Cecak +\uA982;Javanese Sign Layar +\uA983;Javanese Sign Wignyan +\uA984;Javanese Letter A +\uA985;Javanese Letter I Kawi +\uA986;Javanese Letter I +\uA987;Javanese Letter Ii +\uA988;Javanese Letter U +\uA989;Javanese Letter Pa Cerek +\uA98A;Javanese Letter Nga Lelet +\uA98B;Javanese Letter Nga Lelet Raswadi +\uA98C;Javanese Letter E +\uA98D;Javanese Letter Ai +\uA98E;Javanese Letter O +\uA98F;Javanese Letter Ka +\uA990;Javanese Letter Ka Sasak +\uA991;Javanese Letter Ka Murda +\uA992;Javanese Letter Ga +\uA993;Javanese Letter Ga Murda +\uA994;Javanese Letter Nga +\uA995;Javanese Letter Ca +\uA996;Javanese Letter Ca Murda +\uA997;Javanese Letter Ja +\uA998;Javanese Letter Nya Murda +\uA999;Javanese Letter Ja Mahaprana +\uA99A;Javanese Letter Nya +\uA99B;Javanese Letter Tta +\uA99C;Javanese Letter Tta Mahaprana +\uA99D;Javanese Letter Dda +\uA99E;Javanese Letter Dda Mahaprana +\uA99F;Javanese Letter Na Murda +\uA9A0;Javanese Letter Ta +\uA9A1;Javanese Letter Ta Murda +\uA9A2;Javanese Letter Da +\uA9A3;Javanese Letter Da Mahaprana +\uA9A4;Javanese Letter Na +\uA9A5;Javanese Letter Pa +\uA9A6;Javanese Letter Pa Murda +\uA9A7;Javanese Letter Ba +\uA9A8;Javanese Letter Ba Murda +\uA9A9;Javanese Letter Ma +\uA9AA;Javanese Letter Ya +\uA9AB;Javanese Letter Ra +\uA9AC;Javanese Letter Ra Agung +\uA9AD;Javanese Letter La +\uA9AE;Javanese Letter Wa +\uA9AF;Javanese Letter Sa Murda +\uA9B0;Javanese Letter Sa Mahaprana +\uA9B1;Javanese Letter Sa +\uA9B2;Javanese Letter Ha +\uA9B3;Javanese Sign Cecak Telu +\uA9B4;Javanese Vowel Sign Tarung +\uA9B5;Javanese Vowel Sign Tolong +\uA9B6;Javanese Vowel Sign Wulu +\uA9B7;Javanese Vowel Sign Wulu Melik +\uA9B8;Javanese Vowel Sign Suku +\uA9B9;Javanese Vowel Sign Suku Mendut +\uA9BA;Javanese Vowel Sign Taling +\uA9BB;Javanese Vowel Sign Dirga Mure +\uA9BC;Javanese Vowel Sign Pepet +\uA9BD;Javanese Consonant Sign Keret +\uA9BE;Javanese Consonant Sign Pengkal +\uA9BF;Javanese Consonant Sign Cakra +\uA9C0;Javanese Pangkon +\uA9C1;Javanese Left Rerenggan +\uA9C2;Javanese Right Rerenggan +\uA9C3;Javanese Pada Andap +\uA9C4;Javanese Pada Madya +\uA9C5;Javanese Pada Luhur +\uA9C6;Javanese Pada Windu +\uA9C7;Javanese Pada Pangkat +\uA9C8;Javanese Pada Lingsa +\uA9C9;Javanese Pada Lungsi +\uA9CA;Javanese Pada Adeg +\uA9CB;Javanese Pada Adeg Adeg +\uA9CC;Javanese Pada Piseleh +\uA9CD;Javanese Turned Pada Piseleh +\uA9CF;Javanese Pangrangkep +\uA9D0;Javanese Digit Zero +\uA9D1;Javanese Digit One +\uA9D2;Javanese Digit Two +\uA9D3;Javanese Digit Three +\uA9D4;Javanese Digit Four +\uA9D5;Javanese Digit Five +\uA9D6;Javanese Digit Six +\uA9D7;Javanese Digit Seven +\uA9D8;Javanese Digit Eight +\uA9D9;Javanese Digit Nine +\uA9DE;Javanese Pada Tirta Tumetes +\uA9DF;Javanese Pada Isen-Isen +\uA9E0;Myanmar Letter Shan Gha +\uA9E1;Myanmar Letter Shan Cha +\uA9E2;Myanmar Letter Shan Jha +\uA9E3;Myanmar Letter Shan Nna +\uA9E4;Myanmar Letter Shan Bha +\uA9E5;Myanmar Sign Shan Saw +\uA9E6;Myanmar Modifier Letter Shan Reduplication +\uA9E7;Myanmar Letter Tai Laing Nya +\uA9E8;Myanmar Letter Tai Laing Fa +\uA9E9;Myanmar Letter Tai Laing Ga +\uA9EA;Myanmar Letter Tai Laing Gha +\uA9EB;Myanmar Letter Tai Laing Ja +\uA9EC;Myanmar Letter Tai Laing Jha +\uA9ED;Myanmar Letter Tai Laing Dda +\uA9EE;Myanmar Letter Tai Laing Ddha +\uA9EF;Myanmar Letter Tai Laing Nna +\uA9F0;Myanmar Tai Laing Digit Zero +\uA9F1;Myanmar Tai Laing Digit One +\uA9F2;Myanmar Tai Laing Digit Two +\uA9F3;Myanmar Tai Laing Digit Three +\uA9F4;Myanmar Tai Laing Digit Four +\uA9F5;Myanmar Tai Laing Digit Five +\uA9F6;Myanmar Tai Laing Digit Six +\uA9F7;Myanmar Tai Laing Digit Seven +\uA9F8;Myanmar Tai Laing Digit Eight +\uA9F9;Myanmar Tai Laing Digit Nine +\uA9FA;Myanmar Letter Tai Laing Lla +\uA9FB;Myanmar Letter Tai Laing Da +\uA9FC;Myanmar Letter Tai Laing Dha +\uA9FD;Myanmar Letter Tai Laing Ba +\uA9FE;Myanmar Letter Tai Laing Bha +\uAA00;Cham Letter A +\uAA01;Cham Letter I +\uAA02;Cham Letter U +\uAA03;Cham Letter E +\uAA04;Cham Letter Ai +\uAA05;Cham Letter O +\uAA06;Cham Letter Ka +\uAA07;Cham Letter Kha +\uAA08;Cham Letter Ga +\uAA09;Cham Letter Gha +\uAA0A;Cham Letter Ngue +\uAA0B;Cham Letter Nga +\uAA0C;Cham Letter Cha +\uAA0D;Cham Letter Chha +\uAA0E;Cham Letter Ja +\uAA0F;Cham Letter Jha +\uAA10;Cham Letter Nhue +\uAA11;Cham Letter Nha +\uAA12;Cham Letter Nhja +\uAA13;Cham Letter Ta +\uAA14;Cham Letter Tha +\uAA15;Cham Letter Da +\uAA16;Cham Letter Dha +\uAA17;Cham Letter Nue +\uAA18;Cham Letter Na +\uAA19;Cham Letter Dda +\uAA1A;Cham Letter Pa +\uAA1B;Cham Letter Ppa +\uAA1C;Cham Letter Pha +\uAA1D;Cham Letter Ba +\uAA1E;Cham Letter Bha +\uAA1F;Cham Letter Mue +\uAA20;Cham Letter Ma +\uAA21;Cham Letter Bba +\uAA22;Cham Letter Ya +\uAA23;Cham Letter Ra +\uAA24;Cham Letter La +\uAA25;Cham Letter Va +\uAA26;Cham Letter Ssa +\uAA27;Cham Letter Sa +\uAA28;Cham Letter Ha +\uAA29;Cham Vowel Sign Aa +\uAA2A;Cham Vowel Sign I +\uAA2B;Cham Vowel Sign Ii +\uAA2C;Cham Vowel Sign Ei +\uAA2D;Cham Vowel Sign U +\uAA2E;Cham Vowel Sign Oe +\uAA2F;Cham Vowel Sign O +\uAA30;Cham Vowel Sign Ai +\uAA31;Cham Vowel Sign Au +\uAA32;Cham Vowel Sign Ue +\uAA33;Cham Consonant Sign Ya +\uAA34;Cham Consonant Sign Ra +\uAA35;Cham Consonant Sign La +\uAA36;Cham Consonant Sign Wa +\uAA40;Cham Letter Final K +\uAA41;Cham Letter Final G +\uAA42;Cham Letter Final Ng +\uAA43;Cham Consonant Sign Final Ng +\uAA44;Cham Letter Final Ch +\uAA45;Cham Letter Final T +\uAA46;Cham Letter Final N +\uAA47;Cham Letter Final P +\uAA48;Cham Letter Final Y +\uAA49;Cham Letter Final R +\uAA4A;Cham Letter Final L +\uAA4B;Cham Letter Final Ss +\uAA4C;Cham Consonant Sign Final M +\uAA4D;Cham Consonant Sign Final H +\uAA50;Cham Digit Zero +\uAA51;Cham Digit One +\uAA52;Cham Digit Two +\uAA53;Cham Digit Three +\uAA54;Cham Digit Four +\uAA55;Cham Digit Five +\uAA56;Cham Digit Six +\uAA57;Cham Digit Seven +\uAA58;Cham Digit Eight +\uAA59;Cham Digit Nine +\uAA5C;Cham Punctuation Spiral +\uAA5D;Cham Punctuation Danda +\uAA5E;Cham Punctuation Double Danda +\uAA5F;Cham Punctuation Triple Danda +\uAA60;Myanmar Letter Khamti Ga +\uAA61;Myanmar Letter Khamti Ca +\uAA62;Myanmar Letter Khamti Cha +\uAA63;Myanmar Letter Khamti Ja +\uAA64;Myanmar Letter Khamti Jha +\uAA65;Myanmar Letter Khamti Nya +\uAA66;Myanmar Letter Khamti Tta +\uAA67;Myanmar Letter Khamti Ttha +\uAA68;Myanmar Letter Khamti Dda +\uAA69;Myanmar Letter Khamti Ddha +\uAA6A;Myanmar Letter Khamti Dha +\uAA6B;Myanmar Letter Khamti Na +\uAA6C;Myanmar Letter Khamti Sa +\uAA6D;Myanmar Letter Khamti Ha +\uAA6E;Myanmar Letter Khamti Hha +\uAA6F;Myanmar Letter Khamti Fa +\uAA70;Myanmar Modifier Letter Khamti Reduplication +\uAA71;Myanmar Letter Khamti Xa +\uAA72;Myanmar Letter Khamti Za +\uAA73;Myanmar Letter Khamti Ra +\uAA74;Myanmar Logogram Khamti Oay +\uAA75;Myanmar Logogram Khamti Qn +\uAA76;Myanmar Logogram Khamti Hm +\uAA77;Myanmar Symbol Aiton Exclamation +\uAA78;Myanmar Symbol Aiton One +\uAA79;Myanmar Symbol Aiton Two +\uAA7A;Myanmar Letter Aiton Ra +\uAA7B;Myanmar Sign Pao Karen Tone +\uAA7C;Myanmar Sign Tai Laing Tone-2 +\uAA7D;Myanmar Sign Tai Laing Tone-5 +\uAA7E;Myanmar Letter Shwe Palaung Cha +\uAA7F;Myanmar Letter Shwe Palaung Sha +\uAA80;Tai Viet Letter Low Ko +\uAA81;Tai Viet Letter High Ko +\uAA82;Tai Viet Letter Low Kho +\uAA83;Tai Viet Letter High Kho +\uAA84;Tai Viet Letter Low Khho +\uAA85;Tai Viet Letter High Khho +\uAA86;Tai Viet Letter Low Go +\uAA87;Tai Viet Letter High Go +\uAA88;Tai Viet Letter Low Ngo +\uAA89;Tai Viet Letter High Ngo +\uAA8A;Tai Viet Letter Low Co +\uAA8B;Tai Viet Letter High Co +\uAA8C;Tai Viet Letter Low Cho +\uAA8D;Tai Viet Letter High Cho +\uAA8E;Tai Viet Letter Low So +\uAA8F;Tai Viet Letter High So +\uAA90;Tai Viet Letter Low Nyo +\uAA91;Tai Viet Letter High Nyo +\uAA92;Tai Viet Letter Low Do +\uAA93;Tai Viet Letter High Do +\uAA94;Tai Viet Letter Low To +\uAA95;Tai Viet Letter High To +\uAA96;Tai Viet Letter Low Tho +\uAA97;Tai Viet Letter High Tho +\uAA98;Tai Viet Letter Low No +\uAA99;Tai Viet Letter High No +\uAA9A;Tai Viet Letter Low Bo +\uAA9B;Tai Viet Letter High Bo +\uAA9C;Tai Viet Letter Low Po +\uAA9D;Tai Viet Letter High Po +\uAA9E;Tai Viet Letter Low Pho +\uAA9F;Tai Viet Letter High Pho +\uAAA0;Tai Viet Letter Low Fo +\uAAA1;Tai Viet Letter High Fo +\uAAA2;Tai Viet Letter Low Mo +\uAAA3;Tai Viet Letter High Mo +\uAAA4;Tai Viet Letter Low Yo +\uAAA5;Tai Viet Letter High Yo +\uAAA6;Tai Viet Letter Low Ro +\uAAA7;Tai Viet Letter High Ro +\uAAA8;Tai Viet Letter Low Lo +\uAAA9;Tai Viet Letter High Lo +\uAAAA;Tai Viet Letter Low Vo +\uAAAB;Tai Viet Letter High Vo +\uAAAC;Tai Viet Letter Low Ho +\uAAAD;Tai Viet Letter High Ho +\uAAAE;Tai Viet Letter Low O +\uAAAF;Tai Viet Letter High O +\uAAB0;Tai Viet Mai Kang +\uAAB1;Tai Viet Vowel Aa +\uAAB2;Tai Viet Vowel I +\uAAB3;Tai Viet Vowel Ue +\uAAB4;Tai Viet Vowel U +\uAAB5;Tai Viet Vowel E +\uAAB6;Tai Viet Vowel O +\uAAB7;Tai Viet Mai Khit +\uAAB8;Tai Viet Vowel Ia +\uAAB9;Tai Viet Vowel Uea +\uAABA;Tai Viet Vowel Ua +\uAABB;Tai Viet Vowel Aue +\uAABC;Tai Viet Vowel Ay +\uAABD;Tai Viet Vowel An +\uAABE;Tai Viet Vowel Am +\uAABF;Tai Viet Tone Mai Ek +\uAAC0;Tai Viet Tone Mai Nueng +\uAAC1;Tai Viet Tone Mai Tho +\uAAC2;Tai Viet Tone Mai Song +\uAADB;Tai Viet Symbol Kon +\uAADC;Tai Viet Symbol Nueng +\uAADD;Tai Viet Symbol Sam +\uAADE;Tai Viet Symbol Ho Hoi +\uAADF;Tai Viet Symbol Koi Koi +\uAAE0;Meetei Mayek Letter E +\uAAE1;Meetei Mayek Letter O +\uAAE2;Meetei Mayek Letter Cha +\uAAE3;Meetei Mayek Letter Nya +\uAAE4;Meetei Mayek Letter Tta +\uAAE5;Meetei Mayek Letter Ttha +\uAAE6;Meetei Mayek Letter Dda +\uAAE7;Meetei Mayek Letter Ddha +\uAAE8;Meetei Mayek Letter Nna +\uAAE9;Meetei Mayek Letter Sha +\uAAEA;Meetei Mayek Letter Ssa +\uAAEB;Meetei Mayek Vowel Sign Ii +\uAAEC;Meetei Mayek Vowel Sign Uu +\uAAED;Meetei Mayek Vowel Sign Aai +\uAAEE;Meetei Mayek Vowel Sign Au +\uAAEF;Meetei Mayek Vowel Sign Aau +\uAAF0;Meetei Mayek Cheikhan +\uAAF1;Meetei Mayek Ahang Khudam +\uAAF2;Meetei Mayek Anji +\uAAF3;Meetei Mayek Syllable Repetition Mark +\uAAF4;Meetei Mayek Word Repetition Mark +\uAAF5;Meetei Mayek Vowel Sign Visarga +\uAAF6;Meetei Mayek Virama +\uAB01;Ethiopic Syllable Tthu +\uAB02;Ethiopic Syllable Tthi +\uAB03;Ethiopic Syllable Tthaa +\uAB04;Ethiopic Syllable Tthee +\uAB05;Ethiopic Syllable Tthe +\uAB06;Ethiopic Syllable Ttho +\uAB09;Ethiopic Syllable Ddhu +\uAB0A;Ethiopic Syllable Ddhi +\uAB0B;Ethiopic Syllable Ddhaa +\uAB0C;Ethiopic Syllable Ddhee +\uAB0D;Ethiopic Syllable Ddhe +\uAB0E;Ethiopic Syllable Ddho +\uAB11;Ethiopic Syllable Dzu +\uAB12;Ethiopic Syllable Dzi +\uAB13;Ethiopic Syllable Dzaa +\uAB14;Ethiopic Syllable Dzee +\uAB15;Ethiopic Syllable Dze +\uAB16;Ethiopic Syllable Dzo +\uAB20;Ethiopic Syllable Cchha +\uAB21;Ethiopic Syllable Cchhu +\uAB22;Ethiopic Syllable Cchhi +\uAB23;Ethiopic Syllable Cchhaa +\uAB24;Ethiopic Syllable Cchhee +\uAB25;Ethiopic Syllable Cchhe +\uAB26;Ethiopic Syllable Cchho +\uAB28;Ethiopic Syllable Bba +\uAB29;Ethiopic Syllable Bbu +\uAB2A;Ethiopic Syllable Bbi +\uAB2B;Ethiopic Syllable Bbaa +\uAB2C;Ethiopic Syllable Bbee +\uAB2D;Ethiopic Syllable Bbe +\uAB2E;Ethiopic Syllable Bbo +\uAB30;Latin Small Letter Barred Alpha +\uAB31;Latin Small Letter A Reversed-Schwa +\uAB32;Latin Small Letter Blackletter E +\uAB33;Latin Small Letter Barred E +\uAB34;Latin Small Letter E With Flourish +\uAB35;Latin Small Letter Lenis F +\uAB36;Latin Small Letter Script G With Crossed-Tail +\uAB37;Latin Small Letter L With Inverted Lazy S +\uAB38;Latin Small Letter L With Double Middle Tilde +\uAB39;Latin Small Letter L With Middle Ring +\uAB3A;Latin Small Letter M With Crossed-Tail +\uAB3B;Latin Small Letter N With Crossed-Tail +\uAB3C;Latin Small Letter Eng With Crossed-Tail +\uAB3D;Latin Small Letter Blackletter O +\uAB3E;Latin Small Letter Blackletter O With Stroke +\uAB3F;Latin Small Letter Open O With Stroke +\uAB40;Latin Small Letter Inverted Oe +\uAB41;Latin Small Letter Turned Oe With Stroke +\uAB42;Latin Small Letter Turned Oe With Horizontal Stroke +\uAB43;Latin Small Letter Turned O Open-O +\uAB44;Latin Small Letter Turned O Open-O With Stroke +\uAB45;Latin Small Letter Stirrup R +\uAB46;Latin Letter Small Capital R With Right Leg +\uAB47;Latin Small Letter R Without Handle +\uAB48;Latin Small Letter Double R +\uAB49;Latin Small Letter R With Crossed-Tail +\uAB4A;Latin Small Letter Double R With Crossed-Tail +\uAB4B;Latin Small Letter Script R +\uAB4C;Latin Small Letter Script R With Ring +\uAB4D;Latin Small Letter Baseline Esh +\uAB4E;Latin Small Letter U With Short Right Leg +\uAB4F;Latin Small Letter U Bar With Short Right Leg +\uAB50;Latin Small Letter Ui +\uAB51;Latin Small Letter Turned Ui +\uAB52;Latin Small Letter U With Left Hook +\uAB53;Latin Small Letter Chi +\uAB54;Latin Small Letter Chi With Low Right Ring +\uAB55;Latin Small Letter Chi With Low Left Serif +\uAB56;Latin Small Letter X With Low Right Ring +\uAB57;Latin Small Letter X With Long Left Leg +\uAB58;Latin Small Letter X With Long Left Leg And Low Right Ring +\uAB59;Latin Small Letter X With Long Left Leg With Serif +\uAB5A;Latin Small Letter Y With Short Right Leg +\uAB5B;Modifier Breve With Inverted Breve +\uAB5C;Modifier Letter Small Heng +\uAB5D;Modifier Letter Small L With Inverted Lazy S +\uAB5E;Modifier Letter Small L With Middle Tilde +\uAB5F;Modifier Letter Small U With Left Hook +\uAB60;Latin Small Letter Sakha Yat +\uAB61;Latin Small Letter Iotified E +\uAB62;Latin Small Letter Open Oe +\uAB63;Latin Small Letter Uo +\uAB64;Latin Small Letter Inverted Alpha +\uAB65;Greek Letter Small Capital Omega +\uAB66;Latin Small Letter Dz Digraph With Retroflex Hook +\uAB67;Latin Small Letter Ts Digraph With Retroflex Hook +\uAB68;Latin Small Letter Turned R With Middle Tilde +\uAB69;Modifier Letter Small Turned W +\uAB6A;Modifier Letter Left Tack +\uAB6B;Modifier Letter Right Tack +\uAB70;Cherokee Small Letter A +\uAB71;Cherokee Small Letter E +\uAB72;Cherokee Small Letter I +\uAB73;Cherokee Small Letter O +\uAB74;Cherokee Small Letter U +\uAB75;Cherokee Small Letter V +\uAB76;Cherokee Small Letter Ga +\uAB77;Cherokee Small Letter Ka +\uAB78;Cherokee Small Letter Ge +\uAB79;Cherokee Small Letter Gi +\uAB7A;Cherokee Small Letter Go +\uAB7B;Cherokee Small Letter Gu +\uAB7C;Cherokee Small Letter Gv +\uAB7D;Cherokee Small Letter Ha +\uAB7E;Cherokee Small Letter He +\uAB7F;Cherokee Small Letter Hi +\uAB80;Cherokee Small Letter Ho +\uAB81;Cherokee Small Letter Hu +\uAB82;Cherokee Small Letter Hv +\uAB83;Cherokee Small Letter La +\uAB84;Cherokee Small Letter Le +\uAB85;Cherokee Small Letter Li +\uAB86;Cherokee Small Letter Lo +\uAB87;Cherokee Small Letter Lu +\uAB88;Cherokee Small Letter Lv +\uAB89;Cherokee Small Letter Ma +\uAB8A;Cherokee Small Letter Me +\uAB8B;Cherokee Small Letter Mi +\uAB8C;Cherokee Small Letter Mo +\uAB8D;Cherokee Small Letter Mu +\uAB8E;Cherokee Small Letter Na +\uAB8F;Cherokee Small Letter Hna +\uAB90;Cherokee Small Letter Nah +\uAB91;Cherokee Small Letter Ne +\uAB92;Cherokee Small Letter Ni +\uAB93;Cherokee Small Letter No +\uAB94;Cherokee Small Letter Nu +\uAB95;Cherokee Small Letter Nv +\uAB96;Cherokee Small Letter Qua +\uAB97;Cherokee Small Letter Que +\uAB98;Cherokee Small Letter Qui +\uAB99;Cherokee Small Letter Quo +\uAB9A;Cherokee Small Letter Quu +\uAB9B;Cherokee Small Letter Quv +\uAB9C;Cherokee Small Letter Sa +\uAB9D;Cherokee Small Letter S +\uAB9E;Cherokee Small Letter Se +\uAB9F;Cherokee Small Letter Si +\uABA0;Cherokee Small Letter So +\uABA1;Cherokee Small Letter Su +\uABA2;Cherokee Small Letter Sv +\uABA3;Cherokee Small Letter Da +\uABA4;Cherokee Small Letter Ta +\uABA5;Cherokee Small Letter De +\uABA6;Cherokee Small Letter Te +\uABA7;Cherokee Small Letter Di +\uABA8;Cherokee Small Letter Ti +\uABA9;Cherokee Small Letter Do +\uABAA;Cherokee Small Letter Du +\uABAB;Cherokee Small Letter Dv +\uABAC;Cherokee Small Letter Dla +\uABAD;Cherokee Small Letter Tla +\uABAE;Cherokee Small Letter Tle +\uABAF;Cherokee Small Letter Tli +\uABB0;Cherokee Small Letter Tlo +\uABB1;Cherokee Small Letter Tlu +\uABB2;Cherokee Small Letter Tlv +\uABB3;Cherokee Small Letter Tsa +\uABB4;Cherokee Small Letter Tse +\uABB5;Cherokee Small Letter Tsi +\uABB6;Cherokee Small Letter Tso +\uABB7;Cherokee Small Letter Tsu +\uABB8;Cherokee Small Letter Tsv +\uABB9;Cherokee Small Letter Wa +\uABBA;Cherokee Small Letter We +\uABBB;Cherokee Small Letter Wi +\uABBC;Cherokee Small Letter Wo +\uABBD;Cherokee Small Letter Wu +\uABBE;Cherokee Small Letter Wv +\uABBF;Cherokee Small Letter Ya +\uABC0;Meetei Mayek Letter Kok +\uABC1;Meetei Mayek Letter Sam +\uABC2;Meetei Mayek Letter Lai +\uABC3;Meetei Mayek Letter Mit +\uABC4;Meetei Mayek Letter Pa +\uABC5;Meetei Mayek Letter Na +\uABC6;Meetei Mayek Letter Chil +\uABC7;Meetei Mayek Letter Til +\uABC8;Meetei Mayek Letter Khou +\uABC9;Meetei Mayek Letter Ngou +\uABCA;Meetei Mayek Letter Thou +\uABCB;Meetei Mayek Letter Wai +\uABCC;Meetei Mayek Letter Yang +\uABCD;Meetei Mayek Letter Huk +\uABCE;Meetei Mayek Letter Un +\uABCF;Meetei Mayek Letter I +\uABD0;Meetei Mayek Letter Pham +\uABD1;Meetei Mayek Letter Atiya +\uABD2;Meetei Mayek Letter Gok +\uABD3;Meetei Mayek Letter Jham +\uABD4;Meetei Mayek Letter Rai +\uABD5;Meetei Mayek Letter Ba +\uABD6;Meetei Mayek Letter Jil +\uABD7;Meetei Mayek Letter Dil +\uABD8;Meetei Mayek Letter Ghou +\uABD9;Meetei Mayek Letter Dhou +\uABDA;Meetei Mayek Letter Bham +\uABDB;Meetei Mayek Letter Kok Lonsum +\uABDC;Meetei Mayek Letter Lai Lonsum +\uABDD;Meetei Mayek Letter Mit Lonsum +\uABDE;Meetei Mayek Letter Pa Lonsum +\uABDF;Meetei Mayek Letter Na Lonsum +\uABE0;Meetei Mayek Letter Til Lonsum +\uABE1;Meetei Mayek Letter Ngou Lonsum +\uABE2;Meetei Mayek Letter I Lonsum +\uABE3;Meetei Mayek Vowel Sign Onap +\uABE4;Meetei Mayek Vowel Sign Inap +\uABE5;Meetei Mayek Vowel Sign Anap +\uABE6;Meetei Mayek Vowel Sign Yenap +\uABE7;Meetei Mayek Vowel Sign Sounap +\uABE8;Meetei Mayek Vowel Sign Unap +\uABE9;Meetei Mayek Vowel Sign Cheinap +\uABEA;Meetei Mayek Vowel Sign Nung +\uABEB;Meetei Mayek Cheikhei +\uABEC;Meetei Mayek Lum Iyek +\uABED;Meetei Mayek Apun Iyek +\uABF0;Meetei Mayek Digit Zero +\uABF1;Meetei Mayek Digit One +\uABF2;Meetei Mayek Digit Two +\uABF3;Meetei Mayek Digit Three +\uABF4;Meetei Mayek Digit Four +\uABF5;Meetei Mayek Digit Five +\uABF6;Meetei Mayek Digit Six +\uABF7;Meetei Mayek Digit Seven +\uABF8;Meetei Mayek Digit Eight +\uABF9;Meetei Mayek Digit Nine +\uD7B0;Hangul Jungseong O-Yeo +\uD7B1;Hangul Jungseong O-O-I +\uD7B2;Hangul Jungseong Yo-A +\uD7B3;Hangul Jungseong Yo-Ae +\uD7B4;Hangul Jungseong Yo-Eo +\uD7B5;Hangul Jungseong U-Yeo +\uD7B6;Hangul Jungseong U-I-I +\uD7B7;Hangul Jungseong Yu-Ae +\uD7B8;Hangul Jungseong Yu-O +\uD7B9;Hangul Jungseong Eu-A +\uD7BA;Hangul Jungseong Eu-Eo +\uD7BB;Hangul Jungseong Eu-E +\uD7BC;Hangul Jungseong Eu-O +\uD7BD;Hangul Jungseong I-Ya-O +\uD7BE;Hangul Jungseong I-Yae +\uD7BF;Hangul Jungseong I-Yeo +\uD7C0;Hangul Jungseong I-Ye +\uD7C1;Hangul Jungseong I-O-I +\uD7C2;Hangul Jungseong I-Yo +\uD7C3;Hangul Jungseong I-Yu +\uD7C4;Hangul Jungseong I-I +\uD7C5;Hangul Jungseong Araea-A +\uD7C6;Hangul Jungseong Araea-E +\uD7CB;Hangul Jongseong Nieun-Rieul +\uD7CC;Hangul Jongseong Nieun-Chieuch +\uD7CD;Hangul Jongseong Ssangtikeut +\uD7CE;Hangul Jongseong Ssangtikeut-Pieup +\uD7CF;Hangul Jongseong Tikeut-Pieup +\uD7D0;Hangul Jongseong Tikeut-Sios +\uD7D1;Hangul Jongseong Tikeut-Sios-Kiyeok +\uD7D2;Hangul Jongseong Tikeut-Cieuc +\uD7D3;Hangul Jongseong Tikeut-Chieuch +\uD7D4;Hangul Jongseong Tikeut-Thieuth +\uD7D5;Hangul Jongseong Rieul-Ssangkiyeok +\uD7D6;Hangul Jongseong Rieul-Kiyeok-Hieuh +\uD7D7;Hangul Jongseong Ssangrieul-Khieukh +\uD7D8;Hangul Jongseong Rieul-Mieum-Hieuh +\uD7D9;Hangul Jongseong Rieul-Pieup-Tikeut +\uD7DA;Hangul Jongseong Rieul-Pieup-Phieuph +\uD7DB;Hangul Jongseong Rieul-Yesieung +\uD7DC;Hangul Jongseong Rieul-Yeorinhieuh-Hieuh +\uD7DD;Hangul Jongseong Kapyeounrieul +\uD7DE;Hangul Jongseong Mieum-Nieun +\uD7DF;Hangul Jongseong Mieum-Ssangnieun +\uD7E0;Hangul Jongseong Ssangmieum +\uD7E1;Hangul Jongseong Mieum-Pieup-Sios +\uD7E2;Hangul Jongseong Mieum-Cieuc +\uD7E3;Hangul Jongseong Pieup-Tikeut +\uD7E4;Hangul Jongseong Pieup-Rieul-Phieuph +\uD7E5;Hangul Jongseong Pieup-Mieum +\uD7E6;Hangul Jongseong Ssangpieup +\uD7E7;Hangul Jongseong Pieup-Sios-Tikeut +\uD7E8;Hangul Jongseong Pieup-Cieuc +\uD7E9;Hangul Jongseong Pieup-Chieuch +\uD7EA;Hangul Jongseong Sios-Mieum +\uD7EB;Hangul Jongseong Sios-Kapyeounpieup +\uD7EC;Hangul Jongseong Ssangsios-Kiyeok +\uD7ED;Hangul Jongseong Ssangsios-Tikeut +\uD7EE;Hangul Jongseong Sios-Pansios +\uD7EF;Hangul Jongseong Sios-Cieuc +\uD7F0;Hangul Jongseong Sios-Chieuch +\uD7F1;Hangul Jongseong Sios-Thieuth +\uD7F2;Hangul Jongseong Sios-Hieuh +\uD7F3;Hangul Jongseong Pansios-Pieup +\uD7F4;Hangul Jongseong Pansios-Kapyeounpieup +\uD7F5;Hangul Jongseong Yesieung-Mieum +\uD7F6;Hangul Jongseong Yesieung-Hieuh +\uD7F7;Hangul Jongseong Cieuc-Pieup +\uD7F8;Hangul Jongseong Cieuc-Ssangpieup +\uD7F9;Hangul Jongseong Ssangcieuc +\uD7FA;Hangul Jongseong Phieuph-Sios +\uD7FB;Hangul Jongseong Phieuph-Thieuth +\uFB00;Latin Small Ligature Ff +\uFB01;Latin Small Ligature Fi +\uFB02;Latin Small Ligature Fl +\uFB03;Latin Small Ligature Ffi +\uFB04;Latin Small Ligature Ffl +\uFB05;Latin Small Ligature Long S T +\uFB06;Latin Small Ligature St +\uFB13;Armenian Small Ligature Men Now +\uFB14;Armenian Small Ligature Men Ech +\uFB15;Armenian Small Ligature Men Ini +\uFB16;Armenian Small Ligature Vew Now +\uFB17;Armenian Small Ligature Men Xeh +\uFB1D;Hebrew Letter Yod With Hiriq +\uFB1E;Hebrew Point Judeo-Spanish Varika +\uFB1F;Hebrew Ligature Yiddish Yod Yod Patah +\uFB20;Hebrew Letter Alternative Ayin +\uFB21;Hebrew Letter Wide Alef +\uFB22;Hebrew Letter Wide Dalet +\uFB23;Hebrew Letter Wide He +\uFB24;Hebrew Letter Wide Kaf +\uFB25;Hebrew Letter Wide Lamed +\uFB26;Hebrew Letter Wide Final Mem +\uFB27;Hebrew Letter Wide Resh +\uFB28;Hebrew Letter Wide Tav +\uFB29;Hebrew Letter Alternative Plus Sign +\uFB2A;Hebrew Letter Shin With Shin Dot +\uFB2B;Hebrew Letter Shin With Sin Dot +\uFB2C;Hebrew Letter Shin With Dagesh And Shin Dot +\uFB2D;Hebrew Letter Shin With Dagesh And Sin Dot +\uFB2E;Hebrew Letter Alef With Patah +\uFB2F;Hebrew Letter Alef With Qamats +\uFB30;Hebrew Letter Alef With Mapiq +\uFB31;Hebrew Letter Bet With Dagesh +\uFB32;Hebrew Letter Gimel With Dagesh +\uFB33;Hebrew Letter Dalet With Dagesh +\uFB34;Hebrew Letter He With Mapiq +\uFB35;Hebrew Letter Vav With Dagesh +\uFB36;Hebrew Letter Zayin With Dagesh +\uFB38;Hebrew Letter Tet With Dagesh +\uFB39;Hebrew Letter Yod With Dagesh +\uFB3A;Hebrew Letter Final Kaf With Dagesh +\uFB3B;Hebrew Letter Kaf With Dagesh +\uFB3C;Hebrew Letter Lamed With Dagesh +\uFB3E;Hebrew Letter Mem With Dagesh +\uFB40;Hebrew Letter Nun With Dagesh +\uFB41;Hebrew Letter Samekh With Dagesh +\uFB43;Hebrew Letter Final Pe With Dagesh +\uFB44;Hebrew Letter Pe With Dagesh +\uFB46;Hebrew Letter Tsadi With Dagesh +\uFB47;Hebrew Letter Qof With Dagesh +\uFB48;Hebrew Letter Resh With Dagesh +\uFB49;Hebrew Letter Shin With Dagesh +\uFB4A;Hebrew Letter Tav With Dagesh +\uFB4B;Hebrew Letter Vav With Holam +\uFB4C;Hebrew Letter Bet With Rafe +\uFB4D;Hebrew Letter Kaf With Rafe +\uFB4E;Hebrew Letter Pe With Rafe +\uFB4F;Hebrew Ligature Alef Lamed +\uFB50;Arabic Letter Alef Wasla Isolated Form +\uFB51;Arabic Letter Alef Wasla Final Form +\uFB52;Arabic Letter Beeh Isolated Form +\uFB53;Arabic Letter Beeh Final Form +\uFB54;Arabic Letter Beeh Initial Form +\uFB55;Arabic Letter Beeh Medial Form +\uFB56;Arabic Letter Peh Isolated Form +\uFB57;Arabic Letter Peh Final Form +\uFB58;Arabic Letter Peh Initial Form +\uFB59;Arabic Letter Peh Medial Form +\uFB5A;Arabic Letter Beheh Isolated Form +\uFB5B;Arabic Letter Beheh Final Form +\uFB5C;Arabic Letter Beheh Initial Form +\uFB5D;Arabic Letter Beheh Medial Form +\uFB5E;Arabic Letter Tteheh Isolated Form +\uFB5F;Arabic Letter Tteheh Final Form +\uFB60;Arabic Letter Tteheh Initial Form +\uFB61;Arabic Letter Tteheh Medial Form +\uFB62;Arabic Letter Teheh Isolated Form +\uFB63;Arabic Letter Teheh Final Form +\uFB64;Arabic Letter Teheh Initial Form +\uFB65;Arabic Letter Teheh Medial Form +\uFB66;Arabic Letter Tteh Isolated Form +\uFB67;Arabic Letter Tteh Final Form +\uFB68;Arabic Letter Tteh Initial Form +\uFB69;Arabic Letter Tteh Medial Form +\uFB6A;Arabic Letter Veh Isolated Form +\uFB6B;Arabic Letter Veh Final Form +\uFB6C;Arabic Letter Veh Initial Form +\uFB6D;Arabic Letter Veh Medial Form +\uFB6E;Arabic Letter Peheh Isolated Form +\uFB6F;Arabic Letter Peheh Final Form +\uFB70;Arabic Letter Peheh Initial Form +\uFB71;Arabic Letter Peheh Medial Form +\uFB72;Arabic Letter Dyeh Isolated Form +\uFB73;Arabic Letter Dyeh Final Form +\uFB74;Arabic Letter Dyeh Initial Form +\uFB75;Arabic Letter Dyeh Medial Form +\uFB76;Arabic Letter Nyeh Isolated Form +\uFB77;Arabic Letter Nyeh Final Form +\uFB78;Arabic Letter Nyeh Initial Form +\uFB79;Arabic Letter Nyeh Medial Form +\uFB7A;Arabic Letter Tcheh Isolated Form +\uFB7B;Arabic Letter Tcheh Final Form +\uFB7C;Arabic Letter Tcheh Initial Form +\uFB7D;Arabic Letter Tcheh Medial Form +\uFB7E;Arabic Letter Tcheheh Isolated Form +\uFB7F;Arabic Letter Tcheheh Final Form +\uFB80;Arabic Letter Tcheheh Initial Form +\uFB81;Arabic Letter Tcheheh Medial Form +\uFB82;Arabic Letter Ddahal Isolated Form +\uFB83;Arabic Letter Ddahal Final Form +\uFB84;Arabic Letter Dahal Isolated Form +\uFB85;Arabic Letter Dahal Final Form +\uFB86;Arabic Letter Dul Isolated Form +\uFB87;Arabic Letter Dul Final Form +\uFB88;Arabic Letter Ddal Isolated Form +\uFB89;Arabic Letter Ddal Final Form +\uFB8A;Arabic Letter Jeh Isolated Form +\uFB8B;Arabic Letter Jeh Final Form +\uFB8C;Arabic Letter Rreh Isolated Form +\uFB8D;Arabic Letter Rreh Final Form +\uFB8E;Arabic Letter Keheh Isolated Form +\uFB8F;Arabic Letter Keheh Final Form +\uFB90;Arabic Letter Keheh Initial Form +\uFB91;Arabic Letter Keheh Medial Form +\uFB92;Arabic Letter Gaf Isolated Form +\uFB93;Arabic Letter Gaf Final Form +\uFB94;Arabic Letter Gaf Initial Form +\uFB95;Arabic Letter Gaf Medial Form +\uFB96;Arabic Letter Gueh Isolated Form +\uFB97;Arabic Letter Gueh Final Form +\uFB98;Arabic Letter Gueh Initial Form +\uFB99;Arabic Letter Gueh Medial Form +\uFB9A;Arabic Letter Ngoeh Isolated Form +\uFB9B;Arabic Letter Ngoeh Final Form +\uFB9C;Arabic Letter Ngoeh Initial Form +\uFB9D;Arabic Letter Ngoeh Medial Form +\uFB9E;Arabic Letter Noon Ghunna Isolated Form +\uFB9F;Arabic Letter Noon Ghunna Final Form +\uFBA0;Arabic Letter Rnoon Isolated Form +\uFBA1;Arabic Letter Rnoon Final Form +\uFBA2;Arabic Letter Rnoon Initial Form +\uFBA3;Arabic Letter Rnoon Medial Form +\uFBA4;Arabic Letter Heh With Yeh Above Isolated Form +\uFBA5;Arabic Letter Heh With Yeh Above Final Form +\uFBA6;Arabic Letter Heh Goal Isolated Form +\uFBA7;Arabic Letter Heh Goal Final Form +\uFBA8;Arabic Letter Heh Goal Initial Form +\uFBA9;Arabic Letter Heh Goal Medial Form +\uFBAA;Arabic Letter Heh Doachashmee Isolated Form +\uFBAB;Arabic Letter Heh Doachashmee Final Form +\uFBAC;Arabic Letter Heh Doachashmee Initial Form +\uFBAD;Arabic Letter Heh Doachashmee Medial Form +\uFBAE;Arabic Letter Yeh Barree Isolated Form +\uFBAF;Arabic Letter Yeh Barree Final Form +\uFBB0;Arabic Letter Yeh Barree With Hamza Above Isolated Form +\uFBB1;Arabic Letter Yeh Barree With Hamza Above Final Form +\uFBB2;Arabic Symbol Dot Above +\uFBB3;Arabic Symbol Dot Below +\uFBB4;Arabic Symbol Two Dots Above +\uFBB5;Arabic Symbol Two Dots Below +\uFBB6;Arabic Symbol Three Dots Above +\uFBB7;Arabic Symbol Three Dots Below +\uFBB8;Arabic Symbol Three Dots Pointing Downwards Above +\uFBB9;Arabic Symbol Three Dots Pointing Downwards Below +\uFBBA;Arabic Symbol Four Dots Above +\uFBBB;Arabic Symbol Four Dots Below +\uFBBC;Arabic Symbol Double Vertical Bar Below +\uFBBD;Arabic Symbol Two Dots Vertically Above +\uFBBE;Arabic Symbol Two Dots Vertically Below +\uFBBF;Arabic Symbol Ring +\uFBC0;Arabic Symbol Small Tah Above +\uFBC1;Arabic Symbol Small Tah Below +\uFBC2;Arabic Symbol Wasla Above +\uFBD3;Arabic Letter Ng Isolated Form +\uFBD4;Arabic Letter Ng Final Form +\uFBD5;Arabic Letter Ng Initial Form +\uFBD6;Arabic Letter Ng Medial Form +\uFBD7;Arabic Letter U Isolated Form +\uFBD8;Arabic Letter U Final Form +\uFBD9;Arabic Letter Oe Isolated Form +\uFBDA;Arabic Letter Oe Final Form +\uFBDB;Arabic Letter Yu Isolated Form +\uFBDC;Arabic Letter Yu Final Form +\uFBDD;Arabic Letter U With Hamza Above Isolated Form +\uFBDE;Arabic Letter Ve Isolated Form +\uFBDF;Arabic Letter Ve Final Form +\uFBE0;Arabic Letter Kirghiz Oe Isolated Form +\uFBE1;Arabic Letter Kirghiz Oe Final Form +\uFBE2;Arabic Letter Kirghiz Yu Isolated Form +\uFBE3;Arabic Letter Kirghiz Yu Final Form +\uFBE4;Arabic Letter E Isolated Form +\uFBE5;Arabic Letter E Final Form +\uFBE6;Arabic Letter E Initial Form +\uFBE7;Arabic Letter E Medial Form +\uFBE8;Arabic Letter Uighur Kazakh Kirghiz Alef Maksura Initial Form +\uFBE9;Arabic Letter Uighur Kazakh Kirghiz Alef Maksura Medial Form +\uFBEA;Arabic Ligature Yeh With Hamza Above With Alef Isolated Form +\uFBEB;Arabic Ligature Yeh With Hamza Above With Alef Final Form +\uFBEC;Arabic Ligature Yeh With Hamza Above With Ae Isolated Form +\uFBED;Arabic Ligature Yeh With Hamza Above With Ae Final Form +\uFBEE;Arabic Ligature Yeh With Hamza Above With Waw Isolated Form +\uFBEF;Arabic Ligature Yeh With Hamza Above With Waw Final Form +\uFBF0;Arabic Ligature Yeh With Hamza Above With U Isolated Form +\uFBF1;Arabic Ligature Yeh With Hamza Above With U Final Form +\uFBF2;Arabic Ligature Yeh With Hamza Above With Oe Isolated Form +\uFBF3;Arabic Ligature Yeh With Hamza Above With Oe Final Form +\uFBF4;Arabic Ligature Yeh With Hamza Above With Yu Isolated Form +\uFBF5;Arabic Ligature Yeh With Hamza Above With Yu Final Form +\uFBF6;Arabic Ligature Yeh With Hamza Above With E Isolated Form +\uFBF7;Arabic Ligature Yeh With Hamza Above With E Final Form +\uFBF8;Arabic Ligature Yeh With Hamza Above With E Initial Form +\uFBF9;Arabic Ligature Uighur Kirghiz Yeh With Hamza Above With Alef Maksura Isolated Form +\uFBFA;Arabic Ligature Uighur Kirghiz Yeh With Hamza Above With Alef Maksura Final Form +\uFBFB;Arabic Ligature Uighur Kirghiz Yeh With Hamza Above With Alef Maksura Initial Form +\uFBFC;Arabic Letter Farsi Yeh Isolated Form +\uFBFD;Arabic Letter Farsi Yeh Final Form +\uFBFE;Arabic Letter Farsi Yeh Initial Form +\uFBFF;Arabic Letter Farsi Yeh Medial Form +\uFC00;Arabic Ligature Yeh With Hamza Above With Jeem Isolated Form +\uFC01;Arabic Ligature Yeh With Hamza Above With Hah Isolated Form +\uFC02;Arabic Ligature Yeh With Hamza Above With Meem Isolated Form +\uFC03;Arabic Ligature Yeh With Hamza Above With Alef Maksura Isolated Form +\uFC04;Arabic Ligature Yeh With Hamza Above With Yeh Isolated Form +\uFC05;Arabic Ligature Beh With Jeem Isolated Form +\uFC06;Arabic Ligature Beh With Hah Isolated Form +\uFC07;Arabic Ligature Beh With Khah Isolated Form +\uFC08;Arabic Ligature Beh With Meem Isolated Form +\uFC09;Arabic Ligature Beh With Alef Maksura Isolated Form +\uFC0A;Arabic Ligature Beh With Yeh Isolated Form +\uFC0B;Arabic Ligature Teh With Jeem Isolated Form +\uFC0C;Arabic Ligature Teh With Hah Isolated Form +\uFC0D;Arabic Ligature Teh With Khah Isolated Form +\uFC0E;Arabic Ligature Teh With Meem Isolated Form +\uFC0F;Arabic Ligature Teh With Alef Maksura Isolated Form +\uFC10;Arabic Ligature Teh With Yeh Isolated Form +\uFC11;Arabic Ligature Theh With Jeem Isolated Form +\uFC12;Arabic Ligature Theh With Meem Isolated Form +\uFC13;Arabic Ligature Theh With Alef Maksura Isolated Form +\uFC14;Arabic Ligature Theh With Yeh Isolated Form +\uFC15;Arabic Ligature Jeem With Hah Isolated Form +\uFC16;Arabic Ligature Jeem With Meem Isolated Form +\uFC17;Arabic Ligature Hah With Jeem Isolated Form +\uFC18;Arabic Ligature Hah With Meem Isolated Form +\uFC19;Arabic Ligature Khah With Jeem Isolated Form +\uFC1A;Arabic Ligature Khah With Hah Isolated Form +\uFC1B;Arabic Ligature Khah With Meem Isolated Form +\uFC1C;Arabic Ligature Seen With Jeem Isolated Form +\uFC1D;Arabic Ligature Seen With Hah Isolated Form +\uFC1E;Arabic Ligature Seen With Khah Isolated Form +\uFC1F;Arabic Ligature Seen With Meem Isolated Form +\uFC20;Arabic Ligature Sad With Hah Isolated Form +\uFC21;Arabic Ligature Sad With Meem Isolated Form +\uFC22;Arabic Ligature Dad With Jeem Isolated Form +\uFC23;Arabic Ligature Dad With Hah Isolated Form +\uFC24;Arabic Ligature Dad With Khah Isolated Form +\uFC25;Arabic Ligature Dad With Meem Isolated Form +\uFC26;Arabic Ligature Tah With Hah Isolated Form +\uFC27;Arabic Ligature Tah With Meem Isolated Form +\uFC28;Arabic Ligature Zah With Meem Isolated Form +\uFC29;Arabic Ligature Ain With Jeem Isolated Form +\uFC2A;Arabic Ligature Ain With Meem Isolated Form +\uFC2B;Arabic Ligature Ghain With Jeem Isolated Form +\uFC2C;Arabic Ligature Ghain With Meem Isolated Form +\uFC2D;Arabic Ligature Feh With Jeem Isolated Form +\uFC2E;Arabic Ligature Feh With Hah Isolated Form +\uFC2F;Arabic Ligature Feh With Khah Isolated Form +\uFC30;Arabic Ligature Feh With Meem Isolated Form +\uFC31;Arabic Ligature Feh With Alef Maksura Isolated Form +\uFC32;Arabic Ligature Feh With Yeh Isolated Form +\uFC33;Arabic Ligature Qaf With Hah Isolated Form +\uFC34;Arabic Ligature Qaf With Meem Isolated Form +\uFC35;Arabic Ligature Qaf With Alef Maksura Isolated Form +\uFC36;Arabic Ligature Qaf With Yeh Isolated Form +\uFC37;Arabic Ligature Kaf With Alef Isolated Form +\uFC38;Arabic Ligature Kaf With Jeem Isolated Form +\uFC39;Arabic Ligature Kaf With Hah Isolated Form +\uFC3A;Arabic Ligature Kaf With Khah Isolated Form +\uFC3B;Arabic Ligature Kaf With Lam Isolated Form +\uFC3C;Arabic Ligature Kaf With Meem Isolated Form +\uFC3D;Arabic Ligature Kaf With Alef Maksura Isolated Form +\uFC3E;Arabic Ligature Kaf With Yeh Isolated Form +\uFC3F;Arabic Ligature Lam With Jeem Isolated Form +\uFC40;Arabic Ligature Lam With Hah Isolated Form +\uFC41;Arabic Ligature Lam With Khah Isolated Form +\uFC42;Arabic Ligature Lam With Meem Isolated Form +\uFC43;Arabic Ligature Lam With Alef Maksura Isolated Form +\uFC44;Arabic Ligature Lam With Yeh Isolated Form +\uFC45;Arabic Ligature Meem With Jeem Isolated Form +\uFC46;Arabic Ligature Meem With Hah Isolated Form +\uFC47;Arabic Ligature Meem With Khah Isolated Form +\uFC48;Arabic Ligature Meem With Meem Isolated Form +\uFC49;Arabic Ligature Meem With Alef Maksura Isolated Form +\uFC4A;Arabic Ligature Meem With Yeh Isolated Form +\uFC4B;Arabic Ligature Noon With Jeem Isolated Form +\uFC4C;Arabic Ligature Noon With Hah Isolated Form +\uFC4D;Arabic Ligature Noon With Khah Isolated Form +\uFC4E;Arabic Ligature Noon With Meem Isolated Form +\uFC4F;Arabic Ligature Noon With Alef Maksura Isolated Form +\uFC50;Arabic Ligature Noon With Yeh Isolated Form +\uFC51;Arabic Ligature Heh With Jeem Isolated Form +\uFC52;Arabic Ligature Heh With Meem Isolated Form +\uFC53;Arabic Ligature Heh With Alef Maksura Isolated Form +\uFC54;Arabic Ligature Heh With Yeh Isolated Form +\uFC55;Arabic Ligature Yeh With Jeem Isolated Form +\uFC56;Arabic Ligature Yeh With Hah Isolated Form +\uFC57;Arabic Ligature Yeh With Khah Isolated Form +\uFC58;Arabic Ligature Yeh With Meem Isolated Form +\uFC59;Arabic Ligature Yeh With Alef Maksura Isolated Form +\uFC5A;Arabic Ligature Yeh With Yeh Isolated Form +\uFC5B;Arabic Ligature Thal With Superscript Alef Isolated Form +\uFC5C;Arabic Ligature Reh With Superscript Alef Isolated Form +\uFC5D;Arabic Ligature Alef Maksura With Superscript Alef Isolated Form +\uFC5E;Arabic Ligature Shadda With Dammatan Isolated Form +\uFC5F;Arabic Ligature Shadda With Kasratan Isolated Form +\uFC60;Arabic Ligature Shadda With Fatha Isolated Form +\uFC61;Arabic Ligature Shadda With Damma Isolated Form +\uFC62;Arabic Ligature Shadda With Kasra Isolated Form +\uFC63;Arabic Ligature Shadda With Superscript Alef Isolated Form +\uFC64;Arabic Ligature Yeh With Hamza Above With Reh Final Form +\uFC65;Arabic Ligature Yeh With Hamza Above With Zain Final Form +\uFC66;Arabic Ligature Yeh With Hamza Above With Meem Final Form +\uFC67;Arabic Ligature Yeh With Hamza Above With Noon Final Form +\uFC68;Arabic Ligature Yeh With Hamza Above With Alef Maksura Final Form +\uFC69;Arabic Ligature Yeh With Hamza Above With Yeh Final Form +\uFC6A;Arabic Ligature Beh With Reh Final Form +\uFC6B;Arabic Ligature Beh With Zain Final Form +\uFC6C;Arabic Ligature Beh With Meem Final Form +\uFC6D;Arabic Ligature Beh With Noon Final Form +\uFC6E;Arabic Ligature Beh With Alef Maksura Final Form +\uFC6F;Arabic Ligature Beh With Yeh Final Form +\uFC70;Arabic Ligature Teh With Reh Final Form +\uFC71;Arabic Ligature Teh With Zain Final Form +\uFC72;Arabic Ligature Teh With Meem Final Form +\uFC73;Arabic Ligature Teh With Noon Final Form +\uFC74;Arabic Ligature Teh With Alef Maksura Final Form +\uFC75;Arabic Ligature Teh With Yeh Final Form +\uFC76;Arabic Ligature Theh With Reh Final Form +\uFC77;Arabic Ligature Theh With Zain Final Form +\uFC78;Arabic Ligature Theh With Meem Final Form +\uFC79;Arabic Ligature Theh With Noon Final Form +\uFC7A;Arabic Ligature Theh With Alef Maksura Final Form +\uFC7B;Arabic Ligature Theh With Yeh Final Form +\uFC7C;Arabic Ligature Feh With Alef Maksura Final Form +\uFC7D;Arabic Ligature Feh With Yeh Final Form +\uFC7E;Arabic Ligature Qaf With Alef Maksura Final Form +\uFC7F;Arabic Ligature Qaf With Yeh Final Form +\uFC80;Arabic Ligature Kaf With Alef Final Form +\uFC81;Arabic Ligature Kaf With Lam Final Form +\uFC82;Arabic Ligature Kaf With Meem Final Form +\uFC83;Arabic Ligature Kaf With Alef Maksura Final Form +\uFC84;Arabic Ligature Kaf With Yeh Final Form +\uFC85;Arabic Ligature Lam With Meem Final Form +\uFC86;Arabic Ligature Lam With Alef Maksura Final Form +\uFC87;Arabic Ligature Lam With Yeh Final Form +\uFC88;Arabic Ligature Meem With Alef Final Form +\uFC89;Arabic Ligature Meem With Meem Final Form +\uFC8A;Arabic Ligature Noon With Reh Final Form +\uFC8B;Arabic Ligature Noon With Zain Final Form +\uFC8C;Arabic Ligature Noon With Meem Final Form +\uFC8D;Arabic Ligature Noon With Noon Final Form +\uFC8E;Arabic Ligature Noon With Alef Maksura Final Form +\uFC8F;Arabic Ligature Noon With Yeh Final Form +\uFC90;Arabic Ligature Alef Maksura With Superscript Alef Final Form +\uFC91;Arabic Ligature Yeh With Reh Final Form +\uFC92;Arabic Ligature Yeh With Zain Final Form +\uFC93;Arabic Ligature Yeh With Meem Final Form +\uFC94;Arabic Ligature Yeh With Noon Final Form +\uFC95;Arabic Ligature Yeh With Alef Maksura Final Form +\uFC96;Arabic Ligature Yeh With Yeh Final Form +\uFC97;Arabic Ligature Yeh With Hamza Above With Jeem Initial Form +\uFC98;Arabic Ligature Yeh With Hamza Above With Hah Initial Form +\uFC99;Arabic Ligature Yeh With Hamza Above With Khah Initial Form +\uFC9A;Arabic Ligature Yeh With Hamza Above With Meem Initial Form +\uFC9B;Arabic Ligature Yeh With Hamza Above With Heh Initial Form +\uFC9C;Arabic Ligature Beh With Jeem Initial Form +\uFC9D;Arabic Ligature Beh With Hah Initial Form +\uFC9E;Arabic Ligature Beh With Khah Initial Form +\uFC9F;Arabic Ligature Beh With Meem Initial Form +\uFCA0;Arabic Ligature Beh With Heh Initial Form +\uFCA1;Arabic Ligature Teh With Jeem Initial Form +\uFCA2;Arabic Ligature Teh With Hah Initial Form +\uFCA3;Arabic Ligature Teh With Khah Initial Form +\uFCA4;Arabic Ligature Teh With Meem Initial Form +\uFCA5;Arabic Ligature Teh With Heh Initial Form +\uFCA6;Arabic Ligature Theh With Meem Initial Form +\uFCA7;Arabic Ligature Jeem With Hah Initial Form +\uFCA8;Arabic Ligature Jeem With Meem Initial Form +\uFCA9;Arabic Ligature Hah With Jeem Initial Form +\uFCAA;Arabic Ligature Hah With Meem Initial Form +\uFCAB;Arabic Ligature Khah With Jeem Initial Form +\uFCAC;Arabic Ligature Khah With Meem Initial Form +\uFCAD;Arabic Ligature Seen With Jeem Initial Form +\uFCAE;Arabic Ligature Seen With Hah Initial Form +\uFCAF;Arabic Ligature Seen With Khah Initial Form +\uFCB0;Arabic Ligature Seen With Meem Initial Form +\uFCB1;Arabic Ligature Sad With Hah Initial Form +\uFCB2;Arabic Ligature Sad With Khah Initial Form +\uFCB3;Arabic Ligature Sad With Meem Initial Form +\uFCB4;Arabic Ligature Dad With Jeem Initial Form +\uFCB5;Arabic Ligature Dad With Hah Initial Form +\uFCB6;Arabic Ligature Dad With Khah Initial Form +\uFCB7;Arabic Ligature Dad With Meem Initial Form +\uFCB8;Arabic Ligature Tah With Hah Initial Form +\uFCB9;Arabic Ligature Zah With Meem Initial Form +\uFCBA;Arabic Ligature Ain With Jeem Initial Form +\uFCBB;Arabic Ligature Ain With Meem Initial Form +\uFCBC;Arabic Ligature Ghain With Jeem Initial Form +\uFCBD;Arabic Ligature Ghain With Meem Initial Form +\uFCBE;Arabic Ligature Feh With Jeem Initial Form +\uFCBF;Arabic Ligature Feh With Hah Initial Form +\uFCC0;Arabic Ligature Feh With Khah Initial Form +\uFCC1;Arabic Ligature Feh With Meem Initial Form +\uFCC2;Arabic Ligature Qaf With Hah Initial Form +\uFCC3;Arabic Ligature Qaf With Meem Initial Form +\uFCC4;Arabic Ligature Kaf With Jeem Initial Form +\uFCC5;Arabic Ligature Kaf With Hah Initial Form +\uFCC6;Arabic Ligature Kaf With Khah Initial Form +\uFCC7;Arabic Ligature Kaf With Lam Initial Form +\uFCC8;Arabic Ligature Kaf With Meem Initial Form +\uFCC9;Arabic Ligature Lam With Jeem Initial Form +\uFCCA;Arabic Ligature Lam With Hah Initial Form +\uFCCB;Arabic Ligature Lam With Khah Initial Form +\uFCCC;Arabic Ligature Lam With Meem Initial Form +\uFCCD;Arabic Ligature Lam With Heh Initial Form +\uFCCE;Arabic Ligature Meem With Jeem Initial Form +\uFCCF;Arabic Ligature Meem With Hah Initial Form +\uFCD0;Arabic Ligature Meem With Khah Initial Form +\uFCD1;Arabic Ligature Meem With Meem Initial Form +\uFCD2;Arabic Ligature Noon With Jeem Initial Form +\uFCD3;Arabic Ligature Noon With Hah Initial Form +\uFCD4;Arabic Ligature Noon With Khah Initial Form +\uFCD5;Arabic Ligature Noon With Meem Initial Form +\uFCD6;Arabic Ligature Noon With Heh Initial Form +\uFCD7;Arabic Ligature Heh With Jeem Initial Form +\uFCD8;Arabic Ligature Heh With Meem Initial Form +\uFCD9;Arabic Ligature Heh With Superscript Alef Initial Form +\uFCDA;Arabic Ligature Yeh With Jeem Initial Form +\uFCDB;Arabic Ligature Yeh With Hah Initial Form +\uFCDC;Arabic Ligature Yeh With Khah Initial Form +\uFCDD;Arabic Ligature Yeh With Meem Initial Form +\uFCDE;Arabic Ligature Yeh With Heh Initial Form +\uFCDF;Arabic Ligature Yeh With Hamza Above With Meem Medial Form +\uFCE0;Arabic Ligature Yeh With Hamza Above With Heh Medial Form +\uFCE1;Arabic Ligature Beh With Meem Medial Form +\uFCE2;Arabic Ligature Beh With Heh Medial Form +\uFCE3;Arabic Ligature Teh With Meem Medial Form +\uFCE4;Arabic Ligature Teh With Heh Medial Form +\uFCE5;Arabic Ligature Theh With Meem Medial Form +\uFCE6;Arabic Ligature Theh With Heh Medial Form +\uFCE7;Arabic Ligature Seen With Meem Medial Form +\uFCE8;Arabic Ligature Seen With Heh Medial Form +\uFCE9;Arabic Ligature Sheen With Meem Medial Form +\uFCEA;Arabic Ligature Sheen With Heh Medial Form +\uFCEB;Arabic Ligature Kaf With Lam Medial Form +\uFCEC;Arabic Ligature Kaf With Meem Medial Form +\uFCED;Arabic Ligature Lam With Meem Medial Form +\uFCEE;Arabic Ligature Noon With Meem Medial Form +\uFCEF;Arabic Ligature Noon With Heh Medial Form +\uFCF0;Arabic Ligature Yeh With Meem Medial Form +\uFCF1;Arabic Ligature Yeh With Heh Medial Form +\uFCF2;Arabic Ligature Shadda With Fatha Medial Form +\uFCF3;Arabic Ligature Shadda With Damma Medial Form +\uFCF4;Arabic Ligature Shadda With Kasra Medial Form +\uFCF5;Arabic Ligature Tah With Alef Maksura Isolated Form +\uFCF6;Arabic Ligature Tah With Yeh Isolated Form +\uFCF7;Arabic Ligature Ain With Alef Maksura Isolated Form +\uFCF8;Arabic Ligature Ain With Yeh Isolated Form +\uFCF9;Arabic Ligature Ghain With Alef Maksura Isolated Form +\uFCFA;Arabic Ligature Ghain With Yeh Isolated Form +\uFCFB;Arabic Ligature Seen With Alef Maksura Isolated Form +\uFCFC;Arabic Ligature Seen With Yeh Isolated Form +\uFCFD;Arabic Ligature Sheen With Alef Maksura Isolated Form +\uFCFE;Arabic Ligature Sheen With Yeh Isolated Form +\uFCFF;Arabic Ligature Hah With Alef Maksura Isolated Form +\uFD00;Arabic Ligature Hah With Yeh Isolated Form +\uFD01;Arabic Ligature Jeem With Alef Maksura Isolated Form +\uFD02;Arabic Ligature Jeem With Yeh Isolated Form +\uFD03;Arabic Ligature Khah With Alef Maksura Isolated Form +\uFD04;Arabic Ligature Khah With Yeh Isolated Form +\uFD05;Arabic Ligature Sad With Alef Maksura Isolated Form +\uFD06;Arabic Ligature Sad With Yeh Isolated Form +\uFD07;Arabic Ligature Dad With Alef Maksura Isolated Form +\uFD08;Arabic Ligature Dad With Yeh Isolated Form +\uFD09;Arabic Ligature Sheen With Jeem Isolated Form +\uFD0A;Arabic Ligature Sheen With Hah Isolated Form +\uFD0B;Arabic Ligature Sheen With Khah Isolated Form +\uFD0C;Arabic Ligature Sheen With Meem Isolated Form +\uFD0D;Arabic Ligature Sheen With Reh Isolated Form +\uFD0E;Arabic Ligature Seen With Reh Isolated Form +\uFD0F;Arabic Ligature Sad With Reh Isolated Form +\uFD10;Arabic Ligature Dad With Reh Isolated Form +\uFD11;Arabic Ligature Tah With Alef Maksura Final Form +\uFD12;Arabic Ligature Tah With Yeh Final Form +\uFD13;Arabic Ligature Ain With Alef Maksura Final Form +\uFD14;Arabic Ligature Ain With Yeh Final Form +\uFD15;Arabic Ligature Ghain With Alef Maksura Final Form +\uFD16;Arabic Ligature Ghain With Yeh Final Form +\uFD17;Arabic Ligature Seen With Alef Maksura Final Form +\uFD18;Arabic Ligature Seen With Yeh Final Form +\uFD19;Arabic Ligature Sheen With Alef Maksura Final Form +\uFD1A;Arabic Ligature Sheen With Yeh Final Form +\uFD1B;Arabic Ligature Hah With Alef Maksura Final Form +\uFD1C;Arabic Ligature Hah With Yeh Final Form +\uFD1D;Arabic Ligature Jeem With Alef Maksura Final Form +\uFD1E;Arabic Ligature Jeem With Yeh Final Form +\uFD1F;Arabic Ligature Khah With Alef Maksura Final Form +\uFD20;Arabic Ligature Khah With Yeh Final Form +\uFD21;Arabic Ligature Sad With Alef Maksura Final Form +\uFD22;Arabic Ligature Sad With Yeh Final Form +\uFD23;Arabic Ligature Dad With Alef Maksura Final Form +\uFD24;Arabic Ligature Dad With Yeh Final Form +\uFD25;Arabic Ligature Sheen With Jeem Final Form +\uFD26;Arabic Ligature Sheen With Hah Final Form +\uFD27;Arabic Ligature Sheen With Khah Final Form +\uFD28;Arabic Ligature Sheen With Meem Final Form +\uFD29;Arabic Ligature Sheen With Reh Final Form +\uFD2A;Arabic Ligature Seen With Reh Final Form +\uFD2B;Arabic Ligature Sad With Reh Final Form +\uFD2C;Arabic Ligature Dad With Reh Final Form +\uFD2D;Arabic Ligature Sheen With Jeem Initial Form +\uFD2E;Arabic Ligature Sheen With Hah Initial Form +\uFD2F;Arabic Ligature Sheen With Khah Initial Form +\uFD30;Arabic Ligature Sheen With Meem Initial Form +\uFD31;Arabic Ligature Seen With Heh Initial Form +\uFD32;Arabic Ligature Sheen With Heh Initial Form +\uFD33;Arabic Ligature Tah With Meem Initial Form +\uFD34;Arabic Ligature Seen With Jeem Medial Form +\uFD35;Arabic Ligature Seen With Hah Medial Form +\uFD36;Arabic Ligature Seen With Khah Medial Form +\uFD37;Arabic Ligature Sheen With Jeem Medial Form +\uFD38;Arabic Ligature Sheen With Hah Medial Form +\uFD39;Arabic Ligature Sheen With Khah Medial Form +\uFD3A;Arabic Ligature Tah With Meem Medial Form +\uFD3B;Arabic Ligature Zah With Meem Medial Form +\uFD3C;Arabic Ligature Alef With Fathatan Final Form +\uFD3D;Arabic Ligature Alef With Fathatan Isolated Form +\uFD3E;Ornate Left Parenthesis +\uFD3F;Ornate Right Parenthesis +\uFD40;Arabic Ligature Rahimahu Allaah +\uFD41;Arabic Ligature Radi Allaahu Anh +\uFD42;Arabic Ligature Radi Allaahu Anhaa +\uFD43;Arabic Ligature Radi Allaahu Anhum +\uFD44;Arabic Ligature Radi Allaahu Anhumaa +\uFD45;Arabic Ligature Radi Allaahu Anhunna +\uFD46;Arabic Ligature Sallallaahu Alayhi Wa-Aalih +\uFD47;Arabic Ligature Alayhi As-Salaam +\uFD48;Arabic Ligature Alayhim As-Salaam +\uFD49;Arabic Ligature Alayhimaa As-Salaam +\uFD4A;Arabic Ligature Alayhi As-Salaatu Was-Salaam +\uFD4B;Arabic Ligature Quddisa Sirrah +\uFD4C;Arabic Ligature Sallallahu Alayhi Waaalihee Wa-Sallam +\uFD4D;Arabic Ligature Alayhaa As-Salaam +\uFD4E;Arabic Ligature Tabaaraka Wa-Taaalaa +\uFD4F;Arabic Ligature Rahimahum Allaah +\uFD50;Arabic Ligature Teh With Jeem With Meem Initial Form +\uFD51;Arabic Ligature Teh With Hah With Jeem Final Form +\uFD52;Arabic Ligature Teh With Hah With Jeem Initial Form +\uFD53;Arabic Ligature Teh With Hah With Meem Initial Form +\uFD54;Arabic Ligature Teh With Khah With Meem Initial Form +\uFD55;Arabic Ligature Teh With Meem With Jeem Initial Form +\uFD56;Arabic Ligature Teh With Meem With Hah Initial Form +\uFD57;Arabic Ligature Teh With Meem With Khah Initial Form +\uFD58;Arabic Ligature Jeem With Meem With Hah Final Form +\uFD59;Arabic Ligature Jeem With Meem With Hah Initial Form +\uFD5A;Arabic Ligature Hah With Meem With Yeh Final Form +\uFD5B;Arabic Ligature Hah With Meem With Alef Maksura Final Form +\uFD5C;Arabic Ligature Seen With Hah With Jeem Initial Form +\uFD5D;Arabic Ligature Seen With Jeem With Hah Initial Form +\uFD5E;Arabic Ligature Seen With Jeem With Alef Maksura Final Form +\uFD5F;Arabic Ligature Seen With Meem With Hah Final Form +\uFD60;Arabic Ligature Seen With Meem With Hah Initial Form +\uFD61;Arabic Ligature Seen With Meem With Jeem Initial Form +\uFD62;Arabic Ligature Seen With Meem With Meem Final Form +\uFD63;Arabic Ligature Seen With Meem With Meem Initial Form +\uFD64;Arabic Ligature Sad With Hah With Hah Final Form +\uFD65;Arabic Ligature Sad With Hah With Hah Initial Form +\uFD66;Arabic Ligature Sad With Meem With Meem Final Form +\uFD67;Arabic Ligature Sheen With Hah With Meem Final Form +\uFD68;Arabic Ligature Sheen With Hah With Meem Initial Form +\uFD69;Arabic Ligature Sheen With Jeem With Yeh Final Form +\uFD6A;Arabic Ligature Sheen With Meem With Khah Final Form +\uFD6B;Arabic Ligature Sheen With Meem With Khah Initial Form +\uFD6C;Arabic Ligature Sheen With Meem With Meem Final Form +\uFD6D;Arabic Ligature Sheen With Meem With Meem Initial Form +\uFD6E;Arabic Ligature Dad With Hah With Alef Maksura Final Form +\uFD6F;Arabic Ligature Dad With Khah With Meem Final Form +\uFD70;Arabic Ligature Dad With Khah With Meem Initial Form +\uFD71;Arabic Ligature Tah With Meem With Hah Final Form +\uFD72;Arabic Ligature Tah With Meem With Hah Initial Form +\uFD73;Arabic Ligature Tah With Meem With Meem Initial Form +\uFD74;Arabic Ligature Tah With Meem With Yeh Final Form +\uFD75;Arabic Ligature Ain With Jeem With Meem Final Form +\uFD76;Arabic Ligature Ain With Meem With Meem Final Form +\uFD77;Arabic Ligature Ain With Meem With Meem Initial Form +\uFD78;Arabic Ligature Ain With Meem With Alef Maksura Final Form +\uFD79;Arabic Ligature Ghain With Meem With Meem Final Form +\uFD7A;Arabic Ligature Ghain With Meem With Yeh Final Form +\uFD7B;Arabic Ligature Ghain With Meem With Alef Maksura Final Form +\uFD7C;Arabic Ligature Feh With Khah With Meem Final Form +\uFD7D;Arabic Ligature Feh With Khah With Meem Initial Form +\uFD7E;Arabic Ligature Qaf With Meem With Hah Final Form +\uFD7F;Arabic Ligature Qaf With Meem With Meem Final Form +\uFD80;Arabic Ligature Lam With Hah With Meem Final Form +\uFD81;Arabic Ligature Lam With Hah With Yeh Final Form +\uFD82;Arabic Ligature Lam With Hah With Alef Maksura Final Form +\uFD83;Arabic Ligature Lam With Jeem With Jeem Initial Form +\uFD84;Arabic Ligature Lam With Jeem With Jeem Final Form +\uFD85;Arabic Ligature Lam With Khah With Meem Final Form +\uFD86;Arabic Ligature Lam With Khah With Meem Initial Form +\uFD87;Arabic Ligature Lam With Meem With Hah Final Form +\uFD88;Arabic Ligature Lam With Meem With Hah Initial Form +\uFD89;Arabic Ligature Meem With Hah With Jeem Initial Form +\uFD8A;Arabic Ligature Meem With Hah With Meem Initial Form +\uFD8B;Arabic Ligature Meem With Hah With Yeh Final Form +\uFD8C;Arabic Ligature Meem With Jeem With Hah Initial Form +\uFD8D;Arabic Ligature Meem With Jeem With Meem Initial Form +\uFD8E;Arabic Ligature Meem With Khah With Jeem Initial Form +\uFD8F;Arabic Ligature Meem With Khah With Meem Initial Form +\uFD92;Arabic Ligature Meem With Jeem With Khah Initial Form +\uFD93;Arabic Ligature Heh With Meem With Jeem Initial Form +\uFD94;Arabic Ligature Heh With Meem With Meem Initial Form +\uFD95;Arabic Ligature Noon With Hah With Meem Initial Form +\uFD96;Arabic Ligature Noon With Hah With Alef Maksura Final Form +\uFD97;Arabic Ligature Noon With Jeem With Meem Final Form +\uFD98;Arabic Ligature Noon With Jeem With Meem Initial Form +\uFD99;Arabic Ligature Noon With Jeem With Alef Maksura Final Form +\uFD9A;Arabic Ligature Noon With Meem With Yeh Final Form +\uFD9B;Arabic Ligature Noon With Meem With Alef Maksura Final Form +\uFD9C;Arabic Ligature Yeh With Meem With Meem Final Form +\uFD9D;Arabic Ligature Yeh With Meem With Meem Initial Form +\uFD9E;Arabic Ligature Beh With Khah With Yeh Final Form +\uFD9F;Arabic Ligature Teh With Jeem With Yeh Final Form +\uFDA0;Arabic Ligature Teh With Jeem With Alef Maksura Final Form +\uFDA1;Arabic Ligature Teh With Khah With Yeh Final Form +\uFDA2;Arabic Ligature Teh With Khah With Alef Maksura Final Form +\uFDA3;Arabic Ligature Teh With Meem With Yeh Final Form +\uFDA4;Arabic Ligature Teh With Meem With Alef Maksura Final Form +\uFDA5;Arabic Ligature Jeem With Meem With Yeh Final Form +\uFDA6;Arabic Ligature Jeem With Hah With Alef Maksura Final Form +\uFDA7;Arabic Ligature Jeem With Meem With Alef Maksura Final Form +\uFDA8;Arabic Ligature Seen With Khah With Alef Maksura Final Form +\uFDA9;Arabic Ligature Sad With Hah With Yeh Final Form +\uFDAA;Arabic Ligature Sheen With Hah With Yeh Final Form +\uFDAB;Arabic Ligature Dad With Hah With Yeh Final Form +\uFDAC;Arabic Ligature Lam With Jeem With Yeh Final Form +\uFDAD;Arabic Ligature Lam With Meem With Yeh Final Form +\uFDAE;Arabic Ligature Yeh With Hah With Yeh Final Form +\uFDAF;Arabic Ligature Yeh With Jeem With Yeh Final Form +\uFDB0;Arabic Ligature Yeh With Meem With Yeh Final Form +\uFDB1;Arabic Ligature Meem With Meem With Yeh Final Form +\uFDB2;Arabic Ligature Qaf With Meem With Yeh Final Form +\uFDB3;Arabic Ligature Noon With Hah With Yeh Final Form +\uFDB4;Arabic Ligature Qaf With Meem With Hah Initial Form +\uFDB5;Arabic Ligature Lam With Hah With Meem Initial Form +\uFDB6;Arabic Ligature Ain With Meem With Yeh Final Form +\uFDB7;Arabic Ligature Kaf With Meem With Yeh Final Form +\uFDB8;Arabic Ligature Noon With Jeem With Hah Initial Form +\uFDB9;Arabic Ligature Meem With Khah With Yeh Final Form +\uFDBA;Arabic Ligature Lam With Jeem With Meem Initial Form +\uFDBB;Arabic Ligature Kaf With Meem With Meem Final Form +\uFDBC;Arabic Ligature Lam With Jeem With Meem Final Form +\uFDBD;Arabic Ligature Noon With Jeem With Hah Final Form +\uFDBE;Arabic Ligature Jeem With Hah With Yeh Final Form +\uFDBF;Arabic Ligature Hah With Jeem With Yeh Final Form +\uFDC0;Arabic Ligature Meem With Jeem With Yeh Final Form +\uFDC1;Arabic Ligature Feh With Meem With Yeh Final Form +\uFDC2;Arabic Ligature Beh With Hah With Yeh Final Form +\uFDC3;Arabic Ligature Kaf With Meem With Meem Initial Form +\uFDC4;Arabic Ligature Ain With Jeem With Meem Initial Form +\uFDC5;Arabic Ligature Sad With Meem With Meem Initial Form +\uFDC6;Arabic Ligature Seen With Khah With Yeh Final Form +\uFDC7;Arabic Ligature Noon With Jeem With Yeh Final Form +\uFDCF;Arabic Ligature Salaamuhu Alaynaa +\uFDF0;Arabic Ligature Salla Used As Koranic Stop Sign Isolated Form +\uFDF1;Arabic Ligature Qala Used As Koranic Stop Sign Isolated Form +\uFDF2;Arabic Ligature Allah Isolated Form +\uFDF3;Arabic Ligature Akbar Isolated Form +\uFDF4;Arabic Ligature Mohammad Isolated Form +\uFDF5;Arabic Ligature Salam Isolated Form +\uFDF6;Arabic Ligature Rasoul Isolated Form +\uFDF7;Arabic Ligature Alayhe Isolated Form +\uFDF8;Arabic Ligature Wasallam Isolated Form +\uFDF9;Arabic Ligature Salla Isolated Form +\uFDFA;Arabic Ligature Sallallahou Alayhe Wasallam +\uFDFB;Arabic Ligature Jallajalalouhou +\uFDFC;Rial Sign +\uFDFD;Arabic Ligature Bismillah Ar-Rahman Ar-Raheem +\uFDFE;Arabic Ligature Subhaanahu Wa Taaalaa +\uFDFF;Arabic Ligature Azza Wa Jall +\uFE10;Presentation Form For Vertical Comma +\uFE11;Presentation Form For Vertical Ideographic Comma +\uFE12;Presentation Form For Vertical Ideographic Full Stop +\uFE13;Presentation Form For Vertical Colon +\uFE14;Presentation Form For Vertical Semicolon +\uFE15;Presentation Form For Vertical Exclamation Mark +\uFE16;Presentation Form For Vertical Question Mark +\uFE17;Presentation Form For Vertical Left White Lenticular Bracket +\uFE18;Presentation Form For Vertical Right White Lenticular Brakcet +\uFE19;Presentation Form For Vertical Horizontal Ellipsis +\uFE20;Combining Ligature Left Half +\uFE21;Combining Ligature Right Half +\uFE22;Combining Double Tilde Left Half +\uFE23;Combining Double Tilde Right Half +\uFE24;Combining Macron Left Half +\uFE25;Combining Macron Right Half +\uFE26;Combining Conjoining Macron +\uFE27;Combining Ligature Left Half Below +\uFE28;Combining Ligature Right Half Below +\uFE29;Combining Tilde Left Half Below +\uFE2A;Combining Tilde Right Half Below +\uFE2B;Combining Macron Left Half Below +\uFE2C;Combining Macron Right Half Below +\uFE2D;Combining Conjoining Macron Below +\uFE2E;Combining Cyrillic Titlo Left Half +\uFE2F;Combining Cyrillic Titlo Right Half +\uFE30;Presentation Form For Vertical Two Dot Leader +\uFE31;Presentation Form For Vertical Em Dash +\uFE32;Presentation Form For Vertical En Dash +\uFE33;Presentation Form For Vertical Low Line +\uFE34;Presentation Form For Vertical Wavy Low Line +\uFE35;Presentation Form For Vertical Left Parenthesis +\uFE36;Presentation Form For Vertical Right Parenthesis +\uFE37;Presentation Form For Vertical Left Curly Bracket +\uFE38;Presentation Form For Vertical Right Curly Bracket +\uFE39;Presentation Form For Vertical Left Tortoise Shell Bracket +\uFE3A;Presentation Form For Vertical Right Tortoise Shell Bracket +\uFE3B;Presentation Form For Vertical Left Black Lenticular Bracket +\uFE3C;Presentation Form For Vertical Right Black Lenticular Bracket +\uFE3D;Presentation Form For Vertical Left Double Angle Bracket +\uFE3E;Presentation Form For Vertical Right Double Angle Bracket +\uFE3F;Presentation Form For Vertical Left Angle Bracket +\uFE40;Presentation Form For Vertical Right Angle Bracket +\uFE41;Presentation Form For Vertical Left Corner Bracket +\uFE42;Presentation Form For Vertical Right Corner Bracket +\uFE43;Presentation Form For Vertical Left White Corner Bracket +\uFE44;Presentation Form For Vertical Right White Corner Bracket +\uFE45;Sesame Dot +\uFE46;White Sesame Dot +\uFE47;Presentation Form For Vertical Left Square Bracket +\uFE48;Presentation Form For Vertical Right Square Bracket +\uFE49;Dashed Overline +\uFE4A;Centreline Overline +\uFE4B;Wavy Overline +\uFE4C;Double Wavy Overline +\uFE4D;Dashed Low Line +\uFE4E;Centreline Low Line +\uFE4F;Wavy Low Line +\uFE50;Small Comma +\uFE51;Small Ideographic Comma +\uFE52;Small Full Stop +\uFE54;Small Semicolon +\uFE55;Small Colon +\uFE56;Small Question Mark +\uFE57;Small Exclamation Mark +\uFE58;Small Em Dash +\uFE59;Small Left Parenthesis +\uFE5A;Small Right Parenthesis +\uFE5B;Small Left Curly Bracket +\uFE5C;Small Right Curly Bracket +\uFE5D;Small Left Tortoise Shell Bracket +\uFE5E;Small Right Tortoise Shell Bracket +\uFE5F;Small Number Sign +\uFE60;Small Ampersand +\uFE61;Small Asterisk +\uFE62;Small Plus Sign +\uFE63;Small Hyphen-Minus +\uFE64;Small Less-Than Sign +\uFE65;Small Greater-Than Sign +\uFE66;Small Equals Sign +\uFE68;Small Reverse Solidus +\uFE69;Small Dollar Sign +\uFE6A;Small Percent Sign +\uFE6B;Small Commercial At +\uFE70;Arabic Fathatan Isolated Form +\uFE71;Arabic Tatweel With Fathatan Above +\uFE72;Arabic Dammatan Isolated Form +\uFE73;Arabic Tail Fragment +\uFE74;Arabic Kasratan Isolated Form +\uFE76;Arabic Fatha Isolated Form +\uFE77;Arabic Fatha Medial Form +\uFE78;Arabic Damma Isolated Form +\uFE79;Arabic Damma Medial Form +\uFE7A;Arabic Kasra Isolated Form +\uFE7B;Arabic Kasra Medial Form +\uFE7C;Arabic Shadda Isolated Form +\uFE7D;Arabic Shadda Medial Form +\uFE7E;Arabic Sukun Isolated Form +\uFE7F;Arabic Sukun Medial Form +\uFE80;Arabic Letter Hamza Isolated Form +\uFE81;Arabic Letter Alef With Madda Above Isolated Form +\uFE82;Arabic Letter Alef With Madda Above Final Form +\uFE83;Arabic Letter Alef With Hamza Above Isolated Form +\uFE84;Arabic Letter Alef With Hamza Above Final Form +\uFE85;Arabic Letter Waw With Hamza Above Isolated Form +\uFE86;Arabic Letter Waw With Hamza Above Final Form +\uFE87;Arabic Letter Alef With Hamza Below Isolated Form +\uFE88;Arabic Letter Alef With Hamza Below Final Form +\uFE89;Arabic Letter Yeh With Hamza Above Isolated Form +\uFE8A;Arabic Letter Yeh With Hamza Above Final Form +\uFE8B;Arabic Letter Yeh With Hamza Above Initial Form +\uFE8C;Arabic Letter Yeh With Hamza Above Medial Form +\uFE8D;Arabic Letter Alef Isolated Form +\uFE8E;Arabic Letter Alef Final Form +\uFE8F;Arabic Letter Beh Isolated Form +\uFE90;Arabic Letter Beh Final Form +\uFE91;Arabic Letter Beh Initial Form +\uFE92;Arabic Letter Beh Medial Form +\uFE93;Arabic Letter Teh Marbuta Isolated Form +\uFE94;Arabic Letter Teh Marbuta Final Form +\uFE95;Arabic Letter Teh Isolated Form +\uFE96;Arabic Letter Teh Final Form +\uFE97;Arabic Letter Teh Initial Form +\uFE98;Arabic Letter Teh Medial Form +\uFE99;Arabic Letter Theh Isolated Form +\uFE9A;Arabic Letter Theh Final Form +\uFE9B;Arabic Letter Theh Initial Form +\uFE9C;Arabic Letter Theh Medial Form +\uFE9D;Arabic Letter Jeem Isolated Form +\uFE9E;Arabic Letter Jeem Final Form +\uFE9F;Arabic Letter Jeem Initial Form +\uFEA0;Arabic Letter Jeem Medial Form +\uFEA1;Arabic Letter Hah Isolated Form +\uFEA2;Arabic Letter Hah Final Form +\uFEA3;Arabic Letter Hah Initial Form +\uFEA4;Arabic Letter Hah Medial Form +\uFEA5;Arabic Letter Khah Isolated Form +\uFEA6;Arabic Letter Khah Final Form +\uFEA7;Arabic Letter Khah Initial Form +\uFEA8;Arabic Letter Khah Medial Form +\uFEA9;Arabic Letter Dal Isolated Form +\uFEAA;Arabic Letter Dal Final Form +\uFEAB;Arabic Letter Thal Isolated Form +\uFEAC;Arabic Letter Thal Final Form +\uFEAD;Arabic Letter Reh Isolated Form +\uFEAE;Arabic Letter Reh Final Form +\uFEAF;Arabic Letter Zain Isolated Form +\uFEB0;Arabic Letter Zain Final Form +\uFEB1;Arabic Letter Seen Isolated Form +\uFEB2;Arabic Letter Seen Final Form +\uFEB3;Arabic Letter Seen Initial Form +\uFEB4;Arabic Letter Seen Medial Form +\uFEB5;Arabic Letter Sheen Isolated Form +\uFEB6;Arabic Letter Sheen Final Form +\uFEB7;Arabic Letter Sheen Initial Form +\uFEB8;Arabic Letter Sheen Medial Form +\uFEB9;Arabic Letter Sad Isolated Form +\uFEBA;Arabic Letter Sad Final Form +\uFEBB;Arabic Letter Sad Initial Form +\uFEBC;Arabic Letter Sad Medial Form +\uFEBD;Arabic Letter Dad Isolated Form +\uFEBE;Arabic Letter Dad Final Form +\uFEBF;Arabic Letter Dad Initial Form +\uFEC0;Arabic Letter Dad Medial Form +\uFEC1;Arabic Letter Tah Isolated Form +\uFEC2;Arabic Letter Tah Final Form +\uFEC3;Arabic Letter Tah Initial Form +\uFEC4;Arabic Letter Tah Medial Form +\uFEC5;Arabic Letter Zah Isolated Form +\uFEC6;Arabic Letter Zah Final Form +\uFEC7;Arabic Letter Zah Initial Form +\uFEC8;Arabic Letter Zah Medial Form +\uFEC9;Arabic Letter Ain Isolated Form +\uFECA;Arabic Letter Ain Final Form +\uFECB;Arabic Letter Ain Initial Form +\uFECC;Arabic Letter Ain Medial Form +\uFECD;Arabic Letter Ghain Isolated Form +\uFECE;Arabic Letter Ghain Final Form +\uFECF;Arabic Letter Ghain Initial Form +\uFED0;Arabic Letter Ghain Medial Form +\uFED1;Arabic Letter Feh Isolated Form +\uFED2;Arabic Letter Feh Final Form +\uFED3;Arabic Letter Feh Initial Form +\uFED4;Arabic Letter Feh Medial Form +\uFED5;Arabic Letter Qaf Isolated Form +\uFED6;Arabic Letter Qaf Final Form +\uFED7;Arabic Letter Qaf Initial Form +\uFED8;Arabic Letter Qaf Medial Form +\uFED9;Arabic Letter Kaf Isolated Form +\uFEDA;Arabic Letter Kaf Final Form +\uFEDB;Arabic Letter Kaf Initial Form +\uFEDC;Arabic Letter Kaf Medial Form +\uFEDD;Arabic Letter Lam Isolated Form +\uFEDE;Arabic Letter Lam Final Form +\uFEDF;Arabic Letter Lam Initial Form +\uFEE0;Arabic Letter Lam Medial Form +\uFEE1;Arabic Letter Meem Isolated Form +\uFEE2;Arabic Letter Meem Final Form +\uFEE3;Arabic Letter Meem Initial Form +\uFEE4;Arabic Letter Meem Medial Form +\uFEE5;Arabic Letter Noon Isolated Form +\uFEE6;Arabic Letter Noon Final Form +\uFEE7;Arabic Letter Noon Initial Form +\uFEE8;Arabic Letter Noon Medial Form +\uFEE9;Arabic Letter Heh Isolated Form +\uFEEA;Arabic Letter Heh Final Form +\uFEEB;Arabic Letter Heh Initial Form +\uFEEC;Arabic Letter Heh Medial Form +\uFEED;Arabic Letter Waw Isolated Form +\uFEEE;Arabic Letter Waw Final Form +\uFEEF;Arabic Letter Alef Maksura Isolated Form +\uFEF0;Arabic Letter Alef Maksura Final Form +\uFEF1;Arabic Letter Yeh Isolated Form +\uFEF2;Arabic Letter Yeh Final Form +\uFEF3;Arabic Letter Yeh Initial Form +\uFEF4;Arabic Letter Yeh Medial Form +\uFEF5;Arabic Ligature Lam With Alef With Madda Above Isolated Form +\uFEF6;Arabic Ligature Lam With Alef With Madda Above Final Form +\uFEF7;Arabic Ligature Lam With Alef With Hamza Above Isolated Form +\uFEF8;Arabic Ligature Lam With Alef With Hamza Above Final Form +\uFEF9;Arabic Ligature Lam With Alef With Hamza Below Isolated Form +\uFEFA;Arabic Ligature Lam With Alef With Hamza Below Final Form +\uFEFB;Arabic Ligature Lam With Alef Isolated Form +\uFEFC;Arabic Ligature Lam With Alef Final Form +\uFEFF;Zero Width No-Break Space +\uFF01;Fullwidth Exclamation Mark +\uFF02;Fullwidth Quotation Mark +\uFF03;Fullwidth Number Sign +\uFF04;Fullwidth Dollar Sign +\uFF05;Fullwidth Percent Sign +\uFF06;Fullwidth Ampersand +\uFF07;Fullwidth Apostrophe +\uFF08;Fullwidth Left Parenthesis +\uFF09;Fullwidth Right Parenthesis +\uFF0A;Fullwidth Asterisk +\uFF0B;Fullwidth Plus Sign +\uFF0C;Fullwidth Comma +\uFF0D;Fullwidth Hyphen-Minus +\uFF0E;Fullwidth Full Stop +\uFF0F;Fullwidth Solidus +\uFF10;Fullwidth Digit Zero +\uFF11;Fullwidth Digit One +\uFF12;Fullwidth Digit Two +\uFF13;Fullwidth Digit Three +\uFF14;Fullwidth Digit Four +\uFF15;Fullwidth Digit Five +\uFF16;Fullwidth Digit Six +\uFF17;Fullwidth Digit Seven +\uFF18;Fullwidth Digit Eight +\uFF19;Fullwidth Digit Nine +\uFF1A;Fullwidth Colon +\uFF1B;Fullwidth Semicolon +\uFF1C;Fullwidth Less-Than Sign +\uFF1D;Fullwidth Equals Sign +\uFF1E;Fullwidth Greater-Than Sign +\uFF1F;Fullwidth Question Mark +\uFF20;Fullwidth Commercial At +\uFF21;Fullwidth Latin Capital Letter A +\uFF22;Fullwidth Latin Capital Letter B +\uFF23;Fullwidth Latin Capital Letter C +\uFF24;Fullwidth Latin Capital Letter D +\uFF25;Fullwidth Latin Capital Letter E +\uFF26;Fullwidth Latin Capital Letter F +\uFF27;Fullwidth Latin Capital Letter G +\uFF28;Fullwidth Latin Capital Letter H +\uFF29;Fullwidth Latin Capital Letter I +\uFF2A;Fullwidth Latin Capital Letter J +\uFF2B;Fullwidth Latin Capital Letter K +\uFF2C;Fullwidth Latin Capital Letter L +\uFF2D;Fullwidth Latin Capital Letter M +\uFF2E;Fullwidth Latin Capital Letter N +\uFF2F;Fullwidth Latin Capital Letter O +\uFF30;Fullwidth Latin Capital Letter P +\uFF31;Fullwidth Latin Capital Letter Q +\uFF32;Fullwidth Latin Capital Letter R +\uFF33;Fullwidth Latin Capital Letter S +\uFF34;Fullwidth Latin Capital Letter T +\uFF35;Fullwidth Latin Capital Letter U +\uFF36;Fullwidth Latin Capital Letter V +\uFF37;Fullwidth Latin Capital Letter W +\uFF38;Fullwidth Latin Capital Letter X +\uFF39;Fullwidth Latin Capital Letter Y +\uFF3A;Fullwidth Latin Capital Letter Z +\uFF3B;Fullwidth Left Square Bracket +\uFF3C;Fullwidth Reverse Solidus +\uFF3D;Fullwidth Right Square Bracket +\uFF3E;Fullwidth Circumflex Accent +\uFF3F;Fullwidth Low Line +\uFF40;Fullwidth Grave Accent +\uFF41;Fullwidth Latin Small Letter A +\uFF42;Fullwidth Latin Small Letter B +\uFF43;Fullwidth Latin Small Letter C +\uFF44;Fullwidth Latin Small Letter D +\uFF45;Fullwidth Latin Small Letter E +\uFF46;Fullwidth Latin Small Letter F +\uFF47;Fullwidth Latin Small Letter G +\uFF48;Fullwidth Latin Small Letter H +\uFF49;Fullwidth Latin Small Letter I +\uFF4A;Fullwidth Latin Small Letter J +\uFF4B;Fullwidth Latin Small Letter K +\uFF4C;Fullwidth Latin Small Letter L +\uFF4D;Fullwidth Latin Small Letter M +\uFF4E;Fullwidth Latin Small Letter N +\uFF4F;Fullwidth Latin Small Letter O +\uFF50;Fullwidth Latin Small Letter P +\uFF51;Fullwidth Latin Small Letter Q +\uFF52;Fullwidth Latin Small Letter R +\uFF53;Fullwidth Latin Small Letter S +\uFF54;Fullwidth Latin Small Letter T +\uFF55;Fullwidth Latin Small Letter U +\uFF56;Fullwidth Latin Small Letter V +\uFF57;Fullwidth Latin Small Letter W +\uFF58;Fullwidth Latin Small Letter X +\uFF59;Fullwidth Latin Small Letter Y +\uFF5A;Fullwidth Latin Small Letter Z +\uFF5B;Fullwidth Left Curly Bracket +\uFF5C;Fullwidth Vertical Line +\uFF5D;Fullwidth Right Curly Bracket +\uFF5E;Fullwidth Tilde +\uFF5F;Fullwidth Left White Parenthesis +\uFF60;Fullwidth Right White Parenthesis +\uFF61;Halfwidth Ideographic Full Stop +\uFF62;Halfwidth Left Corner Bracket +\uFF63;Halfwidth Right Corner Bracket +\uFF64;Halfwidth Ideographic Comma +\uFF65;Halfwidth Katakana Middle Dot +\uFF66;Halfwidth Katakana Letter Wo +\uFF67;Halfwidth Katakana Letter Small A +\uFF68;Halfwidth Katakana Letter Small I +\uFF69;Halfwidth Katakana Letter Small U +\uFF6A;Halfwidth Katakana Letter Small E +\uFF6B;Halfwidth Katakana Letter Small O +\uFF6C;Halfwidth Katakana Letter Small Ya +\uFF6D;Halfwidth Katakana Letter Small Yu +\uFF6E;Halfwidth Katakana Letter Small Yo +\uFF6F;Halfwidth Katakana Letter Small Tu +\uFF70;Halfwidth Katakana-Hiragana Prolonged Sound Mark +\uFF71;Halfwidth Katakana Letter A +\uFF72;Halfwidth Katakana Letter I +\uFF73;Halfwidth Katakana Letter U +\uFF74;Halfwidth Katakana Letter E +\uFF75;Halfwidth Katakana Letter O +\uFF76;Halfwidth Katakana Letter Ka +\uFF77;Halfwidth Katakana Letter Ki +\uFF78;Halfwidth Katakana Letter Ku +\uFF79;Halfwidth Katakana Letter Ke +\uFF7A;Halfwidth Katakana Letter Ko +\uFF7B;Halfwidth Katakana Letter Sa +\uFF7C;Halfwidth Katakana Letter Si +\uFF7D;Halfwidth Katakana Letter Su +\uFF7E;Halfwidth Katakana Letter Se +\uFF7F;Halfwidth Katakana Letter So +\uFF80;Halfwidth Katakana Letter Ta +\uFF81;Halfwidth Katakana Letter Ti +\uFF82;Halfwidth Katakana Letter Tu +\uFF83;Halfwidth Katakana Letter Te +\uFF84;Halfwidth Katakana Letter To +\uFF85;Halfwidth Katakana Letter Na +\uFF86;Halfwidth Katakana Letter Ni +\uFF87;Halfwidth Katakana Letter Nu +\uFF88;Halfwidth Katakana Letter Ne +\uFF89;Halfwidth Katakana Letter No +\uFF8A;Halfwidth Katakana Letter Ha +\uFF8B;Halfwidth Katakana Letter Hi +\uFF8C;Halfwidth Katakana Letter Hu +\uFF8D;Halfwidth Katakana Letter He +\uFF8E;Halfwidth Katakana Letter Ho +\uFF8F;Halfwidth Katakana Letter Ma +\uFF90;Halfwidth Katakana Letter Mi +\uFF91;Halfwidth Katakana Letter Mu +\uFF92;Halfwidth Katakana Letter Me +\uFF93;Halfwidth Katakana Letter Mo +\uFF94;Halfwidth Katakana Letter Ya +\uFF95;Halfwidth Katakana Letter Yu +\uFF96;Halfwidth Katakana Letter Yo +\uFF97;Halfwidth Katakana Letter Ra +\uFF98;Halfwidth Katakana Letter Ri +\uFF99;Halfwidth Katakana Letter Ru +\uFF9A;Halfwidth Katakana Letter Re +\uFF9B;Halfwidth Katakana Letter Ro +\uFF9C;Halfwidth Katakana Letter Wa +\uFF9D;Halfwidth Katakana Letter N +\uFF9E;Halfwidth Katakana Voiced Sound Mark +\uFF9F;Halfwidth Katakana Semi-Voiced Sound Mark +\uFFA0;Halfwidth Hangul Filler +\uFFA1;Halfwidth Hangul Letter Kiyeok +\uFFA2;Halfwidth Hangul Letter Ssangkiyeok +\uFFA3;Halfwidth Hangul Letter Kiyeok-Sios +\uFFA4;Halfwidth Hangul Letter Nieun +\uFFA5;Halfwidth Hangul Letter Nieun-Cieuc +\uFFA6;Halfwidth Hangul Letter Nieun-Hieuh +\uFFA7;Halfwidth Hangul Letter Tikeut +\uFFA8;Halfwidth Hangul Letter Ssangtikeut +\uFFA9;Halfwidth Hangul Letter Rieul +\uFFAA;Halfwidth Hangul Letter Rieul-Kiyeok +\uFFAB;Halfwidth Hangul Letter Rieul-Mieum +\uFFAC;Halfwidth Hangul Letter Rieul-Pieup +\uFFAD;Halfwidth Hangul Letter Rieul-Sios +\uFFAE;Halfwidth Hangul Letter Rieul-Thieuth +\uFFAF;Halfwidth Hangul Letter Rieul-Phieuph +\uFFB0;Halfwidth Hangul Letter Rieul-Hieuh +\uFFB1;Halfwidth Hangul Letter Mieum +\uFFB2;Halfwidth Hangul Letter Pieup +\uFFB3;Halfwidth Hangul Letter Ssangpieup +\uFFB4;Halfwidth Hangul Letter Pieup-Sios +\uFFB5;Halfwidth Hangul Letter Sios +\uFFB6;Halfwidth Hangul Letter Ssangsios +\uFFB7;Halfwidth Hangul Letter Ieung +\uFFB8;Halfwidth Hangul Letter Cieuc +\uFFB9;Halfwidth Hangul Letter Ssangcieuc +\uFFBA;Halfwidth Hangul Letter Chieuch +\uFFBB;Halfwidth Hangul Letter Khieukh +\uFFBC;Halfwidth Hangul Letter Thieuth +\uFFBD;Halfwidth Hangul Letter Phieuph +\uFFBE;Halfwidth Hangul Letter Hieuh +\uFFC2;Halfwidth Hangul Letter A +\uFFC3;Halfwidth Hangul Letter Ae +\uFFC4;Halfwidth Hangul Letter Ya +\uFFC5;Halfwidth Hangul Letter Yae +\uFFC6;Halfwidth Hangul Letter Eo +\uFFC7;Halfwidth Hangul Letter E +\uFFCA;Halfwidth Hangul Letter Yeo +\uFFCB;Halfwidth Hangul Letter Ye +\uFFCC;Halfwidth Hangul Letter O +\uFFCD;Halfwidth Hangul Letter Wa +\uFFCE;Halfwidth Hangul Letter Wae +\uFFCF;Halfwidth Hangul Letter Oe +\uFFD2;Halfwidth Hangul Letter Yo +\uFFD3;Halfwidth Hangul Letter U +\uFFD4;Halfwidth Hangul Letter Weo +\uFFD5;Halfwidth Hangul Letter We +\uFFD6;Halfwidth Hangul Letter Wi +\uFFD7;Halfwidth Hangul Letter Yu +\uFFDA;Halfwidth Hangul Letter Eu +\uFFDB;Halfwidth Hangul Letter Yi +\uFFDC;Halfwidth Hangul Letter I +\uFFE0;Fullwidth Cent Sign +\uFFE1;Fullwidth Pound Sign +\uFFE2;Fullwidth Not Sign +\uFFE3;Fullwidth Macron +\uFFE4;Fullwidth Broken Bar +\uFFE5;Fullwidth Yen Sign +\uFFE6;Fullwidth Won Sign +\uFFE8;Halfwidth Forms Light Vertical +\uFFE9;Halfwidth Leftwards Arrow +\uFFEA;Halfwidth Upwards Arrow +\uFFEB;Halfwidth Rightwards Arrow +\uFFEC;Halfwidth Downwards Arrow +\uFFED;Halfwidth Black Square +\uFFEE;Halfwidth White Circle +\uFFF9;Interlinear Annotation Anchor +\uFFFA;Interlinear Annotation Separator +\uFFFB;Interlinear Annotation Terminator +\uFFFC;Object Replacement Character +\uFFFD;Replacement Character +\U00010000;Linear B Syllable B008 A +\U00010001;Linear B Syllable B038 E +\U00010002;Linear B Syllable B028 I +\U00010003;Linear B Syllable B061 O +\U00010004;Linear B Syllable B010 U +\U00010005;Linear B Syllable B001 Da +\U00010006;Linear B Syllable B045 De +\U00010007;Linear B Syllable B007 Di +\U00010008;Linear B Syllable B014 Do +\U00010009;Linear B Syllable B051 Du +\U0001000A;Linear B Syllable B057 Ja +\U0001000B;Linear B Syllable B046 Je +\U0001000D;Linear B Syllable B036 Jo +\U0001000E;Linear B Syllable B065 Ju +\U0001000F;Linear B Syllable B077 Ka +\U00010010;Linear B Syllable B044 Ke +\U00010011;Linear B Syllable B067 Ki +\U00010012;Linear B Syllable B070 Ko +\U00010013;Linear B Syllable B081 Ku +\U00010014;Linear B Syllable B080 Ma +\U00010015;Linear B Syllable B013 Me +\U00010016;Linear B Syllable B073 Mi +\U00010017;Linear B Syllable B015 Mo +\U00010018;Linear B Syllable B023 Mu +\U00010019;Linear B Syllable B006 Na +\U0001001A;Linear B Syllable B024 Ne +\U0001001B;Linear B Syllable B030 Ni +\U0001001C;Linear B Syllable B052 No +\U0001001D;Linear B Syllable B055 Nu +\U0001001E;Linear B Syllable B003 Pa +\U0001001F;Linear B Syllable B072 Pe +\U00010020;Linear B Syllable B039 Pi +\U00010021;Linear B Syllable B011 Po +\U00010022;Linear B Syllable B050 Pu +\U00010023;Linear B Syllable B016 Qa +\U00010024;Linear B Syllable B078 Qe +\U00010025;Linear B Syllable B021 Qi +\U00010026;Linear B Syllable B032 Qo +\U00010028;Linear B Syllable B060 Ra +\U00010029;Linear B Syllable B027 Re +\U0001002A;Linear B Syllable B053 Ri +\U0001002B;Linear B Syllable B002 Ro +\U0001002C;Linear B Syllable B026 Ru +\U0001002D;Linear B Syllable B031 Sa +\U0001002E;Linear B Syllable B009 Se +\U0001002F;Linear B Syllable B041 Si +\U00010030;Linear B Syllable B012 So +\U00010031;Linear B Syllable B058 Su +\U00010032;Linear B Syllable B059 Ta +\U00010033;Linear B Syllable B004 Te +\U00010034;Linear B Syllable B037 Ti +\U00010035;Linear B Syllable B005 To +\U00010036;Linear B Syllable B069 Tu +\U00010037;Linear B Syllable B054 Wa +\U00010038;Linear B Syllable B075 We +\U00010039;Linear B Syllable B040 Wi +\U0001003A;Linear B Syllable B042 Wo +\U0001003C;Linear B Syllable B017 Za +\U0001003D;Linear B Syllable B074 Ze +\U0001003F;Linear B Syllable B020 Zo +\U00010040;Linear B Syllable B025 A2 +\U00010041;Linear B Syllable B043 A3 +\U00010042;Linear B Syllable B085 Au +\U00010043;Linear B Syllable B071 Dwe +\U00010044;Linear B Syllable B090 Dwo +\U00010045;Linear B Syllable B048 Nwa +\U00010046;Linear B Syllable B029 Pu2 +\U00010047;Linear B Syllable B062 Pte +\U00010048;Linear B Syllable B076 Ra2 +\U00010049;Linear B Syllable B033 Ra3 +\U0001004A;Linear B Syllable B068 Ro2 +\U0001004B;Linear B Syllable B066 Ta2 +\U0001004C;Linear B Syllable B087 Twe +\U0001004D;Linear B Syllable B091 Two +\U00010050;Linear B Symbol B018 +\U00010051;Linear B Symbol B019 +\U00010052;Linear B Symbol B022 +\U00010053;Linear B Symbol B034 +\U00010054;Linear B Symbol B047 +\U00010055;Linear B Symbol B049 +\U00010056;Linear B Symbol B056 +\U00010057;Linear B Symbol B063 +\U00010058;Linear B Symbol B064 +\U00010059;Linear B Symbol B079 +\U0001005A;Linear B Symbol B082 +\U0001005B;Linear B Symbol B083 +\U0001005C;Linear B Symbol B086 +\U0001005D;Linear B Symbol B089 +\U00010080;Linear B Ideogram B100 Man +\U00010081;Linear B Ideogram B102 Woman +\U00010082;Linear B Ideogram B104 Deer +\U00010083;Linear B Ideogram B105 Equid +\U00010084;Linear B Ideogram B105F Mare +\U00010085;Linear B Ideogram B105M Stallion +\U00010086;Linear B Ideogram B106F Ewe +\U00010087;Linear B Ideogram B106M Ram +\U00010088;Linear B Ideogram B107F She-Goat +\U00010089;Linear B Ideogram B107M He-Goat +\U0001008A;Linear B Ideogram B108F Sow +\U0001008B;Linear B Ideogram B108M Boar +\U0001008C;Linear B Ideogram B109F Cow +\U0001008D;Linear B Ideogram B109M Bull +\U0001008E;Linear B Ideogram B120 Wheat +\U0001008F;Linear B Ideogram B121 Barley +\U00010090;Linear B Ideogram B122 Olive +\U00010091;Linear B Ideogram B123 Spice +\U00010092;Linear B Ideogram B125 Cyperus +\U00010093;Linear B Monogram B127 Kapo +\U00010094;Linear B Monogram B128 Kanako +\U00010095;Linear B Ideogram B130 Oil +\U00010096;Linear B Ideogram B131 Wine +\U00010097;Linear B Ideogram B132 +\U00010098;Linear B Monogram B133 Arepa +\U00010099;Linear B Monogram B135 Meri +\U0001009A;Linear B Ideogram B140 Bronze +\U0001009B;Linear B Ideogram B141 Gold +\U0001009C;Linear B Ideogram B142 +\U0001009D;Linear B Ideogram B145 Wool +\U0001009E;Linear B Ideogram B146 +\U0001009F;Linear B Ideogram B150 +\U000100A0;Linear B Ideogram B151 Horn +\U000100A1;Linear B Ideogram B152 +\U000100A2;Linear B Ideogram B153 +\U000100A3;Linear B Ideogram B154 +\U000100A4;Linear B Monogram B156 Turo2 +\U000100A5;Linear B Ideogram B157 +\U000100A6;Linear B Ideogram B158 +\U000100A7;Linear B Ideogram B159 Cloth +\U000100A8;Linear B Ideogram B160 +\U000100A9;Linear B Ideogram B161 +\U000100AA;Linear B Ideogram B162 Garment +\U000100AB;Linear B Ideogram B163 Armour +\U000100AC;Linear B Ideogram B164 +\U000100AD;Linear B Ideogram B165 +\U000100AE;Linear B Ideogram B166 +\U000100AF;Linear B Ideogram B167 +\U000100B0;Linear B Ideogram B168 +\U000100B1;Linear B Ideogram B169 +\U000100B2;Linear B Ideogram B170 +\U000100B3;Linear B Ideogram B171 +\U000100B4;Linear B Ideogram B172 +\U000100B5;Linear B Ideogram B173 Month +\U000100B6;Linear B Ideogram B174 +\U000100B7;Linear B Ideogram B176 Tree +\U000100B8;Linear B Ideogram B177 +\U000100B9;Linear B Ideogram B178 +\U000100BA;Linear B Ideogram B179 +\U000100BB;Linear B Ideogram B180 +\U000100BC;Linear B Ideogram B181 +\U000100BD;Linear B Ideogram B182 +\U000100BE;Linear B Ideogram B183 +\U000100BF;Linear B Ideogram B184 +\U000100C0;Linear B Ideogram B185 +\U000100C1;Linear B Ideogram B189 +\U000100C2;Linear B Ideogram B190 +\U000100C3;Linear B Ideogram B191 Helmet +\U000100C4;Linear B Ideogram B220 Footstool +\U000100C5;Linear B Ideogram B225 Bathtub +\U000100C6;Linear B Ideogram B230 Spear +\U000100C7;Linear B Ideogram B231 Arrow +\U000100C8;Linear B Ideogram B232 +\U000100C9;Linear B Ideogram B233 Sword +\U000100CA;Linear B Ideogram B234 +\U000100CB;Linear B Ideogram B236 +\U000100CC;Linear B Ideogram B240 Wheeled Chariot +\U000100CD;Linear B Ideogram B241 Chariot +\U000100CE;Linear B Ideogram B242 Chariot Frame +\U000100CF;Linear B Ideogram B243 Wheel +\U000100D0;Linear B Ideogram B245 +\U000100D1;Linear B Ideogram B246 +\U000100D2;Linear B Monogram B247 Dipte +\U000100D3;Linear B Ideogram B248 +\U000100D4;Linear B Ideogram B249 +\U000100D5;Linear B Ideogram B251 +\U000100D6;Linear B Ideogram B252 +\U000100D7;Linear B Ideogram B253 +\U000100D8;Linear B Ideogram B254 Dart +\U000100D9;Linear B Ideogram B255 +\U000100DA;Linear B Ideogram B256 +\U000100DB;Linear B Ideogram B257 +\U000100DC;Linear B Ideogram B258 +\U000100DD;Linear B Ideogram B259 +\U000100DE;Linear B Ideogram Vessel B155 +\U000100DF;Linear B Ideogram Vessel B200 +\U000100E0;Linear B Ideogram Vessel B201 +\U000100E1;Linear B Ideogram Vessel B202 +\U000100E2;Linear B Ideogram Vessel B203 +\U000100E3;Linear B Ideogram Vessel B204 +\U000100E4;Linear B Ideogram Vessel B205 +\U000100E5;Linear B Ideogram Vessel B206 +\U000100E6;Linear B Ideogram Vessel B207 +\U000100E7;Linear B Ideogram Vessel B208 +\U000100E8;Linear B Ideogram Vessel B209 +\U000100E9;Linear B Ideogram Vessel B210 +\U000100EA;Linear B Ideogram Vessel B211 +\U000100EB;Linear B Ideogram Vessel B212 +\U000100EC;Linear B Ideogram Vessel B213 +\U000100ED;Linear B Ideogram Vessel B214 +\U000100EE;Linear B Ideogram Vessel B215 +\U000100EF;Linear B Ideogram Vessel B216 +\U000100F0;Linear B Ideogram Vessel B217 +\U000100F1;Linear B Ideogram Vessel B218 +\U000100F2;Linear B Ideogram Vessel B219 +\U000100F3;Linear B Ideogram Vessel B221 +\U000100F4;Linear B Ideogram Vessel B222 +\U000100F5;Linear B Ideogram Vessel B226 +\U000100F6;Linear B Ideogram Vessel B227 +\U000100F7;Linear B Ideogram Vessel B228 +\U000100F8;Linear B Ideogram Vessel B229 +\U000100F9;Linear B Ideogram Vessel B250 +\U000100FA;Linear B Ideogram Vessel B305 +\U00010100;Aegean Word Separator Line +\U00010101;Aegean Word Separator Dot +\U00010102;Aegean Check Mark +\U00010107;Aegean Number One +\U00010108;Aegean Number Two +\U00010109;Aegean Number Three +\U0001010A;Aegean Number Four +\U0001010B;Aegean Number Five +\U0001010C;Aegean Number Six +\U0001010D;Aegean Number Seven +\U0001010E;Aegean Number Eight +\U0001010F;Aegean Number Nine +\U00010110;Aegean Number Ten +\U00010111;Aegean Number Twenty +\U00010112;Aegean Number Thirty +\U00010113;Aegean Number Forty +\U00010114;Aegean Number Fifty +\U00010115;Aegean Number Sixty +\U00010116;Aegean Number Seventy +\U00010117;Aegean Number Eighty +\U00010118;Aegean Number Ninety +\U00010119;Aegean Number One Hundred +\U0001011A;Aegean Number Two Hundred +\U0001011B;Aegean Number Three Hundred +\U0001011C;Aegean Number Four Hundred +\U0001011D;Aegean Number Five Hundred +\U0001011E;Aegean Number Six Hundred +\U0001011F;Aegean Number Seven Hundred +\U00010120;Aegean Number Eight Hundred +\U00010121;Aegean Number Nine Hundred +\U00010122;Aegean Number One Thousand +\U00010123;Aegean Number Two Thousand +\U00010124;Aegean Number Three Thousand +\U00010125;Aegean Number Four Thousand +\U00010126;Aegean Number Five Thousand +\U00010127;Aegean Number Six Thousand +\U00010128;Aegean Number Seven Thousand +\U00010129;Aegean Number Eight Thousand +\U0001012A;Aegean Number Nine Thousand +\U0001012B;Aegean Number Ten Thousand +\U0001012C;Aegean Number Twenty Thousand +\U0001012D;Aegean Number Thirty Thousand +\U0001012E;Aegean Number Forty Thousand +\U0001012F;Aegean Number Fifty Thousand +\U00010130;Aegean Number Sixty Thousand +\U00010131;Aegean Number Seventy Thousand +\U00010132;Aegean Number Eighty Thousand +\U00010133;Aegean Number Ninety Thousand +\U00010137;Aegean Weight Base Unit +\U00010138;Aegean Weight First Subunit +\U00010139;Aegean Weight Second Subunit +\U0001013A;Aegean Weight Third Subunit +\U0001013B;Aegean Weight Fourth Subunit +\U0001013C;Aegean Dry Measure First Subunit +\U0001013D;Aegean Liquid Measure First Subunit +\U0001013E;Aegean Measure Second Subunit +\U0001013F;Aegean Measure Third Subunit +\U00010140;Greek Acrophonic Attic One Quarter +\U00010141;Greek Acrophonic Attic One Half +\U00010142;Greek Acrophonic Attic One Drachma +\U00010143;Greek Acrophonic Attic Five +\U00010144;Greek Acrophonic Attic Fifty +\U00010145;Greek Acrophonic Attic Five Hundred +\U00010146;Greek Acrophonic Attic Five Thousand +\U00010147;Greek Acrophonic Attic Fifty Thousand +\U00010148;Greek Acrophonic Attic Five Talents +\U00010149;Greek Acrophonic Attic Ten Talents +\U0001014A;Greek Acrophonic Attic Fifty Talents +\U0001014B;Greek Acrophonic Attic One Hundred Talents +\U0001014C;Greek Acrophonic Attic Five Hundred Talents +\U0001014D;Greek Acrophonic Attic One Thousand Talents +\U0001014E;Greek Acrophonic Attic Five Thousand Talents +\U0001014F;Greek Acrophonic Attic Five Staters +\U00010150;Greek Acrophonic Attic Ten Staters +\U00010151;Greek Acrophonic Attic Fifty Staters +\U00010152;Greek Acrophonic Attic One Hundred Staters +\U00010153;Greek Acrophonic Attic Five Hundred Staters +\U00010154;Greek Acrophonic Attic One Thousand Staters +\U00010155;Greek Acrophonic Attic Ten Thousand Staters +\U00010156;Greek Acrophonic Attic Fifty Thousand Staters +\U00010157;Greek Acrophonic Attic Ten Mnas +\U00010158;Greek Acrophonic Heraeum One Plethron +\U00010159;Greek Acrophonic Thespian One +\U0001015A;Greek Acrophonic Hermionian One +\U0001015B;Greek Acrophonic Epidaurean Two +\U0001015C;Greek Acrophonic Thespian Two +\U0001015D;Greek Acrophonic Cyrenaic Two Drachmas +\U0001015E;Greek Acrophonic Epidaurean Two Drachmas +\U0001015F;Greek Acrophonic Troezenian Five +\U00010160;Greek Acrophonic Troezenian Ten +\U00010161;Greek Acrophonic Troezenian Ten Alternate Form +\U00010162;Greek Acrophonic Hermionian Ten +\U00010163;Greek Acrophonic Messenian Ten +\U00010164;Greek Acrophonic Thespian Ten +\U00010165;Greek Acrophonic Thespian Thirty +\U00010166;Greek Acrophonic Troezenian Fifty +\U00010167;Greek Acrophonic Troezenian Fifty Alternate Form +\U00010168;Greek Acrophonic Hermionian Fifty +\U00010169;Greek Acrophonic Thespian Fifty +\U0001016A;Greek Acrophonic Thespian One Hundred +\U0001016B;Greek Acrophonic Thespian Three Hundred +\U0001016C;Greek Acrophonic Epidaurean Five Hundred +\U0001016D;Greek Acrophonic Troezenian Five Hundred +\U0001016E;Greek Acrophonic Thespian Five Hundred +\U0001016F;Greek Acrophonic Carystian Five Hundred +\U00010170;Greek Acrophonic Naxian Five Hundred +\U00010171;Greek Acrophonic Thespian One Thousand +\U00010172;Greek Acrophonic Thespian Five Thousand +\U00010173;Greek Acrophonic Delphic Five Mnas +\U00010174;Greek Acrophonic Stratian Fifty Mnas +\U00010175;Greek One Half Sign +\U00010176;Greek One Half Sign Alternate Form +\U00010177;Greek Two Thirds Sign +\U00010178;Greek Three Quarters Sign +\U00010179;Greek Year Sign +\U0001017A;Greek Talent Sign +\U0001017B;Greek Drachma Sign +\U0001017C;Greek Obol Sign +\U0001017D;Greek Two Obols Sign +\U0001017E;Greek Three Obols Sign +\U0001017F;Greek Four Obols Sign +\U00010180;Greek Five Obols Sign +\U00010181;Greek Metretes Sign +\U00010182;Greek Kyathos Base Sign +\U00010183;Greek Litra Sign +\U00010184;Greek Ounkia Sign +\U00010185;Greek Xestes Sign +\U00010186;Greek Artabe Sign +\U00010187;Greek Aroura Sign +\U00010188;Greek Gramma Sign +\U00010189;Greek Tryblion Base Sign +\U0001018A;Greek Zero Sign +\U0001018B;Greek One Quarter Sign +\U0001018C;Greek Sinusoid Sign +\U0001018D;Greek Indiction Sign +\U0001018E;Nomisma Sign +\U00010190;Roman Sextans Sign +\U00010191;Roman Uncia Sign +\U00010192;Roman Semuncia Sign +\U00010193;Roman Sextula Sign +\U00010194;Roman Dimidia Sextula Sign +\U00010195;Roman Siliqua Sign +\U00010196;Roman Denarius Sign +\U00010197;Roman Quinarius Sign +\U00010198;Roman Sestertius Sign +\U00010199;Roman Dupondius Sign +\U0001019A;Roman As Sign +\U0001019B;Roman Centurial Sign +\U0001019C;Ascia Symbol +\U000101A0;Greek Symbol Tau Rho +\U000101D0;Phaistos Disc Sign Pedestrian +\U000101D1;Phaistos Disc Sign Plumed Head +\U000101D2;Phaistos Disc Sign Tattooed Head +\U000101D3;Phaistos Disc Sign Captive +\U000101D4;Phaistos Disc Sign Child +\U000101D5;Phaistos Disc Sign Woman +\U000101D6;Phaistos Disc Sign Helmet +\U000101D7;Phaistos Disc Sign Gauntlet +\U000101D8;Phaistos Disc Sign Tiara +\U000101D9;Phaistos Disc Sign Arrow +\U000101DA;Phaistos Disc Sign Bow +\U000101DB;Phaistos Disc Sign Shield +\U000101DC;Phaistos Disc Sign Club +\U000101DD;Phaistos Disc Sign Manacles +\U000101DE;Phaistos Disc Sign Mattock +\U000101DF;Phaistos Disc Sign Saw +\U000101E0;Phaistos Disc Sign Lid +\U000101E1;Phaistos Disc Sign Boomerang +\U000101E2;Phaistos Disc Sign Carpentry Plane +\U000101E3;Phaistos Disc Sign Dolium +\U000101E4;Phaistos Disc Sign Comb +\U000101E5;Phaistos Disc Sign Sling +\U000101E6;Phaistos Disc Sign Column +\U000101E7;Phaistos Disc Sign Beehive +\U000101E8;Phaistos Disc Sign Ship +\U000101E9;Phaistos Disc Sign Horn +\U000101EA;Phaistos Disc Sign Hide +\U000101EB;Phaistos Disc Sign Bulls Leg +\U000101EC;Phaistos Disc Sign Cat +\U000101ED;Phaistos Disc Sign Ram +\U000101EE;Phaistos Disc Sign Eagle +\U000101EF;Phaistos Disc Sign Dove +\U000101F0;Phaistos Disc Sign Tunny +\U000101F1;Phaistos Disc Sign Bee +\U000101F2;Phaistos Disc Sign Plane Tree +\U000101F3;Phaistos Disc Sign Vine +\U000101F4;Phaistos Disc Sign Papyrus +\U000101F5;Phaistos Disc Sign Rosette +\U000101F6;Phaistos Disc Sign Lily +\U000101F7;Phaistos Disc Sign Ox Back +\U000101F8;Phaistos Disc Sign Flute +\U000101F9;Phaistos Disc Sign Grater +\U000101FA;Phaistos Disc Sign Strainer +\U000101FB;Phaistos Disc Sign Small Axe +\U000101FC;Phaistos Disc Sign Wavy Band +\U000101FD;Phaistos Disc Sign Combining Oblique Stroke +\U00010280;Lycian Letter A +\U00010281;Lycian Letter E +\U00010282;Lycian Letter B +\U00010283;Lycian Letter Bh +\U00010284;Lycian Letter G +\U00010285;Lycian Letter D +\U00010286;Lycian Letter I +\U00010287;Lycian Letter W +\U00010288;Lycian Letter Z +\U00010289;Lycian Letter Th +\U0001028A;Lycian Letter J +\U0001028B;Lycian Letter K +\U0001028C;Lycian Letter Q +\U0001028D;Lycian Letter L +\U0001028E;Lycian Letter M +\U0001028F;Lycian Letter N +\U00010290;Lycian Letter Mm +\U00010291;Lycian Letter Nn +\U00010292;Lycian Letter U +\U00010293;Lycian Letter P +\U00010294;Lycian Letter Kk +\U00010295;Lycian Letter R +\U00010296;Lycian Letter S +\U00010297;Lycian Letter T +\U00010298;Lycian Letter Tt +\U00010299;Lycian Letter An +\U0001029A;Lycian Letter En +\U0001029B;Lycian Letter H +\U0001029C;Lycian Letter X +\U000102A0;Carian Letter A +\U000102A1;Carian Letter P2 +\U000102A2;Carian Letter D +\U000102A3;Carian Letter L +\U000102A4;Carian Letter Uuu +\U000102A5;Carian Letter R +\U000102A6;Carian Letter Ld +\U000102A7;Carian Letter A2 +\U000102A8;Carian Letter Q +\U000102A9;Carian Letter B +\U000102AA;Carian Letter M +\U000102AB;Carian Letter O +\U000102AC;Carian Letter D2 +\U000102AD;Carian Letter T +\U000102AE;Carian Letter Sh +\U000102AF;Carian Letter Sh2 +\U000102B0;Carian Letter S +\U000102B1;Carian Letter C-18 +\U000102B2;Carian Letter U +\U000102B3;Carian Letter Nn +\U000102B4;Carian Letter X +\U000102B5;Carian Letter N +\U000102B6;Carian Letter Tt2 +\U000102B7;Carian Letter P +\U000102B8;Carian Letter Ss +\U000102B9;Carian Letter I +\U000102BA;Carian Letter E +\U000102BB;Carian Letter Uuuu +\U000102BC;Carian Letter K +\U000102BD;Carian Letter K2 +\U000102BE;Carian Letter Nd +\U000102BF;Carian Letter Uu +\U000102C0;Carian Letter G +\U000102C1;Carian Letter G2 +\U000102C2;Carian Letter St +\U000102C3;Carian Letter St2 +\U000102C4;Carian Letter Ng +\U000102C5;Carian Letter Ii +\U000102C6;Carian Letter C-39 +\U000102C7;Carian Letter Tt +\U000102C8;Carian Letter Uuu2 +\U000102C9;Carian Letter Rr +\U000102CA;Carian Letter Mb +\U000102CB;Carian Letter Mb2 +\U000102CC;Carian Letter Mb3 +\U000102CD;Carian Letter Mb4 +\U000102CE;Carian Letter Ld2 +\U000102CF;Carian Letter E2 +\U000102D0;Carian Letter Uuu3 +\U000102E0;Coptic Epact Thousands Mark +\U000102E1;Coptic Epact Digit One +\U000102E2;Coptic Epact Digit Two +\U000102E3;Coptic Epact Digit Three +\U000102E4;Coptic Epact Digit Four +\U000102E5;Coptic Epact Digit Five +\U000102E6;Coptic Epact Digit Six +\U000102E7;Coptic Epact Digit Seven +\U000102E8;Coptic Epact Digit Eight +\U000102E9;Coptic Epact Digit Nine +\U000102EA;Coptic Epact Number Ten +\U000102EB;Coptic Epact Number Twenty +\U000102EC;Coptic Epact Number Thirty +\U000102ED;Coptic Epact Number Forty +\U000102EE;Coptic Epact Number Fifty +\U000102EF;Coptic Epact Number Sixty +\U000102F0;Coptic Epact Number Seventy +\U000102F1;Coptic Epact Number Eighty +\U000102F2;Coptic Epact Number Ninety +\U000102F3;Coptic Epact Number One Hundred +\U000102F4;Coptic Epact Number Two Hundred +\U000102F5;Coptic Epact Number Three Hundred +\U000102F6;Coptic Epact Number Four Hundred +\U000102F7;Coptic Epact Number Five Hundred +\U000102F8;Coptic Epact Number Six Hundred +\U000102F9;Coptic Epact Number Seven Hundred +\U000102FA;Coptic Epact Number Eight Hundred +\U000102FB;Coptic Epact Number Nine Hundred +\U00010300;Old Italic Letter A +\U00010301;Old Italic Letter Be +\U00010302;Old Italic Letter Ke +\U00010303;Old Italic Letter De +\U00010304;Old Italic Letter E +\U00010305;Old Italic Letter Ve +\U00010306;Old Italic Letter Ze +\U00010307;Old Italic Letter He +\U00010308;Old Italic Letter The +\U00010309;Old Italic Letter I +\U0001030A;Old Italic Letter Ka +\U0001030B;Old Italic Letter El +\U0001030C;Old Italic Letter Em +\U0001030D;Old Italic Letter En +\U0001030E;Old Italic Letter Esh +\U0001030F;Old Italic Letter O +\U00010310;Old Italic Letter Pe +\U00010311;Old Italic Letter She +\U00010312;Old Italic Letter Ku +\U00010313;Old Italic Letter Er +\U00010314;Old Italic Letter Es +\U00010315;Old Italic Letter Te +\U00010316;Old Italic Letter U +\U00010317;Old Italic Letter Eks +\U00010318;Old Italic Letter Phe +\U00010319;Old Italic Letter Khe +\U0001031A;Old Italic Letter Ef +\U0001031B;Old Italic Letter Ers +\U0001031C;Old Italic Letter Che +\U0001031D;Old Italic Letter Ii +\U0001031E;Old Italic Letter Uu +\U0001031F;Old Italic Letter Ess +\U00010320;Old Italic Numeral One +\U00010321;Old Italic Numeral Five +\U00010322;Old Italic Numeral Ten +\U00010323;Old Italic Numeral Fifty +\U0001032D;Old Italic Letter Ye +\U0001032E;Old Italic Letter Northern Tse +\U0001032F;Old Italic Letter Southern Tse +\U00010330;Gothic Letter Ahsa +\U00010331;Gothic Letter Bairkan +\U00010332;Gothic Letter Giba +\U00010333;Gothic Letter Dags +\U00010334;Gothic Letter Aihvus +\U00010335;Gothic Letter Qairthra +\U00010336;Gothic Letter Iuja +\U00010337;Gothic Letter Hagl +\U00010338;Gothic Letter Thiuth +\U00010339;Gothic Letter Eis +\U0001033A;Gothic Letter Kusma +\U0001033B;Gothic Letter Lagus +\U0001033C;Gothic Letter Manna +\U0001033D;Gothic Letter Nauths +\U0001033E;Gothic Letter Jer +\U0001033F;Gothic Letter Urus +\U00010340;Gothic Letter Pairthra +\U00010341;Gothic Letter Ninety +\U00010342;Gothic Letter Raida +\U00010343;Gothic Letter Sauil +\U00010344;Gothic Letter Teiws +\U00010345;Gothic Letter Winja +\U00010346;Gothic Letter Faihu +\U00010347;Gothic Letter Iggws +\U00010348;Gothic Letter Hwair +\U00010349;Gothic Letter Othal +\U0001034A;Gothic Letter Nine Hundred +\U00010350;Old Permic Letter An +\U00010351;Old Permic Letter Bur +\U00010352;Old Permic Letter Gai +\U00010353;Old Permic Letter Doi +\U00010354;Old Permic Letter E +\U00010355;Old Permic Letter Zhoi +\U00010356;Old Permic Letter Dzhoi +\U00010357;Old Permic Letter Zata +\U00010358;Old Permic Letter Dzita +\U00010359;Old Permic Letter I +\U0001035A;Old Permic Letter Koke +\U0001035B;Old Permic Letter Lei +\U0001035C;Old Permic Letter Menoe +\U0001035D;Old Permic Letter Nenoe +\U0001035E;Old Permic Letter Vooi +\U0001035F;Old Permic Letter Peei +\U00010360;Old Permic Letter Rei +\U00010361;Old Permic Letter Sii +\U00010362;Old Permic Letter Tai +\U00010363;Old Permic Letter U +\U00010364;Old Permic Letter Chery +\U00010365;Old Permic Letter Shooi +\U00010366;Old Permic Letter Shchooi +\U00010367;Old Permic Letter Yry +\U00010368;Old Permic Letter Yeru +\U00010369;Old Permic Letter O +\U0001036A;Old Permic Letter Oo +\U0001036B;Old Permic Letter Ef +\U0001036C;Old Permic Letter Ha +\U0001036D;Old Permic Letter Tsiu +\U0001036E;Old Permic Letter Ver +\U0001036F;Old Permic Letter Yer +\U00010370;Old Permic Letter Yeri +\U00010371;Old Permic Letter Yat +\U00010372;Old Permic Letter Ie +\U00010373;Old Permic Letter Yu +\U00010374;Old Permic Letter Ya +\U00010375;Old Permic Letter Ia +\U00010376;Combining Old Permic Letter An +\U00010377;Combining Old Permic Letter Doi +\U00010378;Combining Old Permic Letter Zata +\U00010379;Combining Old Permic Letter Nenoe +\U0001037A;Combining Old Permic Letter Sii +\U00010380;Ugaritic Letter Alpa +\U00010381;Ugaritic Letter Beta +\U00010382;Ugaritic Letter Gamla +\U00010383;Ugaritic Letter Kha +\U00010384;Ugaritic Letter Delta +\U00010385;Ugaritic Letter Ho +\U00010386;Ugaritic Letter Wo +\U00010387;Ugaritic Letter Zeta +\U00010388;Ugaritic Letter Hota +\U00010389;Ugaritic Letter Tet +\U0001038A;Ugaritic Letter Yod +\U0001038B;Ugaritic Letter Kaf +\U0001038C;Ugaritic Letter Shin +\U0001038D;Ugaritic Letter Lamda +\U0001038E;Ugaritic Letter Mem +\U0001038F;Ugaritic Letter Dhal +\U00010390;Ugaritic Letter Nun +\U00010391;Ugaritic Letter Zu +\U00010392;Ugaritic Letter Samka +\U00010393;Ugaritic Letter Ain +\U00010394;Ugaritic Letter Pu +\U00010395;Ugaritic Letter Sade +\U00010396;Ugaritic Letter Qopa +\U00010397;Ugaritic Letter Rasha +\U00010398;Ugaritic Letter Thanna +\U00010399;Ugaritic Letter Ghain +\U0001039A;Ugaritic Letter To +\U0001039B;Ugaritic Letter I +\U0001039C;Ugaritic Letter U +\U0001039D;Ugaritic Letter Ssu +\U0001039F;Ugaritic Word Divider +\U000103A0;Old Persian Sign A +\U000103A1;Old Persian Sign I +\U000103A2;Old Persian Sign U +\U000103A3;Old Persian Sign Ka +\U000103A4;Old Persian Sign Ku +\U000103A5;Old Persian Sign Ga +\U000103A6;Old Persian Sign Gu +\U000103A7;Old Persian Sign Xa +\U000103A8;Old Persian Sign Ca +\U000103A9;Old Persian Sign Ja +\U000103AA;Old Persian Sign Ji +\U000103AB;Old Persian Sign Ta +\U000103AC;Old Persian Sign Tu +\U000103AD;Old Persian Sign Da +\U000103AE;Old Persian Sign Di +\U000103AF;Old Persian Sign Du +\U000103B0;Old Persian Sign Tha +\U000103B1;Old Persian Sign Pa +\U000103B2;Old Persian Sign Ba +\U000103B3;Old Persian Sign Fa +\U000103B4;Old Persian Sign Na +\U000103B5;Old Persian Sign Nu +\U000103B6;Old Persian Sign Ma +\U000103B7;Old Persian Sign Mi +\U000103B8;Old Persian Sign Mu +\U000103B9;Old Persian Sign Ya +\U000103BA;Old Persian Sign Va +\U000103BB;Old Persian Sign Vi +\U000103BC;Old Persian Sign Ra +\U000103BD;Old Persian Sign Ru +\U000103BE;Old Persian Sign La +\U000103BF;Old Persian Sign Sa +\U000103C0;Old Persian Sign Za +\U000103C1;Old Persian Sign Sha +\U000103C2;Old Persian Sign Ssa +\U000103C3;Old Persian Sign Ha +\U000103C8;Old Persian Sign Auramazdaa +\U000103C9;Old Persian Sign Auramazdaa-2 +\U000103CA;Old Persian Sign Auramazdaaha +\U000103CB;Old Persian Sign Xshaayathiya +\U000103CC;Old Persian Sign Dahyaaush +\U000103CD;Old Persian Sign Dahyaaush-2 +\U000103CE;Old Persian Sign Baga +\U000103CF;Old Persian Sign Buumish +\U000103D0;Old Persian Word Divider +\U000103D1;Old Persian Number One +\U000103D2;Old Persian Number Two +\U000103D3;Old Persian Number Ten +\U000103D4;Old Persian Number Twenty +\U000103D5;Old Persian Number Hundred +\U00010400;Deseret Capital Letter Long I +\U00010401;Deseret Capital Letter Long E +\U00010402;Deseret Capital Letter Long A +\U00010403;Deseret Capital Letter Long Ah +\U00010404;Deseret Capital Letter Long O +\U00010405;Deseret Capital Letter Long Oo +\U00010406;Deseret Capital Letter Short I +\U00010407;Deseret Capital Letter Short E +\U00010408;Deseret Capital Letter Short A +\U00010409;Deseret Capital Letter Short Ah +\U0001040A;Deseret Capital Letter Short O +\U0001040B;Deseret Capital Letter Short Oo +\U0001040C;Deseret Capital Letter Ay +\U0001040D;Deseret Capital Letter Ow +\U0001040E;Deseret Capital Letter Wu +\U0001040F;Deseret Capital Letter Yee +\U00010410;Deseret Capital Letter H +\U00010411;Deseret Capital Letter Pee +\U00010412;Deseret Capital Letter Bee +\U00010413;Deseret Capital Letter Tee +\U00010414;Deseret Capital Letter Dee +\U00010415;Deseret Capital Letter Chee +\U00010416;Deseret Capital Letter Jee +\U00010417;Deseret Capital Letter Kay +\U00010418;Deseret Capital Letter Gay +\U00010419;Deseret Capital Letter Ef +\U0001041A;Deseret Capital Letter Vee +\U0001041B;Deseret Capital Letter Eth +\U0001041C;Deseret Capital Letter Thee +\U0001041D;Deseret Capital Letter Es +\U0001041E;Deseret Capital Letter Zee +\U0001041F;Deseret Capital Letter Esh +\U00010420;Deseret Capital Letter Zhee +\U00010421;Deseret Capital Letter Er +\U00010422;Deseret Capital Letter El +\U00010423;Deseret Capital Letter Em +\U00010424;Deseret Capital Letter En +\U00010425;Deseret Capital Letter Eng +\U00010426;Deseret Capital Letter Oi +\U00010427;Deseret Capital Letter Ew +\U00010428;Deseret Small Letter Long I +\U00010429;Deseret Small Letter Long E +\U0001042A;Deseret Small Letter Long A +\U0001042B;Deseret Small Letter Long Ah +\U0001042C;Deseret Small Letter Long O +\U0001042D;Deseret Small Letter Long Oo +\U0001042E;Deseret Small Letter Short I +\U0001042F;Deseret Small Letter Short E +\U00010430;Deseret Small Letter Short A +\U00010431;Deseret Small Letter Short Ah +\U00010432;Deseret Small Letter Short O +\U00010433;Deseret Small Letter Short Oo +\U00010434;Deseret Small Letter Ay +\U00010435;Deseret Small Letter Ow +\U00010436;Deseret Small Letter Wu +\U00010437;Deseret Small Letter Yee +\U00010438;Deseret Small Letter H +\U00010439;Deseret Small Letter Pee +\U0001043A;Deseret Small Letter Bee +\U0001043B;Deseret Small Letter Tee +\U0001043C;Deseret Small Letter Dee +\U0001043D;Deseret Small Letter Chee +\U0001043E;Deseret Small Letter Jee +\U0001043F;Deseret Small Letter Kay +\U00010440;Deseret Small Letter Gay +\U00010441;Deseret Small Letter Ef +\U00010442;Deseret Small Letter Vee +\U00010443;Deseret Small Letter Eth +\U00010444;Deseret Small Letter Thee +\U00010445;Deseret Small Letter Es +\U00010446;Deseret Small Letter Zee +\U00010447;Deseret Small Letter Esh +\U00010448;Deseret Small Letter Zhee +\U00010449;Deseret Small Letter Er +\U0001044A;Deseret Small Letter El +\U0001044B;Deseret Small Letter Em +\U0001044C;Deseret Small Letter En +\U0001044D;Deseret Small Letter Eng +\U0001044E;Deseret Small Letter Oi +\U0001044F;Deseret Small Letter Ew +\U00010450;Shavian Letter Peep +\U00010451;Shavian Letter Tot +\U00010452;Shavian Letter Kick +\U00010453;Shavian Letter Fee +\U00010454;Shavian Letter Thigh +\U00010455;Shavian Letter So +\U00010456;Shavian Letter Sure +\U00010457;Shavian Letter Church +\U00010458;Shavian Letter Yea +\U00010459;Shavian Letter Hung +\U0001045A;Shavian Letter Bib +\U0001045B;Shavian Letter Dead +\U0001045C;Shavian Letter Gag +\U0001045D;Shavian Letter Vow +\U0001045E;Shavian Letter They +\U0001045F;Shavian Letter Zoo +\U00010460;Shavian Letter Measure +\U00010461;Shavian Letter Judge +\U00010462;Shavian Letter Woe +\U00010463;Shavian Letter Ha-Ha +\U00010464;Shavian Letter Loll +\U00010465;Shavian Letter Mime +\U00010466;Shavian Letter If +\U00010467;Shavian Letter Egg +\U00010468;Shavian Letter Ash +\U00010469;Shavian Letter Ado +\U0001046A;Shavian Letter On +\U0001046B;Shavian Letter Wool +\U0001046C;Shavian Letter Out +\U0001046D;Shavian Letter Ah +\U0001046E;Shavian Letter Roar +\U0001046F;Shavian Letter Nun +\U00010470;Shavian Letter Eat +\U00010471;Shavian Letter Age +\U00010472;Shavian Letter Ice +\U00010473;Shavian Letter Up +\U00010474;Shavian Letter Oak +\U00010475;Shavian Letter Ooze +\U00010476;Shavian Letter Oil +\U00010477;Shavian Letter Awe +\U00010478;Shavian Letter Are +\U00010479;Shavian Letter Or +\U0001047A;Shavian Letter Air +\U0001047B;Shavian Letter Err +\U0001047C;Shavian Letter Array +\U0001047D;Shavian Letter Ear +\U0001047E;Shavian Letter Ian +\U0001047F;Shavian Letter Yew +\U00010480;Osmanya Letter Alef +\U00010481;Osmanya Letter Ba +\U00010482;Osmanya Letter Ta +\U00010483;Osmanya Letter Ja +\U00010484;Osmanya Letter Xa +\U00010485;Osmanya Letter Kha +\U00010486;Osmanya Letter Deel +\U00010487;Osmanya Letter Ra +\U00010488;Osmanya Letter Sa +\U00010489;Osmanya Letter Shiin +\U0001048A;Osmanya Letter Dha +\U0001048B;Osmanya Letter Cayn +\U0001048C;Osmanya Letter Ga +\U0001048D;Osmanya Letter Fa +\U0001048E;Osmanya Letter Qaaf +\U0001048F;Osmanya Letter Kaaf +\U00010490;Osmanya Letter Laan +\U00010491;Osmanya Letter Miin +\U00010492;Osmanya Letter Nuun +\U00010493;Osmanya Letter Waw +\U00010494;Osmanya Letter Ha +\U00010495;Osmanya Letter Ya +\U00010496;Osmanya Letter A +\U00010497;Osmanya Letter E +\U00010498;Osmanya Letter I +\U00010499;Osmanya Letter O +\U0001049A;Osmanya Letter U +\U0001049B;Osmanya Letter Aa +\U0001049C;Osmanya Letter Ee +\U0001049D;Osmanya Letter Oo +\U000104A0;Osmanya Digit Zero +\U000104A1;Osmanya Digit One +\U000104A2;Osmanya Digit Two +\U000104A3;Osmanya Digit Three +\U000104A4;Osmanya Digit Four +\U000104A5;Osmanya Digit Five +\U000104A6;Osmanya Digit Six +\U000104A7;Osmanya Digit Seven +\U000104A8;Osmanya Digit Eight +\U000104A9;Osmanya Digit Nine +\U000104B0;Osage Capital Letter A +\U000104B1;Osage Capital Letter Ai +\U000104B2;Osage Capital Letter Ain +\U000104B3;Osage Capital Letter Ah +\U000104B4;Osage Capital Letter Bra +\U000104B5;Osage Capital Letter Cha +\U000104B6;Osage Capital Letter Ehcha +\U000104B7;Osage Capital Letter E +\U000104B8;Osage Capital Letter Ein +\U000104B9;Osage Capital Letter Ha +\U000104BA;Osage Capital Letter Hya +\U000104BB;Osage Capital Letter I +\U000104BC;Osage Capital Letter Ka +\U000104BD;Osage Capital Letter Ehka +\U000104BE;Osage Capital Letter Kya +\U000104BF;Osage Capital Letter La +\U000104C0;Osage Capital Letter Ma +\U000104C1;Osage Capital Letter Na +\U000104C2;Osage Capital Letter O +\U000104C3;Osage Capital Letter Oin +\U000104C4;Osage Capital Letter Pa +\U000104C5;Osage Capital Letter Ehpa +\U000104C6;Osage Capital Letter Sa +\U000104C7;Osage Capital Letter Sha +\U000104C8;Osage Capital Letter Ta +\U000104C9;Osage Capital Letter Ehta +\U000104CA;Osage Capital Letter Tsa +\U000104CB;Osage Capital Letter Ehtsa +\U000104CC;Osage Capital Letter Tsha +\U000104CD;Osage Capital Letter Dha +\U000104CE;Osage Capital Letter U +\U000104CF;Osage Capital Letter Wa +\U000104D0;Osage Capital Letter Kha +\U000104D1;Osage Capital Letter Gha +\U000104D2;Osage Capital Letter Za +\U000104D3;Osage Capital Letter Zha +\U000104D8;Osage Small Letter A +\U000104D9;Osage Small Letter Ai +\U000104DA;Osage Small Letter Ain +\U000104DB;Osage Small Letter Ah +\U000104DC;Osage Small Letter Bra +\U000104DD;Osage Small Letter Cha +\U000104DE;Osage Small Letter Ehcha +\U000104DF;Osage Small Letter E +\U000104E0;Osage Small Letter Ein +\U000104E1;Osage Small Letter Ha +\U000104E2;Osage Small Letter Hya +\U000104E3;Osage Small Letter I +\U000104E4;Osage Small Letter Ka +\U000104E5;Osage Small Letter Ehka +\U000104E6;Osage Small Letter Kya +\U000104E7;Osage Small Letter La +\U000104E8;Osage Small Letter Ma +\U000104E9;Osage Small Letter Na +\U000104EA;Osage Small Letter O +\U000104EB;Osage Small Letter Oin +\U000104EC;Osage Small Letter Pa +\U000104ED;Osage Small Letter Ehpa +\U000104EE;Osage Small Letter Sa +\U000104EF;Osage Small Letter Sha +\U000104F0;Osage Small Letter Ta +\U000104F1;Osage Small Letter Ehta +\U000104F2;Osage Small Letter Tsa +\U000104F3;Osage Small Letter Ehtsa +\U000104F4;Osage Small Letter Tsha +\U000104F5;Osage Small Letter Dha +\U000104F6;Osage Small Letter U +\U000104F7;Osage Small Letter Wa +\U000104F8;Osage Small Letter Kha +\U000104F9;Osage Small Letter Gha +\U000104FA;Osage Small Letter Za +\U000104FB;Osage Small Letter Zha +\U00010500;Elbasan Letter A +\U00010501;Elbasan Letter Be +\U00010502;Elbasan Letter Ce +\U00010503;Elbasan Letter Che +\U00010504;Elbasan Letter De +\U00010505;Elbasan Letter Nde +\U00010506;Elbasan Letter Dhe +\U00010507;Elbasan Letter Ei +\U00010508;Elbasan Letter E +\U00010509;Elbasan Letter Fe +\U0001050A;Elbasan Letter Ge +\U0001050B;Elbasan Letter Gje +\U0001050C;Elbasan Letter He +\U0001050D;Elbasan Letter I +\U0001050E;Elbasan Letter Je +\U0001050F;Elbasan Letter Ke +\U00010510;Elbasan Letter Le +\U00010511;Elbasan Letter Lle +\U00010512;Elbasan Letter Me +\U00010513;Elbasan Letter Ne +\U00010514;Elbasan Letter Na +\U00010515;Elbasan Letter Nje +\U00010516;Elbasan Letter O +\U00010517;Elbasan Letter Pe +\U00010518;Elbasan Letter Qe +\U00010519;Elbasan Letter Re +\U0001051A;Elbasan Letter Rre +\U0001051B;Elbasan Letter Se +\U0001051C;Elbasan Letter She +\U0001051D;Elbasan Letter Te +\U0001051E;Elbasan Letter The +\U0001051F;Elbasan Letter U +\U00010520;Elbasan Letter Ve +\U00010521;Elbasan Letter Xe +\U00010522;Elbasan Letter Y +\U00010523;Elbasan Letter Ze +\U00010524;Elbasan Letter Zhe +\U00010525;Elbasan Letter Ghe +\U00010526;Elbasan Letter Ghamma +\U00010527;Elbasan Letter Khe +\U00010530;Caucasian Albanian Letter Alt +\U00010531;Caucasian Albanian Letter Bet +\U00010532;Caucasian Albanian Letter Gim +\U00010533;Caucasian Albanian Letter Dat +\U00010534;Caucasian Albanian Letter Eb +\U00010535;Caucasian Albanian Letter Zarl +\U00010536;Caucasian Albanian Letter Eyn +\U00010537;Caucasian Albanian Letter Zhil +\U00010538;Caucasian Albanian Letter Tas +\U00010539;Caucasian Albanian Letter Cha +\U0001053A;Caucasian Albanian Letter Yowd +\U0001053B;Caucasian Albanian Letter Zha +\U0001053C;Caucasian Albanian Letter Irb +\U0001053D;Caucasian Albanian Letter Sha +\U0001053E;Caucasian Albanian Letter Lan +\U0001053F;Caucasian Albanian Letter Inya +\U00010540;Caucasian Albanian Letter Xeyn +\U00010541;Caucasian Albanian Letter Dyan +\U00010542;Caucasian Albanian Letter Car +\U00010543;Caucasian Albanian Letter Jhox +\U00010544;Caucasian Albanian Letter Kar +\U00010545;Caucasian Albanian Letter Lyit +\U00010546;Caucasian Albanian Letter Heyt +\U00010547;Caucasian Albanian Letter Qay +\U00010548;Caucasian Albanian Letter Aor +\U00010549;Caucasian Albanian Letter Choy +\U0001054A;Caucasian Albanian Letter Chi +\U0001054B;Caucasian Albanian Letter Cyay +\U0001054C;Caucasian Albanian Letter Maq +\U0001054D;Caucasian Albanian Letter Qar +\U0001054E;Caucasian Albanian Letter Nowc +\U0001054F;Caucasian Albanian Letter Dzyay +\U00010550;Caucasian Albanian Letter Shak +\U00010551;Caucasian Albanian Letter Jayn +\U00010552;Caucasian Albanian Letter On +\U00010553;Caucasian Albanian Letter Tyay +\U00010554;Caucasian Albanian Letter Fam +\U00010555;Caucasian Albanian Letter Dzay +\U00010556;Caucasian Albanian Letter Chat +\U00010557;Caucasian Albanian Letter Pen +\U00010558;Caucasian Albanian Letter Gheys +\U00010559;Caucasian Albanian Letter Rat +\U0001055A;Caucasian Albanian Letter Seyk +\U0001055B;Caucasian Albanian Letter Veyz +\U0001055C;Caucasian Albanian Letter Tiwr +\U0001055D;Caucasian Albanian Letter Shoy +\U0001055E;Caucasian Albanian Letter Iwn +\U0001055F;Caucasian Albanian Letter Cyaw +\U00010560;Caucasian Albanian Letter Cayn +\U00010561;Caucasian Albanian Letter Yayd +\U00010562;Caucasian Albanian Letter Piwr +\U00010563;Caucasian Albanian Letter Kiw +\U0001056F;Caucasian Albanian Citation Mark +\U00010570;Vithkuqi Capital Letter A +\U00010571;Vithkuqi Capital Letter Bbe +\U00010572;Vithkuqi Capital Letter Be +\U00010573;Vithkuqi Capital Letter Ce +\U00010574;Vithkuqi Capital Letter Che +\U00010575;Vithkuqi Capital Letter De +\U00010576;Vithkuqi Capital Letter Dhe +\U00010577;Vithkuqi Capital Letter Ei +\U00010578;Vithkuqi Capital Letter E +\U00010579;Vithkuqi Capital Letter Fe +\U0001057A;Vithkuqi Capital Letter Ga +\U0001057C;Vithkuqi Capital Letter Ha +\U0001057D;Vithkuqi Capital Letter Hha +\U0001057E;Vithkuqi Capital Letter I +\U0001057F;Vithkuqi Capital Letter Ije +\U00010580;Vithkuqi Capital Letter Je +\U00010581;Vithkuqi Capital Letter Ka +\U00010582;Vithkuqi Capital Letter La +\U00010583;Vithkuqi Capital Letter Lla +\U00010584;Vithkuqi Capital Letter Me +\U00010585;Vithkuqi Capital Letter Ne +\U00010586;Vithkuqi Capital Letter Nje +\U00010587;Vithkuqi Capital Letter O +\U00010588;Vithkuqi Capital Letter Pe +\U00010589;Vithkuqi Capital Letter Qa +\U0001058A;Vithkuqi Capital Letter Re +\U0001058C;Vithkuqi Capital Letter Se +\U0001058D;Vithkuqi Capital Letter She +\U0001058E;Vithkuqi Capital Letter Te +\U0001058F;Vithkuqi Capital Letter The +\U00010590;Vithkuqi Capital Letter U +\U00010591;Vithkuqi Capital Letter Ve +\U00010592;Vithkuqi Capital Letter Xe +\U00010594;Vithkuqi Capital Letter Y +\U00010595;Vithkuqi Capital Letter Ze +\U00010597;Vithkuqi Small Letter A +\U00010598;Vithkuqi Small Letter Bbe +\U00010599;Vithkuqi Small Letter Be +\U0001059A;Vithkuqi Small Letter Ce +\U0001059B;Vithkuqi Small Letter Che +\U0001059C;Vithkuqi Small Letter De +\U0001059D;Vithkuqi Small Letter Dhe +\U0001059E;Vithkuqi Small Letter Ei +\U0001059F;Vithkuqi Small Letter E +\U000105A0;Vithkuqi Small Letter Fe +\U000105A1;Vithkuqi Small Letter Ga +\U000105A3;Vithkuqi Small Letter Ha +\U000105A4;Vithkuqi Small Letter Hha +\U000105A5;Vithkuqi Small Letter I +\U000105A6;Vithkuqi Small Letter Ije +\U000105A7;Vithkuqi Small Letter Je +\U000105A8;Vithkuqi Small Letter Ka +\U000105A9;Vithkuqi Small Letter La +\U000105AA;Vithkuqi Small Letter Lla +\U000105AB;Vithkuqi Small Letter Me +\U000105AC;Vithkuqi Small Letter Ne +\U000105AD;Vithkuqi Small Letter Nje +\U000105AE;Vithkuqi Small Letter O +\U000105AF;Vithkuqi Small Letter Pe +\U000105B0;Vithkuqi Small Letter Qa +\U000105B1;Vithkuqi Small Letter Re +\U000105B3;Vithkuqi Small Letter Se +\U000105B4;Vithkuqi Small Letter She +\U000105B5;Vithkuqi Small Letter Te +\U000105B6;Vithkuqi Small Letter The +\U000105B7;Vithkuqi Small Letter U +\U000105B8;Vithkuqi Small Letter Ve +\U000105B9;Vithkuqi Small Letter Xe +\U000105BB;Vithkuqi Small Letter Y +\U000105BC;Vithkuqi Small Letter Ze +\U00010600;Linear A Sign Ab001 +\U00010601;Linear A Sign Ab002 +\U00010602;Linear A Sign Ab003 +\U00010603;Linear A Sign Ab004 +\U00010604;Linear A Sign Ab005 +\U00010605;Linear A Sign Ab006 +\U00010606;Linear A Sign Ab007 +\U00010607;Linear A Sign Ab008 +\U00010608;Linear A Sign Ab009 +\U00010609;Linear A Sign Ab010 +\U0001060A;Linear A Sign Ab011 +\U0001060B;Linear A Sign Ab013 +\U0001060C;Linear A Sign Ab016 +\U0001060D;Linear A Sign Ab017 +\U0001060E;Linear A Sign Ab020 +\U0001060F;Linear A Sign Ab021 +\U00010610;Linear A Sign Ab021F +\U00010611;Linear A Sign Ab021M +\U00010612;Linear A Sign Ab022 +\U00010613;Linear A Sign Ab022F +\U00010614;Linear A Sign Ab022M +\U00010615;Linear A Sign Ab023 +\U00010616;Linear A Sign Ab023M +\U00010617;Linear A Sign Ab024 +\U00010618;Linear A Sign Ab026 +\U00010619;Linear A Sign Ab027 +\U0001061A;Linear A Sign Ab028 +\U0001061B;Linear A Sign A028B +\U0001061C;Linear A Sign Ab029 +\U0001061D;Linear A Sign Ab030 +\U0001061E;Linear A Sign Ab031 +\U0001061F;Linear A Sign Ab034 +\U00010620;Linear A Sign Ab037 +\U00010621;Linear A Sign Ab038 +\U00010622;Linear A Sign Ab039 +\U00010623;Linear A Sign Ab040 +\U00010624;Linear A Sign Ab041 +\U00010625;Linear A Sign Ab044 +\U00010626;Linear A Sign Ab045 +\U00010627;Linear A Sign Ab046 +\U00010628;Linear A Sign Ab047 +\U00010629;Linear A Sign Ab048 +\U0001062A;Linear A Sign Ab049 +\U0001062B;Linear A Sign Ab050 +\U0001062C;Linear A Sign Ab051 +\U0001062D;Linear A Sign Ab053 +\U0001062E;Linear A Sign Ab054 +\U0001062F;Linear A Sign Ab055 +\U00010630;Linear A Sign Ab056 +\U00010631;Linear A Sign Ab057 +\U00010632;Linear A Sign Ab058 +\U00010633;Linear A Sign Ab059 +\U00010634;Linear A Sign Ab060 +\U00010635;Linear A Sign Ab061 +\U00010636;Linear A Sign Ab065 +\U00010637;Linear A Sign Ab066 +\U00010638;Linear A Sign Ab067 +\U00010639;Linear A Sign Ab069 +\U0001063A;Linear A Sign Ab070 +\U0001063B;Linear A Sign Ab073 +\U0001063C;Linear A Sign Ab074 +\U0001063D;Linear A Sign Ab076 +\U0001063E;Linear A Sign Ab077 +\U0001063F;Linear A Sign Ab078 +\U00010640;Linear A Sign Ab079 +\U00010641;Linear A Sign Ab080 +\U00010642;Linear A Sign Ab081 +\U00010643;Linear A Sign Ab082 +\U00010644;Linear A Sign Ab085 +\U00010645;Linear A Sign Ab086 +\U00010646;Linear A Sign Ab087 +\U00010647;Linear A Sign A100-102 +\U00010648;Linear A Sign Ab118 +\U00010649;Linear A Sign Ab120 +\U0001064A;Linear A Sign A120B +\U0001064B;Linear A Sign Ab122 +\U0001064C;Linear A Sign Ab123 +\U0001064D;Linear A Sign Ab131A +\U0001064E;Linear A Sign Ab131B +\U0001064F;Linear A Sign A131C +\U00010650;Linear A Sign Ab164 +\U00010651;Linear A Sign Ab171 +\U00010652;Linear A Sign Ab180 +\U00010653;Linear A Sign Ab188 +\U00010654;Linear A Sign Ab191 +\U00010655;Linear A Sign A301 +\U00010656;Linear A Sign A302 +\U00010657;Linear A Sign A303 +\U00010658;Linear A Sign A304 +\U00010659;Linear A Sign A305 +\U0001065A;Linear A Sign A306 +\U0001065B;Linear A Sign A307 +\U0001065C;Linear A Sign A308 +\U0001065D;Linear A Sign A309A +\U0001065E;Linear A Sign A309B +\U0001065F;Linear A Sign A309C +\U00010660;Linear A Sign A310 +\U00010661;Linear A Sign A311 +\U00010662;Linear A Sign A312 +\U00010663;Linear A Sign A313A +\U00010664;Linear A Sign A313B +\U00010665;Linear A Sign A313C +\U00010666;Linear A Sign A314 +\U00010667;Linear A Sign A315 +\U00010668;Linear A Sign A316 +\U00010669;Linear A Sign A317 +\U0001066A;Linear A Sign A318 +\U0001066B;Linear A Sign A319 +\U0001066C;Linear A Sign A320 +\U0001066D;Linear A Sign A321 +\U0001066E;Linear A Sign A322 +\U0001066F;Linear A Sign A323 +\U00010670;Linear A Sign A324 +\U00010671;Linear A Sign A325 +\U00010672;Linear A Sign A326 +\U00010673;Linear A Sign A327 +\U00010674;Linear A Sign A328 +\U00010675;Linear A Sign A329 +\U00010676;Linear A Sign A330 +\U00010677;Linear A Sign A331 +\U00010678;Linear A Sign A332 +\U00010679;Linear A Sign A333 +\U0001067A;Linear A Sign A334 +\U0001067B;Linear A Sign A335 +\U0001067C;Linear A Sign A336 +\U0001067D;Linear A Sign A337 +\U0001067E;Linear A Sign A338 +\U0001067F;Linear A Sign A339 +\U00010680;Linear A Sign A340 +\U00010681;Linear A Sign A341 +\U00010682;Linear A Sign A342 +\U00010683;Linear A Sign A343 +\U00010684;Linear A Sign A344 +\U00010685;Linear A Sign A345 +\U00010686;Linear A Sign A346 +\U00010687;Linear A Sign A347 +\U00010688;Linear A Sign A348 +\U00010689;Linear A Sign A349 +\U0001068A;Linear A Sign A350 +\U0001068B;Linear A Sign A351 +\U0001068C;Linear A Sign A352 +\U0001068D;Linear A Sign A353 +\U0001068E;Linear A Sign A354 +\U0001068F;Linear A Sign A355 +\U00010690;Linear A Sign A356 +\U00010691;Linear A Sign A357 +\U00010692;Linear A Sign A358 +\U00010693;Linear A Sign A359 +\U00010694;Linear A Sign A360 +\U00010695;Linear A Sign A361 +\U00010696;Linear A Sign A362 +\U00010697;Linear A Sign A363 +\U00010698;Linear A Sign A364 +\U00010699;Linear A Sign A365 +\U0001069A;Linear A Sign A366 +\U0001069B;Linear A Sign A367 +\U0001069C;Linear A Sign A368 +\U0001069D;Linear A Sign A369 +\U0001069E;Linear A Sign A370 +\U0001069F;Linear A Sign A371 +\U000106A0;Linear A Sign A400-Vas +\U000106A1;Linear A Sign A401-Vas +\U000106A2;Linear A Sign A402-Vas +\U000106A3;Linear A Sign A403-Vas +\U000106A4;Linear A Sign A404-Vas +\U000106A5;Linear A Sign A405-Vas +\U000106A6;Linear A Sign A406-Vas +\U000106A7;Linear A Sign A407-Vas +\U000106A8;Linear A Sign A408-Vas +\U000106A9;Linear A Sign A409-Vas +\U000106AA;Linear A Sign A410-Vas +\U000106AB;Linear A Sign A411-Vas +\U000106AC;Linear A Sign A412-Vas +\U000106AD;Linear A Sign A413-Vas +\U000106AE;Linear A Sign A414-Vas +\U000106AF;Linear A Sign A415-Vas +\U000106B0;Linear A Sign A416-Vas +\U000106B1;Linear A Sign A417-Vas +\U000106B2;Linear A Sign A418-Vas +\U000106B3;Linear A Sign A501 +\U000106B4;Linear A Sign A502 +\U000106B5;Linear A Sign A503 +\U000106B6;Linear A Sign A504 +\U000106B7;Linear A Sign A505 +\U000106B8;Linear A Sign A506 +\U000106B9;Linear A Sign A508 +\U000106BA;Linear A Sign A509 +\U000106BB;Linear A Sign A510 +\U000106BC;Linear A Sign A511 +\U000106BD;Linear A Sign A512 +\U000106BE;Linear A Sign A513 +\U000106BF;Linear A Sign A515 +\U000106C0;Linear A Sign A516 +\U000106C1;Linear A Sign A520 +\U000106C2;Linear A Sign A521 +\U000106C3;Linear A Sign A523 +\U000106C4;Linear A Sign A524 +\U000106C5;Linear A Sign A525 +\U000106C6;Linear A Sign A526 +\U000106C7;Linear A Sign A527 +\U000106C8;Linear A Sign A528 +\U000106C9;Linear A Sign A529 +\U000106CA;Linear A Sign A530 +\U000106CB;Linear A Sign A531 +\U000106CC;Linear A Sign A532 +\U000106CD;Linear A Sign A534 +\U000106CE;Linear A Sign A535 +\U000106CF;Linear A Sign A536 +\U000106D0;Linear A Sign A537 +\U000106D1;Linear A Sign A538 +\U000106D2;Linear A Sign A539 +\U000106D3;Linear A Sign A540 +\U000106D4;Linear A Sign A541 +\U000106D5;Linear A Sign A542 +\U000106D6;Linear A Sign A545 +\U000106D7;Linear A Sign A547 +\U000106D8;Linear A Sign A548 +\U000106D9;Linear A Sign A549 +\U000106DA;Linear A Sign A550 +\U000106DB;Linear A Sign A551 +\U000106DC;Linear A Sign A552 +\U000106DD;Linear A Sign A553 +\U000106DE;Linear A Sign A554 +\U000106DF;Linear A Sign A555 +\U000106E0;Linear A Sign A556 +\U000106E1;Linear A Sign A557 +\U000106E2;Linear A Sign A559 +\U000106E3;Linear A Sign A563 +\U000106E4;Linear A Sign A564 +\U000106E5;Linear A Sign A565 +\U000106E6;Linear A Sign A566 +\U000106E7;Linear A Sign A568 +\U000106E8;Linear A Sign A569 +\U000106E9;Linear A Sign A570 +\U000106EA;Linear A Sign A571 +\U000106EB;Linear A Sign A572 +\U000106EC;Linear A Sign A573 +\U000106ED;Linear A Sign A574 +\U000106EE;Linear A Sign A575 +\U000106EF;Linear A Sign A576 +\U000106F0;Linear A Sign A577 +\U000106F1;Linear A Sign A578 +\U000106F2;Linear A Sign A579 +\U000106F3;Linear A Sign A580 +\U000106F4;Linear A Sign A581 +\U000106F5;Linear A Sign A582 +\U000106F6;Linear A Sign A583 +\U000106F7;Linear A Sign A584 +\U000106F8;Linear A Sign A585 +\U000106F9;Linear A Sign A586 +\U000106FA;Linear A Sign A587 +\U000106FB;Linear A Sign A588 +\U000106FC;Linear A Sign A589 +\U000106FD;Linear A Sign A591 +\U000106FE;Linear A Sign A592 +\U000106FF;Linear A Sign A594 +\U00010700;Linear A Sign A595 +\U00010701;Linear A Sign A596 +\U00010702;Linear A Sign A598 +\U00010703;Linear A Sign A600 +\U00010704;Linear A Sign A601 +\U00010705;Linear A Sign A602 +\U00010706;Linear A Sign A603 +\U00010707;Linear A Sign A604 +\U00010708;Linear A Sign A606 +\U00010709;Linear A Sign A608 +\U0001070A;Linear A Sign A609 +\U0001070B;Linear A Sign A610 +\U0001070C;Linear A Sign A611 +\U0001070D;Linear A Sign A612 +\U0001070E;Linear A Sign A613 +\U0001070F;Linear A Sign A614 +\U00010710;Linear A Sign A615 +\U00010711;Linear A Sign A616 +\U00010712;Linear A Sign A617 +\U00010713;Linear A Sign A618 +\U00010714;Linear A Sign A619 +\U00010715;Linear A Sign A620 +\U00010716;Linear A Sign A621 +\U00010717;Linear A Sign A622 +\U00010718;Linear A Sign A623 +\U00010719;Linear A Sign A624 +\U0001071A;Linear A Sign A626 +\U0001071B;Linear A Sign A627 +\U0001071C;Linear A Sign A628 +\U0001071D;Linear A Sign A629 +\U0001071E;Linear A Sign A634 +\U0001071F;Linear A Sign A637 +\U00010720;Linear A Sign A638 +\U00010721;Linear A Sign A640 +\U00010722;Linear A Sign A642 +\U00010723;Linear A Sign A643 +\U00010724;Linear A Sign A644 +\U00010725;Linear A Sign A645 +\U00010726;Linear A Sign A646 +\U00010727;Linear A Sign A648 +\U00010728;Linear A Sign A649 +\U00010729;Linear A Sign A651 +\U0001072A;Linear A Sign A652 +\U0001072B;Linear A Sign A653 +\U0001072C;Linear A Sign A654 +\U0001072D;Linear A Sign A655 +\U0001072E;Linear A Sign A656 +\U0001072F;Linear A Sign A657 +\U00010730;Linear A Sign A658 +\U00010731;Linear A Sign A659 +\U00010732;Linear A Sign A660 +\U00010733;Linear A Sign A661 +\U00010734;Linear A Sign A662 +\U00010735;Linear A Sign A663 +\U00010736;Linear A Sign A664 +\U00010740;Linear A Sign A701 A +\U00010741;Linear A Sign A702 B +\U00010742;Linear A Sign A703 D +\U00010743;Linear A Sign A704 E +\U00010744;Linear A Sign A705 F +\U00010745;Linear A Sign A706 H +\U00010746;Linear A Sign A707 J +\U00010747;Linear A Sign A708 K +\U00010748;Linear A Sign A709 L +\U00010749;Linear A Sign A709-2 L2 +\U0001074A;Linear A Sign A709-3 L3 +\U0001074B;Linear A Sign A709-4 L4 +\U0001074C;Linear A Sign A709-6 L6 +\U0001074D;Linear A Sign A710 W +\U0001074E;Linear A Sign A711 X +\U0001074F;Linear A Sign A712 Y +\U00010750;Linear A Sign A713 Omega +\U00010751;Linear A Sign A714 Abb +\U00010752;Linear A Sign A715 Bb +\U00010753;Linear A Sign A717 Dd +\U00010754;Linear A Sign A726 Eyyy +\U00010755;Linear A Sign A732 Je +\U00010760;Linear A Sign A800 +\U00010761;Linear A Sign A801 +\U00010762;Linear A Sign A802 +\U00010763;Linear A Sign A803 +\U00010764;Linear A Sign A804 +\U00010765;Linear A Sign A805 +\U00010766;Linear A Sign A806 +\U00010767;Linear A Sign A807 +\U00010780;Modifier Letter Small Capital Aa +\U00010781;Modifier Letter Superscript Triangular Colon +\U00010782;Modifier Letter Superscript Half Triangular Colon +\U00010783;Modifier Letter Small Ae +\U00010784;Modifier Letter Small Capital B +\U00010785;Modifier Letter Small B With Hook +\U00010787;Modifier Letter Small Dz Digraph +\U00010788;Modifier Letter Small Dz Digraph With Retroflex Hook +\U00010789;Modifier Letter Small Dz Digraph With Curl +\U0001078A;Modifier Letter Small Dezh Digraph +\U0001078B;Modifier Letter Small D With Tail +\U0001078C;Modifier Letter Small D With Hook +\U0001078D;Modifier Letter Small D With Hook And Tail +\U0001078E;Modifier Letter Small Reversed E +\U0001078F;Modifier Letter Small Closed Reversed Open E +\U00010790;Modifier Letter Small Feng Digraph +\U00010791;Modifier Letter Small Rams Horn +\U00010792;Modifier Letter Small Capital G +\U00010793;Modifier Letter Small G With Hook +\U00010794;Modifier Letter Small Capital G With Hook +\U00010795;Modifier Letter Small H With Stroke +\U00010796;Modifier Letter Small Capital H +\U00010797;Modifier Letter Small Heng With Hook +\U00010798;Modifier Letter Small Dotless J With Stroke And Hook +\U00010799;Modifier Letter Small Ls Digraph +\U0001079A;Modifier Letter Small Lz Digraph +\U0001079B;Modifier Letter Small L With Belt +\U0001079C;Modifier Letter Small Capital L With Belt +\U0001079D;Modifier Letter Small L With Retroflex Hook And Belt +\U0001079E;Modifier Letter Small Lezh +\U0001079F;Modifier Letter Small Lezh With Retroflex Hook +\U000107A0;Modifier Letter Small Turned Y +\U000107A1;Modifier Letter Small Turned Y With Belt +\U000107A2;Modifier Letter Small O With Stroke +\U000107A3;Modifier Letter Small Capital Oe +\U000107A4;Modifier Letter Small Closed Omega +\U000107A5;Modifier Letter Small Q +\U000107A6;Modifier Letter Small Turned R With Long Leg +\U000107A7;Modifier Letter Small Turned R With Long Leg And Retroflex Hook +\U000107A8;Modifier Letter Small R With Tail +\U000107A9;Modifier Letter Small R With Fishhook +\U000107AA;Modifier Letter Small Capital R +\U000107AB;Modifier Letter Small Tc Digraph With Curl +\U000107AC;Modifier Letter Small Ts Digraph +\U000107AD;Modifier Letter Small Ts Digraph With Retroflex Hook +\U000107AE;Modifier Letter Small Tesh Digraph +\U000107AF;Modifier Letter Small T With Retroflex Hook +\U000107B0;Modifier Letter Small V With Right Hook +\U000107B2;Modifier Letter Small Capital Y +\U000107B3;Modifier Letter Glottal Stop With Stroke +\U000107B4;Modifier Letter Reversed Glottal Stop With Stroke +\U000107B5;Modifier Letter Bilabial Click +\U000107B6;Modifier Letter Dental Click +\U000107B7;Modifier Letter Lateral Click +\U000107B8;Modifier Letter Alveolar Click +\U000107B9;Modifier Letter Retroflex Click With Retroflex Hook +\U000107BA;Modifier Letter Small S With Curl +\U00010800;Cypriot Syllable A +\U00010801;Cypriot Syllable E +\U00010802;Cypriot Syllable I +\U00010803;Cypriot Syllable O +\U00010804;Cypriot Syllable U +\U00010805;Cypriot Syllable Ja +\U00010808;Cypriot Syllable Jo +\U0001080A;Cypriot Syllable Ka +\U0001080B;Cypriot Syllable Ke +\U0001080C;Cypriot Syllable Ki +\U0001080D;Cypriot Syllable Ko +\U0001080E;Cypriot Syllable Ku +\U0001080F;Cypriot Syllable La +\U00010810;Cypriot Syllable Le +\U00010811;Cypriot Syllable Li +\U00010812;Cypriot Syllable Lo +\U00010813;Cypriot Syllable Lu +\U00010814;Cypriot Syllable Ma +\U00010815;Cypriot Syllable Me +\U00010816;Cypriot Syllable Mi +\U00010817;Cypriot Syllable Mo +\U00010818;Cypriot Syllable Mu +\U00010819;Cypriot Syllable Na +\U0001081A;Cypriot Syllable Ne +\U0001081B;Cypriot Syllable Ni +\U0001081C;Cypriot Syllable No +\U0001081D;Cypriot Syllable Nu +\U0001081E;Cypriot Syllable Pa +\U0001081F;Cypriot Syllable Pe +\U00010820;Cypriot Syllable Pi +\U00010821;Cypriot Syllable Po +\U00010822;Cypriot Syllable Pu +\U00010823;Cypriot Syllable Ra +\U00010824;Cypriot Syllable Re +\U00010825;Cypriot Syllable Ri +\U00010826;Cypriot Syllable Ro +\U00010827;Cypriot Syllable Ru +\U00010828;Cypriot Syllable Sa +\U00010829;Cypriot Syllable Se +\U0001082A;Cypriot Syllable Si +\U0001082B;Cypriot Syllable So +\U0001082C;Cypriot Syllable Su +\U0001082D;Cypriot Syllable Ta +\U0001082E;Cypriot Syllable Te +\U0001082F;Cypriot Syllable Ti +\U00010830;Cypriot Syllable To +\U00010831;Cypriot Syllable Tu +\U00010832;Cypriot Syllable Wa +\U00010833;Cypriot Syllable We +\U00010834;Cypriot Syllable Wi +\U00010835;Cypriot Syllable Wo +\U00010837;Cypriot Syllable Xa +\U00010838;Cypriot Syllable Xe +\U0001083C;Cypriot Syllable Za +\U0001083F;Cypriot Syllable Zo +\U00010840;Imperial Aramaic Letter Aleph +\U00010841;Imperial Aramaic Letter Beth +\U00010842;Imperial Aramaic Letter Gimel +\U00010843;Imperial Aramaic Letter Daleth +\U00010844;Imperial Aramaic Letter He +\U00010845;Imperial Aramaic Letter Waw +\U00010846;Imperial Aramaic Letter Zayin +\U00010847;Imperial Aramaic Letter Heth +\U00010848;Imperial Aramaic Letter Teth +\U00010849;Imperial Aramaic Letter Yodh +\U0001084A;Imperial Aramaic Letter Kaph +\U0001084B;Imperial Aramaic Letter Lamedh +\U0001084C;Imperial Aramaic Letter Mem +\U0001084D;Imperial Aramaic Letter Nun +\U0001084E;Imperial Aramaic Letter Samekh +\U0001084F;Imperial Aramaic Letter Ayin +\U00010850;Imperial Aramaic Letter Pe +\U00010851;Imperial Aramaic Letter Sadhe +\U00010852;Imperial Aramaic Letter Qoph +\U00010853;Imperial Aramaic Letter Resh +\U00010854;Imperial Aramaic Letter Shin +\U00010855;Imperial Aramaic Letter Taw +\U00010857;Imperial Aramaic Section Sign +\U00010858;Imperial Aramaic Number One +\U00010859;Imperial Aramaic Number Two +\U0001085A;Imperial Aramaic Number Three +\U0001085B;Imperial Aramaic Number Ten +\U0001085C;Imperial Aramaic Number Twenty +\U0001085D;Imperial Aramaic Number One Hundred +\U0001085E;Imperial Aramaic Number One Thousand +\U0001085F;Imperial Aramaic Number Ten Thousand +\U00010860;Palmyrene Letter Aleph +\U00010861;Palmyrene Letter Beth +\U00010862;Palmyrene Letter Gimel +\U00010863;Palmyrene Letter Daleth +\U00010864;Palmyrene Letter He +\U00010865;Palmyrene Letter Waw +\U00010866;Palmyrene Letter Zayin +\U00010867;Palmyrene Letter Heth +\U00010868;Palmyrene Letter Teth +\U00010869;Palmyrene Letter Yodh +\U0001086A;Palmyrene Letter Kaph +\U0001086B;Palmyrene Letter Lamedh +\U0001086C;Palmyrene Letter Mem +\U0001086D;Palmyrene Letter Final Nun +\U0001086E;Palmyrene Letter Nun +\U0001086F;Palmyrene Letter Samekh +\U00010870;Palmyrene Letter Ayin +\U00010871;Palmyrene Letter Pe +\U00010872;Palmyrene Letter Sadhe +\U00010873;Palmyrene Letter Qoph +\U00010874;Palmyrene Letter Resh +\U00010875;Palmyrene Letter Shin +\U00010876;Palmyrene Letter Taw +\U00010877;Palmyrene Left-Pointing Fleuron +\U00010878;Palmyrene Right-Pointing Fleuron +\U00010879;Palmyrene Number One +\U0001087A;Palmyrene Number Two +\U0001087B;Palmyrene Number Three +\U0001087C;Palmyrene Number Four +\U0001087D;Palmyrene Number Five +\U0001087E;Palmyrene Number Ten +\U0001087F;Palmyrene Number Twenty +\U00010880;Nabataean Letter Final Aleph +\U00010881;Nabataean Letter Aleph +\U00010882;Nabataean Letter Final Beth +\U00010883;Nabataean Letter Beth +\U00010884;Nabataean Letter Gimel +\U00010885;Nabataean Letter Daleth +\U00010886;Nabataean Letter Final He +\U00010887;Nabataean Letter He +\U00010888;Nabataean Letter Waw +\U00010889;Nabataean Letter Zayin +\U0001088A;Nabataean Letter Heth +\U0001088B;Nabataean Letter Teth +\U0001088C;Nabataean Letter Final Yodh +\U0001088D;Nabataean Letter Yodh +\U0001088E;Nabataean Letter Final Kaph +\U0001088F;Nabataean Letter Kaph +\U00010890;Nabataean Letter Final Lamedh +\U00010891;Nabataean Letter Lamedh +\U00010892;Nabataean Letter Final Mem +\U00010893;Nabataean Letter Mem +\U00010894;Nabataean Letter Final Nun +\U00010895;Nabataean Letter Nun +\U00010896;Nabataean Letter Samekh +\U00010897;Nabataean Letter Ayin +\U00010898;Nabataean Letter Pe +\U00010899;Nabataean Letter Sadhe +\U0001089A;Nabataean Letter Qoph +\U0001089B;Nabataean Letter Resh +\U0001089C;Nabataean Letter Final Shin +\U0001089D;Nabataean Letter Shin +\U0001089E;Nabataean Letter Taw +\U000108A7;Nabataean Number One +\U000108A8;Nabataean Number Two +\U000108A9;Nabataean Number Three +\U000108AA;Nabataean Number Four +\U000108AB;Nabataean Cruciform Number Four +\U000108AC;Nabataean Number Five +\U000108AD;Nabataean Number Ten +\U000108AE;Nabataean Number Twenty +\U000108AF;Nabataean Number One Hundred +\U000108E0;Hatran Letter Aleph +\U000108E1;Hatran Letter Beth +\U000108E2;Hatran Letter Gimel +\U000108E3;Hatran Letter Daleth-Resh +\U000108E4;Hatran Letter He +\U000108E5;Hatran Letter Waw +\U000108E6;Hatran Letter Zayn +\U000108E7;Hatran Letter Heth +\U000108E8;Hatran Letter Teth +\U000108E9;Hatran Letter Yodh +\U000108EA;Hatran Letter Kaph +\U000108EB;Hatran Letter Lamedh +\U000108EC;Hatran Letter Mem +\U000108ED;Hatran Letter Nun +\U000108EE;Hatran Letter Samekh +\U000108EF;Hatran Letter Ayn +\U000108F0;Hatran Letter Pe +\U000108F1;Hatran Letter Sadhe +\U000108F2;Hatran Letter Qoph +\U000108F4;Hatran Letter Shin +\U000108F5;Hatran Letter Taw +\U000108FB;Hatran Number One +\U000108FC;Hatran Number Five +\U000108FD;Hatran Number Ten +\U000108FE;Hatran Number Twenty +\U000108FF;Hatran Number One Hundred +\U00010900;Phoenician Letter Alf +\U00010901;Phoenician Letter Bet +\U00010902;Phoenician Letter Gaml +\U00010903;Phoenician Letter Delt +\U00010904;Phoenician Letter He +\U00010905;Phoenician Letter Wau +\U00010906;Phoenician Letter Zai +\U00010907;Phoenician Letter Het +\U00010908;Phoenician Letter Tet +\U00010909;Phoenician Letter Yod +\U0001090A;Phoenician Letter Kaf +\U0001090B;Phoenician Letter Lamd +\U0001090C;Phoenician Letter Mem +\U0001090D;Phoenician Letter Nun +\U0001090E;Phoenician Letter Semk +\U0001090F;Phoenician Letter Ain +\U00010910;Phoenician Letter Pe +\U00010911;Phoenician Letter Sade +\U00010912;Phoenician Letter Qof +\U00010913;Phoenician Letter Rosh +\U00010914;Phoenician Letter Shin +\U00010915;Phoenician Letter Tau +\U00010916;Phoenician Number One +\U00010917;Phoenician Number Ten +\U00010918;Phoenician Number Twenty +\U00010919;Phoenician Number One Hundred +\U0001091A;Phoenician Number Two +\U0001091B;Phoenician Number Three +\U0001091F;Phoenician Word Separator +\U00010920;Lydian Letter A +\U00010921;Lydian Letter B +\U00010922;Lydian Letter G +\U00010923;Lydian Letter D +\U00010924;Lydian Letter E +\U00010925;Lydian Letter V +\U00010926;Lydian Letter I +\U00010927;Lydian Letter Y +\U00010928;Lydian Letter K +\U00010929;Lydian Letter L +\U0001092A;Lydian Letter M +\U0001092B;Lydian Letter N +\U0001092C;Lydian Letter O +\U0001092D;Lydian Letter R +\U0001092E;Lydian Letter Ss +\U0001092F;Lydian Letter T +\U00010930;Lydian Letter U +\U00010931;Lydian Letter F +\U00010932;Lydian Letter Q +\U00010933;Lydian Letter S +\U00010934;Lydian Letter Tt +\U00010935;Lydian Letter An +\U00010936;Lydian Letter En +\U00010937;Lydian Letter Ly +\U00010938;Lydian Letter Nn +\U00010939;Lydian Letter C +\U0001093F;Lydian Triangular Mark +\U00010980;Meroitic Hieroglyphic Letter A +\U00010981;Meroitic Hieroglyphic Letter E +\U00010982;Meroitic Hieroglyphic Letter I +\U00010983;Meroitic Hieroglyphic Letter O +\U00010984;Meroitic Hieroglyphic Letter Ya +\U00010985;Meroitic Hieroglyphic Letter Wa +\U00010986;Meroitic Hieroglyphic Letter Ba +\U00010987;Meroitic Hieroglyphic Letter Ba-2 +\U00010988;Meroitic Hieroglyphic Letter Pa +\U00010989;Meroitic Hieroglyphic Letter Ma +\U0001098A;Meroitic Hieroglyphic Letter Na +\U0001098B;Meroitic Hieroglyphic Letter Na-2 +\U0001098C;Meroitic Hieroglyphic Letter Ne +\U0001098D;Meroitic Hieroglyphic Letter Ne-2 +\U0001098E;Meroitic Hieroglyphic Letter Ra +\U0001098F;Meroitic Hieroglyphic Letter Ra-2 +\U00010990;Meroitic Hieroglyphic Letter La +\U00010991;Meroitic Hieroglyphic Letter Kha +\U00010992;Meroitic Hieroglyphic Letter Hha +\U00010993;Meroitic Hieroglyphic Letter Sa +\U00010994;Meroitic Hieroglyphic Letter Sa-2 +\U00010995;Meroitic Hieroglyphic Letter Se +\U00010996;Meroitic Hieroglyphic Letter Ka +\U00010997;Meroitic Hieroglyphic Letter Qa +\U00010998;Meroitic Hieroglyphic Letter Ta +\U00010999;Meroitic Hieroglyphic Letter Ta-2 +\U0001099A;Meroitic Hieroglyphic Letter Te +\U0001099B;Meroitic Hieroglyphic Letter Te-2 +\U0001099C;Meroitic Hieroglyphic Letter To +\U0001099D;Meroitic Hieroglyphic Letter Da +\U0001099E;Meroitic Hieroglyphic Symbol Vidj +\U0001099F;Meroitic Hieroglyphic Symbol Vidj-2 +\U000109A0;Meroitic Cursive Letter A +\U000109A1;Meroitic Cursive Letter E +\U000109A2;Meroitic Cursive Letter I +\U000109A3;Meroitic Cursive Letter O +\U000109A4;Meroitic Cursive Letter Ya +\U000109A5;Meroitic Cursive Letter Wa +\U000109A6;Meroitic Cursive Letter Ba +\U000109A7;Meroitic Cursive Letter Pa +\U000109A8;Meroitic Cursive Letter Ma +\U000109A9;Meroitic Cursive Letter Na +\U000109AA;Meroitic Cursive Letter Ne +\U000109AB;Meroitic Cursive Letter Ra +\U000109AC;Meroitic Cursive Letter La +\U000109AD;Meroitic Cursive Letter Kha +\U000109AE;Meroitic Cursive Letter Hha +\U000109AF;Meroitic Cursive Letter Sa +\U000109B0;Meroitic Cursive Letter Archaic Sa +\U000109B1;Meroitic Cursive Letter Se +\U000109B2;Meroitic Cursive Letter Ka +\U000109B3;Meroitic Cursive Letter Qa +\U000109B4;Meroitic Cursive Letter Ta +\U000109B5;Meroitic Cursive Letter Te +\U000109B6;Meroitic Cursive Letter To +\U000109B7;Meroitic Cursive Letter Da +\U000109BC;Meroitic Cursive Fraction Eleven Twelfths +\U000109BD;Meroitic Cursive Fraction One Half +\U000109BE;Meroitic Cursive Logogram Rmt +\U000109BF;Meroitic Cursive Logogram Imn +\U000109C0;Meroitic Cursive Number One +\U000109C1;Meroitic Cursive Number Two +\U000109C2;Meroitic Cursive Number Three +\U000109C3;Meroitic Cursive Number Four +\U000109C4;Meroitic Cursive Number Five +\U000109C5;Meroitic Cursive Number Six +\U000109C6;Meroitic Cursive Number Seven +\U000109C7;Meroitic Cursive Number Eight +\U000109C8;Meroitic Cursive Number Nine +\U000109C9;Meroitic Cursive Number Ten +\U000109CA;Meroitic Cursive Number Twenty +\U000109CB;Meroitic Cursive Number Thirty +\U000109CC;Meroitic Cursive Number Forty +\U000109CD;Meroitic Cursive Number Fifty +\U000109CE;Meroitic Cursive Number Sixty +\U000109CF;Meroitic Cursive Number Seventy +\U000109D2;Meroitic Cursive Number One Hundred +\U000109D3;Meroitic Cursive Number Two Hundred +\U000109D4;Meroitic Cursive Number Three Hundred +\U000109D5;Meroitic Cursive Number Four Hundred +\U000109D6;Meroitic Cursive Number Five Hundred +\U000109D7;Meroitic Cursive Number Six Hundred +\U000109D8;Meroitic Cursive Number Seven Hundred +\U000109D9;Meroitic Cursive Number Eight Hundred +\U000109DA;Meroitic Cursive Number Nine Hundred +\U000109DB;Meroitic Cursive Number One Thousand +\U000109DC;Meroitic Cursive Number Two Thousand +\U000109DD;Meroitic Cursive Number Three Thousand +\U000109DE;Meroitic Cursive Number Four Thousand +\U000109DF;Meroitic Cursive Number Five Thousand +\U000109E0;Meroitic Cursive Number Six Thousand +\U000109E1;Meroitic Cursive Number Seven Thousand +\U000109E2;Meroitic Cursive Number Eight Thousand +\U000109E3;Meroitic Cursive Number Nine Thousand +\U000109E4;Meroitic Cursive Number Ten Thousand +\U000109E5;Meroitic Cursive Number Twenty Thousand +\U000109E6;Meroitic Cursive Number Thirty Thousand +\U000109E7;Meroitic Cursive Number Forty Thousand +\U000109E8;Meroitic Cursive Number Fifty Thousand +\U000109E9;Meroitic Cursive Number Sixty Thousand +\U000109EA;Meroitic Cursive Number Seventy Thousand +\U000109EB;Meroitic Cursive Number Eighty Thousand +\U000109EC;Meroitic Cursive Number Ninety Thousand +\U000109ED;Meroitic Cursive Number One Hundred Thousand +\U000109EE;Meroitic Cursive Number Two Hundred Thousand +\U000109EF;Meroitic Cursive Number Three Hundred Thousand +\U000109F0;Meroitic Cursive Number Four Hundred Thousand +\U000109F1;Meroitic Cursive Number Five Hundred Thousand +\U000109F2;Meroitic Cursive Number Six Hundred Thousand +\U000109F3;Meroitic Cursive Number Seven Hundred Thousand +\U000109F4;Meroitic Cursive Number Eight Hundred Thousand +\U000109F5;Meroitic Cursive Number Nine Hundred Thousand +\U000109F6;Meroitic Cursive Fraction One Twelfth +\U000109F7;Meroitic Cursive Fraction Two Twelfths +\U000109F8;Meroitic Cursive Fraction Three Twelfths +\U000109F9;Meroitic Cursive Fraction Four Twelfths +\U000109FA;Meroitic Cursive Fraction Five Twelfths +\U000109FB;Meroitic Cursive Fraction Six Twelfths +\U000109FC;Meroitic Cursive Fraction Seven Twelfths +\U000109FD;Meroitic Cursive Fraction Eight Twelfths +\U000109FE;Meroitic Cursive Fraction Nine Twelfths +\U000109FF;Meroitic Cursive Fraction Ten Twelfths +\U00010A00;Kharoshthi Letter A +\U00010A01;Kharoshthi Vowel Sign I +\U00010A02;Kharoshthi Vowel Sign U +\U00010A03;Kharoshthi Vowel Sign Vocalic R +\U00010A05;Kharoshthi Vowel Sign E +\U00010A06;Kharoshthi Vowel Sign O +\U00010A0C;Kharoshthi Vowel Length Mark +\U00010A0D;Kharoshthi Sign Double Ring Below +\U00010A0E;Kharoshthi Sign Anusvara +\U00010A0F;Kharoshthi Sign Visarga +\U00010A10;Kharoshthi Letter Ka +\U00010A11;Kharoshthi Letter Kha +\U00010A12;Kharoshthi Letter Ga +\U00010A13;Kharoshthi Letter Gha +\U00010A15;Kharoshthi Letter Ca +\U00010A16;Kharoshthi Letter Cha +\U00010A17;Kharoshthi Letter Ja +\U00010A19;Kharoshthi Letter Nya +\U00010A1A;Kharoshthi Letter Tta +\U00010A1B;Kharoshthi Letter Ttha +\U00010A1C;Kharoshthi Letter Dda +\U00010A1D;Kharoshthi Letter Ddha +\U00010A1E;Kharoshthi Letter Nna +\U00010A1F;Kharoshthi Letter Ta +\U00010A20;Kharoshthi Letter Tha +\U00010A21;Kharoshthi Letter Da +\U00010A22;Kharoshthi Letter Dha +\U00010A23;Kharoshthi Letter Na +\U00010A24;Kharoshthi Letter Pa +\U00010A25;Kharoshthi Letter Pha +\U00010A26;Kharoshthi Letter Ba +\U00010A27;Kharoshthi Letter Bha +\U00010A28;Kharoshthi Letter Ma +\U00010A29;Kharoshthi Letter Ya +\U00010A2A;Kharoshthi Letter Ra +\U00010A2B;Kharoshthi Letter La +\U00010A2C;Kharoshthi Letter Va +\U00010A2D;Kharoshthi Letter Sha +\U00010A2E;Kharoshthi Letter Ssa +\U00010A2F;Kharoshthi Letter Sa +\U00010A30;Kharoshthi Letter Za +\U00010A31;Kharoshthi Letter Ha +\U00010A32;Kharoshthi Letter Kka +\U00010A33;Kharoshthi Letter Tttha +\U00010A34;Kharoshthi Letter Ttta +\U00010A35;Kharoshthi Letter Vha +\U00010A38;Kharoshthi Sign Bar Above +\U00010A39;Kharoshthi Sign Cauda +\U00010A3A;Kharoshthi Sign Dot Below +\U00010A3F;Kharoshthi Virama +\U00010A40;Kharoshthi Digit One +\U00010A41;Kharoshthi Digit Two +\U00010A42;Kharoshthi Digit Three +\U00010A43;Kharoshthi Digit Four +\U00010A44;Kharoshthi Number Ten +\U00010A45;Kharoshthi Number Twenty +\U00010A46;Kharoshthi Number One Hundred +\U00010A47;Kharoshthi Number One Thousand +\U00010A48;Kharoshthi Fraction One Half +\U00010A50;Kharoshthi Punctuation Dot +\U00010A51;Kharoshthi Punctuation Small Circle +\U00010A52;Kharoshthi Punctuation Circle +\U00010A53;Kharoshthi Punctuation Crescent Bar +\U00010A54;Kharoshthi Punctuation Mangalam +\U00010A55;Kharoshthi Punctuation Lotus +\U00010A56;Kharoshthi Punctuation Danda +\U00010A57;Kharoshthi Punctuation Double Danda +\U00010A58;Kharoshthi Punctuation Lines +\U00010A60;Old South Arabian Letter He +\U00010A61;Old South Arabian Letter Lamedh +\U00010A62;Old South Arabian Letter Heth +\U00010A63;Old South Arabian Letter Mem +\U00010A64;Old South Arabian Letter Qoph +\U00010A65;Old South Arabian Letter Waw +\U00010A66;Old South Arabian Letter Shin +\U00010A67;Old South Arabian Letter Resh +\U00010A68;Old South Arabian Letter Beth +\U00010A69;Old South Arabian Letter Taw +\U00010A6A;Old South Arabian Letter Sat +\U00010A6B;Old South Arabian Letter Kaph +\U00010A6C;Old South Arabian Letter Nun +\U00010A6D;Old South Arabian Letter Kheth +\U00010A6E;Old South Arabian Letter Sadhe +\U00010A6F;Old South Arabian Letter Samekh +\U00010A70;Old South Arabian Letter Fe +\U00010A71;Old South Arabian Letter Alef +\U00010A72;Old South Arabian Letter Ayn +\U00010A73;Old South Arabian Letter Dhadhe +\U00010A74;Old South Arabian Letter Gimel +\U00010A75;Old South Arabian Letter Daleth +\U00010A76;Old South Arabian Letter Ghayn +\U00010A77;Old South Arabian Letter Teth +\U00010A78;Old South Arabian Letter Zayn +\U00010A79;Old South Arabian Letter Dhaleth +\U00010A7A;Old South Arabian Letter Yodh +\U00010A7B;Old South Arabian Letter Thaw +\U00010A7C;Old South Arabian Letter Theth +\U00010A7D;Old South Arabian Number One +\U00010A7E;Old South Arabian Number Fifty +\U00010A7F;Old South Arabian Numeric Indicator +\U00010A80;Old North Arabian Letter Heh +\U00010A81;Old North Arabian Letter Lam +\U00010A82;Old North Arabian Letter Hah +\U00010A83;Old North Arabian Letter Meem +\U00010A84;Old North Arabian Letter Qaf +\U00010A85;Old North Arabian Letter Waw +\U00010A86;Old North Arabian Letter Es-2 +\U00010A87;Old North Arabian Letter Reh +\U00010A88;Old North Arabian Letter Beh +\U00010A89;Old North Arabian Letter Teh +\U00010A8A;Old North Arabian Letter Es-1 +\U00010A8B;Old North Arabian Letter Kaf +\U00010A8C;Old North Arabian Letter Noon +\U00010A8D;Old North Arabian Letter Khah +\U00010A8E;Old North Arabian Letter Sad +\U00010A8F;Old North Arabian Letter Es-3 +\U00010A90;Old North Arabian Letter Feh +\U00010A91;Old North Arabian Letter Alef +\U00010A92;Old North Arabian Letter Ain +\U00010A93;Old North Arabian Letter Dad +\U00010A94;Old North Arabian Letter Geem +\U00010A95;Old North Arabian Letter Dal +\U00010A96;Old North Arabian Letter Ghain +\U00010A97;Old North Arabian Letter Tah +\U00010A98;Old North Arabian Letter Zain +\U00010A99;Old North Arabian Letter Thal +\U00010A9A;Old North Arabian Letter Yeh +\U00010A9B;Old North Arabian Letter Theh +\U00010A9C;Old North Arabian Letter Zah +\U00010A9D;Old North Arabian Number One +\U00010A9E;Old North Arabian Number Ten +\U00010A9F;Old North Arabian Number Twenty +\U00010AC0;Manichaean Letter Aleph +\U00010AC1;Manichaean Letter Beth +\U00010AC2;Manichaean Letter Bheth +\U00010AC3;Manichaean Letter Gimel +\U00010AC4;Manichaean Letter Ghimel +\U00010AC5;Manichaean Letter Daleth +\U00010AC6;Manichaean Letter He +\U00010AC7;Manichaean Letter Waw +\U00010AC8;Manichaean Sign Ud +\U00010AC9;Manichaean Letter Zayin +\U00010ACA;Manichaean Letter Zhayin +\U00010ACB;Manichaean Letter Jayin +\U00010ACC;Manichaean Letter Jhayin +\U00010ACD;Manichaean Letter Heth +\U00010ACE;Manichaean Letter Teth +\U00010ACF;Manichaean Letter Yodh +\U00010AD0;Manichaean Letter Kaph +\U00010AD1;Manichaean Letter Xaph +\U00010AD2;Manichaean Letter Khaph +\U00010AD3;Manichaean Letter Lamedh +\U00010AD4;Manichaean Letter Dhamedh +\U00010AD5;Manichaean Letter Thamedh +\U00010AD6;Manichaean Letter Mem +\U00010AD7;Manichaean Letter Nun +\U00010AD8;Manichaean Letter Samekh +\U00010AD9;Manichaean Letter Ayin +\U00010ADA;Manichaean Letter Aayin +\U00010ADB;Manichaean Letter Pe +\U00010ADC;Manichaean Letter Fe +\U00010ADD;Manichaean Letter Sadhe +\U00010ADE;Manichaean Letter Qoph +\U00010ADF;Manichaean Letter Xoph +\U00010AE0;Manichaean Letter Qhoph +\U00010AE1;Manichaean Letter Resh +\U00010AE2;Manichaean Letter Shin +\U00010AE3;Manichaean Letter Sshin +\U00010AE4;Manichaean Letter Taw +\U00010AE5;Manichaean Abbreviation Mark Above +\U00010AE6;Manichaean Abbreviation Mark Below +\U00010AEB;Manichaean Number One +\U00010AEC;Manichaean Number Five +\U00010AED;Manichaean Number Ten +\U00010AEE;Manichaean Number Twenty +\U00010AEF;Manichaean Number One Hundred +\U00010AF0;Manichaean Punctuation Star +\U00010AF1;Manichaean Punctuation Fleuron +\U00010AF2;Manichaean Punctuation Double Dot Within Dot +\U00010AF3;Manichaean Punctuation Dot Within Dot +\U00010AF4;Manichaean Punctuation Dot +\U00010AF5;Manichaean Punctuation Two Dots +\U00010AF6;Manichaean Punctuation Line Filler +\U00010B00;Avestan Letter A +\U00010B01;Avestan Letter Aa +\U00010B02;Avestan Letter Ao +\U00010B03;Avestan Letter Aao +\U00010B04;Avestan Letter An +\U00010B05;Avestan Letter Aan +\U00010B06;Avestan Letter Ae +\U00010B07;Avestan Letter Aee +\U00010B08;Avestan Letter E +\U00010B09;Avestan Letter Ee +\U00010B0A;Avestan Letter O +\U00010B0B;Avestan Letter Oo +\U00010B0C;Avestan Letter I +\U00010B0D;Avestan Letter Ii +\U00010B0E;Avestan Letter U +\U00010B0F;Avestan Letter Uu +\U00010B10;Avestan Letter Ke +\U00010B11;Avestan Letter Xe +\U00010B12;Avestan Letter Xye +\U00010B13;Avestan Letter Xve +\U00010B14;Avestan Letter Ge +\U00010B15;Avestan Letter Gge +\U00010B16;Avestan Letter Ghe +\U00010B17;Avestan Letter Ce +\U00010B18;Avestan Letter Je +\U00010B19;Avestan Letter Te +\U00010B1A;Avestan Letter The +\U00010B1B;Avestan Letter De +\U00010B1C;Avestan Letter Dhe +\U00010B1D;Avestan Letter Tte +\U00010B1E;Avestan Letter Pe +\U00010B1F;Avestan Letter Fe +\U00010B20;Avestan Letter Be +\U00010B21;Avestan Letter Bhe +\U00010B22;Avestan Letter Nge +\U00010B23;Avestan Letter Ngye +\U00010B24;Avestan Letter Ngve +\U00010B25;Avestan Letter Ne +\U00010B26;Avestan Letter Nye +\U00010B27;Avestan Letter Nne +\U00010B28;Avestan Letter Me +\U00010B29;Avestan Letter Hme +\U00010B2A;Avestan Letter Yye +\U00010B2B;Avestan Letter Ye +\U00010B2C;Avestan Letter Ve +\U00010B2D;Avestan Letter Re +\U00010B2E;Avestan Letter Le +\U00010B2F;Avestan Letter Se +\U00010B30;Avestan Letter Ze +\U00010B31;Avestan Letter She +\U00010B32;Avestan Letter Zhe +\U00010B33;Avestan Letter Shye +\U00010B34;Avestan Letter Sshe +\U00010B35;Avestan Letter He +\U00010B39;Avestan Abbreviation Mark +\U00010B3A;Tiny Two Dots Over One Dot Punctuation +\U00010B3B;Small Two Dots Over One Dot Punctuation +\U00010B3C;Large Two Dots Over One Dot Punctuation +\U00010B3D;Large One Dot Over Two Dots Punctuation +\U00010B3E;Large Two Rings Over One Ring Punctuation +\U00010B3F;Large One Ring Over Two Rings Punctuation +\U00010B40;Inscriptional Parthian Letter Aleph +\U00010B41;Inscriptional Parthian Letter Beth +\U00010B42;Inscriptional Parthian Letter Gimel +\U00010B43;Inscriptional Parthian Letter Daleth +\U00010B44;Inscriptional Parthian Letter He +\U00010B45;Inscriptional Parthian Letter Waw +\U00010B46;Inscriptional Parthian Letter Zayin +\U00010B47;Inscriptional Parthian Letter Heth +\U00010B48;Inscriptional Parthian Letter Teth +\U00010B49;Inscriptional Parthian Letter Yodh +\U00010B4A;Inscriptional Parthian Letter Kaph +\U00010B4B;Inscriptional Parthian Letter Lamedh +\U00010B4C;Inscriptional Parthian Letter Mem +\U00010B4D;Inscriptional Parthian Letter Nun +\U00010B4E;Inscriptional Parthian Letter Samekh +\U00010B4F;Inscriptional Parthian Letter Ayin +\U00010B50;Inscriptional Parthian Letter Pe +\U00010B51;Inscriptional Parthian Letter Sadhe +\U00010B52;Inscriptional Parthian Letter Qoph +\U00010B53;Inscriptional Parthian Letter Resh +\U00010B54;Inscriptional Parthian Letter Shin +\U00010B55;Inscriptional Parthian Letter Taw +\U00010B58;Inscriptional Parthian Number One +\U00010B59;Inscriptional Parthian Number Two +\U00010B5A;Inscriptional Parthian Number Three +\U00010B5B;Inscriptional Parthian Number Four +\U00010B5C;Inscriptional Parthian Number Ten +\U00010B5D;Inscriptional Parthian Number Twenty +\U00010B5E;Inscriptional Parthian Number One Hundred +\U00010B5F;Inscriptional Parthian Number One Thousand +\U00010B60;Inscriptional Pahlavi Letter Aleph +\U00010B61;Inscriptional Pahlavi Letter Beth +\U00010B62;Inscriptional Pahlavi Letter Gimel +\U00010B63;Inscriptional Pahlavi Letter Daleth +\U00010B64;Inscriptional Pahlavi Letter He +\U00010B65;Inscriptional Pahlavi Letter Waw-Ayin-Resh +\U00010B66;Inscriptional Pahlavi Letter Zayin +\U00010B67;Inscriptional Pahlavi Letter Heth +\U00010B68;Inscriptional Pahlavi Letter Teth +\U00010B69;Inscriptional Pahlavi Letter Yodh +\U00010B6A;Inscriptional Pahlavi Letter Kaph +\U00010B6B;Inscriptional Pahlavi Letter Lamedh +\U00010B6C;Inscriptional Pahlavi Letter Mem-Qoph +\U00010B6D;Inscriptional Pahlavi Letter Nun +\U00010B6E;Inscriptional Pahlavi Letter Samekh +\U00010B6F;Inscriptional Pahlavi Letter Pe +\U00010B70;Inscriptional Pahlavi Letter Sadhe +\U00010B71;Inscriptional Pahlavi Letter Shin +\U00010B72;Inscriptional Pahlavi Letter Taw +\U00010B78;Inscriptional Pahlavi Number One +\U00010B79;Inscriptional Pahlavi Number Two +\U00010B7A;Inscriptional Pahlavi Number Three +\U00010B7B;Inscriptional Pahlavi Number Four +\U00010B7C;Inscriptional Pahlavi Number Ten +\U00010B7D;Inscriptional Pahlavi Number Twenty +\U00010B7E;Inscriptional Pahlavi Number One Hundred +\U00010B7F;Inscriptional Pahlavi Number One Thousand +\U00010B80;Psalter Pahlavi Letter Aleph +\U00010B81;Psalter Pahlavi Letter Beth +\U00010B82;Psalter Pahlavi Letter Gimel +\U00010B83;Psalter Pahlavi Letter Daleth +\U00010B84;Psalter Pahlavi Letter He +\U00010B85;Psalter Pahlavi Letter Waw-Ayin-Resh +\U00010B86;Psalter Pahlavi Letter Zayin +\U00010B87;Psalter Pahlavi Letter Heth +\U00010B88;Psalter Pahlavi Letter Yodh +\U00010B89;Psalter Pahlavi Letter Kaph +\U00010B8A;Psalter Pahlavi Letter Lamedh +\U00010B8B;Psalter Pahlavi Letter Mem-Qoph +\U00010B8C;Psalter Pahlavi Letter Nun +\U00010B8D;Psalter Pahlavi Letter Samekh +\U00010B8E;Psalter Pahlavi Letter Pe +\U00010B8F;Psalter Pahlavi Letter Sadhe +\U00010B90;Psalter Pahlavi Letter Shin +\U00010B91;Psalter Pahlavi Letter Taw +\U00010B99;Psalter Pahlavi Section Mark +\U00010B9A;Psalter Pahlavi Turned Section Mark +\U00010B9B;Psalter Pahlavi Four Dots With Cross +\U00010B9C;Psalter Pahlavi Four Dots With Dot +\U00010BA9;Psalter Pahlavi Number One +\U00010BAA;Psalter Pahlavi Number Two +\U00010BAB;Psalter Pahlavi Number Three +\U00010BAC;Psalter Pahlavi Number Four +\U00010BAD;Psalter Pahlavi Number Ten +\U00010BAE;Psalter Pahlavi Number Twenty +\U00010BAF;Psalter Pahlavi Number One Hundred +\U00010C00;Old Turkic Letter Orkhon A +\U00010C01;Old Turkic Letter Yenisei A +\U00010C02;Old Turkic Letter Yenisei Ae +\U00010C03;Old Turkic Letter Orkhon I +\U00010C04;Old Turkic Letter Yenisei I +\U00010C05;Old Turkic Letter Yenisei E +\U00010C06;Old Turkic Letter Orkhon O +\U00010C07;Old Turkic Letter Orkhon Oe +\U00010C08;Old Turkic Letter Yenisei Oe +\U00010C09;Old Turkic Letter Orkhon Ab +\U00010C0A;Old Turkic Letter Yenisei Ab +\U00010C0B;Old Turkic Letter Orkhon Aeb +\U00010C0C;Old Turkic Letter Yenisei Aeb +\U00010C0D;Old Turkic Letter Orkhon Ag +\U00010C0E;Old Turkic Letter Yenisei Ag +\U00010C0F;Old Turkic Letter Orkhon Aeg +\U00010C10;Old Turkic Letter Yenisei Aeg +\U00010C11;Old Turkic Letter Orkhon Ad +\U00010C12;Old Turkic Letter Yenisei Ad +\U00010C13;Old Turkic Letter Orkhon Aed +\U00010C14;Old Turkic Letter Orkhon Ez +\U00010C15;Old Turkic Letter Yenisei Ez +\U00010C16;Old Turkic Letter Orkhon Ay +\U00010C17;Old Turkic Letter Yenisei Ay +\U00010C18;Old Turkic Letter Orkhon Aey +\U00010C19;Old Turkic Letter Yenisei Aey +\U00010C1A;Old Turkic Letter Orkhon Aek +\U00010C1B;Old Turkic Letter Yenisei Aek +\U00010C1C;Old Turkic Letter Orkhon Oek +\U00010C1D;Old Turkic Letter Yenisei Oek +\U00010C1E;Old Turkic Letter Orkhon Al +\U00010C1F;Old Turkic Letter Yenisei Al +\U00010C20;Old Turkic Letter Orkhon Ael +\U00010C21;Old Turkic Letter Orkhon Elt +\U00010C22;Old Turkic Letter Orkhon Em +\U00010C23;Old Turkic Letter Orkhon An +\U00010C24;Old Turkic Letter Orkhon Aen +\U00010C25;Old Turkic Letter Yenisei Aen +\U00010C26;Old Turkic Letter Orkhon Ent +\U00010C27;Old Turkic Letter Yenisei Ent +\U00010C28;Old Turkic Letter Orkhon Enc +\U00010C29;Old Turkic Letter Yenisei Enc +\U00010C2A;Old Turkic Letter Orkhon Eny +\U00010C2B;Old Turkic Letter Yenisei Eny +\U00010C2C;Old Turkic Letter Yenisei Ang +\U00010C2D;Old Turkic Letter Orkhon Eng +\U00010C2E;Old Turkic Letter Yenisei Aeng +\U00010C2F;Old Turkic Letter Orkhon Ep +\U00010C30;Old Turkic Letter Orkhon Op +\U00010C31;Old Turkic Letter Orkhon Ic +\U00010C32;Old Turkic Letter Orkhon Ec +\U00010C33;Old Turkic Letter Yenisei Ec +\U00010C34;Old Turkic Letter Orkhon Aq +\U00010C35;Old Turkic Letter Yenisei Aq +\U00010C36;Old Turkic Letter Orkhon Iq +\U00010C37;Old Turkic Letter Yenisei Iq +\U00010C38;Old Turkic Letter Orkhon Oq +\U00010C39;Old Turkic Letter Yenisei Oq +\U00010C3A;Old Turkic Letter Orkhon Ar +\U00010C3B;Old Turkic Letter Yenisei Ar +\U00010C3C;Old Turkic Letter Orkhon Aer +\U00010C3D;Old Turkic Letter Orkhon As +\U00010C3E;Old Turkic Letter Orkhon Aes +\U00010C3F;Old Turkic Letter Orkhon Ash +\U00010C40;Old Turkic Letter Yenisei Ash +\U00010C41;Old Turkic Letter Orkhon Esh +\U00010C42;Old Turkic Letter Yenisei Esh +\U00010C43;Old Turkic Letter Orkhon At +\U00010C44;Old Turkic Letter Yenisei At +\U00010C45;Old Turkic Letter Orkhon Aet +\U00010C46;Old Turkic Letter Yenisei Aet +\U00010C47;Old Turkic Letter Orkhon Ot +\U00010C48;Old Turkic Letter Orkhon Bash +\U00010C80;Old Hungarian Capital Letter A +\U00010C81;Old Hungarian Capital Letter Aa +\U00010C82;Old Hungarian Capital Letter Eb +\U00010C83;Old Hungarian Capital Letter Amb +\U00010C84;Old Hungarian Capital Letter Ec +\U00010C85;Old Hungarian Capital Letter Enc +\U00010C86;Old Hungarian Capital Letter Ecs +\U00010C87;Old Hungarian Capital Letter Ed +\U00010C88;Old Hungarian Capital Letter And +\U00010C89;Old Hungarian Capital Letter E +\U00010C8A;Old Hungarian Capital Letter Close E +\U00010C8B;Old Hungarian Capital Letter Ee +\U00010C8C;Old Hungarian Capital Letter Ef +\U00010C8D;Old Hungarian Capital Letter Eg +\U00010C8E;Old Hungarian Capital Letter Egy +\U00010C8F;Old Hungarian Capital Letter Eh +\U00010C90;Old Hungarian Capital Letter I +\U00010C91;Old Hungarian Capital Letter Ii +\U00010C92;Old Hungarian Capital Letter Ej +\U00010C93;Old Hungarian Capital Letter Ek +\U00010C94;Old Hungarian Capital Letter Ak +\U00010C95;Old Hungarian Capital Letter Unk +\U00010C96;Old Hungarian Capital Letter El +\U00010C97;Old Hungarian Capital Letter Ely +\U00010C98;Old Hungarian Capital Letter Em +\U00010C99;Old Hungarian Capital Letter En +\U00010C9A;Old Hungarian Capital Letter Eny +\U00010C9B;Old Hungarian Capital Letter O +\U00010C9C;Old Hungarian Capital Letter Oo +\U00010C9D;Old Hungarian Capital Letter Nikolsburg Oe +\U00010C9E;Old Hungarian Capital Letter Rudimenta Oe +\U00010C9F;Old Hungarian Capital Letter Oee +\U00010CA0;Old Hungarian Capital Letter Ep +\U00010CA1;Old Hungarian Capital Letter Emp +\U00010CA2;Old Hungarian Capital Letter Er +\U00010CA3;Old Hungarian Capital Letter Short Er +\U00010CA4;Old Hungarian Capital Letter Es +\U00010CA5;Old Hungarian Capital Letter Esz +\U00010CA6;Old Hungarian Capital Letter Et +\U00010CA7;Old Hungarian Capital Letter Ent +\U00010CA8;Old Hungarian Capital Letter Ety +\U00010CA9;Old Hungarian Capital Letter Ech +\U00010CAA;Old Hungarian Capital Letter U +\U00010CAB;Old Hungarian Capital Letter Uu +\U00010CAC;Old Hungarian Capital Letter Nikolsburg Ue +\U00010CAD;Old Hungarian Capital Letter Rudimenta Ue +\U00010CAE;Old Hungarian Capital Letter Ev +\U00010CAF;Old Hungarian Capital Letter Ez +\U00010CB0;Old Hungarian Capital Letter Ezs +\U00010CB1;Old Hungarian Capital Letter Ent-Shaped Sign +\U00010CB2;Old Hungarian Capital Letter Us +\U00010CC0;Old Hungarian Small Letter A +\U00010CC1;Old Hungarian Small Letter Aa +\U00010CC2;Old Hungarian Small Letter Eb +\U00010CC3;Old Hungarian Small Letter Amb +\U00010CC4;Old Hungarian Small Letter Ec +\U00010CC5;Old Hungarian Small Letter Enc +\U00010CC6;Old Hungarian Small Letter Ecs +\U00010CC7;Old Hungarian Small Letter Ed +\U00010CC8;Old Hungarian Small Letter And +\U00010CC9;Old Hungarian Small Letter E +\U00010CCA;Old Hungarian Small Letter Close E +\U00010CCB;Old Hungarian Small Letter Ee +\U00010CCC;Old Hungarian Small Letter Ef +\U00010CCD;Old Hungarian Small Letter Eg +\U00010CCE;Old Hungarian Small Letter Egy +\U00010CCF;Old Hungarian Small Letter Eh +\U00010CD0;Old Hungarian Small Letter I +\U00010CD1;Old Hungarian Small Letter Ii +\U00010CD2;Old Hungarian Small Letter Ej +\U00010CD3;Old Hungarian Small Letter Ek +\U00010CD4;Old Hungarian Small Letter Ak +\U00010CD5;Old Hungarian Small Letter Unk +\U00010CD6;Old Hungarian Small Letter El +\U00010CD7;Old Hungarian Small Letter Ely +\U00010CD8;Old Hungarian Small Letter Em +\U00010CD9;Old Hungarian Small Letter En +\U00010CDA;Old Hungarian Small Letter Eny +\U00010CDB;Old Hungarian Small Letter O +\U00010CDC;Old Hungarian Small Letter Oo +\U00010CDD;Old Hungarian Small Letter Nikolsburg Oe +\U00010CDE;Old Hungarian Small Letter Rudimenta Oe +\U00010CDF;Old Hungarian Small Letter Oee +\U00010CE0;Old Hungarian Small Letter Ep +\U00010CE1;Old Hungarian Small Letter Emp +\U00010CE2;Old Hungarian Small Letter Er +\U00010CE3;Old Hungarian Small Letter Short Er +\U00010CE4;Old Hungarian Small Letter Es +\U00010CE5;Old Hungarian Small Letter Esz +\U00010CE6;Old Hungarian Small Letter Et +\U00010CE7;Old Hungarian Small Letter Ent +\U00010CE8;Old Hungarian Small Letter Ety +\U00010CE9;Old Hungarian Small Letter Ech +\U00010CEA;Old Hungarian Small Letter U +\U00010CEB;Old Hungarian Small Letter Uu +\U00010CEC;Old Hungarian Small Letter Nikolsburg Ue +\U00010CED;Old Hungarian Small Letter Rudimenta Ue +\U00010CEE;Old Hungarian Small Letter Ev +\U00010CEF;Old Hungarian Small Letter Ez +\U00010CF0;Old Hungarian Small Letter Ezs +\U00010CF1;Old Hungarian Small Letter Ent-Shaped Sign +\U00010CF2;Old Hungarian Small Letter Us +\U00010CFA;Old Hungarian Number One +\U00010CFB;Old Hungarian Number Five +\U00010CFC;Old Hungarian Number Ten +\U00010CFD;Old Hungarian Number Fifty +\U00010CFE;Old Hungarian Number One Hundred +\U00010CFF;Old Hungarian Number One Thousand +\U00010D00;Hanifi Rohingya Letter A +\U00010D01;Hanifi Rohingya Letter Ba +\U00010D02;Hanifi Rohingya Letter Pa +\U00010D03;Hanifi Rohingya Letter Ta +\U00010D04;Hanifi Rohingya Letter Tta +\U00010D05;Hanifi Rohingya Letter Ja +\U00010D06;Hanifi Rohingya Letter Ca +\U00010D07;Hanifi Rohingya Letter Ha +\U00010D08;Hanifi Rohingya Letter Kha +\U00010D09;Hanifi Rohingya Letter Fa +\U00010D0A;Hanifi Rohingya Letter Da +\U00010D0B;Hanifi Rohingya Letter Dda +\U00010D0C;Hanifi Rohingya Letter Ra +\U00010D0D;Hanifi Rohingya Letter Rra +\U00010D0E;Hanifi Rohingya Letter Za +\U00010D0F;Hanifi Rohingya Letter Sa +\U00010D10;Hanifi Rohingya Letter Sha +\U00010D11;Hanifi Rohingya Letter Ka +\U00010D12;Hanifi Rohingya Letter Ga +\U00010D13;Hanifi Rohingya Letter La +\U00010D14;Hanifi Rohingya Letter Ma +\U00010D15;Hanifi Rohingya Letter Na +\U00010D16;Hanifi Rohingya Letter Wa +\U00010D17;Hanifi Rohingya Letter Kinna Wa +\U00010D18;Hanifi Rohingya Letter Ya +\U00010D19;Hanifi Rohingya Letter Kinna Ya +\U00010D1A;Hanifi Rohingya Letter Nga +\U00010D1B;Hanifi Rohingya Letter Nya +\U00010D1C;Hanifi Rohingya Letter Va +\U00010D1D;Hanifi Rohingya Vowel A +\U00010D1E;Hanifi Rohingya Vowel I +\U00010D1F;Hanifi Rohingya Vowel U +\U00010D20;Hanifi Rohingya Vowel E +\U00010D21;Hanifi Rohingya Vowel O +\U00010D22;Hanifi Rohingya Mark Sakin +\U00010D23;Hanifi Rohingya Mark Na Khonna +\U00010D24;Hanifi Rohingya Sign Harbahay +\U00010D25;Hanifi Rohingya Sign Tahala +\U00010D26;Hanifi Rohingya Sign Tana +\U00010D27;Hanifi Rohingya Sign Tassi +\U00010D30;Hanifi Rohingya Digit Zero +\U00010D31;Hanifi Rohingya Digit One +\U00010D32;Hanifi Rohingya Digit Two +\U00010D33;Hanifi Rohingya Digit Three +\U00010D34;Hanifi Rohingya Digit Four +\U00010D35;Hanifi Rohingya Digit Five +\U00010D36;Hanifi Rohingya Digit Six +\U00010D37;Hanifi Rohingya Digit Seven +\U00010D38;Hanifi Rohingya Digit Eight +\U00010D39;Hanifi Rohingya Digit Nine +\U00010E60;Rumi Digit One +\U00010E61;Rumi Digit Two +\U00010E62;Rumi Digit Three +\U00010E63;Rumi Digit Four +\U00010E64;Rumi Digit Five +\U00010E65;Rumi Digit Six +\U00010E66;Rumi Digit Seven +\U00010E67;Rumi Digit Eight +\U00010E68;Rumi Digit Nine +\U00010E69;Rumi Number Ten +\U00010E6A;Rumi Number Twenty +\U00010E6B;Rumi Number Thirty +\U00010E6C;Rumi Number Forty +\U00010E6D;Rumi Number Fifty +\U00010E6E;Rumi Number Sixty +\U00010E6F;Rumi Number Seventy +\U00010E70;Rumi Number Eighty +\U00010E71;Rumi Number Ninety +\U00010E72;Rumi Number One Hundred +\U00010E73;Rumi Number Two Hundred +\U00010E74;Rumi Number Three Hundred +\U00010E75;Rumi Number Four Hundred +\U00010E76;Rumi Number Five Hundred +\U00010E77;Rumi Number Six Hundred +\U00010E78;Rumi Number Seven Hundred +\U00010E79;Rumi Number Eight Hundred +\U00010E7A;Rumi Number Nine Hundred +\U00010E7B;Rumi Fraction One Half +\U00010E7C;Rumi Fraction One Quarter +\U00010E7D;Rumi Fraction One Third +\U00010E7E;Rumi Fraction Two Thirds +\U00010E80;Yezidi Letter Elif +\U00010E81;Yezidi Letter Be +\U00010E82;Yezidi Letter Pe +\U00010E83;Yezidi Letter Phe +\U00010E84;Yezidi Letter The +\U00010E85;Yezidi Letter Se +\U00010E86;Yezidi Letter Cim +\U00010E87;Yezidi Letter Chim +\U00010E88;Yezidi Letter Chhim +\U00010E89;Yezidi Letter Hha +\U00010E8A;Yezidi Letter Xa +\U00010E8B;Yezidi Letter Dal +\U00010E8C;Yezidi Letter Zal +\U00010E8D;Yezidi Letter Ra +\U00010E8E;Yezidi Letter Rha +\U00010E8F;Yezidi Letter Za +\U00010E90;Yezidi Letter Ja +\U00010E91;Yezidi Letter Sin +\U00010E92;Yezidi Letter Shin +\U00010E93;Yezidi Letter Sad +\U00010E94;Yezidi Letter Dad +\U00010E95;Yezidi Letter Ta +\U00010E96;Yezidi Letter Ze +\U00010E97;Yezidi Letter Eyn +\U00010E98;Yezidi Letter Xheyn +\U00010E99;Yezidi Letter Fa +\U00010E9A;Yezidi Letter Va +\U00010E9B;Yezidi Letter Va Alternate Form +\U00010E9C;Yezidi Letter Qaf +\U00010E9D;Yezidi Letter Kaf +\U00010E9E;Yezidi Letter Khaf +\U00010E9F;Yezidi Letter Gaf +\U00010EA0;Yezidi Letter Lam +\U00010EA1;Yezidi Letter Mim +\U00010EA2;Yezidi Letter Nun +\U00010EA3;Yezidi Letter Um +\U00010EA4;Yezidi Letter Waw +\U00010EA5;Yezidi Letter Ow +\U00010EA6;Yezidi Letter Ew +\U00010EA7;Yezidi Letter Hay +\U00010EA8;Yezidi Letter Yot +\U00010EA9;Yezidi Letter Et +\U00010EAB;Yezidi Combining Hamza Mark +\U00010EAC;Yezidi Combining Madda Mark +\U00010EAD;Yezidi Hyphenation Mark +\U00010EB0;Yezidi Letter Lam With Dot Above +\U00010EB1;Yezidi Letter Yot With Circumflex Above +\U00010EFD;Arabic Small Low Word Sakta +\U00010EFE;Arabic Small Low Word Qasr +\U00010EFF;Arabic Small Low Word Madda +\U00010F00;Old Sogdian Letter Aleph +\U00010F01;Old Sogdian Letter Final Aleph +\U00010F02;Old Sogdian Letter Beth +\U00010F03;Old Sogdian Letter Final Beth +\U00010F04;Old Sogdian Letter Gimel +\U00010F05;Old Sogdian Letter He +\U00010F06;Old Sogdian Letter Final He +\U00010F07;Old Sogdian Letter Waw +\U00010F08;Old Sogdian Letter Zayin +\U00010F09;Old Sogdian Letter Heth +\U00010F0A;Old Sogdian Letter Yodh +\U00010F0B;Old Sogdian Letter Kaph +\U00010F0C;Old Sogdian Letter Lamedh +\U00010F0D;Old Sogdian Letter Mem +\U00010F0E;Old Sogdian Letter Nun +\U00010F0F;Old Sogdian Letter Final Nun +\U00010F10;Old Sogdian Letter Final Nun With Vertical Tail +\U00010F11;Old Sogdian Letter Samekh +\U00010F12;Old Sogdian Letter Ayin +\U00010F13;Old Sogdian Letter Alternate Ayin +\U00010F14;Old Sogdian Letter Pe +\U00010F15;Old Sogdian Letter Sadhe +\U00010F16;Old Sogdian Letter Final Sadhe +\U00010F17;Old Sogdian Letter Final Sadhe With Vertical Tail +\U00010F18;Old Sogdian Letter Resh-Ayin-Daleth +\U00010F19;Old Sogdian Letter Shin +\U00010F1A;Old Sogdian Letter Taw +\U00010F1B;Old Sogdian Letter Final Taw +\U00010F1C;Old Sogdian Letter Final Taw With Vertical Tail +\U00010F1D;Old Sogdian Number One +\U00010F1E;Old Sogdian Number Two +\U00010F1F;Old Sogdian Number Three +\U00010F20;Old Sogdian Number Four +\U00010F21;Old Sogdian Number Five +\U00010F22;Old Sogdian Number Ten +\U00010F23;Old Sogdian Number Twenty +\U00010F24;Old Sogdian Number Thirty +\U00010F25;Old Sogdian Number One Hundred +\U00010F26;Old Sogdian Fraction One Half +\U00010F27;Old Sogdian Ligature Ayin-Daleth +\U00010F30;Sogdian Letter Aleph +\U00010F31;Sogdian Letter Beth +\U00010F32;Sogdian Letter Gimel +\U00010F33;Sogdian Letter He +\U00010F34;Sogdian Letter Waw +\U00010F35;Sogdian Letter Zayin +\U00010F36;Sogdian Letter Heth +\U00010F37;Sogdian Letter Yodh +\U00010F38;Sogdian Letter Kaph +\U00010F39;Sogdian Letter Lamedh +\U00010F3A;Sogdian Letter Mem +\U00010F3B;Sogdian Letter Nun +\U00010F3C;Sogdian Letter Samekh +\U00010F3D;Sogdian Letter Ayin +\U00010F3E;Sogdian Letter Pe +\U00010F3F;Sogdian Letter Sadhe +\U00010F40;Sogdian Letter Resh-Ayin +\U00010F41;Sogdian Letter Shin +\U00010F42;Sogdian Letter Taw +\U00010F43;Sogdian Letter Feth +\U00010F44;Sogdian Letter Lesh +\U00010F45;Sogdian Independent Shin +\U00010F46;Sogdian Combining Dot Below +\U00010F47;Sogdian Combining Two Dots Below +\U00010F48;Sogdian Combining Dot Above +\U00010F49;Sogdian Combining Two Dots Above +\U00010F4A;Sogdian Combining Curve Above +\U00010F4B;Sogdian Combining Curve Below +\U00010F4C;Sogdian Combining Hook Above +\U00010F4D;Sogdian Combining Hook Below +\U00010F4E;Sogdian Combining Long Hook Below +\U00010F4F;Sogdian Combining Resh Below +\U00010F50;Sogdian Combining Stroke Below +\U00010F51;Sogdian Number One +\U00010F52;Sogdian Number Ten +\U00010F53;Sogdian Number Twenty +\U00010F54;Sogdian Number One Hundred +\U00010F55;Sogdian Punctuation Two Vertical Bars +\U00010F56;Sogdian Punctuation Two Vertical Bars With Dots +\U00010F57;Sogdian Punctuation Circle With Dot +\U00010F58;Sogdian Punctuation Two Circles With Dots +\U00010F59;Sogdian Punctuation Half Circle With Dot +\U00010F70;Old Uyghur Letter Aleph +\U00010F71;Old Uyghur Letter Beth +\U00010F72;Old Uyghur Letter Gimel-Heth +\U00010F73;Old Uyghur Letter Waw +\U00010F74;Old Uyghur Letter Zayin +\U00010F75;Old Uyghur Letter Final Heth +\U00010F76;Old Uyghur Letter Yodh +\U00010F77;Old Uyghur Letter Kaph +\U00010F78;Old Uyghur Letter Lamedh +\U00010F79;Old Uyghur Letter Mem +\U00010F7A;Old Uyghur Letter Nun +\U00010F7B;Old Uyghur Letter Samekh +\U00010F7C;Old Uyghur Letter Pe +\U00010F7D;Old Uyghur Letter Sadhe +\U00010F7E;Old Uyghur Letter Resh +\U00010F7F;Old Uyghur Letter Shin +\U00010F80;Old Uyghur Letter Taw +\U00010F81;Old Uyghur Letter Lesh +\U00010F82;Old Uyghur Combining Dot Above +\U00010F83;Old Uyghur Combining Dot Below +\U00010F84;Old Uyghur Combining Two Dots Above +\U00010F85;Old Uyghur Combining Two Dots Below +\U00010F86;Old Uyghur Punctuation Bar +\U00010F87;Old Uyghur Punctuation Two Bars +\U00010F88;Old Uyghur Punctuation Two Dots +\U00010F89;Old Uyghur Punctuation Four Dots +\U00010FB0;Chorasmian Letter Aleph +\U00010FB1;Chorasmian Letter Small Aleph +\U00010FB2;Chorasmian Letter Beth +\U00010FB3;Chorasmian Letter Gimel +\U00010FB4;Chorasmian Letter Daleth +\U00010FB5;Chorasmian Letter He +\U00010FB6;Chorasmian Letter Waw +\U00010FB7;Chorasmian Letter Curled Waw +\U00010FB8;Chorasmian Letter Zayin +\U00010FB9;Chorasmian Letter Heth +\U00010FBA;Chorasmian Letter Yodh +\U00010FBB;Chorasmian Letter Kaph +\U00010FBC;Chorasmian Letter Lamedh +\U00010FBD;Chorasmian Letter Mem +\U00010FBE;Chorasmian Letter Nun +\U00010FBF;Chorasmian Letter Samekh +\U00010FC0;Chorasmian Letter Ayin +\U00010FC1;Chorasmian Letter Pe +\U00010FC2;Chorasmian Letter Resh +\U00010FC3;Chorasmian Letter Shin +\U00010FC4;Chorasmian Letter Taw +\U00010FC5;Chorasmian Number One +\U00010FC6;Chorasmian Number Two +\U00010FC7;Chorasmian Number Three +\U00010FC8;Chorasmian Number Four +\U00010FC9;Chorasmian Number Ten +\U00010FCA;Chorasmian Number Twenty +\U00010FCB;Chorasmian Number One Hundred +\U00010FE0;Elymaic Letter Aleph +\U00010FE1;Elymaic Letter Beth +\U00010FE2;Elymaic Letter Gimel +\U00010FE3;Elymaic Letter Daleth +\U00010FE4;Elymaic Letter He +\U00010FE5;Elymaic Letter Waw +\U00010FE6;Elymaic Letter Zayin +\U00010FE7;Elymaic Letter Heth +\U00010FE8;Elymaic Letter Teth +\U00010FE9;Elymaic Letter Yodh +\U00010FEA;Elymaic Letter Kaph +\U00010FEB;Elymaic Letter Lamedh +\U00010FEC;Elymaic Letter Mem +\U00010FED;Elymaic Letter Nun +\U00010FEE;Elymaic Letter Samekh +\U00010FEF;Elymaic Letter Ayin +\U00010FF0;Elymaic Letter Pe +\U00010FF1;Elymaic Letter Sadhe +\U00010FF2;Elymaic Letter Qoph +\U00010FF3;Elymaic Letter Resh +\U00010FF4;Elymaic Letter Shin +\U00010FF5;Elymaic Letter Taw +\U00010FF6;Elymaic Ligature Zayin-Yodh +\U00011000;Brahmi Sign Candrabindu +\U00011001;Brahmi Sign Anusvara +\U00011002;Brahmi Sign Visarga +\U00011003;Brahmi Sign Jihvamuliya +\U00011004;Brahmi Sign Upadhmaniya +\U00011005;Brahmi Letter A +\U00011006;Brahmi Letter Aa +\U00011007;Brahmi Letter I +\U00011008;Brahmi Letter Ii +\U00011009;Brahmi Letter U +\U0001100A;Brahmi Letter Uu +\U0001100B;Brahmi Letter Vocalic R +\U0001100C;Brahmi Letter Vocalic Rr +\U0001100D;Brahmi Letter Vocalic L +\U0001100E;Brahmi Letter Vocalic Ll +\U0001100F;Brahmi Letter E +\U00011010;Brahmi Letter Ai +\U00011011;Brahmi Letter O +\U00011012;Brahmi Letter Au +\U00011013;Brahmi Letter Ka +\U00011014;Brahmi Letter Kha +\U00011015;Brahmi Letter Ga +\U00011016;Brahmi Letter Gha +\U00011017;Brahmi Letter Nga +\U00011018;Brahmi Letter Ca +\U00011019;Brahmi Letter Cha +\U0001101A;Brahmi Letter Ja +\U0001101B;Brahmi Letter Jha +\U0001101C;Brahmi Letter Nya +\U0001101D;Brahmi Letter Tta +\U0001101E;Brahmi Letter Ttha +\U0001101F;Brahmi Letter Dda +\U00011020;Brahmi Letter Ddha +\U00011021;Brahmi Letter Nna +\U00011022;Brahmi Letter Ta +\U00011023;Brahmi Letter Tha +\U00011024;Brahmi Letter Da +\U00011025;Brahmi Letter Dha +\U00011026;Brahmi Letter Na +\U00011027;Brahmi Letter Pa +\U00011028;Brahmi Letter Pha +\U00011029;Brahmi Letter Ba +\U0001102A;Brahmi Letter Bha +\U0001102B;Brahmi Letter Ma +\U0001102C;Brahmi Letter Ya +\U0001102D;Brahmi Letter Ra +\U0001102E;Brahmi Letter La +\U0001102F;Brahmi Letter Va +\U00011030;Brahmi Letter Sha +\U00011031;Brahmi Letter Ssa +\U00011032;Brahmi Letter Sa +\U00011033;Brahmi Letter Ha +\U00011034;Brahmi Letter Lla +\U00011035;Brahmi Letter Old Tamil Llla +\U00011036;Brahmi Letter Old Tamil Rra +\U00011037;Brahmi Letter Old Tamil Nnna +\U00011038;Brahmi Vowel Sign Aa +\U00011039;Brahmi Vowel Sign Bhattiprolu Aa +\U0001103A;Brahmi Vowel Sign I +\U0001103B;Brahmi Vowel Sign Ii +\U0001103C;Brahmi Vowel Sign U +\U0001103D;Brahmi Vowel Sign Uu +\U0001103E;Brahmi Vowel Sign Vocalic R +\U0001103F;Brahmi Vowel Sign Vocalic Rr +\U00011040;Brahmi Vowel Sign Vocalic L +\U00011041;Brahmi Vowel Sign Vocalic Ll +\U00011042;Brahmi Vowel Sign E +\U00011043;Brahmi Vowel Sign Ai +\U00011044;Brahmi Vowel Sign O +\U00011045;Brahmi Vowel Sign Au +\U00011046;Brahmi Virama +\U00011047;Brahmi Danda +\U00011048;Brahmi Double Danda +\U00011049;Brahmi Punctuation Dot +\U0001104A;Brahmi Punctuation Double Dot +\U0001104B;Brahmi Punctuation Line +\U0001104C;Brahmi Punctuation Crescent Bar +\U0001104D;Brahmi Punctuation Lotus +\U00011052;Brahmi Number One +\U00011053;Brahmi Number Two +\U00011054;Brahmi Number Three +\U00011055;Brahmi Number Four +\U00011056;Brahmi Number Five +\U00011057;Brahmi Number Six +\U00011058;Brahmi Number Seven +\U00011059;Brahmi Number Eight +\U0001105A;Brahmi Number Nine +\U0001105B;Brahmi Number Ten +\U0001105C;Brahmi Number Twenty +\U0001105D;Brahmi Number Thirty +\U0001105E;Brahmi Number Forty +\U0001105F;Brahmi Number Fifty +\U00011060;Brahmi Number Sixty +\U00011061;Brahmi Number Seventy +\U00011062;Brahmi Number Eighty +\U00011063;Brahmi Number Ninety +\U00011064;Brahmi Number One Hundred +\U00011065;Brahmi Number One Thousand +\U00011066;Brahmi Digit Zero +\U00011067;Brahmi Digit One +\U00011068;Brahmi Digit Two +\U00011069;Brahmi Digit Three +\U0001106A;Brahmi Digit Four +\U0001106B;Brahmi Digit Five +\U0001106C;Brahmi Digit Six +\U0001106D;Brahmi Digit Seven +\U0001106E;Brahmi Digit Eight +\U0001106F;Brahmi Digit Nine +\U00011070;Brahmi Sign Old Tamil Virama +\U00011071;Brahmi Letter Old Tamil Short E +\U00011072;Brahmi Letter Old Tamil Short O +\U00011073;Brahmi Vowel Sign Old Tamil Short E +\U00011074;Brahmi Vowel Sign Old Tamil Short O +\U00011075;Brahmi Letter Old Tamil Lla +\U0001107F;Brahmi Number Joiner +\U00011080;Kaithi Sign Candrabindu +\U00011081;Kaithi Sign Anusvara +\U00011082;Kaithi Sign Visarga +\U00011083;Kaithi Letter A +\U00011084;Kaithi Letter Aa +\U00011085;Kaithi Letter I +\U00011086;Kaithi Letter Ii +\U00011087;Kaithi Letter U +\U00011088;Kaithi Letter Uu +\U00011089;Kaithi Letter E +\U0001108A;Kaithi Letter Ai +\U0001108B;Kaithi Letter O +\U0001108C;Kaithi Letter Au +\U0001108D;Kaithi Letter Ka +\U0001108E;Kaithi Letter Kha +\U0001108F;Kaithi Letter Ga +\U00011090;Kaithi Letter Gha +\U00011091;Kaithi Letter Nga +\U00011092;Kaithi Letter Ca +\U00011093;Kaithi Letter Cha +\U00011094;Kaithi Letter Ja +\U00011095;Kaithi Letter Jha +\U00011096;Kaithi Letter Nya +\U00011097;Kaithi Letter Tta +\U00011098;Kaithi Letter Ttha +\U00011099;Kaithi Letter Dda +\U0001109A;Kaithi Letter Dddha +\U0001109B;Kaithi Letter Ddha +\U0001109C;Kaithi Letter Rha +\U0001109D;Kaithi Letter Nna +\U0001109E;Kaithi Letter Ta +\U0001109F;Kaithi Letter Tha +\U000110A0;Kaithi Letter Da +\U000110A1;Kaithi Letter Dha +\U000110A2;Kaithi Letter Na +\U000110A3;Kaithi Letter Pa +\U000110A4;Kaithi Letter Pha +\U000110A5;Kaithi Letter Ba +\U000110A6;Kaithi Letter Bha +\U000110A7;Kaithi Letter Ma +\U000110A8;Kaithi Letter Ya +\U000110A9;Kaithi Letter Ra +\U000110AA;Kaithi Letter La +\U000110AB;Kaithi Letter Va +\U000110AC;Kaithi Letter Sha +\U000110AD;Kaithi Letter Ssa +\U000110AE;Kaithi Letter Sa +\U000110AF;Kaithi Letter Ha +\U000110B0;Kaithi Vowel Sign Aa +\U000110B1;Kaithi Vowel Sign I +\U000110B2;Kaithi Vowel Sign Ii +\U000110B3;Kaithi Vowel Sign U +\U000110B4;Kaithi Vowel Sign Uu +\U000110B5;Kaithi Vowel Sign E +\U000110B6;Kaithi Vowel Sign Ai +\U000110B7;Kaithi Vowel Sign O +\U000110B8;Kaithi Vowel Sign Au +\U000110B9;Kaithi Sign Virama +\U000110BA;Kaithi Sign Nukta +\U000110BB;Kaithi Abbreviation Sign +\U000110BC;Kaithi Enumeration Sign +\U000110BD;Kaithi Number Sign +\U000110BE;Kaithi Section Mark +\U000110BF;Kaithi Double Section Mark +\U000110C0;Kaithi Danda +\U000110C1;Kaithi Double Danda +\U000110C2;Kaithi Vowel Sign Vocalic R +\U000110CD;Kaithi Number Sign Above +\U000110D0;Sora Sompeng Letter Sah +\U000110D1;Sora Sompeng Letter Tah +\U000110D2;Sora Sompeng Letter Bah +\U000110D3;Sora Sompeng Letter Cah +\U000110D4;Sora Sompeng Letter Dah +\U000110D5;Sora Sompeng Letter Gah +\U000110D6;Sora Sompeng Letter Mah +\U000110D7;Sora Sompeng Letter Ngah +\U000110D8;Sora Sompeng Letter Lah +\U000110D9;Sora Sompeng Letter Nah +\U000110DA;Sora Sompeng Letter Vah +\U000110DB;Sora Sompeng Letter Pah +\U000110DC;Sora Sompeng Letter Yah +\U000110DD;Sora Sompeng Letter Rah +\U000110DE;Sora Sompeng Letter Hah +\U000110DF;Sora Sompeng Letter Kah +\U000110E0;Sora Sompeng Letter Jah +\U000110E1;Sora Sompeng Letter Nyah +\U000110E2;Sora Sompeng Letter Ah +\U000110E3;Sora Sompeng Letter Eeh +\U000110E4;Sora Sompeng Letter Ih +\U000110E5;Sora Sompeng Letter Uh +\U000110E6;Sora Sompeng Letter Oh +\U000110E7;Sora Sompeng Letter Eh +\U000110E8;Sora Sompeng Letter Mae +\U000110F0;Sora Sompeng Digit Zero +\U000110F1;Sora Sompeng Digit One +\U000110F2;Sora Sompeng Digit Two +\U000110F3;Sora Sompeng Digit Three +\U000110F4;Sora Sompeng Digit Four +\U000110F5;Sora Sompeng Digit Five +\U000110F6;Sora Sompeng Digit Six +\U000110F7;Sora Sompeng Digit Seven +\U000110F8;Sora Sompeng Digit Eight +\U000110F9;Sora Sompeng Digit Nine +\U00011100;Chakma Sign Candrabindu +\U00011101;Chakma Sign Anusvara +\U00011102;Chakma Sign Visarga +\U00011103;Chakma Letter Aa +\U00011104;Chakma Letter I +\U00011105;Chakma Letter U +\U00011106;Chakma Letter E +\U00011107;Chakma Letter Kaa +\U00011108;Chakma Letter Khaa +\U00011109;Chakma Letter Gaa +\U0001110A;Chakma Letter Ghaa +\U0001110B;Chakma Letter Ngaa +\U0001110C;Chakma Letter Caa +\U0001110D;Chakma Letter Chaa +\U0001110E;Chakma Letter Jaa +\U0001110F;Chakma Letter Jhaa +\U00011110;Chakma Letter Nyaa +\U00011111;Chakma Letter Ttaa +\U00011112;Chakma Letter Tthaa +\U00011113;Chakma Letter Ddaa +\U00011114;Chakma Letter Ddhaa +\U00011115;Chakma Letter Nnaa +\U00011116;Chakma Letter Taa +\U00011117;Chakma Letter Thaa +\U00011118;Chakma Letter Daa +\U00011119;Chakma Letter Dhaa +\U0001111A;Chakma Letter Naa +\U0001111B;Chakma Letter Paa +\U0001111C;Chakma Letter Phaa +\U0001111D;Chakma Letter Baa +\U0001111E;Chakma Letter Bhaa +\U0001111F;Chakma Letter Maa +\U00011120;Chakma Letter Yyaa +\U00011121;Chakma Letter Yaa +\U00011122;Chakma Letter Raa +\U00011123;Chakma Letter Laa +\U00011124;Chakma Letter Waa +\U00011125;Chakma Letter Saa +\U00011126;Chakma Letter Haa +\U00011127;Chakma Vowel Sign A +\U00011128;Chakma Vowel Sign I +\U00011129;Chakma Vowel Sign Ii +\U0001112A;Chakma Vowel Sign U +\U0001112B;Chakma Vowel Sign Uu +\U0001112C;Chakma Vowel Sign E +\U0001112D;Chakma Vowel Sign Ai +\U0001112E;Chakma Vowel Sign O +\U0001112F;Chakma Vowel Sign Au +\U00011130;Chakma Vowel Sign Oi +\U00011131;Chakma O Mark +\U00011132;Chakma Au Mark +\U00011133;Chakma Virama +\U00011134;Chakma Maayyaa +\U00011136;Chakma Digit Zero +\U00011137;Chakma Digit One +\U00011138;Chakma Digit Two +\U00011139;Chakma Digit Three +\U0001113A;Chakma Digit Four +\U0001113B;Chakma Digit Five +\U0001113C;Chakma Digit Six +\U0001113D;Chakma Digit Seven +\U0001113E;Chakma Digit Eight +\U0001113F;Chakma Digit Nine +\U00011140;Chakma Section Mark +\U00011141;Chakma Danda +\U00011142;Chakma Double Danda +\U00011143;Chakma Question Mark +\U00011144;Chakma Letter Lhaa +\U00011145;Chakma Vowel Sign Aa +\U00011146;Chakma Vowel Sign Ei +\U00011147;Chakma Letter Vaa +\U00011150;Mahajani Letter A +\U00011151;Mahajani Letter I +\U00011152;Mahajani Letter U +\U00011153;Mahajani Letter E +\U00011154;Mahajani Letter O +\U00011155;Mahajani Letter Ka +\U00011156;Mahajani Letter Kha +\U00011157;Mahajani Letter Ga +\U00011158;Mahajani Letter Gha +\U00011159;Mahajani Letter Ca +\U0001115A;Mahajani Letter Cha +\U0001115B;Mahajani Letter Ja +\U0001115C;Mahajani Letter Jha +\U0001115D;Mahajani Letter Nya +\U0001115E;Mahajani Letter Tta +\U0001115F;Mahajani Letter Ttha +\U00011160;Mahajani Letter Dda +\U00011161;Mahajani Letter Ddha +\U00011162;Mahajani Letter Nna +\U00011163;Mahajani Letter Ta +\U00011164;Mahajani Letter Tha +\U00011165;Mahajani Letter Da +\U00011166;Mahajani Letter Dha +\U00011167;Mahajani Letter Na +\U00011168;Mahajani Letter Pa +\U00011169;Mahajani Letter Pha +\U0001116A;Mahajani Letter Ba +\U0001116B;Mahajani Letter Bha +\U0001116C;Mahajani Letter Ma +\U0001116D;Mahajani Letter Ra +\U0001116E;Mahajani Letter La +\U0001116F;Mahajani Letter Va +\U00011170;Mahajani Letter Sa +\U00011171;Mahajani Letter Ha +\U00011172;Mahajani Letter Rra +\U00011173;Mahajani Sign Nukta +\U00011174;Mahajani Abbreviation Sign +\U00011175;Mahajani Section Mark +\U00011176;Mahajani Ligature Shri +\U00011180;Sharada Sign Candrabindu +\U00011181;Sharada Sign Anusvara +\U00011182;Sharada Sign Visarga +\U00011183;Sharada Letter A +\U00011184;Sharada Letter Aa +\U00011185;Sharada Letter I +\U00011186;Sharada Letter Ii +\U00011187;Sharada Letter U +\U00011188;Sharada Letter Uu +\U00011189;Sharada Letter Vocalic R +\U0001118A;Sharada Letter Vocalic Rr +\U0001118B;Sharada Letter Vocalic L +\U0001118C;Sharada Letter Vocalic Ll +\U0001118D;Sharada Letter E +\U0001118E;Sharada Letter Ai +\U0001118F;Sharada Letter O +\U00011190;Sharada Letter Au +\U00011191;Sharada Letter Ka +\U00011192;Sharada Letter Kha +\U00011193;Sharada Letter Ga +\U00011194;Sharada Letter Gha +\U00011195;Sharada Letter Nga +\U00011196;Sharada Letter Ca +\U00011197;Sharada Letter Cha +\U00011198;Sharada Letter Ja +\U00011199;Sharada Letter Jha +\U0001119A;Sharada Letter Nya +\U0001119B;Sharada Letter Tta +\U0001119C;Sharada Letter Ttha +\U0001119D;Sharada Letter Dda +\U0001119E;Sharada Letter Ddha +\U0001119F;Sharada Letter Nna +\U000111A0;Sharada Letter Ta +\U000111A1;Sharada Letter Tha +\U000111A2;Sharada Letter Da +\U000111A3;Sharada Letter Dha +\U000111A4;Sharada Letter Na +\U000111A5;Sharada Letter Pa +\U000111A6;Sharada Letter Pha +\U000111A7;Sharada Letter Ba +\U000111A8;Sharada Letter Bha +\U000111A9;Sharada Letter Ma +\U000111AA;Sharada Letter Ya +\U000111AB;Sharada Letter Ra +\U000111AC;Sharada Letter La +\U000111AD;Sharada Letter Lla +\U000111AE;Sharada Letter Va +\U000111AF;Sharada Letter Sha +\U000111B0;Sharada Letter Ssa +\U000111B1;Sharada Letter Sa +\U000111B2;Sharada Letter Ha +\U000111B3;Sharada Vowel Sign Aa +\U000111B4;Sharada Vowel Sign I +\U000111B5;Sharada Vowel Sign Ii +\U000111B6;Sharada Vowel Sign U +\U000111B7;Sharada Vowel Sign Uu +\U000111B8;Sharada Vowel Sign Vocalic R +\U000111B9;Sharada Vowel Sign Vocalic Rr +\U000111BA;Sharada Vowel Sign Vocalic L +\U000111BB;Sharada Vowel Sign Vocalic Ll +\U000111BC;Sharada Vowel Sign E +\U000111BD;Sharada Vowel Sign Ai +\U000111BE;Sharada Vowel Sign O +\U000111BF;Sharada Vowel Sign Au +\U000111C0;Sharada Sign Virama +\U000111C1;Sharada Sign Avagraha +\U000111C2;Sharada Sign Jihvamuliya +\U000111C3;Sharada Sign Upadhmaniya +\U000111C4;Sharada Om +\U000111C5;Sharada Danda +\U000111C6;Sharada Double Danda +\U000111C7;Sharada Abbreviation Sign +\U000111C8;Sharada Separator +\U000111C9;Sharada Sandhi Mark +\U000111CA;Sharada Sign Nukta +\U000111CB;Sharada Vowel Modifier Mark +\U000111CC;Sharada Extra Short Vowel Mark +\U000111CD;Sharada Sutra Mark +\U000111CE;Sharada Vowel Sign Prishthamatra E +\U000111CF;Sharada Sign Inverted Candrabindu +\U000111D0;Sharada Digit Zero +\U000111D1;Sharada Digit One +\U000111D2;Sharada Digit Two +\U000111D3;Sharada Digit Three +\U000111D4;Sharada Digit Four +\U000111D5;Sharada Digit Five +\U000111D6;Sharada Digit Six +\U000111D7;Sharada Digit Seven +\U000111D8;Sharada Digit Eight +\U000111D9;Sharada Digit Nine +\U000111DA;Sharada Ekam +\U000111DB;Sharada Sign Siddham +\U000111DC;Sharada Headstroke +\U000111DD;Sharada Continuation Sign +\U000111DE;Sharada Section Mark-1 +\U000111DF;Sharada Section Mark-2 +\U000111E1;Sinhala Archaic Digit One +\U000111E2;Sinhala Archaic Digit Two +\U000111E3;Sinhala Archaic Digit Three +\U000111E4;Sinhala Archaic Digit Four +\U000111E5;Sinhala Archaic Digit Five +\U000111E6;Sinhala Archaic Digit Six +\U000111E7;Sinhala Archaic Digit Seven +\U000111E8;Sinhala Archaic Digit Eight +\U000111E9;Sinhala Archaic Digit Nine +\U000111EA;Sinhala Archaic Number Ten +\U000111EB;Sinhala Archaic Number Twenty +\U000111EC;Sinhala Archaic Number Thirty +\U000111ED;Sinhala Archaic Number Forty +\U000111EE;Sinhala Archaic Number Fifty +\U000111EF;Sinhala Archaic Number Sixty +\U000111F0;Sinhala Archaic Number Seventy +\U000111F1;Sinhala Archaic Number Eighty +\U000111F2;Sinhala Archaic Number Ninety +\U000111F3;Sinhala Archaic Number One Hundred +\U000111F4;Sinhala Archaic Number One Thousand +\U00011200;Khojki Letter A +\U00011201;Khojki Letter Aa +\U00011202;Khojki Letter I +\U00011203;Khojki Letter U +\U00011204;Khojki Letter E +\U00011205;Khojki Letter Ai +\U00011206;Khojki Letter O +\U00011207;Khojki Letter Au +\U00011208;Khojki Letter Ka +\U00011209;Khojki Letter Kha +\U0001120A;Khojki Letter Ga +\U0001120B;Khojki Letter Gga +\U0001120C;Khojki Letter Gha +\U0001120D;Khojki Letter Nga +\U0001120E;Khojki Letter Ca +\U0001120F;Khojki Letter Cha +\U00011210;Khojki Letter Ja +\U00011211;Khojki Letter Jja +\U00011213;Khojki Letter Nya +\U00011214;Khojki Letter Tta +\U00011215;Khojki Letter Ttha +\U00011216;Khojki Letter Dda +\U00011217;Khojki Letter Ddha +\U00011218;Khojki Letter Nna +\U00011219;Khojki Letter Ta +\U0001121A;Khojki Letter Tha +\U0001121B;Khojki Letter Da +\U0001121C;Khojki Letter Ddda +\U0001121D;Khojki Letter Dha +\U0001121E;Khojki Letter Na +\U0001121F;Khojki Letter Pa +\U00011220;Khojki Letter Pha +\U00011221;Khojki Letter Ba +\U00011222;Khojki Letter Bba +\U00011223;Khojki Letter Bha +\U00011224;Khojki Letter Ma +\U00011225;Khojki Letter Ya +\U00011226;Khojki Letter Ra +\U00011227;Khojki Letter La +\U00011228;Khojki Letter Va +\U00011229;Khojki Letter Sa +\U0001122A;Khojki Letter Ha +\U0001122B;Khojki Letter Lla +\U0001122C;Khojki Vowel Sign Aa +\U0001122D;Khojki Vowel Sign I +\U0001122E;Khojki Vowel Sign Ii +\U0001122F;Khojki Vowel Sign U +\U00011230;Khojki Vowel Sign E +\U00011231;Khojki Vowel Sign Ai +\U00011232;Khojki Vowel Sign O +\U00011233;Khojki Vowel Sign Au +\U00011234;Khojki Sign Anusvara +\U00011235;Khojki Sign Virama +\U00011236;Khojki Sign Nukta +\U00011237;Khojki Sign Shadda +\U00011238;Khojki Danda +\U00011239;Khojki Double Danda +\U0001123A;Khojki Word Separator +\U0001123B;Khojki Section Mark +\U0001123C;Khojki Double Section Mark +\U0001123D;Khojki Abbreviation Sign +\U0001123E;Khojki Sign Sukun +\U0001123F;Khojki Letter Qa +\U00011240;Khojki Letter Short I +\U00011241;Khojki Vowel Sign Vocalic R +\U00011280;Multani Letter A +\U00011281;Multani Letter I +\U00011282;Multani Letter U +\U00011283;Multani Letter E +\U00011284;Multani Letter Ka +\U00011285;Multani Letter Kha +\U00011286;Multani Letter Ga +\U00011288;Multani Letter Gha +\U0001128A;Multani Letter Ca +\U0001128B;Multani Letter Cha +\U0001128C;Multani Letter Ja +\U0001128D;Multani Letter Jja +\U0001128F;Multani Letter Nya +\U00011290;Multani Letter Tta +\U00011291;Multani Letter Ttha +\U00011292;Multani Letter Dda +\U00011293;Multani Letter Ddda +\U00011294;Multani Letter Ddha +\U00011295;Multani Letter Nna +\U00011296;Multani Letter Ta +\U00011297;Multani Letter Tha +\U00011298;Multani Letter Da +\U00011299;Multani Letter Dha +\U0001129A;Multani Letter Na +\U0001129B;Multani Letter Pa +\U0001129C;Multani Letter Pha +\U0001129D;Multani Letter Ba +\U0001129F;Multani Letter Bha +\U000112A0;Multani Letter Ma +\U000112A1;Multani Letter Ya +\U000112A2;Multani Letter Ra +\U000112A3;Multani Letter La +\U000112A4;Multani Letter Va +\U000112A5;Multani Letter Sa +\U000112A6;Multani Letter Ha +\U000112A7;Multani Letter Rra +\U000112A8;Multani Letter Rha +\U000112A9;Multani Section Mark +\U000112B0;Khudawadi Letter A +\U000112B1;Khudawadi Letter Aa +\U000112B2;Khudawadi Letter I +\U000112B3;Khudawadi Letter Ii +\U000112B4;Khudawadi Letter U +\U000112B5;Khudawadi Letter Uu +\U000112B6;Khudawadi Letter E +\U000112B7;Khudawadi Letter Ai +\U000112B8;Khudawadi Letter O +\U000112B9;Khudawadi Letter Au +\U000112BA;Khudawadi Letter Ka +\U000112BB;Khudawadi Letter Kha +\U000112BC;Khudawadi Letter Ga +\U000112BD;Khudawadi Letter Gga +\U000112BE;Khudawadi Letter Gha +\U000112BF;Khudawadi Letter Nga +\U000112C0;Khudawadi Letter Ca +\U000112C1;Khudawadi Letter Cha +\U000112C2;Khudawadi Letter Ja +\U000112C3;Khudawadi Letter Jja +\U000112C4;Khudawadi Letter Jha +\U000112C5;Khudawadi Letter Nya +\U000112C6;Khudawadi Letter Tta +\U000112C7;Khudawadi Letter Ttha +\U000112C8;Khudawadi Letter Dda +\U000112C9;Khudawadi Letter Ddda +\U000112CA;Khudawadi Letter Rra +\U000112CB;Khudawadi Letter Ddha +\U000112CC;Khudawadi Letter Nna +\U000112CD;Khudawadi Letter Ta +\U000112CE;Khudawadi Letter Tha +\U000112CF;Khudawadi Letter Da +\U000112D0;Khudawadi Letter Dha +\U000112D1;Khudawadi Letter Na +\U000112D2;Khudawadi Letter Pa +\U000112D3;Khudawadi Letter Pha +\U000112D4;Khudawadi Letter Ba +\U000112D5;Khudawadi Letter Bba +\U000112D6;Khudawadi Letter Bha +\U000112D7;Khudawadi Letter Ma +\U000112D8;Khudawadi Letter Ya +\U000112D9;Khudawadi Letter Ra +\U000112DA;Khudawadi Letter La +\U000112DB;Khudawadi Letter Va +\U000112DC;Khudawadi Letter Sha +\U000112DD;Khudawadi Letter Sa +\U000112DE;Khudawadi Letter Ha +\U000112DF;Khudawadi Sign Anusvara +\U000112E0;Khudawadi Vowel Sign Aa +\U000112E1;Khudawadi Vowel Sign I +\U000112E2;Khudawadi Vowel Sign Ii +\U000112E3;Khudawadi Vowel Sign U +\U000112E4;Khudawadi Vowel Sign Uu +\U000112E5;Khudawadi Vowel Sign E +\U000112E6;Khudawadi Vowel Sign Ai +\U000112E7;Khudawadi Vowel Sign O +\U000112E8;Khudawadi Vowel Sign Au +\U000112E9;Khudawadi Sign Nukta +\U000112EA;Khudawadi Sign Virama +\U000112F0;Khudawadi Digit Zero +\U000112F1;Khudawadi Digit One +\U000112F2;Khudawadi Digit Two +\U000112F3;Khudawadi Digit Three +\U000112F4;Khudawadi Digit Four +\U000112F5;Khudawadi Digit Five +\U000112F6;Khudawadi Digit Six +\U000112F7;Khudawadi Digit Seven +\U000112F8;Khudawadi Digit Eight +\U000112F9;Khudawadi Digit Nine +\U00011300;Grantha Sign Combining Anusvara Above +\U00011301;Grantha Sign Candrabindu +\U00011302;Grantha Sign Anusvara +\U00011303;Grantha Sign Visarga +\U00011305;Grantha Letter A +\U00011306;Grantha Letter Aa +\U00011307;Grantha Letter I +\U00011308;Grantha Letter Ii +\U00011309;Grantha Letter U +\U0001130A;Grantha Letter Uu +\U0001130B;Grantha Letter Vocalic R +\U0001130C;Grantha Letter Vocalic L +\U0001130F;Grantha Letter Ee +\U00011310;Grantha Letter Ai +\U00011313;Grantha Letter Oo +\U00011314;Grantha Letter Au +\U00011315;Grantha Letter Ka +\U00011316;Grantha Letter Kha +\U00011317;Grantha Letter Ga +\U00011318;Grantha Letter Gha +\U00011319;Grantha Letter Nga +\U0001131A;Grantha Letter Ca +\U0001131B;Grantha Letter Cha +\U0001131C;Grantha Letter Ja +\U0001131D;Grantha Letter Jha +\U0001131E;Grantha Letter Nya +\U0001131F;Grantha Letter Tta +\U00011320;Grantha Letter Ttha +\U00011321;Grantha Letter Dda +\U00011322;Grantha Letter Ddha +\U00011323;Grantha Letter Nna +\U00011324;Grantha Letter Ta +\U00011325;Grantha Letter Tha +\U00011326;Grantha Letter Da +\U00011327;Grantha Letter Dha +\U00011328;Grantha Letter Na +\U0001132A;Grantha Letter Pa +\U0001132B;Grantha Letter Pha +\U0001132C;Grantha Letter Ba +\U0001132D;Grantha Letter Bha +\U0001132E;Grantha Letter Ma +\U0001132F;Grantha Letter Ya +\U00011330;Grantha Letter Ra +\U00011332;Grantha Letter La +\U00011333;Grantha Letter Lla +\U00011335;Grantha Letter Va +\U00011336;Grantha Letter Sha +\U00011337;Grantha Letter Ssa +\U00011338;Grantha Letter Sa +\U00011339;Grantha Letter Ha +\U0001133B;Combining Bindu Below +\U0001133C;Grantha Sign Nukta +\U0001133D;Grantha Sign Avagraha +\U0001133E;Grantha Vowel Sign Aa +\U0001133F;Grantha Vowel Sign I +\U00011340;Grantha Vowel Sign Ii +\U00011341;Grantha Vowel Sign U +\U00011342;Grantha Vowel Sign Uu +\U00011343;Grantha Vowel Sign Vocalic R +\U00011344;Grantha Vowel Sign Vocalic Rr +\U00011347;Grantha Vowel Sign Ee +\U00011348;Grantha Vowel Sign Ai +\U0001134B;Grantha Vowel Sign Oo +\U0001134C;Grantha Vowel Sign Au +\U0001134D;Grantha Sign Virama +\U00011350;Grantha Om +\U00011357;Grantha Au Length Mark +\U0001135D;Grantha Sign Pluta +\U0001135E;Grantha Letter Vedic Anusvara +\U0001135F;Grantha Letter Vedic Double Anusvara +\U00011360;Grantha Letter Vocalic Rr +\U00011361;Grantha Letter Vocalic Ll +\U00011362;Grantha Vowel Sign Vocalic L +\U00011363;Grantha Vowel Sign Vocalic Ll +\U00011366;Combining Grantha Digit Zero +\U00011367;Combining Grantha Digit One +\U00011368;Combining Grantha Digit Two +\U00011369;Combining Grantha Digit Three +\U0001136A;Combining Grantha Digit Four +\U0001136B;Combining Grantha Digit Five +\U0001136C;Combining Grantha Digit Six +\U00011370;Combining Grantha Letter A +\U00011371;Combining Grantha Letter Ka +\U00011372;Combining Grantha Letter Na +\U00011373;Combining Grantha Letter Vi +\U00011374;Combining Grantha Letter Pa +\U00011400;Newa Letter A +\U00011401;Newa Letter Aa +\U00011402;Newa Letter I +\U00011403;Newa Letter Ii +\U00011404;Newa Letter U +\U00011405;Newa Letter Uu +\U00011406;Newa Letter Vocalic R +\U00011407;Newa Letter Vocalic Rr +\U00011408;Newa Letter Vocalic L +\U00011409;Newa Letter Vocalic Ll +\U0001140A;Newa Letter E +\U0001140B;Newa Letter Ai +\U0001140C;Newa Letter O +\U0001140D;Newa Letter Au +\U0001140E;Newa Letter Ka +\U0001140F;Newa Letter Kha +\U00011410;Newa Letter Ga +\U00011411;Newa Letter Gha +\U00011412;Newa Letter Nga +\U00011413;Newa Letter Ngha +\U00011414;Newa Letter Ca +\U00011415;Newa Letter Cha +\U00011416;Newa Letter Ja +\U00011417;Newa Letter Jha +\U00011418;Newa Letter Nya +\U00011419;Newa Letter Nyha +\U0001141A;Newa Letter Tta +\U0001141B;Newa Letter Ttha +\U0001141C;Newa Letter Dda +\U0001141D;Newa Letter Ddha +\U0001141E;Newa Letter Nna +\U0001141F;Newa Letter Ta +\U00011420;Newa Letter Tha +\U00011421;Newa Letter Da +\U00011422;Newa Letter Dha +\U00011423;Newa Letter Na +\U00011424;Newa Letter Nha +\U00011425;Newa Letter Pa +\U00011426;Newa Letter Pha +\U00011427;Newa Letter Ba +\U00011428;Newa Letter Bha +\U00011429;Newa Letter Ma +\U0001142A;Newa Letter Mha +\U0001142B;Newa Letter Ya +\U0001142C;Newa Letter Ra +\U0001142D;Newa Letter Rha +\U0001142E;Newa Letter La +\U0001142F;Newa Letter Lha +\U00011430;Newa Letter Wa +\U00011431;Newa Letter Sha +\U00011432;Newa Letter Ssa +\U00011433;Newa Letter Sa +\U00011434;Newa Letter Ha +\U00011435;Newa Vowel Sign Aa +\U00011436;Newa Vowel Sign I +\U00011437;Newa Vowel Sign Ii +\U00011438;Newa Vowel Sign U +\U00011439;Newa Vowel Sign Uu +\U0001143A;Newa Vowel Sign Vocalic R +\U0001143B;Newa Vowel Sign Vocalic Rr +\U0001143C;Newa Vowel Sign Vocalic L +\U0001143D;Newa Vowel Sign Vocalic Ll +\U0001143E;Newa Vowel Sign E +\U0001143F;Newa Vowel Sign Ai +\U00011440;Newa Vowel Sign O +\U00011441;Newa Vowel Sign Au +\U00011442;Newa Sign Virama +\U00011443;Newa Sign Candrabindu +\U00011444;Newa Sign Anusvara +\U00011445;Newa Sign Visarga +\U00011446;Newa Sign Nukta +\U00011447;Newa Sign Avagraha +\U00011448;Newa Sign Final Anusvara +\U00011449;Newa Om +\U0001144A;Newa Siddhi +\U0001144B;Newa Danda +\U0001144C;Newa Double Danda +\U0001144D;Newa Comma +\U0001144E;Newa Gap Filler +\U0001144F;Newa Abbreviation Sign +\U00011450;Newa Digit Zero +\U00011451;Newa Digit One +\U00011452;Newa Digit Two +\U00011453;Newa Digit Three +\U00011454;Newa Digit Four +\U00011455;Newa Digit Five +\U00011456;Newa Digit Six +\U00011457;Newa Digit Seven +\U00011458;Newa Digit Eight +\U00011459;Newa Digit Nine +\U0001145A;Newa Double Comma +\U0001145B;Newa Placeholder Mark +\U0001145D;Newa Insertion Sign +\U0001145E;Newa Sandhi Mark +\U0001145F;Newa Letter Vedic Anusvara +\U00011460;Newa Sign Jihvamuliya +\U00011461;Newa Sign Upadhmaniya +\U00011480;Tirhuta Anji +\U00011481;Tirhuta Letter A +\U00011482;Tirhuta Letter Aa +\U00011483;Tirhuta Letter I +\U00011484;Tirhuta Letter Ii +\U00011485;Tirhuta Letter U +\U00011486;Tirhuta Letter Uu +\U00011487;Tirhuta Letter Vocalic R +\U00011488;Tirhuta Letter Vocalic Rr +\U00011489;Tirhuta Letter Vocalic L +\U0001148A;Tirhuta Letter Vocalic Ll +\U0001148B;Tirhuta Letter E +\U0001148C;Tirhuta Letter Ai +\U0001148D;Tirhuta Letter O +\U0001148E;Tirhuta Letter Au +\U0001148F;Tirhuta Letter Ka +\U00011490;Tirhuta Letter Kha +\U00011491;Tirhuta Letter Ga +\U00011492;Tirhuta Letter Gha +\U00011493;Tirhuta Letter Nga +\U00011494;Tirhuta Letter Ca +\U00011495;Tirhuta Letter Cha +\U00011496;Tirhuta Letter Ja +\U00011497;Tirhuta Letter Jha +\U00011498;Tirhuta Letter Nya +\U00011499;Tirhuta Letter Tta +\U0001149A;Tirhuta Letter Ttha +\U0001149B;Tirhuta Letter Dda +\U0001149C;Tirhuta Letter Ddha +\U0001149D;Tirhuta Letter Nna +\U0001149E;Tirhuta Letter Ta +\U0001149F;Tirhuta Letter Tha +\U000114A0;Tirhuta Letter Da +\U000114A1;Tirhuta Letter Dha +\U000114A2;Tirhuta Letter Na +\U000114A3;Tirhuta Letter Pa +\U000114A4;Tirhuta Letter Pha +\U000114A5;Tirhuta Letter Ba +\U000114A6;Tirhuta Letter Bha +\U000114A7;Tirhuta Letter Ma +\U000114A8;Tirhuta Letter Ya +\U000114A9;Tirhuta Letter Ra +\U000114AA;Tirhuta Letter La +\U000114AB;Tirhuta Letter Va +\U000114AC;Tirhuta Letter Sha +\U000114AD;Tirhuta Letter Ssa +\U000114AE;Tirhuta Letter Sa +\U000114AF;Tirhuta Letter Ha +\U000114B0;Tirhuta Vowel Sign Aa +\U000114B1;Tirhuta Vowel Sign I +\U000114B2;Tirhuta Vowel Sign Ii +\U000114B3;Tirhuta Vowel Sign U +\U000114B4;Tirhuta Vowel Sign Uu +\U000114B5;Tirhuta Vowel Sign Vocalic R +\U000114B6;Tirhuta Vowel Sign Vocalic Rr +\U000114B7;Tirhuta Vowel Sign Vocalic L +\U000114B8;Tirhuta Vowel Sign Vocalic Ll +\U000114B9;Tirhuta Vowel Sign E +\U000114BA;Tirhuta Vowel Sign Short E +\U000114BB;Tirhuta Vowel Sign Ai +\U000114BC;Tirhuta Vowel Sign O +\U000114BD;Tirhuta Vowel Sign Short O +\U000114BE;Tirhuta Vowel Sign Au +\U000114BF;Tirhuta Sign Candrabindu +\U000114C0;Tirhuta Sign Anusvara +\U000114C1;Tirhuta Sign Visarga +\U000114C2;Tirhuta Sign Virama +\U000114C3;Tirhuta Sign Nukta +\U000114C4;Tirhuta Sign Avagraha +\U000114C5;Tirhuta Gvang +\U000114C6;Tirhuta Abbreviation Sign +\U000114C7;Tirhuta Om +\U000114D0;Tirhuta Digit Zero +\U000114D1;Tirhuta Digit One +\U000114D2;Tirhuta Digit Two +\U000114D3;Tirhuta Digit Three +\U000114D4;Tirhuta Digit Four +\U000114D5;Tirhuta Digit Five +\U000114D6;Tirhuta Digit Six +\U000114D7;Tirhuta Digit Seven +\U000114D8;Tirhuta Digit Eight +\U000114D9;Tirhuta Digit Nine +\U00011580;Siddham Letter A +\U00011581;Siddham Letter Aa +\U00011582;Siddham Letter I +\U00011583;Siddham Letter Ii +\U00011584;Siddham Letter U +\U00011585;Siddham Letter Uu +\U00011586;Siddham Letter Vocalic R +\U00011587;Siddham Letter Vocalic Rr +\U00011588;Siddham Letter Vocalic L +\U00011589;Siddham Letter Vocalic Ll +\U0001158A;Siddham Letter E +\U0001158B;Siddham Letter Ai +\U0001158C;Siddham Letter O +\U0001158D;Siddham Letter Au +\U0001158E;Siddham Letter Ka +\U0001158F;Siddham Letter Kha +\U00011590;Siddham Letter Ga +\U00011591;Siddham Letter Gha +\U00011592;Siddham Letter Nga +\U00011593;Siddham Letter Ca +\U00011594;Siddham Letter Cha +\U00011595;Siddham Letter Ja +\U00011596;Siddham Letter Jha +\U00011597;Siddham Letter Nya +\U00011598;Siddham Letter Tta +\U00011599;Siddham Letter Ttha +\U0001159A;Siddham Letter Dda +\U0001159B;Siddham Letter Ddha +\U0001159C;Siddham Letter Nna +\U0001159D;Siddham Letter Ta +\U0001159E;Siddham Letter Tha +\U0001159F;Siddham Letter Da +\U000115A0;Siddham Letter Dha +\U000115A1;Siddham Letter Na +\U000115A2;Siddham Letter Pa +\U000115A3;Siddham Letter Pha +\U000115A4;Siddham Letter Ba +\U000115A5;Siddham Letter Bha +\U000115A6;Siddham Letter Ma +\U000115A7;Siddham Letter Ya +\U000115A8;Siddham Letter Ra +\U000115A9;Siddham Letter La +\U000115AA;Siddham Letter Va +\U000115AB;Siddham Letter Sha +\U000115AC;Siddham Letter Ssa +\U000115AD;Siddham Letter Sa +\U000115AE;Siddham Letter Ha +\U000115AF;Siddham Vowel Sign Aa +\U000115B0;Siddham Vowel Sign I +\U000115B1;Siddham Vowel Sign Ii +\U000115B2;Siddham Vowel Sign U +\U000115B3;Siddham Vowel Sign Uu +\U000115B4;Siddham Vowel Sign Vocalic R +\U000115B5;Siddham Vowel Sign Vocalic Rr +\U000115B8;Siddham Vowel Sign E +\U000115B9;Siddham Vowel Sign Ai +\U000115BA;Siddham Vowel Sign O +\U000115BB;Siddham Vowel Sign Au +\U000115BC;Siddham Sign Candrabindu +\U000115BD;Siddham Sign Anusvara +\U000115BE;Siddham Sign Visarga +\U000115BF;Siddham Sign Virama +\U000115C0;Siddham Sign Nukta +\U000115C1;Siddham Sign Siddham +\U000115C2;Siddham Danda +\U000115C3;Siddham Double Danda +\U000115C4;Siddham Separator Dot +\U000115C5;Siddham Separator Bar +\U000115C6;Siddham Repetition Mark-1 +\U000115C7;Siddham Repetition Mark-2 +\U000115C8;Siddham Repetition Mark-3 +\U000115C9;Siddham End Of Text Mark +\U000115CA;Siddham Section Mark With Trident And U-Shaped Ornaments +\U000115CB;Siddham Section Mark With Trident And Dotted Crescents +\U000115CC;Siddham Section Mark With Rays And Dotted Crescents +\U000115CD;Siddham Section Mark With Rays And Dotted Double Crescents +\U000115CE;Siddham Section Mark With Rays And Dotted Triple Crescents +\U000115CF;Siddham Section Mark Double Ring +\U000115D0;Siddham Section Mark Double Ring With Rays +\U000115D1;Siddham Section Mark With Double Crescents +\U000115D2;Siddham Section Mark With Triple Crescents +\U000115D3;Siddham Section Mark With Quadruple Crescents +\U000115D4;Siddham Section Mark With Septuple Crescents +\U000115D5;Siddham Section Mark With Circles And Rays +\U000115D6;Siddham Section Mark With Circles And Two Enclosures +\U000115D7;Siddham Section Mark With Circles And Four Enclosures +\U000115D8;Siddham Letter Three-Circle Alternate I +\U000115D9;Siddham Letter Two-Circle Alternate I +\U000115DA;Siddham Letter Two-Circle Alternate Ii +\U000115DB;Siddham Letter Alternate U +\U000115DC;Siddham Vowel Sign Alternate U +\U000115DD;Siddham Vowel Sign Alternate Uu +\U00011600;Modi Letter A +\U00011601;Modi Letter Aa +\U00011602;Modi Letter I +\U00011603;Modi Letter Ii +\U00011604;Modi Letter U +\U00011605;Modi Letter Uu +\U00011606;Modi Letter Vocalic R +\U00011607;Modi Letter Vocalic Rr +\U00011608;Modi Letter Vocalic L +\U00011609;Modi Letter Vocalic Ll +\U0001160A;Modi Letter E +\U0001160B;Modi Letter Ai +\U0001160C;Modi Letter O +\U0001160D;Modi Letter Au +\U0001160E;Modi Letter Ka +\U0001160F;Modi Letter Kha +\U00011610;Modi Letter Ga +\U00011611;Modi Letter Gha +\U00011612;Modi Letter Nga +\U00011613;Modi Letter Ca +\U00011614;Modi Letter Cha +\U00011615;Modi Letter Ja +\U00011616;Modi Letter Jha +\U00011617;Modi Letter Nya +\U00011618;Modi Letter Tta +\U00011619;Modi Letter Ttha +\U0001161A;Modi Letter Dda +\U0001161B;Modi Letter Ddha +\U0001161C;Modi Letter Nna +\U0001161D;Modi Letter Ta +\U0001161E;Modi Letter Tha +\U0001161F;Modi Letter Da +\U00011620;Modi Letter Dha +\U00011621;Modi Letter Na +\U00011622;Modi Letter Pa +\U00011623;Modi Letter Pha +\U00011624;Modi Letter Ba +\U00011625;Modi Letter Bha +\U00011626;Modi Letter Ma +\U00011627;Modi Letter Ya +\U00011628;Modi Letter Ra +\U00011629;Modi Letter La +\U0001162A;Modi Letter Va +\U0001162B;Modi Letter Sha +\U0001162C;Modi Letter Ssa +\U0001162D;Modi Letter Sa +\U0001162E;Modi Letter Ha +\U0001162F;Modi Letter Lla +\U00011630;Modi Vowel Sign Aa +\U00011631;Modi Vowel Sign I +\U00011632;Modi Vowel Sign Ii +\U00011633;Modi Vowel Sign U +\U00011634;Modi Vowel Sign Uu +\U00011635;Modi Vowel Sign Vocalic R +\U00011636;Modi Vowel Sign Vocalic Rr +\U00011637;Modi Vowel Sign Vocalic L +\U00011638;Modi Vowel Sign Vocalic Ll +\U00011639;Modi Vowel Sign E +\U0001163A;Modi Vowel Sign Ai +\U0001163B;Modi Vowel Sign O +\U0001163C;Modi Vowel Sign Au +\U0001163D;Modi Sign Anusvara +\U0001163E;Modi Sign Visarga +\U0001163F;Modi Sign Virama +\U00011640;Modi Sign Ardhacandra +\U00011641;Modi Danda +\U00011642;Modi Double Danda +\U00011643;Modi Abbreviation Sign +\U00011644;Modi Sign Huva +\U00011650;Modi Digit Zero +\U00011651;Modi Digit One +\U00011652;Modi Digit Two +\U00011653;Modi Digit Three +\U00011654;Modi Digit Four +\U00011655;Modi Digit Five +\U00011656;Modi Digit Six +\U00011657;Modi Digit Seven +\U00011658;Modi Digit Eight +\U00011659;Modi Digit Nine +\U00011660;Mongolian Birga With Ornament +\U00011661;Mongolian Rotated Birga +\U00011662;Mongolian Double Birga With Ornament +\U00011663;Mongolian Triple Birga With Ornament +\U00011664;Mongolian Birga With Double Ornament +\U00011665;Mongolian Rotated Birga With Ornament +\U00011666;Mongolian Rotated Birga With Double Ornament +\U00011667;Mongolian Inverted Birga +\U00011668;Mongolian Inverted Birga With Double Ornament +\U00011669;Mongolian Swirl Birga +\U0001166A;Mongolian Swirl Birga With Ornament +\U0001166B;Mongolian Swirl Birga With Double Ornament +\U0001166C;Mongolian Turned Swirl Birga With Double Ornament +\U00011680;Takri Letter A +\U00011681;Takri Letter Aa +\U00011682;Takri Letter I +\U00011683;Takri Letter Ii +\U00011684;Takri Letter U +\U00011685;Takri Letter Uu +\U00011686;Takri Letter E +\U00011687;Takri Letter Ai +\U00011688;Takri Letter O +\U00011689;Takri Letter Au +\U0001168A;Takri Letter Ka +\U0001168B;Takri Letter Kha +\U0001168C;Takri Letter Ga +\U0001168D;Takri Letter Gha +\U0001168E;Takri Letter Nga +\U0001168F;Takri Letter Ca +\U00011690;Takri Letter Cha +\U00011691;Takri Letter Ja +\U00011692;Takri Letter Jha +\U00011693;Takri Letter Nya +\U00011694;Takri Letter Tta +\U00011695;Takri Letter Ttha +\U00011696;Takri Letter Dda +\U00011697;Takri Letter Ddha +\U00011698;Takri Letter Nna +\U00011699;Takri Letter Ta +\U0001169A;Takri Letter Tha +\U0001169B;Takri Letter Da +\U0001169C;Takri Letter Dha +\U0001169D;Takri Letter Na +\U0001169E;Takri Letter Pa +\U0001169F;Takri Letter Pha +\U000116A0;Takri Letter Ba +\U000116A1;Takri Letter Bha +\U000116A2;Takri Letter Ma +\U000116A3;Takri Letter Ya +\U000116A4;Takri Letter Ra +\U000116A5;Takri Letter La +\U000116A6;Takri Letter Va +\U000116A7;Takri Letter Sha +\U000116A8;Takri Letter Sa +\U000116A9;Takri Letter Ha +\U000116AA;Takri Letter Rra +\U000116AB;Takri Sign Anusvara +\U000116AC;Takri Sign Visarga +\U000116AD;Takri Vowel Sign Aa +\U000116AE;Takri Vowel Sign I +\U000116AF;Takri Vowel Sign Ii +\U000116B0;Takri Vowel Sign U +\U000116B1;Takri Vowel Sign Uu +\U000116B2;Takri Vowel Sign E +\U000116B3;Takri Vowel Sign Ai +\U000116B4;Takri Vowel Sign O +\U000116B5;Takri Vowel Sign Au +\U000116B6;Takri Sign Virama +\U000116B7;Takri Sign Nukta +\U000116B8;Takri Letter Archaic Kha +\U000116B9;Takri Abbreviation Sign +\U000116C0;Takri Digit Zero +\U000116C1;Takri Digit One +\U000116C2;Takri Digit Two +\U000116C3;Takri Digit Three +\U000116C4;Takri Digit Four +\U000116C5;Takri Digit Five +\U000116C6;Takri Digit Six +\U000116C7;Takri Digit Seven +\U000116C8;Takri Digit Eight +\U000116C9;Takri Digit Nine +\U00011700;Ahom Letter Ka +\U00011701;Ahom Letter Kha +\U00011702;Ahom Letter Nga +\U00011703;Ahom Letter Na +\U00011704;Ahom Letter Ta +\U00011705;Ahom Letter Alternate Ta +\U00011706;Ahom Letter Pa +\U00011707;Ahom Letter Pha +\U00011708;Ahom Letter Ba +\U00011709;Ahom Letter Ma +\U0001170A;Ahom Letter Ja +\U0001170B;Ahom Letter Cha +\U0001170C;Ahom Letter Tha +\U0001170D;Ahom Letter Ra +\U0001170E;Ahom Letter La +\U0001170F;Ahom Letter Sa +\U00011710;Ahom Letter Nya +\U00011711;Ahom Letter Ha +\U00011712;Ahom Letter A +\U00011713;Ahom Letter Da +\U00011714;Ahom Letter Dha +\U00011715;Ahom Letter Ga +\U00011716;Ahom Letter Alternate Ga +\U00011717;Ahom Letter Gha +\U00011718;Ahom Letter Bha +\U00011719;Ahom Letter Jha +\U0001171A;Ahom Letter Alternate Ba +\U0001171D;Ahom Consonant Sign Medial La +\U0001171E;Ahom Consonant Sign Medial Ra +\U0001171F;Ahom Consonant Sign Medial Ligating Ra +\U00011720;Ahom Vowel Sign A +\U00011721;Ahom Vowel Sign Aa +\U00011722;Ahom Vowel Sign I +\U00011723;Ahom Vowel Sign Ii +\U00011724;Ahom Vowel Sign U +\U00011725;Ahom Vowel Sign Uu +\U00011726;Ahom Vowel Sign E +\U00011727;Ahom Vowel Sign Aw +\U00011728;Ahom Vowel Sign O +\U00011729;Ahom Vowel Sign Ai +\U0001172A;Ahom Vowel Sign Am +\U0001172B;Ahom Sign Killer +\U00011730;Ahom Digit Zero +\U00011731;Ahom Digit One +\U00011732;Ahom Digit Two +\U00011733;Ahom Digit Three +\U00011734;Ahom Digit Four +\U00011735;Ahom Digit Five +\U00011736;Ahom Digit Six +\U00011737;Ahom Digit Seven +\U00011738;Ahom Digit Eight +\U00011739;Ahom Digit Nine +\U0001173A;Ahom Number Ten +\U0001173B;Ahom Number Twenty +\U0001173C;Ahom Sign Small Section +\U0001173D;Ahom Sign Section +\U0001173E;Ahom Sign Rulai +\U0001173F;Ahom Symbol Vi +\U00011740;Ahom Letter Ca +\U00011741;Ahom Letter Tta +\U00011742;Ahom Letter Ttha +\U00011743;Ahom Letter Dda +\U00011744;Ahom Letter Ddha +\U00011745;Ahom Letter Nna +\U00011746;Ahom Letter Lla +\U00011800;Dogra Letter A +\U00011801;Dogra Letter Aa +\U00011802;Dogra Letter I +\U00011803;Dogra Letter Ii +\U00011804;Dogra Letter U +\U00011805;Dogra Letter Uu +\U00011806;Dogra Letter E +\U00011807;Dogra Letter Ai +\U00011808;Dogra Letter O +\U00011809;Dogra Letter Au +\U0001180A;Dogra Letter Ka +\U0001180B;Dogra Letter Kha +\U0001180C;Dogra Letter Ga +\U0001180D;Dogra Letter Gha +\U0001180E;Dogra Letter Nga +\U0001180F;Dogra Letter Ca +\U00011810;Dogra Letter Cha +\U00011811;Dogra Letter Ja +\U00011812;Dogra Letter Jha +\U00011813;Dogra Letter Nya +\U00011814;Dogra Letter Tta +\U00011815;Dogra Letter Ttha +\U00011816;Dogra Letter Dda +\U00011817;Dogra Letter Ddha +\U00011818;Dogra Letter Nna +\U00011819;Dogra Letter Ta +\U0001181A;Dogra Letter Tha +\U0001181B;Dogra Letter Da +\U0001181C;Dogra Letter Dha +\U0001181D;Dogra Letter Na +\U0001181E;Dogra Letter Pa +\U0001181F;Dogra Letter Pha +\U00011820;Dogra Letter Ba +\U00011821;Dogra Letter Bha +\U00011822;Dogra Letter Ma +\U00011823;Dogra Letter Ya +\U00011824;Dogra Letter Ra +\U00011825;Dogra Letter La +\U00011826;Dogra Letter Va +\U00011827;Dogra Letter Sha +\U00011828;Dogra Letter Ssa +\U00011829;Dogra Letter Sa +\U0001182A;Dogra Letter Ha +\U0001182B;Dogra Letter Rra +\U0001182C;Dogra Vowel Sign Aa +\U0001182D;Dogra Vowel Sign I +\U0001182E;Dogra Vowel Sign Ii +\U0001182F;Dogra Vowel Sign U +\U00011830;Dogra Vowel Sign Uu +\U00011831;Dogra Vowel Sign Vocalic R +\U00011832;Dogra Vowel Sign Vocalic Rr +\U00011833;Dogra Vowel Sign E +\U00011834;Dogra Vowel Sign Ai +\U00011835;Dogra Vowel Sign O +\U00011836;Dogra Vowel Sign Au +\U00011837;Dogra Sign Anusvara +\U00011838;Dogra Sign Visarga +\U00011839;Dogra Sign Virama +\U0001183A;Dogra Sign Nukta +\U0001183B;Dogra Abbreviation Sign +\U000118A0;Warang Citi Capital Letter Ngaa +\U000118A1;Warang Citi Capital Letter A +\U000118A2;Warang Citi Capital Letter Wi +\U000118A3;Warang Citi Capital Letter Yu +\U000118A4;Warang Citi Capital Letter Ya +\U000118A5;Warang Citi Capital Letter Yo +\U000118A6;Warang Citi Capital Letter Ii +\U000118A7;Warang Citi Capital Letter Uu +\U000118A8;Warang Citi Capital Letter E +\U000118A9;Warang Citi Capital Letter O +\U000118AA;Warang Citi Capital Letter Ang +\U000118AB;Warang Citi Capital Letter Ga +\U000118AC;Warang Citi Capital Letter Ko +\U000118AD;Warang Citi Capital Letter Eny +\U000118AE;Warang Citi Capital Letter Yuj +\U000118AF;Warang Citi Capital Letter Uc +\U000118B0;Warang Citi Capital Letter Enn +\U000118B1;Warang Citi Capital Letter Odd +\U000118B2;Warang Citi Capital Letter Tte +\U000118B3;Warang Citi Capital Letter Nung +\U000118B4;Warang Citi Capital Letter Da +\U000118B5;Warang Citi Capital Letter At +\U000118B6;Warang Citi Capital Letter Am +\U000118B7;Warang Citi Capital Letter Bu +\U000118B8;Warang Citi Capital Letter Pu +\U000118B9;Warang Citi Capital Letter Hiyo +\U000118BA;Warang Citi Capital Letter Holo +\U000118BB;Warang Citi Capital Letter Horr +\U000118BC;Warang Citi Capital Letter Har +\U000118BD;Warang Citi Capital Letter Ssuu +\U000118BE;Warang Citi Capital Letter Sii +\U000118BF;Warang Citi Capital Letter Viyo +\U000118C0;Warang Citi Small Letter Ngaa +\U000118C1;Warang Citi Small Letter A +\U000118C2;Warang Citi Small Letter Wi +\U000118C3;Warang Citi Small Letter Yu +\U000118C4;Warang Citi Small Letter Ya +\U000118C5;Warang Citi Small Letter Yo +\U000118C6;Warang Citi Small Letter Ii +\U000118C7;Warang Citi Small Letter Uu +\U000118C8;Warang Citi Small Letter E +\U000118C9;Warang Citi Small Letter O +\U000118CA;Warang Citi Small Letter Ang +\U000118CB;Warang Citi Small Letter Ga +\U000118CC;Warang Citi Small Letter Ko +\U000118CD;Warang Citi Small Letter Eny +\U000118CE;Warang Citi Small Letter Yuj +\U000118CF;Warang Citi Small Letter Uc +\U000118D0;Warang Citi Small Letter Enn +\U000118D1;Warang Citi Small Letter Odd +\U000118D2;Warang Citi Small Letter Tte +\U000118D3;Warang Citi Small Letter Nung +\U000118D4;Warang Citi Small Letter Da +\U000118D5;Warang Citi Small Letter At +\U000118D6;Warang Citi Small Letter Am +\U000118D7;Warang Citi Small Letter Bu +\U000118D8;Warang Citi Small Letter Pu +\U000118D9;Warang Citi Small Letter Hiyo +\U000118DA;Warang Citi Small Letter Holo +\U000118DB;Warang Citi Small Letter Horr +\U000118DC;Warang Citi Small Letter Har +\U000118DD;Warang Citi Small Letter Ssuu +\U000118DE;Warang Citi Small Letter Sii +\U000118DF;Warang Citi Small Letter Viyo +\U000118E0;Warang Citi Digit Zero +\U000118E1;Warang Citi Digit One +\U000118E2;Warang Citi Digit Two +\U000118E3;Warang Citi Digit Three +\U000118E4;Warang Citi Digit Four +\U000118E5;Warang Citi Digit Five +\U000118E6;Warang Citi Digit Six +\U000118E7;Warang Citi Digit Seven +\U000118E8;Warang Citi Digit Eight +\U000118E9;Warang Citi Digit Nine +\U000118EA;Warang Citi Number Ten +\U000118EB;Warang Citi Number Twenty +\U000118EC;Warang Citi Number Thirty +\U000118ED;Warang Citi Number Forty +\U000118EE;Warang Citi Number Fifty +\U000118EF;Warang Citi Number Sixty +\U000118F0;Warang Citi Number Seventy +\U000118F1;Warang Citi Number Eighty +\U000118F2;Warang Citi Number Ninety +\U000118FF;Warang Citi Om +\U00011900;Dives Akuru Letter A +\U00011901;Dives Akuru Letter Aa +\U00011902;Dives Akuru Letter I +\U00011903;Dives Akuru Letter Ii +\U00011904;Dives Akuru Letter U +\U00011905;Dives Akuru Letter Uu +\U00011906;Dives Akuru Letter E +\U00011909;Dives Akuru Letter O +\U0001190C;Dives Akuru Letter Ka +\U0001190D;Dives Akuru Letter Kha +\U0001190E;Dives Akuru Letter Ga +\U0001190F;Dives Akuru Letter Gha +\U00011910;Dives Akuru Letter Nga +\U00011911;Dives Akuru Letter Ca +\U00011912;Dives Akuru Letter Cha +\U00011913;Dives Akuru Letter Ja +\U00011915;Dives Akuru Letter Nya +\U00011916;Dives Akuru Letter Tta +\U00011918;Dives Akuru Letter Dda +\U00011919;Dives Akuru Letter Ddha +\U0001191A;Dives Akuru Letter Nna +\U0001191B;Dives Akuru Letter Ta +\U0001191C;Dives Akuru Letter Tha +\U0001191D;Dives Akuru Letter Da +\U0001191E;Dives Akuru Letter Dha +\U0001191F;Dives Akuru Letter Na +\U00011920;Dives Akuru Letter Pa +\U00011921;Dives Akuru Letter Pha +\U00011922;Dives Akuru Letter Ba +\U00011923;Dives Akuru Letter Bha +\U00011924;Dives Akuru Letter Ma +\U00011925;Dives Akuru Letter Ya +\U00011926;Dives Akuru Letter Yya +\U00011927;Dives Akuru Letter Ra +\U00011928;Dives Akuru Letter La +\U00011929;Dives Akuru Letter Va +\U0001192A;Dives Akuru Letter Sha +\U0001192B;Dives Akuru Letter Ssa +\U0001192C;Dives Akuru Letter Sa +\U0001192D;Dives Akuru Letter Ha +\U0001192E;Dives Akuru Letter Lla +\U0001192F;Dives Akuru Letter Za +\U00011930;Dives Akuru Vowel Sign Aa +\U00011931;Dives Akuru Vowel Sign I +\U00011932;Dives Akuru Vowel Sign Ii +\U00011933;Dives Akuru Vowel Sign U +\U00011934;Dives Akuru Vowel Sign Uu +\U00011935;Dives Akuru Vowel Sign E +\U00011937;Dives Akuru Vowel Sign Ai +\U00011938;Dives Akuru Vowel Sign O +\U0001193B;Dives Akuru Sign Anusvara +\U0001193C;Dives Akuru Sign Candrabindu +\U0001193D;Dives Akuru Sign Halanta +\U0001193E;Dives Akuru Virama +\U0001193F;Dives Akuru Prefixed Nasal Sign +\U00011940;Dives Akuru Medial Ya +\U00011941;Dives Akuru Initial Ra +\U00011942;Dives Akuru Medial Ra +\U00011943;Dives Akuru Sign Nukta +\U00011944;Dives Akuru Double Danda +\U00011945;Dives Akuru Gap Filler +\U00011946;Dives Akuru End Of Text Mark +\U00011950;Dives Akuru Digit Zero +\U00011951;Dives Akuru Digit One +\U00011952;Dives Akuru Digit Two +\U00011953;Dives Akuru Digit Three +\U00011954;Dives Akuru Digit Four +\U00011955;Dives Akuru Digit Five +\U00011956;Dives Akuru Digit Six +\U00011957;Dives Akuru Digit Seven +\U00011958;Dives Akuru Digit Eight +\U00011959;Dives Akuru Digit Nine +\U000119A0;Nandinagari Letter A +\U000119A1;Nandinagari Letter Aa +\U000119A2;Nandinagari Letter I +\U000119A3;Nandinagari Letter Ii +\U000119A4;Nandinagari Letter U +\U000119A5;Nandinagari Letter Uu +\U000119A6;Nandinagari Letter Vocalic R +\U000119A7;Nandinagari Letter Vocalic Rr +\U000119AA;Nandinagari Letter E +\U000119AB;Nandinagari Letter Ai +\U000119AC;Nandinagari Letter O +\U000119AD;Nandinagari Letter Au +\U000119AE;Nandinagari Letter Ka +\U000119AF;Nandinagari Letter Kha +\U000119B0;Nandinagari Letter Ga +\U000119B1;Nandinagari Letter Gha +\U000119B2;Nandinagari Letter Nga +\U000119B3;Nandinagari Letter Ca +\U000119B4;Nandinagari Letter Cha +\U000119B5;Nandinagari Letter Ja +\U000119B6;Nandinagari Letter Jha +\U000119B7;Nandinagari Letter Nya +\U000119B8;Nandinagari Letter Tta +\U000119B9;Nandinagari Letter Ttha +\U000119BA;Nandinagari Letter Dda +\U000119BB;Nandinagari Letter Ddha +\U000119BC;Nandinagari Letter Nna +\U000119BD;Nandinagari Letter Ta +\U000119BE;Nandinagari Letter Tha +\U000119BF;Nandinagari Letter Da +\U000119C0;Nandinagari Letter Dha +\U000119C1;Nandinagari Letter Na +\U000119C2;Nandinagari Letter Pa +\U000119C3;Nandinagari Letter Pha +\U000119C4;Nandinagari Letter Ba +\U000119C5;Nandinagari Letter Bha +\U000119C6;Nandinagari Letter Ma +\U000119C7;Nandinagari Letter Ya +\U000119C8;Nandinagari Letter Ra +\U000119C9;Nandinagari Letter La +\U000119CA;Nandinagari Letter Va +\U000119CB;Nandinagari Letter Sha +\U000119CC;Nandinagari Letter Ssa +\U000119CD;Nandinagari Letter Sa +\U000119CE;Nandinagari Letter Ha +\U000119CF;Nandinagari Letter Lla +\U000119D0;Nandinagari Letter Rra +\U000119D1;Nandinagari Vowel Sign Aa +\U000119D2;Nandinagari Vowel Sign I +\U000119D3;Nandinagari Vowel Sign Ii +\U000119D4;Nandinagari Vowel Sign U +\U000119D5;Nandinagari Vowel Sign Uu +\U000119D6;Nandinagari Vowel Sign Vocalic R +\U000119D7;Nandinagari Vowel Sign Vocalic Rr +\U000119DA;Nandinagari Vowel Sign E +\U000119DB;Nandinagari Vowel Sign Ai +\U000119DC;Nandinagari Vowel Sign O +\U000119DD;Nandinagari Vowel Sign Au +\U000119DE;Nandinagari Sign Anusvara +\U000119DF;Nandinagari Sign Visarga +\U000119E0;Nandinagari Sign Virama +\U000119E1;Nandinagari Sign Avagraha +\U000119E2;Nandinagari Sign Siddham +\U000119E3;Nandinagari Headstroke +\U000119E4;Nandinagari Vowel Sign Prishthamatra E +\U00011A00;Zanabazar Square Letter A +\U00011A01;Zanabazar Square Vowel Sign I +\U00011A02;Zanabazar Square Vowel Sign Ue +\U00011A03;Zanabazar Square Vowel Sign U +\U00011A04;Zanabazar Square Vowel Sign E +\U00011A05;Zanabazar Square Vowel Sign Oe +\U00011A06;Zanabazar Square Vowel Sign O +\U00011A07;Zanabazar Square Vowel Sign Ai +\U00011A08;Zanabazar Square Vowel Sign Au +\U00011A09;Zanabazar Square Vowel Sign Reversed I +\U00011A0A;Zanabazar Square Vowel Length Mark +\U00011A0B;Zanabazar Square Letter Ka +\U00011A0C;Zanabazar Square Letter Kha +\U00011A0D;Zanabazar Square Letter Ga +\U00011A0E;Zanabazar Square Letter Gha +\U00011A0F;Zanabazar Square Letter Nga +\U00011A10;Zanabazar Square Letter Ca +\U00011A11;Zanabazar Square Letter Cha +\U00011A12;Zanabazar Square Letter Ja +\U00011A13;Zanabazar Square Letter Nya +\U00011A14;Zanabazar Square Letter Tta +\U00011A15;Zanabazar Square Letter Ttha +\U00011A16;Zanabazar Square Letter Dda +\U00011A17;Zanabazar Square Letter Ddha +\U00011A18;Zanabazar Square Letter Nna +\U00011A19;Zanabazar Square Letter Ta +\U00011A1A;Zanabazar Square Letter Tha +\U00011A1B;Zanabazar Square Letter Da +\U00011A1C;Zanabazar Square Letter Dha +\U00011A1D;Zanabazar Square Letter Na +\U00011A1E;Zanabazar Square Letter Pa +\U00011A1F;Zanabazar Square Letter Pha +\U00011A20;Zanabazar Square Letter Ba +\U00011A21;Zanabazar Square Letter Bha +\U00011A22;Zanabazar Square Letter Ma +\U00011A23;Zanabazar Square Letter Tsa +\U00011A24;Zanabazar Square Letter Tsha +\U00011A25;Zanabazar Square Letter Dza +\U00011A26;Zanabazar Square Letter Dzha +\U00011A27;Zanabazar Square Letter Zha +\U00011A28;Zanabazar Square Letter Za +\U00011A29;Zanabazar Square Letter -A +\U00011A2A;Zanabazar Square Letter Ya +\U00011A2B;Zanabazar Square Letter Ra +\U00011A2C;Zanabazar Square Letter La +\U00011A2D;Zanabazar Square Letter Va +\U00011A2E;Zanabazar Square Letter Sha +\U00011A2F;Zanabazar Square Letter Ssa +\U00011A30;Zanabazar Square Letter Sa +\U00011A31;Zanabazar Square Letter Ha +\U00011A32;Zanabazar Square Letter Kssa +\U00011A33;Zanabazar Square Final Consonant Mark +\U00011A34;Zanabazar Square Sign Virama +\U00011A35;Zanabazar Square Sign Candrabindu +\U00011A36;Zanabazar Square Sign Candrabindu With Ornament +\U00011A37;Zanabazar Square Sign Candra With Ornament +\U00011A38;Zanabazar Square Sign Anusvara +\U00011A39;Zanabazar Square Sign Visarga +\U00011A3A;Zanabazar Square Cluster-Initial Letter Ra +\U00011A3B;Zanabazar Square Cluster-Final Letter Ya +\U00011A3C;Zanabazar Square Cluster-Final Letter Ra +\U00011A3D;Zanabazar Square Cluster-Final Letter La +\U00011A3E;Zanabazar Square Cluster-Final Letter Va +\U00011A3F;Zanabazar Square Initial Head Mark +\U00011A40;Zanabazar Square Closing Head Mark +\U00011A41;Zanabazar Square Mark Tsheg +\U00011A42;Zanabazar Square Mark Shad +\U00011A43;Zanabazar Square Mark Double Shad +\U00011A44;Zanabazar Square Mark Long Tsheg +\U00011A45;Zanabazar Square Initial Double-Lined Head Mark +\U00011A46;Zanabazar Square Closing Double-Lined Head Mark +\U00011A47;Zanabazar Square Subjoiner +\U00011A50;Soyombo Letter A +\U00011A51;Soyombo Vowel Sign I +\U00011A52;Soyombo Vowel Sign Ue +\U00011A53;Soyombo Vowel Sign U +\U00011A54;Soyombo Vowel Sign E +\U00011A55;Soyombo Vowel Sign O +\U00011A56;Soyombo Vowel Sign Oe +\U00011A57;Soyombo Vowel Sign Ai +\U00011A58;Soyombo Vowel Sign Au +\U00011A59;Soyombo Vowel Sign Vocalic R +\U00011A5A;Soyombo Vowel Sign Vocalic L +\U00011A5B;Soyombo Vowel Length Mark +\U00011A5C;Soyombo Letter Ka +\U00011A5D;Soyombo Letter Kha +\U00011A5E;Soyombo Letter Ga +\U00011A5F;Soyombo Letter Gha +\U00011A60;Soyombo Letter Nga +\U00011A61;Soyombo Letter Ca +\U00011A62;Soyombo Letter Cha +\U00011A63;Soyombo Letter Ja +\U00011A64;Soyombo Letter Jha +\U00011A65;Soyombo Letter Nya +\U00011A66;Soyombo Letter Tta +\U00011A67;Soyombo Letter Ttha +\U00011A68;Soyombo Letter Dda +\U00011A69;Soyombo Letter Ddha +\U00011A6A;Soyombo Letter Nna +\U00011A6B;Soyombo Letter Ta +\U00011A6C;Soyombo Letter Tha +\U00011A6D;Soyombo Letter Da +\U00011A6E;Soyombo Letter Dha +\U00011A6F;Soyombo Letter Na +\U00011A70;Soyombo Letter Pa +\U00011A71;Soyombo Letter Pha +\U00011A72;Soyombo Letter Ba +\U00011A73;Soyombo Letter Bha +\U00011A74;Soyombo Letter Ma +\U00011A75;Soyombo Letter Tsa +\U00011A76;Soyombo Letter Tsha +\U00011A77;Soyombo Letter Dza +\U00011A78;Soyombo Letter Zha +\U00011A79;Soyombo Letter Za +\U00011A7A;Soyombo Letter -A +\U00011A7B;Soyombo Letter Ya +\U00011A7C;Soyombo Letter Ra +\U00011A7D;Soyombo Letter La +\U00011A7E;Soyombo Letter Va +\U00011A7F;Soyombo Letter Sha +\U00011A80;Soyombo Letter Ssa +\U00011A81;Soyombo Letter Sa +\U00011A82;Soyombo Letter Ha +\U00011A83;Soyombo Letter Kssa +\U00011A84;Soyombo Sign Jihvamuliya +\U00011A85;Soyombo Sign Upadhmaniya +\U00011A86;Soyombo Cluster-Initial Letter Ra +\U00011A87;Soyombo Cluster-Initial Letter La +\U00011A88;Soyombo Cluster-Initial Letter Sha +\U00011A89;Soyombo Cluster-Initial Letter Sa +\U00011A8A;Soyombo Final Consonant Sign G +\U00011A8B;Soyombo Final Consonant Sign K +\U00011A8C;Soyombo Final Consonant Sign Ng +\U00011A8D;Soyombo Final Consonant Sign D +\U00011A8E;Soyombo Final Consonant Sign N +\U00011A8F;Soyombo Final Consonant Sign B +\U00011A90;Soyombo Final Consonant Sign M +\U00011A91;Soyombo Final Consonant Sign R +\U00011A92;Soyombo Final Consonant Sign L +\U00011A93;Soyombo Final Consonant Sign Sh +\U00011A94;Soyombo Final Consonant Sign S +\U00011A95;Soyombo Final Consonant Sign -A +\U00011A96;Soyombo Sign Anusvara +\U00011A97;Soyombo Sign Visarga +\U00011A98;Soyombo Gemination Mark +\U00011A99;Soyombo Subjoiner +\U00011A9A;Soyombo Mark Tsheg +\U00011A9B;Soyombo Mark Shad +\U00011A9C;Soyombo Mark Double Shad +\U00011A9D;Soyombo Mark Pluta +\U00011A9E;Soyombo Head Mark With Moon And Sun And Triple Flame +\U00011A9F;Soyombo Head Mark With Moon And Sun And Flame +\U00011AA0;Soyombo Head Mark With Moon And Sun +\U00011AA1;Soyombo Terminal Mark-1 +\U00011AA2;Soyombo Terminal Mark-2 +\U00011AB0;Canadian Syllabics Nattilik Hi +\U00011AB1;Canadian Syllabics Nattilik Hii +\U00011AB2;Canadian Syllabics Nattilik Ho +\U00011AB3;Canadian Syllabics Nattilik Hoo +\U00011AB4;Canadian Syllabics Nattilik Ha +\U00011AB5;Canadian Syllabics Nattilik Haa +\U00011AB6;Canadian Syllabics Nattilik Shri +\U00011AB7;Canadian Syllabics Nattilik Shrii +\U00011AB8;Canadian Syllabics Nattilik Shro +\U00011AB9;Canadian Syllabics Nattilik Shroo +\U00011ABA;Canadian Syllabics Nattilik Shra +\U00011ABB;Canadian Syllabics Nattilik Shraa +\U00011ABC;Canadian Syllabics Spe +\U00011ABD;Canadian Syllabics Spi +\U00011ABE;Canadian Syllabics Spo +\U00011ABF;Canadian Syllabics Spa +\U00011AC0;Pau Cin Hau Letter Pa +\U00011AC1;Pau Cin Hau Letter Ka +\U00011AC2;Pau Cin Hau Letter La +\U00011AC3;Pau Cin Hau Letter Ma +\U00011AC4;Pau Cin Hau Letter Da +\U00011AC5;Pau Cin Hau Letter Za +\U00011AC6;Pau Cin Hau Letter Va +\U00011AC7;Pau Cin Hau Letter Nga +\U00011AC8;Pau Cin Hau Letter Ha +\U00011AC9;Pau Cin Hau Letter Ga +\U00011ACA;Pau Cin Hau Letter Kha +\U00011ACB;Pau Cin Hau Letter Sa +\U00011ACC;Pau Cin Hau Letter Ba +\U00011ACD;Pau Cin Hau Letter Ca +\U00011ACE;Pau Cin Hau Letter Ta +\U00011ACF;Pau Cin Hau Letter Tha +\U00011AD0;Pau Cin Hau Letter Na +\U00011AD1;Pau Cin Hau Letter Pha +\U00011AD2;Pau Cin Hau Letter Ra +\U00011AD3;Pau Cin Hau Letter Fa +\U00011AD4;Pau Cin Hau Letter Cha +\U00011AD5;Pau Cin Hau Letter A +\U00011AD6;Pau Cin Hau Letter E +\U00011AD7;Pau Cin Hau Letter I +\U00011AD8;Pau Cin Hau Letter O +\U00011AD9;Pau Cin Hau Letter U +\U00011ADA;Pau Cin Hau Letter Ua +\U00011ADB;Pau Cin Hau Letter Ia +\U00011ADC;Pau Cin Hau Letter Final P +\U00011ADD;Pau Cin Hau Letter Final K +\U00011ADE;Pau Cin Hau Letter Final T +\U00011ADF;Pau Cin Hau Letter Final M +\U00011AE0;Pau Cin Hau Letter Final N +\U00011AE1;Pau Cin Hau Letter Final L +\U00011AE2;Pau Cin Hau Letter Final W +\U00011AE3;Pau Cin Hau Letter Final Ng +\U00011AE4;Pau Cin Hau Letter Final Y +\U00011AE5;Pau Cin Hau Rising Tone Long +\U00011AE6;Pau Cin Hau Rising Tone +\U00011AE7;Pau Cin Hau Sandhi Glottal Stop +\U00011AE8;Pau Cin Hau Rising Tone Long Final +\U00011AE9;Pau Cin Hau Rising Tone Final +\U00011AEA;Pau Cin Hau Sandhi Glottal Stop Final +\U00011AEB;Pau Cin Hau Sandhi Tone Long +\U00011AEC;Pau Cin Hau Sandhi Tone +\U00011AED;Pau Cin Hau Sandhi Tone Long Final +\U00011AEE;Pau Cin Hau Sandhi Tone Final +\U00011AEF;Pau Cin Hau Mid-Level Tone +\U00011AF0;Pau Cin Hau Glottal Stop Variant +\U00011AF1;Pau Cin Hau Mid-Level Tone Long Final +\U00011AF2;Pau Cin Hau Mid-Level Tone Final +\U00011AF3;Pau Cin Hau Low-Falling Tone Long +\U00011AF4;Pau Cin Hau Low-Falling Tone +\U00011AF5;Pau Cin Hau Glottal Stop +\U00011AF6;Pau Cin Hau Low-Falling Tone Long Final +\U00011AF7;Pau Cin Hau Low-Falling Tone Final +\U00011AF8;Pau Cin Hau Glottal Stop Final +\U00011B00;Devanagari Head Mark +\U00011B01;Devanagari Head Mark With Headstroke +\U00011B02;Devanagari Sign Bhale +\U00011B03;Devanagari Sign Bhale With Hook +\U00011B04;Devanagari Sign Extended Bhale +\U00011B05;Devanagari Sign Extended Bhale With Hook +\U00011B06;Devanagari Sign Western Five-Like Bhale +\U00011B07;Devanagari Sign Western Nine-Like Bhale +\U00011B08;Devanagari Sign Reversed Nine-Like Bhale +\U00011B09;Devanagari Sign Mindu +\U00011C00;Bhaiksuki Letter A +\U00011C01;Bhaiksuki Letter Aa +\U00011C02;Bhaiksuki Letter I +\U00011C03;Bhaiksuki Letter Ii +\U00011C04;Bhaiksuki Letter U +\U00011C05;Bhaiksuki Letter Uu +\U00011C06;Bhaiksuki Letter Vocalic R +\U00011C07;Bhaiksuki Letter Vocalic Rr +\U00011C08;Bhaiksuki Letter Vocalic L +\U00011C0A;Bhaiksuki Letter E +\U00011C0B;Bhaiksuki Letter Ai +\U00011C0C;Bhaiksuki Letter O +\U00011C0D;Bhaiksuki Letter Au +\U00011C0E;Bhaiksuki Letter Ka +\U00011C0F;Bhaiksuki Letter Kha +\U00011C10;Bhaiksuki Letter Ga +\U00011C11;Bhaiksuki Letter Gha +\U00011C12;Bhaiksuki Letter Nga +\U00011C13;Bhaiksuki Letter Ca +\U00011C14;Bhaiksuki Letter Cha +\U00011C15;Bhaiksuki Letter Ja +\U00011C16;Bhaiksuki Letter Jha +\U00011C17;Bhaiksuki Letter Nya +\U00011C18;Bhaiksuki Letter Tta +\U00011C19;Bhaiksuki Letter Ttha +\U00011C1A;Bhaiksuki Letter Dda +\U00011C1B;Bhaiksuki Letter Ddha +\U00011C1C;Bhaiksuki Letter Nna +\U00011C1D;Bhaiksuki Letter Ta +\U00011C1E;Bhaiksuki Letter Tha +\U00011C1F;Bhaiksuki Letter Da +\U00011C20;Bhaiksuki Letter Dha +\U00011C21;Bhaiksuki Letter Na +\U00011C22;Bhaiksuki Letter Pa +\U00011C23;Bhaiksuki Letter Pha +\U00011C24;Bhaiksuki Letter Ba +\U00011C25;Bhaiksuki Letter Bha +\U00011C26;Bhaiksuki Letter Ma +\U00011C27;Bhaiksuki Letter Ya +\U00011C28;Bhaiksuki Letter Ra +\U00011C29;Bhaiksuki Letter La +\U00011C2A;Bhaiksuki Letter Va +\U00011C2B;Bhaiksuki Letter Sha +\U00011C2C;Bhaiksuki Letter Ssa +\U00011C2D;Bhaiksuki Letter Sa +\U00011C2E;Bhaiksuki Letter Ha +\U00011C2F;Bhaiksuki Vowel Sign Aa +\U00011C30;Bhaiksuki Vowel Sign I +\U00011C31;Bhaiksuki Vowel Sign Ii +\U00011C32;Bhaiksuki Vowel Sign U +\U00011C33;Bhaiksuki Vowel Sign Uu +\U00011C34;Bhaiksuki Vowel Sign Vocalic R +\U00011C35;Bhaiksuki Vowel Sign Vocalic Rr +\U00011C36;Bhaiksuki Vowel Sign Vocalic L +\U00011C38;Bhaiksuki Vowel Sign E +\U00011C39;Bhaiksuki Vowel Sign Ai +\U00011C3A;Bhaiksuki Vowel Sign O +\U00011C3B;Bhaiksuki Vowel Sign Au +\U00011C3C;Bhaiksuki Sign Candrabindu +\U00011C3D;Bhaiksuki Sign Anusvara +\U00011C3E;Bhaiksuki Sign Visarga +\U00011C3F;Bhaiksuki Sign Virama +\U00011C40;Bhaiksuki Sign Avagraha +\U00011C41;Bhaiksuki Danda +\U00011C42;Bhaiksuki Double Danda +\U00011C43;Bhaiksuki Word Separator +\U00011C44;Bhaiksuki Gap Filler-1 +\U00011C45;Bhaiksuki Gap Filler-2 +\U00011C50;Bhaiksuki Digit Zero +\U00011C51;Bhaiksuki Digit One +\U00011C52;Bhaiksuki Digit Two +\U00011C53;Bhaiksuki Digit Three +\U00011C54;Bhaiksuki Digit Four +\U00011C55;Bhaiksuki Digit Five +\U00011C56;Bhaiksuki Digit Six +\U00011C57;Bhaiksuki Digit Seven +\U00011C58;Bhaiksuki Digit Eight +\U00011C59;Bhaiksuki Digit Nine +\U00011C5A;Bhaiksuki Number One +\U00011C5B;Bhaiksuki Number Two +\U00011C5C;Bhaiksuki Number Three +\U00011C5D;Bhaiksuki Number Four +\U00011C5E;Bhaiksuki Number Five +\U00011C5F;Bhaiksuki Number Six +\U00011C60;Bhaiksuki Number Seven +\U00011C61;Bhaiksuki Number Eight +\U00011C62;Bhaiksuki Number Nine +\U00011C63;Bhaiksuki Number Ten +\U00011C64;Bhaiksuki Number Twenty +\U00011C65;Bhaiksuki Number Thirty +\U00011C66;Bhaiksuki Number Forty +\U00011C67;Bhaiksuki Number Fifty +\U00011C68;Bhaiksuki Number Sixty +\U00011C69;Bhaiksuki Number Seventy +\U00011C6A;Bhaiksuki Number Eighty +\U00011C6B;Bhaiksuki Number Ninety +\U00011C6C;Bhaiksuki Hundreds Unit Mark +\U00011C70;Marchen Head Mark +\U00011C71;Marchen Mark Shad +\U00011C72;Marchen Letter Ka +\U00011C73;Marchen Letter Kha +\U00011C74;Marchen Letter Ga +\U00011C75;Marchen Letter Nga +\U00011C76;Marchen Letter Ca +\U00011C77;Marchen Letter Cha +\U00011C78;Marchen Letter Ja +\U00011C79;Marchen Letter Nya +\U00011C7A;Marchen Letter Ta +\U00011C7B;Marchen Letter Tha +\U00011C7C;Marchen Letter Da +\U00011C7D;Marchen Letter Na +\U00011C7E;Marchen Letter Pa +\U00011C7F;Marchen Letter Pha +\U00011C80;Marchen Letter Ba +\U00011C81;Marchen Letter Ma +\U00011C82;Marchen Letter Tsa +\U00011C83;Marchen Letter Tsha +\U00011C84;Marchen Letter Dza +\U00011C85;Marchen Letter Wa +\U00011C86;Marchen Letter Zha +\U00011C87;Marchen Letter Za +\U00011C88;Marchen Letter -A +\U00011C89;Marchen Letter Ya +\U00011C8A;Marchen Letter Ra +\U00011C8B;Marchen Letter La +\U00011C8C;Marchen Letter Sha +\U00011C8D;Marchen Letter Sa +\U00011C8E;Marchen Letter Ha +\U00011C8F;Marchen Letter A +\U00011C92;Marchen Subjoined Letter Ka +\U00011C93;Marchen Subjoined Letter Kha +\U00011C94;Marchen Subjoined Letter Ga +\U00011C95;Marchen Subjoined Letter Nga +\U00011C96;Marchen Subjoined Letter Ca +\U00011C97;Marchen Subjoined Letter Cha +\U00011C98;Marchen Subjoined Letter Ja +\U00011C99;Marchen Subjoined Letter Nya +\U00011C9A;Marchen Subjoined Letter Ta +\U00011C9B;Marchen Subjoined Letter Tha +\U00011C9C;Marchen Subjoined Letter Da +\U00011C9D;Marchen Subjoined Letter Na +\U00011C9E;Marchen Subjoined Letter Pa +\U00011C9F;Marchen Subjoined Letter Pha +\U00011CA0;Marchen Subjoined Letter Ba +\U00011CA1;Marchen Subjoined Letter Ma +\U00011CA2;Marchen Subjoined Letter Tsa +\U00011CA3;Marchen Subjoined Letter Tsha +\U00011CA4;Marchen Subjoined Letter Dza +\U00011CA5;Marchen Subjoined Letter Wa +\U00011CA6;Marchen Subjoined Letter Zha +\U00011CA7;Marchen Subjoined Letter Za +\U00011CA9;Marchen Subjoined Letter Ya +\U00011CAA;Marchen Subjoined Letter Ra +\U00011CAB;Marchen Subjoined Letter La +\U00011CAC;Marchen Subjoined Letter Sha +\U00011CAD;Marchen Subjoined Letter Sa +\U00011CAE;Marchen Subjoined Letter Ha +\U00011CAF;Marchen Subjoined Letter A +\U00011CB0;Marchen Vowel Sign Aa +\U00011CB1;Marchen Vowel Sign I +\U00011CB2;Marchen Vowel Sign U +\U00011CB3;Marchen Vowel Sign E +\U00011CB4;Marchen Vowel Sign O +\U00011CB5;Marchen Sign Anusvara +\U00011CB6;Marchen Sign Candrabindu +\U00011D00;Masaram Gondi Letter A +\U00011D01;Masaram Gondi Letter Aa +\U00011D02;Masaram Gondi Letter I +\U00011D03;Masaram Gondi Letter Ii +\U00011D04;Masaram Gondi Letter U +\U00011D05;Masaram Gondi Letter Uu +\U00011D06;Masaram Gondi Letter E +\U00011D08;Masaram Gondi Letter Ai +\U00011D09;Masaram Gondi Letter O +\U00011D0B;Masaram Gondi Letter Au +\U00011D0C;Masaram Gondi Letter Ka +\U00011D0D;Masaram Gondi Letter Kha +\U00011D0E;Masaram Gondi Letter Ga +\U00011D0F;Masaram Gondi Letter Gha +\U00011D10;Masaram Gondi Letter Nga +\U00011D11;Masaram Gondi Letter Ca +\U00011D12;Masaram Gondi Letter Cha +\U00011D13;Masaram Gondi Letter Ja +\U00011D14;Masaram Gondi Letter Jha +\U00011D15;Masaram Gondi Letter Nya +\U00011D16;Masaram Gondi Letter Tta +\U00011D17;Masaram Gondi Letter Ttha +\U00011D18;Masaram Gondi Letter Dda +\U00011D19;Masaram Gondi Letter Ddha +\U00011D1A;Masaram Gondi Letter Nna +\U00011D1B;Masaram Gondi Letter Ta +\U00011D1C;Masaram Gondi Letter Tha +\U00011D1D;Masaram Gondi Letter Da +\U00011D1E;Masaram Gondi Letter Dha +\U00011D1F;Masaram Gondi Letter Na +\U00011D20;Masaram Gondi Letter Pa +\U00011D21;Masaram Gondi Letter Pha +\U00011D22;Masaram Gondi Letter Ba +\U00011D23;Masaram Gondi Letter Bha +\U00011D24;Masaram Gondi Letter Ma +\U00011D25;Masaram Gondi Letter Ya +\U00011D26;Masaram Gondi Letter Ra +\U00011D27;Masaram Gondi Letter La +\U00011D28;Masaram Gondi Letter Va +\U00011D29;Masaram Gondi Letter Sha +\U00011D2A;Masaram Gondi Letter Ssa +\U00011D2B;Masaram Gondi Letter Sa +\U00011D2C;Masaram Gondi Letter Ha +\U00011D2D;Masaram Gondi Letter Lla +\U00011D2E;Masaram Gondi Letter Kssa +\U00011D2F;Masaram Gondi Letter Jnya +\U00011D30;Masaram Gondi Letter Tra +\U00011D31;Masaram Gondi Vowel Sign Aa +\U00011D32;Masaram Gondi Vowel Sign I +\U00011D33;Masaram Gondi Vowel Sign Ii +\U00011D34;Masaram Gondi Vowel Sign U +\U00011D35;Masaram Gondi Vowel Sign Uu +\U00011D36;Masaram Gondi Vowel Sign Vocalic R +\U00011D3A;Masaram Gondi Vowel Sign E +\U00011D3C;Masaram Gondi Vowel Sign Ai +\U00011D3D;Masaram Gondi Vowel Sign O +\U00011D3F;Masaram Gondi Vowel Sign Au +\U00011D40;Masaram Gondi Sign Anusvara +\U00011D41;Masaram Gondi Sign Visarga +\U00011D42;Masaram Gondi Sign Nukta +\U00011D43;Masaram Gondi Sign Candra +\U00011D44;Masaram Gondi Sign Halanta +\U00011D45;Masaram Gondi Virama +\U00011D46;Masaram Gondi Repha +\U00011D47;Masaram Gondi Ra-Kara +\U00011D50;Masaram Gondi Digit Zero +\U00011D51;Masaram Gondi Digit One +\U00011D52;Masaram Gondi Digit Two +\U00011D53;Masaram Gondi Digit Three +\U00011D54;Masaram Gondi Digit Four +\U00011D55;Masaram Gondi Digit Five +\U00011D56;Masaram Gondi Digit Six +\U00011D57;Masaram Gondi Digit Seven +\U00011D58;Masaram Gondi Digit Eight +\U00011D59;Masaram Gondi Digit Nine +\U00011D60;Gunjala Gondi Letter A +\U00011D61;Gunjala Gondi Letter Aa +\U00011D62;Gunjala Gondi Letter I +\U00011D63;Gunjala Gondi Letter Ii +\U00011D64;Gunjala Gondi Letter U +\U00011D65;Gunjala Gondi Letter Uu +\U00011D67;Gunjala Gondi Letter Ee +\U00011D68;Gunjala Gondi Letter Ai +\U00011D6A;Gunjala Gondi Letter Oo +\U00011D6B;Gunjala Gondi Letter Au +\U00011D6C;Gunjala Gondi Letter Ya +\U00011D6D;Gunjala Gondi Letter Va +\U00011D6E;Gunjala Gondi Letter Ba +\U00011D6F;Gunjala Gondi Letter Bha +\U00011D70;Gunjala Gondi Letter Ma +\U00011D71;Gunjala Gondi Letter Ka +\U00011D72;Gunjala Gondi Letter Kha +\U00011D73;Gunjala Gondi Letter Ta +\U00011D74;Gunjala Gondi Letter Tha +\U00011D75;Gunjala Gondi Letter La +\U00011D76;Gunjala Gondi Letter Ga +\U00011D77;Gunjala Gondi Letter Gha +\U00011D78;Gunjala Gondi Letter Da +\U00011D79;Gunjala Gondi Letter Dha +\U00011D7A;Gunjala Gondi Letter Na +\U00011D7B;Gunjala Gondi Letter Ca +\U00011D7C;Gunjala Gondi Letter Cha +\U00011D7D;Gunjala Gondi Letter Tta +\U00011D7E;Gunjala Gondi Letter Ttha +\U00011D7F;Gunjala Gondi Letter Lla +\U00011D80;Gunjala Gondi Letter Ja +\U00011D81;Gunjala Gondi Letter Jha +\U00011D82;Gunjala Gondi Letter Dda +\U00011D83;Gunjala Gondi Letter Ddha +\U00011D84;Gunjala Gondi Letter Nga +\U00011D85;Gunjala Gondi Letter Pa +\U00011D86;Gunjala Gondi Letter Pha +\U00011D87;Gunjala Gondi Letter Ha +\U00011D88;Gunjala Gondi Letter Ra +\U00011D89;Gunjala Gondi Letter Sa +\U00011D8A;Gunjala Gondi Vowel Sign Aa +\U00011D8B;Gunjala Gondi Vowel Sign I +\U00011D8C;Gunjala Gondi Vowel Sign Ii +\U00011D8D;Gunjala Gondi Vowel Sign U +\U00011D8E;Gunjala Gondi Vowel Sign Uu +\U00011D90;Gunjala Gondi Vowel Sign Ee +\U00011D91;Gunjala Gondi Vowel Sign Ai +\U00011D93;Gunjala Gondi Vowel Sign Oo +\U00011D94;Gunjala Gondi Vowel Sign Au +\U00011D95;Gunjala Gondi Sign Anusvara +\U00011D96;Gunjala Gondi Sign Visarga +\U00011D97;Gunjala Gondi Virama +\U00011D98;Gunjala Gondi Om +\U00011DA0;Gunjala Gondi Digit Zero +\U00011DA1;Gunjala Gondi Digit One +\U00011DA2;Gunjala Gondi Digit Two +\U00011DA3;Gunjala Gondi Digit Three +\U00011DA4;Gunjala Gondi Digit Four +\U00011DA5;Gunjala Gondi Digit Five +\U00011DA6;Gunjala Gondi Digit Six +\U00011DA7;Gunjala Gondi Digit Seven +\U00011DA8;Gunjala Gondi Digit Eight +\U00011DA9;Gunjala Gondi Digit Nine +\U00011EE0;Makasar Letter Ka +\U00011EE1;Makasar Letter Ga +\U00011EE2;Makasar Letter Nga +\U00011EE3;Makasar Letter Pa +\U00011EE4;Makasar Letter Ba +\U00011EE5;Makasar Letter Ma +\U00011EE6;Makasar Letter Ta +\U00011EE7;Makasar Letter Da +\U00011EE8;Makasar Letter Na +\U00011EE9;Makasar Letter Ca +\U00011EEA;Makasar Letter Ja +\U00011EEB;Makasar Letter Nya +\U00011EEC;Makasar Letter Ya +\U00011EED;Makasar Letter Ra +\U00011EEE;Makasar Letter La +\U00011EEF;Makasar Letter Va +\U00011EF0;Makasar Letter Sa +\U00011EF1;Makasar Letter A +\U00011EF2;Makasar Angka +\U00011EF3;Makasar Vowel Sign I +\U00011EF4;Makasar Vowel Sign U +\U00011EF5;Makasar Vowel Sign E +\U00011EF6;Makasar Vowel Sign O +\U00011EF7;Makasar Passimbang +\U00011EF8;Makasar End Of Section +\U00011F00;Kawi Sign Candrabindu +\U00011F01;Kawi Sign Anusvara +\U00011F02;Kawi Sign Repha +\U00011F03;Kawi Sign Visarga +\U00011F04;Kawi Letter A +\U00011F05;Kawi Letter Aa +\U00011F06;Kawi Letter I +\U00011F07;Kawi Letter Ii +\U00011F08;Kawi Letter U +\U00011F09;Kawi Letter Uu +\U00011F0A;Kawi Letter Vocalic R +\U00011F0B;Kawi Letter Vocalic Rr +\U00011F0C;Kawi Letter Vocalic L +\U00011F0D;Kawi Letter Vocalic Ll +\U00011F0E;Kawi Letter E +\U00011F0F;Kawi Letter Ai +\U00011F10;Kawi Letter O +\U00011F12;Kawi Letter Ka +\U00011F13;Kawi Letter Kha +\U00011F14;Kawi Letter Ga +\U00011F15;Kawi Letter Gha +\U00011F16;Kawi Letter Nga +\U00011F17;Kawi Letter Ca +\U00011F18;Kawi Letter Cha +\U00011F19;Kawi Letter Ja +\U00011F1A;Kawi Letter Jha +\U00011F1B;Kawi Letter Nya +\U00011F1C;Kawi Letter Tta +\U00011F1D;Kawi Letter Ttha +\U00011F1E;Kawi Letter Dda +\U00011F1F;Kawi Letter Ddha +\U00011F20;Kawi Letter Nna +\U00011F21;Kawi Letter Ta +\U00011F22;Kawi Letter Tha +\U00011F23;Kawi Letter Da +\U00011F24;Kawi Letter Dha +\U00011F25;Kawi Letter Na +\U00011F26;Kawi Letter Pa +\U00011F27;Kawi Letter Pha +\U00011F28;Kawi Letter Ba +\U00011F29;Kawi Letter Bha +\U00011F2A;Kawi Letter Ma +\U00011F2B;Kawi Letter Ya +\U00011F2C;Kawi Letter Ra +\U00011F2D;Kawi Letter La +\U00011F2E;Kawi Letter Wa +\U00011F2F;Kawi Letter Sha +\U00011F30;Kawi Letter Ssa +\U00011F31;Kawi Letter Sa +\U00011F32;Kawi Letter Ha +\U00011F33;Kawi Letter Jnya +\U00011F34;Kawi Vowel Sign Aa +\U00011F35;Kawi Vowel Sign Alternate Aa +\U00011F36;Kawi Vowel Sign I +\U00011F37;Kawi Vowel Sign Ii +\U00011F38;Kawi Vowel Sign U +\U00011F39;Kawi Vowel Sign Uu +\U00011F3A;Kawi Vowel Sign Vocalic R +\U00011F3E;Kawi Vowel Sign E +\U00011F3F;Kawi Vowel Sign Ai +\U00011F40;Kawi Vowel Sign Eu +\U00011F41;Kawi Sign Killer +\U00011F42;Kawi Conjoiner +\U00011F43;Kawi Danda +\U00011F44;Kawi Double Danda +\U00011F45;Kawi Punctuation Section Marker +\U00011F46;Kawi Punctuation Alternate Section Marker +\U00011F47;Kawi Punctuation Flower +\U00011F48;Kawi Punctuation Space Filler +\U00011F49;Kawi Punctuation Dot +\U00011F4A;Kawi Punctuation Double Dot +\U00011F4B;Kawi Punctuation Triple Dot +\U00011F4C;Kawi Punctuation Circle +\U00011F4D;Kawi Punctuation Filled Circle +\U00011F4E;Kawi Punctuation Spiral +\U00011F4F;Kawi Punctuation Closing Spiral +\U00011F50;Kawi Digit Zero +\U00011F51;Kawi Digit One +\U00011F52;Kawi Digit Two +\U00011F53;Kawi Digit Three +\U00011F54;Kawi Digit Four +\U00011F55;Kawi Digit Five +\U00011F56;Kawi Digit Six +\U00011F57;Kawi Digit Seven +\U00011F58;Kawi Digit Eight +\U00011F59;Kawi Digit Nine +\U00011FB0;Lisu Letter Yha +\U00011FC0;Tamil Fraction One Three-Hundred-And-Twentieth +\U00011FC1;Tamil Fraction One One-Hundred-And-Sixtieth +\U00011FC2;Tamil Fraction One Eightieth +\U00011FC3;Tamil Fraction One Sixty-Fourth +\U00011FC4;Tamil Fraction One Fortieth +\U00011FC5;Tamil Fraction One Thirty-Second +\U00011FC6;Tamil Fraction Three Eightieths +\U00011FC7;Tamil Fraction Three Sixty-Fourths +\U00011FC8;Tamil Fraction One Twentieth +\U00011FC9;Tamil Fraction One Sixteenth-1 +\U00011FCA;Tamil Fraction One Sixteenth-2 +\U00011FCB;Tamil Fraction One Tenth +\U00011FCC;Tamil Fraction One Eighth +\U00011FCD;Tamil Fraction Three Twentieths +\U00011FCE;Tamil Fraction Three Sixteenths +\U00011FCF;Tamil Fraction One Fifth +\U00011FD0;Tamil Fraction One Quarter +\U00011FD1;Tamil Fraction One Half-1 +\U00011FD2;Tamil Fraction One Half-2 +\U00011FD3;Tamil Fraction Three Quarters +\U00011FD4;Tamil Fraction Downscaling Factor Kiizh +\U00011FD5;Tamil Sign Nel +\U00011FD6;Tamil Sign Cevitu +\U00011FD7;Tamil Sign Aazhaakku +\U00011FD8;Tamil Sign Uzhakku +\U00011FD9;Tamil Sign Muuvuzhakku +\U00011FDA;Tamil Sign Kuruni +\U00011FDB;Tamil Sign Pathakku +\U00011FDC;Tamil Sign Mukkuruni +\U00011FDD;Tamil Sign Kaacu +\U00011FDE;Tamil Sign Panam +\U00011FDF;Tamil Sign Pon +\U00011FE0;Tamil Sign Varaakan +\U00011FE1;Tamil Sign Paaram +\U00011FE2;Tamil Sign Kuzhi +\U00011FE3;Tamil Sign Veli +\U00011FE4;Tamil Wet Cultivation Sign +\U00011FE5;Tamil Dry Cultivation Sign +\U00011FE6;Tamil Land Sign +\U00011FE7;Tamil Salt Pan Sign +\U00011FE8;Tamil Traditional Credit Sign +\U00011FE9;Tamil Traditional Number Sign +\U00011FEA;Tamil Current Sign +\U00011FEB;Tamil And Odd Sign +\U00011FEC;Tamil Spent Sign +\U00011FED;Tamil Total Sign +\U00011FEE;Tamil In Possession Sign +\U00011FEF;Tamil Starting From Sign +\U00011FF0;Tamil Sign Muthaliya +\U00011FF1;Tamil Sign Vakaiyaraa +\U00011FFF;Tamil Punctuation End Of Text +\U00012000;Cuneiform Sign A +\U00012001;Cuneiform Sign A Times A +\U00012002;Cuneiform Sign A Times Bad +\U00012003;Cuneiform Sign A Times Gan2 Tenu +\U00012004;Cuneiform Sign A Times Ha +\U00012005;Cuneiform Sign A Times Igi +\U00012006;Cuneiform Sign A Times Lagar Gunu +\U00012007;Cuneiform Sign A Times Mush +\U00012008;Cuneiform Sign A Times Sag +\U00012009;Cuneiform Sign A2 +\U0001200A;Cuneiform Sign Ab +\U0001200B;Cuneiform Sign Ab Times Ash2 +\U0001200C;Cuneiform Sign Ab Times Dun3 Gunu +\U0001200D;Cuneiform Sign Ab Times Gal +\U0001200E;Cuneiform Sign Ab Times Gan2 Tenu +\U0001200F;Cuneiform Sign Ab Times Ha +\U00012010;Cuneiform Sign Ab Times Igi Gunu +\U00012011;Cuneiform Sign Ab Times Imin +\U00012012;Cuneiform Sign Ab Times Lagab +\U00012013;Cuneiform Sign Ab Times Shesh +\U00012014;Cuneiform Sign Ab Times U Plus U Plus U +\U00012015;Cuneiform Sign Ab Gunu +\U00012016;Cuneiform Sign Ab2 +\U00012017;Cuneiform Sign Ab2 Times Balag +\U00012018;Cuneiform Sign Ab2 Times Gan2 Tenu +\U00012019;Cuneiform Sign Ab2 Times Me Plus En +\U0001201A;Cuneiform Sign Ab2 Times Sha3 +\U0001201B;Cuneiform Sign Ab2 Times Tak4 +\U0001201C;Cuneiform Sign Ad +\U0001201D;Cuneiform Sign Ak +\U0001201E;Cuneiform Sign Ak Times Erin2 +\U0001201F;Cuneiform Sign Ak Times Shita Plus Gish +\U00012020;Cuneiform Sign Al +\U00012021;Cuneiform Sign Al Times Al +\U00012022;Cuneiform Sign Al Times Dim2 +\U00012023;Cuneiform Sign Al Times Gish +\U00012024;Cuneiform Sign Al Times Ha +\U00012025;Cuneiform Sign Al Times Kad3 +\U00012026;Cuneiform Sign Al Times Ki +\U00012027;Cuneiform Sign Al Times She +\U00012028;Cuneiform Sign Al Times Ush +\U00012029;Cuneiform Sign Alan +\U0001202A;Cuneiform Sign Aleph +\U0001202B;Cuneiform Sign Amar +\U0001202C;Cuneiform Sign Amar Times She +\U0001202D;Cuneiform Sign An +\U0001202E;Cuneiform Sign An Over An +\U0001202F;Cuneiform Sign An Three Times +\U00012030;Cuneiform Sign An Plus Naga Opposing An Plus Naga +\U00012031;Cuneiform Sign An Plus Naga Squared +\U00012032;Cuneiform Sign Anshe +\U00012033;Cuneiform Sign Apin +\U00012034;Cuneiform Sign Arad +\U00012035;Cuneiform Sign Arad Times Kur +\U00012036;Cuneiform Sign Arkab +\U00012037;Cuneiform Sign Asal2 +\U00012038;Cuneiform Sign Ash +\U00012039;Cuneiform Sign Ash Zida Tenu +\U0001203A;Cuneiform Sign Ash Kaba Tenu +\U0001203B;Cuneiform Sign Ash Over Ash Tug2 Over Tug2 Tug2 Over Tug2 Pap +\U0001203C;Cuneiform Sign Ash Over Ash Over Ash +\U0001203D;Cuneiform Sign Ash Over Ash Over Ash Crossing Ash Over Ash Over Ash +\U0001203E;Cuneiform Sign Ash2 +\U0001203F;Cuneiform Sign Ashgab +\U00012040;Cuneiform Sign Ba +\U00012041;Cuneiform Sign Bad +\U00012042;Cuneiform Sign Bag3 +\U00012043;Cuneiform Sign Bahar2 +\U00012044;Cuneiform Sign Bal +\U00012045;Cuneiform Sign Bal Over Bal +\U00012046;Cuneiform Sign Balag +\U00012047;Cuneiform Sign Bar +\U00012048;Cuneiform Sign Bara2 +\U00012049;Cuneiform Sign Bi +\U0001204A;Cuneiform Sign Bi Times A +\U0001204B;Cuneiform Sign Bi Times Gar +\U0001204C;Cuneiform Sign Bi Times Igi Gunu +\U0001204D;Cuneiform Sign Bu +\U0001204E;Cuneiform Sign Bu Over Bu Ab +\U0001204F;Cuneiform Sign Bu Over Bu Un +\U00012050;Cuneiform Sign Bu Crossing Bu +\U00012051;Cuneiform Sign Bulug +\U00012052;Cuneiform Sign Bulug Over Bulug +\U00012053;Cuneiform Sign Bur +\U00012054;Cuneiform Sign Bur2 +\U00012055;Cuneiform Sign Da +\U00012056;Cuneiform Sign Dag +\U00012057;Cuneiform Sign Dag Kisim5 Times A Plus Mash +\U00012058;Cuneiform Sign Dag Kisim5 Times Amar +\U00012059;Cuneiform Sign Dag Kisim5 Times Balag +\U0001205A;Cuneiform Sign Dag Kisim5 Times Bi +\U0001205B;Cuneiform Sign Dag Kisim5 Times Ga +\U0001205C;Cuneiform Sign Dag Kisim5 Times Ga Plus Mash +\U0001205D;Cuneiform Sign Dag Kisim5 Times Gi +\U0001205E;Cuneiform Sign Dag Kisim5 Times Gir2 +\U0001205F;Cuneiform Sign Dag Kisim5 Times Gud +\U00012060;Cuneiform Sign Dag Kisim5 Times Ha +\U00012061;Cuneiform Sign Dag Kisim5 Times Ir +\U00012062;Cuneiform Sign Dag Kisim5 Times Ir Plus Lu +\U00012063;Cuneiform Sign Dag Kisim5 Times Kak +\U00012064;Cuneiform Sign Dag Kisim5 Times La +\U00012065;Cuneiform Sign Dag Kisim5 Times Lu +\U00012066;Cuneiform Sign Dag Kisim5 Times Lu Plus Mash2 +\U00012067;Cuneiform Sign Dag Kisim5 Times Lum +\U00012068;Cuneiform Sign Dag Kisim5 Times Ne +\U00012069;Cuneiform Sign Dag Kisim5 Times Pap Plus Pap +\U0001206A;Cuneiform Sign Dag Kisim5 Times Si +\U0001206B;Cuneiform Sign Dag Kisim5 Times Tak4 +\U0001206C;Cuneiform Sign Dag Kisim5 Times U2 Plus Gir2 +\U0001206D;Cuneiform Sign Dag Kisim5 Times Ush +\U0001206E;Cuneiform Sign Dam +\U0001206F;Cuneiform Sign Dar +\U00012070;Cuneiform Sign Dara3 +\U00012071;Cuneiform Sign Dara4 +\U00012072;Cuneiform Sign Di +\U00012073;Cuneiform Sign Dib +\U00012074;Cuneiform Sign Dim +\U00012075;Cuneiform Sign Dim Times She +\U00012076;Cuneiform Sign Dim2 +\U00012077;Cuneiform Sign Din +\U00012078;Cuneiform Sign Din Kaskal U Gunu Dish +\U00012079;Cuneiform Sign Dish +\U0001207A;Cuneiform Sign Du +\U0001207B;Cuneiform Sign Du Over Du +\U0001207C;Cuneiform Sign Du Gunu +\U0001207D;Cuneiform Sign Du Sheshig +\U0001207E;Cuneiform Sign Dub +\U0001207F;Cuneiform Sign Dub Times Esh2 +\U00012080;Cuneiform Sign Dub2 +\U00012081;Cuneiform Sign Dug +\U00012082;Cuneiform Sign Dugud +\U00012083;Cuneiform Sign Duh +\U00012084;Cuneiform Sign Dun +\U00012085;Cuneiform Sign Dun3 +\U00012086;Cuneiform Sign Dun3 Gunu +\U00012087;Cuneiform Sign Dun3 Gunu Gunu +\U00012088;Cuneiform Sign Dun4 +\U00012089;Cuneiform Sign Dur2 +\U0001208A;Cuneiform Sign E +\U0001208B;Cuneiform Sign E Times Pap +\U0001208C;Cuneiform Sign E Over E Nun Over Nun +\U0001208D;Cuneiform Sign E2 +\U0001208E;Cuneiform Sign E2 Times A Plus Ha Plus Da +\U0001208F;Cuneiform Sign E2 Times Gar +\U00012090;Cuneiform Sign E2 Times Mi +\U00012091;Cuneiform Sign E2 Times Sal +\U00012092;Cuneiform Sign E2 Times She +\U00012093;Cuneiform Sign E2 Times U +\U00012094;Cuneiform Sign Edin +\U00012095;Cuneiform Sign Egir +\U00012096;Cuneiform Sign El +\U00012097;Cuneiform Sign En +\U00012098;Cuneiform Sign En Times Gan2 +\U00012099;Cuneiform Sign En Times Gan2 Tenu +\U0001209A;Cuneiform Sign En Times Me +\U0001209B;Cuneiform Sign En Crossing En +\U0001209C;Cuneiform Sign En Opposing En +\U0001209D;Cuneiform Sign En Squared +\U0001209E;Cuneiform Sign Eren +\U0001209F;Cuneiform Sign Erin2 +\U000120A0;Cuneiform Sign Esh2 +\U000120A1;Cuneiform Sign Ezen +\U000120A2;Cuneiform Sign Ezen Times A +\U000120A3;Cuneiform Sign Ezen Times A Plus Lal +\U000120A4;Cuneiform Sign Ezen Times A Plus Lal Times Lal +\U000120A5;Cuneiform Sign Ezen Times An +\U000120A6;Cuneiform Sign Ezen Times Bad +\U000120A7;Cuneiform Sign Ezen Times Dun3 Gunu +\U000120A8;Cuneiform Sign Ezen Times Dun3 Gunu Gunu +\U000120A9;Cuneiform Sign Ezen Times Ha +\U000120AA;Cuneiform Sign Ezen Times Ha Gunu +\U000120AB;Cuneiform Sign Ezen Times Igi Gunu +\U000120AC;Cuneiform Sign Ezen Times Kaskal +\U000120AD;Cuneiform Sign Ezen Times Kaskal Squared +\U000120AE;Cuneiform Sign Ezen Times Ku3 +\U000120AF;Cuneiform Sign Ezen Times La +\U000120B0;Cuneiform Sign Ezen Times Lal Times Lal +\U000120B1;Cuneiform Sign Ezen Times Li +\U000120B2;Cuneiform Sign Ezen Times Lu +\U000120B3;Cuneiform Sign Ezen Times U2 +\U000120B4;Cuneiform Sign Ezen Times Ud +\U000120B5;Cuneiform Sign Ga +\U000120B6;Cuneiform Sign Ga Gunu +\U000120B7;Cuneiform Sign Ga2 +\U000120B8;Cuneiform Sign Ga2 Times A Plus Da Plus Ha +\U000120B9;Cuneiform Sign Ga2 Times A Plus Ha +\U000120BA;Cuneiform Sign Ga2 Times A Plus Igi +\U000120BB;Cuneiform Sign Ga2 Times Ab2 Tenu Plus Tab +\U000120BC;Cuneiform Sign Ga2 Times An +\U000120BD;Cuneiform Sign Ga2 Times Ash +\U000120BE;Cuneiform Sign Ga2 Times Ash2 Plus Gal +\U000120BF;Cuneiform Sign Ga2 Times Bad +\U000120C0;Cuneiform Sign Ga2 Times Bar Plus Ra +\U000120C1;Cuneiform Sign Ga2 Times Bur +\U000120C2;Cuneiform Sign Ga2 Times Bur Plus Ra +\U000120C3;Cuneiform Sign Ga2 Times Da +\U000120C4;Cuneiform Sign Ga2 Times Di +\U000120C5;Cuneiform Sign Ga2 Times Dim Times She +\U000120C6;Cuneiform Sign Ga2 Times Dub +\U000120C7;Cuneiform Sign Ga2 Times El +\U000120C8;Cuneiform Sign Ga2 Times El Plus La +\U000120C9;Cuneiform Sign Ga2 Times En +\U000120CA;Cuneiform Sign Ga2 Times En Times Gan2 Tenu +\U000120CB;Cuneiform Sign Ga2 Times Gan2 Tenu +\U000120CC;Cuneiform Sign Ga2 Times Gar +\U000120CD;Cuneiform Sign Ga2 Times Gi +\U000120CE;Cuneiform Sign Ga2 Times Gi4 +\U000120CF;Cuneiform Sign Ga2 Times Gi4 Plus A +\U000120D0;Cuneiform Sign Ga2 Times Gir2 Plus Su +\U000120D1;Cuneiform Sign Ga2 Times Ha Plus Lu Plus Esh2 +\U000120D2;Cuneiform Sign Ga2 Times Hal +\U000120D3;Cuneiform Sign Ga2 Times Hal Plus La +\U000120D4;Cuneiform Sign Ga2 Times Hi Plus Li +\U000120D5;Cuneiform Sign Ga2 Times Hub2 +\U000120D6;Cuneiform Sign Ga2 Times Igi Gunu +\U000120D7;Cuneiform Sign Ga2 Times Ish Plus Hu Plus Ash +\U000120D8;Cuneiform Sign Ga2 Times Kak +\U000120D9;Cuneiform Sign Ga2 Times Kaskal +\U000120DA;Cuneiform Sign Ga2 Times Kid +\U000120DB;Cuneiform Sign Ga2 Times Kid Plus Lal +\U000120DC;Cuneiform Sign Ga2 Times Ku3 Plus An +\U000120DD;Cuneiform Sign Ga2 Times La +\U000120DE;Cuneiform Sign Ga2 Times Me Plus En +\U000120DF;Cuneiform Sign Ga2 Times Mi +\U000120E0;Cuneiform Sign Ga2 Times Nun +\U000120E1;Cuneiform Sign Ga2 Times Nun Over Nun +\U000120E2;Cuneiform Sign Ga2 Times Pa +\U000120E3;Cuneiform Sign Ga2 Times Sal +\U000120E4;Cuneiform Sign Ga2 Times Sar +\U000120E5;Cuneiform Sign Ga2 Times She +\U000120E6;Cuneiform Sign Ga2 Times She Plus Tur +\U000120E7;Cuneiform Sign Ga2 Times Shid +\U000120E8;Cuneiform Sign Ga2 Times Sum +\U000120E9;Cuneiform Sign Ga2 Times Tak4 +\U000120EA;Cuneiform Sign Ga2 Times U +\U000120EB;Cuneiform Sign Ga2 Times Ud +\U000120EC;Cuneiform Sign Ga2 Times Ud Plus Du +\U000120ED;Cuneiform Sign Ga2 Over Ga2 +\U000120EE;Cuneiform Sign Gaba +\U000120EF;Cuneiform Sign Gaba Crossing Gaba +\U000120F0;Cuneiform Sign Gad +\U000120F1;Cuneiform Sign Gad Over Gad Gar Over Gar +\U000120F2;Cuneiform Sign Gal +\U000120F3;Cuneiform Sign Gal Gad Over Gad Gar Over Gar +\U000120F4;Cuneiform Sign Galam +\U000120F5;Cuneiform Sign Gam +\U000120F6;Cuneiform Sign Gan +\U000120F7;Cuneiform Sign Gan2 +\U000120F8;Cuneiform Sign Gan2 Tenu +\U000120F9;Cuneiform Sign Gan2 Over Gan2 +\U000120FA;Cuneiform Sign Gan2 Crossing Gan2 +\U000120FB;Cuneiform Sign Gar +\U000120FC;Cuneiform Sign Gar3 +\U000120FD;Cuneiform Sign Gashan +\U000120FE;Cuneiform Sign Geshtin +\U000120FF;Cuneiform Sign Geshtin Times Kur +\U00012100;Cuneiform Sign Gi +\U00012101;Cuneiform Sign Gi Times E +\U00012102;Cuneiform Sign Gi Times U +\U00012103;Cuneiform Sign Gi Crossing Gi +\U00012104;Cuneiform Sign Gi4 +\U00012105;Cuneiform Sign Gi4 Over Gi4 +\U00012106;Cuneiform Sign Gi4 Crossing Gi4 +\U00012107;Cuneiform Sign Gidim +\U00012108;Cuneiform Sign Gir2 +\U00012109;Cuneiform Sign Gir2 Gunu +\U0001210A;Cuneiform Sign Gir3 +\U0001210B;Cuneiform Sign Gir3 Times A Plus Igi +\U0001210C;Cuneiform Sign Gir3 Times Gan2 Tenu +\U0001210D;Cuneiform Sign Gir3 Times Igi +\U0001210E;Cuneiform Sign Gir3 Times Lu Plus Igi +\U0001210F;Cuneiform Sign Gir3 Times Pa +\U00012110;Cuneiform Sign Gisal +\U00012111;Cuneiform Sign Gish +\U00012112;Cuneiform Sign Gish Crossing Gish +\U00012113;Cuneiform Sign Gish Times Bad +\U00012114;Cuneiform Sign Gish Times Tak4 +\U00012115;Cuneiform Sign Gish Tenu +\U00012116;Cuneiform Sign Gu +\U00012117;Cuneiform Sign Gu Crossing Gu +\U00012118;Cuneiform Sign Gu2 +\U00012119;Cuneiform Sign Gu2 Times Kak +\U0001211A;Cuneiform Sign Gu2 Times Kak Times Igi Gunu +\U0001211B;Cuneiform Sign Gu2 Times Nun +\U0001211C;Cuneiform Sign Gu2 Times Sal Plus Tug2 +\U0001211D;Cuneiform Sign Gu2 Gunu +\U0001211E;Cuneiform Sign Gud +\U0001211F;Cuneiform Sign Gud Times A Plus Kur +\U00012120;Cuneiform Sign Gud Times Kur +\U00012121;Cuneiform Sign Gud Over Gud Lugal +\U00012122;Cuneiform Sign Gul +\U00012123;Cuneiform Sign Gum +\U00012124;Cuneiform Sign Gum Times She +\U00012125;Cuneiform Sign Gur +\U00012126;Cuneiform Sign Gur7 +\U00012127;Cuneiform Sign Gurun +\U00012128;Cuneiform Sign Gurush +\U00012129;Cuneiform Sign Ha +\U0001212A;Cuneiform Sign Ha Tenu +\U0001212B;Cuneiform Sign Ha Gunu +\U0001212C;Cuneiform Sign Hal +\U0001212D;Cuneiform Sign Hi +\U0001212E;Cuneiform Sign Hi Times Ash +\U0001212F;Cuneiform Sign Hi Times Ash2 +\U00012130;Cuneiform Sign Hi Times Bad +\U00012131;Cuneiform Sign Hi Times Dish +\U00012132;Cuneiform Sign Hi Times Gad +\U00012133;Cuneiform Sign Hi Times Kin +\U00012134;Cuneiform Sign Hi Times Nun +\U00012135;Cuneiform Sign Hi Times She +\U00012136;Cuneiform Sign Hi Times U +\U00012137;Cuneiform Sign Hu +\U00012138;Cuneiform Sign Hub2 +\U00012139;Cuneiform Sign Hub2 Times An +\U0001213A;Cuneiform Sign Hub2 Times Hal +\U0001213B;Cuneiform Sign Hub2 Times Kaskal +\U0001213C;Cuneiform Sign Hub2 Times Lish +\U0001213D;Cuneiform Sign Hub2 Times Ud +\U0001213E;Cuneiform Sign Hul2 +\U0001213F;Cuneiform Sign I +\U00012140;Cuneiform Sign I A +\U00012141;Cuneiform Sign Ib +\U00012142;Cuneiform Sign Idim +\U00012143;Cuneiform Sign Idim Over Idim Bur +\U00012144;Cuneiform Sign Idim Over Idim Squared +\U00012145;Cuneiform Sign Ig +\U00012146;Cuneiform Sign Igi +\U00012147;Cuneiform Sign Igi Dib +\U00012148;Cuneiform Sign Igi Ri +\U00012149;Cuneiform Sign Igi Over Igi Shir Over Shir Ud Over Ud +\U0001214A;Cuneiform Sign Igi Gunu +\U0001214B;Cuneiform Sign Il +\U0001214C;Cuneiform Sign Il Times Gan2 Tenu +\U0001214D;Cuneiform Sign Il2 +\U0001214E;Cuneiform Sign Im +\U0001214F;Cuneiform Sign Im Times Tak4 +\U00012150;Cuneiform Sign Im Crossing Im +\U00012151;Cuneiform Sign Im Opposing Im +\U00012152;Cuneiform Sign Im Squared +\U00012153;Cuneiform Sign Imin +\U00012154;Cuneiform Sign In +\U00012155;Cuneiform Sign Ir +\U00012156;Cuneiform Sign Ish +\U00012157;Cuneiform Sign Ka +\U00012158;Cuneiform Sign Ka Times A +\U00012159;Cuneiform Sign Ka Times Ad +\U0001215A;Cuneiform Sign Ka Times Ad Plus Ku3 +\U0001215B;Cuneiform Sign Ka Times Ash2 +\U0001215C;Cuneiform Sign Ka Times Bad +\U0001215D;Cuneiform Sign Ka Times Balag +\U0001215E;Cuneiform Sign Ka Times Bar +\U0001215F;Cuneiform Sign Ka Times Bi +\U00012160;Cuneiform Sign Ka Times Erin2 +\U00012161;Cuneiform Sign Ka Times Esh2 +\U00012162;Cuneiform Sign Ka Times Ga +\U00012163;Cuneiform Sign Ka Times Gal +\U00012164;Cuneiform Sign Ka Times Gan2 Tenu +\U00012165;Cuneiform Sign Ka Times Gar +\U00012166;Cuneiform Sign Ka Times Gar Plus Sha3 Plus A +\U00012167;Cuneiform Sign Ka Times Gi +\U00012168;Cuneiform Sign Ka Times Gir2 +\U00012169;Cuneiform Sign Ka Times Gish Plus Sar +\U0001216A;Cuneiform Sign Ka Times Gish Crossing Gish +\U0001216B;Cuneiform Sign Ka Times Gu +\U0001216C;Cuneiform Sign Ka Times Gur7 +\U0001216D;Cuneiform Sign Ka Times Igi +\U0001216E;Cuneiform Sign Ka Times Im +\U0001216F;Cuneiform Sign Ka Times Kak +\U00012170;Cuneiform Sign Ka Times Ki +\U00012171;Cuneiform Sign Ka Times Kid +\U00012172;Cuneiform Sign Ka Times Li +\U00012173;Cuneiform Sign Ka Times Lu +\U00012174;Cuneiform Sign Ka Times Me +\U00012175;Cuneiform Sign Ka Times Me Plus Du +\U00012176;Cuneiform Sign Ka Times Me Plus Gi +\U00012177;Cuneiform Sign Ka Times Me Plus Te +\U00012178;Cuneiform Sign Ka Times Mi +\U00012179;Cuneiform Sign Ka Times Mi Plus Nunuz +\U0001217A;Cuneiform Sign Ka Times Ne +\U0001217B;Cuneiform Sign Ka Times Nun +\U0001217C;Cuneiform Sign Ka Times Pi +\U0001217D;Cuneiform Sign Ka Times Ru +\U0001217E;Cuneiform Sign Ka Times Sa +\U0001217F;Cuneiform Sign Ka Times Sar +\U00012180;Cuneiform Sign Ka Times Sha +\U00012181;Cuneiform Sign Ka Times She +\U00012182;Cuneiform Sign Ka Times Shid +\U00012183;Cuneiform Sign Ka Times Shu +\U00012184;Cuneiform Sign Ka Times Sig +\U00012185;Cuneiform Sign Ka Times Suhur +\U00012186;Cuneiform Sign Ka Times Tar +\U00012187;Cuneiform Sign Ka Times U +\U00012188;Cuneiform Sign Ka Times U2 +\U00012189;Cuneiform Sign Ka Times Ud +\U0001218A;Cuneiform Sign Ka Times Umum Times Pa +\U0001218B;Cuneiform Sign Ka Times Ush +\U0001218C;Cuneiform Sign Ka Times Zi +\U0001218D;Cuneiform Sign Ka2 +\U0001218E;Cuneiform Sign Ka2 Crossing Ka2 +\U0001218F;Cuneiform Sign Kab +\U00012190;Cuneiform Sign Kad2 +\U00012191;Cuneiform Sign Kad3 +\U00012192;Cuneiform Sign Kad4 +\U00012193;Cuneiform Sign Kad5 +\U00012194;Cuneiform Sign Kad5 Over Kad5 +\U00012195;Cuneiform Sign Kak +\U00012196;Cuneiform Sign Kak Times Igi Gunu +\U00012197;Cuneiform Sign Kal +\U00012198;Cuneiform Sign Kal Times Bad +\U00012199;Cuneiform Sign Kal Crossing Kal +\U0001219A;Cuneiform Sign Kam2 +\U0001219B;Cuneiform Sign Kam4 +\U0001219C;Cuneiform Sign Kaskal +\U0001219D;Cuneiform Sign Kaskal Lagab Times U Over Lagab Times U +\U0001219E;Cuneiform Sign Kaskal Over Kaskal Lagab Times U Over Lagab Times U +\U0001219F;Cuneiform Sign Kesh2 +\U000121A0;Cuneiform Sign Ki +\U000121A1;Cuneiform Sign Ki Times Bad +\U000121A2;Cuneiform Sign Ki Times U +\U000121A3;Cuneiform Sign Ki Times Ud +\U000121A4;Cuneiform Sign Kid +\U000121A5;Cuneiform Sign Kin +\U000121A6;Cuneiform Sign Kisal +\U000121A7;Cuneiform Sign Kish +\U000121A8;Cuneiform Sign Kisim5 +\U000121A9;Cuneiform Sign Kisim5 Over Kisim5 +\U000121AA;Cuneiform Sign Ku +\U000121AB;Cuneiform Sign Ku Over Hi Times Ash2 Ku Over Hi Times Ash2 +\U000121AC;Cuneiform Sign Ku3 +\U000121AD;Cuneiform Sign Ku4 +\U000121AE;Cuneiform Sign Ku4 Variant Form +\U000121AF;Cuneiform Sign Ku7 +\U000121B0;Cuneiform Sign Kul +\U000121B1;Cuneiform Sign Kul Gunu +\U000121B2;Cuneiform Sign Kun +\U000121B3;Cuneiform Sign Kur +\U000121B4;Cuneiform Sign Kur Opposing Kur +\U000121B5;Cuneiform Sign Kushu2 +\U000121B6;Cuneiform Sign Kwu318 +\U000121B7;Cuneiform Sign La +\U000121B8;Cuneiform Sign Lagab +\U000121B9;Cuneiform Sign Lagab Times A +\U000121BA;Cuneiform Sign Lagab Times A Plus Da Plus Ha +\U000121BB;Cuneiform Sign Lagab Times A Plus Gar +\U000121BC;Cuneiform Sign Lagab Times A Plus Lal +\U000121BD;Cuneiform Sign Lagab Times Al +\U000121BE;Cuneiform Sign Lagab Times An +\U000121BF;Cuneiform Sign Lagab Times Ash Zida Tenu +\U000121C0;Cuneiform Sign Lagab Times Bad +\U000121C1;Cuneiform Sign Lagab Times Bi +\U000121C2;Cuneiform Sign Lagab Times Dar +\U000121C3;Cuneiform Sign Lagab Times En +\U000121C4;Cuneiform Sign Lagab Times Ga +\U000121C5;Cuneiform Sign Lagab Times Gar +\U000121C6;Cuneiform Sign Lagab Times Gud +\U000121C7;Cuneiform Sign Lagab Times Gud Plus Gud +\U000121C8;Cuneiform Sign Lagab Times Ha +\U000121C9;Cuneiform Sign Lagab Times Hal +\U000121CA;Cuneiform Sign Lagab Times Hi Times Nun +\U000121CB;Cuneiform Sign Lagab Times Igi Gunu +\U000121CC;Cuneiform Sign Lagab Times Im +\U000121CD;Cuneiform Sign Lagab Times Im Plus Ha +\U000121CE;Cuneiform Sign Lagab Times Im Plus Lu +\U000121CF;Cuneiform Sign Lagab Times Ki +\U000121D0;Cuneiform Sign Lagab Times Kin +\U000121D1;Cuneiform Sign Lagab Times Ku3 +\U000121D2;Cuneiform Sign Lagab Times Kul +\U000121D3;Cuneiform Sign Lagab Times Kul Plus Hi Plus A +\U000121D4;Cuneiform Sign Lagab Times Lagab +\U000121D5;Cuneiform Sign Lagab Times Lish +\U000121D6;Cuneiform Sign Lagab Times Lu +\U000121D7;Cuneiform Sign Lagab Times Lul +\U000121D8;Cuneiform Sign Lagab Times Me +\U000121D9;Cuneiform Sign Lagab Times Me Plus En +\U000121DA;Cuneiform Sign Lagab Times Mush +\U000121DB;Cuneiform Sign Lagab Times Ne +\U000121DC;Cuneiform Sign Lagab Times She Plus Sum +\U000121DD;Cuneiform Sign Lagab Times Shita Plus Gish Plus Erin2 +\U000121DE;Cuneiform Sign Lagab Times Shita Plus Gish Tenu +\U000121DF;Cuneiform Sign Lagab Times Shu2 +\U000121E0;Cuneiform Sign Lagab Times Shu2 Plus Shu2 +\U000121E1;Cuneiform Sign Lagab Times Sum +\U000121E2;Cuneiform Sign Lagab Times Tag +\U000121E3;Cuneiform Sign Lagab Times Tak4 +\U000121E4;Cuneiform Sign Lagab Times Te Plus A Plus Su Plus Na +\U000121E5;Cuneiform Sign Lagab Times U +\U000121E6;Cuneiform Sign Lagab Times U Plus A +\U000121E7;Cuneiform Sign Lagab Times U Plus U Plus U +\U000121E8;Cuneiform Sign Lagab Times U2 Plus Ash +\U000121E9;Cuneiform Sign Lagab Times Ud +\U000121EA;Cuneiform Sign Lagab Times Ush +\U000121EB;Cuneiform Sign Lagab Squared +\U000121EC;Cuneiform Sign Lagar +\U000121ED;Cuneiform Sign Lagar Times She +\U000121EE;Cuneiform Sign Lagar Times She Plus Sum +\U000121EF;Cuneiform Sign Lagar Gunu +\U000121F0;Cuneiform Sign Lagar Gunu Over Lagar Gunu She +\U000121F1;Cuneiform Sign Lahshu +\U000121F2;Cuneiform Sign Lal +\U000121F3;Cuneiform Sign Lal Times Lal +\U000121F4;Cuneiform Sign Lam +\U000121F5;Cuneiform Sign Lam Times Kur +\U000121F6;Cuneiform Sign Lam Times Kur Plus Ru +\U000121F7;Cuneiform Sign Li +\U000121F8;Cuneiform Sign Lil +\U000121F9;Cuneiform Sign Limmu2 +\U000121FA;Cuneiform Sign Lish +\U000121FB;Cuneiform Sign Lu +\U000121FC;Cuneiform Sign Lu Times Bad +\U000121FD;Cuneiform Sign Lu2 +\U000121FE;Cuneiform Sign Lu2 Times Al +\U000121FF;Cuneiform Sign Lu2 Times Bad +\U00012200;Cuneiform Sign Lu2 Times Esh2 +\U00012201;Cuneiform Sign Lu2 Times Esh2 Tenu +\U00012202;Cuneiform Sign Lu2 Times Gan2 Tenu +\U00012203;Cuneiform Sign Lu2 Times Hi Times Bad +\U00012204;Cuneiform Sign Lu2 Times Im +\U00012205;Cuneiform Sign Lu2 Times Kad2 +\U00012206;Cuneiform Sign Lu2 Times Kad3 +\U00012207;Cuneiform Sign Lu2 Times Kad3 Plus Ash +\U00012208;Cuneiform Sign Lu2 Times Ki +\U00012209;Cuneiform Sign Lu2 Times La Plus Ash +\U0001220A;Cuneiform Sign Lu2 Times Lagab +\U0001220B;Cuneiform Sign Lu2 Times Me Plus En +\U0001220C;Cuneiform Sign Lu2 Times Ne +\U0001220D;Cuneiform Sign Lu2 Times Nu +\U0001220E;Cuneiform Sign Lu2 Times Si Plus Ash +\U0001220F;Cuneiform Sign Lu2 Times Sik2 Plus Bu +\U00012210;Cuneiform Sign Lu2 Times Tug2 +\U00012211;Cuneiform Sign Lu2 Tenu +\U00012212;Cuneiform Sign Lu2 Crossing Lu2 +\U00012213;Cuneiform Sign Lu2 Opposing Lu2 +\U00012214;Cuneiform Sign Lu2 Squared +\U00012215;Cuneiform Sign Lu2 Sheshig +\U00012216;Cuneiform Sign Lu3 +\U00012217;Cuneiform Sign Lugal +\U00012218;Cuneiform Sign Lugal Over Lugal +\U00012219;Cuneiform Sign Lugal Opposing Lugal +\U0001221A;Cuneiform Sign Lugal Sheshig +\U0001221B;Cuneiform Sign Luh +\U0001221C;Cuneiform Sign Lul +\U0001221D;Cuneiform Sign Lum +\U0001221E;Cuneiform Sign Lum Over Lum +\U0001221F;Cuneiform Sign Lum Over Lum Gar Over Gar +\U00012220;Cuneiform Sign Ma +\U00012221;Cuneiform Sign Ma Times Tak4 +\U00012222;Cuneiform Sign Ma Gunu +\U00012223;Cuneiform Sign Ma2 +\U00012224;Cuneiform Sign Mah +\U00012225;Cuneiform Sign Mar +\U00012226;Cuneiform Sign Mash +\U00012227;Cuneiform Sign Mash2 +\U00012228;Cuneiform Sign Me +\U00012229;Cuneiform Sign Mes +\U0001222A;Cuneiform Sign Mi +\U0001222B;Cuneiform Sign Min +\U0001222C;Cuneiform Sign Mu +\U0001222D;Cuneiform Sign Mu Over Mu +\U0001222E;Cuneiform Sign Mug +\U0001222F;Cuneiform Sign Mug Gunu +\U00012230;Cuneiform Sign Munsub +\U00012231;Cuneiform Sign Murgu2 +\U00012232;Cuneiform Sign Mush +\U00012233;Cuneiform Sign Mush Times A +\U00012234;Cuneiform Sign Mush Times Kur +\U00012235;Cuneiform Sign Mush Times Za +\U00012236;Cuneiform Sign Mush Over Mush +\U00012237;Cuneiform Sign Mush Over Mush Times A Plus Na +\U00012238;Cuneiform Sign Mush Crossing Mush +\U00012239;Cuneiform Sign Mush3 +\U0001223A;Cuneiform Sign Mush3 Times A +\U0001223B;Cuneiform Sign Mush3 Times A Plus Di +\U0001223C;Cuneiform Sign Mush3 Times Di +\U0001223D;Cuneiform Sign Mush3 Gunu +\U0001223E;Cuneiform Sign Na +\U0001223F;Cuneiform Sign Na2 +\U00012240;Cuneiform Sign Naga +\U00012241;Cuneiform Sign Naga Inverted +\U00012242;Cuneiform Sign Naga Times Shu Tenu +\U00012243;Cuneiform Sign Naga Opposing Naga +\U00012244;Cuneiform Sign Nagar +\U00012245;Cuneiform Sign Nam Nutillu +\U00012246;Cuneiform Sign Nam +\U00012247;Cuneiform Sign Nam2 +\U00012248;Cuneiform Sign Ne +\U00012249;Cuneiform Sign Ne Times A +\U0001224A;Cuneiform Sign Ne Times Ud +\U0001224B;Cuneiform Sign Ne Sheshig +\U0001224C;Cuneiform Sign Ni +\U0001224D;Cuneiform Sign Ni Times E +\U0001224E;Cuneiform Sign Ni2 +\U0001224F;Cuneiform Sign Nim +\U00012250;Cuneiform Sign Nim Times Gan2 Tenu +\U00012251;Cuneiform Sign Nim Times Gar Plus Gan2 Tenu +\U00012252;Cuneiform Sign Ninda2 +\U00012253;Cuneiform Sign Ninda2 Times An +\U00012254;Cuneiform Sign Ninda2 Times Ash +\U00012255;Cuneiform Sign Ninda2 Times Ash Plus Ash +\U00012256;Cuneiform Sign Ninda2 Times Gud +\U00012257;Cuneiform Sign Ninda2 Times Me Plus Gan2 Tenu +\U00012258;Cuneiform Sign Ninda2 Times Ne +\U00012259;Cuneiform Sign Ninda2 Times Nun +\U0001225A;Cuneiform Sign Ninda2 Times She +\U0001225B;Cuneiform Sign Ninda2 Times She Plus A An +\U0001225C;Cuneiform Sign Ninda2 Times She Plus Ash +\U0001225D;Cuneiform Sign Ninda2 Times She Plus Ash Plus Ash +\U0001225E;Cuneiform Sign Ninda2 Times U2 Plus Ash +\U0001225F;Cuneiform Sign Ninda2 Times Ush +\U00012260;Cuneiform Sign Nisag +\U00012261;Cuneiform Sign Nu +\U00012262;Cuneiform Sign Nu11 +\U00012263;Cuneiform Sign Nun +\U00012264;Cuneiform Sign Nun Lagar Times Gar +\U00012265;Cuneiform Sign Nun Lagar Times Mash +\U00012266;Cuneiform Sign Nun Lagar Times Sal +\U00012267;Cuneiform Sign Nun Lagar Times Sal Over Nun Lagar Times Sal +\U00012268;Cuneiform Sign Nun Lagar Times Ush +\U00012269;Cuneiform Sign Nun Tenu +\U0001226A;Cuneiform Sign Nun Over Nun +\U0001226B;Cuneiform Sign Nun Crossing Nun +\U0001226C;Cuneiform Sign Nun Crossing Nun Lagar Over Lagar +\U0001226D;Cuneiform Sign Nunuz +\U0001226E;Cuneiform Sign Nunuz Ab2 Times Ashgab +\U0001226F;Cuneiform Sign Nunuz Ab2 Times Bi +\U00012270;Cuneiform Sign Nunuz Ab2 Times Dug +\U00012271;Cuneiform Sign Nunuz Ab2 Times Gud +\U00012272;Cuneiform Sign Nunuz Ab2 Times Igi Gunu +\U00012273;Cuneiform Sign Nunuz Ab2 Times Kad3 +\U00012274;Cuneiform Sign Nunuz Ab2 Times La +\U00012275;Cuneiform Sign Nunuz Ab2 Times Ne +\U00012276;Cuneiform Sign Nunuz Ab2 Times Sila3 +\U00012277;Cuneiform Sign Nunuz Ab2 Times U2 +\U00012278;Cuneiform Sign Nunuz Kisim5 Times Bi +\U00012279;Cuneiform Sign Nunuz Kisim5 Times Bi U +\U0001227A;Cuneiform Sign Pa +\U0001227B;Cuneiform Sign Pad +\U0001227C;Cuneiform Sign Pan +\U0001227D;Cuneiform Sign Pap +\U0001227E;Cuneiform Sign Pesh2 +\U0001227F;Cuneiform Sign Pi +\U00012280;Cuneiform Sign Pi Times A +\U00012281;Cuneiform Sign Pi Times Ab +\U00012282;Cuneiform Sign Pi Times Bi +\U00012283;Cuneiform Sign Pi Times Bu +\U00012284;Cuneiform Sign Pi Times E +\U00012285;Cuneiform Sign Pi Times I +\U00012286;Cuneiform Sign Pi Times Ib +\U00012287;Cuneiform Sign Pi Times U +\U00012288;Cuneiform Sign Pi Times U2 +\U00012289;Cuneiform Sign Pi Crossing Pi +\U0001228A;Cuneiform Sign Pirig +\U0001228B;Cuneiform Sign Pirig Times Kal +\U0001228C;Cuneiform Sign Pirig Times Ud +\U0001228D;Cuneiform Sign Pirig Times Za +\U0001228E;Cuneiform Sign Pirig Opposing Pirig +\U0001228F;Cuneiform Sign Ra +\U00012290;Cuneiform Sign Rab +\U00012291;Cuneiform Sign Ri +\U00012292;Cuneiform Sign Ru +\U00012293;Cuneiform Sign Sa +\U00012294;Cuneiform Sign Sag Nutillu +\U00012295;Cuneiform Sign Sag +\U00012296;Cuneiform Sign Sag Times A +\U00012297;Cuneiform Sign Sag Times Du +\U00012298;Cuneiform Sign Sag Times Dub +\U00012299;Cuneiform Sign Sag Times Ha +\U0001229A;Cuneiform Sign Sag Times Kak +\U0001229B;Cuneiform Sign Sag Times Kur +\U0001229C;Cuneiform Sign Sag Times Lum +\U0001229D;Cuneiform Sign Sag Times Mi +\U0001229E;Cuneiform Sign Sag Times Nun +\U0001229F;Cuneiform Sign Sag Times Sal +\U000122A0;Cuneiform Sign Sag Times Shid +\U000122A1;Cuneiform Sign Sag Times Tab +\U000122A2;Cuneiform Sign Sag Times U2 +\U000122A3;Cuneiform Sign Sag Times Ub +\U000122A4;Cuneiform Sign Sag Times Um +\U000122A5;Cuneiform Sign Sag Times Ur +\U000122A6;Cuneiform Sign Sag Times Ush +\U000122A7;Cuneiform Sign Sag Over Sag +\U000122A8;Cuneiform Sign Sag Gunu +\U000122A9;Cuneiform Sign Sal +\U000122AA;Cuneiform Sign Sal Lagab Times Ash2 +\U000122AB;Cuneiform Sign Sanga2 +\U000122AC;Cuneiform Sign Sar +\U000122AD;Cuneiform Sign Sha +\U000122AE;Cuneiform Sign Sha3 +\U000122AF;Cuneiform Sign Sha3 Times A +\U000122B0;Cuneiform Sign Sha3 Times Bad +\U000122B1;Cuneiform Sign Sha3 Times Gish +\U000122B2;Cuneiform Sign Sha3 Times Ne +\U000122B3;Cuneiform Sign Sha3 Times Shu2 +\U000122B4;Cuneiform Sign Sha3 Times Tur +\U000122B5;Cuneiform Sign Sha3 Times U +\U000122B6;Cuneiform Sign Sha3 Times U Plus A +\U000122B7;Cuneiform Sign Sha6 +\U000122B8;Cuneiform Sign Shab6 +\U000122B9;Cuneiform Sign Shar2 +\U000122BA;Cuneiform Sign She +\U000122BB;Cuneiform Sign She Hu +\U000122BC;Cuneiform Sign She Over She Gad Over Gad Gar Over Gar +\U000122BD;Cuneiform Sign She Over She Tab Over Tab Gar Over Gar +\U000122BE;Cuneiform Sign Sheg9 +\U000122BF;Cuneiform Sign Shen +\U000122C0;Cuneiform Sign Shesh +\U000122C1;Cuneiform Sign Shesh2 +\U000122C2;Cuneiform Sign Sheshlam +\U000122C3;Cuneiform Sign Shid +\U000122C4;Cuneiform Sign Shid Times A +\U000122C5;Cuneiform Sign Shid Times Im +\U000122C6;Cuneiform Sign Shim +\U000122C7;Cuneiform Sign Shim Times A +\U000122C8;Cuneiform Sign Shim Times Bal +\U000122C9;Cuneiform Sign Shim Times Bulug +\U000122CA;Cuneiform Sign Shim Times Din +\U000122CB;Cuneiform Sign Shim Times Gar +\U000122CC;Cuneiform Sign Shim Times Igi +\U000122CD;Cuneiform Sign Shim Times Igi Gunu +\U000122CE;Cuneiform Sign Shim Times Kushu2 +\U000122CF;Cuneiform Sign Shim Times Lul +\U000122D0;Cuneiform Sign Shim Times Mug +\U000122D1;Cuneiform Sign Shim Times Sal +\U000122D2;Cuneiform Sign Shinig +\U000122D3;Cuneiform Sign Shir +\U000122D4;Cuneiform Sign Shir Tenu +\U000122D5;Cuneiform Sign Shir Over Shir Bur Over Bur +\U000122D6;Cuneiform Sign Shita +\U000122D7;Cuneiform Sign Shu +\U000122D8;Cuneiform Sign Shu Over Inverted Shu +\U000122D9;Cuneiform Sign Shu2 +\U000122DA;Cuneiform Sign Shubur +\U000122DB;Cuneiform Sign Si +\U000122DC;Cuneiform Sign Si Gunu +\U000122DD;Cuneiform Sign Sig +\U000122DE;Cuneiform Sign Sig4 +\U000122DF;Cuneiform Sign Sig4 Over Sig4 Shu2 +\U000122E0;Cuneiform Sign Sik2 +\U000122E1;Cuneiform Sign Sila3 +\U000122E2;Cuneiform Sign Su +\U000122E3;Cuneiform Sign Su Over Su +\U000122E4;Cuneiform Sign Sud +\U000122E5;Cuneiform Sign Sud2 +\U000122E6;Cuneiform Sign Suhur +\U000122E7;Cuneiform Sign Sum +\U000122E8;Cuneiform Sign Sumash +\U000122E9;Cuneiform Sign Sur +\U000122EA;Cuneiform Sign Sur9 +\U000122EB;Cuneiform Sign Ta +\U000122EC;Cuneiform Sign Ta Asterisk +\U000122ED;Cuneiform Sign Ta Times Hi +\U000122EE;Cuneiform Sign Ta Times Mi +\U000122EF;Cuneiform Sign Ta Gunu +\U000122F0;Cuneiform Sign Tab +\U000122F1;Cuneiform Sign Tab Over Tab Ni Over Ni Dish Over Dish +\U000122F2;Cuneiform Sign Tab Squared +\U000122F3;Cuneiform Sign Tag +\U000122F4;Cuneiform Sign Tag Times Bi +\U000122F5;Cuneiform Sign Tag Times Gud +\U000122F6;Cuneiform Sign Tag Times She +\U000122F7;Cuneiform Sign Tag Times Shu +\U000122F8;Cuneiform Sign Tag Times Tug2 +\U000122F9;Cuneiform Sign Tag Times Ud +\U000122FA;Cuneiform Sign Tak4 +\U000122FB;Cuneiform Sign Tar +\U000122FC;Cuneiform Sign Te +\U000122FD;Cuneiform Sign Te Gunu +\U000122FE;Cuneiform Sign Ti +\U000122FF;Cuneiform Sign Ti Tenu +\U00012300;Cuneiform Sign Til +\U00012301;Cuneiform Sign Tir +\U00012302;Cuneiform Sign Tir Times Tak4 +\U00012303;Cuneiform Sign Tir Over Tir +\U00012304;Cuneiform Sign Tir Over Tir Gad Over Gad Gar Over Gar +\U00012305;Cuneiform Sign Tu +\U00012306;Cuneiform Sign Tug2 +\U00012307;Cuneiform Sign Tuk +\U00012308;Cuneiform Sign Tum +\U00012309;Cuneiform Sign Tur +\U0001230A;Cuneiform Sign Tur Over Tur Za Over Za +\U0001230B;Cuneiform Sign U +\U0001230C;Cuneiform Sign U Gud +\U0001230D;Cuneiform Sign U U U +\U0001230E;Cuneiform Sign U Over U Pa Over Pa Gar Over Gar +\U0001230F;Cuneiform Sign U Over U Sur Over Sur +\U00012310;Cuneiform Sign U Over U U Reversed Over U Reversed +\U00012311;Cuneiform Sign U2 +\U00012312;Cuneiform Sign Ub +\U00012313;Cuneiform Sign Ud +\U00012314;Cuneiform Sign Ud Kushu2 +\U00012315;Cuneiform Sign Ud Times Bad +\U00012316;Cuneiform Sign Ud Times Mi +\U00012317;Cuneiform Sign Ud Times U Plus U Plus U +\U00012318;Cuneiform Sign Ud Times U Plus U Plus U Gunu +\U00012319;Cuneiform Sign Ud Gunu +\U0001231A;Cuneiform Sign Ud Sheshig +\U0001231B;Cuneiform Sign Ud Sheshig Times Bad +\U0001231C;Cuneiform Sign Udug +\U0001231D;Cuneiform Sign Um +\U0001231E;Cuneiform Sign Um Times Lagab +\U0001231F;Cuneiform Sign Um Times Me Plus Da +\U00012320;Cuneiform Sign Um Times Sha3 +\U00012321;Cuneiform Sign Um Times U +\U00012322;Cuneiform Sign Umbin +\U00012323;Cuneiform Sign Umum +\U00012324;Cuneiform Sign Umum Times Kaskal +\U00012325;Cuneiform Sign Umum Times Pa +\U00012326;Cuneiform Sign Un +\U00012327;Cuneiform Sign Un Gunu +\U00012328;Cuneiform Sign Ur +\U00012329;Cuneiform Sign Ur Crossing Ur +\U0001232A;Cuneiform Sign Ur Sheshig +\U0001232B;Cuneiform Sign Ur2 +\U0001232C;Cuneiform Sign Ur2 Times A Plus Ha +\U0001232D;Cuneiform Sign Ur2 Times A Plus Na +\U0001232E;Cuneiform Sign Ur2 Times Al +\U0001232F;Cuneiform Sign Ur2 Times Ha +\U00012330;Cuneiform Sign Ur2 Times Nun +\U00012331;Cuneiform Sign Ur2 Times U2 +\U00012332;Cuneiform Sign Ur2 Times U2 Plus Ash +\U00012333;Cuneiform Sign Ur2 Times U2 Plus Bi +\U00012334;Cuneiform Sign Ur4 +\U00012335;Cuneiform Sign Uri +\U00012336;Cuneiform Sign Uri3 +\U00012337;Cuneiform Sign Uru +\U00012338;Cuneiform Sign Uru Times A +\U00012339;Cuneiform Sign Uru Times Ashgab +\U0001233A;Cuneiform Sign Uru Times Bar +\U0001233B;Cuneiform Sign Uru Times Dun +\U0001233C;Cuneiform Sign Uru Times Ga +\U0001233D;Cuneiform Sign Uru Times Gal +\U0001233E;Cuneiform Sign Uru Times Gan2 Tenu +\U0001233F;Cuneiform Sign Uru Times Gar +\U00012340;Cuneiform Sign Uru Times Gu +\U00012341;Cuneiform Sign Uru Times Ha +\U00012342;Cuneiform Sign Uru Times Igi +\U00012343;Cuneiform Sign Uru Times Im +\U00012344;Cuneiform Sign Uru Times Ish +\U00012345;Cuneiform Sign Uru Times Ki +\U00012346;Cuneiform Sign Uru Times Lum +\U00012347;Cuneiform Sign Uru Times Min +\U00012348;Cuneiform Sign Uru Times Pa +\U00012349;Cuneiform Sign Uru Times She +\U0001234A;Cuneiform Sign Uru Times Sig4 +\U0001234B;Cuneiform Sign Uru Times Tu +\U0001234C;Cuneiform Sign Uru Times U Plus Gud +\U0001234D;Cuneiform Sign Uru Times Ud +\U0001234E;Cuneiform Sign Uru Times Uruda +\U0001234F;Cuneiform Sign Uruda +\U00012350;Cuneiform Sign Uruda Times U +\U00012351;Cuneiform Sign Ush +\U00012352;Cuneiform Sign Ush Times A +\U00012353;Cuneiform Sign Ush Times Ku +\U00012354;Cuneiform Sign Ush Times Kur +\U00012355;Cuneiform Sign Ush Times Tak4 +\U00012356;Cuneiform Sign Ushx +\U00012357;Cuneiform Sign Ush2 +\U00012358;Cuneiform Sign Ushumx +\U00012359;Cuneiform Sign Utuki +\U0001235A;Cuneiform Sign Uz3 +\U0001235B;Cuneiform Sign Uz3 Times Kaskal +\U0001235C;Cuneiform Sign Uzu +\U0001235D;Cuneiform Sign Za +\U0001235E;Cuneiform Sign Za Tenu +\U0001235F;Cuneiform Sign Za Squared Times Kur +\U00012360;Cuneiform Sign Zag +\U00012361;Cuneiform Sign Zamx +\U00012362;Cuneiform Sign Ze2 +\U00012363;Cuneiform Sign Zi +\U00012364;Cuneiform Sign Zi Over Zi +\U00012365;Cuneiform Sign Zi3 +\U00012366;Cuneiform Sign Zib +\U00012367;Cuneiform Sign Zib Kaba Tenu +\U00012368;Cuneiform Sign Zig +\U00012369;Cuneiform Sign Ziz2 +\U0001236A;Cuneiform Sign Zu +\U0001236B;Cuneiform Sign Zu5 +\U0001236C;Cuneiform Sign Zu5 Times A +\U0001236D;Cuneiform Sign Zubur +\U0001236E;Cuneiform Sign Zum +\U0001236F;Cuneiform Sign Kap Elamite +\U00012370;Cuneiform Sign Ab Times Nun +\U00012371;Cuneiform Sign Ab2 Times A +\U00012372;Cuneiform Sign Amar Times Kug +\U00012373;Cuneiform Sign Dag Kisim5 Times U2 Plus Mash +\U00012374;Cuneiform Sign Dag3 +\U00012375;Cuneiform Sign Dish Plus Shu +\U00012376;Cuneiform Sign Dub Times She +\U00012377;Cuneiform Sign Ezen Times Gud +\U00012378;Cuneiform Sign Ezen Times She +\U00012379;Cuneiform Sign Ga2 Times An Plus Kak Plus A +\U0001237A;Cuneiform Sign Ga2 Times Ash2 +\U0001237B;Cuneiform Sign Ge22 +\U0001237C;Cuneiform Sign Gig +\U0001237D;Cuneiform Sign Hush +\U0001237E;Cuneiform Sign Ka Times Anshe +\U0001237F;Cuneiform Sign Ka Times Ash3 +\U00012380;Cuneiform Sign Ka Times Gish +\U00012381;Cuneiform Sign Ka Times Gud +\U00012382;Cuneiform Sign Ka Times Hi Times Ash2 +\U00012383;Cuneiform Sign Ka Times Lum +\U00012384;Cuneiform Sign Ka Times Pa +\U00012385;Cuneiform Sign Ka Times Shul +\U00012386;Cuneiform Sign Ka Times Tu +\U00012387;Cuneiform Sign Ka Times Ur2 +\U00012388;Cuneiform Sign Lagab Times Gi +\U00012389;Cuneiform Sign Lu2 Sheshig Times Bad +\U0001238A;Cuneiform Sign Lu2 Times Esh2 Plus Lal +\U0001238B;Cuneiform Sign Lu2 Times Shu +\U0001238C;Cuneiform Sign Mesh +\U0001238D;Cuneiform Sign Mush3 Times Za +\U0001238E;Cuneiform Sign Na4 +\U0001238F;Cuneiform Sign Nin +\U00012390;Cuneiform Sign Nin9 +\U00012391;Cuneiform Sign Ninda2 Times Bal +\U00012392;Cuneiform Sign Ninda2 Times Gi +\U00012393;Cuneiform Sign Nu11 Rotated Ninety Degrees +\U00012394;Cuneiform Sign Pesh2 Asterisk +\U00012395;Cuneiform Sign Pir2 +\U00012396;Cuneiform Sign Sag Times Igi Gunu +\U00012397;Cuneiform Sign Ti2 +\U00012398;Cuneiform Sign Um Times Me +\U00012399;Cuneiform Sign U U +\U00012400;Cuneiform Numeric Sign Two Ash +\U00012401;Cuneiform Numeric Sign Three Ash +\U00012402;Cuneiform Numeric Sign Four Ash +\U00012403;Cuneiform Numeric Sign Five Ash +\U00012404;Cuneiform Numeric Sign Six Ash +\U00012405;Cuneiform Numeric Sign Seven Ash +\U00012406;Cuneiform Numeric Sign Eight Ash +\U00012407;Cuneiform Numeric Sign Nine Ash +\U00012408;Cuneiform Numeric Sign Three Dish +\U00012409;Cuneiform Numeric Sign Four Dish +\U0001240A;Cuneiform Numeric Sign Five Dish +\U0001240B;Cuneiform Numeric Sign Six Dish +\U0001240C;Cuneiform Numeric Sign Seven Dish +\U0001240D;Cuneiform Numeric Sign Eight Dish +\U0001240E;Cuneiform Numeric Sign Nine Dish +\U0001240F;Cuneiform Numeric Sign Four U +\U00012410;Cuneiform Numeric Sign Five U +\U00012411;Cuneiform Numeric Sign Six U +\U00012412;Cuneiform Numeric Sign Seven U +\U00012413;Cuneiform Numeric Sign Eight U +\U00012414;Cuneiform Numeric Sign Nine U +\U00012415;Cuneiform Numeric Sign One Gesh2 +\U00012416;Cuneiform Numeric Sign Two Gesh2 +\U00012417;Cuneiform Numeric Sign Three Gesh2 +\U00012418;Cuneiform Numeric Sign Four Gesh2 +\U00012419;Cuneiform Numeric Sign Five Gesh2 +\U0001241A;Cuneiform Numeric Sign Six Gesh2 +\U0001241B;Cuneiform Numeric Sign Seven Gesh2 +\U0001241C;Cuneiform Numeric Sign Eight Gesh2 +\U0001241D;Cuneiform Numeric Sign Nine Gesh2 +\U0001241E;Cuneiform Numeric Sign One Geshu +\U0001241F;Cuneiform Numeric Sign Two Geshu +\U00012420;Cuneiform Numeric Sign Three Geshu +\U00012421;Cuneiform Numeric Sign Four Geshu +\U00012422;Cuneiform Numeric Sign Five Geshu +\U00012423;Cuneiform Numeric Sign Two Shar2 +\U00012424;Cuneiform Numeric Sign Three Shar2 +\U00012425;Cuneiform Numeric Sign Three Shar2 Variant Form +\U00012426;Cuneiform Numeric Sign Four Shar2 +\U00012427;Cuneiform Numeric Sign Five Shar2 +\U00012428;Cuneiform Numeric Sign Six Shar2 +\U00012429;Cuneiform Numeric Sign Seven Shar2 +\U0001242A;Cuneiform Numeric Sign Eight Shar2 +\U0001242B;Cuneiform Numeric Sign Nine Shar2 +\U0001242C;Cuneiform Numeric Sign One Sharu +\U0001242D;Cuneiform Numeric Sign Two Sharu +\U0001242E;Cuneiform Numeric Sign Three Sharu +\U0001242F;Cuneiform Numeric Sign Three Sharu Variant Form +\U00012430;Cuneiform Numeric Sign Four Sharu +\U00012431;Cuneiform Numeric Sign Five Sharu +\U00012432;Cuneiform Numeric Sign Shar2 Times Gal Plus Dish +\U00012433;Cuneiform Numeric Sign Shar2 Times Gal Plus Min +\U00012434;Cuneiform Numeric Sign One Buru +\U00012435;Cuneiform Numeric Sign Two Buru +\U00012436;Cuneiform Numeric Sign Three Buru +\U00012437;Cuneiform Numeric Sign Three Buru Variant Form +\U00012438;Cuneiform Numeric Sign Four Buru +\U00012439;Cuneiform Numeric Sign Five Buru +\U0001243A;Cuneiform Numeric Sign Three Variant Form Esh16 +\U0001243B;Cuneiform Numeric Sign Three Variant Form Esh21 +\U0001243C;Cuneiform Numeric Sign Four Variant Form Limmu +\U0001243D;Cuneiform Numeric Sign Four Variant Form Limmu4 +\U0001243E;Cuneiform Numeric Sign Four Variant Form Limmu A +\U0001243F;Cuneiform Numeric Sign Four Variant Form Limmu B +\U00012440;Cuneiform Numeric Sign Six Variant Form Ash9 +\U00012441;Cuneiform Numeric Sign Seven Variant Form Imin3 +\U00012442;Cuneiform Numeric Sign Seven Variant Form Imin A +\U00012443;Cuneiform Numeric Sign Seven Variant Form Imin B +\U00012444;Cuneiform Numeric Sign Eight Variant Form Ussu +\U00012445;Cuneiform Numeric Sign Eight Variant Form Ussu3 +\U00012446;Cuneiform Numeric Sign Nine Variant Form Ilimmu +\U00012447;Cuneiform Numeric Sign Nine Variant Form Ilimmu3 +\U00012448;Cuneiform Numeric Sign Nine Variant Form Ilimmu4 +\U00012449;Cuneiform Numeric Sign Nine Variant Form Ilimmu A +\U0001244A;Cuneiform Numeric Sign Two Ash Tenu +\U0001244B;Cuneiform Numeric Sign Three Ash Tenu +\U0001244C;Cuneiform Numeric Sign Four Ash Tenu +\U0001244D;Cuneiform Numeric Sign Five Ash Tenu +\U0001244E;Cuneiform Numeric Sign Six Ash Tenu +\U0001244F;Cuneiform Numeric Sign One Ban2 +\U00012450;Cuneiform Numeric Sign Two Ban2 +\U00012451;Cuneiform Numeric Sign Three Ban2 +\U00012452;Cuneiform Numeric Sign Four Ban2 +\U00012453;Cuneiform Numeric Sign Four Ban2 Variant Form +\U00012454;Cuneiform Numeric Sign Five Ban2 +\U00012455;Cuneiform Numeric Sign Five Ban2 Variant Form +\U00012456;Cuneiform Numeric Sign Nigidamin +\U00012457;Cuneiform Numeric Sign Nigidaesh +\U00012458;Cuneiform Numeric Sign One Eshe3 +\U00012459;Cuneiform Numeric Sign Two Eshe3 +\U0001245A;Cuneiform Numeric Sign One Third Dish +\U0001245B;Cuneiform Numeric Sign Two Thirds Dish +\U0001245C;Cuneiform Numeric Sign Five Sixths Dish +\U0001245D;Cuneiform Numeric Sign One Third Variant Form A +\U0001245E;Cuneiform Numeric Sign Two Thirds Variant Form A +\U0001245F;Cuneiform Numeric Sign One Eighth Ash +\U00012460;Cuneiform Numeric Sign One Quarter Ash +\U00012461;Cuneiform Numeric Sign Old Assyrian One Sixth +\U00012462;Cuneiform Numeric Sign Old Assyrian One Quarter +\U00012463;Cuneiform Numeric Sign One Quarter Gur +\U00012464;Cuneiform Numeric Sign One Half Gur +\U00012465;Cuneiform Numeric Sign Elamite One Third +\U00012466;Cuneiform Numeric Sign Elamite Two Thirds +\U00012467;Cuneiform Numeric Sign Elamite Forty +\U00012468;Cuneiform Numeric Sign Elamite Fifty +\U00012469;Cuneiform Numeric Sign Four U Variant Form +\U0001246A;Cuneiform Numeric Sign Five U Variant Form +\U0001246B;Cuneiform Numeric Sign Six U Variant Form +\U0001246C;Cuneiform Numeric Sign Seven U Variant Form +\U0001246D;Cuneiform Numeric Sign Eight U Variant Form +\U0001246E;Cuneiform Numeric Sign Nine U Variant Form +\U00012470;Cuneiform Punctuation Sign Old Assyrian Word Divider +\U00012471;Cuneiform Punctuation Sign Vertical Colon +\U00012472;Cuneiform Punctuation Sign Diagonal Colon +\U00012473;Cuneiform Punctuation Sign Diagonal Tricolon +\U00012474;Cuneiform Punctuation Sign Diagonal Quadcolon +\U00012480;Cuneiform Sign Ab Times Nun Tenu +\U00012481;Cuneiform Sign Ab Times Shu2 +\U00012482;Cuneiform Sign Ad Times Esh2 +\U00012483;Cuneiform Sign Bad Times Dish Tenu +\U00012484;Cuneiform Sign Bahar2 Times Ab2 +\U00012485;Cuneiform Sign Bahar2 Times Ni +\U00012486;Cuneiform Sign Bahar2 Times Za +\U00012487;Cuneiform Sign Bu Over Bu Times Na2 +\U00012488;Cuneiform Sign Da Times Tak4 +\U00012489;Cuneiform Sign Dag Times Kur +\U0001248A;Cuneiform Sign Dim Times Igi +\U0001248B;Cuneiform Sign Dim Times U U U +\U0001248C;Cuneiform Sign Dim2 Times Ud +\U0001248D;Cuneiform Sign Dug Times Anshe +\U0001248E;Cuneiform Sign Dug Times Ash +\U0001248F;Cuneiform Sign Dug Times Ash At Left +\U00012490;Cuneiform Sign Dug Times Din +\U00012491;Cuneiform Sign Dug Times Dun +\U00012492;Cuneiform Sign Dug Times Erin2 +\U00012493;Cuneiform Sign Dug Times Ga +\U00012494;Cuneiform Sign Dug Times Gi +\U00012495;Cuneiform Sign Dug Times Gir2 Gunu +\U00012496;Cuneiform Sign Dug Times Gish +\U00012497;Cuneiform Sign Dug Times Ha +\U00012498;Cuneiform Sign Dug Times Hi +\U00012499;Cuneiform Sign Dug Times Igi Gunu +\U0001249A;Cuneiform Sign Dug Times Kaskal +\U0001249B;Cuneiform Sign Dug Times Kur +\U0001249C;Cuneiform Sign Dug Times Kushu2 +\U0001249D;Cuneiform Sign Dug Times Kushu2 Plus Kaskal +\U0001249E;Cuneiform Sign Dug Times Lak-020 +\U0001249F;Cuneiform Sign Dug Times Lam +\U000124A0;Cuneiform Sign Dug Times Lam Times Kur +\U000124A1;Cuneiform Sign Dug Times Luh Plus Gish +\U000124A2;Cuneiform Sign Dug Times Mash +\U000124A3;Cuneiform Sign Dug Times Mes +\U000124A4;Cuneiform Sign Dug Times Mi +\U000124A5;Cuneiform Sign Dug Times Ni +\U000124A6;Cuneiform Sign Dug Times Pi +\U000124A7;Cuneiform Sign Dug Times She +\U000124A8;Cuneiform Sign Dug Times Si Gunu +\U000124A9;Cuneiform Sign E2 Times Kur +\U000124AA;Cuneiform Sign E2 Times Pap +\U000124AB;Cuneiform Sign Erin2 X +\U000124AC;Cuneiform Sign Esh2 Crossing Esh2 +\U000124AD;Cuneiform Sign Ezen Sheshig Times Ash +\U000124AE;Cuneiform Sign Ezen Sheshig Times Hi +\U000124AF;Cuneiform Sign Ezen Sheshig Times Igi Gunu +\U000124B0;Cuneiform Sign Ezen Sheshig Times La +\U000124B1;Cuneiform Sign Ezen Sheshig Times Lal +\U000124B2;Cuneiform Sign Ezen Sheshig Times Me +\U000124B3;Cuneiform Sign Ezen Sheshig Times Mes +\U000124B4;Cuneiform Sign Ezen Sheshig Times Su +\U000124B5;Cuneiform Sign Ezen Times Su +\U000124B6;Cuneiform Sign Ga2 Times Bahar2 +\U000124B7;Cuneiform Sign Ga2 Times Dim Gunu +\U000124B8;Cuneiform Sign Ga2 Times Dug Times Igi Gunu +\U000124B9;Cuneiform Sign Ga2 Times Dug Times Kaskal +\U000124BA;Cuneiform Sign Ga2 Times Eren +\U000124BB;Cuneiform Sign Ga2 Times Ga +\U000124BC;Cuneiform Sign Ga2 Times Gar Plus Di +\U000124BD;Cuneiform Sign Ga2 Times Gar Plus Ne +\U000124BE;Cuneiform Sign Ga2 Times Ha Plus A +\U000124BF;Cuneiform Sign Ga2 Times Kushu2 Plus Kaskal +\U000124C0;Cuneiform Sign Ga2 Times Lam +\U000124C1;Cuneiform Sign Ga2 Times Lam Times Kur +\U000124C2;Cuneiform Sign Ga2 Times Luh +\U000124C3;Cuneiform Sign Ga2 Times Mush +\U000124C4;Cuneiform Sign Ga2 Times Ne +\U000124C5;Cuneiform Sign Ga2 Times Ne Plus E2 +\U000124C6;Cuneiform Sign Ga2 Times Ne Plus Gi +\U000124C7;Cuneiform Sign Ga2 Times Shim +\U000124C8;Cuneiform Sign Ga2 Times Ziz2 +\U000124C9;Cuneiform Sign Gaba Rotated Ninety Degrees +\U000124CA;Cuneiform Sign Geshtin Times U +\U000124CB;Cuneiform Sign Gish Times Gish Crossing Gish +\U000124CC;Cuneiform Sign Gu2 Times Igi Gunu +\U000124CD;Cuneiform Sign Gud Plus Gish Times Tak4 +\U000124CE;Cuneiform Sign Ha Tenu Gunu +\U000124CF;Cuneiform Sign Hi Times Ash Over Hi Times Ash +\U000124D0;Cuneiform Sign Ka Times Bu +\U000124D1;Cuneiform Sign Ka Times Ka +\U000124D2;Cuneiform Sign Ka Times U U U +\U000124D3;Cuneiform Sign Ka Times Ur +\U000124D4;Cuneiform Sign Lagab Times Zu Over Zu +\U000124D5;Cuneiform Sign Lak-003 +\U000124D6;Cuneiform Sign Lak-021 +\U000124D7;Cuneiform Sign Lak-025 +\U000124D8;Cuneiform Sign Lak-030 +\U000124D9;Cuneiform Sign Lak-050 +\U000124DA;Cuneiform Sign Lak-051 +\U000124DB;Cuneiform Sign Lak-062 +\U000124DC;Cuneiform Sign Lak-079 Over Lak-079 Gunu +\U000124DD;Cuneiform Sign Lak-080 +\U000124DE;Cuneiform Sign Lak-081 Over Lak-081 +\U000124DF;Cuneiform Sign Lak-092 +\U000124E0;Cuneiform Sign Lak-130 +\U000124E1;Cuneiform Sign Lak-142 +\U000124E2;Cuneiform Sign Lak-210 +\U000124E3;Cuneiform Sign Lak-219 +\U000124E4;Cuneiform Sign Lak-220 +\U000124E5;Cuneiform Sign Lak-225 +\U000124E6;Cuneiform Sign Lak-228 +\U000124E7;Cuneiform Sign Lak-238 +\U000124E8;Cuneiform Sign Lak-265 +\U000124E9;Cuneiform Sign Lak-266 +\U000124EA;Cuneiform Sign Lak-343 +\U000124EB;Cuneiform Sign Lak-347 +\U000124EC;Cuneiform Sign Lak-348 +\U000124ED;Cuneiform Sign Lak-383 +\U000124EE;Cuneiform Sign Lak-384 +\U000124EF;Cuneiform Sign Lak-390 +\U000124F0;Cuneiform Sign Lak-441 +\U000124F1;Cuneiform Sign Lak-449 +\U000124F2;Cuneiform Sign Lak-449 Times Gu +\U000124F3;Cuneiform Sign Lak-449 Times Igi +\U000124F4;Cuneiform Sign Lak-449 Times Pap Plus Lu3 +\U000124F5;Cuneiform Sign Lak-449 Times Pap Plus Pap Plus Lu3 +\U000124F6;Cuneiform Sign Lak-449 Times U2 Plus Ba +\U000124F7;Cuneiform Sign Lak-450 +\U000124F8;Cuneiform Sign Lak-457 +\U000124F9;Cuneiform Sign Lak-470 +\U000124FA;Cuneiform Sign Lak-483 +\U000124FB;Cuneiform Sign Lak-490 +\U000124FC;Cuneiform Sign Lak-492 +\U000124FD;Cuneiform Sign Lak-493 +\U000124FE;Cuneiform Sign Lak-495 +\U000124FF;Cuneiform Sign Lak-550 +\U00012500;Cuneiform Sign Lak-608 +\U00012501;Cuneiform Sign Lak-617 +\U00012502;Cuneiform Sign Lak-617 Times Ash +\U00012503;Cuneiform Sign Lak-617 Times Bad +\U00012504;Cuneiform Sign Lak-617 Times Dun3 Gunu Gunu +\U00012505;Cuneiform Sign Lak-617 Times Ku3 +\U00012506;Cuneiform Sign Lak-617 Times La +\U00012507;Cuneiform Sign Lak-617 Times Tar +\U00012508;Cuneiform Sign Lak-617 Times Te +\U00012509;Cuneiform Sign Lak-617 Times U2 +\U0001250A;Cuneiform Sign Lak-617 Times Ud +\U0001250B;Cuneiform Sign Lak-617 Times Uruda +\U0001250C;Cuneiform Sign Lak-636 +\U0001250D;Cuneiform Sign Lak-648 +\U0001250E;Cuneiform Sign Lak-648 Times Dub +\U0001250F;Cuneiform Sign Lak-648 Times Ga +\U00012510;Cuneiform Sign Lak-648 Times Igi +\U00012511;Cuneiform Sign Lak-648 Times Igi Gunu +\U00012512;Cuneiform Sign Lak-648 Times Ni +\U00012513;Cuneiform Sign Lak-648 Times Pap Plus Pap Plus Lu3 +\U00012514;Cuneiform Sign Lak-648 Times Shesh Plus Ki +\U00012515;Cuneiform Sign Lak-648 Times Ud +\U00012516;Cuneiform Sign Lak-648 Times Uruda +\U00012517;Cuneiform Sign Lak-724 +\U00012518;Cuneiform Sign Lak-749 +\U00012519;Cuneiform Sign Lu2 Gunu Times Ash +\U0001251A;Cuneiform Sign Lu2 Times Dish +\U0001251B;Cuneiform Sign Lu2 Times Hal +\U0001251C;Cuneiform Sign Lu2 Times Pap +\U0001251D;Cuneiform Sign Lu2 Times Pap Plus Pap Plus Lu3 +\U0001251E;Cuneiform Sign Lu2 Times Tak4 +\U0001251F;Cuneiform Sign Mi Plus Za7 +\U00012520;Cuneiform Sign Mush Over Mush Times Ga +\U00012521;Cuneiform Sign Mush Over Mush Times Kak +\U00012522;Cuneiform Sign Ninda2 Times Dim Gunu +\U00012523;Cuneiform Sign Ninda2 Times Gish +\U00012524;Cuneiform Sign Ninda2 Times Gul +\U00012525;Cuneiform Sign Ninda2 Times Hi +\U00012526;Cuneiform Sign Ninda2 Times Kesh2 +\U00012527;Cuneiform Sign Ninda2 Times Lak-050 +\U00012528;Cuneiform Sign Ninda2 Times Mash +\U00012529;Cuneiform Sign Ninda2 Times Pap Plus Pap +\U0001252A;Cuneiform Sign Ninda2 Times U +\U0001252B;Cuneiform Sign Ninda2 Times U Plus U +\U0001252C;Cuneiform Sign Ninda2 Times Uruda +\U0001252D;Cuneiform Sign Sag Gunu Times Ha +\U0001252E;Cuneiform Sign Sag Times En +\U0001252F;Cuneiform Sign Sag Times She At Left +\U00012530;Cuneiform Sign Sag Times Tak4 +\U00012531;Cuneiform Sign Sha6 Tenu +\U00012532;Cuneiform Sign She Over She +\U00012533;Cuneiform Sign She Plus Hub2 +\U00012534;Cuneiform Sign She Plus Nam2 +\U00012535;Cuneiform Sign She Plus Sar +\U00012536;Cuneiform Sign Shu2 Plus Dug Times Ni +\U00012537;Cuneiform Sign Shu2 Plus E2 Times An +\U00012538;Cuneiform Sign Si Times Tak4 +\U00012539;Cuneiform Sign Tak4 Plus Sag +\U0001253A;Cuneiform Sign Tum Times Gan2 Tenu +\U0001253B;Cuneiform Sign Tum Times Three Dish +\U0001253C;Cuneiform Sign Ur2 Inverted +\U0001253D;Cuneiform Sign Ur2 Times Ud +\U0001253E;Cuneiform Sign Uru Times Dara3 +\U0001253F;Cuneiform Sign Uru Times Lak-668 +\U00012540;Cuneiform Sign Uru Times Lu3 +\U00012541;Cuneiform Sign Za7 +\U00012542;Cuneiform Sign Zu Over Zu Plus Sar +\U00012543;Cuneiform Sign Zu5 Times Three Dish Tenu +\U00012F90;Cypro-Minoan Sign Cm001 +\U00012F91;Cypro-Minoan Sign Cm002 +\U00012F92;Cypro-Minoan Sign Cm004 +\U00012F93;Cypro-Minoan Sign Cm005 +\U00012F94;Cypro-Minoan Sign Cm006 +\U00012F95;Cypro-Minoan Sign Cm007 +\U00012F96;Cypro-Minoan Sign Cm008 +\U00012F97;Cypro-Minoan Sign Cm009 +\U00012F98;Cypro-Minoan Sign Cm010 +\U00012F99;Cypro-Minoan Sign Cm011 +\U00012F9A;Cypro-Minoan Sign Cm012 +\U00012F9B;Cypro-Minoan Sign Cm012B +\U00012F9C;Cypro-Minoan Sign Cm013 +\U00012F9D;Cypro-Minoan Sign Cm015 +\U00012F9E;Cypro-Minoan Sign Cm017 +\U00012F9F;Cypro-Minoan Sign Cm019 +\U00012FA0;Cypro-Minoan Sign Cm021 +\U00012FA1;Cypro-Minoan Sign Cm023 +\U00012FA2;Cypro-Minoan Sign Cm024 +\U00012FA3;Cypro-Minoan Sign Cm025 +\U00012FA4;Cypro-Minoan Sign Cm026 +\U00012FA5;Cypro-Minoan Sign Cm027 +\U00012FA6;Cypro-Minoan Sign Cm028 +\U00012FA7;Cypro-Minoan Sign Cm029 +\U00012FA8;Cypro-Minoan Sign Cm030 +\U00012FA9;Cypro-Minoan Sign Cm033 +\U00012FAA;Cypro-Minoan Sign Cm034 +\U00012FAB;Cypro-Minoan Sign Cm035 +\U00012FAC;Cypro-Minoan Sign Cm036 +\U00012FAD;Cypro-Minoan Sign Cm037 +\U00012FAE;Cypro-Minoan Sign Cm038 +\U00012FAF;Cypro-Minoan Sign Cm039 +\U00012FB0;Cypro-Minoan Sign Cm040 +\U00012FB1;Cypro-Minoan Sign Cm041 +\U00012FB2;Cypro-Minoan Sign Cm044 +\U00012FB3;Cypro-Minoan Sign Cm046 +\U00012FB4;Cypro-Minoan Sign Cm047 +\U00012FB5;Cypro-Minoan Sign Cm049 +\U00012FB6;Cypro-Minoan Sign Cm050 +\U00012FB7;Cypro-Minoan Sign Cm051 +\U00012FB8;Cypro-Minoan Sign Cm052 +\U00012FB9;Cypro-Minoan Sign Cm053 +\U00012FBA;Cypro-Minoan Sign Cm054 +\U00012FBB;Cypro-Minoan Sign Cm055 +\U00012FBC;Cypro-Minoan Sign Cm056 +\U00012FBD;Cypro-Minoan Sign Cm058 +\U00012FBE;Cypro-Minoan Sign Cm059 +\U00012FBF;Cypro-Minoan Sign Cm060 +\U00012FC0;Cypro-Minoan Sign Cm061 +\U00012FC1;Cypro-Minoan Sign Cm062 +\U00012FC2;Cypro-Minoan Sign Cm063 +\U00012FC3;Cypro-Minoan Sign Cm064 +\U00012FC4;Cypro-Minoan Sign Cm066 +\U00012FC5;Cypro-Minoan Sign Cm067 +\U00012FC6;Cypro-Minoan Sign Cm068 +\U00012FC7;Cypro-Minoan Sign Cm069 +\U00012FC8;Cypro-Minoan Sign Cm070 +\U00012FC9;Cypro-Minoan Sign Cm071 +\U00012FCA;Cypro-Minoan Sign Cm072 +\U00012FCB;Cypro-Minoan Sign Cm073 +\U00012FCC;Cypro-Minoan Sign Cm074 +\U00012FCD;Cypro-Minoan Sign Cm075 +\U00012FCE;Cypro-Minoan Sign Cm075B +\U00012FCF;Cypro-Minoan Sign Cm076 +\U00012FD0;Cypro-Minoan Sign Cm078 +\U00012FD1;Cypro-Minoan Sign Cm079 +\U00012FD2;Cypro-Minoan Sign Cm080 +\U00012FD3;Cypro-Minoan Sign Cm081 +\U00012FD4;Cypro-Minoan Sign Cm082 +\U00012FD5;Cypro-Minoan Sign Cm083 +\U00012FD6;Cypro-Minoan Sign Cm084 +\U00012FD7;Cypro-Minoan Sign Cm085 +\U00012FD8;Cypro-Minoan Sign Cm086 +\U00012FD9;Cypro-Minoan Sign Cm087 +\U00012FDA;Cypro-Minoan Sign Cm088 +\U00012FDB;Cypro-Minoan Sign Cm089 +\U00012FDC;Cypro-Minoan Sign Cm090 +\U00012FDD;Cypro-Minoan Sign Cm091 +\U00012FDE;Cypro-Minoan Sign Cm092 +\U00012FDF;Cypro-Minoan Sign Cm094 +\U00012FE0;Cypro-Minoan Sign Cm095 +\U00012FE1;Cypro-Minoan Sign Cm096 +\U00012FE2;Cypro-Minoan Sign Cm097 +\U00012FE3;Cypro-Minoan Sign Cm098 +\U00012FE4;Cypro-Minoan Sign Cm099 +\U00012FE5;Cypro-Minoan Sign Cm100 +\U00012FE6;Cypro-Minoan Sign Cm101 +\U00012FE7;Cypro-Minoan Sign Cm102 +\U00012FE8;Cypro-Minoan Sign Cm103 +\U00012FE9;Cypro-Minoan Sign Cm104 +\U00012FEA;Cypro-Minoan Sign Cm105 +\U00012FEB;Cypro-Minoan Sign Cm107 +\U00012FEC;Cypro-Minoan Sign Cm108 +\U00012FED;Cypro-Minoan Sign Cm109 +\U00012FEE;Cypro-Minoan Sign Cm110 +\U00012FEF;Cypro-Minoan Sign Cm112 +\U00012FF0;Cypro-Minoan Sign Cm114 +\U00012FF1;Cypro-Minoan Sign Cm301 +\U00012FF2;Cypro-Minoan Sign Cm302 +\U00013000;Egyptian Hieroglyph A001 +\U00013001;Egyptian Hieroglyph A002 +\U00013002;Egyptian Hieroglyph A003 +\U00013003;Egyptian Hieroglyph A004 +\U00013004;Egyptian Hieroglyph A005 +\U00013005;Egyptian Hieroglyph A005A +\U00013006;Egyptian Hieroglyph A006 +\U00013007;Egyptian Hieroglyph A006A +\U00013008;Egyptian Hieroglyph A006B +\U00013009;Egyptian Hieroglyph A007 +\U0001300A;Egyptian Hieroglyph A008 +\U0001300B;Egyptian Hieroglyph A009 +\U0001300C;Egyptian Hieroglyph A010 +\U0001300D;Egyptian Hieroglyph A011 +\U0001300E;Egyptian Hieroglyph A012 +\U0001300F;Egyptian Hieroglyph A013 +\U00013010;Egyptian Hieroglyph A014 +\U00013011;Egyptian Hieroglyph A014A +\U00013012;Egyptian Hieroglyph A015 +\U00013013;Egyptian Hieroglyph A016 +\U00013014;Egyptian Hieroglyph A017 +\U00013015;Egyptian Hieroglyph A017A +\U00013016;Egyptian Hieroglyph A018 +\U00013017;Egyptian Hieroglyph A019 +\U00013018;Egyptian Hieroglyph A020 +\U00013019;Egyptian Hieroglyph A021 +\U0001301A;Egyptian Hieroglyph A022 +\U0001301B;Egyptian Hieroglyph A023 +\U0001301C;Egyptian Hieroglyph A024 +\U0001301D;Egyptian Hieroglyph A025 +\U0001301E;Egyptian Hieroglyph A026 +\U0001301F;Egyptian Hieroglyph A027 +\U00013020;Egyptian Hieroglyph A028 +\U00013021;Egyptian Hieroglyph A029 +\U00013022;Egyptian Hieroglyph A030 +\U00013023;Egyptian Hieroglyph A031 +\U00013024;Egyptian Hieroglyph A032 +\U00013025;Egyptian Hieroglyph A032A +\U00013026;Egyptian Hieroglyph A033 +\U00013027;Egyptian Hieroglyph A034 +\U00013028;Egyptian Hieroglyph A035 +\U00013029;Egyptian Hieroglyph A036 +\U0001302A;Egyptian Hieroglyph A037 +\U0001302B;Egyptian Hieroglyph A038 +\U0001302C;Egyptian Hieroglyph A039 +\U0001302D;Egyptian Hieroglyph A040 +\U0001302E;Egyptian Hieroglyph A040A +\U0001302F;Egyptian Hieroglyph A041 +\U00013030;Egyptian Hieroglyph A042 +\U00013031;Egyptian Hieroglyph A042A +\U00013032;Egyptian Hieroglyph A043 +\U00013033;Egyptian Hieroglyph A043A +\U00013034;Egyptian Hieroglyph A044 +\U00013035;Egyptian Hieroglyph A045 +\U00013036;Egyptian Hieroglyph A045A +\U00013037;Egyptian Hieroglyph A046 +\U00013038;Egyptian Hieroglyph A047 +\U00013039;Egyptian Hieroglyph A048 +\U0001303A;Egyptian Hieroglyph A049 +\U0001303B;Egyptian Hieroglyph A050 +\U0001303C;Egyptian Hieroglyph A051 +\U0001303D;Egyptian Hieroglyph A052 +\U0001303E;Egyptian Hieroglyph A053 +\U0001303F;Egyptian Hieroglyph A054 +\U00013040;Egyptian Hieroglyph A055 +\U00013041;Egyptian Hieroglyph A056 +\U00013042;Egyptian Hieroglyph A057 +\U00013043;Egyptian Hieroglyph A058 +\U00013044;Egyptian Hieroglyph A059 +\U00013045;Egyptian Hieroglyph A060 +\U00013046;Egyptian Hieroglyph A061 +\U00013047;Egyptian Hieroglyph A062 +\U00013048;Egyptian Hieroglyph A063 +\U00013049;Egyptian Hieroglyph A064 +\U0001304A;Egyptian Hieroglyph A065 +\U0001304B;Egyptian Hieroglyph A066 +\U0001304C;Egyptian Hieroglyph A067 +\U0001304D;Egyptian Hieroglyph A068 +\U0001304E;Egyptian Hieroglyph A069 +\U0001304F;Egyptian Hieroglyph A070 +\U00013050;Egyptian Hieroglyph B001 +\U00013051;Egyptian Hieroglyph B002 +\U00013052;Egyptian Hieroglyph B003 +\U00013053;Egyptian Hieroglyph B004 +\U00013054;Egyptian Hieroglyph B005 +\U00013055;Egyptian Hieroglyph B005A +\U00013056;Egyptian Hieroglyph B006 +\U00013057;Egyptian Hieroglyph B007 +\U00013058;Egyptian Hieroglyph B008 +\U00013059;Egyptian Hieroglyph B009 +\U0001305A;Egyptian Hieroglyph C001 +\U0001305B;Egyptian Hieroglyph C002 +\U0001305C;Egyptian Hieroglyph C002A +\U0001305D;Egyptian Hieroglyph C002B +\U0001305E;Egyptian Hieroglyph C002C +\U0001305F;Egyptian Hieroglyph C003 +\U00013060;Egyptian Hieroglyph C004 +\U00013061;Egyptian Hieroglyph C005 +\U00013062;Egyptian Hieroglyph C006 +\U00013063;Egyptian Hieroglyph C007 +\U00013064;Egyptian Hieroglyph C008 +\U00013065;Egyptian Hieroglyph C009 +\U00013066;Egyptian Hieroglyph C010 +\U00013067;Egyptian Hieroglyph C010A +\U00013068;Egyptian Hieroglyph C011 +\U00013069;Egyptian Hieroglyph C012 +\U0001306A;Egyptian Hieroglyph C013 +\U0001306B;Egyptian Hieroglyph C014 +\U0001306C;Egyptian Hieroglyph C015 +\U0001306D;Egyptian Hieroglyph C016 +\U0001306E;Egyptian Hieroglyph C017 +\U0001306F;Egyptian Hieroglyph C018 +\U00013070;Egyptian Hieroglyph C019 +\U00013071;Egyptian Hieroglyph C020 +\U00013072;Egyptian Hieroglyph C021 +\U00013073;Egyptian Hieroglyph C022 +\U00013074;Egyptian Hieroglyph C023 +\U00013075;Egyptian Hieroglyph C024 +\U00013076;Egyptian Hieroglyph D001 +\U00013077;Egyptian Hieroglyph D002 +\U00013078;Egyptian Hieroglyph D003 +\U00013079;Egyptian Hieroglyph D004 +\U0001307A;Egyptian Hieroglyph D005 +\U0001307B;Egyptian Hieroglyph D006 +\U0001307C;Egyptian Hieroglyph D007 +\U0001307D;Egyptian Hieroglyph D008 +\U0001307E;Egyptian Hieroglyph D008A +\U0001307F;Egyptian Hieroglyph D009 +\U00013080;Egyptian Hieroglyph D010 +\U00013081;Egyptian Hieroglyph D011 +\U00013082;Egyptian Hieroglyph D012 +\U00013083;Egyptian Hieroglyph D013 +\U00013084;Egyptian Hieroglyph D014 +\U00013085;Egyptian Hieroglyph D015 +\U00013086;Egyptian Hieroglyph D016 +\U00013087;Egyptian Hieroglyph D017 +\U00013088;Egyptian Hieroglyph D018 +\U00013089;Egyptian Hieroglyph D019 +\U0001308A;Egyptian Hieroglyph D020 +\U0001308B;Egyptian Hieroglyph D021 +\U0001308C;Egyptian Hieroglyph D022 +\U0001308D;Egyptian Hieroglyph D023 +\U0001308E;Egyptian Hieroglyph D024 +\U0001308F;Egyptian Hieroglyph D025 +\U00013090;Egyptian Hieroglyph D026 +\U00013091;Egyptian Hieroglyph D027 +\U00013092;Egyptian Hieroglyph D027A +\U00013093;Egyptian Hieroglyph D028 +\U00013094;Egyptian Hieroglyph D029 +\U00013095;Egyptian Hieroglyph D030 +\U00013096;Egyptian Hieroglyph D031 +\U00013097;Egyptian Hieroglyph D031A +\U00013098;Egyptian Hieroglyph D032 +\U00013099;Egyptian Hieroglyph D033 +\U0001309A;Egyptian Hieroglyph D034 +\U0001309B;Egyptian Hieroglyph D034A +\U0001309C;Egyptian Hieroglyph D035 +\U0001309D;Egyptian Hieroglyph D036 +\U0001309E;Egyptian Hieroglyph D037 +\U0001309F;Egyptian Hieroglyph D038 +\U000130A0;Egyptian Hieroglyph D039 +\U000130A1;Egyptian Hieroglyph D040 +\U000130A2;Egyptian Hieroglyph D041 +\U000130A3;Egyptian Hieroglyph D042 +\U000130A4;Egyptian Hieroglyph D043 +\U000130A5;Egyptian Hieroglyph D044 +\U000130A6;Egyptian Hieroglyph D045 +\U000130A7;Egyptian Hieroglyph D046 +\U000130A8;Egyptian Hieroglyph D046A +\U000130A9;Egyptian Hieroglyph D047 +\U000130AA;Egyptian Hieroglyph D048 +\U000130AB;Egyptian Hieroglyph D048A +\U000130AC;Egyptian Hieroglyph D049 +\U000130AD;Egyptian Hieroglyph D050 +\U000130AE;Egyptian Hieroglyph D050A +\U000130AF;Egyptian Hieroglyph D050B +\U000130B0;Egyptian Hieroglyph D050C +\U000130B1;Egyptian Hieroglyph D050D +\U000130B2;Egyptian Hieroglyph D050E +\U000130B3;Egyptian Hieroglyph D050F +\U000130B4;Egyptian Hieroglyph D050G +\U000130B5;Egyptian Hieroglyph D050H +\U000130B6;Egyptian Hieroglyph D050I +\U000130B7;Egyptian Hieroglyph D051 +\U000130B8;Egyptian Hieroglyph D052 +\U000130B9;Egyptian Hieroglyph D052A +\U000130BA;Egyptian Hieroglyph D053 +\U000130BB;Egyptian Hieroglyph D054 +\U000130BC;Egyptian Hieroglyph D054A +\U000130BD;Egyptian Hieroglyph D055 +\U000130BE;Egyptian Hieroglyph D056 +\U000130BF;Egyptian Hieroglyph D057 +\U000130C0;Egyptian Hieroglyph D058 +\U000130C1;Egyptian Hieroglyph D059 +\U000130C2;Egyptian Hieroglyph D060 +\U000130C3;Egyptian Hieroglyph D061 +\U000130C4;Egyptian Hieroglyph D062 +\U000130C5;Egyptian Hieroglyph D063 +\U000130C6;Egyptian Hieroglyph D064 +\U000130C7;Egyptian Hieroglyph D065 +\U000130C8;Egyptian Hieroglyph D066 +\U000130C9;Egyptian Hieroglyph D067 +\U000130CA;Egyptian Hieroglyph D067A +\U000130CB;Egyptian Hieroglyph D067B +\U000130CC;Egyptian Hieroglyph D067C +\U000130CD;Egyptian Hieroglyph D067D +\U000130CE;Egyptian Hieroglyph D067E +\U000130CF;Egyptian Hieroglyph D067F +\U000130D0;Egyptian Hieroglyph D067G +\U000130D1;Egyptian Hieroglyph D067H +\U000130D2;Egyptian Hieroglyph E001 +\U000130D3;Egyptian Hieroglyph E002 +\U000130D4;Egyptian Hieroglyph E003 +\U000130D5;Egyptian Hieroglyph E004 +\U000130D6;Egyptian Hieroglyph E005 +\U000130D7;Egyptian Hieroglyph E006 +\U000130D8;Egyptian Hieroglyph E007 +\U000130D9;Egyptian Hieroglyph E008 +\U000130DA;Egyptian Hieroglyph E008A +\U000130DB;Egyptian Hieroglyph E009 +\U000130DC;Egyptian Hieroglyph E009A +\U000130DD;Egyptian Hieroglyph E010 +\U000130DE;Egyptian Hieroglyph E011 +\U000130DF;Egyptian Hieroglyph E012 +\U000130E0;Egyptian Hieroglyph E013 +\U000130E1;Egyptian Hieroglyph E014 +\U000130E2;Egyptian Hieroglyph E015 +\U000130E3;Egyptian Hieroglyph E016 +\U000130E4;Egyptian Hieroglyph E016A +\U000130E5;Egyptian Hieroglyph E017 +\U000130E6;Egyptian Hieroglyph E017A +\U000130E7;Egyptian Hieroglyph E018 +\U000130E8;Egyptian Hieroglyph E019 +\U000130E9;Egyptian Hieroglyph E020 +\U000130EA;Egyptian Hieroglyph E020A +\U000130EB;Egyptian Hieroglyph E021 +\U000130EC;Egyptian Hieroglyph E022 +\U000130ED;Egyptian Hieroglyph E023 +\U000130EE;Egyptian Hieroglyph E024 +\U000130EF;Egyptian Hieroglyph E025 +\U000130F0;Egyptian Hieroglyph E026 +\U000130F1;Egyptian Hieroglyph E027 +\U000130F2;Egyptian Hieroglyph E028 +\U000130F3;Egyptian Hieroglyph E028A +\U000130F4;Egyptian Hieroglyph E029 +\U000130F5;Egyptian Hieroglyph E030 +\U000130F6;Egyptian Hieroglyph E031 +\U000130F7;Egyptian Hieroglyph E032 +\U000130F8;Egyptian Hieroglyph E033 +\U000130F9;Egyptian Hieroglyph E034 +\U000130FA;Egyptian Hieroglyph E034A +\U000130FB;Egyptian Hieroglyph E036 +\U000130FC;Egyptian Hieroglyph E037 +\U000130FD;Egyptian Hieroglyph E038 +\U000130FE;Egyptian Hieroglyph F001 +\U000130FF;Egyptian Hieroglyph F001A +\U00013100;Egyptian Hieroglyph F002 +\U00013101;Egyptian Hieroglyph F003 +\U00013102;Egyptian Hieroglyph F004 +\U00013103;Egyptian Hieroglyph F005 +\U00013104;Egyptian Hieroglyph F006 +\U00013105;Egyptian Hieroglyph F007 +\U00013106;Egyptian Hieroglyph F008 +\U00013107;Egyptian Hieroglyph F009 +\U00013108;Egyptian Hieroglyph F010 +\U00013109;Egyptian Hieroglyph F011 +\U0001310A;Egyptian Hieroglyph F012 +\U0001310B;Egyptian Hieroglyph F013 +\U0001310C;Egyptian Hieroglyph F013A +\U0001310D;Egyptian Hieroglyph F014 +\U0001310E;Egyptian Hieroglyph F015 +\U0001310F;Egyptian Hieroglyph F016 +\U00013110;Egyptian Hieroglyph F017 +\U00013111;Egyptian Hieroglyph F018 +\U00013112;Egyptian Hieroglyph F019 +\U00013113;Egyptian Hieroglyph F020 +\U00013114;Egyptian Hieroglyph F021 +\U00013115;Egyptian Hieroglyph F021A +\U00013116;Egyptian Hieroglyph F022 +\U00013117;Egyptian Hieroglyph F023 +\U00013118;Egyptian Hieroglyph F024 +\U00013119;Egyptian Hieroglyph F025 +\U0001311A;Egyptian Hieroglyph F026 +\U0001311B;Egyptian Hieroglyph F027 +\U0001311C;Egyptian Hieroglyph F028 +\U0001311D;Egyptian Hieroglyph F029 +\U0001311E;Egyptian Hieroglyph F030 +\U0001311F;Egyptian Hieroglyph F031 +\U00013120;Egyptian Hieroglyph F031A +\U00013121;Egyptian Hieroglyph F032 +\U00013122;Egyptian Hieroglyph F033 +\U00013123;Egyptian Hieroglyph F034 +\U00013124;Egyptian Hieroglyph F035 +\U00013125;Egyptian Hieroglyph F036 +\U00013126;Egyptian Hieroglyph F037 +\U00013127;Egyptian Hieroglyph F037A +\U00013128;Egyptian Hieroglyph F038 +\U00013129;Egyptian Hieroglyph F038A +\U0001312A;Egyptian Hieroglyph F039 +\U0001312B;Egyptian Hieroglyph F040 +\U0001312C;Egyptian Hieroglyph F041 +\U0001312D;Egyptian Hieroglyph F042 +\U0001312E;Egyptian Hieroglyph F043 +\U0001312F;Egyptian Hieroglyph F044 +\U00013130;Egyptian Hieroglyph F045 +\U00013131;Egyptian Hieroglyph F045A +\U00013132;Egyptian Hieroglyph F046 +\U00013133;Egyptian Hieroglyph F046A +\U00013134;Egyptian Hieroglyph F047 +\U00013135;Egyptian Hieroglyph F047A +\U00013136;Egyptian Hieroglyph F048 +\U00013137;Egyptian Hieroglyph F049 +\U00013138;Egyptian Hieroglyph F050 +\U00013139;Egyptian Hieroglyph F051 +\U0001313A;Egyptian Hieroglyph F051A +\U0001313B;Egyptian Hieroglyph F051B +\U0001313C;Egyptian Hieroglyph F051C +\U0001313D;Egyptian Hieroglyph F052 +\U0001313E;Egyptian Hieroglyph F053 +\U0001313F;Egyptian Hieroglyph G001 +\U00013140;Egyptian Hieroglyph G002 +\U00013141;Egyptian Hieroglyph G003 +\U00013142;Egyptian Hieroglyph G004 +\U00013143;Egyptian Hieroglyph G005 +\U00013144;Egyptian Hieroglyph G006 +\U00013145;Egyptian Hieroglyph G006A +\U00013146;Egyptian Hieroglyph G007 +\U00013147;Egyptian Hieroglyph G007A +\U00013148;Egyptian Hieroglyph G007B +\U00013149;Egyptian Hieroglyph G008 +\U0001314A;Egyptian Hieroglyph G009 +\U0001314B;Egyptian Hieroglyph G010 +\U0001314C;Egyptian Hieroglyph G011 +\U0001314D;Egyptian Hieroglyph G011A +\U0001314E;Egyptian Hieroglyph G012 +\U0001314F;Egyptian Hieroglyph G013 +\U00013150;Egyptian Hieroglyph G014 +\U00013151;Egyptian Hieroglyph G015 +\U00013152;Egyptian Hieroglyph G016 +\U00013153;Egyptian Hieroglyph G017 +\U00013154;Egyptian Hieroglyph G018 +\U00013155;Egyptian Hieroglyph G019 +\U00013156;Egyptian Hieroglyph G020 +\U00013157;Egyptian Hieroglyph G020A +\U00013158;Egyptian Hieroglyph G021 +\U00013159;Egyptian Hieroglyph G022 +\U0001315A;Egyptian Hieroglyph G023 +\U0001315B;Egyptian Hieroglyph G024 +\U0001315C;Egyptian Hieroglyph G025 +\U0001315D;Egyptian Hieroglyph G026 +\U0001315E;Egyptian Hieroglyph G026A +\U0001315F;Egyptian Hieroglyph G027 +\U00013160;Egyptian Hieroglyph G028 +\U00013161;Egyptian Hieroglyph G029 +\U00013162;Egyptian Hieroglyph G030 +\U00013163;Egyptian Hieroglyph G031 +\U00013164;Egyptian Hieroglyph G032 +\U00013165;Egyptian Hieroglyph G033 +\U00013166;Egyptian Hieroglyph G034 +\U00013167;Egyptian Hieroglyph G035 +\U00013168;Egyptian Hieroglyph G036 +\U00013169;Egyptian Hieroglyph G036A +\U0001316A;Egyptian Hieroglyph G037 +\U0001316B;Egyptian Hieroglyph G037A +\U0001316C;Egyptian Hieroglyph G038 +\U0001316D;Egyptian Hieroglyph G039 +\U0001316E;Egyptian Hieroglyph G040 +\U0001316F;Egyptian Hieroglyph G041 +\U00013170;Egyptian Hieroglyph G042 +\U00013171;Egyptian Hieroglyph G043 +\U00013172;Egyptian Hieroglyph G043A +\U00013173;Egyptian Hieroglyph G044 +\U00013174;Egyptian Hieroglyph G045 +\U00013175;Egyptian Hieroglyph G045A +\U00013176;Egyptian Hieroglyph G046 +\U00013177;Egyptian Hieroglyph G047 +\U00013178;Egyptian Hieroglyph G048 +\U00013179;Egyptian Hieroglyph G049 +\U0001317A;Egyptian Hieroglyph G050 +\U0001317B;Egyptian Hieroglyph G051 +\U0001317C;Egyptian Hieroglyph G052 +\U0001317D;Egyptian Hieroglyph G053 +\U0001317E;Egyptian Hieroglyph G054 +\U0001317F;Egyptian Hieroglyph H001 +\U00013180;Egyptian Hieroglyph H002 +\U00013181;Egyptian Hieroglyph H003 +\U00013182;Egyptian Hieroglyph H004 +\U00013183;Egyptian Hieroglyph H005 +\U00013184;Egyptian Hieroglyph H006 +\U00013185;Egyptian Hieroglyph H006A +\U00013186;Egyptian Hieroglyph H007 +\U00013187;Egyptian Hieroglyph H008 +\U00013188;Egyptian Hieroglyph I001 +\U00013189;Egyptian Hieroglyph I002 +\U0001318A;Egyptian Hieroglyph I003 +\U0001318B;Egyptian Hieroglyph I004 +\U0001318C;Egyptian Hieroglyph I005 +\U0001318D;Egyptian Hieroglyph I005A +\U0001318E;Egyptian Hieroglyph I006 +\U0001318F;Egyptian Hieroglyph I007 +\U00013190;Egyptian Hieroglyph I008 +\U00013191;Egyptian Hieroglyph I009 +\U00013192;Egyptian Hieroglyph I009A +\U00013193;Egyptian Hieroglyph I010 +\U00013194;Egyptian Hieroglyph I010A +\U00013195;Egyptian Hieroglyph I011 +\U00013196;Egyptian Hieroglyph I011A +\U00013197;Egyptian Hieroglyph I012 +\U00013198;Egyptian Hieroglyph I013 +\U00013199;Egyptian Hieroglyph I014 +\U0001319A;Egyptian Hieroglyph I015 +\U0001319B;Egyptian Hieroglyph K001 +\U0001319C;Egyptian Hieroglyph K002 +\U0001319D;Egyptian Hieroglyph K003 +\U0001319E;Egyptian Hieroglyph K004 +\U0001319F;Egyptian Hieroglyph K005 +\U000131A0;Egyptian Hieroglyph K006 +\U000131A1;Egyptian Hieroglyph K007 +\U000131A2;Egyptian Hieroglyph K008 +\U000131A3;Egyptian Hieroglyph L001 +\U000131A4;Egyptian Hieroglyph L002 +\U000131A5;Egyptian Hieroglyph L002A +\U000131A6;Egyptian Hieroglyph L003 +\U000131A7;Egyptian Hieroglyph L004 +\U000131A8;Egyptian Hieroglyph L005 +\U000131A9;Egyptian Hieroglyph L006 +\U000131AA;Egyptian Hieroglyph L006A +\U000131AB;Egyptian Hieroglyph L007 +\U000131AC;Egyptian Hieroglyph L008 +\U000131AD;Egyptian Hieroglyph M001 +\U000131AE;Egyptian Hieroglyph M001A +\U000131AF;Egyptian Hieroglyph M001B +\U000131B0;Egyptian Hieroglyph M002 +\U000131B1;Egyptian Hieroglyph M003 +\U000131B2;Egyptian Hieroglyph M003A +\U000131B3;Egyptian Hieroglyph M004 +\U000131B4;Egyptian Hieroglyph M005 +\U000131B5;Egyptian Hieroglyph M006 +\U000131B6;Egyptian Hieroglyph M007 +\U000131B7;Egyptian Hieroglyph M008 +\U000131B8;Egyptian Hieroglyph M009 +\U000131B9;Egyptian Hieroglyph M010 +\U000131BA;Egyptian Hieroglyph M010A +\U000131BB;Egyptian Hieroglyph M011 +\U000131BC;Egyptian Hieroglyph M012 +\U000131BD;Egyptian Hieroglyph M012A +\U000131BE;Egyptian Hieroglyph M012B +\U000131BF;Egyptian Hieroglyph M012C +\U000131C0;Egyptian Hieroglyph M012D +\U000131C1;Egyptian Hieroglyph M012E +\U000131C2;Egyptian Hieroglyph M012F +\U000131C3;Egyptian Hieroglyph M012G +\U000131C4;Egyptian Hieroglyph M012H +\U000131C5;Egyptian Hieroglyph M013 +\U000131C6;Egyptian Hieroglyph M014 +\U000131C7;Egyptian Hieroglyph M015 +\U000131C8;Egyptian Hieroglyph M015A +\U000131C9;Egyptian Hieroglyph M016 +\U000131CA;Egyptian Hieroglyph M016A +\U000131CB;Egyptian Hieroglyph M017 +\U000131CC;Egyptian Hieroglyph M017A +\U000131CD;Egyptian Hieroglyph M018 +\U000131CE;Egyptian Hieroglyph M019 +\U000131CF;Egyptian Hieroglyph M020 +\U000131D0;Egyptian Hieroglyph M021 +\U000131D1;Egyptian Hieroglyph M022 +\U000131D2;Egyptian Hieroglyph M022A +\U000131D3;Egyptian Hieroglyph M023 +\U000131D4;Egyptian Hieroglyph M024 +\U000131D5;Egyptian Hieroglyph M024A +\U000131D6;Egyptian Hieroglyph M025 +\U000131D7;Egyptian Hieroglyph M026 +\U000131D8;Egyptian Hieroglyph M027 +\U000131D9;Egyptian Hieroglyph M028 +\U000131DA;Egyptian Hieroglyph M028A +\U000131DB;Egyptian Hieroglyph M029 +\U000131DC;Egyptian Hieroglyph M030 +\U000131DD;Egyptian Hieroglyph M031 +\U000131DE;Egyptian Hieroglyph M031A +\U000131DF;Egyptian Hieroglyph M032 +\U000131E0;Egyptian Hieroglyph M033 +\U000131E1;Egyptian Hieroglyph M033A +\U000131E2;Egyptian Hieroglyph M033B +\U000131E3;Egyptian Hieroglyph M034 +\U000131E4;Egyptian Hieroglyph M035 +\U000131E5;Egyptian Hieroglyph M036 +\U000131E6;Egyptian Hieroglyph M037 +\U000131E7;Egyptian Hieroglyph M038 +\U000131E8;Egyptian Hieroglyph M039 +\U000131E9;Egyptian Hieroglyph M040 +\U000131EA;Egyptian Hieroglyph M040A +\U000131EB;Egyptian Hieroglyph M041 +\U000131EC;Egyptian Hieroglyph M042 +\U000131ED;Egyptian Hieroglyph M043 +\U000131EE;Egyptian Hieroglyph M044 +\U000131EF;Egyptian Hieroglyph N001 +\U000131F0;Egyptian Hieroglyph N002 +\U000131F1;Egyptian Hieroglyph N003 +\U000131F2;Egyptian Hieroglyph N004 +\U000131F3;Egyptian Hieroglyph N005 +\U000131F4;Egyptian Hieroglyph N006 +\U000131F5;Egyptian Hieroglyph N007 +\U000131F6;Egyptian Hieroglyph N008 +\U000131F7;Egyptian Hieroglyph N009 +\U000131F8;Egyptian Hieroglyph N010 +\U000131F9;Egyptian Hieroglyph N011 +\U000131FA;Egyptian Hieroglyph N012 +\U000131FB;Egyptian Hieroglyph N013 +\U000131FC;Egyptian Hieroglyph N014 +\U000131FD;Egyptian Hieroglyph N015 +\U000131FE;Egyptian Hieroglyph N016 +\U000131FF;Egyptian Hieroglyph N017 +\U00013200;Egyptian Hieroglyph N018 +\U00013201;Egyptian Hieroglyph N018A +\U00013202;Egyptian Hieroglyph N018B +\U00013203;Egyptian Hieroglyph N019 +\U00013204;Egyptian Hieroglyph N020 +\U00013205;Egyptian Hieroglyph N021 +\U00013206;Egyptian Hieroglyph N022 +\U00013207;Egyptian Hieroglyph N023 +\U00013208;Egyptian Hieroglyph N024 +\U00013209;Egyptian Hieroglyph N025 +\U0001320A;Egyptian Hieroglyph N025A +\U0001320B;Egyptian Hieroglyph N026 +\U0001320C;Egyptian Hieroglyph N027 +\U0001320D;Egyptian Hieroglyph N028 +\U0001320E;Egyptian Hieroglyph N029 +\U0001320F;Egyptian Hieroglyph N030 +\U00013210;Egyptian Hieroglyph N031 +\U00013211;Egyptian Hieroglyph N032 +\U00013212;Egyptian Hieroglyph N033 +\U00013213;Egyptian Hieroglyph N033A +\U00013214;Egyptian Hieroglyph N034 +\U00013215;Egyptian Hieroglyph N034A +\U00013216;Egyptian Hieroglyph N035 +\U00013217;Egyptian Hieroglyph N035A +\U00013218;Egyptian Hieroglyph N036 +\U00013219;Egyptian Hieroglyph N037 +\U0001321A;Egyptian Hieroglyph N037A +\U0001321B;Egyptian Hieroglyph N038 +\U0001321C;Egyptian Hieroglyph N039 +\U0001321D;Egyptian Hieroglyph N040 +\U0001321E;Egyptian Hieroglyph N041 +\U0001321F;Egyptian Hieroglyph N042 +\U00013220;Egyptian Hieroglyph Nl001 +\U00013221;Egyptian Hieroglyph Nl002 +\U00013222;Egyptian Hieroglyph Nl003 +\U00013223;Egyptian Hieroglyph Nl004 +\U00013224;Egyptian Hieroglyph Nl005 +\U00013225;Egyptian Hieroglyph Nl005A +\U00013226;Egyptian Hieroglyph Nl006 +\U00013227;Egyptian Hieroglyph Nl007 +\U00013228;Egyptian Hieroglyph Nl008 +\U00013229;Egyptian Hieroglyph Nl009 +\U0001322A;Egyptian Hieroglyph Nl010 +\U0001322B;Egyptian Hieroglyph Nl011 +\U0001322C;Egyptian Hieroglyph Nl012 +\U0001322D;Egyptian Hieroglyph Nl013 +\U0001322E;Egyptian Hieroglyph Nl014 +\U0001322F;Egyptian Hieroglyph Nl015 +\U00013230;Egyptian Hieroglyph Nl016 +\U00013231;Egyptian Hieroglyph Nl017 +\U00013232;Egyptian Hieroglyph Nl017A +\U00013233;Egyptian Hieroglyph Nl018 +\U00013234;Egyptian Hieroglyph Nl019 +\U00013235;Egyptian Hieroglyph Nl020 +\U00013236;Egyptian Hieroglyph Nu001 +\U00013237;Egyptian Hieroglyph Nu002 +\U00013238;Egyptian Hieroglyph Nu003 +\U00013239;Egyptian Hieroglyph Nu004 +\U0001323A;Egyptian Hieroglyph Nu005 +\U0001323B;Egyptian Hieroglyph Nu006 +\U0001323C;Egyptian Hieroglyph Nu007 +\U0001323D;Egyptian Hieroglyph Nu008 +\U0001323E;Egyptian Hieroglyph Nu009 +\U0001323F;Egyptian Hieroglyph Nu010 +\U00013240;Egyptian Hieroglyph Nu010A +\U00013241;Egyptian Hieroglyph Nu011 +\U00013242;Egyptian Hieroglyph Nu011A +\U00013243;Egyptian Hieroglyph Nu012 +\U00013244;Egyptian Hieroglyph Nu013 +\U00013245;Egyptian Hieroglyph Nu014 +\U00013246;Egyptian Hieroglyph Nu015 +\U00013247;Egyptian Hieroglyph Nu016 +\U00013248;Egyptian Hieroglyph Nu017 +\U00013249;Egyptian Hieroglyph Nu018 +\U0001324A;Egyptian Hieroglyph Nu018A +\U0001324B;Egyptian Hieroglyph Nu019 +\U0001324C;Egyptian Hieroglyph Nu020 +\U0001324D;Egyptian Hieroglyph Nu021 +\U0001324E;Egyptian Hieroglyph Nu022 +\U0001324F;Egyptian Hieroglyph Nu022A +\U00013250;Egyptian Hieroglyph O001 +\U00013251;Egyptian Hieroglyph O001A +\U00013252;Egyptian Hieroglyph O002 +\U00013253;Egyptian Hieroglyph O003 +\U00013254;Egyptian Hieroglyph O004 +\U00013255;Egyptian Hieroglyph O005 +\U00013256;Egyptian Hieroglyph O005A +\U00013257;Egyptian Hieroglyph O006 +\U00013258;Egyptian Hieroglyph O006A +\U00013259;Egyptian Hieroglyph O006B +\U0001325A;Egyptian Hieroglyph O006C +\U0001325B;Egyptian Hieroglyph O006D +\U0001325C;Egyptian Hieroglyph O006E +\U0001325D;Egyptian Hieroglyph O006F +\U0001325E;Egyptian Hieroglyph O007 +\U0001325F;Egyptian Hieroglyph O008 +\U00013260;Egyptian Hieroglyph O009 +\U00013261;Egyptian Hieroglyph O010 +\U00013262;Egyptian Hieroglyph O010A +\U00013263;Egyptian Hieroglyph O010B +\U00013264;Egyptian Hieroglyph O010C +\U00013265;Egyptian Hieroglyph O011 +\U00013266;Egyptian Hieroglyph O012 +\U00013267;Egyptian Hieroglyph O013 +\U00013268;Egyptian Hieroglyph O014 +\U00013269;Egyptian Hieroglyph O015 +\U0001326A;Egyptian Hieroglyph O016 +\U0001326B;Egyptian Hieroglyph O017 +\U0001326C;Egyptian Hieroglyph O018 +\U0001326D;Egyptian Hieroglyph O019 +\U0001326E;Egyptian Hieroglyph O019A +\U0001326F;Egyptian Hieroglyph O020 +\U00013270;Egyptian Hieroglyph O020A +\U00013271;Egyptian Hieroglyph O021 +\U00013272;Egyptian Hieroglyph O022 +\U00013273;Egyptian Hieroglyph O023 +\U00013274;Egyptian Hieroglyph O024 +\U00013275;Egyptian Hieroglyph O024A +\U00013276;Egyptian Hieroglyph O025 +\U00013277;Egyptian Hieroglyph O025A +\U00013278;Egyptian Hieroglyph O026 +\U00013279;Egyptian Hieroglyph O027 +\U0001327A;Egyptian Hieroglyph O028 +\U0001327B;Egyptian Hieroglyph O029 +\U0001327C;Egyptian Hieroglyph O029A +\U0001327D;Egyptian Hieroglyph O030 +\U0001327E;Egyptian Hieroglyph O030A +\U0001327F;Egyptian Hieroglyph O031 +\U00013280;Egyptian Hieroglyph O032 +\U00013281;Egyptian Hieroglyph O033 +\U00013282;Egyptian Hieroglyph O033A +\U00013283;Egyptian Hieroglyph O034 +\U00013284;Egyptian Hieroglyph O035 +\U00013285;Egyptian Hieroglyph O036 +\U00013286;Egyptian Hieroglyph O036A +\U00013287;Egyptian Hieroglyph O036B +\U00013288;Egyptian Hieroglyph O036C +\U00013289;Egyptian Hieroglyph O036D +\U0001328A;Egyptian Hieroglyph O037 +\U0001328B;Egyptian Hieroglyph O038 +\U0001328C;Egyptian Hieroglyph O039 +\U0001328D;Egyptian Hieroglyph O040 +\U0001328E;Egyptian Hieroglyph O041 +\U0001328F;Egyptian Hieroglyph O042 +\U00013290;Egyptian Hieroglyph O043 +\U00013291;Egyptian Hieroglyph O044 +\U00013292;Egyptian Hieroglyph O045 +\U00013293;Egyptian Hieroglyph O046 +\U00013294;Egyptian Hieroglyph O047 +\U00013295;Egyptian Hieroglyph O048 +\U00013296;Egyptian Hieroglyph O049 +\U00013297;Egyptian Hieroglyph O050 +\U00013298;Egyptian Hieroglyph O050A +\U00013299;Egyptian Hieroglyph O050B +\U0001329A;Egyptian Hieroglyph O051 +\U0001329B;Egyptian Hieroglyph P001 +\U0001329C;Egyptian Hieroglyph P001A +\U0001329D;Egyptian Hieroglyph P002 +\U0001329E;Egyptian Hieroglyph P003 +\U0001329F;Egyptian Hieroglyph P003A +\U000132A0;Egyptian Hieroglyph P004 +\U000132A1;Egyptian Hieroglyph P005 +\U000132A2;Egyptian Hieroglyph P006 +\U000132A3;Egyptian Hieroglyph P007 +\U000132A4;Egyptian Hieroglyph P008 +\U000132A5;Egyptian Hieroglyph P009 +\U000132A6;Egyptian Hieroglyph P010 +\U000132A7;Egyptian Hieroglyph P011 +\U000132A8;Egyptian Hieroglyph Q001 +\U000132A9;Egyptian Hieroglyph Q002 +\U000132AA;Egyptian Hieroglyph Q003 +\U000132AB;Egyptian Hieroglyph Q004 +\U000132AC;Egyptian Hieroglyph Q005 +\U000132AD;Egyptian Hieroglyph Q006 +\U000132AE;Egyptian Hieroglyph Q007 +\U000132AF;Egyptian Hieroglyph R001 +\U000132B0;Egyptian Hieroglyph R002 +\U000132B1;Egyptian Hieroglyph R002A +\U000132B2;Egyptian Hieroglyph R003 +\U000132B3;Egyptian Hieroglyph R003A +\U000132B4;Egyptian Hieroglyph R003B +\U000132B5;Egyptian Hieroglyph R004 +\U000132B6;Egyptian Hieroglyph R005 +\U000132B7;Egyptian Hieroglyph R006 +\U000132B8;Egyptian Hieroglyph R007 +\U000132B9;Egyptian Hieroglyph R008 +\U000132BA;Egyptian Hieroglyph R009 +\U000132BB;Egyptian Hieroglyph R010 +\U000132BC;Egyptian Hieroglyph R010A +\U000132BD;Egyptian Hieroglyph R011 +\U000132BE;Egyptian Hieroglyph R012 +\U000132BF;Egyptian Hieroglyph R013 +\U000132C0;Egyptian Hieroglyph R014 +\U000132C1;Egyptian Hieroglyph R015 +\U000132C2;Egyptian Hieroglyph R016 +\U000132C3;Egyptian Hieroglyph R016A +\U000132C4;Egyptian Hieroglyph R017 +\U000132C5;Egyptian Hieroglyph R018 +\U000132C6;Egyptian Hieroglyph R019 +\U000132C7;Egyptian Hieroglyph R020 +\U000132C8;Egyptian Hieroglyph R021 +\U000132C9;Egyptian Hieroglyph R022 +\U000132CA;Egyptian Hieroglyph R023 +\U000132CB;Egyptian Hieroglyph R024 +\U000132CC;Egyptian Hieroglyph R025 +\U000132CD;Egyptian Hieroglyph R026 +\U000132CE;Egyptian Hieroglyph R027 +\U000132CF;Egyptian Hieroglyph R028 +\U000132D0;Egyptian Hieroglyph R029 +\U000132D1;Egyptian Hieroglyph S001 +\U000132D2;Egyptian Hieroglyph S002 +\U000132D3;Egyptian Hieroglyph S002A +\U000132D4;Egyptian Hieroglyph S003 +\U000132D5;Egyptian Hieroglyph S004 +\U000132D6;Egyptian Hieroglyph S005 +\U000132D7;Egyptian Hieroglyph S006 +\U000132D8;Egyptian Hieroglyph S006A +\U000132D9;Egyptian Hieroglyph S007 +\U000132DA;Egyptian Hieroglyph S008 +\U000132DB;Egyptian Hieroglyph S009 +\U000132DC;Egyptian Hieroglyph S010 +\U000132DD;Egyptian Hieroglyph S011 +\U000132DE;Egyptian Hieroglyph S012 +\U000132DF;Egyptian Hieroglyph S013 +\U000132E0;Egyptian Hieroglyph S014 +\U000132E1;Egyptian Hieroglyph S014A +\U000132E2;Egyptian Hieroglyph S014B +\U000132E3;Egyptian Hieroglyph S015 +\U000132E4;Egyptian Hieroglyph S016 +\U000132E5;Egyptian Hieroglyph S017 +\U000132E6;Egyptian Hieroglyph S017A +\U000132E7;Egyptian Hieroglyph S018 +\U000132E8;Egyptian Hieroglyph S019 +\U000132E9;Egyptian Hieroglyph S020 +\U000132EA;Egyptian Hieroglyph S021 +\U000132EB;Egyptian Hieroglyph S022 +\U000132EC;Egyptian Hieroglyph S023 +\U000132ED;Egyptian Hieroglyph S024 +\U000132EE;Egyptian Hieroglyph S025 +\U000132EF;Egyptian Hieroglyph S026 +\U000132F0;Egyptian Hieroglyph S026A +\U000132F1;Egyptian Hieroglyph S026B +\U000132F2;Egyptian Hieroglyph S027 +\U000132F3;Egyptian Hieroglyph S028 +\U000132F4;Egyptian Hieroglyph S029 +\U000132F5;Egyptian Hieroglyph S030 +\U000132F6;Egyptian Hieroglyph S031 +\U000132F7;Egyptian Hieroglyph S032 +\U000132F8;Egyptian Hieroglyph S033 +\U000132F9;Egyptian Hieroglyph S034 +\U000132FA;Egyptian Hieroglyph S035 +\U000132FB;Egyptian Hieroglyph S035A +\U000132FC;Egyptian Hieroglyph S036 +\U000132FD;Egyptian Hieroglyph S037 +\U000132FE;Egyptian Hieroglyph S038 +\U000132FF;Egyptian Hieroglyph S039 +\U00013300;Egyptian Hieroglyph S040 +\U00013301;Egyptian Hieroglyph S041 +\U00013302;Egyptian Hieroglyph S042 +\U00013303;Egyptian Hieroglyph S043 +\U00013304;Egyptian Hieroglyph S044 +\U00013305;Egyptian Hieroglyph S045 +\U00013306;Egyptian Hieroglyph S046 +\U00013307;Egyptian Hieroglyph T001 +\U00013308;Egyptian Hieroglyph T002 +\U00013309;Egyptian Hieroglyph T003 +\U0001330A;Egyptian Hieroglyph T003A +\U0001330B;Egyptian Hieroglyph T004 +\U0001330C;Egyptian Hieroglyph T005 +\U0001330D;Egyptian Hieroglyph T006 +\U0001330E;Egyptian Hieroglyph T007 +\U0001330F;Egyptian Hieroglyph T007A +\U00013310;Egyptian Hieroglyph T008 +\U00013311;Egyptian Hieroglyph T008A +\U00013312;Egyptian Hieroglyph T009 +\U00013313;Egyptian Hieroglyph T009A +\U00013314;Egyptian Hieroglyph T010 +\U00013315;Egyptian Hieroglyph T011 +\U00013316;Egyptian Hieroglyph T011A +\U00013317;Egyptian Hieroglyph T012 +\U00013318;Egyptian Hieroglyph T013 +\U00013319;Egyptian Hieroglyph T014 +\U0001331A;Egyptian Hieroglyph T015 +\U0001331B;Egyptian Hieroglyph T016 +\U0001331C;Egyptian Hieroglyph T016A +\U0001331D;Egyptian Hieroglyph T017 +\U0001331E;Egyptian Hieroglyph T018 +\U0001331F;Egyptian Hieroglyph T019 +\U00013320;Egyptian Hieroglyph T020 +\U00013321;Egyptian Hieroglyph T021 +\U00013322;Egyptian Hieroglyph T022 +\U00013323;Egyptian Hieroglyph T023 +\U00013324;Egyptian Hieroglyph T024 +\U00013325;Egyptian Hieroglyph T025 +\U00013326;Egyptian Hieroglyph T026 +\U00013327;Egyptian Hieroglyph T027 +\U00013328;Egyptian Hieroglyph T028 +\U00013329;Egyptian Hieroglyph T029 +\U0001332A;Egyptian Hieroglyph T030 +\U0001332B;Egyptian Hieroglyph T031 +\U0001332C;Egyptian Hieroglyph T032 +\U0001332D;Egyptian Hieroglyph T032A +\U0001332E;Egyptian Hieroglyph T033 +\U0001332F;Egyptian Hieroglyph T033A +\U00013330;Egyptian Hieroglyph T034 +\U00013331;Egyptian Hieroglyph T035 +\U00013332;Egyptian Hieroglyph T036 +\U00013333;Egyptian Hieroglyph U001 +\U00013334;Egyptian Hieroglyph U002 +\U00013335;Egyptian Hieroglyph U003 +\U00013336;Egyptian Hieroglyph U004 +\U00013337;Egyptian Hieroglyph U005 +\U00013338;Egyptian Hieroglyph U006 +\U00013339;Egyptian Hieroglyph U006A +\U0001333A;Egyptian Hieroglyph U006B +\U0001333B;Egyptian Hieroglyph U007 +\U0001333C;Egyptian Hieroglyph U008 +\U0001333D;Egyptian Hieroglyph U009 +\U0001333E;Egyptian Hieroglyph U010 +\U0001333F;Egyptian Hieroglyph U011 +\U00013340;Egyptian Hieroglyph U012 +\U00013341;Egyptian Hieroglyph U013 +\U00013342;Egyptian Hieroglyph U014 +\U00013343;Egyptian Hieroglyph U015 +\U00013344;Egyptian Hieroglyph U016 +\U00013345;Egyptian Hieroglyph U017 +\U00013346;Egyptian Hieroglyph U018 +\U00013347;Egyptian Hieroglyph U019 +\U00013348;Egyptian Hieroglyph U020 +\U00013349;Egyptian Hieroglyph U021 +\U0001334A;Egyptian Hieroglyph U022 +\U0001334B;Egyptian Hieroglyph U023 +\U0001334C;Egyptian Hieroglyph U023A +\U0001334D;Egyptian Hieroglyph U024 +\U0001334E;Egyptian Hieroglyph U025 +\U0001334F;Egyptian Hieroglyph U026 +\U00013350;Egyptian Hieroglyph U027 +\U00013351;Egyptian Hieroglyph U028 +\U00013352;Egyptian Hieroglyph U029 +\U00013353;Egyptian Hieroglyph U029A +\U00013354;Egyptian Hieroglyph U030 +\U00013355;Egyptian Hieroglyph U031 +\U00013356;Egyptian Hieroglyph U032 +\U00013357;Egyptian Hieroglyph U032A +\U00013358;Egyptian Hieroglyph U033 +\U00013359;Egyptian Hieroglyph U034 +\U0001335A;Egyptian Hieroglyph U035 +\U0001335B;Egyptian Hieroglyph U036 +\U0001335C;Egyptian Hieroglyph U037 +\U0001335D;Egyptian Hieroglyph U038 +\U0001335E;Egyptian Hieroglyph U039 +\U0001335F;Egyptian Hieroglyph U040 +\U00013360;Egyptian Hieroglyph U041 +\U00013361;Egyptian Hieroglyph U042 +\U00013362;Egyptian Hieroglyph V001 +\U00013363;Egyptian Hieroglyph V001A +\U00013364;Egyptian Hieroglyph V001B +\U00013365;Egyptian Hieroglyph V001C +\U00013366;Egyptian Hieroglyph V001D +\U00013367;Egyptian Hieroglyph V001E +\U00013368;Egyptian Hieroglyph V001F +\U00013369;Egyptian Hieroglyph V001G +\U0001336A;Egyptian Hieroglyph V001H +\U0001336B;Egyptian Hieroglyph V001I +\U0001336C;Egyptian Hieroglyph V002 +\U0001336D;Egyptian Hieroglyph V002A +\U0001336E;Egyptian Hieroglyph V003 +\U0001336F;Egyptian Hieroglyph V004 +\U00013370;Egyptian Hieroglyph V005 +\U00013371;Egyptian Hieroglyph V006 +\U00013372;Egyptian Hieroglyph V007 +\U00013373;Egyptian Hieroglyph V007A +\U00013374;Egyptian Hieroglyph V007B +\U00013375;Egyptian Hieroglyph V008 +\U00013376;Egyptian Hieroglyph V009 +\U00013377;Egyptian Hieroglyph V010 +\U00013378;Egyptian Hieroglyph V011 +\U00013379;Egyptian Hieroglyph V011A +\U0001337A;Egyptian Hieroglyph V011B +\U0001337B;Egyptian Hieroglyph V011C +\U0001337C;Egyptian Hieroglyph V012 +\U0001337D;Egyptian Hieroglyph V012A +\U0001337E;Egyptian Hieroglyph V012B +\U0001337F;Egyptian Hieroglyph V013 +\U00013380;Egyptian Hieroglyph V014 +\U00013381;Egyptian Hieroglyph V015 +\U00013382;Egyptian Hieroglyph V016 +\U00013383;Egyptian Hieroglyph V017 +\U00013384;Egyptian Hieroglyph V018 +\U00013385;Egyptian Hieroglyph V019 +\U00013386;Egyptian Hieroglyph V020 +\U00013387;Egyptian Hieroglyph V020A +\U00013388;Egyptian Hieroglyph V020B +\U00013389;Egyptian Hieroglyph V020C +\U0001338A;Egyptian Hieroglyph V020D +\U0001338B;Egyptian Hieroglyph V020E +\U0001338C;Egyptian Hieroglyph V020F +\U0001338D;Egyptian Hieroglyph V020G +\U0001338E;Egyptian Hieroglyph V020H +\U0001338F;Egyptian Hieroglyph V020I +\U00013390;Egyptian Hieroglyph V020J +\U00013391;Egyptian Hieroglyph V020K +\U00013392;Egyptian Hieroglyph V020L +\U00013393;Egyptian Hieroglyph V021 +\U00013394;Egyptian Hieroglyph V022 +\U00013395;Egyptian Hieroglyph V023 +\U00013396;Egyptian Hieroglyph V023A +\U00013397;Egyptian Hieroglyph V024 +\U00013398;Egyptian Hieroglyph V025 +\U00013399;Egyptian Hieroglyph V026 +\U0001339A;Egyptian Hieroglyph V027 +\U0001339B;Egyptian Hieroglyph V028 +\U0001339C;Egyptian Hieroglyph V028A +\U0001339D;Egyptian Hieroglyph V029 +\U0001339E;Egyptian Hieroglyph V029A +\U0001339F;Egyptian Hieroglyph V030 +\U000133A0;Egyptian Hieroglyph V030A +\U000133A1;Egyptian Hieroglyph V031 +\U000133A2;Egyptian Hieroglyph V031A +\U000133A3;Egyptian Hieroglyph V032 +\U000133A4;Egyptian Hieroglyph V033 +\U000133A5;Egyptian Hieroglyph V033A +\U000133A6;Egyptian Hieroglyph V034 +\U000133A7;Egyptian Hieroglyph V035 +\U000133A8;Egyptian Hieroglyph V036 +\U000133A9;Egyptian Hieroglyph V037 +\U000133AA;Egyptian Hieroglyph V037A +\U000133AB;Egyptian Hieroglyph V038 +\U000133AC;Egyptian Hieroglyph V039 +\U000133AD;Egyptian Hieroglyph V040 +\U000133AE;Egyptian Hieroglyph V040A +\U000133AF;Egyptian Hieroglyph W001 +\U000133B0;Egyptian Hieroglyph W002 +\U000133B1;Egyptian Hieroglyph W003 +\U000133B2;Egyptian Hieroglyph W003A +\U000133B3;Egyptian Hieroglyph W004 +\U000133B4;Egyptian Hieroglyph W005 +\U000133B5;Egyptian Hieroglyph W006 +\U000133B6;Egyptian Hieroglyph W007 +\U000133B7;Egyptian Hieroglyph W008 +\U000133B8;Egyptian Hieroglyph W009 +\U000133B9;Egyptian Hieroglyph W009A +\U000133BA;Egyptian Hieroglyph W010 +\U000133BB;Egyptian Hieroglyph W010A +\U000133BC;Egyptian Hieroglyph W011 +\U000133BD;Egyptian Hieroglyph W012 +\U000133BE;Egyptian Hieroglyph W013 +\U000133BF;Egyptian Hieroglyph W014 +\U000133C0;Egyptian Hieroglyph W014A +\U000133C1;Egyptian Hieroglyph W015 +\U000133C2;Egyptian Hieroglyph W016 +\U000133C3;Egyptian Hieroglyph W017 +\U000133C4;Egyptian Hieroglyph W017A +\U000133C5;Egyptian Hieroglyph W018 +\U000133C6;Egyptian Hieroglyph W018A +\U000133C7;Egyptian Hieroglyph W019 +\U000133C8;Egyptian Hieroglyph W020 +\U000133C9;Egyptian Hieroglyph W021 +\U000133CA;Egyptian Hieroglyph W022 +\U000133CB;Egyptian Hieroglyph W023 +\U000133CC;Egyptian Hieroglyph W024 +\U000133CD;Egyptian Hieroglyph W024A +\U000133CE;Egyptian Hieroglyph W025 +\U000133CF;Egyptian Hieroglyph X001 +\U000133D0;Egyptian Hieroglyph X002 +\U000133D1;Egyptian Hieroglyph X003 +\U000133D2;Egyptian Hieroglyph X004 +\U000133D3;Egyptian Hieroglyph X004A +\U000133D4;Egyptian Hieroglyph X004B +\U000133D5;Egyptian Hieroglyph X005 +\U000133D6;Egyptian Hieroglyph X006 +\U000133D7;Egyptian Hieroglyph X006A +\U000133D8;Egyptian Hieroglyph X007 +\U000133D9;Egyptian Hieroglyph X008 +\U000133DA;Egyptian Hieroglyph X008A +\U000133DB;Egyptian Hieroglyph Y001 +\U000133DC;Egyptian Hieroglyph Y001A +\U000133DD;Egyptian Hieroglyph Y002 +\U000133DE;Egyptian Hieroglyph Y003 +\U000133DF;Egyptian Hieroglyph Y004 +\U000133E0;Egyptian Hieroglyph Y005 +\U000133E1;Egyptian Hieroglyph Y006 +\U000133E2;Egyptian Hieroglyph Y007 +\U000133E3;Egyptian Hieroglyph Y008 +\U000133E4;Egyptian Hieroglyph Z001 +\U000133E5;Egyptian Hieroglyph Z002 +\U000133E6;Egyptian Hieroglyph Z002A +\U000133E7;Egyptian Hieroglyph Z002B +\U000133E8;Egyptian Hieroglyph Z002C +\U000133E9;Egyptian Hieroglyph Z002D +\U000133EA;Egyptian Hieroglyph Z003 +\U000133EB;Egyptian Hieroglyph Z003A +\U000133EC;Egyptian Hieroglyph Z003B +\U000133ED;Egyptian Hieroglyph Z004 +\U000133EE;Egyptian Hieroglyph Z004A +\U000133EF;Egyptian Hieroglyph Z005 +\U000133F0;Egyptian Hieroglyph Z005A +\U000133F1;Egyptian Hieroglyph Z006 +\U000133F2;Egyptian Hieroglyph Z007 +\U000133F3;Egyptian Hieroglyph Z008 +\U000133F4;Egyptian Hieroglyph Z009 +\U000133F5;Egyptian Hieroglyph Z010 +\U000133F6;Egyptian Hieroglyph Z011 +\U000133F7;Egyptian Hieroglyph Z012 +\U000133F8;Egyptian Hieroglyph Z013 +\U000133F9;Egyptian Hieroglyph Z014 +\U000133FA;Egyptian Hieroglyph Z015 +\U000133FB;Egyptian Hieroglyph Z015A +\U000133FC;Egyptian Hieroglyph Z015B +\U000133FD;Egyptian Hieroglyph Z015C +\U000133FE;Egyptian Hieroglyph Z015D +\U000133FF;Egyptian Hieroglyph Z015E +\U00013400;Egyptian Hieroglyph Z015F +\U00013401;Egyptian Hieroglyph Z015G +\U00013402;Egyptian Hieroglyph Z015H +\U00013403;Egyptian Hieroglyph Z015I +\U00013404;Egyptian Hieroglyph Z016 +\U00013405;Egyptian Hieroglyph Z016A +\U00013406;Egyptian Hieroglyph Z016B +\U00013407;Egyptian Hieroglyph Z016C +\U00013408;Egyptian Hieroglyph Z016D +\U00013409;Egyptian Hieroglyph Z016E +\U0001340A;Egyptian Hieroglyph Z016F +\U0001340B;Egyptian Hieroglyph Z016G +\U0001340C;Egyptian Hieroglyph Z016H +\U0001340D;Egyptian Hieroglyph Aa001 +\U0001340E;Egyptian Hieroglyph Aa002 +\U0001340F;Egyptian Hieroglyph Aa003 +\U00013410;Egyptian Hieroglyph Aa004 +\U00013411;Egyptian Hieroglyph Aa005 +\U00013412;Egyptian Hieroglyph Aa006 +\U00013413;Egyptian Hieroglyph Aa007 +\U00013414;Egyptian Hieroglyph Aa007A +\U00013415;Egyptian Hieroglyph Aa007B +\U00013416;Egyptian Hieroglyph Aa008 +\U00013417;Egyptian Hieroglyph Aa009 +\U00013418;Egyptian Hieroglyph Aa010 +\U00013419;Egyptian Hieroglyph Aa011 +\U0001341A;Egyptian Hieroglyph Aa012 +\U0001341B;Egyptian Hieroglyph Aa013 +\U0001341C;Egyptian Hieroglyph Aa014 +\U0001341D;Egyptian Hieroglyph Aa015 +\U0001341E;Egyptian Hieroglyph Aa016 +\U0001341F;Egyptian Hieroglyph Aa017 +\U00013420;Egyptian Hieroglyph Aa018 +\U00013421;Egyptian Hieroglyph Aa019 +\U00013422;Egyptian Hieroglyph Aa020 +\U00013423;Egyptian Hieroglyph Aa021 +\U00013424;Egyptian Hieroglyph Aa022 +\U00013425;Egyptian Hieroglyph Aa023 +\U00013426;Egyptian Hieroglyph Aa024 +\U00013427;Egyptian Hieroglyph Aa025 +\U00013428;Egyptian Hieroglyph Aa026 +\U00013429;Egyptian Hieroglyph Aa027 +\U0001342A;Egyptian Hieroglyph Aa028 +\U0001342B;Egyptian Hieroglyph Aa029 +\U0001342C;Egyptian Hieroglyph Aa030 +\U0001342D;Egyptian Hieroglyph Aa031 +\U0001342E;Egyptian Hieroglyph Aa032 +\U0001342F;Egyptian Hieroglyph V011D +\U00013430;Egyptian Hieroglyph Vertical Joiner +\U00013431;Egyptian Hieroglyph Horizontal Joiner +\U00013432;Egyptian Hieroglyph Insert At Top Start +\U00013433;Egyptian Hieroglyph Insert At Bottom Start +\U00013434;Egyptian Hieroglyph Insert At Top End +\U00013435;Egyptian Hieroglyph Insert At Bottom End +\U00013436;Egyptian Hieroglyph Overlay Middle +\U00013437;Egyptian Hieroglyph Begin Segment +\U00013438;Egyptian Hieroglyph End Segment +\U00013439;Egyptian Hieroglyph Insert At Middle +\U0001343A;Egyptian Hieroglyph Insert At Top +\U0001343B;Egyptian Hieroglyph Insert At Bottom +\U0001343C;Egyptian Hieroglyph Begin Enclosure +\U0001343D;Egyptian Hieroglyph End Enclosure +\U0001343E;Egyptian Hieroglyph Begin Walled Enclosure +\U0001343F;Egyptian Hieroglyph End Walled Enclosure +\U00013440;Egyptian Hieroglyph Mirror Horizontally +\U00013441;Egyptian Hieroglyph Full Blank +\U00013442;Egyptian Hieroglyph Half Blank +\U00013443;Egyptian Hieroglyph Lost Sign +\U00013444;Egyptian Hieroglyph Half Lost Sign +\U00013445;Egyptian Hieroglyph Tall Lost Sign +\U00013446;Egyptian Hieroglyph Wide Lost Sign +\U00013447;Egyptian Hieroglyph Modifier Damaged At Top Start +\U00013448;Egyptian Hieroglyph Modifier Damaged At Bottom Start +\U00013449;Egyptian Hieroglyph Modifier Damaged At Start +\U0001344A;Egyptian Hieroglyph Modifier Damaged At Top End +\U0001344B;Egyptian Hieroglyph Modifier Damaged At Top +\U0001344C;Egyptian Hieroglyph Modifier Damaged At Bottom Start And Top End +\U0001344D;Egyptian Hieroglyph Modifier Damaged At Start And Top +\U0001344E;Egyptian Hieroglyph Modifier Damaged At Bottom End +\U0001344F;Egyptian Hieroglyph Modifier Damaged At Top Start And Bottom End +\U00013450;Egyptian Hieroglyph Modifier Damaged At Bottom +\U00013451;Egyptian Hieroglyph Modifier Damaged At Start And Bottom +\U00013452;Egyptian Hieroglyph Modifier Damaged At End +\U00013453;Egyptian Hieroglyph Modifier Damaged At Top And End +\U00013454;Egyptian Hieroglyph Modifier Damaged At Bottom And End +\U00013455;Egyptian Hieroglyph Modifier Damaged +\U00014400;Anatolian Hieroglyph A001 +\U00014401;Anatolian Hieroglyph A002 +\U00014402;Anatolian Hieroglyph A003 +\U00014403;Anatolian Hieroglyph A004 +\U00014404;Anatolian Hieroglyph A005 +\U00014405;Anatolian Hieroglyph A006 +\U00014406;Anatolian Hieroglyph A007 +\U00014407;Anatolian Hieroglyph A008 +\U00014408;Anatolian Hieroglyph A009 +\U00014409;Anatolian Hieroglyph A010 +\U0001440A;Anatolian Hieroglyph A010A +\U0001440B;Anatolian Hieroglyph A011 +\U0001440C;Anatolian Hieroglyph A012 +\U0001440D;Anatolian Hieroglyph A013 +\U0001440E;Anatolian Hieroglyph A014 +\U0001440F;Anatolian Hieroglyph A015 +\U00014410;Anatolian Hieroglyph A016 +\U00014411;Anatolian Hieroglyph A017 +\U00014412;Anatolian Hieroglyph A018 +\U00014413;Anatolian Hieroglyph A019 +\U00014414;Anatolian Hieroglyph A020 +\U00014415;Anatolian Hieroglyph A021 +\U00014416;Anatolian Hieroglyph A022 +\U00014417;Anatolian Hieroglyph A023 +\U00014418;Anatolian Hieroglyph A024 +\U00014419;Anatolian Hieroglyph A025 +\U0001441A;Anatolian Hieroglyph A026 +\U0001441B;Anatolian Hieroglyph A026A +\U0001441C;Anatolian Hieroglyph A027 +\U0001441D;Anatolian Hieroglyph A028 +\U0001441E;Anatolian Hieroglyph A029 +\U0001441F;Anatolian Hieroglyph A030 +\U00014420;Anatolian Hieroglyph A031 +\U00014421;Anatolian Hieroglyph A032 +\U00014422;Anatolian Hieroglyph A033 +\U00014423;Anatolian Hieroglyph A034 +\U00014424;Anatolian Hieroglyph A035 +\U00014425;Anatolian Hieroglyph A036 +\U00014426;Anatolian Hieroglyph A037 +\U00014427;Anatolian Hieroglyph A038 +\U00014428;Anatolian Hieroglyph A039 +\U00014429;Anatolian Hieroglyph A039A +\U0001442A;Anatolian Hieroglyph A040 +\U0001442B;Anatolian Hieroglyph A041 +\U0001442C;Anatolian Hieroglyph A041A +\U0001442D;Anatolian Hieroglyph A042 +\U0001442E;Anatolian Hieroglyph A043 +\U0001442F;Anatolian Hieroglyph A044 +\U00014430;Anatolian Hieroglyph A045 +\U00014431;Anatolian Hieroglyph A045A +\U00014432;Anatolian Hieroglyph A046 +\U00014433;Anatolian Hieroglyph A046A +\U00014434;Anatolian Hieroglyph A046B +\U00014435;Anatolian Hieroglyph A047 +\U00014436;Anatolian Hieroglyph A048 +\U00014437;Anatolian Hieroglyph A049 +\U00014438;Anatolian Hieroglyph A050 +\U00014439;Anatolian Hieroglyph A051 +\U0001443A;Anatolian Hieroglyph A052 +\U0001443B;Anatolian Hieroglyph A053 +\U0001443C;Anatolian Hieroglyph A054 +\U0001443D;Anatolian Hieroglyph A055 +\U0001443E;Anatolian Hieroglyph A056 +\U0001443F;Anatolian Hieroglyph A057 +\U00014440;Anatolian Hieroglyph A058 +\U00014441;Anatolian Hieroglyph A059 +\U00014442;Anatolian Hieroglyph A060 +\U00014443;Anatolian Hieroglyph A061 +\U00014444;Anatolian Hieroglyph A062 +\U00014445;Anatolian Hieroglyph A063 +\U00014446;Anatolian Hieroglyph A064 +\U00014447;Anatolian Hieroglyph A065 +\U00014448;Anatolian Hieroglyph A066 +\U00014449;Anatolian Hieroglyph A066A +\U0001444A;Anatolian Hieroglyph A066B +\U0001444B;Anatolian Hieroglyph A066C +\U0001444C;Anatolian Hieroglyph A067 +\U0001444D;Anatolian Hieroglyph A068 +\U0001444E;Anatolian Hieroglyph A069 +\U0001444F;Anatolian Hieroglyph A070 +\U00014450;Anatolian Hieroglyph A071 +\U00014451;Anatolian Hieroglyph A072 +\U00014452;Anatolian Hieroglyph A073 +\U00014453;Anatolian Hieroglyph A074 +\U00014454;Anatolian Hieroglyph A075 +\U00014455;Anatolian Hieroglyph A076 +\U00014456;Anatolian Hieroglyph A077 +\U00014457;Anatolian Hieroglyph A078 +\U00014458;Anatolian Hieroglyph A079 +\U00014459;Anatolian Hieroglyph A080 +\U0001445A;Anatolian Hieroglyph A081 +\U0001445B;Anatolian Hieroglyph A082 +\U0001445C;Anatolian Hieroglyph A083 +\U0001445D;Anatolian Hieroglyph A084 +\U0001445E;Anatolian Hieroglyph A085 +\U0001445F;Anatolian Hieroglyph A086 +\U00014460;Anatolian Hieroglyph A087 +\U00014461;Anatolian Hieroglyph A088 +\U00014462;Anatolian Hieroglyph A089 +\U00014463;Anatolian Hieroglyph A090 +\U00014464;Anatolian Hieroglyph A091 +\U00014465;Anatolian Hieroglyph A092 +\U00014466;Anatolian Hieroglyph A093 +\U00014467;Anatolian Hieroglyph A094 +\U00014468;Anatolian Hieroglyph A095 +\U00014469;Anatolian Hieroglyph A096 +\U0001446A;Anatolian Hieroglyph A097 +\U0001446B;Anatolian Hieroglyph A097A +\U0001446C;Anatolian Hieroglyph A098 +\U0001446D;Anatolian Hieroglyph A098A +\U0001446E;Anatolian Hieroglyph A099 +\U0001446F;Anatolian Hieroglyph A100 +\U00014470;Anatolian Hieroglyph A100A +\U00014471;Anatolian Hieroglyph A101 +\U00014472;Anatolian Hieroglyph A101A +\U00014473;Anatolian Hieroglyph A102 +\U00014474;Anatolian Hieroglyph A102A +\U00014475;Anatolian Hieroglyph A103 +\U00014476;Anatolian Hieroglyph A104 +\U00014477;Anatolian Hieroglyph A104A +\U00014478;Anatolian Hieroglyph A104B +\U00014479;Anatolian Hieroglyph A104C +\U0001447A;Anatolian Hieroglyph A105 +\U0001447B;Anatolian Hieroglyph A105A +\U0001447C;Anatolian Hieroglyph A105B +\U0001447D;Anatolian Hieroglyph A106 +\U0001447E;Anatolian Hieroglyph A107 +\U0001447F;Anatolian Hieroglyph A107A +\U00014480;Anatolian Hieroglyph A107B +\U00014481;Anatolian Hieroglyph A107C +\U00014482;Anatolian Hieroglyph A108 +\U00014483;Anatolian Hieroglyph A109 +\U00014484;Anatolian Hieroglyph A110 +\U00014485;Anatolian Hieroglyph A110A +\U00014486;Anatolian Hieroglyph A110B +\U00014487;Anatolian Hieroglyph A111 +\U00014488;Anatolian Hieroglyph A112 +\U00014489;Anatolian Hieroglyph A113 +\U0001448A;Anatolian Hieroglyph A114 +\U0001448B;Anatolian Hieroglyph A115 +\U0001448C;Anatolian Hieroglyph A115A +\U0001448D;Anatolian Hieroglyph A116 +\U0001448E;Anatolian Hieroglyph A117 +\U0001448F;Anatolian Hieroglyph A118 +\U00014490;Anatolian Hieroglyph A119 +\U00014491;Anatolian Hieroglyph A120 +\U00014492;Anatolian Hieroglyph A121 +\U00014493;Anatolian Hieroglyph A122 +\U00014494;Anatolian Hieroglyph A123 +\U00014495;Anatolian Hieroglyph A124 +\U00014496;Anatolian Hieroglyph A125 +\U00014497;Anatolian Hieroglyph A125A +\U00014498;Anatolian Hieroglyph A126 +\U00014499;Anatolian Hieroglyph A127 +\U0001449A;Anatolian Hieroglyph A128 +\U0001449B;Anatolian Hieroglyph A129 +\U0001449C;Anatolian Hieroglyph A130 +\U0001449D;Anatolian Hieroglyph A131 +\U0001449E;Anatolian Hieroglyph A132 +\U0001449F;Anatolian Hieroglyph A133 +\U000144A0;Anatolian Hieroglyph A134 +\U000144A1;Anatolian Hieroglyph A135 +\U000144A2;Anatolian Hieroglyph A135A +\U000144A3;Anatolian Hieroglyph A136 +\U000144A4;Anatolian Hieroglyph A137 +\U000144A5;Anatolian Hieroglyph A138 +\U000144A6;Anatolian Hieroglyph A139 +\U000144A7;Anatolian Hieroglyph A140 +\U000144A8;Anatolian Hieroglyph A141 +\U000144A9;Anatolian Hieroglyph A142 +\U000144AA;Anatolian Hieroglyph A143 +\U000144AB;Anatolian Hieroglyph A144 +\U000144AC;Anatolian Hieroglyph A145 +\U000144AD;Anatolian Hieroglyph A146 +\U000144AE;Anatolian Hieroglyph A147 +\U000144AF;Anatolian Hieroglyph A148 +\U000144B0;Anatolian Hieroglyph A149 +\U000144B1;Anatolian Hieroglyph A150 +\U000144B2;Anatolian Hieroglyph A151 +\U000144B3;Anatolian Hieroglyph A152 +\U000144B4;Anatolian Hieroglyph A153 +\U000144B5;Anatolian Hieroglyph A154 +\U000144B6;Anatolian Hieroglyph A155 +\U000144B7;Anatolian Hieroglyph A156 +\U000144B8;Anatolian Hieroglyph A157 +\U000144B9;Anatolian Hieroglyph A158 +\U000144BA;Anatolian Hieroglyph A159 +\U000144BB;Anatolian Hieroglyph A160 +\U000144BC;Anatolian Hieroglyph A161 +\U000144BD;Anatolian Hieroglyph A162 +\U000144BE;Anatolian Hieroglyph A163 +\U000144BF;Anatolian Hieroglyph A164 +\U000144C0;Anatolian Hieroglyph A165 +\U000144C1;Anatolian Hieroglyph A166 +\U000144C2;Anatolian Hieroglyph A167 +\U000144C3;Anatolian Hieroglyph A168 +\U000144C4;Anatolian Hieroglyph A169 +\U000144C5;Anatolian Hieroglyph A170 +\U000144C6;Anatolian Hieroglyph A171 +\U000144C7;Anatolian Hieroglyph A172 +\U000144C8;Anatolian Hieroglyph A173 +\U000144C9;Anatolian Hieroglyph A174 +\U000144CA;Anatolian Hieroglyph A175 +\U000144CB;Anatolian Hieroglyph A176 +\U000144CC;Anatolian Hieroglyph A177 +\U000144CD;Anatolian Hieroglyph A178 +\U000144CE;Anatolian Hieroglyph A179 +\U000144CF;Anatolian Hieroglyph A180 +\U000144D0;Anatolian Hieroglyph A181 +\U000144D1;Anatolian Hieroglyph A182 +\U000144D2;Anatolian Hieroglyph A183 +\U000144D3;Anatolian Hieroglyph A184 +\U000144D4;Anatolian Hieroglyph A185 +\U000144D5;Anatolian Hieroglyph A186 +\U000144D6;Anatolian Hieroglyph A187 +\U000144D7;Anatolian Hieroglyph A188 +\U000144D8;Anatolian Hieroglyph A189 +\U000144D9;Anatolian Hieroglyph A190 +\U000144DA;Anatolian Hieroglyph A191 +\U000144DB;Anatolian Hieroglyph A192 +\U000144DC;Anatolian Hieroglyph A193 +\U000144DD;Anatolian Hieroglyph A194 +\U000144DE;Anatolian Hieroglyph A195 +\U000144DF;Anatolian Hieroglyph A196 +\U000144E0;Anatolian Hieroglyph A197 +\U000144E1;Anatolian Hieroglyph A198 +\U000144E2;Anatolian Hieroglyph A199 +\U000144E3;Anatolian Hieroglyph A200 +\U000144E4;Anatolian Hieroglyph A201 +\U000144E5;Anatolian Hieroglyph A202 +\U000144E6;Anatolian Hieroglyph A202A +\U000144E7;Anatolian Hieroglyph A202B +\U000144E8;Anatolian Hieroglyph A203 +\U000144E9;Anatolian Hieroglyph A204 +\U000144EA;Anatolian Hieroglyph A205 +\U000144EB;Anatolian Hieroglyph A206 +\U000144EC;Anatolian Hieroglyph A207 +\U000144ED;Anatolian Hieroglyph A207A +\U000144EE;Anatolian Hieroglyph A208 +\U000144EF;Anatolian Hieroglyph A209 +\U000144F0;Anatolian Hieroglyph A209A +\U000144F1;Anatolian Hieroglyph A210 +\U000144F2;Anatolian Hieroglyph A211 +\U000144F3;Anatolian Hieroglyph A212 +\U000144F4;Anatolian Hieroglyph A213 +\U000144F5;Anatolian Hieroglyph A214 +\U000144F6;Anatolian Hieroglyph A215 +\U000144F7;Anatolian Hieroglyph A215A +\U000144F8;Anatolian Hieroglyph A216 +\U000144F9;Anatolian Hieroglyph A216A +\U000144FA;Anatolian Hieroglyph A217 +\U000144FB;Anatolian Hieroglyph A218 +\U000144FC;Anatolian Hieroglyph A219 +\U000144FD;Anatolian Hieroglyph A220 +\U000144FE;Anatolian Hieroglyph A221 +\U000144FF;Anatolian Hieroglyph A222 +\U00014500;Anatolian Hieroglyph A223 +\U00014501;Anatolian Hieroglyph A224 +\U00014502;Anatolian Hieroglyph A225 +\U00014503;Anatolian Hieroglyph A226 +\U00014504;Anatolian Hieroglyph A227 +\U00014505;Anatolian Hieroglyph A227A +\U00014506;Anatolian Hieroglyph A228 +\U00014507;Anatolian Hieroglyph A229 +\U00014508;Anatolian Hieroglyph A230 +\U00014509;Anatolian Hieroglyph A231 +\U0001450A;Anatolian Hieroglyph A232 +\U0001450B;Anatolian Hieroglyph A233 +\U0001450C;Anatolian Hieroglyph A234 +\U0001450D;Anatolian Hieroglyph A235 +\U0001450E;Anatolian Hieroglyph A236 +\U0001450F;Anatolian Hieroglyph A237 +\U00014510;Anatolian Hieroglyph A238 +\U00014511;Anatolian Hieroglyph A239 +\U00014512;Anatolian Hieroglyph A240 +\U00014513;Anatolian Hieroglyph A241 +\U00014514;Anatolian Hieroglyph A242 +\U00014515;Anatolian Hieroglyph A243 +\U00014516;Anatolian Hieroglyph A244 +\U00014517;Anatolian Hieroglyph A245 +\U00014518;Anatolian Hieroglyph A246 +\U00014519;Anatolian Hieroglyph A247 +\U0001451A;Anatolian Hieroglyph A248 +\U0001451B;Anatolian Hieroglyph A249 +\U0001451C;Anatolian Hieroglyph A250 +\U0001451D;Anatolian Hieroglyph A251 +\U0001451E;Anatolian Hieroglyph A252 +\U0001451F;Anatolian Hieroglyph A253 +\U00014520;Anatolian Hieroglyph A254 +\U00014521;Anatolian Hieroglyph A255 +\U00014522;Anatolian Hieroglyph A256 +\U00014523;Anatolian Hieroglyph A257 +\U00014524;Anatolian Hieroglyph A258 +\U00014525;Anatolian Hieroglyph A259 +\U00014526;Anatolian Hieroglyph A260 +\U00014527;Anatolian Hieroglyph A261 +\U00014528;Anatolian Hieroglyph A262 +\U00014529;Anatolian Hieroglyph A263 +\U0001452A;Anatolian Hieroglyph A264 +\U0001452B;Anatolian Hieroglyph A265 +\U0001452C;Anatolian Hieroglyph A266 +\U0001452D;Anatolian Hieroglyph A267 +\U0001452E;Anatolian Hieroglyph A267A +\U0001452F;Anatolian Hieroglyph A268 +\U00014530;Anatolian Hieroglyph A269 +\U00014531;Anatolian Hieroglyph A270 +\U00014532;Anatolian Hieroglyph A271 +\U00014533;Anatolian Hieroglyph A272 +\U00014534;Anatolian Hieroglyph A273 +\U00014535;Anatolian Hieroglyph A274 +\U00014536;Anatolian Hieroglyph A275 +\U00014537;Anatolian Hieroglyph A276 +\U00014538;Anatolian Hieroglyph A277 +\U00014539;Anatolian Hieroglyph A278 +\U0001453A;Anatolian Hieroglyph A279 +\U0001453B;Anatolian Hieroglyph A280 +\U0001453C;Anatolian Hieroglyph A281 +\U0001453D;Anatolian Hieroglyph A282 +\U0001453E;Anatolian Hieroglyph A283 +\U0001453F;Anatolian Hieroglyph A284 +\U00014540;Anatolian Hieroglyph A285 +\U00014541;Anatolian Hieroglyph A286 +\U00014542;Anatolian Hieroglyph A287 +\U00014543;Anatolian Hieroglyph A288 +\U00014544;Anatolian Hieroglyph A289 +\U00014545;Anatolian Hieroglyph A289A +\U00014546;Anatolian Hieroglyph A290 +\U00014547;Anatolian Hieroglyph A291 +\U00014548;Anatolian Hieroglyph A292 +\U00014549;Anatolian Hieroglyph A293 +\U0001454A;Anatolian Hieroglyph A294 +\U0001454B;Anatolian Hieroglyph A294A +\U0001454C;Anatolian Hieroglyph A295 +\U0001454D;Anatolian Hieroglyph A296 +\U0001454E;Anatolian Hieroglyph A297 +\U0001454F;Anatolian Hieroglyph A298 +\U00014550;Anatolian Hieroglyph A299 +\U00014551;Anatolian Hieroglyph A299A +\U00014552;Anatolian Hieroglyph A300 +\U00014553;Anatolian Hieroglyph A301 +\U00014554;Anatolian Hieroglyph A302 +\U00014555;Anatolian Hieroglyph A303 +\U00014556;Anatolian Hieroglyph A304 +\U00014557;Anatolian Hieroglyph A305 +\U00014558;Anatolian Hieroglyph A306 +\U00014559;Anatolian Hieroglyph A307 +\U0001455A;Anatolian Hieroglyph A308 +\U0001455B;Anatolian Hieroglyph A309 +\U0001455C;Anatolian Hieroglyph A309A +\U0001455D;Anatolian Hieroglyph A310 +\U0001455E;Anatolian Hieroglyph A311 +\U0001455F;Anatolian Hieroglyph A312 +\U00014560;Anatolian Hieroglyph A313 +\U00014561;Anatolian Hieroglyph A314 +\U00014562;Anatolian Hieroglyph A315 +\U00014563;Anatolian Hieroglyph A316 +\U00014564;Anatolian Hieroglyph A317 +\U00014565;Anatolian Hieroglyph A318 +\U00014566;Anatolian Hieroglyph A319 +\U00014567;Anatolian Hieroglyph A320 +\U00014568;Anatolian Hieroglyph A321 +\U00014569;Anatolian Hieroglyph A322 +\U0001456A;Anatolian Hieroglyph A323 +\U0001456B;Anatolian Hieroglyph A324 +\U0001456C;Anatolian Hieroglyph A325 +\U0001456D;Anatolian Hieroglyph A326 +\U0001456E;Anatolian Hieroglyph A327 +\U0001456F;Anatolian Hieroglyph A328 +\U00014570;Anatolian Hieroglyph A329 +\U00014571;Anatolian Hieroglyph A329A +\U00014572;Anatolian Hieroglyph A330 +\U00014573;Anatolian Hieroglyph A331 +\U00014574;Anatolian Hieroglyph A332A +\U00014575;Anatolian Hieroglyph A332B +\U00014576;Anatolian Hieroglyph A332C +\U00014577;Anatolian Hieroglyph A333 +\U00014578;Anatolian Hieroglyph A334 +\U00014579;Anatolian Hieroglyph A335 +\U0001457A;Anatolian Hieroglyph A336 +\U0001457B;Anatolian Hieroglyph A336A +\U0001457C;Anatolian Hieroglyph A336B +\U0001457D;Anatolian Hieroglyph A336C +\U0001457E;Anatolian Hieroglyph A337 +\U0001457F;Anatolian Hieroglyph A338 +\U00014580;Anatolian Hieroglyph A339 +\U00014581;Anatolian Hieroglyph A340 +\U00014582;Anatolian Hieroglyph A341 +\U00014583;Anatolian Hieroglyph A342 +\U00014584;Anatolian Hieroglyph A343 +\U00014585;Anatolian Hieroglyph A344 +\U00014586;Anatolian Hieroglyph A345 +\U00014587;Anatolian Hieroglyph A346 +\U00014588;Anatolian Hieroglyph A347 +\U00014589;Anatolian Hieroglyph A348 +\U0001458A;Anatolian Hieroglyph A349 +\U0001458B;Anatolian Hieroglyph A350 +\U0001458C;Anatolian Hieroglyph A351 +\U0001458D;Anatolian Hieroglyph A352 +\U0001458E;Anatolian Hieroglyph A353 +\U0001458F;Anatolian Hieroglyph A354 +\U00014590;Anatolian Hieroglyph A355 +\U00014591;Anatolian Hieroglyph A356 +\U00014592;Anatolian Hieroglyph A357 +\U00014593;Anatolian Hieroglyph A358 +\U00014594;Anatolian Hieroglyph A359 +\U00014595;Anatolian Hieroglyph A359A +\U00014596;Anatolian Hieroglyph A360 +\U00014597;Anatolian Hieroglyph A361 +\U00014598;Anatolian Hieroglyph A362 +\U00014599;Anatolian Hieroglyph A363 +\U0001459A;Anatolian Hieroglyph A364 +\U0001459B;Anatolian Hieroglyph A364A +\U0001459C;Anatolian Hieroglyph A365 +\U0001459D;Anatolian Hieroglyph A366 +\U0001459E;Anatolian Hieroglyph A367 +\U0001459F;Anatolian Hieroglyph A368 +\U000145A0;Anatolian Hieroglyph A368A +\U000145A1;Anatolian Hieroglyph A369 +\U000145A2;Anatolian Hieroglyph A370 +\U000145A3;Anatolian Hieroglyph A371 +\U000145A4;Anatolian Hieroglyph A371A +\U000145A5;Anatolian Hieroglyph A372 +\U000145A6;Anatolian Hieroglyph A373 +\U000145A7;Anatolian Hieroglyph A374 +\U000145A8;Anatolian Hieroglyph A375 +\U000145A9;Anatolian Hieroglyph A376 +\U000145AA;Anatolian Hieroglyph A377 +\U000145AB;Anatolian Hieroglyph A378 +\U000145AC;Anatolian Hieroglyph A379 +\U000145AD;Anatolian Hieroglyph A380 +\U000145AE;Anatolian Hieroglyph A381 +\U000145AF;Anatolian Hieroglyph A381A +\U000145B0;Anatolian Hieroglyph A382 +\U000145B1;Anatolian Hieroglyph A383 Ra Or Ri +\U000145B2;Anatolian Hieroglyph A383A +\U000145B3;Anatolian Hieroglyph A384 +\U000145B4;Anatolian Hieroglyph A385 +\U000145B5;Anatolian Hieroglyph A386 +\U000145B6;Anatolian Hieroglyph A386A +\U000145B7;Anatolian Hieroglyph A387 +\U000145B8;Anatolian Hieroglyph A388 +\U000145B9;Anatolian Hieroglyph A389 +\U000145BA;Anatolian Hieroglyph A390 +\U000145BB;Anatolian Hieroglyph A391 +\U000145BC;Anatolian Hieroglyph A392 +\U000145BD;Anatolian Hieroglyph A393 Eight +\U000145BE;Anatolian Hieroglyph A394 +\U000145BF;Anatolian Hieroglyph A395 +\U000145C0;Anatolian Hieroglyph A396 +\U000145C1;Anatolian Hieroglyph A397 +\U000145C2;Anatolian Hieroglyph A398 +\U000145C3;Anatolian Hieroglyph A399 +\U000145C4;Anatolian Hieroglyph A400 +\U000145C5;Anatolian Hieroglyph A401 +\U000145C6;Anatolian Hieroglyph A402 +\U000145C7;Anatolian Hieroglyph A403 +\U000145C8;Anatolian Hieroglyph A404 +\U000145C9;Anatolian Hieroglyph A405 +\U000145CA;Anatolian Hieroglyph A406 +\U000145CB;Anatolian Hieroglyph A407 +\U000145CC;Anatolian Hieroglyph A408 +\U000145CD;Anatolian Hieroglyph A409 +\U000145CE;Anatolian Hieroglyph A410 Begin Logogram Mark +\U000145CF;Anatolian Hieroglyph A410A End Logogram Mark +\U000145D0;Anatolian Hieroglyph A411 +\U000145D1;Anatolian Hieroglyph A412 +\U000145D2;Anatolian Hieroglyph A413 +\U000145D3;Anatolian Hieroglyph A414 +\U000145D4;Anatolian Hieroglyph A415 +\U000145D5;Anatolian Hieroglyph A416 +\U000145D6;Anatolian Hieroglyph A417 +\U000145D7;Anatolian Hieroglyph A418 +\U000145D8;Anatolian Hieroglyph A419 +\U000145D9;Anatolian Hieroglyph A420 +\U000145DA;Anatolian Hieroglyph A421 +\U000145DB;Anatolian Hieroglyph A422 +\U000145DC;Anatolian Hieroglyph A423 +\U000145DD;Anatolian Hieroglyph A424 +\U000145DE;Anatolian Hieroglyph A425 +\U000145DF;Anatolian Hieroglyph A426 +\U000145E0;Anatolian Hieroglyph A427 +\U000145E1;Anatolian Hieroglyph A428 +\U000145E2;Anatolian Hieroglyph A429 +\U000145E3;Anatolian Hieroglyph A430 +\U000145E4;Anatolian Hieroglyph A431 +\U000145E5;Anatolian Hieroglyph A432 +\U000145E6;Anatolian Hieroglyph A433 +\U000145E7;Anatolian Hieroglyph A434 +\U000145E8;Anatolian Hieroglyph A435 +\U000145E9;Anatolian Hieroglyph A436 +\U000145EA;Anatolian Hieroglyph A437 +\U000145EB;Anatolian Hieroglyph A438 +\U000145EC;Anatolian Hieroglyph A439 +\U000145ED;Anatolian Hieroglyph A440 +\U000145EE;Anatolian Hieroglyph A441 +\U000145EF;Anatolian Hieroglyph A442 +\U000145F0;Anatolian Hieroglyph A443 +\U000145F1;Anatolian Hieroglyph A444 +\U000145F2;Anatolian Hieroglyph A445 +\U000145F3;Anatolian Hieroglyph A446 +\U000145F4;Anatolian Hieroglyph A447 +\U000145F5;Anatolian Hieroglyph A448 +\U000145F6;Anatolian Hieroglyph A449 +\U000145F7;Anatolian Hieroglyph A450 +\U000145F8;Anatolian Hieroglyph A450A +\U000145F9;Anatolian Hieroglyph A451 +\U000145FA;Anatolian Hieroglyph A452 +\U000145FB;Anatolian Hieroglyph A453 +\U000145FC;Anatolian Hieroglyph A454 +\U000145FD;Anatolian Hieroglyph A455 +\U000145FE;Anatolian Hieroglyph A456 +\U000145FF;Anatolian Hieroglyph A457 +\U00014600;Anatolian Hieroglyph A457A +\U00014601;Anatolian Hieroglyph A458 +\U00014602;Anatolian Hieroglyph A459 +\U00014603;Anatolian Hieroglyph A460 +\U00014604;Anatolian Hieroglyph A461 +\U00014605;Anatolian Hieroglyph A462 +\U00014606;Anatolian Hieroglyph A463 +\U00014607;Anatolian Hieroglyph A464 +\U00014608;Anatolian Hieroglyph A465 +\U00014609;Anatolian Hieroglyph A466 +\U0001460A;Anatolian Hieroglyph A467 +\U0001460B;Anatolian Hieroglyph A468 +\U0001460C;Anatolian Hieroglyph A469 +\U0001460D;Anatolian Hieroglyph A470 +\U0001460E;Anatolian Hieroglyph A471 +\U0001460F;Anatolian Hieroglyph A472 +\U00014610;Anatolian Hieroglyph A473 +\U00014611;Anatolian Hieroglyph A474 +\U00014612;Anatolian Hieroglyph A475 +\U00014613;Anatolian Hieroglyph A476 +\U00014614;Anatolian Hieroglyph A477 +\U00014615;Anatolian Hieroglyph A478 +\U00014616;Anatolian Hieroglyph A479 +\U00014617;Anatolian Hieroglyph A480 +\U00014618;Anatolian Hieroglyph A481 +\U00014619;Anatolian Hieroglyph A482 +\U0001461A;Anatolian Hieroglyph A483 +\U0001461B;Anatolian Hieroglyph A484 +\U0001461C;Anatolian Hieroglyph A485 +\U0001461D;Anatolian Hieroglyph A486 +\U0001461E;Anatolian Hieroglyph A487 +\U0001461F;Anatolian Hieroglyph A488 +\U00014620;Anatolian Hieroglyph A489 +\U00014621;Anatolian Hieroglyph A490 +\U00014622;Anatolian Hieroglyph A491 +\U00014623;Anatolian Hieroglyph A492 +\U00014624;Anatolian Hieroglyph A493 +\U00014625;Anatolian Hieroglyph A494 +\U00014626;Anatolian Hieroglyph A495 +\U00014627;Anatolian Hieroglyph A496 +\U00014628;Anatolian Hieroglyph A497 +\U00014629;Anatolian Hieroglyph A501 +\U0001462A;Anatolian Hieroglyph A502 +\U0001462B;Anatolian Hieroglyph A503 +\U0001462C;Anatolian Hieroglyph A504 +\U0001462D;Anatolian Hieroglyph A505 +\U0001462E;Anatolian Hieroglyph A506 +\U0001462F;Anatolian Hieroglyph A507 +\U00014630;Anatolian Hieroglyph A508 +\U00014631;Anatolian Hieroglyph A509 +\U00014632;Anatolian Hieroglyph A510 +\U00014633;Anatolian Hieroglyph A511 +\U00014634;Anatolian Hieroglyph A512 +\U00014635;Anatolian Hieroglyph A513 +\U00014636;Anatolian Hieroglyph A514 +\U00014637;Anatolian Hieroglyph A515 +\U00014638;Anatolian Hieroglyph A516 +\U00014639;Anatolian Hieroglyph A517 +\U0001463A;Anatolian Hieroglyph A518 +\U0001463B;Anatolian Hieroglyph A519 +\U0001463C;Anatolian Hieroglyph A520 +\U0001463D;Anatolian Hieroglyph A521 +\U0001463E;Anatolian Hieroglyph A522 +\U0001463F;Anatolian Hieroglyph A523 +\U00014640;Anatolian Hieroglyph A524 +\U00014641;Anatolian Hieroglyph A525 +\U00014642;Anatolian Hieroglyph A526 +\U00014643;Anatolian Hieroglyph A527 +\U00014644;Anatolian Hieroglyph A528 +\U00014645;Anatolian Hieroglyph A529 +\U00014646;Anatolian Hieroglyph A530 +\U00016800;Bamum Letter Phase-A Ngkue Mfon +\U00016801;Bamum Letter Phase-A Gbiee Fon +\U00016802;Bamum Letter Phase-A Pon Mfon Pipaemgbiee +\U00016803;Bamum Letter Phase-A Pon Mfon Pipaemba +\U00016804;Bamum Letter Phase-A Naa Mfon +\U00016805;Bamum Letter Phase-A Shuenshuet +\U00016806;Bamum Letter Phase-A Tita Mfon +\U00016807;Bamum Letter Phase-A Nza Mfon +\U00016808;Bamum Letter Phase-A Shinda Pa Nji +\U00016809;Bamum Letter Phase-A Pon Pa Nji Pipaemgbiee +\U0001680A;Bamum Letter Phase-A Pon Pa Nji Pipaemba +\U0001680B;Bamum Letter Phase-A Maembgbiee +\U0001680C;Bamum Letter Phase-A Tu Maemba +\U0001680D;Bamum Letter Phase-A Ngangu +\U0001680E;Bamum Letter Phase-A Maemveux +\U0001680F;Bamum Letter Phase-A Mansuae +\U00016810;Bamum Letter Phase-A Mveuaengam +\U00016811;Bamum Letter Phase-A Seunyam +\U00016812;Bamum Letter Phase-A Ntoqpen +\U00016813;Bamum Letter Phase-A Keukeutnda +\U00016814;Bamum Letter Phase-A Nkindi +\U00016815;Bamum Letter Phase-A Suu +\U00016816;Bamum Letter Phase-A Ngkuenzeum +\U00016817;Bamum Letter Phase-A Lapaq +\U00016818;Bamum Letter Phase-A Let Kut +\U00016819;Bamum Letter Phase-A Ntap Mfaa +\U0001681A;Bamum Letter Phase-A Maekeup +\U0001681B;Bamum Letter Phase-A Pashae +\U0001681C;Bamum Letter Phase-A Gheuaerae +\U0001681D;Bamum Letter Phase-A Pamshae +\U0001681E;Bamum Letter Phase-A Mon Nggeuaet +\U0001681F;Bamum Letter Phase-A Nzun Meut +\U00016820;Bamum Letter Phase-A U Yuq Nae +\U00016821;Bamum Letter Phase-A Gheuaegheuae +\U00016822;Bamum Letter Phase-A Ntap Ntaa +\U00016823;Bamum Letter Phase-A Sisa +\U00016824;Bamum Letter Phase-A Mgbasa +\U00016825;Bamum Letter Phase-A Meunjomndeuq +\U00016826;Bamum Letter Phase-A Moompuq +\U00016827;Bamum Letter Phase-A Kafa +\U00016828;Bamum Letter Phase-A Pa Leeraewa +\U00016829;Bamum Letter Phase-A Nda Leeraewa +\U0001682A;Bamum Letter Phase-A Pet +\U0001682B;Bamum Letter Phase-A Maemkpen +\U0001682C;Bamum Letter Phase-A Nika +\U0001682D;Bamum Letter Phase-A Pup +\U0001682E;Bamum Letter Phase-A Tuaep +\U0001682F;Bamum Letter Phase-A Luaep +\U00016830;Bamum Letter Phase-A Sonjam +\U00016831;Bamum Letter Phase-A Teuteuwen +\U00016832;Bamum Letter Phase-A Maenyi +\U00016833;Bamum Letter Phase-A Ket +\U00016834;Bamum Letter Phase-A Ndaanggeuaet +\U00016835;Bamum Letter Phase-A Kuoq +\U00016836;Bamum Letter Phase-A Moomeut +\U00016837;Bamum Letter Phase-A Shum +\U00016838;Bamum Letter Phase-A Lommae +\U00016839;Bamum Letter Phase-A Firi +\U0001683A;Bamum Letter Phase-A Rom +\U0001683B;Bamum Letter Phase-A Kpoq +\U0001683C;Bamum Letter Phase-A Soq +\U0001683D;Bamum Letter Phase-A Map Pieet +\U0001683E;Bamum Letter Phase-A Shirae +\U0001683F;Bamum Letter Phase-A Ntap +\U00016840;Bamum Letter Phase-A Shoq Nshut Yum +\U00016841;Bamum Letter Phase-A Nyit Mongkeuaeq +\U00016842;Bamum Letter Phase-A Paarae +\U00016843;Bamum Letter Phase-A Nkaarae +\U00016844;Bamum Letter Phase-A Unknown +\U00016845;Bamum Letter Phase-A Nggen +\U00016846;Bamum Letter Phase-A Maesi +\U00016847;Bamum Letter Phase-A Njam +\U00016848;Bamum Letter Phase-A Mbanyi +\U00016849;Bamum Letter Phase-A Nyet +\U0001684A;Bamum Letter Phase-A Teuaen +\U0001684B;Bamum Letter Phase-A Sot +\U0001684C;Bamum Letter Phase-A Paam +\U0001684D;Bamum Letter Phase-A Nshiee +\U0001684E;Bamum Letter Phase-A Maem +\U0001684F;Bamum Letter Phase-A Nyi +\U00016850;Bamum Letter Phase-A Kaq +\U00016851;Bamum Letter Phase-A Nsha +\U00016852;Bamum Letter Phase-A Vee +\U00016853;Bamum Letter Phase-A Lu +\U00016854;Bamum Letter Phase-A Nen +\U00016855;Bamum Letter Phase-A Naq +\U00016856;Bamum Letter Phase-A Mbaq +\U00016857;Bamum Letter Phase-B Nshuet +\U00016858;Bamum Letter Phase-B Tu Maemgbiee +\U00016859;Bamum Letter Phase-B Siee +\U0001685A;Bamum Letter Phase-B Set Tu +\U0001685B;Bamum Letter Phase-B Lom Nteum +\U0001685C;Bamum Letter Phase-B Mba Maelee +\U0001685D;Bamum Letter Phase-B Kieem +\U0001685E;Bamum Letter Phase-B Yeurae +\U0001685F;Bamum Letter Phase-B Mbaarae +\U00016860;Bamum Letter Phase-B Kam +\U00016861;Bamum Letter Phase-B Peeshi +\U00016862;Bamum Letter Phase-B Yafu Leeraewa +\U00016863;Bamum Letter Phase-B Lam Nshut Nyam +\U00016864;Bamum Letter Phase-B Ntiee Sheuoq +\U00016865;Bamum Letter Phase-B Ndu Njaa +\U00016866;Bamum Letter Phase-B Gheugheuaem +\U00016867;Bamum Letter Phase-B Pit +\U00016868;Bamum Letter Phase-B Tu Nsiee +\U00016869;Bamum Letter Phase-B Shet Njaq +\U0001686A;Bamum Letter Phase-B Sheuaeqtu +\U0001686B;Bamum Letter Phase-B Mfon Teuaeq +\U0001686C;Bamum Letter Phase-B Mbit Mbaaket +\U0001686D;Bamum Letter Phase-B Nyi Nteum +\U0001686E;Bamum Letter Phase-B Keupuq +\U0001686F;Bamum Letter Phase-B Gheughen +\U00016870;Bamum Letter Phase-B Keuyeux +\U00016871;Bamum Letter Phase-B Laanae +\U00016872;Bamum Letter Phase-B Parum +\U00016873;Bamum Letter Phase-B Veum +\U00016874;Bamum Letter Phase-B Ngkindi Mvop +\U00016875;Bamum Letter Phase-B Nggeu Mbu +\U00016876;Bamum Letter Phase-B Wuaet +\U00016877;Bamum Letter Phase-B Sakeuae +\U00016878;Bamum Letter Phase-B Taam +\U00016879;Bamum Letter Phase-B Meuq +\U0001687A;Bamum Letter Phase-B Ngguoq +\U0001687B;Bamum Letter Phase-B Ngguoq Large +\U0001687C;Bamum Letter Phase-B Mfiyaq +\U0001687D;Bamum Letter Phase-B Sue +\U0001687E;Bamum Letter Phase-B Mbeuri +\U0001687F;Bamum Letter Phase-B Montieen +\U00016880;Bamum Letter Phase-B Nyaemae +\U00016881;Bamum Letter Phase-B Pungaam +\U00016882;Bamum Letter Phase-B Meut Nggeet +\U00016883;Bamum Letter Phase-B Feux +\U00016884;Bamum Letter Phase-B Mbuoq +\U00016885;Bamum Letter Phase-B Fee +\U00016886;Bamum Letter Phase-B Keuaem +\U00016887;Bamum Letter Phase-B Ma Njeuaena +\U00016888;Bamum Letter Phase-B Ma Njuqa +\U00016889;Bamum Letter Phase-B Let +\U0001688A;Bamum Letter Phase-B Nggaam +\U0001688B;Bamum Letter Phase-B Nsen +\U0001688C;Bamum Letter Phase-B Ma +\U0001688D;Bamum Letter Phase-B Kiq +\U0001688E;Bamum Letter Phase-B Ngom +\U0001688F;Bamum Letter Phase-C Ngkue Maemba +\U00016890;Bamum Letter Phase-C Nza +\U00016891;Bamum Letter Phase-C Yum +\U00016892;Bamum Letter Phase-C Wangkuoq +\U00016893;Bamum Letter Phase-C Nggen +\U00016894;Bamum Letter Phase-C Ndeuaeree +\U00016895;Bamum Letter Phase-C Ngkaq +\U00016896;Bamum Letter Phase-C Gharae +\U00016897;Bamum Letter Phase-C Mbeekeet +\U00016898;Bamum Letter Phase-C Gbayi +\U00016899;Bamum Letter Phase-C Nyir Mkparaq Meun +\U0001689A;Bamum Letter Phase-C Ntu Mbit +\U0001689B;Bamum Letter Phase-C Mbeum +\U0001689C;Bamum Letter Phase-C Pirieen +\U0001689D;Bamum Letter Phase-C Ndombu +\U0001689E;Bamum Letter Phase-C Mbaa Cabbage-Tree +\U0001689F;Bamum Letter Phase-C Keusheuaep +\U000168A0;Bamum Letter Phase-C Ghap +\U000168A1;Bamum Letter Phase-C Keukaq +\U000168A2;Bamum Letter Phase-C Yu Muomae +\U000168A3;Bamum Letter Phase-C Nzeum +\U000168A4;Bamum Letter Phase-C Mbue +\U000168A5;Bamum Letter Phase-C Nseuaen +\U000168A6;Bamum Letter Phase-C Mbit +\U000168A7;Bamum Letter Phase-C Yeuq +\U000168A8;Bamum Letter Phase-C Kparaq +\U000168A9;Bamum Letter Phase-C Kaa +\U000168AA;Bamum Letter Phase-C Seux +\U000168AB;Bamum Letter Phase-C Ndida +\U000168AC;Bamum Letter Phase-C Taashae +\U000168AD;Bamum Letter Phase-C Njueq +\U000168AE;Bamum Letter Phase-C Tita Yue +\U000168AF;Bamum Letter Phase-C Suaet +\U000168B0;Bamum Letter Phase-C Ngguaen Nyam +\U000168B1;Bamum Letter Phase-C Veux +\U000168B2;Bamum Letter Phase-C Nansanaq +\U000168B3;Bamum Letter Phase-C Ma Keuaeri +\U000168B4;Bamum Letter Phase-C Ntaa +\U000168B5;Bamum Letter Phase-C Ngguon +\U000168B6;Bamum Letter Phase-C Lap +\U000168B7;Bamum Letter Phase-C Mbirieen +\U000168B8;Bamum Letter Phase-C Mgbasaq +\U000168B9;Bamum Letter Phase-C Nteungba +\U000168BA;Bamum Letter Phase-C Teuteux +\U000168BB;Bamum Letter Phase-C Nggum +\U000168BC;Bamum Letter Phase-C Fue +\U000168BD;Bamum Letter Phase-C Ndeut +\U000168BE;Bamum Letter Phase-C Nsa +\U000168BF;Bamum Letter Phase-C Nshaq +\U000168C0;Bamum Letter Phase-C Bung +\U000168C1;Bamum Letter Phase-C Veuaepen +\U000168C2;Bamum Letter Phase-C Mberae +\U000168C3;Bamum Letter Phase-C Ru +\U000168C4;Bamum Letter Phase-C Njaem +\U000168C5;Bamum Letter Phase-C Lam +\U000168C6;Bamum Letter Phase-C Tituaep +\U000168C7;Bamum Letter Phase-C Nsuot Ngom +\U000168C8;Bamum Letter Phase-C Njeeee +\U000168C9;Bamum Letter Phase-C Ket +\U000168CA;Bamum Letter Phase-C Nggu +\U000168CB;Bamum Letter Phase-C Maesi +\U000168CC;Bamum Letter Phase-C Mbuaem +\U000168CD;Bamum Letter Phase-C Lu +\U000168CE;Bamum Letter Phase-C Kut +\U000168CF;Bamum Letter Phase-C Njam +\U000168D0;Bamum Letter Phase-C Ngom +\U000168D1;Bamum Letter Phase-C Wup +\U000168D2;Bamum Letter Phase-C Nggueet +\U000168D3;Bamum Letter Phase-C Nsom +\U000168D4;Bamum Letter Phase-C Nten +\U000168D5;Bamum Letter Phase-C Kuop Nkaarae +\U000168D6;Bamum Letter Phase-C Nsun +\U000168D7;Bamum Letter Phase-C Ndam +\U000168D8;Bamum Letter Phase-C Ma Nsiee +\U000168D9;Bamum Letter Phase-C Yaa +\U000168DA;Bamum Letter Phase-C Ndap +\U000168DB;Bamum Letter Phase-C Shueq +\U000168DC;Bamum Letter Phase-C Setfon +\U000168DD;Bamum Letter Phase-C Mbi +\U000168DE;Bamum Letter Phase-C Maemba +\U000168DF;Bamum Letter Phase-C Mbanyi +\U000168E0;Bamum Letter Phase-C Keuseux +\U000168E1;Bamum Letter Phase-C Mbeux +\U000168E2;Bamum Letter Phase-C Keum +\U000168E3;Bamum Letter Phase-C Mbaa Picket +\U000168E4;Bamum Letter Phase-C Yuwoq +\U000168E5;Bamum Letter Phase-C Njeux +\U000168E6;Bamum Letter Phase-C Miee +\U000168E7;Bamum Letter Phase-C Muae +\U000168E8;Bamum Letter Phase-C Shiq +\U000168E9;Bamum Letter Phase-C Ken Law +\U000168EA;Bamum Letter Phase-C Ken Fatigue +\U000168EB;Bamum Letter Phase-C Ngaq +\U000168EC;Bamum Letter Phase-C Naq +\U000168ED;Bamum Letter Phase-C Liq +\U000168EE;Bamum Letter Phase-C Pin +\U000168EF;Bamum Letter Phase-C Pen +\U000168F0;Bamum Letter Phase-C Tet +\U000168F1;Bamum Letter Phase-D Mbuo +\U000168F2;Bamum Letter Phase-D Wap +\U000168F3;Bamum Letter Phase-D Nji +\U000168F4;Bamum Letter Phase-D Mfon +\U000168F5;Bamum Letter Phase-D Njiee +\U000168F6;Bamum Letter Phase-D Liee +\U000168F7;Bamum Letter Phase-D Njeut +\U000168F8;Bamum Letter Phase-D Nshee +\U000168F9;Bamum Letter Phase-D Nggaamae +\U000168FA;Bamum Letter Phase-D Nyam +\U000168FB;Bamum Letter Phase-D Wuaen +\U000168FC;Bamum Letter Phase-D Ngkun +\U000168FD;Bamum Letter Phase-D Shee +\U000168FE;Bamum Letter Phase-D Ngkap +\U000168FF;Bamum Letter Phase-D Keuaetmeun +\U00016900;Bamum Letter Phase-D Teut +\U00016901;Bamum Letter Phase-D Sheuae +\U00016902;Bamum Letter Phase-D Njap +\U00016903;Bamum Letter Phase-D Sue +\U00016904;Bamum Letter Phase-D Ket +\U00016905;Bamum Letter Phase-D Yaemmae +\U00016906;Bamum Letter Phase-D Kuom +\U00016907;Bamum Letter Phase-D Sap +\U00016908;Bamum Letter Phase-D Mfeut +\U00016909;Bamum Letter Phase-D Ndeux +\U0001690A;Bamum Letter Phase-D Maleeri +\U0001690B;Bamum Letter Phase-D Meut +\U0001690C;Bamum Letter Phase-D Seuaeq +\U0001690D;Bamum Letter Phase-D Yen +\U0001690E;Bamum Letter Phase-D Njeuaem +\U0001690F;Bamum Letter Phase-D Keuot Mbuae +\U00016910;Bamum Letter Phase-D Ngkeuri +\U00016911;Bamum Letter Phase-D Tu +\U00016912;Bamum Letter Phase-D Ghaa +\U00016913;Bamum Letter Phase-D Ngkyee +\U00016914;Bamum Letter Phase-D Feufeuaet +\U00016915;Bamum Letter Phase-D Ndee +\U00016916;Bamum Letter Phase-D Mgbofum +\U00016917;Bamum Letter Phase-D Leuaep +\U00016918;Bamum Letter Phase-D Ndon +\U00016919;Bamum Letter Phase-D Moni +\U0001691A;Bamum Letter Phase-D Mgbeun +\U0001691B;Bamum Letter Phase-D Puut +\U0001691C;Bamum Letter Phase-D Mgbiee +\U0001691D;Bamum Letter Phase-D Mfo +\U0001691E;Bamum Letter Phase-D Lum +\U0001691F;Bamum Letter Phase-D Nsieep +\U00016920;Bamum Letter Phase-D Mbaa +\U00016921;Bamum Letter Phase-D Kwaet +\U00016922;Bamum Letter Phase-D Nyet +\U00016923;Bamum Letter Phase-D Teuaen +\U00016924;Bamum Letter Phase-D Sot +\U00016925;Bamum Letter Phase-D Yuwoq +\U00016926;Bamum Letter Phase-D Keum +\U00016927;Bamum Letter Phase-D Raem +\U00016928;Bamum Letter Phase-D Teeee +\U00016929;Bamum Letter Phase-D Ngkeuaeq +\U0001692A;Bamum Letter Phase-D Mfeuae +\U0001692B;Bamum Letter Phase-D Nsieet +\U0001692C;Bamum Letter Phase-D Keup +\U0001692D;Bamum Letter Phase-D Pip +\U0001692E;Bamum Letter Phase-D Peutae +\U0001692F;Bamum Letter Phase-D Nyue +\U00016930;Bamum Letter Phase-D Let +\U00016931;Bamum Letter Phase-D Nggaam +\U00016932;Bamum Letter Phase-D Mfiee +\U00016933;Bamum Letter Phase-D Nggwaen +\U00016934;Bamum Letter Phase-D Yuom +\U00016935;Bamum Letter Phase-D Pap +\U00016936;Bamum Letter Phase-D Yuop +\U00016937;Bamum Letter Phase-D Ndam +\U00016938;Bamum Letter Phase-D Nteum +\U00016939;Bamum Letter Phase-D Suae +\U0001693A;Bamum Letter Phase-D Kun +\U0001693B;Bamum Letter Phase-D Nggeux +\U0001693C;Bamum Letter Phase-D Ngkiee +\U0001693D;Bamum Letter Phase-D Tuot +\U0001693E;Bamum Letter Phase-D Meun +\U0001693F;Bamum Letter Phase-D Kuq +\U00016940;Bamum Letter Phase-D Nsum +\U00016941;Bamum Letter Phase-D Teun +\U00016942;Bamum Letter Phase-D Maenjet +\U00016943;Bamum Letter Phase-D Nggap +\U00016944;Bamum Letter Phase-D Leum +\U00016945;Bamum Letter Phase-D Ngguom +\U00016946;Bamum Letter Phase-D Nshut +\U00016947;Bamum Letter Phase-D Njueq +\U00016948;Bamum Letter Phase-D Gheuae +\U00016949;Bamum Letter Phase-D Ku +\U0001694A;Bamum Letter Phase-D Ren Old +\U0001694B;Bamum Letter Phase-D Tae +\U0001694C;Bamum Letter Phase-D Toq +\U0001694D;Bamum Letter Phase-D Nyi +\U0001694E;Bamum Letter Phase-D Rii +\U0001694F;Bamum Letter Phase-D Leeee +\U00016950;Bamum Letter Phase-D Meeee +\U00016951;Bamum Letter Phase-D M +\U00016952;Bamum Letter Phase-D Suu +\U00016953;Bamum Letter Phase-D Mu +\U00016954;Bamum Letter Phase-D Shii +\U00016955;Bamum Letter Phase-D Sheux +\U00016956;Bamum Letter Phase-D Kyee +\U00016957;Bamum Letter Phase-D Nu +\U00016958;Bamum Letter Phase-D Shu +\U00016959;Bamum Letter Phase-D Ntee +\U0001695A;Bamum Letter Phase-D Pee +\U0001695B;Bamum Letter Phase-D Ni +\U0001695C;Bamum Letter Phase-D Shoq +\U0001695D;Bamum Letter Phase-D Puq +\U0001695E;Bamum Letter Phase-D Mvop +\U0001695F;Bamum Letter Phase-D Loq +\U00016960;Bamum Letter Phase-D Ren Much +\U00016961;Bamum Letter Phase-D Ti +\U00016962;Bamum Letter Phase-D Ntuu +\U00016963;Bamum Letter Phase-D Mbaa Seven +\U00016964;Bamum Letter Phase-D Saq +\U00016965;Bamum Letter Phase-D Faa +\U00016966;Bamum Letter Phase-E Ndap +\U00016967;Bamum Letter Phase-E Toon +\U00016968;Bamum Letter Phase-E Mbeum +\U00016969;Bamum Letter Phase-E Lap +\U0001696A;Bamum Letter Phase-E Vom +\U0001696B;Bamum Letter Phase-E Loon +\U0001696C;Bamum Letter Phase-E Paa +\U0001696D;Bamum Letter Phase-E Som +\U0001696E;Bamum Letter Phase-E Raq +\U0001696F;Bamum Letter Phase-E Nshuop +\U00016970;Bamum Letter Phase-E Ndun +\U00016971;Bamum Letter Phase-E Puae +\U00016972;Bamum Letter Phase-E Tam +\U00016973;Bamum Letter Phase-E Ngka +\U00016974;Bamum Letter Phase-E Kpeux +\U00016975;Bamum Letter Phase-E Wuo +\U00016976;Bamum Letter Phase-E See +\U00016977;Bamum Letter Phase-E Nggeuaet +\U00016978;Bamum Letter Phase-E Paam +\U00016979;Bamum Letter Phase-E Too +\U0001697A;Bamum Letter Phase-E Kuop +\U0001697B;Bamum Letter Phase-E Lom +\U0001697C;Bamum Letter Phase-E Nshiee +\U0001697D;Bamum Letter Phase-E Ngop +\U0001697E;Bamum Letter Phase-E Maem +\U0001697F;Bamum Letter Phase-E Ngkeux +\U00016980;Bamum Letter Phase-E Ngoq +\U00016981;Bamum Letter Phase-E Nshue +\U00016982;Bamum Letter Phase-E Rimgba +\U00016983;Bamum Letter Phase-E Njeux +\U00016984;Bamum Letter Phase-E Peem +\U00016985;Bamum Letter Phase-E Saa +\U00016986;Bamum Letter Phase-E Nggurae +\U00016987;Bamum Letter Phase-E Mgba +\U00016988;Bamum Letter Phase-E Gheux +\U00016989;Bamum Letter Phase-E Ngkeuaem +\U0001698A;Bamum Letter Phase-E Njaemli +\U0001698B;Bamum Letter Phase-E Map +\U0001698C;Bamum Letter Phase-E Loot +\U0001698D;Bamum Letter Phase-E Nggeeee +\U0001698E;Bamum Letter Phase-E Ndiq +\U0001698F;Bamum Letter Phase-E Taen Nteum +\U00016990;Bamum Letter Phase-E Set +\U00016991;Bamum Letter Phase-E Pum +\U00016992;Bamum Letter Phase-E Ndaa Softness +\U00016993;Bamum Letter Phase-E Ngguaeshae Nyam +\U00016994;Bamum Letter Phase-E Yiee +\U00016995;Bamum Letter Phase-E Gheun +\U00016996;Bamum Letter Phase-E Tuae +\U00016997;Bamum Letter Phase-E Yeuae +\U00016998;Bamum Letter Phase-E Po +\U00016999;Bamum Letter Phase-E Tumae +\U0001699A;Bamum Letter Phase-E Keuae +\U0001699B;Bamum Letter Phase-E Suaen +\U0001699C;Bamum Letter Phase-E Teuaeq +\U0001699D;Bamum Letter Phase-E Veuae +\U0001699E;Bamum Letter Phase-E Weux +\U0001699F;Bamum Letter Phase-E Laam +\U000169A0;Bamum Letter Phase-E Pu +\U000169A1;Bamum Letter Phase-E Taaq +\U000169A2;Bamum Letter Phase-E Ghaamae +\U000169A3;Bamum Letter Phase-E Ngeureut +\U000169A4;Bamum Letter Phase-E Sheuaeq +\U000169A5;Bamum Letter Phase-E Mgben +\U000169A6;Bamum Letter Phase-E Mbee +\U000169A7;Bamum Letter Phase-E Nzaq +\U000169A8;Bamum Letter Phase-E Nkom +\U000169A9;Bamum Letter Phase-E Gbet +\U000169AA;Bamum Letter Phase-E Tum +\U000169AB;Bamum Letter Phase-E Kuet +\U000169AC;Bamum Letter Phase-E Yap +\U000169AD;Bamum Letter Phase-E Nyi Cleaver +\U000169AE;Bamum Letter Phase-E Yit +\U000169AF;Bamum Letter Phase-E Mfeuq +\U000169B0;Bamum Letter Phase-E Ndiaq +\U000169B1;Bamum Letter Phase-E Pieeq +\U000169B2;Bamum Letter Phase-E Yueq +\U000169B3;Bamum Letter Phase-E Leuaem +\U000169B4;Bamum Letter Phase-E Fue +\U000169B5;Bamum Letter Phase-E Gbeux +\U000169B6;Bamum Letter Phase-E Ngkup +\U000169B7;Bamum Letter Phase-E Ket +\U000169B8;Bamum Letter Phase-E Mae +\U000169B9;Bamum Letter Phase-E Ngkaami +\U000169BA;Bamum Letter Phase-E Ghet +\U000169BB;Bamum Letter Phase-E Fa +\U000169BC;Bamum Letter Phase-E Ntum +\U000169BD;Bamum Letter Phase-E Peut +\U000169BE;Bamum Letter Phase-E Yeum +\U000169BF;Bamum Letter Phase-E Nggeuae +\U000169C0;Bamum Letter Phase-E Nyi Between +\U000169C1;Bamum Letter Phase-E Nzuq +\U000169C2;Bamum Letter Phase-E Poon +\U000169C3;Bamum Letter Phase-E Miee +\U000169C4;Bamum Letter Phase-E Fuet +\U000169C5;Bamum Letter Phase-E Nae +\U000169C6;Bamum Letter Phase-E Muae +\U000169C7;Bamum Letter Phase-E Gheuae +\U000169C8;Bamum Letter Phase-E Fu I +\U000169C9;Bamum Letter Phase-E Mvi +\U000169CA;Bamum Letter Phase-E Puaq +\U000169CB;Bamum Letter Phase-E Ngkum +\U000169CC;Bamum Letter Phase-E Kut +\U000169CD;Bamum Letter Phase-E Piet +\U000169CE;Bamum Letter Phase-E Ntap +\U000169CF;Bamum Letter Phase-E Yeuaet +\U000169D0;Bamum Letter Phase-E Nggup +\U000169D1;Bamum Letter Phase-E Pa People +\U000169D2;Bamum Letter Phase-E Fu Call +\U000169D3;Bamum Letter Phase-E Fom +\U000169D4;Bamum Letter Phase-E Njee +\U000169D5;Bamum Letter Phase-E A +\U000169D6;Bamum Letter Phase-E Toq +\U000169D7;Bamum Letter Phase-E O +\U000169D8;Bamum Letter Phase-E I +\U000169D9;Bamum Letter Phase-E Laq +\U000169DA;Bamum Letter Phase-E Pa Plural +\U000169DB;Bamum Letter Phase-E Taa +\U000169DC;Bamum Letter Phase-E Taq +\U000169DD;Bamum Letter Phase-E Ndaa My House +\U000169DE;Bamum Letter Phase-E Shiq +\U000169DF;Bamum Letter Phase-E Yeux +\U000169E0;Bamum Letter Phase-E Nguae +\U000169E1;Bamum Letter Phase-E Yuaen +\U000169E2;Bamum Letter Phase-E Yoq Swimming +\U000169E3;Bamum Letter Phase-E Yoq Cover +\U000169E4;Bamum Letter Phase-E Yuq +\U000169E5;Bamum Letter Phase-E Yun +\U000169E6;Bamum Letter Phase-E Keux +\U000169E7;Bamum Letter Phase-E Peux +\U000169E8;Bamum Letter Phase-E Njee Epoch +\U000169E9;Bamum Letter Phase-E Pue +\U000169EA;Bamum Letter Phase-E Wue +\U000169EB;Bamum Letter Phase-E Fee +\U000169EC;Bamum Letter Phase-E Vee +\U000169ED;Bamum Letter Phase-E Lu +\U000169EE;Bamum Letter Phase-E Mi +\U000169EF;Bamum Letter Phase-E Reux +\U000169F0;Bamum Letter Phase-E Rae +\U000169F1;Bamum Letter Phase-E Nguaet +\U000169F2;Bamum Letter Phase-E Nga +\U000169F3;Bamum Letter Phase-E Sho +\U000169F4;Bamum Letter Phase-E Shoq +\U000169F5;Bamum Letter Phase-E Fu Remedy +\U000169F6;Bamum Letter Phase-E Na +\U000169F7;Bamum Letter Phase-E Pi +\U000169F8;Bamum Letter Phase-E Loq +\U000169F9;Bamum Letter Phase-E Ko +\U000169FA;Bamum Letter Phase-E Men +\U000169FB;Bamum Letter Phase-E Ma +\U000169FC;Bamum Letter Phase-E Maq +\U000169FD;Bamum Letter Phase-E Teu +\U000169FE;Bamum Letter Phase-E Ki +\U000169FF;Bamum Letter Phase-E Mon +\U00016A00;Bamum Letter Phase-E Ten +\U00016A01;Bamum Letter Phase-E Faq +\U00016A02;Bamum Letter Phase-E Ghom +\U00016A03;Bamum Letter Phase-F Ka +\U00016A04;Bamum Letter Phase-F U +\U00016A05;Bamum Letter Phase-F Ku +\U00016A06;Bamum Letter Phase-F Ee +\U00016A07;Bamum Letter Phase-F Ree +\U00016A08;Bamum Letter Phase-F Tae +\U00016A09;Bamum Letter Phase-F Nyi +\U00016A0A;Bamum Letter Phase-F La +\U00016A0B;Bamum Letter Phase-F Rii +\U00016A0C;Bamum Letter Phase-F Riee +\U00016A0D;Bamum Letter Phase-F Meeee +\U00016A0E;Bamum Letter Phase-F Taa +\U00016A0F;Bamum Letter Phase-F Ndaa +\U00016A10;Bamum Letter Phase-F Njaem +\U00016A11;Bamum Letter Phase-F M +\U00016A12;Bamum Letter Phase-F Suu +\U00016A13;Bamum Letter Phase-F Shii +\U00016A14;Bamum Letter Phase-F Si +\U00016A15;Bamum Letter Phase-F Seux +\U00016A16;Bamum Letter Phase-F Kyee +\U00016A17;Bamum Letter Phase-F Ket +\U00016A18;Bamum Letter Phase-F Nuae +\U00016A19;Bamum Letter Phase-F Nu +\U00016A1A;Bamum Letter Phase-F Njuae +\U00016A1B;Bamum Letter Phase-F Yoq +\U00016A1C;Bamum Letter Phase-F Shu +\U00016A1D;Bamum Letter Phase-F Ya +\U00016A1E;Bamum Letter Phase-F Nsha +\U00016A1F;Bamum Letter Phase-F Peux +\U00016A20;Bamum Letter Phase-F Ntee +\U00016A21;Bamum Letter Phase-F Wue +\U00016A22;Bamum Letter Phase-F Pee +\U00016A23;Bamum Letter Phase-F Ru +\U00016A24;Bamum Letter Phase-F Ni +\U00016A25;Bamum Letter Phase-F Reux +\U00016A26;Bamum Letter Phase-F Ken +\U00016A27;Bamum Letter Phase-F Ngkwaen +\U00016A28;Bamum Letter Phase-F Ngga +\U00016A29;Bamum Letter Phase-F Sho +\U00016A2A;Bamum Letter Phase-F Puae +\U00016A2B;Bamum Letter Phase-F Fom +\U00016A2C;Bamum Letter Phase-F Wa +\U00016A2D;Bamum Letter Phase-F Li +\U00016A2E;Bamum Letter Phase-F Loq +\U00016A2F;Bamum Letter Phase-F Ko +\U00016A30;Bamum Letter Phase-F Mben +\U00016A31;Bamum Letter Phase-F Ren +\U00016A32;Bamum Letter Phase-F Ma +\U00016A33;Bamum Letter Phase-F Mo +\U00016A34;Bamum Letter Phase-F Mbaa +\U00016A35;Bamum Letter Phase-F Tet +\U00016A36;Bamum Letter Phase-F Kpa +\U00016A37;Bamum Letter Phase-F Samba +\U00016A38;Bamum Letter Phase-F Vueq +\U00016A40;Mro Letter Ta +\U00016A41;Mro Letter Ngi +\U00016A42;Mro Letter Yo +\U00016A43;Mro Letter Mim +\U00016A44;Mro Letter Ba +\U00016A45;Mro Letter Da +\U00016A46;Mro Letter A +\U00016A47;Mro Letter Phi +\U00016A48;Mro Letter Khai +\U00016A49;Mro Letter Hao +\U00016A4A;Mro Letter Dai +\U00016A4B;Mro Letter Chu +\U00016A4C;Mro Letter Keaae +\U00016A4D;Mro Letter Ol +\U00016A4E;Mro Letter Maem +\U00016A4F;Mro Letter Nin +\U00016A50;Mro Letter Pa +\U00016A51;Mro Letter Oo +\U00016A52;Mro Letter O +\U00016A53;Mro Letter Ro +\U00016A54;Mro Letter Shi +\U00016A55;Mro Letter Thea +\U00016A56;Mro Letter Ea +\U00016A57;Mro Letter Wa +\U00016A58;Mro Letter E +\U00016A59;Mro Letter Ko +\U00016A5A;Mro Letter Lan +\U00016A5B;Mro Letter La +\U00016A5C;Mro Letter Hai +\U00016A5D;Mro Letter Ri +\U00016A5E;Mro Letter Tek +\U00016A60;Mro Digit Zero +\U00016A61;Mro Digit One +\U00016A62;Mro Digit Two +\U00016A63;Mro Digit Three +\U00016A64;Mro Digit Four +\U00016A65;Mro Digit Five +\U00016A66;Mro Digit Six +\U00016A67;Mro Digit Seven +\U00016A68;Mro Digit Eight +\U00016A69;Mro Digit Nine +\U00016A6E;Mro Danda +\U00016A6F;Mro Double Danda +\U00016A70;Tangsa Letter Oz +\U00016A71;Tangsa Letter Oc +\U00016A72;Tangsa Letter Oq +\U00016A73;Tangsa Letter Ox +\U00016A74;Tangsa Letter Az +\U00016A75;Tangsa Letter Ac +\U00016A76;Tangsa Letter Aq +\U00016A77;Tangsa Letter Ax +\U00016A78;Tangsa Letter Vz +\U00016A79;Tangsa Letter Vc +\U00016A7A;Tangsa Letter Vq +\U00016A7B;Tangsa Letter Vx +\U00016A7C;Tangsa Letter Ez +\U00016A7D;Tangsa Letter Ec +\U00016A7E;Tangsa Letter Eq +\U00016A7F;Tangsa Letter Ex +\U00016A80;Tangsa Letter Iz +\U00016A81;Tangsa Letter Ic +\U00016A82;Tangsa Letter Iq +\U00016A83;Tangsa Letter Ix +\U00016A84;Tangsa Letter Uz +\U00016A85;Tangsa Letter Uc +\U00016A86;Tangsa Letter Uq +\U00016A87;Tangsa Letter Ux +\U00016A88;Tangsa Letter Awz +\U00016A89;Tangsa Letter Awc +\U00016A8A;Tangsa Letter Awq +\U00016A8B;Tangsa Letter Awx +\U00016A8C;Tangsa Letter Uiz +\U00016A8D;Tangsa Letter Uic +\U00016A8E;Tangsa Letter Uiq +\U00016A8F;Tangsa Letter Uix +\U00016A90;Tangsa Letter Final Ng +\U00016A91;Tangsa Letter Long Uex +\U00016A92;Tangsa Letter Short Uez +\U00016A93;Tangsa Letter Short Awx +\U00016A94;Tangsa Letter Uec +\U00016A95;Tangsa Letter Uez +\U00016A96;Tangsa Letter Ueq +\U00016A97;Tangsa Letter Uex +\U00016A98;Tangsa Letter Uiuz +\U00016A99;Tangsa Letter Uiuc +\U00016A9A;Tangsa Letter Uiuq +\U00016A9B;Tangsa Letter Uiux +\U00016A9C;Tangsa Letter Mz +\U00016A9D;Tangsa Letter Mc +\U00016A9E;Tangsa Letter Mq +\U00016A9F;Tangsa Letter Mx +\U00016AA0;Tangsa Letter Ka +\U00016AA1;Tangsa Letter Kha +\U00016AA2;Tangsa Letter Ga +\U00016AA3;Tangsa Letter Nga +\U00016AA4;Tangsa Letter Sa +\U00016AA5;Tangsa Letter Ya +\U00016AA6;Tangsa Letter Wa +\U00016AA7;Tangsa Letter Pa +\U00016AA8;Tangsa Letter Nya +\U00016AA9;Tangsa Letter Pha +\U00016AAA;Tangsa Letter Ba +\U00016AAB;Tangsa Letter Ma +\U00016AAC;Tangsa Letter Na +\U00016AAD;Tangsa Letter Ha +\U00016AAE;Tangsa Letter La +\U00016AAF;Tangsa Letter Hta +\U00016AB0;Tangsa Letter Ta +\U00016AB1;Tangsa Letter Da +\U00016AB2;Tangsa Letter Ra +\U00016AB3;Tangsa Letter Nha +\U00016AB4;Tangsa Letter Sha +\U00016AB5;Tangsa Letter Ca +\U00016AB6;Tangsa Letter Tsa +\U00016AB7;Tangsa Letter Gha +\U00016AB8;Tangsa Letter Htta +\U00016AB9;Tangsa Letter Tha +\U00016ABA;Tangsa Letter Xa +\U00016ABB;Tangsa Letter Fa +\U00016ABC;Tangsa Letter Dha +\U00016ABD;Tangsa Letter Cha +\U00016ABE;Tangsa Letter Za +\U00016AC0;Tangsa Digit Zero +\U00016AC1;Tangsa Digit One +\U00016AC2;Tangsa Digit Two +\U00016AC3;Tangsa Digit Three +\U00016AC4;Tangsa Digit Four +\U00016AC5;Tangsa Digit Five +\U00016AC6;Tangsa Digit Six +\U00016AC7;Tangsa Digit Seven +\U00016AC8;Tangsa Digit Eight +\U00016AC9;Tangsa Digit Nine +\U00016AD0;Bassa Vah Letter Enni +\U00016AD1;Bassa Vah Letter Ka +\U00016AD2;Bassa Vah Letter Se +\U00016AD3;Bassa Vah Letter Fa +\U00016AD4;Bassa Vah Letter Mbe +\U00016AD5;Bassa Vah Letter Yie +\U00016AD6;Bassa Vah Letter Gah +\U00016AD7;Bassa Vah Letter Dhii +\U00016AD8;Bassa Vah Letter Kpah +\U00016AD9;Bassa Vah Letter Jo +\U00016ADA;Bassa Vah Letter Hwah +\U00016ADB;Bassa Vah Letter Wa +\U00016ADC;Bassa Vah Letter Zo +\U00016ADD;Bassa Vah Letter Gbu +\U00016ADE;Bassa Vah Letter Do +\U00016ADF;Bassa Vah Letter Ce +\U00016AE0;Bassa Vah Letter Uwu +\U00016AE1;Bassa Vah Letter To +\U00016AE2;Bassa Vah Letter Ba +\U00016AE3;Bassa Vah Letter Vu +\U00016AE4;Bassa Vah Letter Yein +\U00016AE5;Bassa Vah Letter Pa +\U00016AE6;Bassa Vah Letter Wadda +\U00016AE7;Bassa Vah Letter A +\U00016AE8;Bassa Vah Letter O +\U00016AE9;Bassa Vah Letter Oo +\U00016AEA;Bassa Vah Letter U +\U00016AEB;Bassa Vah Letter Ee +\U00016AEC;Bassa Vah Letter E +\U00016AED;Bassa Vah Letter I +\U00016AF0;Bassa Vah Combining High Tone +\U00016AF1;Bassa Vah Combining Low Tone +\U00016AF2;Bassa Vah Combining Mid Tone +\U00016AF3;Bassa Vah Combining Low-Mid Tone +\U00016AF4;Bassa Vah Combining High-Low Tone +\U00016AF5;Bassa Vah Full Stop +\U00016B00;Pahawh Hmong Vowel Keeb +\U00016B01;Pahawh Hmong Vowel Keev +\U00016B02;Pahawh Hmong Vowel Kib +\U00016B03;Pahawh Hmong Vowel Kiv +\U00016B04;Pahawh Hmong Vowel Kaub +\U00016B05;Pahawh Hmong Vowel Kauv +\U00016B06;Pahawh Hmong Vowel Kub +\U00016B07;Pahawh Hmong Vowel Kuv +\U00016B08;Pahawh Hmong Vowel Keb +\U00016B09;Pahawh Hmong Vowel Kev +\U00016B0A;Pahawh Hmong Vowel Kaib +\U00016B0B;Pahawh Hmong Vowel Kaiv +\U00016B0C;Pahawh Hmong Vowel Koob +\U00016B0D;Pahawh Hmong Vowel Koov +\U00016B0E;Pahawh Hmong Vowel Kawb +\U00016B0F;Pahawh Hmong Vowel Kawv +\U00016B10;Pahawh Hmong Vowel Kuab +\U00016B11;Pahawh Hmong Vowel Kuav +\U00016B12;Pahawh Hmong Vowel Kob +\U00016B13;Pahawh Hmong Vowel Kov +\U00016B14;Pahawh Hmong Vowel Kiab +\U00016B15;Pahawh Hmong Vowel Kiav +\U00016B16;Pahawh Hmong Vowel Kab +\U00016B17;Pahawh Hmong Vowel Kav +\U00016B18;Pahawh Hmong Vowel Kwb +\U00016B19;Pahawh Hmong Vowel Kwv +\U00016B1A;Pahawh Hmong Vowel Kaab +\U00016B1B;Pahawh Hmong Vowel Kaav +\U00016B1C;Pahawh Hmong Consonant Vau +\U00016B1D;Pahawh Hmong Consonant Ntsau +\U00016B1E;Pahawh Hmong Consonant Lau +\U00016B1F;Pahawh Hmong Consonant Hau +\U00016B20;Pahawh Hmong Consonant Nlau +\U00016B21;Pahawh Hmong Consonant Rau +\U00016B22;Pahawh Hmong Consonant Nkau +\U00016B23;Pahawh Hmong Consonant Qhau +\U00016B24;Pahawh Hmong Consonant Yau +\U00016B25;Pahawh Hmong Consonant Hlau +\U00016B26;Pahawh Hmong Consonant Mau +\U00016B27;Pahawh Hmong Consonant Chau +\U00016B28;Pahawh Hmong Consonant Nchau +\U00016B29;Pahawh Hmong Consonant Hnau +\U00016B2A;Pahawh Hmong Consonant Plhau +\U00016B2B;Pahawh Hmong Consonant Nthau +\U00016B2C;Pahawh Hmong Consonant Nau +\U00016B2D;Pahawh Hmong Consonant Au +\U00016B2E;Pahawh Hmong Consonant Xau +\U00016B2F;Pahawh Hmong Consonant Cau +\U00016B30;Pahawh Hmong Mark Cim Tub +\U00016B31;Pahawh Hmong Mark Cim So +\U00016B32;Pahawh Hmong Mark Cim Kes +\U00016B33;Pahawh Hmong Mark Cim Khav +\U00016B34;Pahawh Hmong Mark Cim Suam +\U00016B35;Pahawh Hmong Mark Cim Hom +\U00016B36;Pahawh Hmong Mark Cim Taum +\U00016B37;Pahawh Hmong Sign Vos Thom +\U00016B38;Pahawh Hmong Sign Vos Tshab Ceeb +\U00016B39;Pahawh Hmong Sign Cim Cheem +\U00016B3A;Pahawh Hmong Sign Vos Thiab +\U00016B3B;Pahawh Hmong Sign Vos Feem +\U00016B3C;Pahawh Hmong Sign Xyeem Ntxiv +\U00016B3D;Pahawh Hmong Sign Xyeem Rho +\U00016B3E;Pahawh Hmong Sign Xyeem Tov +\U00016B3F;Pahawh Hmong Sign Xyeem Faib +\U00016B40;Pahawh Hmong Sign Vos Seev +\U00016B41;Pahawh Hmong Sign Meej Suab +\U00016B42;Pahawh Hmong Sign Vos Nrua +\U00016B43;Pahawh Hmong Sign Ib Yam +\U00016B44;Pahawh Hmong Sign Xaus +\U00016B45;Pahawh Hmong Sign Cim Tsov Rog +\U00016B50;Pahawh Hmong Digit Zero +\U00016B51;Pahawh Hmong Digit One +\U00016B52;Pahawh Hmong Digit Two +\U00016B53;Pahawh Hmong Digit Three +\U00016B54;Pahawh Hmong Digit Four +\U00016B55;Pahawh Hmong Digit Five +\U00016B56;Pahawh Hmong Digit Six +\U00016B57;Pahawh Hmong Digit Seven +\U00016B58;Pahawh Hmong Digit Eight +\U00016B59;Pahawh Hmong Digit Nine +\U00016B5B;Pahawh Hmong Number Tens +\U00016B5C;Pahawh Hmong Number Hundreds +\U00016B5D;Pahawh Hmong Number Ten Thousands +\U00016B5E;Pahawh Hmong Number Millions +\U00016B5F;Pahawh Hmong Number Hundred Millions +\U00016B60;Pahawh Hmong Number Ten Billions +\U00016B61;Pahawh Hmong Number Trillions +\U00016B63;Pahawh Hmong Sign Vos Lub +\U00016B64;Pahawh Hmong Sign Xyoo +\U00016B65;Pahawh Hmong Sign Hli +\U00016B66;Pahawh Hmong Sign Third-Stage Hli +\U00016B67;Pahawh Hmong Sign Zwj Thaj +\U00016B68;Pahawh Hmong Sign Hnub +\U00016B69;Pahawh Hmong Sign Nqig +\U00016B6A;Pahawh Hmong Sign Xiab +\U00016B6B;Pahawh Hmong Sign Ntuj +\U00016B6C;Pahawh Hmong Sign Av +\U00016B6D;Pahawh Hmong Sign Txheej Ceev +\U00016B6E;Pahawh Hmong Sign Meej Tseeb +\U00016B6F;Pahawh Hmong Sign Tau +\U00016B70;Pahawh Hmong Sign Los +\U00016B71;Pahawh Hmong Sign Mus +\U00016B72;Pahawh Hmong Sign Cim Hais Lus Ntog Ntog +\U00016B73;Pahawh Hmong Sign Cim Cuam Tshooj +\U00016B74;Pahawh Hmong Sign Cim Txwv +\U00016B75;Pahawh Hmong Sign Cim Txwv Chwv +\U00016B76;Pahawh Hmong Sign Cim Pub Dawb +\U00016B77;Pahawh Hmong Sign Cim Nres Tos +\U00016B7D;Pahawh Hmong Clan Sign Tsheej +\U00016B7E;Pahawh Hmong Clan Sign Yeeg +\U00016B7F;Pahawh Hmong Clan Sign Lis +\U00016B80;Pahawh Hmong Clan Sign Lauj +\U00016B81;Pahawh Hmong Clan Sign Xyooj +\U00016B82;Pahawh Hmong Clan Sign Koo +\U00016B83;Pahawh Hmong Clan Sign Hawj +\U00016B84;Pahawh Hmong Clan Sign Muas +\U00016B85;Pahawh Hmong Clan Sign Thoj +\U00016B86;Pahawh Hmong Clan Sign Tsab +\U00016B87;Pahawh Hmong Clan Sign Phab +\U00016B88;Pahawh Hmong Clan Sign Khab +\U00016B89;Pahawh Hmong Clan Sign Ham +\U00016B8A;Pahawh Hmong Clan Sign Vaj +\U00016B8B;Pahawh Hmong Clan Sign Faj +\U00016B8C;Pahawh Hmong Clan Sign Yaj +\U00016B8D;Pahawh Hmong Clan Sign Tswb +\U00016B8E;Pahawh Hmong Clan Sign Kwm +\U00016B8F;Pahawh Hmong Clan Sign Vwj +\U00016E40;Medefaidrin Capital Letter M +\U00016E41;Medefaidrin Capital Letter S +\U00016E42;Medefaidrin Capital Letter V +\U00016E43;Medefaidrin Capital Letter W +\U00016E44;Medefaidrin Capital Letter Atiu +\U00016E45;Medefaidrin Capital Letter Z +\U00016E46;Medefaidrin Capital Letter Kp +\U00016E47;Medefaidrin Capital Letter P +\U00016E48;Medefaidrin Capital Letter T +\U00016E49;Medefaidrin Capital Letter G +\U00016E4A;Medefaidrin Capital Letter F +\U00016E4B;Medefaidrin Capital Letter I +\U00016E4C;Medefaidrin Capital Letter K +\U00016E4D;Medefaidrin Capital Letter A +\U00016E4E;Medefaidrin Capital Letter J +\U00016E4F;Medefaidrin Capital Letter E +\U00016E50;Medefaidrin Capital Letter B +\U00016E51;Medefaidrin Capital Letter C +\U00016E52;Medefaidrin Capital Letter U +\U00016E53;Medefaidrin Capital Letter Yu +\U00016E54;Medefaidrin Capital Letter L +\U00016E55;Medefaidrin Capital Letter Q +\U00016E56;Medefaidrin Capital Letter Hp +\U00016E57;Medefaidrin Capital Letter Ny +\U00016E58;Medefaidrin Capital Letter X +\U00016E59;Medefaidrin Capital Letter D +\U00016E5A;Medefaidrin Capital Letter Oe +\U00016E5B;Medefaidrin Capital Letter N +\U00016E5C;Medefaidrin Capital Letter R +\U00016E5D;Medefaidrin Capital Letter O +\U00016E5E;Medefaidrin Capital Letter Ai +\U00016E5F;Medefaidrin Capital Letter Y +\U00016E60;Medefaidrin Small Letter M +\U00016E61;Medefaidrin Small Letter S +\U00016E62;Medefaidrin Small Letter V +\U00016E63;Medefaidrin Small Letter W +\U00016E64;Medefaidrin Small Letter Atiu +\U00016E65;Medefaidrin Small Letter Z +\U00016E66;Medefaidrin Small Letter Kp +\U00016E67;Medefaidrin Small Letter P +\U00016E68;Medefaidrin Small Letter T +\U00016E69;Medefaidrin Small Letter G +\U00016E6A;Medefaidrin Small Letter F +\U00016E6B;Medefaidrin Small Letter I +\U00016E6C;Medefaidrin Small Letter K +\U00016E6D;Medefaidrin Small Letter A +\U00016E6E;Medefaidrin Small Letter J +\U00016E6F;Medefaidrin Small Letter E +\U00016E70;Medefaidrin Small Letter B +\U00016E71;Medefaidrin Small Letter C +\U00016E72;Medefaidrin Small Letter U +\U00016E73;Medefaidrin Small Letter Yu +\U00016E74;Medefaidrin Small Letter L +\U00016E75;Medefaidrin Small Letter Q +\U00016E76;Medefaidrin Small Letter Hp +\U00016E77;Medefaidrin Small Letter Ny +\U00016E78;Medefaidrin Small Letter X +\U00016E79;Medefaidrin Small Letter D +\U00016E7A;Medefaidrin Small Letter Oe +\U00016E7B;Medefaidrin Small Letter N +\U00016E7C;Medefaidrin Small Letter R +\U00016E7D;Medefaidrin Small Letter O +\U00016E7E;Medefaidrin Small Letter Ai +\U00016E7F;Medefaidrin Small Letter Y +\U00016E80;Medefaidrin Digit Zero +\U00016E81;Medefaidrin Digit One +\U00016E82;Medefaidrin Digit Two +\U00016E83;Medefaidrin Digit Three +\U00016E84;Medefaidrin Digit Four +\U00016E85;Medefaidrin Digit Five +\U00016E86;Medefaidrin Digit Six +\U00016E87;Medefaidrin Digit Seven +\U00016E88;Medefaidrin Digit Eight +\U00016E89;Medefaidrin Digit Nine +\U00016E8A;Medefaidrin Number Ten +\U00016E8B;Medefaidrin Number Eleven +\U00016E8C;Medefaidrin Number Twelve +\U00016E8D;Medefaidrin Number Thirteen +\U00016E8E;Medefaidrin Number Fourteen +\U00016E8F;Medefaidrin Number Fifteen +\U00016E90;Medefaidrin Number Sixteen +\U00016E91;Medefaidrin Number Seventeen +\U00016E92;Medefaidrin Number Eighteen +\U00016E93;Medefaidrin Number Nineteen +\U00016E94;Medefaidrin Digit One Alternate Form +\U00016E95;Medefaidrin Digit Two Alternate Form +\U00016E96;Medefaidrin Digit Three Alternate Form +\U00016E97;Medefaidrin Comma +\U00016E98;Medefaidrin Full Stop +\U00016E99;Medefaidrin Symbol Aiva +\U00016E9A;Medefaidrin Exclamation Oh +\U00016F00;Miao Letter Pa +\U00016F01;Miao Letter Ba +\U00016F02;Miao Letter Yi Pa +\U00016F03;Miao Letter Pla +\U00016F04;Miao Letter Ma +\U00016F05;Miao Letter Mha +\U00016F06;Miao Letter Archaic Ma +\U00016F07;Miao Letter Fa +\U00016F08;Miao Letter Va +\U00016F09;Miao Letter Vfa +\U00016F0A;Miao Letter Ta +\U00016F0B;Miao Letter Da +\U00016F0C;Miao Letter Yi Tta +\U00016F0D;Miao Letter Yi Ta +\U00016F0E;Miao Letter Tta +\U00016F0F;Miao Letter Dda +\U00016F10;Miao Letter Na +\U00016F11;Miao Letter Nha +\U00016F12;Miao Letter Yi Nna +\U00016F13;Miao Letter Archaic Na +\U00016F14;Miao Letter Nna +\U00016F15;Miao Letter Nnha +\U00016F16;Miao Letter La +\U00016F17;Miao Letter Lya +\U00016F18;Miao Letter Lha +\U00016F19;Miao Letter Lhya +\U00016F1A;Miao Letter Tlha +\U00016F1B;Miao Letter Dlha +\U00016F1C;Miao Letter Tlhya +\U00016F1D;Miao Letter Dlhya +\U00016F1E;Miao Letter Ka +\U00016F1F;Miao Letter Ga +\U00016F20;Miao Letter Yi Ka +\U00016F21;Miao Letter Qa +\U00016F22;Miao Letter Qga +\U00016F23;Miao Letter Nga +\U00016F24;Miao Letter Ngha +\U00016F25;Miao Letter Archaic Nga +\U00016F26;Miao Letter Ha +\U00016F27;Miao Letter Xa +\U00016F28;Miao Letter Gha +\U00016F29;Miao Letter Ghha +\U00016F2A;Miao Letter Tssa +\U00016F2B;Miao Letter Dzza +\U00016F2C;Miao Letter Nya +\U00016F2D;Miao Letter Nyha +\U00016F2E;Miao Letter Tsha +\U00016F2F;Miao Letter Dzha +\U00016F30;Miao Letter Yi Tsha +\U00016F31;Miao Letter Yi Dzha +\U00016F32;Miao Letter Reformed Tsha +\U00016F33;Miao Letter Sha +\U00016F34;Miao Letter Ssa +\U00016F35;Miao Letter Zha +\U00016F36;Miao Letter Zsha +\U00016F37;Miao Letter Tsa +\U00016F38;Miao Letter Dza +\U00016F39;Miao Letter Yi Tsa +\U00016F3A;Miao Letter Sa +\U00016F3B;Miao Letter Za +\U00016F3C;Miao Letter Zsa +\U00016F3D;Miao Letter Zza +\U00016F3E;Miao Letter Zzsa +\U00016F3F;Miao Letter Archaic Zza +\U00016F40;Miao Letter Zzya +\U00016F41;Miao Letter Zzsya +\U00016F42;Miao Letter Wa +\U00016F43;Miao Letter Ah +\U00016F44;Miao Letter Hha +\U00016F45;Miao Letter Bri +\U00016F46;Miao Letter Syi +\U00016F47;Miao Letter Dzyi +\U00016F48;Miao Letter Te +\U00016F49;Miao Letter Tse +\U00016F4A;Miao Letter Rte +\U00016F4F;Miao Sign Consonant Modifier Bar +\U00016F50;Miao Letter Nasalization +\U00016F51;Miao Sign Aspiration +\U00016F52;Miao Sign Reformed Voicing +\U00016F53;Miao Sign Reformed Aspiration +\U00016F54;Miao Vowel Sign A +\U00016F55;Miao Vowel Sign Aa +\U00016F56;Miao Vowel Sign Ahh +\U00016F57;Miao Vowel Sign An +\U00016F58;Miao Vowel Sign Ang +\U00016F59;Miao Vowel Sign O +\U00016F5A;Miao Vowel Sign Oo +\U00016F5B;Miao Vowel Sign Wo +\U00016F5C;Miao Vowel Sign W +\U00016F5D;Miao Vowel Sign E +\U00016F5E;Miao Vowel Sign En +\U00016F5F;Miao Vowel Sign Eng +\U00016F60;Miao Vowel Sign Oey +\U00016F61;Miao Vowel Sign I +\U00016F62;Miao Vowel Sign Ia +\U00016F63;Miao Vowel Sign Ian +\U00016F64;Miao Vowel Sign Iang +\U00016F65;Miao Vowel Sign Io +\U00016F66;Miao Vowel Sign Ie +\U00016F67;Miao Vowel Sign Ii +\U00016F68;Miao Vowel Sign Iu +\U00016F69;Miao Vowel Sign Ing +\U00016F6A;Miao Vowel Sign U +\U00016F6B;Miao Vowel Sign Ua +\U00016F6C;Miao Vowel Sign Uan +\U00016F6D;Miao Vowel Sign Uang +\U00016F6E;Miao Vowel Sign Uu +\U00016F6F;Miao Vowel Sign Uei +\U00016F70;Miao Vowel Sign Ung +\U00016F71;Miao Vowel Sign Y +\U00016F72;Miao Vowel Sign Yi +\U00016F73;Miao Vowel Sign Ae +\U00016F74;Miao Vowel Sign Aee +\U00016F75;Miao Vowel Sign Err +\U00016F76;Miao Vowel Sign Rounded Err +\U00016F77;Miao Vowel Sign Er +\U00016F78;Miao Vowel Sign Rounded Er +\U00016F79;Miao Vowel Sign Ai +\U00016F7A;Miao Vowel Sign Ei +\U00016F7B;Miao Vowel Sign Au +\U00016F7C;Miao Vowel Sign Ou +\U00016F7D;Miao Vowel Sign N +\U00016F7E;Miao Vowel Sign Ng +\U00016F7F;Miao Vowel Sign Uog +\U00016F80;Miao Vowel Sign Yui +\U00016F81;Miao Vowel Sign Og +\U00016F82;Miao Vowel Sign Oer +\U00016F83;Miao Vowel Sign Vw +\U00016F84;Miao Vowel Sign Ig +\U00016F85;Miao Vowel Sign Ea +\U00016F86;Miao Vowel Sign Iong +\U00016F87;Miao Vowel Sign Ui +\U00016F8F;Miao Tone Right +\U00016F90;Miao Tone Top Right +\U00016F91;Miao Tone Above +\U00016F92;Miao Tone Below +\U00016F93;Miao Letter Tone-2 +\U00016F94;Miao Letter Tone-3 +\U00016F95;Miao Letter Tone-4 +\U00016F96;Miao Letter Tone-5 +\U00016F97;Miao Letter Tone-6 +\U00016F98;Miao Letter Tone-7 +\U00016F99;Miao Letter Tone-8 +\U00016F9A;Miao Letter Reformed Tone-1 +\U00016F9B;Miao Letter Reformed Tone-2 +\U00016F9C;Miao Letter Reformed Tone-4 +\U00016F9D;Miao Letter Reformed Tone-5 +\U00016F9E;Miao Letter Reformed Tone-6 +\U00016F9F;Miao Letter Reformed Tone-8 +\U00016FE0;Tangut Iteration Mark +\U00016FE1;Nushu Iteration Mark +\U00016FE2;Old Chinese Hook Mark +\U00016FE3;Old Chinese Iteration Mark +\U00016FE4;Khitan Small Script Filler +\U00016FF0;Vietnamese Alternate Reading Mark Ca +\U00016FF1;Vietnamese Alternate Reading Mark Nhay +\U00018800;Tangut Component-001 +\U00018801;Tangut Component-002 +\U00018802;Tangut Component-003 +\U00018803;Tangut Component-004 +\U00018804;Tangut Component-005 +\U00018805;Tangut Component-006 +\U00018806;Tangut Component-007 +\U00018807;Tangut Component-008 +\U00018808;Tangut Component-009 +\U00018809;Tangut Component-010 +\U0001880A;Tangut Component-011 +\U0001880B;Tangut Component-012 +\U0001880C;Tangut Component-013 +\U0001880D;Tangut Component-014 +\U0001880E;Tangut Component-015 +\U0001880F;Tangut Component-016 +\U00018810;Tangut Component-017 +\U00018811;Tangut Component-018 +\U00018812;Tangut Component-019 +\U00018813;Tangut Component-020 +\U00018814;Tangut Component-021 +\U00018815;Tangut Component-022 +\U00018816;Tangut Component-023 +\U00018817;Tangut Component-024 +\U00018818;Tangut Component-025 +\U00018819;Tangut Component-026 +\U0001881A;Tangut Component-027 +\U0001881B;Tangut Component-028 +\U0001881C;Tangut Component-029 +\U0001881D;Tangut Component-030 +\U0001881E;Tangut Component-031 +\U0001881F;Tangut Component-032 +\U00018820;Tangut Component-033 +\U00018821;Tangut Component-034 +\U00018822;Tangut Component-035 +\U00018823;Tangut Component-036 +\U00018824;Tangut Component-037 +\U00018825;Tangut Component-038 +\U00018826;Tangut Component-039 +\U00018827;Tangut Component-040 +\U00018828;Tangut Component-041 +\U00018829;Tangut Component-042 +\U0001882A;Tangut Component-043 +\U0001882B;Tangut Component-044 +\U0001882C;Tangut Component-045 +\U0001882D;Tangut Component-046 +\U0001882E;Tangut Component-047 +\U0001882F;Tangut Component-048 +\U00018830;Tangut Component-049 +\U00018831;Tangut Component-050 +\U00018832;Tangut Component-051 +\U00018833;Tangut Component-052 +\U00018834;Tangut Component-053 +\U00018835;Tangut Component-054 +\U00018836;Tangut Component-055 +\U00018837;Tangut Component-056 +\U00018838;Tangut Component-057 +\U00018839;Tangut Component-058 +\U0001883A;Tangut Component-059 +\U0001883B;Tangut Component-060 +\U0001883C;Tangut Component-061 +\U0001883D;Tangut Component-062 +\U0001883E;Tangut Component-063 +\U0001883F;Tangut Component-064 +\U00018840;Tangut Component-065 +\U00018841;Tangut Component-066 +\U00018842;Tangut Component-067 +\U00018843;Tangut Component-068 +\U00018844;Tangut Component-069 +\U00018845;Tangut Component-070 +\U00018846;Tangut Component-071 +\U00018847;Tangut Component-072 +\U00018848;Tangut Component-073 +\U00018849;Tangut Component-074 +\U0001884A;Tangut Component-075 +\U0001884B;Tangut Component-076 +\U0001884C;Tangut Component-077 +\U0001884D;Tangut Component-078 +\U0001884E;Tangut Component-079 +\U0001884F;Tangut Component-080 +\U00018850;Tangut Component-081 +\U00018851;Tangut Component-082 +\U00018852;Tangut Component-083 +\U00018853;Tangut Component-084 +\U00018854;Tangut Component-085 +\U00018855;Tangut Component-086 +\U00018856;Tangut Component-087 +\U00018857;Tangut Component-088 +\U00018858;Tangut Component-089 +\U00018859;Tangut Component-090 +\U0001885A;Tangut Component-091 +\U0001885B;Tangut Component-092 +\U0001885C;Tangut Component-093 +\U0001885D;Tangut Component-094 +\U0001885E;Tangut Component-095 +\U0001885F;Tangut Component-096 +\U00018860;Tangut Component-097 +\U00018861;Tangut Component-098 +\U00018862;Tangut Component-099 +\U00018863;Tangut Component-100 +\U00018864;Tangut Component-101 +\U00018865;Tangut Component-102 +\U00018866;Tangut Component-103 +\U00018867;Tangut Component-104 +\U00018868;Tangut Component-105 +\U00018869;Tangut Component-106 +\U0001886A;Tangut Component-107 +\U0001886B;Tangut Component-108 +\U0001886C;Tangut Component-109 +\U0001886D;Tangut Component-110 +\U0001886E;Tangut Component-111 +\U0001886F;Tangut Component-112 +\U00018870;Tangut Component-113 +\U00018871;Tangut Component-114 +\U00018872;Tangut Component-115 +\U00018873;Tangut Component-116 +\U00018874;Tangut Component-117 +\U00018875;Tangut Component-118 +\U00018876;Tangut Component-119 +\U00018877;Tangut Component-120 +\U00018878;Tangut Component-121 +\U00018879;Tangut Component-122 +\U0001887A;Tangut Component-123 +\U0001887B;Tangut Component-124 +\U0001887C;Tangut Component-125 +\U0001887D;Tangut Component-126 +\U0001887E;Tangut Component-127 +\U0001887F;Tangut Component-128 +\U00018880;Tangut Component-129 +\U00018881;Tangut Component-130 +\U00018882;Tangut Component-131 +\U00018883;Tangut Component-132 +\U00018884;Tangut Component-133 +\U00018885;Tangut Component-134 +\U00018886;Tangut Component-135 +\U00018887;Tangut Component-136 +\U00018888;Tangut Component-137 +\U00018889;Tangut Component-138 +\U0001888A;Tangut Component-139 +\U0001888B;Tangut Component-140 +\U0001888C;Tangut Component-141 +\U0001888D;Tangut Component-142 +\U0001888E;Tangut Component-143 +\U0001888F;Tangut Component-144 +\U00018890;Tangut Component-145 +\U00018891;Tangut Component-146 +\U00018892;Tangut Component-147 +\U00018893;Tangut Component-148 +\U00018894;Tangut Component-149 +\U00018895;Tangut Component-150 +\U00018896;Tangut Component-151 +\U00018897;Tangut Component-152 +\U00018898;Tangut Component-153 +\U00018899;Tangut Component-154 +\U0001889A;Tangut Component-155 +\U0001889B;Tangut Component-156 +\U0001889C;Tangut Component-157 +\U0001889D;Tangut Component-158 +\U0001889E;Tangut Component-159 +\U0001889F;Tangut Component-160 +\U000188A0;Tangut Component-161 +\U000188A1;Tangut Component-162 +\U000188A2;Tangut Component-163 +\U000188A3;Tangut Component-164 +\U000188A4;Tangut Component-165 +\U000188A5;Tangut Component-166 +\U000188A6;Tangut Component-167 +\U000188A7;Tangut Component-168 +\U000188A8;Tangut Component-169 +\U000188A9;Tangut Component-170 +\U000188AA;Tangut Component-171 +\U000188AB;Tangut Component-172 +\U000188AC;Tangut Component-173 +\U000188AD;Tangut Component-174 +\U000188AE;Tangut Component-175 +\U000188AF;Tangut Component-176 +\U000188B0;Tangut Component-177 +\U000188B1;Tangut Component-178 +\U000188B2;Tangut Component-179 +\U000188B3;Tangut Component-180 +\U000188B4;Tangut Component-181 +\U000188B5;Tangut Component-182 +\U000188B6;Tangut Component-183 +\U000188B7;Tangut Component-184 +\U000188B8;Tangut Component-185 +\U000188B9;Tangut Component-186 +\U000188BA;Tangut Component-187 +\U000188BB;Tangut Component-188 +\U000188BC;Tangut Component-189 +\U000188BD;Tangut Component-190 +\U000188BE;Tangut Component-191 +\U000188BF;Tangut Component-192 +\U000188C0;Tangut Component-193 +\U000188C1;Tangut Component-194 +\U000188C2;Tangut Component-195 +\U000188C3;Tangut Component-196 +\U000188C4;Tangut Component-197 +\U000188C5;Tangut Component-198 +\U000188C6;Tangut Component-199 +\U000188C7;Tangut Component-200 +\U000188C8;Tangut Component-201 +\U000188C9;Tangut Component-202 +\U000188CA;Tangut Component-203 +\U000188CB;Tangut Component-204 +\U000188CC;Tangut Component-205 +\U000188CD;Tangut Component-206 +\U000188CE;Tangut Component-207 +\U000188CF;Tangut Component-208 +\U000188D0;Tangut Component-209 +\U000188D1;Tangut Component-210 +\U000188D2;Tangut Component-211 +\U000188D3;Tangut Component-212 +\U000188D4;Tangut Component-213 +\U000188D5;Tangut Component-214 +\U000188D6;Tangut Component-215 +\U000188D7;Tangut Component-216 +\U000188D8;Tangut Component-217 +\U000188D9;Tangut Component-218 +\U000188DA;Tangut Component-219 +\U000188DB;Tangut Component-220 +\U000188DC;Tangut Component-221 +\U000188DD;Tangut Component-222 +\U000188DE;Tangut Component-223 +\U000188DF;Tangut Component-224 +\U000188E0;Tangut Component-225 +\U000188E1;Tangut Component-226 +\U000188E2;Tangut Component-227 +\U000188E3;Tangut Component-228 +\U000188E4;Tangut Component-229 +\U000188E5;Tangut Component-230 +\U000188E6;Tangut Component-231 +\U000188E7;Tangut Component-232 +\U000188E8;Tangut Component-233 +\U000188E9;Tangut Component-234 +\U000188EA;Tangut Component-235 +\U000188EB;Tangut Component-236 +\U000188EC;Tangut Component-237 +\U000188ED;Tangut Component-238 +\U000188EE;Tangut Component-239 +\U000188EF;Tangut Component-240 +\U000188F0;Tangut Component-241 +\U000188F1;Tangut Component-242 +\U000188F2;Tangut Component-243 +\U000188F3;Tangut Component-244 +\U000188F4;Tangut Component-245 +\U000188F5;Tangut Component-246 +\U000188F6;Tangut Component-247 +\U000188F7;Tangut Component-248 +\U000188F8;Tangut Component-249 +\U000188F9;Tangut Component-250 +\U000188FA;Tangut Component-251 +\U000188FB;Tangut Component-252 +\U000188FC;Tangut Component-253 +\U000188FD;Tangut Component-254 +\U000188FE;Tangut Component-255 +\U000188FF;Tangut Component-256 +\U00018900;Tangut Component-257 +\U00018901;Tangut Component-258 +\U00018902;Tangut Component-259 +\U00018903;Tangut Component-260 +\U00018904;Tangut Component-261 +\U00018905;Tangut Component-262 +\U00018906;Tangut Component-263 +\U00018907;Tangut Component-264 +\U00018908;Tangut Component-265 +\U00018909;Tangut Component-266 +\U0001890A;Tangut Component-267 +\U0001890B;Tangut Component-268 +\U0001890C;Tangut Component-269 +\U0001890D;Tangut Component-270 +\U0001890E;Tangut Component-271 +\U0001890F;Tangut Component-272 +\U00018910;Tangut Component-273 +\U00018911;Tangut Component-274 +\U00018912;Tangut Component-275 +\U00018913;Tangut Component-276 +\U00018914;Tangut Component-277 +\U00018915;Tangut Component-278 +\U00018916;Tangut Component-279 +\U00018917;Tangut Component-280 +\U00018918;Tangut Component-281 +\U00018919;Tangut Component-282 +\U0001891A;Tangut Component-283 +\U0001891B;Tangut Component-284 +\U0001891C;Tangut Component-285 +\U0001891D;Tangut Component-286 +\U0001891E;Tangut Component-287 +\U0001891F;Tangut Component-288 +\U00018920;Tangut Component-289 +\U00018921;Tangut Component-290 +\U00018922;Tangut Component-291 +\U00018923;Tangut Component-292 +\U00018924;Tangut Component-293 +\U00018925;Tangut Component-294 +\U00018926;Tangut Component-295 +\U00018927;Tangut Component-296 +\U00018928;Tangut Component-297 +\U00018929;Tangut Component-298 +\U0001892A;Tangut Component-299 +\U0001892B;Tangut Component-300 +\U0001892C;Tangut Component-301 +\U0001892D;Tangut Component-302 +\U0001892E;Tangut Component-303 +\U0001892F;Tangut Component-304 +\U00018930;Tangut Component-305 +\U00018931;Tangut Component-306 +\U00018932;Tangut Component-307 +\U00018933;Tangut Component-308 +\U00018934;Tangut Component-309 +\U00018935;Tangut Component-310 +\U00018936;Tangut Component-311 +\U00018937;Tangut Component-312 +\U00018938;Tangut Component-313 +\U00018939;Tangut Component-314 +\U0001893A;Tangut Component-315 +\U0001893B;Tangut Component-316 +\U0001893C;Tangut Component-317 +\U0001893D;Tangut Component-318 +\U0001893E;Tangut Component-319 +\U0001893F;Tangut Component-320 +\U00018940;Tangut Component-321 +\U00018941;Tangut Component-322 +\U00018942;Tangut Component-323 +\U00018943;Tangut Component-324 +\U00018944;Tangut Component-325 +\U00018945;Tangut Component-326 +\U00018946;Tangut Component-327 +\U00018947;Tangut Component-328 +\U00018948;Tangut Component-329 +\U00018949;Tangut Component-330 +\U0001894A;Tangut Component-331 +\U0001894B;Tangut Component-332 +\U0001894C;Tangut Component-333 +\U0001894D;Tangut Component-334 +\U0001894E;Tangut Component-335 +\U0001894F;Tangut Component-336 +\U00018950;Tangut Component-337 +\U00018951;Tangut Component-338 +\U00018952;Tangut Component-339 +\U00018953;Tangut Component-340 +\U00018954;Tangut Component-341 +\U00018955;Tangut Component-342 +\U00018956;Tangut Component-343 +\U00018957;Tangut Component-344 +\U00018958;Tangut Component-345 +\U00018959;Tangut Component-346 +\U0001895A;Tangut Component-347 +\U0001895B;Tangut Component-348 +\U0001895C;Tangut Component-349 +\U0001895D;Tangut Component-350 +\U0001895E;Tangut Component-351 +\U0001895F;Tangut Component-352 +\U00018960;Tangut Component-353 +\U00018961;Tangut Component-354 +\U00018962;Tangut Component-355 +\U00018963;Tangut Component-356 +\U00018964;Tangut Component-357 +\U00018965;Tangut Component-358 +\U00018966;Tangut Component-359 +\U00018967;Tangut Component-360 +\U00018968;Tangut Component-361 +\U00018969;Tangut Component-362 +\U0001896A;Tangut Component-363 +\U0001896B;Tangut Component-364 +\U0001896C;Tangut Component-365 +\U0001896D;Tangut Component-366 +\U0001896E;Tangut Component-367 +\U0001896F;Tangut Component-368 +\U00018970;Tangut Component-369 +\U00018971;Tangut Component-370 +\U00018972;Tangut Component-371 +\U00018973;Tangut Component-372 +\U00018974;Tangut Component-373 +\U00018975;Tangut Component-374 +\U00018976;Tangut Component-375 +\U00018977;Tangut Component-376 +\U00018978;Tangut Component-377 +\U00018979;Tangut Component-378 +\U0001897A;Tangut Component-379 +\U0001897B;Tangut Component-380 +\U0001897C;Tangut Component-381 +\U0001897D;Tangut Component-382 +\U0001897E;Tangut Component-383 +\U0001897F;Tangut Component-384 +\U00018980;Tangut Component-385 +\U00018981;Tangut Component-386 +\U00018982;Tangut Component-387 +\U00018983;Tangut Component-388 +\U00018984;Tangut Component-389 +\U00018985;Tangut Component-390 +\U00018986;Tangut Component-391 +\U00018987;Tangut Component-392 +\U00018988;Tangut Component-393 +\U00018989;Tangut Component-394 +\U0001898A;Tangut Component-395 +\U0001898B;Tangut Component-396 +\U0001898C;Tangut Component-397 +\U0001898D;Tangut Component-398 +\U0001898E;Tangut Component-399 +\U0001898F;Tangut Component-400 +\U00018990;Tangut Component-401 +\U00018991;Tangut Component-402 +\U00018992;Tangut Component-403 +\U00018993;Tangut Component-404 +\U00018994;Tangut Component-405 +\U00018995;Tangut Component-406 +\U00018996;Tangut Component-407 +\U00018997;Tangut Component-408 +\U00018998;Tangut Component-409 +\U00018999;Tangut Component-410 +\U0001899A;Tangut Component-411 +\U0001899B;Tangut Component-412 +\U0001899C;Tangut Component-413 +\U0001899D;Tangut Component-414 +\U0001899E;Tangut Component-415 +\U0001899F;Tangut Component-416 +\U000189A0;Tangut Component-417 +\U000189A1;Tangut Component-418 +\U000189A2;Tangut Component-419 +\U000189A3;Tangut Component-420 +\U000189A4;Tangut Component-421 +\U000189A5;Tangut Component-422 +\U000189A6;Tangut Component-423 +\U000189A7;Tangut Component-424 +\U000189A8;Tangut Component-425 +\U000189A9;Tangut Component-426 +\U000189AA;Tangut Component-427 +\U000189AB;Tangut Component-428 +\U000189AC;Tangut Component-429 +\U000189AD;Tangut Component-430 +\U000189AE;Tangut Component-431 +\U000189AF;Tangut Component-432 +\U000189B0;Tangut Component-433 +\U000189B1;Tangut Component-434 +\U000189B2;Tangut Component-435 +\U000189B3;Tangut Component-436 +\U000189B4;Tangut Component-437 +\U000189B5;Tangut Component-438 +\U000189B6;Tangut Component-439 +\U000189B7;Tangut Component-440 +\U000189B8;Tangut Component-441 +\U000189B9;Tangut Component-442 +\U000189BA;Tangut Component-443 +\U000189BB;Tangut Component-444 +\U000189BC;Tangut Component-445 +\U000189BD;Tangut Component-446 +\U000189BE;Tangut Component-447 +\U000189BF;Tangut Component-448 +\U000189C0;Tangut Component-449 +\U000189C1;Tangut Component-450 +\U000189C2;Tangut Component-451 +\U000189C3;Tangut Component-452 +\U000189C4;Tangut Component-453 +\U000189C5;Tangut Component-454 +\U000189C6;Tangut Component-455 +\U000189C7;Tangut Component-456 +\U000189C8;Tangut Component-457 +\U000189C9;Tangut Component-458 +\U000189CA;Tangut Component-459 +\U000189CB;Tangut Component-460 +\U000189CC;Tangut Component-461 +\U000189CD;Tangut Component-462 +\U000189CE;Tangut Component-463 +\U000189CF;Tangut Component-464 +\U000189D0;Tangut Component-465 +\U000189D1;Tangut Component-466 +\U000189D2;Tangut Component-467 +\U000189D3;Tangut Component-468 +\U000189D4;Tangut Component-469 +\U000189D5;Tangut Component-470 +\U000189D6;Tangut Component-471 +\U000189D7;Tangut Component-472 +\U000189D8;Tangut Component-473 +\U000189D9;Tangut Component-474 +\U000189DA;Tangut Component-475 +\U000189DB;Tangut Component-476 +\U000189DC;Tangut Component-477 +\U000189DD;Tangut Component-478 +\U000189DE;Tangut Component-479 +\U000189DF;Tangut Component-480 +\U000189E0;Tangut Component-481 +\U000189E1;Tangut Component-482 +\U000189E2;Tangut Component-483 +\U000189E3;Tangut Component-484 +\U000189E4;Tangut Component-485 +\U000189E5;Tangut Component-486 +\U000189E6;Tangut Component-487 +\U000189E7;Tangut Component-488 +\U000189E8;Tangut Component-489 +\U000189E9;Tangut Component-490 +\U000189EA;Tangut Component-491 +\U000189EB;Tangut Component-492 +\U000189EC;Tangut Component-493 +\U000189ED;Tangut Component-494 +\U000189EE;Tangut Component-495 +\U000189EF;Tangut Component-496 +\U000189F0;Tangut Component-497 +\U000189F1;Tangut Component-498 +\U000189F2;Tangut Component-499 +\U000189F3;Tangut Component-500 +\U000189F4;Tangut Component-501 +\U000189F5;Tangut Component-502 +\U000189F6;Tangut Component-503 +\U000189F7;Tangut Component-504 +\U000189F8;Tangut Component-505 +\U000189F9;Tangut Component-506 +\U000189FA;Tangut Component-507 +\U000189FB;Tangut Component-508 +\U000189FC;Tangut Component-509 +\U000189FD;Tangut Component-510 +\U000189FE;Tangut Component-511 +\U000189FF;Tangut Component-512 +\U00018A00;Tangut Component-513 +\U00018A01;Tangut Component-514 +\U00018A02;Tangut Component-515 +\U00018A03;Tangut Component-516 +\U00018A04;Tangut Component-517 +\U00018A05;Tangut Component-518 +\U00018A06;Tangut Component-519 +\U00018A07;Tangut Component-520 +\U00018A08;Tangut Component-521 +\U00018A09;Tangut Component-522 +\U00018A0A;Tangut Component-523 +\U00018A0B;Tangut Component-524 +\U00018A0C;Tangut Component-525 +\U00018A0D;Tangut Component-526 +\U00018A0E;Tangut Component-527 +\U00018A0F;Tangut Component-528 +\U00018A10;Tangut Component-529 +\U00018A11;Tangut Component-530 +\U00018A12;Tangut Component-531 +\U00018A13;Tangut Component-532 +\U00018A14;Tangut Component-533 +\U00018A15;Tangut Component-534 +\U00018A16;Tangut Component-535 +\U00018A17;Tangut Component-536 +\U00018A18;Tangut Component-537 +\U00018A19;Tangut Component-538 +\U00018A1A;Tangut Component-539 +\U00018A1B;Tangut Component-540 +\U00018A1C;Tangut Component-541 +\U00018A1D;Tangut Component-542 +\U00018A1E;Tangut Component-543 +\U00018A1F;Tangut Component-544 +\U00018A20;Tangut Component-545 +\U00018A21;Tangut Component-546 +\U00018A22;Tangut Component-547 +\U00018A23;Tangut Component-548 +\U00018A24;Tangut Component-549 +\U00018A25;Tangut Component-550 +\U00018A26;Tangut Component-551 +\U00018A27;Tangut Component-552 +\U00018A28;Tangut Component-553 +\U00018A29;Tangut Component-554 +\U00018A2A;Tangut Component-555 +\U00018A2B;Tangut Component-556 +\U00018A2C;Tangut Component-557 +\U00018A2D;Tangut Component-558 +\U00018A2E;Tangut Component-559 +\U00018A2F;Tangut Component-560 +\U00018A30;Tangut Component-561 +\U00018A31;Tangut Component-562 +\U00018A32;Tangut Component-563 +\U00018A33;Tangut Component-564 +\U00018A34;Tangut Component-565 +\U00018A35;Tangut Component-566 +\U00018A36;Tangut Component-567 +\U00018A37;Tangut Component-568 +\U00018A38;Tangut Component-569 +\U00018A39;Tangut Component-570 +\U00018A3A;Tangut Component-571 +\U00018A3B;Tangut Component-572 +\U00018A3C;Tangut Component-573 +\U00018A3D;Tangut Component-574 +\U00018A3E;Tangut Component-575 +\U00018A3F;Tangut Component-576 +\U00018A40;Tangut Component-577 +\U00018A41;Tangut Component-578 +\U00018A42;Tangut Component-579 +\U00018A43;Tangut Component-580 +\U00018A44;Tangut Component-581 +\U00018A45;Tangut Component-582 +\U00018A46;Tangut Component-583 +\U00018A47;Tangut Component-584 +\U00018A48;Tangut Component-585 +\U00018A49;Tangut Component-586 +\U00018A4A;Tangut Component-587 +\U00018A4B;Tangut Component-588 +\U00018A4C;Tangut Component-589 +\U00018A4D;Tangut Component-590 +\U00018A4E;Tangut Component-591 +\U00018A4F;Tangut Component-592 +\U00018A50;Tangut Component-593 +\U00018A51;Tangut Component-594 +\U00018A52;Tangut Component-595 +\U00018A53;Tangut Component-596 +\U00018A54;Tangut Component-597 +\U00018A55;Tangut Component-598 +\U00018A56;Tangut Component-599 +\U00018A57;Tangut Component-600 +\U00018A58;Tangut Component-601 +\U00018A59;Tangut Component-602 +\U00018A5A;Tangut Component-603 +\U00018A5B;Tangut Component-604 +\U00018A5C;Tangut Component-605 +\U00018A5D;Tangut Component-606 +\U00018A5E;Tangut Component-607 +\U00018A5F;Tangut Component-608 +\U00018A60;Tangut Component-609 +\U00018A61;Tangut Component-610 +\U00018A62;Tangut Component-611 +\U00018A63;Tangut Component-612 +\U00018A64;Tangut Component-613 +\U00018A65;Tangut Component-614 +\U00018A66;Tangut Component-615 +\U00018A67;Tangut Component-616 +\U00018A68;Tangut Component-617 +\U00018A69;Tangut Component-618 +\U00018A6A;Tangut Component-619 +\U00018A6B;Tangut Component-620 +\U00018A6C;Tangut Component-621 +\U00018A6D;Tangut Component-622 +\U00018A6E;Tangut Component-623 +\U00018A6F;Tangut Component-624 +\U00018A70;Tangut Component-625 +\U00018A71;Tangut Component-626 +\U00018A72;Tangut Component-627 +\U00018A73;Tangut Component-628 +\U00018A74;Tangut Component-629 +\U00018A75;Tangut Component-630 +\U00018A76;Tangut Component-631 +\U00018A77;Tangut Component-632 +\U00018A78;Tangut Component-633 +\U00018A79;Tangut Component-634 +\U00018A7A;Tangut Component-635 +\U00018A7B;Tangut Component-636 +\U00018A7C;Tangut Component-637 +\U00018A7D;Tangut Component-638 +\U00018A7E;Tangut Component-639 +\U00018A7F;Tangut Component-640 +\U00018A80;Tangut Component-641 +\U00018A81;Tangut Component-642 +\U00018A82;Tangut Component-643 +\U00018A83;Tangut Component-644 +\U00018A84;Tangut Component-645 +\U00018A85;Tangut Component-646 +\U00018A86;Tangut Component-647 +\U00018A87;Tangut Component-648 +\U00018A88;Tangut Component-649 +\U00018A89;Tangut Component-650 +\U00018A8A;Tangut Component-651 +\U00018A8B;Tangut Component-652 +\U00018A8C;Tangut Component-653 +\U00018A8D;Tangut Component-654 +\U00018A8E;Tangut Component-655 +\U00018A8F;Tangut Component-656 +\U00018A90;Tangut Component-657 +\U00018A91;Tangut Component-658 +\U00018A92;Tangut Component-659 +\U00018A93;Tangut Component-660 +\U00018A94;Tangut Component-661 +\U00018A95;Tangut Component-662 +\U00018A96;Tangut Component-663 +\U00018A97;Tangut Component-664 +\U00018A98;Tangut Component-665 +\U00018A99;Tangut Component-666 +\U00018A9A;Tangut Component-667 +\U00018A9B;Tangut Component-668 +\U00018A9C;Tangut Component-669 +\U00018A9D;Tangut Component-670 +\U00018A9E;Tangut Component-671 +\U00018A9F;Tangut Component-672 +\U00018AA0;Tangut Component-673 +\U00018AA1;Tangut Component-674 +\U00018AA2;Tangut Component-675 +\U00018AA3;Tangut Component-676 +\U00018AA4;Tangut Component-677 +\U00018AA5;Tangut Component-678 +\U00018AA6;Tangut Component-679 +\U00018AA7;Tangut Component-680 +\U00018AA8;Tangut Component-681 +\U00018AA9;Tangut Component-682 +\U00018AAA;Tangut Component-683 +\U00018AAB;Tangut Component-684 +\U00018AAC;Tangut Component-685 +\U00018AAD;Tangut Component-686 +\U00018AAE;Tangut Component-687 +\U00018AAF;Tangut Component-688 +\U00018AB0;Tangut Component-689 +\U00018AB1;Tangut Component-690 +\U00018AB2;Tangut Component-691 +\U00018AB3;Tangut Component-692 +\U00018AB4;Tangut Component-693 +\U00018AB5;Tangut Component-694 +\U00018AB6;Tangut Component-695 +\U00018AB7;Tangut Component-696 +\U00018AB8;Tangut Component-697 +\U00018AB9;Tangut Component-698 +\U00018ABA;Tangut Component-699 +\U00018ABB;Tangut Component-700 +\U00018ABC;Tangut Component-701 +\U00018ABD;Tangut Component-702 +\U00018ABE;Tangut Component-703 +\U00018ABF;Tangut Component-704 +\U00018AC0;Tangut Component-705 +\U00018AC1;Tangut Component-706 +\U00018AC2;Tangut Component-707 +\U00018AC3;Tangut Component-708 +\U00018AC4;Tangut Component-709 +\U00018AC5;Tangut Component-710 +\U00018AC6;Tangut Component-711 +\U00018AC7;Tangut Component-712 +\U00018AC8;Tangut Component-713 +\U00018AC9;Tangut Component-714 +\U00018ACA;Tangut Component-715 +\U00018ACB;Tangut Component-716 +\U00018ACC;Tangut Component-717 +\U00018ACD;Tangut Component-718 +\U00018ACE;Tangut Component-719 +\U00018ACF;Tangut Component-720 +\U00018AD0;Tangut Component-721 +\U00018AD1;Tangut Component-722 +\U00018AD2;Tangut Component-723 +\U00018AD3;Tangut Component-724 +\U00018AD4;Tangut Component-725 +\U00018AD5;Tangut Component-726 +\U00018AD6;Tangut Component-727 +\U00018AD7;Tangut Component-728 +\U00018AD8;Tangut Component-729 +\U00018AD9;Tangut Component-730 +\U00018ADA;Tangut Component-731 +\U00018ADB;Tangut Component-732 +\U00018ADC;Tangut Component-733 +\U00018ADD;Tangut Component-734 +\U00018ADE;Tangut Component-735 +\U00018ADF;Tangut Component-736 +\U00018AE0;Tangut Component-737 +\U00018AE1;Tangut Component-738 +\U00018AE2;Tangut Component-739 +\U00018AE3;Tangut Component-740 +\U00018AE4;Tangut Component-741 +\U00018AE5;Tangut Component-742 +\U00018AE6;Tangut Component-743 +\U00018AE7;Tangut Component-744 +\U00018AE8;Tangut Component-745 +\U00018AE9;Tangut Component-746 +\U00018AEA;Tangut Component-747 +\U00018AEB;Tangut Component-748 +\U00018AEC;Tangut Component-749 +\U00018AED;Tangut Component-750 +\U00018AEE;Tangut Component-751 +\U00018AEF;Tangut Component-752 +\U00018AF0;Tangut Component-753 +\U00018AF1;Tangut Component-754 +\U00018AF2;Tangut Component-755 +\U00018AF3;Tangut Component-756 +\U00018AF4;Tangut Component-757 +\U00018AF5;Tangut Component-758 +\U00018AF6;Tangut Component-759 +\U00018AF7;Tangut Component-760 +\U00018AF8;Tangut Component-761 +\U00018AF9;Tangut Component-762 +\U00018AFA;Tangut Component-763 +\U00018AFB;Tangut Component-764 +\U00018AFC;Tangut Component-765 +\U00018AFD;Tangut Component-766 +\U00018AFE;Tangut Component-767 +\U00018AFF;Tangut Component-768 +\U00018B00;Khitan Small Script Character-18B00 +\U00018B01;Khitan Small Script Character-18B01 +\U00018B02;Khitan Small Script Character-18B02 +\U00018B03;Khitan Small Script Character-18B03 +\U00018B04;Khitan Small Script Character-18B04 +\U00018B05;Khitan Small Script Character-18B05 +\U00018B06;Khitan Small Script Character-18B06 +\U00018B07;Khitan Small Script Character-18B07 +\U00018B08;Khitan Small Script Character-18B08 +\U00018B09;Khitan Small Script Character-18B09 +\U00018B0A;Khitan Small Script Character-18B0A +\U00018B0B;Khitan Small Script Character-18B0B +\U00018B0C;Khitan Small Script Character-18B0C +\U00018B0D;Khitan Small Script Character-18B0D +\U00018B0E;Khitan Small Script Character-18B0E +\U00018B0F;Khitan Small Script Character-18B0F +\U00018B10;Khitan Small Script Character-18B10 +\U00018B11;Khitan Small Script Character-18B11 +\U00018B12;Khitan Small Script Character-18B12 +\U00018B13;Khitan Small Script Character-18B13 +\U00018B14;Khitan Small Script Character-18B14 +\U00018B15;Khitan Small Script Character-18B15 +\U00018B16;Khitan Small Script Character-18B16 +\U00018B17;Khitan Small Script Character-18B17 +\U00018B18;Khitan Small Script Character-18B18 +\U00018B19;Khitan Small Script Character-18B19 +\U00018B1A;Khitan Small Script Character-18B1A +\U00018B1B;Khitan Small Script Character-18B1B +\U00018B1C;Khitan Small Script Character-18B1C +\U00018B1D;Khitan Small Script Character-18B1D +\U00018B1E;Khitan Small Script Character-18B1E +\U00018B1F;Khitan Small Script Character-18B1F +\U00018B20;Khitan Small Script Character-18B20 +\U00018B21;Khitan Small Script Character-18B21 +\U00018B22;Khitan Small Script Character-18B22 +\U00018B23;Khitan Small Script Character-18B23 +\U00018B24;Khitan Small Script Character-18B24 +\U00018B25;Khitan Small Script Character-18B25 +\U00018B26;Khitan Small Script Character-18B26 +\U00018B27;Khitan Small Script Character-18B27 +\U00018B28;Khitan Small Script Character-18B28 +\U00018B29;Khitan Small Script Character-18B29 +\U00018B2A;Khitan Small Script Character-18B2A +\U00018B2B;Khitan Small Script Character-18B2B +\U00018B2C;Khitan Small Script Character-18B2C +\U00018B2D;Khitan Small Script Character-18B2D +\U00018B2E;Khitan Small Script Character-18B2E +\U00018B2F;Khitan Small Script Character-18B2F +\U00018B30;Khitan Small Script Character-18B30 +\U00018B31;Khitan Small Script Character-18B31 +\U00018B32;Khitan Small Script Character-18B32 +\U00018B33;Khitan Small Script Character-18B33 +\U00018B34;Khitan Small Script Character-18B34 +\U00018B35;Khitan Small Script Character-18B35 +\U00018B36;Khitan Small Script Character-18B36 +\U00018B37;Khitan Small Script Character-18B37 +\U00018B38;Khitan Small Script Character-18B38 +\U00018B39;Khitan Small Script Character-18B39 +\U00018B3A;Khitan Small Script Character-18B3A +\U00018B3B;Khitan Small Script Character-18B3B +\U00018B3C;Khitan Small Script Character-18B3C +\U00018B3D;Khitan Small Script Character-18B3D +\U00018B3E;Khitan Small Script Character-18B3E +\U00018B3F;Khitan Small Script Character-18B3F +\U00018B40;Khitan Small Script Character-18B40 +\U00018B41;Khitan Small Script Character-18B41 +\U00018B42;Khitan Small Script Character-18B42 +\U00018B43;Khitan Small Script Character-18B43 +\U00018B44;Khitan Small Script Character-18B44 +\U00018B45;Khitan Small Script Character-18B45 +\U00018B46;Khitan Small Script Character-18B46 +\U00018B47;Khitan Small Script Character-18B47 +\U00018B48;Khitan Small Script Character-18B48 +\U00018B49;Khitan Small Script Character-18B49 +\U00018B4A;Khitan Small Script Character-18B4A +\U00018B4B;Khitan Small Script Character-18B4B +\U00018B4C;Khitan Small Script Character-18B4C +\U00018B4D;Khitan Small Script Character-18B4D +\U00018B4E;Khitan Small Script Character-18B4E +\U00018B4F;Khitan Small Script Character-18B4F +\U00018B50;Khitan Small Script Character-18B50 +\U00018B51;Khitan Small Script Character-18B51 +\U00018B52;Khitan Small Script Character-18B52 +\U00018B53;Khitan Small Script Character-18B53 +\U00018B54;Khitan Small Script Character-18B54 +\U00018B55;Khitan Small Script Character-18B55 +\U00018B56;Khitan Small Script Character-18B56 +\U00018B57;Khitan Small Script Character-18B57 +\U00018B58;Khitan Small Script Character-18B58 +\U00018B59;Khitan Small Script Character-18B59 +\U00018B5A;Khitan Small Script Character-18B5A +\U00018B5B;Khitan Small Script Character-18B5B +\U00018B5C;Khitan Small Script Character-18B5C +\U00018B5D;Khitan Small Script Character-18B5D +\U00018B5E;Khitan Small Script Character-18B5E +\U00018B5F;Khitan Small Script Character-18B5F +\U00018B60;Khitan Small Script Character-18B60 +\U00018B61;Khitan Small Script Character-18B61 +\U00018B62;Khitan Small Script Character-18B62 +\U00018B63;Khitan Small Script Character-18B63 +\U00018B64;Khitan Small Script Character-18B64 +\U00018B65;Khitan Small Script Character-18B65 +\U00018B66;Khitan Small Script Character-18B66 +\U00018B67;Khitan Small Script Character-18B67 +\U00018B68;Khitan Small Script Character-18B68 +\U00018B69;Khitan Small Script Character-18B69 +\U00018B6A;Khitan Small Script Character-18B6A +\U00018B6B;Khitan Small Script Character-18B6B +\U00018B6C;Khitan Small Script Character-18B6C +\U00018B6D;Khitan Small Script Character-18B6D +\U00018B6E;Khitan Small Script Character-18B6E +\U00018B6F;Khitan Small Script Character-18B6F +\U00018B70;Khitan Small Script Character-18B70 +\U00018B71;Khitan Small Script Character-18B71 +\U00018B72;Khitan Small Script Character-18B72 +\U00018B73;Khitan Small Script Character-18B73 +\U00018B74;Khitan Small Script Character-18B74 +\U00018B75;Khitan Small Script Character-18B75 +\U00018B76;Khitan Small Script Character-18B76 +\U00018B77;Khitan Small Script Character-18B77 +\U00018B78;Khitan Small Script Character-18B78 +\U00018B79;Khitan Small Script Character-18B79 +\U00018B7A;Khitan Small Script Character-18B7A +\U00018B7B;Khitan Small Script Character-18B7B +\U00018B7C;Khitan Small Script Character-18B7C +\U00018B7D;Khitan Small Script Character-18B7D +\U00018B7E;Khitan Small Script Character-18B7E +\U00018B7F;Khitan Small Script Character-18B7F +\U00018B80;Khitan Small Script Character-18B80 +\U00018B81;Khitan Small Script Character-18B81 +\U00018B82;Khitan Small Script Character-18B82 +\U00018B83;Khitan Small Script Character-18B83 +\U00018B84;Khitan Small Script Character-18B84 +\U00018B85;Khitan Small Script Character-18B85 +\U00018B86;Khitan Small Script Character-18B86 +\U00018B87;Khitan Small Script Character-18B87 +\U00018B88;Khitan Small Script Character-18B88 +\U00018B89;Khitan Small Script Character-18B89 +\U00018B8A;Khitan Small Script Character-18B8A +\U00018B8B;Khitan Small Script Character-18B8B +\U00018B8C;Khitan Small Script Character-18B8C +\U00018B8D;Khitan Small Script Character-18B8D +\U00018B8E;Khitan Small Script Character-18B8E +\U00018B8F;Khitan Small Script Character-18B8F +\U00018B90;Khitan Small Script Character-18B90 +\U00018B91;Khitan Small Script Character-18B91 +\U00018B92;Khitan Small Script Character-18B92 +\U00018B93;Khitan Small Script Character-18B93 +\U00018B94;Khitan Small Script Character-18B94 +\U00018B95;Khitan Small Script Character-18B95 +\U00018B96;Khitan Small Script Character-18B96 +\U00018B97;Khitan Small Script Character-18B97 +\U00018B98;Khitan Small Script Character-18B98 +\U00018B99;Khitan Small Script Character-18B99 +\U00018B9A;Khitan Small Script Character-18B9A +\U00018B9B;Khitan Small Script Character-18B9B +\U00018B9C;Khitan Small Script Character-18B9C +\U00018B9D;Khitan Small Script Character-18B9D +\U00018B9E;Khitan Small Script Character-18B9E +\U00018B9F;Khitan Small Script Character-18B9F +\U00018BA0;Khitan Small Script Character-18BA0 +\U00018BA1;Khitan Small Script Character-18BA1 +\U00018BA2;Khitan Small Script Character-18BA2 +\U00018BA3;Khitan Small Script Character-18BA3 +\U00018BA4;Khitan Small Script Character-18BA4 +\U00018BA5;Khitan Small Script Character-18BA5 +\U00018BA6;Khitan Small Script Character-18BA6 +\U00018BA7;Khitan Small Script Character-18BA7 +\U00018BA8;Khitan Small Script Character-18BA8 +\U00018BA9;Khitan Small Script Character-18BA9 +\U00018BAA;Khitan Small Script Character-18BAA +\U00018BAB;Khitan Small Script Character-18BAB +\U00018BAC;Khitan Small Script Character-18BAC +\U00018BAD;Khitan Small Script Character-18BAD +\U00018BAE;Khitan Small Script Character-18BAE +\U00018BAF;Khitan Small Script Character-18BAF +\U00018BB0;Khitan Small Script Character-18BB0 +\U00018BB1;Khitan Small Script Character-18BB1 +\U00018BB2;Khitan Small Script Character-18BB2 +\U00018BB3;Khitan Small Script Character-18BB3 +\U00018BB4;Khitan Small Script Character-18BB4 +\U00018BB5;Khitan Small Script Character-18BB5 +\U00018BB6;Khitan Small Script Character-18BB6 +\U00018BB7;Khitan Small Script Character-18BB7 +\U00018BB8;Khitan Small Script Character-18BB8 +\U00018BB9;Khitan Small Script Character-18BB9 +\U00018BBA;Khitan Small Script Character-18BBA +\U00018BBB;Khitan Small Script Character-18BBB +\U00018BBC;Khitan Small Script Character-18BBC +\U00018BBD;Khitan Small Script Character-18BBD +\U00018BBE;Khitan Small Script Character-18BBE +\U00018BBF;Khitan Small Script Character-18BBF +\U00018BC0;Khitan Small Script Character-18BC0 +\U00018BC1;Khitan Small Script Character-18BC1 +\U00018BC2;Khitan Small Script Character-18BC2 +\U00018BC3;Khitan Small Script Character-18BC3 +\U00018BC4;Khitan Small Script Character-18BC4 +\U00018BC5;Khitan Small Script Character-18BC5 +\U00018BC6;Khitan Small Script Character-18BC6 +\U00018BC7;Khitan Small Script Character-18BC7 +\U00018BC8;Khitan Small Script Character-18BC8 +\U00018BC9;Khitan Small Script Character-18BC9 +\U00018BCA;Khitan Small Script Character-18BCA +\U00018BCB;Khitan Small Script Character-18BCB +\U00018BCC;Khitan Small Script Character-18BCC +\U00018BCD;Khitan Small Script Character-18BCD +\U00018BCE;Khitan Small Script Character-18BCE +\U00018BCF;Khitan Small Script Character-18BCF +\U00018BD0;Khitan Small Script Character-18BD0 +\U00018BD1;Khitan Small Script Character-18BD1 +\U00018BD2;Khitan Small Script Character-18BD2 +\U00018BD3;Khitan Small Script Character-18BD3 +\U00018BD4;Khitan Small Script Character-18BD4 +\U00018BD5;Khitan Small Script Character-18BD5 +\U00018BD6;Khitan Small Script Character-18BD6 +\U00018BD7;Khitan Small Script Character-18BD7 +\U00018BD8;Khitan Small Script Character-18BD8 +\U00018BD9;Khitan Small Script Character-18BD9 +\U00018BDA;Khitan Small Script Character-18BDA +\U00018BDB;Khitan Small Script Character-18BDB +\U00018BDC;Khitan Small Script Character-18BDC +\U00018BDD;Khitan Small Script Character-18BDD +\U00018BDE;Khitan Small Script Character-18BDE +\U00018BDF;Khitan Small Script Character-18BDF +\U00018BE0;Khitan Small Script Character-18BE0 +\U00018BE1;Khitan Small Script Character-18BE1 +\U00018BE2;Khitan Small Script Character-18BE2 +\U00018BE3;Khitan Small Script Character-18BE3 +\U00018BE4;Khitan Small Script Character-18BE4 +\U00018BE5;Khitan Small Script Character-18BE5 +\U00018BE6;Khitan Small Script Character-18BE6 +\U00018BE7;Khitan Small Script Character-18BE7 +\U00018BE8;Khitan Small Script Character-18BE8 +\U00018BE9;Khitan Small Script Character-18BE9 +\U00018BEA;Khitan Small Script Character-18BEA +\U00018BEB;Khitan Small Script Character-18BEB +\U00018BEC;Khitan Small Script Character-18BEC +\U00018BED;Khitan Small Script Character-18BED +\U00018BEE;Khitan Small Script Character-18BEE +\U00018BEF;Khitan Small Script Character-18BEF +\U00018BF0;Khitan Small Script Character-18BF0 +\U00018BF1;Khitan Small Script Character-18BF1 +\U00018BF2;Khitan Small Script Character-18BF2 +\U00018BF3;Khitan Small Script Character-18BF3 +\U00018BF4;Khitan Small Script Character-18BF4 +\U00018BF5;Khitan Small Script Character-18BF5 +\U00018BF6;Khitan Small Script Character-18BF6 +\U00018BF7;Khitan Small Script Character-18BF7 +\U00018BF8;Khitan Small Script Character-18BF8 +\U00018BF9;Khitan Small Script Character-18BF9 +\U00018BFA;Khitan Small Script Character-18BFA +\U00018BFB;Khitan Small Script Character-18BFB +\U00018BFC;Khitan Small Script Character-18BFC +\U00018BFD;Khitan Small Script Character-18BFD +\U00018BFE;Khitan Small Script Character-18BFE +\U00018BFF;Khitan Small Script Character-18BFF +\U00018C00;Khitan Small Script Character-18C00 +\U00018C01;Khitan Small Script Character-18C01 +\U00018C02;Khitan Small Script Character-18C02 +\U00018C03;Khitan Small Script Character-18C03 +\U00018C04;Khitan Small Script Character-18C04 +\U00018C05;Khitan Small Script Character-18C05 +\U00018C06;Khitan Small Script Character-18C06 +\U00018C07;Khitan Small Script Character-18C07 +\U00018C08;Khitan Small Script Character-18C08 +\U00018C09;Khitan Small Script Character-18C09 +\U00018C0A;Khitan Small Script Character-18C0A +\U00018C0B;Khitan Small Script Character-18C0B +\U00018C0C;Khitan Small Script Character-18C0C +\U00018C0D;Khitan Small Script Character-18C0D +\U00018C0E;Khitan Small Script Character-18C0E +\U00018C0F;Khitan Small Script Character-18C0F +\U00018C10;Khitan Small Script Character-18C10 +\U00018C11;Khitan Small Script Character-18C11 +\U00018C12;Khitan Small Script Character-18C12 +\U00018C13;Khitan Small Script Character-18C13 +\U00018C14;Khitan Small Script Character-18C14 +\U00018C15;Khitan Small Script Character-18C15 +\U00018C16;Khitan Small Script Character-18C16 +\U00018C17;Khitan Small Script Character-18C17 +\U00018C18;Khitan Small Script Character-18C18 +\U00018C19;Khitan Small Script Character-18C19 +\U00018C1A;Khitan Small Script Character-18C1A +\U00018C1B;Khitan Small Script Character-18C1B +\U00018C1C;Khitan Small Script Character-18C1C +\U00018C1D;Khitan Small Script Character-18C1D +\U00018C1E;Khitan Small Script Character-18C1E +\U00018C1F;Khitan Small Script Character-18C1F +\U00018C20;Khitan Small Script Character-18C20 +\U00018C21;Khitan Small Script Character-18C21 +\U00018C22;Khitan Small Script Character-18C22 +\U00018C23;Khitan Small Script Character-18C23 +\U00018C24;Khitan Small Script Character-18C24 +\U00018C25;Khitan Small Script Character-18C25 +\U00018C26;Khitan Small Script Character-18C26 +\U00018C27;Khitan Small Script Character-18C27 +\U00018C28;Khitan Small Script Character-18C28 +\U00018C29;Khitan Small Script Character-18C29 +\U00018C2A;Khitan Small Script Character-18C2A +\U00018C2B;Khitan Small Script Character-18C2B +\U00018C2C;Khitan Small Script Character-18C2C +\U00018C2D;Khitan Small Script Character-18C2D +\U00018C2E;Khitan Small Script Character-18C2E +\U00018C2F;Khitan Small Script Character-18C2F +\U00018C30;Khitan Small Script Character-18C30 +\U00018C31;Khitan Small Script Character-18C31 +\U00018C32;Khitan Small Script Character-18C32 +\U00018C33;Khitan Small Script Character-18C33 +\U00018C34;Khitan Small Script Character-18C34 +\U00018C35;Khitan Small Script Character-18C35 +\U00018C36;Khitan Small Script Character-18C36 +\U00018C37;Khitan Small Script Character-18C37 +\U00018C38;Khitan Small Script Character-18C38 +\U00018C39;Khitan Small Script Character-18C39 +\U00018C3A;Khitan Small Script Character-18C3A +\U00018C3B;Khitan Small Script Character-18C3B +\U00018C3C;Khitan Small Script Character-18C3C +\U00018C3D;Khitan Small Script Character-18C3D +\U00018C3E;Khitan Small Script Character-18C3E +\U00018C3F;Khitan Small Script Character-18C3F +\U00018C40;Khitan Small Script Character-18C40 +\U00018C41;Khitan Small Script Character-18C41 +\U00018C42;Khitan Small Script Character-18C42 +\U00018C43;Khitan Small Script Character-18C43 +\U00018C44;Khitan Small Script Character-18C44 +\U00018C45;Khitan Small Script Character-18C45 +\U00018C46;Khitan Small Script Character-18C46 +\U00018C47;Khitan Small Script Character-18C47 +\U00018C48;Khitan Small Script Character-18C48 +\U00018C49;Khitan Small Script Character-18C49 +\U00018C4A;Khitan Small Script Character-18C4A +\U00018C4B;Khitan Small Script Character-18C4B +\U00018C4C;Khitan Small Script Character-18C4C +\U00018C4D;Khitan Small Script Character-18C4D +\U00018C4E;Khitan Small Script Character-18C4E +\U00018C4F;Khitan Small Script Character-18C4F +\U00018C50;Khitan Small Script Character-18C50 +\U00018C51;Khitan Small Script Character-18C51 +\U00018C52;Khitan Small Script Character-18C52 +\U00018C53;Khitan Small Script Character-18C53 +\U00018C54;Khitan Small Script Character-18C54 +\U00018C55;Khitan Small Script Character-18C55 +\U00018C56;Khitan Small Script Character-18C56 +\U00018C57;Khitan Small Script Character-18C57 +\U00018C58;Khitan Small Script Character-18C58 +\U00018C59;Khitan Small Script Character-18C59 +\U00018C5A;Khitan Small Script Character-18C5A +\U00018C5B;Khitan Small Script Character-18C5B +\U00018C5C;Khitan Small Script Character-18C5C +\U00018C5D;Khitan Small Script Character-18C5D +\U00018C5E;Khitan Small Script Character-18C5E +\U00018C5F;Khitan Small Script Character-18C5F +\U00018C60;Khitan Small Script Character-18C60 +\U00018C61;Khitan Small Script Character-18C61 +\U00018C62;Khitan Small Script Character-18C62 +\U00018C63;Khitan Small Script Character-18C63 +\U00018C64;Khitan Small Script Character-18C64 +\U00018C65;Khitan Small Script Character-18C65 +\U00018C66;Khitan Small Script Character-18C66 +\U00018C67;Khitan Small Script Character-18C67 +\U00018C68;Khitan Small Script Character-18C68 +\U00018C69;Khitan Small Script Character-18C69 +\U00018C6A;Khitan Small Script Character-18C6A +\U00018C6B;Khitan Small Script Character-18C6B +\U00018C6C;Khitan Small Script Character-18C6C +\U00018C6D;Khitan Small Script Character-18C6D +\U00018C6E;Khitan Small Script Character-18C6E +\U00018C6F;Khitan Small Script Character-18C6F +\U00018C70;Khitan Small Script Character-18C70 +\U00018C71;Khitan Small Script Character-18C71 +\U00018C72;Khitan Small Script Character-18C72 +\U00018C73;Khitan Small Script Character-18C73 +\U00018C74;Khitan Small Script Character-18C74 +\U00018C75;Khitan Small Script Character-18C75 +\U00018C76;Khitan Small Script Character-18C76 +\U00018C77;Khitan Small Script Character-18C77 +\U00018C78;Khitan Small Script Character-18C78 +\U00018C79;Khitan Small Script Character-18C79 +\U00018C7A;Khitan Small Script Character-18C7A +\U00018C7B;Khitan Small Script Character-18C7B +\U00018C7C;Khitan Small Script Character-18C7C +\U00018C7D;Khitan Small Script Character-18C7D +\U00018C7E;Khitan Small Script Character-18C7E +\U00018C7F;Khitan Small Script Character-18C7F +\U00018C80;Khitan Small Script Character-18C80 +\U00018C81;Khitan Small Script Character-18C81 +\U00018C82;Khitan Small Script Character-18C82 +\U00018C83;Khitan Small Script Character-18C83 +\U00018C84;Khitan Small Script Character-18C84 +\U00018C85;Khitan Small Script Character-18C85 +\U00018C86;Khitan Small Script Character-18C86 +\U00018C87;Khitan Small Script Character-18C87 +\U00018C88;Khitan Small Script Character-18C88 +\U00018C89;Khitan Small Script Character-18C89 +\U00018C8A;Khitan Small Script Character-18C8A +\U00018C8B;Khitan Small Script Character-18C8B +\U00018C8C;Khitan Small Script Character-18C8C +\U00018C8D;Khitan Small Script Character-18C8D +\U00018C8E;Khitan Small Script Character-18C8E +\U00018C8F;Khitan Small Script Character-18C8F +\U00018C90;Khitan Small Script Character-18C90 +\U00018C91;Khitan Small Script Character-18C91 +\U00018C92;Khitan Small Script Character-18C92 +\U00018C93;Khitan Small Script Character-18C93 +\U00018C94;Khitan Small Script Character-18C94 +\U00018C95;Khitan Small Script Character-18C95 +\U00018C96;Khitan Small Script Character-18C96 +\U00018C97;Khitan Small Script Character-18C97 +\U00018C98;Khitan Small Script Character-18C98 +\U00018C99;Khitan Small Script Character-18C99 +\U00018C9A;Khitan Small Script Character-18C9A +\U00018C9B;Khitan Small Script Character-18C9B +\U00018C9C;Khitan Small Script Character-18C9C +\U00018C9D;Khitan Small Script Character-18C9D +\U00018C9E;Khitan Small Script Character-18C9E +\U00018C9F;Khitan Small Script Character-18C9F +\U00018CA0;Khitan Small Script Character-18CA0 +\U00018CA1;Khitan Small Script Character-18CA1 +\U00018CA2;Khitan Small Script Character-18CA2 +\U00018CA3;Khitan Small Script Character-18CA3 +\U00018CA4;Khitan Small Script Character-18CA4 +\U00018CA5;Khitan Small Script Character-18CA5 +\U00018CA6;Khitan Small Script Character-18CA6 +\U00018CA7;Khitan Small Script Character-18CA7 +\U00018CA8;Khitan Small Script Character-18CA8 +\U00018CA9;Khitan Small Script Character-18CA9 +\U00018CAA;Khitan Small Script Character-18CAA +\U00018CAB;Khitan Small Script Character-18CAB +\U00018CAC;Khitan Small Script Character-18CAC +\U00018CAD;Khitan Small Script Character-18CAD +\U00018CAE;Khitan Small Script Character-18CAE +\U00018CAF;Khitan Small Script Character-18CAF +\U00018CB0;Khitan Small Script Character-18CB0 +\U00018CB1;Khitan Small Script Character-18CB1 +\U00018CB2;Khitan Small Script Character-18CB2 +\U00018CB3;Khitan Small Script Character-18CB3 +\U00018CB4;Khitan Small Script Character-18CB4 +\U00018CB5;Khitan Small Script Character-18CB5 +\U00018CB6;Khitan Small Script Character-18CB6 +\U00018CB7;Khitan Small Script Character-18CB7 +\U00018CB8;Khitan Small Script Character-18CB8 +\U00018CB9;Khitan Small Script Character-18CB9 +\U00018CBA;Khitan Small Script Character-18CBA +\U00018CBB;Khitan Small Script Character-18CBB +\U00018CBC;Khitan Small Script Character-18CBC +\U00018CBD;Khitan Small Script Character-18CBD +\U00018CBE;Khitan Small Script Character-18CBE +\U00018CBF;Khitan Small Script Character-18CBF +\U00018CC0;Khitan Small Script Character-18CC0 +\U00018CC1;Khitan Small Script Character-18CC1 +\U00018CC2;Khitan Small Script Character-18CC2 +\U00018CC3;Khitan Small Script Character-18CC3 +\U00018CC4;Khitan Small Script Character-18CC4 +\U00018CC5;Khitan Small Script Character-18CC5 +\U00018CC6;Khitan Small Script Character-18CC6 +\U00018CC7;Khitan Small Script Character-18CC7 +\U00018CC8;Khitan Small Script Character-18CC8 +\U00018CC9;Khitan Small Script Character-18CC9 +\U00018CCA;Khitan Small Script Character-18CCA +\U00018CCB;Khitan Small Script Character-18CCB +\U00018CCC;Khitan Small Script Character-18CCC +\U00018CCD;Khitan Small Script Character-18CCD +\U00018CCE;Khitan Small Script Character-18CCE +\U00018CCF;Khitan Small Script Character-18CCF +\U00018CD0;Khitan Small Script Character-18CD0 +\U00018CD1;Khitan Small Script Character-18CD1 +\U00018CD2;Khitan Small Script Character-18CD2 +\U00018CD3;Khitan Small Script Character-18CD3 +\U00018CD4;Khitan Small Script Character-18CD4 +\U00018CD5;Khitan Small Script Character-18CD5 +\U0001AFF0;Katakana Letter Minnan Tone-2 +\U0001AFF1;Katakana Letter Minnan Tone-3 +\U0001AFF2;Katakana Letter Minnan Tone-4 +\U0001AFF3;Katakana Letter Minnan Tone-5 +\U0001AFF5;Katakana Letter Minnan Tone-7 +\U0001AFF6;Katakana Letter Minnan Tone-8 +\U0001AFF7;Katakana Letter Minnan Nasalized Tone-1 +\U0001AFF8;Katakana Letter Minnan Nasalized Tone-2 +\U0001AFF9;Katakana Letter Minnan Nasalized Tone-3 +\U0001AFFA;Katakana Letter Minnan Nasalized Tone-4 +\U0001AFFB;Katakana Letter Minnan Nasalized Tone-5 +\U0001AFFD;Katakana Letter Minnan Nasalized Tone-7 +\U0001AFFE;Katakana Letter Minnan Nasalized Tone-8 +\U0001B000;Katakana Letter Archaic E +\U0001B001;Hiragana Letter Archaic Ye +\U0001B002;Hentaigana Letter A-1 +\U0001B003;Hentaigana Letter A-2 +\U0001B004;Hentaigana Letter A-3 +\U0001B005;Hentaigana Letter A-Wo +\U0001B006;Hentaigana Letter I-1 +\U0001B007;Hentaigana Letter I-2 +\U0001B008;Hentaigana Letter I-3 +\U0001B009;Hentaigana Letter I-4 +\U0001B00A;Hentaigana Letter U-1 +\U0001B00B;Hentaigana Letter U-2 +\U0001B00C;Hentaigana Letter U-3 +\U0001B00D;Hentaigana Letter U-4 +\U0001B00E;Hentaigana Letter U-5 +\U0001B00F;Hentaigana Letter E-2 +\U0001B010;Hentaigana Letter E-3 +\U0001B011;Hentaigana Letter E-4 +\U0001B012;Hentaigana Letter E-5 +\U0001B013;Hentaigana Letter E-6 +\U0001B014;Hentaigana Letter O-1 +\U0001B015;Hentaigana Letter O-2 +\U0001B016;Hentaigana Letter O-3 +\U0001B017;Hentaigana Letter Ka-1 +\U0001B018;Hentaigana Letter Ka-2 +\U0001B019;Hentaigana Letter Ka-3 +\U0001B01A;Hentaigana Letter Ka-4 +\U0001B01B;Hentaigana Letter Ka-5 +\U0001B01C;Hentaigana Letter Ka-6 +\U0001B01D;Hentaigana Letter Ka-7 +\U0001B01E;Hentaigana Letter Ka-8 +\U0001B01F;Hentaigana Letter Ka-9 +\U0001B020;Hentaigana Letter Ka-10 +\U0001B021;Hentaigana Letter Ka-11 +\U0001B022;Hentaigana Letter Ka-Ke +\U0001B023;Hentaigana Letter Ki-1 +\U0001B024;Hentaigana Letter Ki-2 +\U0001B025;Hentaigana Letter Ki-3 +\U0001B026;Hentaigana Letter Ki-4 +\U0001B027;Hentaigana Letter Ki-5 +\U0001B028;Hentaigana Letter Ki-6 +\U0001B029;Hentaigana Letter Ki-7 +\U0001B02A;Hentaigana Letter Ki-8 +\U0001B02B;Hentaigana Letter Ku-1 +\U0001B02C;Hentaigana Letter Ku-2 +\U0001B02D;Hentaigana Letter Ku-3 +\U0001B02E;Hentaigana Letter Ku-4 +\U0001B02F;Hentaigana Letter Ku-5 +\U0001B030;Hentaigana Letter Ku-6 +\U0001B031;Hentaigana Letter Ku-7 +\U0001B032;Hentaigana Letter Ke-1 +\U0001B033;Hentaigana Letter Ke-2 +\U0001B034;Hentaigana Letter Ke-3 +\U0001B035;Hentaigana Letter Ke-4 +\U0001B036;Hentaigana Letter Ke-5 +\U0001B037;Hentaigana Letter Ke-6 +\U0001B038;Hentaigana Letter Ko-1 +\U0001B039;Hentaigana Letter Ko-2 +\U0001B03A;Hentaigana Letter Ko-3 +\U0001B03B;Hentaigana Letter Ko-Ki +\U0001B03C;Hentaigana Letter Sa-1 +\U0001B03D;Hentaigana Letter Sa-2 +\U0001B03E;Hentaigana Letter Sa-3 +\U0001B03F;Hentaigana Letter Sa-4 +\U0001B040;Hentaigana Letter Sa-5 +\U0001B041;Hentaigana Letter Sa-6 +\U0001B042;Hentaigana Letter Sa-7 +\U0001B043;Hentaigana Letter Sa-8 +\U0001B044;Hentaigana Letter Si-1 +\U0001B045;Hentaigana Letter Si-2 +\U0001B046;Hentaigana Letter Si-3 +\U0001B047;Hentaigana Letter Si-4 +\U0001B048;Hentaigana Letter Si-5 +\U0001B049;Hentaigana Letter Si-6 +\U0001B04A;Hentaigana Letter Su-1 +\U0001B04B;Hentaigana Letter Su-2 +\U0001B04C;Hentaigana Letter Su-3 +\U0001B04D;Hentaigana Letter Su-4 +\U0001B04E;Hentaigana Letter Su-5 +\U0001B04F;Hentaigana Letter Su-6 +\U0001B050;Hentaigana Letter Su-7 +\U0001B051;Hentaigana Letter Su-8 +\U0001B052;Hentaigana Letter Se-1 +\U0001B053;Hentaigana Letter Se-2 +\U0001B054;Hentaigana Letter Se-3 +\U0001B055;Hentaigana Letter Se-4 +\U0001B056;Hentaigana Letter Se-5 +\U0001B057;Hentaigana Letter So-1 +\U0001B058;Hentaigana Letter So-2 +\U0001B059;Hentaigana Letter So-3 +\U0001B05A;Hentaigana Letter So-4 +\U0001B05B;Hentaigana Letter So-5 +\U0001B05C;Hentaigana Letter So-6 +\U0001B05D;Hentaigana Letter So-7 +\U0001B05E;Hentaigana Letter Ta-1 +\U0001B05F;Hentaigana Letter Ta-2 +\U0001B060;Hentaigana Letter Ta-3 +\U0001B061;Hentaigana Letter Ta-4 +\U0001B062;Hentaigana Letter Ti-1 +\U0001B063;Hentaigana Letter Ti-2 +\U0001B064;Hentaigana Letter Ti-3 +\U0001B065;Hentaigana Letter Ti-4 +\U0001B066;Hentaigana Letter Ti-5 +\U0001B067;Hentaigana Letter Ti-6 +\U0001B068;Hentaigana Letter Ti-7 +\U0001B069;Hentaigana Letter Tu-1 +\U0001B06A;Hentaigana Letter Tu-2 +\U0001B06B;Hentaigana Letter Tu-3 +\U0001B06C;Hentaigana Letter Tu-4 +\U0001B06D;Hentaigana Letter Tu-To +\U0001B06E;Hentaigana Letter Te-1 +\U0001B06F;Hentaigana Letter Te-2 +\U0001B070;Hentaigana Letter Te-3 +\U0001B071;Hentaigana Letter Te-4 +\U0001B072;Hentaigana Letter Te-5 +\U0001B073;Hentaigana Letter Te-6 +\U0001B074;Hentaigana Letter Te-7 +\U0001B075;Hentaigana Letter Te-8 +\U0001B076;Hentaigana Letter Te-9 +\U0001B077;Hentaigana Letter To-1 +\U0001B078;Hentaigana Letter To-2 +\U0001B079;Hentaigana Letter To-3 +\U0001B07A;Hentaigana Letter To-4 +\U0001B07B;Hentaigana Letter To-5 +\U0001B07C;Hentaigana Letter To-6 +\U0001B07D;Hentaigana Letter To-Ra +\U0001B07E;Hentaigana Letter Na-1 +\U0001B07F;Hentaigana Letter Na-2 +\U0001B080;Hentaigana Letter Na-3 +\U0001B081;Hentaigana Letter Na-4 +\U0001B082;Hentaigana Letter Na-5 +\U0001B083;Hentaigana Letter Na-6 +\U0001B084;Hentaigana Letter Na-7 +\U0001B085;Hentaigana Letter Na-8 +\U0001B086;Hentaigana Letter Na-9 +\U0001B087;Hentaigana Letter Ni-1 +\U0001B088;Hentaigana Letter Ni-2 +\U0001B089;Hentaigana Letter Ni-3 +\U0001B08A;Hentaigana Letter Ni-4 +\U0001B08B;Hentaigana Letter Ni-5 +\U0001B08C;Hentaigana Letter Ni-6 +\U0001B08D;Hentaigana Letter Ni-7 +\U0001B08E;Hentaigana Letter Ni-Te +\U0001B08F;Hentaigana Letter Nu-1 +\U0001B090;Hentaigana Letter Nu-2 +\U0001B091;Hentaigana Letter Nu-3 +\U0001B092;Hentaigana Letter Ne-1 +\U0001B093;Hentaigana Letter Ne-2 +\U0001B094;Hentaigana Letter Ne-3 +\U0001B095;Hentaigana Letter Ne-4 +\U0001B096;Hentaigana Letter Ne-5 +\U0001B097;Hentaigana Letter Ne-6 +\U0001B098;Hentaigana Letter Ne-Ko +\U0001B099;Hentaigana Letter No-1 +\U0001B09A;Hentaigana Letter No-2 +\U0001B09B;Hentaigana Letter No-3 +\U0001B09C;Hentaigana Letter No-4 +\U0001B09D;Hentaigana Letter No-5 +\U0001B09E;Hentaigana Letter Ha-1 +\U0001B09F;Hentaigana Letter Ha-2 +\U0001B0A0;Hentaigana Letter Ha-3 +\U0001B0A1;Hentaigana Letter Ha-4 +\U0001B0A2;Hentaigana Letter Ha-5 +\U0001B0A3;Hentaigana Letter Ha-6 +\U0001B0A4;Hentaigana Letter Ha-7 +\U0001B0A5;Hentaigana Letter Ha-8 +\U0001B0A6;Hentaigana Letter Ha-9 +\U0001B0A7;Hentaigana Letter Ha-10 +\U0001B0A8;Hentaigana Letter Ha-11 +\U0001B0A9;Hentaigana Letter Hi-1 +\U0001B0AA;Hentaigana Letter Hi-2 +\U0001B0AB;Hentaigana Letter Hi-3 +\U0001B0AC;Hentaigana Letter Hi-4 +\U0001B0AD;Hentaigana Letter Hi-5 +\U0001B0AE;Hentaigana Letter Hi-6 +\U0001B0AF;Hentaigana Letter Hi-7 +\U0001B0B0;Hentaigana Letter Hu-1 +\U0001B0B1;Hentaigana Letter Hu-2 +\U0001B0B2;Hentaigana Letter Hu-3 +\U0001B0B3;Hentaigana Letter He-1 +\U0001B0B4;Hentaigana Letter He-2 +\U0001B0B5;Hentaigana Letter He-3 +\U0001B0B6;Hentaigana Letter He-4 +\U0001B0B7;Hentaigana Letter He-5 +\U0001B0B8;Hentaigana Letter He-6 +\U0001B0B9;Hentaigana Letter He-7 +\U0001B0BA;Hentaigana Letter Ho-1 +\U0001B0BB;Hentaigana Letter Ho-2 +\U0001B0BC;Hentaigana Letter Ho-3 +\U0001B0BD;Hentaigana Letter Ho-4 +\U0001B0BE;Hentaigana Letter Ho-5 +\U0001B0BF;Hentaigana Letter Ho-6 +\U0001B0C0;Hentaigana Letter Ho-7 +\U0001B0C1;Hentaigana Letter Ho-8 +\U0001B0C2;Hentaigana Letter Ma-1 +\U0001B0C3;Hentaigana Letter Ma-2 +\U0001B0C4;Hentaigana Letter Ma-3 +\U0001B0C5;Hentaigana Letter Ma-4 +\U0001B0C6;Hentaigana Letter Ma-5 +\U0001B0C7;Hentaigana Letter Ma-6 +\U0001B0C8;Hentaigana Letter Ma-7 +\U0001B0C9;Hentaigana Letter Mi-1 +\U0001B0CA;Hentaigana Letter Mi-2 +\U0001B0CB;Hentaigana Letter Mi-3 +\U0001B0CC;Hentaigana Letter Mi-4 +\U0001B0CD;Hentaigana Letter Mi-5 +\U0001B0CE;Hentaigana Letter Mi-6 +\U0001B0CF;Hentaigana Letter Mi-7 +\U0001B0D0;Hentaigana Letter Mu-1 +\U0001B0D1;Hentaigana Letter Mu-2 +\U0001B0D2;Hentaigana Letter Mu-3 +\U0001B0D3;Hentaigana Letter Mu-4 +\U0001B0D4;Hentaigana Letter Me-1 +\U0001B0D5;Hentaigana Letter Me-2 +\U0001B0D6;Hentaigana Letter Me-Ma +\U0001B0D7;Hentaigana Letter Mo-1 +\U0001B0D8;Hentaigana Letter Mo-2 +\U0001B0D9;Hentaigana Letter Mo-3 +\U0001B0DA;Hentaigana Letter Mo-4 +\U0001B0DB;Hentaigana Letter Mo-5 +\U0001B0DC;Hentaigana Letter Mo-6 +\U0001B0DD;Hentaigana Letter Ya-1 +\U0001B0DE;Hentaigana Letter Ya-2 +\U0001B0DF;Hentaigana Letter Ya-3 +\U0001B0E0;Hentaigana Letter Ya-4 +\U0001B0E1;Hentaigana Letter Ya-5 +\U0001B0E2;Hentaigana Letter Ya-Yo +\U0001B0E3;Hentaigana Letter Yu-1 +\U0001B0E4;Hentaigana Letter Yu-2 +\U0001B0E5;Hentaigana Letter Yu-3 +\U0001B0E6;Hentaigana Letter Yu-4 +\U0001B0E7;Hentaigana Letter Yo-1 +\U0001B0E8;Hentaigana Letter Yo-2 +\U0001B0E9;Hentaigana Letter Yo-3 +\U0001B0EA;Hentaigana Letter Yo-4 +\U0001B0EB;Hentaigana Letter Yo-5 +\U0001B0EC;Hentaigana Letter Yo-6 +\U0001B0ED;Hentaigana Letter Ra-1 +\U0001B0EE;Hentaigana Letter Ra-2 +\U0001B0EF;Hentaigana Letter Ra-3 +\U0001B0F0;Hentaigana Letter Ra-4 +\U0001B0F1;Hentaigana Letter Ri-1 +\U0001B0F2;Hentaigana Letter Ri-2 +\U0001B0F3;Hentaigana Letter Ri-3 +\U0001B0F4;Hentaigana Letter Ri-4 +\U0001B0F5;Hentaigana Letter Ri-5 +\U0001B0F6;Hentaigana Letter Ri-6 +\U0001B0F7;Hentaigana Letter Ri-7 +\U0001B0F8;Hentaigana Letter Ru-1 +\U0001B0F9;Hentaigana Letter Ru-2 +\U0001B0FA;Hentaigana Letter Ru-3 +\U0001B0FB;Hentaigana Letter Ru-4 +\U0001B0FC;Hentaigana Letter Ru-5 +\U0001B0FD;Hentaigana Letter Ru-6 +\U0001B0FE;Hentaigana Letter Re-1 +\U0001B0FF;Hentaigana Letter Re-2 +\U0001B100;Hentaigana Letter Re-3 +\U0001B101;Hentaigana Letter Re-4 +\U0001B102;Hentaigana Letter Ro-1 +\U0001B103;Hentaigana Letter Ro-2 +\U0001B104;Hentaigana Letter Ro-3 +\U0001B105;Hentaigana Letter Ro-4 +\U0001B106;Hentaigana Letter Ro-5 +\U0001B107;Hentaigana Letter Ro-6 +\U0001B108;Hentaigana Letter Wa-1 +\U0001B109;Hentaigana Letter Wa-2 +\U0001B10A;Hentaigana Letter Wa-3 +\U0001B10B;Hentaigana Letter Wa-4 +\U0001B10C;Hentaigana Letter Wa-5 +\U0001B10D;Hentaigana Letter Wi-1 +\U0001B10E;Hentaigana Letter Wi-2 +\U0001B10F;Hentaigana Letter Wi-3 +\U0001B110;Hentaigana Letter Wi-4 +\U0001B111;Hentaigana Letter Wi-5 +\U0001B112;Hentaigana Letter We-1 +\U0001B113;Hentaigana Letter We-2 +\U0001B114;Hentaigana Letter We-3 +\U0001B115;Hentaigana Letter We-4 +\U0001B116;Hentaigana Letter Wo-1 +\U0001B117;Hentaigana Letter Wo-2 +\U0001B118;Hentaigana Letter Wo-3 +\U0001B119;Hentaigana Letter Wo-4 +\U0001B11A;Hentaigana Letter Wo-5 +\U0001B11B;Hentaigana Letter Wo-6 +\U0001B11C;Hentaigana Letter Wo-7 +\U0001B11D;Hentaigana Letter N-Mu-Mo-1 +\U0001B11E;Hentaigana Letter N-Mu-Mo-2 +\U0001B11F;Hiragana Letter Archaic Wu +\U0001B120;Katakana Letter Archaic Yi +\U0001B121;Katakana Letter Archaic Ye +\U0001B122;Katakana Letter Archaic Wu +\U0001B132;Hiragana Letter Small Ko +\U0001B150;Hiragana Letter Small Wi +\U0001B151;Hiragana Letter Small We +\U0001B152;Hiragana Letter Small Wo +\U0001B155;Katakana Letter Small Ko +\U0001B164;Katakana Letter Small Wi +\U0001B165;Katakana Letter Small We +\U0001B166;Katakana Letter Small Wo +\U0001B167;Katakana Letter Small N +\U0001B170;Nushu Character-1b170 +\U0001B171;Nushu Character-1b171 +\U0001B172;Nushu Character-1b172 +\U0001B173;Nushu Character-1b173 +\U0001B174;Nushu Character-1b174 +\U0001B175;Nushu Character-1b175 +\U0001B176;Nushu Character-1b176 +\U0001B177;Nushu Character-1b177 +\U0001B178;Nushu Character-1b178 +\U0001B179;Nushu Character-1b179 +\U0001B17A;Nushu Character-1b17A +\U0001B17B;Nushu Character-1b17B +\U0001B17C;Nushu Character-1b17C +\U0001B17D;Nushu Character-1b17D +\U0001B17E;Nushu Character-1b17E +\U0001B17F;Nushu Character-1b17F +\U0001B180;Nushu Character-1b180 +\U0001B181;Nushu Character-1b181 +\U0001B182;Nushu Character-1b182 +\U0001B183;Nushu Character-1b183 +\U0001B184;Nushu Character-1b184 +\U0001B185;Nushu Character-1b185 +\U0001B186;Nushu Character-1b186 +\U0001B187;Nushu Character-1b187 +\U0001B188;Nushu Character-1b188 +\U0001B189;Nushu Character-1b189 +\U0001B18A;Nushu Character-1b18A +\U0001B18B;Nushu Character-1b18B +\U0001B18C;Nushu Character-1b18C +\U0001B18D;Nushu Character-1b18D +\U0001B18E;Nushu Character-1b18E +\U0001B18F;Nushu Character-1b18F +\U0001B190;Nushu Character-1b190 +\U0001B191;Nushu Character-1b191 +\U0001B192;Nushu Character-1b192 +\U0001B193;Nushu Character-1b193 +\U0001B194;Nushu Character-1b194 +\U0001B195;Nushu Character-1b195 +\U0001B196;Nushu Character-1b196 +\U0001B197;Nushu Character-1b197 +\U0001B198;Nushu Character-1b198 +\U0001B199;Nushu Character-1b199 +\U0001B19A;Nushu Character-1b19A +\U0001B19B;Nushu Character-1b19B +\U0001B19C;Nushu Character-1b19C +\U0001B19D;Nushu Character-1b19D +\U0001B19E;Nushu Character-1b19E +\U0001B19F;Nushu Character-1b19F +\U0001B1A0;Nushu Character-1b1A0 +\U0001B1A1;Nushu Character-1b1A1 +\U0001B1A2;Nushu Character-1b1A2 +\U0001B1A3;Nushu Character-1b1A3 +\U0001B1A4;Nushu Character-1b1A4 +\U0001B1A5;Nushu Character-1b1A5 +\U0001B1A6;Nushu Character-1b1A6 +\U0001B1A7;Nushu Character-1b1A7 +\U0001B1A8;Nushu Character-1b1A8 +\U0001B1A9;Nushu Character-1b1A9 +\U0001B1AA;Nushu Character-1b1AA +\U0001B1AB;Nushu Character-1b1AB +\U0001B1AC;Nushu Character-1b1AC +\U0001B1AD;Nushu Character-1b1AD +\U0001B1AE;Nushu Character-1b1AE +\U0001B1AF;Nushu Character-1b1AF +\U0001B1B0;Nushu Character-1b1B0 +\U0001B1B1;Nushu Character-1b1B1 +\U0001B1B2;Nushu Character-1b1B2 +\U0001B1B3;Nushu Character-1b1B3 +\U0001B1B4;Nushu Character-1b1B4 +\U0001B1B5;Nushu Character-1b1B5 +\U0001B1B6;Nushu Character-1b1B6 +\U0001B1B7;Nushu Character-1b1B7 +\U0001B1B8;Nushu Character-1b1B8 +\U0001B1B9;Nushu Character-1b1B9 +\U0001B1BA;Nushu Character-1b1BA +\U0001B1BB;Nushu Character-1b1BB +\U0001B1BC;Nushu Character-1b1BC +\U0001B1BD;Nushu Character-1b1BD +\U0001B1BE;Nushu Character-1b1BE +\U0001B1BF;Nushu Character-1b1BF +\U0001B1C0;Nushu Character-1b1C0 +\U0001B1C1;Nushu Character-1b1C1 +\U0001B1C2;Nushu Character-1b1C2 +\U0001B1C3;Nushu Character-1b1C3 +\U0001B1C4;Nushu Character-1b1C4 +\U0001B1C5;Nushu Character-1b1C5 +\U0001B1C6;Nushu Character-1b1C6 +\U0001B1C7;Nushu Character-1b1C7 +\U0001B1C8;Nushu Character-1b1C8 +\U0001B1C9;Nushu Character-1b1C9 +\U0001B1CA;Nushu Character-1b1CA +\U0001B1CB;Nushu Character-1b1CB +\U0001B1CC;Nushu Character-1b1CC +\U0001B1CD;Nushu Character-1b1CD +\U0001B1CE;Nushu Character-1b1CE +\U0001B1CF;Nushu Character-1b1CF +\U0001B1D0;Nushu Character-1b1D0 +\U0001B1D1;Nushu Character-1b1D1 +\U0001B1D2;Nushu Character-1b1D2 +\U0001B1D3;Nushu Character-1b1D3 +\U0001B1D4;Nushu Character-1b1D4 +\U0001B1D5;Nushu Character-1b1D5 +\U0001B1D6;Nushu Character-1b1D6 +\U0001B1D7;Nushu Character-1b1D7 +\U0001B1D8;Nushu Character-1b1D8 +\U0001B1D9;Nushu Character-1b1D9 +\U0001B1DA;Nushu Character-1b1DA +\U0001B1DB;Nushu Character-1b1DB +\U0001B1DC;Nushu Character-1b1DC +\U0001B1DD;Nushu Character-1b1DD +\U0001B1DE;Nushu Character-1b1DE +\U0001B1DF;Nushu Character-1b1DF +\U0001B1E0;Nushu Character-1b1E0 +\U0001B1E1;Nushu Character-1b1E1 +\U0001B1E2;Nushu Character-1b1E2 +\U0001B1E3;Nushu Character-1b1E3 +\U0001B1E4;Nushu Character-1b1E4 +\U0001B1E5;Nushu Character-1b1E5 +\U0001B1E6;Nushu Character-1b1E6 +\U0001B1E7;Nushu Character-1b1E7 +\U0001B1E8;Nushu Character-1b1E8 +\U0001B1E9;Nushu Character-1b1E9 +\U0001B1EA;Nushu Character-1b1EA +\U0001B1EB;Nushu Character-1b1EB +\U0001B1EC;Nushu Character-1b1EC +\U0001B1ED;Nushu Character-1b1ED +\U0001B1EE;Nushu Character-1b1EE +\U0001B1EF;Nushu Character-1b1EF +\U0001B1F0;Nushu Character-1b1F0 +\U0001B1F1;Nushu Character-1b1F1 +\U0001B1F2;Nushu Character-1b1F2 +\U0001B1F3;Nushu Character-1b1F3 +\U0001B1F4;Nushu Character-1b1F4 +\U0001B1F5;Nushu Character-1b1F5 +\U0001B1F6;Nushu Character-1b1F6 +\U0001B1F7;Nushu Character-1b1F7 +\U0001B1F8;Nushu Character-1b1F8 +\U0001B1F9;Nushu Character-1b1F9 +\U0001B1FA;Nushu Character-1b1FA +\U0001B1FB;Nushu Character-1b1FB +\U0001B1FC;Nushu Character-1b1FC +\U0001B1FD;Nushu Character-1b1FD +\U0001B1FE;Nushu Character-1b1FE +\U0001B1FF;Nushu Character-1b1FF +\U0001B200;Nushu Character-1b200 +\U0001B201;Nushu Character-1b201 +\U0001B202;Nushu Character-1b202 +\U0001B203;Nushu Character-1b203 +\U0001B204;Nushu Character-1b204 +\U0001B205;Nushu Character-1b205 +\U0001B206;Nushu Character-1b206 +\U0001B207;Nushu Character-1b207 +\U0001B208;Nushu Character-1b208 +\U0001B209;Nushu Character-1b209 +\U0001B20A;Nushu Character-1b20A +\U0001B20B;Nushu Character-1b20B +\U0001B20C;Nushu Character-1b20C +\U0001B20D;Nushu Character-1b20D +\U0001B20E;Nushu Character-1b20E +\U0001B20F;Nushu Character-1b20F +\U0001B210;Nushu Character-1b210 +\U0001B211;Nushu Character-1b211 +\U0001B212;Nushu Character-1b212 +\U0001B213;Nushu Character-1b213 +\U0001B214;Nushu Character-1b214 +\U0001B215;Nushu Character-1b215 +\U0001B216;Nushu Character-1b216 +\U0001B217;Nushu Character-1b217 +\U0001B218;Nushu Character-1b218 +\U0001B219;Nushu Character-1b219 +\U0001B21A;Nushu Character-1b21A +\U0001B21B;Nushu Character-1b21B +\U0001B21C;Nushu Character-1b21C +\U0001B21D;Nushu Character-1b21D +\U0001B21E;Nushu Character-1b21E +\U0001B21F;Nushu Character-1b21F +\U0001B220;Nushu Character-1b220 +\U0001B221;Nushu Character-1b221 +\U0001B222;Nushu Character-1b222 +\U0001B223;Nushu Character-1b223 +\U0001B224;Nushu Character-1b224 +\U0001B225;Nushu Character-1b225 +\U0001B226;Nushu Character-1b226 +\U0001B227;Nushu Character-1b227 +\U0001B228;Nushu Character-1b228 +\U0001B229;Nushu Character-1b229 +\U0001B22A;Nushu Character-1b22A +\U0001B22B;Nushu Character-1b22B +\U0001B22C;Nushu Character-1b22C +\U0001B22D;Nushu Character-1b22D +\U0001B22E;Nushu Character-1b22E +\U0001B22F;Nushu Character-1b22F +\U0001B230;Nushu Character-1b230 +\U0001B231;Nushu Character-1b231 +\U0001B232;Nushu Character-1b232 +\U0001B233;Nushu Character-1b233 +\U0001B234;Nushu Character-1b234 +\U0001B235;Nushu Character-1b235 +\U0001B236;Nushu Character-1b236 +\U0001B237;Nushu Character-1b237 +\U0001B238;Nushu Character-1b238 +\U0001B239;Nushu Character-1b239 +\U0001B23A;Nushu Character-1b23A +\U0001B23B;Nushu Character-1b23B +\U0001B23C;Nushu Character-1b23C +\U0001B23D;Nushu Character-1b23D +\U0001B23E;Nushu Character-1b23E +\U0001B23F;Nushu Character-1b23F +\U0001B240;Nushu Character-1b240 +\U0001B241;Nushu Character-1b241 +\U0001B242;Nushu Character-1b242 +\U0001B243;Nushu Character-1b243 +\U0001B244;Nushu Character-1b244 +\U0001B245;Nushu Character-1b245 +\U0001B246;Nushu Character-1b246 +\U0001B247;Nushu Character-1b247 +\U0001B248;Nushu Character-1b248 +\U0001B249;Nushu Character-1b249 +\U0001B24A;Nushu Character-1b24A +\U0001B24B;Nushu Character-1b24B +\U0001B24C;Nushu Character-1b24C +\U0001B24D;Nushu Character-1b24D +\U0001B24E;Nushu Character-1b24E +\U0001B24F;Nushu Character-1b24F +\U0001B250;Nushu Character-1b250 +\U0001B251;Nushu Character-1b251 +\U0001B252;Nushu Character-1b252 +\U0001B253;Nushu Character-1b253 +\U0001B254;Nushu Character-1b254 +\U0001B255;Nushu Character-1b255 +\U0001B256;Nushu Character-1b256 +\U0001B257;Nushu Character-1b257 +\U0001B258;Nushu Character-1b258 +\U0001B259;Nushu Character-1b259 +\U0001B25A;Nushu Character-1b25A +\U0001B25B;Nushu Character-1b25B +\U0001B25C;Nushu Character-1b25C +\U0001B25D;Nushu Character-1b25D +\U0001B25E;Nushu Character-1b25E +\U0001B25F;Nushu Character-1b25F +\U0001B260;Nushu Character-1b260 +\U0001B261;Nushu Character-1b261 +\U0001B262;Nushu Character-1b262 +\U0001B263;Nushu Character-1b263 +\U0001B264;Nushu Character-1b264 +\U0001B265;Nushu Character-1b265 +\U0001B266;Nushu Character-1b266 +\U0001B267;Nushu Character-1b267 +\U0001B268;Nushu Character-1b268 +\U0001B269;Nushu Character-1b269 +\U0001B26A;Nushu Character-1b26A +\U0001B26B;Nushu Character-1b26B +\U0001B26C;Nushu Character-1b26C +\U0001B26D;Nushu Character-1b26D +\U0001B26E;Nushu Character-1b26E +\U0001B26F;Nushu Character-1b26F +\U0001B270;Nushu Character-1b270 +\U0001B271;Nushu Character-1b271 +\U0001B272;Nushu Character-1b272 +\U0001B273;Nushu Character-1b273 +\U0001B274;Nushu Character-1b274 +\U0001B275;Nushu Character-1b275 +\U0001B276;Nushu Character-1b276 +\U0001B277;Nushu Character-1b277 +\U0001B278;Nushu Character-1b278 +\U0001B279;Nushu Character-1b279 +\U0001B27A;Nushu Character-1b27A +\U0001B27B;Nushu Character-1b27B +\U0001B27C;Nushu Character-1b27C +\U0001B27D;Nushu Character-1b27D +\U0001B27E;Nushu Character-1b27E +\U0001B27F;Nushu Character-1b27F +\U0001B280;Nushu Character-1b280 +\U0001B281;Nushu Character-1b281 +\U0001B282;Nushu Character-1b282 +\U0001B283;Nushu Character-1b283 +\U0001B284;Nushu Character-1b284 +\U0001B285;Nushu Character-1b285 +\U0001B286;Nushu Character-1b286 +\U0001B287;Nushu Character-1b287 +\U0001B288;Nushu Character-1b288 +\U0001B289;Nushu Character-1b289 +\U0001B28A;Nushu Character-1b28A +\U0001B28B;Nushu Character-1b28B +\U0001B28C;Nushu Character-1b28C +\U0001B28D;Nushu Character-1b28D +\U0001B28E;Nushu Character-1b28E +\U0001B28F;Nushu Character-1b28F +\U0001B290;Nushu Character-1b290 +\U0001B291;Nushu Character-1b291 +\U0001B292;Nushu Character-1b292 +\U0001B293;Nushu Character-1b293 +\U0001B294;Nushu Character-1b294 +\U0001B295;Nushu Character-1b295 +\U0001B296;Nushu Character-1b296 +\U0001B297;Nushu Character-1b297 +\U0001B298;Nushu Character-1b298 +\U0001B299;Nushu Character-1b299 +\U0001B29A;Nushu Character-1b29A +\U0001B29B;Nushu Character-1b29B +\U0001B29C;Nushu Character-1b29C +\U0001B29D;Nushu Character-1b29D +\U0001B29E;Nushu Character-1b29E +\U0001B29F;Nushu Character-1b29F +\U0001B2A0;Nushu Character-1b2A0 +\U0001B2A1;Nushu Character-1b2A1 +\U0001B2A2;Nushu Character-1b2A2 +\U0001B2A3;Nushu Character-1b2A3 +\U0001B2A4;Nushu Character-1b2A4 +\U0001B2A5;Nushu Character-1b2A5 +\U0001B2A6;Nushu Character-1b2A6 +\U0001B2A7;Nushu Character-1b2A7 +\U0001B2A8;Nushu Character-1b2A8 +\U0001B2A9;Nushu Character-1b2A9 +\U0001B2AA;Nushu Character-1b2AA +\U0001B2AB;Nushu Character-1b2AB +\U0001B2AC;Nushu Character-1b2AC +\U0001B2AD;Nushu Character-1b2AD +\U0001B2AE;Nushu Character-1b2AE +\U0001B2AF;Nushu Character-1b2AF +\U0001B2B0;Nushu Character-1b2B0 +\U0001B2B1;Nushu Character-1b2B1 +\U0001B2B2;Nushu Character-1b2B2 +\U0001B2B3;Nushu Character-1b2B3 +\U0001B2B4;Nushu Character-1b2B4 +\U0001B2B5;Nushu Character-1b2B5 +\U0001B2B6;Nushu Character-1b2B6 +\U0001B2B7;Nushu Character-1b2B7 +\U0001B2B8;Nushu Character-1b2B8 +\U0001B2B9;Nushu Character-1b2B9 +\U0001B2BA;Nushu Character-1b2BA +\U0001B2BB;Nushu Character-1b2BB +\U0001B2BC;Nushu Character-1b2BC +\U0001B2BD;Nushu Character-1b2BD +\U0001B2BE;Nushu Character-1b2BE +\U0001B2BF;Nushu Character-1b2BF +\U0001B2C0;Nushu Character-1b2C0 +\U0001B2C1;Nushu Character-1b2C1 +\U0001B2C2;Nushu Character-1b2C2 +\U0001B2C3;Nushu Character-1b2C3 +\U0001B2C4;Nushu Character-1b2C4 +\U0001B2C5;Nushu Character-1b2C5 +\U0001B2C6;Nushu Character-1b2C6 +\U0001B2C7;Nushu Character-1b2C7 +\U0001B2C8;Nushu Character-1b2C8 +\U0001B2C9;Nushu Character-1b2C9 +\U0001B2CA;Nushu Character-1b2CA +\U0001B2CB;Nushu Character-1b2CB +\U0001B2CC;Nushu Character-1b2CC +\U0001B2CD;Nushu Character-1b2CD +\U0001B2CE;Nushu Character-1b2CE +\U0001B2CF;Nushu Character-1b2CF +\U0001B2D0;Nushu Character-1b2D0 +\U0001B2D1;Nushu Character-1b2D1 +\U0001B2D2;Nushu Character-1b2D2 +\U0001B2D3;Nushu Character-1b2D3 +\U0001B2D4;Nushu Character-1b2D4 +\U0001B2D5;Nushu Character-1b2D5 +\U0001B2D6;Nushu Character-1b2D6 +\U0001B2D7;Nushu Character-1b2D7 +\U0001B2D8;Nushu Character-1b2D8 +\U0001B2D9;Nushu Character-1b2D9 +\U0001B2DA;Nushu Character-1b2DA +\U0001B2DB;Nushu Character-1b2DB +\U0001B2DC;Nushu Character-1b2DC +\U0001B2DD;Nushu Character-1b2DD +\U0001B2DE;Nushu Character-1b2DE +\U0001B2DF;Nushu Character-1b2DF +\U0001B2E0;Nushu Character-1b2E0 +\U0001B2E1;Nushu Character-1b2E1 +\U0001B2E2;Nushu Character-1b2E2 +\U0001B2E3;Nushu Character-1b2E3 +\U0001B2E4;Nushu Character-1b2E4 +\U0001B2E5;Nushu Character-1b2E5 +\U0001B2E6;Nushu Character-1b2E6 +\U0001B2E7;Nushu Character-1b2E7 +\U0001B2E8;Nushu Character-1b2E8 +\U0001B2E9;Nushu Character-1b2E9 +\U0001B2EA;Nushu Character-1b2EA +\U0001B2EB;Nushu Character-1b2EB +\U0001B2EC;Nushu Character-1b2EC +\U0001B2ED;Nushu Character-1b2ED +\U0001B2EE;Nushu Character-1b2EE +\U0001B2EF;Nushu Character-1b2EF +\U0001B2F0;Nushu Character-1b2F0 +\U0001B2F1;Nushu Character-1b2F1 +\U0001B2F2;Nushu Character-1b2F2 +\U0001B2F3;Nushu Character-1b2F3 +\U0001B2F4;Nushu Character-1b2F4 +\U0001B2F5;Nushu Character-1b2F5 +\U0001B2F6;Nushu Character-1b2F6 +\U0001B2F7;Nushu Character-1b2F7 +\U0001B2F8;Nushu Character-1b2F8 +\U0001B2F9;Nushu Character-1b2F9 +\U0001B2FA;Nushu Character-1b2FA +\U0001B2FB;Nushu Character-1b2FB +\U0001BC00;Duployan Letter H +\U0001BC01;Duployan Letter X +\U0001BC02;Duployan Letter P +\U0001BC03;Duployan Letter T +\U0001BC04;Duployan Letter F +\U0001BC05;Duployan Letter K +\U0001BC06;Duployan Letter L +\U0001BC07;Duployan Letter B +\U0001BC08;Duployan Letter D +\U0001BC09;Duployan Letter V +\U0001BC0A;Duployan Letter G +\U0001BC0B;Duployan Letter R +\U0001BC0C;Duployan Letter P N +\U0001BC0D;Duployan Letter D S +\U0001BC0E;Duployan Letter F N +\U0001BC0F;Duployan Letter K M +\U0001BC10;Duployan Letter R S +\U0001BC11;Duployan Letter Th +\U0001BC12;Duployan Letter Sloan Dh +\U0001BC13;Duployan Letter Dh +\U0001BC14;Duployan Letter Kk +\U0001BC15;Duployan Letter Sloan J +\U0001BC16;Duployan Letter Hl +\U0001BC17;Duployan Letter Lh +\U0001BC18;Duployan Letter Rh +\U0001BC19;Duployan Letter M +\U0001BC1A;Duployan Letter N +\U0001BC1B;Duployan Letter J +\U0001BC1C;Duployan Letter S +\U0001BC1D;Duployan Letter M N +\U0001BC1E;Duployan Letter N M +\U0001BC1F;Duployan Letter J M +\U0001BC20;Duployan Letter S J +\U0001BC21;Duployan Letter M With Dot +\U0001BC22;Duployan Letter N With Dot +\U0001BC23;Duployan Letter J With Dot +\U0001BC24;Duployan Letter J With Dots Inside And Above +\U0001BC25;Duployan Letter S With Dot +\U0001BC26;Duployan Letter S With Dot Below +\U0001BC27;Duployan Letter M S +\U0001BC28;Duployan Letter N S +\U0001BC29;Duployan Letter J S +\U0001BC2A;Duployan Letter S S +\U0001BC2B;Duployan Letter M N S +\U0001BC2C;Duployan Letter N M S +\U0001BC2D;Duployan Letter J M S +\U0001BC2E;Duployan Letter S J S +\U0001BC2F;Duployan Letter J S With Dot +\U0001BC30;Duployan Letter J N +\U0001BC31;Duployan Letter J N S +\U0001BC32;Duployan Letter S T +\U0001BC33;Duployan Letter S T R +\U0001BC34;Duployan Letter S P +\U0001BC35;Duployan Letter S P R +\U0001BC36;Duployan Letter T S +\U0001BC37;Duployan Letter T R S +\U0001BC38;Duployan Letter W +\U0001BC39;Duployan Letter Wh +\U0001BC3A;Duployan Letter W R +\U0001BC3B;Duployan Letter S N +\U0001BC3C;Duployan Letter S M +\U0001BC3D;Duployan Letter K R S +\U0001BC3E;Duployan Letter G R S +\U0001BC3F;Duployan Letter S K +\U0001BC40;Duployan Letter S K R +\U0001BC41;Duployan Letter A +\U0001BC42;Duployan Letter Sloan Ow +\U0001BC43;Duployan Letter Oa +\U0001BC44;Duployan Letter O +\U0001BC45;Duployan Letter Aou +\U0001BC46;Duployan Letter I +\U0001BC47;Duployan Letter E +\U0001BC48;Duployan Letter Ie +\U0001BC49;Duployan Letter Short I +\U0001BC4A;Duployan Letter Ui +\U0001BC4B;Duployan Letter Ee +\U0001BC4C;Duployan Letter Sloan Eh +\U0001BC4D;Duployan Letter Romanian I +\U0001BC4E;Duployan Letter Sloan Ee +\U0001BC4F;Duployan Letter Long I +\U0001BC50;Duployan Letter Ye +\U0001BC51;Duployan Letter U +\U0001BC52;Duployan Letter Eu +\U0001BC53;Duployan Letter Xw +\U0001BC54;Duployan Letter U N +\U0001BC55;Duployan Letter Long U +\U0001BC56;Duployan Letter Romanian U +\U0001BC57;Duployan Letter Uh +\U0001BC58;Duployan Letter Sloan U +\U0001BC59;Duployan Letter Ooh +\U0001BC5A;Duployan Letter Ow +\U0001BC5B;Duployan Letter Ou +\U0001BC5C;Duployan Letter Wa +\U0001BC5D;Duployan Letter Wo +\U0001BC5E;Duployan Letter Wi +\U0001BC5F;Duployan Letter Wei +\U0001BC60;Duployan Letter Wow +\U0001BC61;Duployan Letter Nasal U +\U0001BC62;Duployan Letter Nasal O +\U0001BC63;Duployan Letter Nasal I +\U0001BC64;Duployan Letter Nasal A +\U0001BC65;Duployan Letter Pernin An +\U0001BC66;Duployan Letter Pernin Am +\U0001BC67;Duployan Letter Sloan En +\U0001BC68;Duployan Letter Sloan An +\U0001BC69;Duployan Letter Sloan On +\U0001BC6A;Duployan Letter Vocalic M +\U0001BC70;Duployan Affix Left Horizontal Secant +\U0001BC71;Duployan Affix Mid Horizontal Secant +\U0001BC72;Duployan Affix Right Horizontal Secant +\U0001BC73;Duployan Affix Low Vertical Secant +\U0001BC74;Duployan Affix Mid Vertical Secant +\U0001BC75;Duployan Affix High Vertical Secant +\U0001BC76;Duployan Affix Attached Secant +\U0001BC77;Duployan Affix Attached Left-To-Right Secant +\U0001BC78;Duployan Affix Attached Tangent +\U0001BC79;Duployan Affix Attached Tail +\U0001BC7A;Duployan Affix Attached E Hook +\U0001BC7B;Duployan Affix Attached I Hook +\U0001BC7C;Duployan Affix Attached Tangent Hook +\U0001BC80;Duployan Affix High Acute +\U0001BC81;Duployan Affix High Tight Acute +\U0001BC82;Duployan Affix High Grave +\U0001BC83;Duployan Affix High Long Grave +\U0001BC84;Duployan Affix High Dot +\U0001BC85;Duployan Affix High Circle +\U0001BC86;Duployan Affix High Line +\U0001BC87;Duployan Affix High Wave +\U0001BC88;Duployan Affix High Vertical +\U0001BC90;Duployan Affix Low Acute +\U0001BC91;Duployan Affix Low Tight Acute +\U0001BC92;Duployan Affix Low Grave +\U0001BC93;Duployan Affix Low Long Grave +\U0001BC94;Duployan Affix Low Dot +\U0001BC95;Duployan Affix Low Circle +\U0001BC96;Duployan Affix Low Line +\U0001BC97;Duployan Affix Low Wave +\U0001BC98;Duployan Affix Low Vertical +\U0001BC99;Duployan Affix Low Arrow +\U0001BC9C;Duployan Sign O With Cross +\U0001BC9D;Duployan Thick Letter Selector +\U0001BC9E;Duployan Double Mark +\U0001BC9F;Duployan Punctuation Chinook Full Stop +\U0001BCA0;Shorthand Format Letter Overlap +\U0001BCA1;Shorthand Format Continuing Overlap +\U0001BCA2;Shorthand Format Down Step +\U0001BCA3;Shorthand Format Up Step +\U0001CF00;Znamenny Combining Mark Gorazdo Nizko S Kryzhem On Left +\U0001CF01;Znamenny Combining Mark Nizko S Kryzhem On Left +\U0001CF02;Znamenny Combining Mark Tsata On Left +\U0001CF03;Znamenny Combining Mark Gorazdo Nizko On Left +\U0001CF04;Znamenny Combining Mark Nizko On Left +\U0001CF05;Znamenny Combining Mark Sredne On Left +\U0001CF06;Znamenny Combining Mark Malo Povyshe On Left +\U0001CF07;Znamenny Combining Mark Povyshe On Left +\U0001CF08;Znamenny Combining Mark Vysoko On Left +\U0001CF09;Znamenny Combining Mark Malo Povyshe S Khokhlom On Left +\U0001CF0A;Znamenny Combining Mark Povyshe S Khokhlom On Left +\U0001CF0B;Znamenny Combining Mark Vysoko S Khokhlom On Left +\U0001CF0C;Znamenny Combining Mark Gorazdo Nizko S Kryzhem On Right +\U0001CF0D;Znamenny Combining Mark Nizko S Kryzhem On Right +\U0001CF0E;Znamenny Combining Mark Tsata On Right +\U0001CF0F;Znamenny Combining Mark Gorazdo Nizko On Right +\U0001CF10;Znamenny Combining Mark Nizko On Right +\U0001CF11;Znamenny Combining Mark Sredne On Right +\U0001CF12;Znamenny Combining Mark Malo Povyshe On Right +\U0001CF13;Znamenny Combining Mark Povyshe On Right +\U0001CF14;Znamenny Combining Mark Vysoko On Right +\U0001CF15;Znamenny Combining Mark Malo Povyshe S Khokhlom On Right +\U0001CF16;Znamenny Combining Mark Povyshe S Khokhlom On Right +\U0001CF17;Znamenny Combining Mark Vysoko S Khokhlom On Right +\U0001CF18;Znamenny Combining Mark Tsata S Kryzhem +\U0001CF19;Znamenny Combining Mark Malo Povyshe S Kryzhem +\U0001CF1A;Znamenny Combining Mark Stranno Malo Povyshe +\U0001CF1B;Znamenny Combining Mark Povyshe S Kryzhem +\U0001CF1C;Znamenny Combining Mark Povyshe Stranno +\U0001CF1D;Znamenny Combining Mark Vysoko S Kryzhem +\U0001CF1E;Znamenny Combining Mark Malo Povyshe Stranno +\U0001CF1F;Znamenny Combining Mark Gorazdo Vysoko +\U0001CF20;Znamenny Combining Mark Zelo +\U0001CF21;Znamenny Combining Mark On +\U0001CF22;Znamenny Combining Mark Ravno +\U0001CF23;Znamenny Combining Mark Tikhaya +\U0001CF24;Znamenny Combining Mark Borzaya +\U0001CF25;Znamenny Combining Mark Udarka +\U0001CF26;Znamenny Combining Mark Podvertka +\U0001CF27;Znamenny Combining Mark Lomka +\U0001CF28;Znamenny Combining Mark Kupnaya +\U0001CF29;Znamenny Combining Mark Kachka +\U0001CF2A;Znamenny Combining Mark Zevok +\U0001CF2B;Znamenny Combining Mark Skoba +\U0001CF2C;Znamenny Combining Mark Razseka +\U0001CF2D;Znamenny Combining Mark Kryzh On Left +\U0001CF30;Znamenny Combining Tonal Range Mark Mrachno +\U0001CF31;Znamenny Combining Tonal Range Mark Svetlo +\U0001CF32;Znamenny Combining Tonal Range Mark Tresvetlo +\U0001CF33;Znamenny Combining Mark Zaderzhka +\U0001CF34;Znamenny Combining Mark Demestvenny Zaderzhka +\U0001CF35;Znamenny Combining Mark Otsechka +\U0001CF36;Znamenny Combining Mark Podchashie +\U0001CF37;Znamenny Combining Mark Podchashie With Vertical Stroke +\U0001CF38;Znamenny Combining Mark Chashka +\U0001CF39;Znamenny Combining Mark Chashka Polnaya +\U0001CF3A;Znamenny Combining Mark Oblachko +\U0001CF3B;Znamenny Combining Mark Sorochya Nozhka +\U0001CF3C;Znamenny Combining Mark Tochka +\U0001CF3D;Znamenny Combining Mark Dvoetochie +\U0001CF3E;Znamenny Combining Attaching Vertical Omet +\U0001CF3F;Znamenny Combining Mark Curved Omet +\U0001CF40;Znamenny Combining Mark Kryzh +\U0001CF41;Znamenny Combining Lower Tonal Range Indicator +\U0001CF42;Znamenny Priznak Modifier Level-2 +\U0001CF43;Znamenny Priznak Modifier Level-3 +\U0001CF44;Znamenny Priznak Modifier Direction Flip +\U0001CF45;Znamenny Priznak Modifier Kryzh +\U0001CF46;Znamenny Priznak Modifier Rog +\U0001CF50;Znamenny Neume Kryuk +\U0001CF51;Znamenny Neume Kryuk Tikhy +\U0001CF52;Znamenny Neume Paraklit +\U0001CF53;Znamenny Neume Dva V Chelnu +\U0001CF54;Znamenny Neume Klyuch +\U0001CF55;Znamenny Neume Zanozhek +\U0001CF56;Znamenny Neume Stopitsa +\U0001CF57;Znamenny Neume Stopitsa S Ochkom +\U0001CF58;Znamenny Neume Perevodka +\U0001CF59;Znamenny Neume Perevodka Nepostoyannaya +\U0001CF5A;Znamenny Neume Stopitsa With Sorochya Nozhka +\U0001CF5B;Znamenny Neume Chelyustka +\U0001CF5C;Znamenny Neume Palka +\U0001CF5D;Znamenny Neume Zapyataya +\U0001CF5E;Znamenny Neume Golubchik Borzy +\U0001CF5F;Znamenny Neume Golubchik Tikhy +\U0001CF60;Znamenny Neume Golubchik Mrachny +\U0001CF61;Znamenny Neume Golubchik Svetly +\U0001CF62;Znamenny Neume Golubchik Tresvetly +\U0001CF63;Znamenny Neume Vrakhiya Prostaya +\U0001CF64;Znamenny Neume Vrakhiya Mrachnaya +\U0001CF65;Znamenny Neume Vrakhiya Svetlaya +\U0001CF66;Znamenny Neume Vrakhiya Tresvetlaya +\U0001CF67;Znamenny Neume Vrakhiya Klyuchevaya Prostaya +\U0001CF68;Znamenny Neume Vrakhiya Klyuchevaya Mrachnaya +\U0001CF69;Znamenny Neume Vrakhiya Klyuchevaya Svetlaya +\U0001CF6A;Znamenny Neume Vrakhiya Klyuchevaya Tresvetlaya +\U0001CF6B;Znamenny Neume Double Zapyataya +\U0001CF6C;Znamenny Neume Reversed Chelyustka +\U0001CF6D;Znamenny Neume Derbitsa +\U0001CF6E;Znamenny Neume Khamilo +\U0001CF6F;Znamenny Neume Chashka +\U0001CF70;Znamenny Neume Podchashie +\U0001CF71;Znamenny Neume Skameytsa Mrachnaya +\U0001CF72;Znamenny Neume Skameytsa Svetlaya +\U0001CF73;Znamenny Neume Skameytsa Tresvetlaya +\U0001CF74;Znamenny Neume Skameytsa Tikhaya +\U0001CF75;Znamenny Neume Demestvenny Klyuch +\U0001CF76;Znamenny Neume Skameytsa Klyuchevaya Svetlaya +\U0001CF77;Znamenny Neume Skameytsa Klyuchenepostoyannaya +\U0001CF78;Znamenny Neume Skameytsa Klyuchevaya Tikhaya +\U0001CF79;Znamenny Neume Skameytsa Dvoechelnaya Prostaya +\U0001CF7A;Znamenny Neume Skameytsa Dvoechelnaya Svetlaya +\U0001CF7B;Znamenny Neume Skameytsa Dvoechelnaya Nepostoyannaya +\U0001CF7C;Znamenny Neume Skameytsa Dvoechelnaya Klyuchevaya +\U0001CF7D;Znamenny Neume Slozhitie +\U0001CF7E;Znamenny Neume Slozhitie S Zapyatoy +\U0001CF7F;Znamenny Neume Slozhitie Zakrytoe +\U0001CF80;Znamenny Neume Slozhitie S Kryzhem +\U0001CF81;Znamenny Neume Kryzh +\U0001CF82;Znamenny Neume Rog +\U0001CF83;Znamenny Neume Fita +\U0001CF84;Znamenny Neume Kobyla +\U0001CF85;Znamenny Neume Zmeytsa +\U0001CF86;Znamenny Neume Statya +\U0001CF87;Znamenny Neume Statya S Zapyatoy +\U0001CF88;Znamenny Neume Statya S Kryzhem +\U0001CF89;Znamenny Neume Statya S Zapyatoy I Kryzhem +\U0001CF8A;Znamenny Neume Statya S Kryzhem I Zapyatoy +\U0001CF8B;Znamenny Neume Statya Zakrytaya +\U0001CF8C;Znamenny Neume Statya Zakrytaya S Zapyatoy +\U0001CF8D;Znamenny Neume Statya S Rogom +\U0001CF8E;Znamenny Neume Statya S Dvumya Zapyatymi +\U0001CF8F;Znamenny Neume Statya S Zapyatoy I Podchashiem +\U0001CF90;Znamenny Neume Polkulizmy +\U0001CF91;Znamenny Neume Statya Nepostoyannaya +\U0001CF92;Znamenny Neume Strela Prostaya +\U0001CF93;Znamenny Neume Strela Mrachnotikhaya +\U0001CF94;Znamenny Neume Strela Kryzhevaya +\U0001CF95;Znamenny Neume Strela Polupovodnaya +\U0001CF96;Znamenny Neume Strela Povodnaya +\U0001CF97;Znamenny Neume Strela Nepostoyannaya +\U0001CF98;Znamenny Neume Strela Klyuchepovodnaya +\U0001CF99;Znamenny Neume Strela Klyuchenepostoyannaya +\U0001CF9A;Znamenny Neume Strela Tikhaya Putnaya +\U0001CF9B;Znamenny Neume Strela Dvoechelnaya +\U0001CF9C;Znamenny Neume Strela Dvoechelnokryzhevaya +\U0001CF9D;Znamenny Neume Strela Dvoechelnopovodnaya +\U0001CF9E;Znamenny Neume Strela Dvoechelnaya Klyuchevaya +\U0001CF9F;Znamenny Neume Strela Dvoechelnopovodnaya Klyuchevaya +\U0001CFA0;Znamenny Neume Strela Gromnaya With Single Zapyataya +\U0001CFA1;Znamenny Neume Strela Gromopovodnaya With Single Zapyataya +\U0001CFA2;Znamenny Neume Strela Gromnaya +\U0001CFA3;Znamenny Neume Strela Gromopovodnaya +\U0001CFA4;Znamenny Neume Strela Gromopovodnaya With Double Zapyataya +\U0001CFA5;Znamenny Neume Strela Gromokryzhevaya +\U0001CFA6;Znamenny Neume Strela Gromokryzhevaya Povodnaya +\U0001CFA7;Znamenny Neume Mechik +\U0001CFA8;Znamenny Neume Mechik Povodny +\U0001CFA9;Znamenny Neume Mechik Klyuchevoy +\U0001CFAA;Znamenny Neume Mechik Klyuchepovodny +\U0001CFAB;Znamenny Neume Mechik Klyuchenepostoyanny +\U0001CFAC;Znamenny Neume Strela Tryasoglasnaya +\U0001CFAD;Znamenny Neume Strela Tryasopovodnaya +\U0001CFAE;Znamenny Neume Strela Tryasostrelnaya +\U0001CFAF;Znamenny Neume Osoka +\U0001CFB0;Znamenny Neume Osoka Svetlaya +\U0001CFB1;Znamenny Neume Osoka Tresvetlaya +\U0001CFB2;Znamenny Neume Osoka Kryukovaya Svetlaya +\U0001CFB3;Znamenny Neume Osoka Klyuchevaya Svetlaya +\U0001CFB4;Znamenny Neume Osoka Klyuchevaya Nepostoyannaya +\U0001CFB5;Znamenny Neume Strela Kryukovaya +\U0001CFB6;Znamenny Neume Strela Kryukovaya Povodnaya +\U0001CFB7;Znamenny Neume Strela Kryukovaya Gromnaya With Single Zapyataya +\U0001CFB8;Znamenny Neume Strela Kryukovaya Gromopovodnaya With Single Zapyataya +\U0001CFB9;Znamenny Neume Strela Kryukovaya Gromnaya +\U0001CFBA;Znamenny Neume Strela Kryukovaya Gromopovodnaya +\U0001CFBB;Znamenny Neume Strela Kryukovaya Gromopovodnaya With Double Zapyataya +\U0001CFBC;Znamenny Neume Strela Kryukovaya Gromokryzhevaya +\U0001CFBD;Znamenny Neume Strela Kryukovaya Gromokryzhevaya Povodnaya +\U0001CFBE;Znamenny Neume Strela Kryukovaya Tryaska +\U0001CFBF;Znamenny Neume Kufisma +\U0001CFC0;Znamenny Neume Oblako +\U0001CFC1;Znamenny Neume Duda +\U0001CFC2;Znamenny Neume Nemka +\U0001CFC3;Znamenny Neume Pauk +\U0001D000;Byzantine Musical Symbol Psili +\U0001D001;Byzantine Musical Symbol Daseia +\U0001D002;Byzantine Musical Symbol Perispomeni +\U0001D003;Byzantine Musical Symbol Oxeia Ekfonitikon +\U0001D004;Byzantine Musical Symbol Oxeia Dipli +\U0001D005;Byzantine Musical Symbol Vareia Ekfonitikon +\U0001D006;Byzantine Musical Symbol Vareia Dipli +\U0001D007;Byzantine Musical Symbol Kathisti +\U0001D008;Byzantine Musical Symbol Syrmatiki +\U0001D009;Byzantine Musical Symbol Paraklitiki +\U0001D00A;Byzantine Musical Symbol Ypokrisis +\U0001D00B;Byzantine Musical Symbol Ypokrisis Dipli +\U0001D00C;Byzantine Musical Symbol Kremasti +\U0001D00D;Byzantine Musical Symbol Apeso Ekfonitikon +\U0001D00E;Byzantine Musical Symbol Exo Ekfonitikon +\U0001D00F;Byzantine Musical Symbol Teleia +\U0001D010;Byzantine Musical Symbol Kentimata +\U0001D011;Byzantine Musical Symbol Apostrofos +\U0001D012;Byzantine Musical Symbol Apostrofos Dipli +\U0001D013;Byzantine Musical Symbol Synevma +\U0001D014;Byzantine Musical Symbol Thita +\U0001D015;Byzantine Musical Symbol Oligon Archaion +\U0001D016;Byzantine Musical Symbol Gorgon Archaion +\U0001D017;Byzantine Musical Symbol Psilon +\U0001D018;Byzantine Musical Symbol Chamilon +\U0001D019;Byzantine Musical Symbol Vathy +\U0001D01A;Byzantine Musical Symbol Ison Archaion +\U0001D01B;Byzantine Musical Symbol Kentima Archaion +\U0001D01C;Byzantine Musical Symbol Kentimata Archaion +\U0001D01D;Byzantine Musical Symbol Saximata +\U0001D01E;Byzantine Musical Symbol Parichon +\U0001D01F;Byzantine Musical Symbol Stavros Apodexia +\U0001D020;Byzantine Musical Symbol Oxeiai Archaion +\U0001D021;Byzantine Musical Symbol Vareiai Archaion +\U0001D022;Byzantine Musical Symbol Apoderma Archaion +\U0001D023;Byzantine Musical Symbol Apothema +\U0001D024;Byzantine Musical Symbol Klasma +\U0001D025;Byzantine Musical Symbol Revma +\U0001D026;Byzantine Musical Symbol Piasma Archaion +\U0001D027;Byzantine Musical Symbol Tinagma +\U0001D028;Byzantine Musical Symbol Anatrichisma +\U0001D029;Byzantine Musical Symbol Seisma +\U0001D02A;Byzantine Musical Symbol Synagma Archaion +\U0001D02B;Byzantine Musical Symbol Synagma Meta Stavrou +\U0001D02C;Byzantine Musical Symbol Oyranisma Archaion +\U0001D02D;Byzantine Musical Symbol Thema +\U0001D02E;Byzantine Musical Symbol Lemoi +\U0001D02F;Byzantine Musical Symbol Dyo +\U0001D030;Byzantine Musical Symbol Tria +\U0001D031;Byzantine Musical Symbol Tessera +\U0001D032;Byzantine Musical Symbol Kratimata +\U0001D033;Byzantine Musical Symbol Apeso Exo Neo +\U0001D034;Byzantine Musical Symbol Fthora Archaion +\U0001D035;Byzantine Musical Symbol Imifthora +\U0001D036;Byzantine Musical Symbol Tromikon Archaion +\U0001D037;Byzantine Musical Symbol Katava Tromikon +\U0001D038;Byzantine Musical Symbol Pelaston +\U0001D039;Byzantine Musical Symbol Psifiston +\U0001D03A;Byzantine Musical Symbol Kontevma +\U0001D03B;Byzantine Musical Symbol Chorevma Archaion +\U0001D03C;Byzantine Musical Symbol Rapisma +\U0001D03D;Byzantine Musical Symbol Parakalesma Archaion +\U0001D03E;Byzantine Musical Symbol Paraklitiki Archaion +\U0001D03F;Byzantine Musical Symbol Ichadin +\U0001D040;Byzantine Musical Symbol Nana +\U0001D041;Byzantine Musical Symbol Petasma +\U0001D042;Byzantine Musical Symbol Kontevma Allo +\U0001D043;Byzantine Musical Symbol Tromikon Allo +\U0001D044;Byzantine Musical Symbol Straggismata +\U0001D045;Byzantine Musical Symbol Gronthismata +\U0001D046;Byzantine Musical Symbol Ison Neo +\U0001D047;Byzantine Musical Symbol Oligon Neo +\U0001D048;Byzantine Musical Symbol Oxeia Neo +\U0001D049;Byzantine Musical Symbol Petasti +\U0001D04A;Byzantine Musical Symbol Koufisma +\U0001D04B;Byzantine Musical Symbol Petastokoufisma +\U0001D04C;Byzantine Musical Symbol Kratimokoufisma +\U0001D04D;Byzantine Musical Symbol Pelaston Neo +\U0001D04E;Byzantine Musical Symbol Kentimata Neo Ano +\U0001D04F;Byzantine Musical Symbol Kentima Neo Ano +\U0001D050;Byzantine Musical Symbol Ypsili +\U0001D051;Byzantine Musical Symbol Apostrofos Neo +\U0001D052;Byzantine Musical Symbol Apostrofoi Syndesmos Neo +\U0001D053;Byzantine Musical Symbol Yporroi +\U0001D054;Byzantine Musical Symbol Kratimoyporroon +\U0001D055;Byzantine Musical Symbol Elafron +\U0001D056;Byzantine Musical Symbol Chamili +\U0001D057;Byzantine Musical Symbol Mikron Ison +\U0001D058;Byzantine Musical Symbol Vareia Neo +\U0001D059;Byzantine Musical Symbol Piasma Neo +\U0001D05A;Byzantine Musical Symbol Psifiston Neo +\U0001D05B;Byzantine Musical Symbol Omalon +\U0001D05C;Byzantine Musical Symbol Antikenoma +\U0001D05D;Byzantine Musical Symbol Lygisma +\U0001D05E;Byzantine Musical Symbol Paraklitiki Neo +\U0001D05F;Byzantine Musical Symbol Parakalesma Neo +\U0001D060;Byzantine Musical Symbol Eteron Parakalesma +\U0001D061;Byzantine Musical Symbol Kylisma +\U0001D062;Byzantine Musical Symbol Antikenokylisma +\U0001D063;Byzantine Musical Symbol Tromikon Neo +\U0001D064;Byzantine Musical Symbol Ekstrepton +\U0001D065;Byzantine Musical Symbol Synagma Neo +\U0001D066;Byzantine Musical Symbol Syrma +\U0001D067;Byzantine Musical Symbol Chorevma Neo +\U0001D068;Byzantine Musical Symbol Epegerma +\U0001D069;Byzantine Musical Symbol Seisma Neo +\U0001D06A;Byzantine Musical Symbol Xiron Klasma +\U0001D06B;Byzantine Musical Symbol Tromikopsifiston +\U0001D06C;Byzantine Musical Symbol Psifistolygisma +\U0001D06D;Byzantine Musical Symbol Tromikolygisma +\U0001D06E;Byzantine Musical Symbol Tromikoparakalesma +\U0001D06F;Byzantine Musical Symbol Psifistoparakalesma +\U0001D070;Byzantine Musical Symbol Tromikosynagma +\U0001D071;Byzantine Musical Symbol Psifistosynagma +\U0001D072;Byzantine Musical Symbol Gorgosyntheton +\U0001D073;Byzantine Musical Symbol Argosyntheton +\U0001D074;Byzantine Musical Symbol Eteron Argosyntheton +\U0001D075;Byzantine Musical Symbol Oyranisma Neo +\U0001D076;Byzantine Musical Symbol Thematismos Eso +\U0001D077;Byzantine Musical Symbol Thematismos Exo +\U0001D078;Byzantine Musical Symbol Thema Aploun +\U0001D079;Byzantine Musical Symbol Thes Kai Apothes +\U0001D07A;Byzantine Musical Symbol Katavasma +\U0001D07B;Byzantine Musical Symbol Endofonon +\U0001D07C;Byzantine Musical Symbol Yfen Kato +\U0001D07D;Byzantine Musical Symbol Yfen Ano +\U0001D07E;Byzantine Musical Symbol Stavros +\U0001D07F;Byzantine Musical Symbol Klasma Ano +\U0001D080;Byzantine Musical Symbol Dipli Archaion +\U0001D081;Byzantine Musical Symbol Kratima Archaion +\U0001D082;Byzantine Musical Symbol Kratima Allo +\U0001D083;Byzantine Musical Symbol Kratima Neo +\U0001D084;Byzantine Musical Symbol Apoderma Neo +\U0001D085;Byzantine Musical Symbol Apli +\U0001D086;Byzantine Musical Symbol Dipli +\U0001D087;Byzantine Musical Symbol Tripli +\U0001D088;Byzantine Musical Symbol Tetrapli +\U0001D089;Byzantine Musical Symbol Koronis +\U0001D08A;Byzantine Musical Symbol Leimma Enos Chronou +\U0001D08B;Byzantine Musical Symbol Leimma Dyo Chronon +\U0001D08C;Byzantine Musical Symbol Leimma Trion Chronon +\U0001D08D;Byzantine Musical Symbol Leimma Tessaron Chronon +\U0001D08E;Byzantine Musical Symbol Leimma Imiseos Chronou +\U0001D08F;Byzantine Musical Symbol Gorgon Neo Ano +\U0001D090;Byzantine Musical Symbol Gorgon Parestigmenon Aristera +\U0001D091;Byzantine Musical Symbol Gorgon Parestigmenon Dexia +\U0001D092;Byzantine Musical Symbol Digorgon +\U0001D093;Byzantine Musical Symbol Digorgon Parestigmenon Aristera Kato +\U0001D094;Byzantine Musical Symbol Digorgon Parestigmenon Aristera Ano +\U0001D095;Byzantine Musical Symbol Digorgon Parestigmenon Dexia +\U0001D096;Byzantine Musical Symbol Trigorgon +\U0001D097;Byzantine Musical Symbol Argon +\U0001D098;Byzantine Musical Symbol Imidiargon +\U0001D099;Byzantine Musical Symbol Diargon +\U0001D09A;Byzantine Musical Symbol Agogi Poli Argi +\U0001D09B;Byzantine Musical Symbol Agogi Argoteri +\U0001D09C;Byzantine Musical Symbol Agogi Argi +\U0001D09D;Byzantine Musical Symbol Agogi Metria +\U0001D09E;Byzantine Musical Symbol Agogi Mesi +\U0001D09F;Byzantine Musical Symbol Agogi Gorgi +\U0001D0A0;Byzantine Musical Symbol Agogi Gorgoteri +\U0001D0A1;Byzantine Musical Symbol Agogi Poli Gorgi +\U0001D0A2;Byzantine Musical Symbol Martyria Protos Ichos +\U0001D0A3;Byzantine Musical Symbol Martyria Alli Protos Ichos +\U0001D0A4;Byzantine Musical Symbol Martyria Deyteros Ichos +\U0001D0A5;Byzantine Musical Symbol Martyria Alli Deyteros Ichos +\U0001D0A6;Byzantine Musical Symbol Martyria Tritos Ichos +\U0001D0A7;Byzantine Musical Symbol Martyria Trifonias +\U0001D0A8;Byzantine Musical Symbol Martyria Tetartos Ichos +\U0001D0A9;Byzantine Musical Symbol Martyria Tetartos Legetos Ichos +\U0001D0AA;Byzantine Musical Symbol Martyria Legetos Ichos +\U0001D0AB;Byzantine Musical Symbol Martyria Plagios Ichos +\U0001D0AC;Byzantine Musical Symbol Isakia Telous Ichimatos +\U0001D0AD;Byzantine Musical Symbol Apostrofoi Telous Ichimatos +\U0001D0AE;Byzantine Musical Symbol Fanerosis Tetrafonias +\U0001D0AF;Byzantine Musical Symbol Fanerosis Monofonias +\U0001D0B0;Byzantine Musical Symbol Fanerosis Difonias +\U0001D0B1;Byzantine Musical Symbol Martyria Varys Ichos +\U0001D0B2;Byzantine Musical Symbol Martyria Protovarys Ichos +\U0001D0B3;Byzantine Musical Symbol Martyria Plagios Tetartos Ichos +\U0001D0B4;Byzantine Musical Symbol Gorthmikon N Aploun +\U0001D0B5;Byzantine Musical Symbol Gorthmikon N Diploun +\U0001D0B6;Byzantine Musical Symbol Enarxis Kai Fthora Vou +\U0001D0B7;Byzantine Musical Symbol Imifonon +\U0001D0B8;Byzantine Musical Symbol Imifthoron +\U0001D0B9;Byzantine Musical Symbol Fthora Archaion Deyterou Ichou +\U0001D0BA;Byzantine Musical Symbol Fthora Diatoniki Pa +\U0001D0BB;Byzantine Musical Symbol Fthora Diatoniki Nana +\U0001D0BC;Byzantine Musical Symbol Fthora Naos Ichos +\U0001D0BD;Byzantine Musical Symbol Fthora Diatoniki Di +\U0001D0BE;Byzantine Musical Symbol Fthora Skliron Diatonon Di +\U0001D0BF;Byzantine Musical Symbol Fthora Diatoniki Ke +\U0001D0C0;Byzantine Musical Symbol Fthora Diatoniki Zo +\U0001D0C1;Byzantine Musical Symbol Fthora Diatoniki Ni Kato +\U0001D0C2;Byzantine Musical Symbol Fthora Diatoniki Ni Ano +\U0001D0C3;Byzantine Musical Symbol Fthora Malakon Chroma Difonias +\U0001D0C4;Byzantine Musical Symbol Fthora Malakon Chroma Monofonias +\U0001D0C5;Byzantine Musical Symbol Fhtora Skliron Chroma Vasis +\U0001D0C6;Byzantine Musical Symbol Fthora Skliron Chroma Synafi +\U0001D0C7;Byzantine Musical Symbol Fthora Nenano +\U0001D0C8;Byzantine Musical Symbol Chroa Zygos +\U0001D0C9;Byzantine Musical Symbol Chroa Kliton +\U0001D0CA;Byzantine Musical Symbol Chroa Spathi +\U0001D0CB;Byzantine Musical Symbol Fthora I Yfesis Tetartimorion +\U0001D0CC;Byzantine Musical Symbol Fthora Enarmonios Antifonia +\U0001D0CD;Byzantine Musical Symbol Yfesis Tritimorion +\U0001D0CE;Byzantine Musical Symbol Diesis Tritimorion +\U0001D0CF;Byzantine Musical Symbol Diesis Tetartimorion +\U0001D0D0;Byzantine Musical Symbol Diesis Apli Dyo Dodekata +\U0001D0D1;Byzantine Musical Symbol Diesis Monogrammos Tessera Dodekata +\U0001D0D2;Byzantine Musical Symbol Diesis Digrammos Ex Dodekata +\U0001D0D3;Byzantine Musical Symbol Diesis Trigrammos Okto Dodekata +\U0001D0D4;Byzantine Musical Symbol Yfesis Apli Dyo Dodekata +\U0001D0D5;Byzantine Musical Symbol Yfesis Monogrammos Tessera Dodekata +\U0001D0D6;Byzantine Musical Symbol Yfesis Digrammos Ex Dodekata +\U0001D0D7;Byzantine Musical Symbol Yfesis Trigrammos Okto Dodekata +\U0001D0D8;Byzantine Musical Symbol Geniki Diesis +\U0001D0D9;Byzantine Musical Symbol Geniki Yfesis +\U0001D0DA;Byzantine Musical Symbol Diastoli Apli Mikri +\U0001D0DB;Byzantine Musical Symbol Diastoli Apli Megali +\U0001D0DC;Byzantine Musical Symbol Diastoli Dipli +\U0001D0DD;Byzantine Musical Symbol Diastoli Theseos +\U0001D0DE;Byzantine Musical Symbol Simansis Theseos +\U0001D0DF;Byzantine Musical Symbol Simansis Theseos Disimou +\U0001D0E0;Byzantine Musical Symbol Simansis Theseos Trisimou +\U0001D0E1;Byzantine Musical Symbol Simansis Theseos Tetrasimou +\U0001D0E2;Byzantine Musical Symbol Simansis Arseos +\U0001D0E3;Byzantine Musical Symbol Simansis Arseos Disimou +\U0001D0E4;Byzantine Musical Symbol Simansis Arseos Trisimou +\U0001D0E5;Byzantine Musical Symbol Simansis Arseos Tetrasimou +\U0001D0E6;Byzantine Musical Symbol Digramma Gg +\U0001D0E7;Byzantine Musical Symbol Diftoggos Ou +\U0001D0E8;Byzantine Musical Symbol Stigma +\U0001D0E9;Byzantine Musical Symbol Arktiko Pa +\U0001D0EA;Byzantine Musical Symbol Arktiko Vou +\U0001D0EB;Byzantine Musical Symbol Arktiko Ga +\U0001D0EC;Byzantine Musical Symbol Arktiko Di +\U0001D0ED;Byzantine Musical Symbol Arktiko Ke +\U0001D0EE;Byzantine Musical Symbol Arktiko Zo +\U0001D0EF;Byzantine Musical Symbol Arktiko Ni +\U0001D0F0;Byzantine Musical Symbol Kentimata Neo Meso +\U0001D0F1;Byzantine Musical Symbol Kentima Neo Meso +\U0001D0F2;Byzantine Musical Symbol Kentimata Neo Kato +\U0001D0F3;Byzantine Musical Symbol Kentima Neo Kato +\U0001D0F4;Byzantine Musical Symbol Klasma Kato +\U0001D0F5;Byzantine Musical Symbol Gorgon Neo Kato +\U0001D100;Musical Symbol Single Barline +\U0001D101;Musical Symbol Double Barline +\U0001D102;Musical Symbol Final Barline +\U0001D103;Musical Symbol Reverse Final Barline +\U0001D104;Musical Symbol Dashed Barline +\U0001D105;Musical Symbol Short Barline +\U0001D106;Musical Symbol Left Repeat Sign +\U0001D107;Musical Symbol Right Repeat Sign +\U0001D108;Musical Symbol Repeat Dots +\U0001D109;Musical Symbol Dal Segno +\U0001D10A;Musical Symbol Da Capo +\U0001D10B;Musical Symbol Segno +\U0001D10C;Musical Symbol Coda +\U0001D10D;Musical Symbol Repeated Figure-1 +\U0001D10E;Musical Symbol Repeated Figure-2 +\U0001D10F;Musical Symbol Repeated Figure-3 +\U0001D110;Musical Symbol Fermata +\U0001D111;Musical Symbol Fermata Below +\U0001D112;Musical Symbol Breath Mark +\U0001D113;Musical Symbol Caesura +\U0001D114;Musical Symbol Brace +\U0001D115;Musical Symbol Bracket +\U0001D116;Musical Symbol One-Line Staff +\U0001D117;Musical Symbol Two-Line Staff +\U0001D118;Musical Symbol Three-Line Staff +\U0001D119;Musical Symbol Four-Line Staff +\U0001D11A;Musical Symbol Five-Line Staff +\U0001D11B;Musical Symbol Six-Line Staff +\U0001D11C;Musical Symbol Six-String Fretboard +\U0001D11D;Musical Symbol Four-String Fretboard +\U0001D11E;Musical Symbol G Clef +\U0001D11F;Musical Symbol G Clef Ottava Alta +\U0001D120;Musical Symbol G Clef Ottava Bassa +\U0001D121;Musical Symbol C Clef +\U0001D122;Musical Symbol F Clef +\U0001D123;Musical Symbol F Clef Ottava Alta +\U0001D124;Musical Symbol F Clef Ottava Bassa +\U0001D125;Musical Symbol Drum Clef-1 +\U0001D126;Musical Symbol Drum Clef-2 +\U0001D129;Musical Symbol Multiple Measure Rest +\U0001D12A;Musical Symbol Double Sharp +\U0001D12B;Musical Symbol Double Flat +\U0001D12C;Musical Symbol Flat Up +\U0001D12D;Musical Symbol Flat Down +\U0001D12E;Musical Symbol Natural Up +\U0001D12F;Musical Symbol Natural Down +\U0001D130;Musical Symbol Sharp Up +\U0001D131;Musical Symbol Sharp Down +\U0001D132;Musical Symbol Quarter Tone Sharp +\U0001D133;Musical Symbol Quarter Tone Flat +\U0001D134;Musical Symbol Common Time +\U0001D135;Musical Symbol Cut Time +\U0001D136;Musical Symbol Ottava Alta +\U0001D137;Musical Symbol Ottava Bassa +\U0001D138;Musical Symbol Quindicesima Alta +\U0001D139;Musical Symbol Quindicesima Bassa +\U0001D13A;Musical Symbol Multi Rest +\U0001D13B;Musical Symbol Whole Rest +\U0001D13C;Musical Symbol Half Rest +\U0001D13D;Musical Symbol Quarter Rest +\U0001D13E;Musical Symbol Eighth Rest +\U0001D13F;Musical Symbol Sixteenth Rest +\U0001D140;Musical Symbol Thirty-Second Rest +\U0001D141;Musical Symbol Sixty-Fourth Rest +\U0001D142;Musical Symbol One Hundred Twenty-Eighth Rest +\U0001D143;Musical Symbol X Notehead +\U0001D144;Musical Symbol Plus Notehead +\U0001D145;Musical Symbol Circle X Notehead +\U0001D146;Musical Symbol Square Notehead White +\U0001D147;Musical Symbol Square Notehead Black +\U0001D148;Musical Symbol Triangle Notehead Up White +\U0001D149;Musical Symbol Triangle Notehead Up Black +\U0001D14A;Musical Symbol Triangle Notehead Left White +\U0001D14B;Musical Symbol Triangle Notehead Left Black +\U0001D14C;Musical Symbol Triangle Notehead Right White +\U0001D14D;Musical Symbol Triangle Notehead Right Black +\U0001D14E;Musical Symbol Triangle Notehead Down White +\U0001D14F;Musical Symbol Triangle Notehead Down Black +\U0001D150;Musical Symbol Triangle Notehead Up Right White +\U0001D151;Musical Symbol Triangle Notehead Up Right Black +\U0001D152;Musical Symbol Moon Notehead White +\U0001D153;Musical Symbol Moon Notehead Black +\U0001D154;Musical Symbol Triangle-Round Notehead Down White +\U0001D155;Musical Symbol Triangle-Round Notehead Down Black +\U0001D156;Musical Symbol Parenthesis Notehead +\U0001D157;Musical Symbol Void Notehead +\U0001D158;Musical Symbol Notehead Black +\U0001D159;Musical Symbol Null Notehead +\U0001D15A;Musical Symbol Cluster Notehead White +\U0001D15B;Musical Symbol Cluster Notehead Black +\U0001D15C;Musical Symbol Breve +\U0001D15D;Musical Symbol Whole Note +\U0001D15E;Musical Symbol Half Note +\U0001D15F;Musical Symbol Quarter Note +\U0001D160;Musical Symbol Eighth Note +\U0001D161;Musical Symbol Sixteenth Note +\U0001D162;Musical Symbol Thirty-Second Note +\U0001D163;Musical Symbol Sixty-Fourth Note +\U0001D164;Musical Symbol One Hundred Twenty-Eighth Note +\U0001D165;Musical Symbol Combining Stem +\U0001D166;Musical Symbol Combining Sprechgesang Stem +\U0001D167;Musical Symbol Combining Tremolo-1 +\U0001D168;Musical Symbol Combining Tremolo-2 +\U0001D169;Musical Symbol Combining Tremolo-3 +\U0001D16A;Musical Symbol Fingered Tremolo-1 +\U0001D16B;Musical Symbol Fingered Tremolo-2 +\U0001D16C;Musical Symbol Fingered Tremolo-3 +\U0001D16D;Musical Symbol Combining Augmentation Dot +\U0001D16E;Musical Symbol Combining Flag-1 +\U0001D16F;Musical Symbol Combining Flag-2 +\U0001D170;Musical Symbol Combining Flag-3 +\U0001D171;Musical Symbol Combining Flag-4 +\U0001D172;Musical Symbol Combining Flag-5 +\U0001D173;Musical Symbol Begin Beam +\U0001D174;Musical Symbol End Beam +\U0001D175;Musical Symbol Begin Tie +\U0001D176;Musical Symbol End Tie +\U0001D177;Musical Symbol Begin Slur +\U0001D178;Musical Symbol End Slur +\U0001D179;Musical Symbol Begin Phrase +\U0001D17A;Musical Symbol End Phrase +\U0001D17B;Musical Symbol Combining Accent +\U0001D17C;Musical Symbol Combining Staccato +\U0001D17D;Musical Symbol Combining Tenuto +\U0001D17E;Musical Symbol Combining Staccatissimo +\U0001D17F;Musical Symbol Combining Marcato +\U0001D180;Musical Symbol Combining Marcato-Staccato +\U0001D181;Musical Symbol Combining Accent-Staccato +\U0001D182;Musical Symbol Combining Loure +\U0001D183;Musical Symbol Arpeggiato Up +\U0001D184;Musical Symbol Arpeggiato Down +\U0001D185;Musical Symbol Combining Doit +\U0001D186;Musical Symbol Combining Rip +\U0001D187;Musical Symbol Combining Flip +\U0001D188;Musical Symbol Combining Smear +\U0001D189;Musical Symbol Combining Bend +\U0001D18A;Musical Symbol Combining Double Tongue +\U0001D18B;Musical Symbol Combining Triple Tongue +\U0001D18C;Musical Symbol Rinforzando +\U0001D18D;Musical Symbol Subito +\U0001D18E;Musical Symbol Z +\U0001D18F;Musical Symbol Piano +\U0001D190;Musical Symbol Mezzo +\U0001D191;Musical Symbol Forte +\U0001D192;Musical Symbol Crescendo +\U0001D193;Musical Symbol Decrescendo +\U0001D194;Musical Symbol Grace Note Slash +\U0001D195;Musical Symbol Grace Note No Slash +\U0001D196;Musical Symbol Tr +\U0001D197;Musical Symbol Turn +\U0001D198;Musical Symbol Inverted Turn +\U0001D199;Musical Symbol Turn Slash +\U0001D19A;Musical Symbol Turn Up +\U0001D19B;Musical Symbol Ornament Stroke-1 +\U0001D19C;Musical Symbol Ornament Stroke-2 +\U0001D19D;Musical Symbol Ornament Stroke-3 +\U0001D19E;Musical Symbol Ornament Stroke-4 +\U0001D19F;Musical Symbol Ornament Stroke-5 +\U0001D1A0;Musical Symbol Ornament Stroke-6 +\U0001D1A1;Musical Symbol Ornament Stroke-7 +\U0001D1A2;Musical Symbol Ornament Stroke-8 +\U0001D1A3;Musical Symbol Ornament Stroke-9 +\U0001D1A4;Musical Symbol Ornament Stroke-10 +\U0001D1A5;Musical Symbol Ornament Stroke-11 +\U0001D1A6;Musical Symbol Hauptstimme +\U0001D1A7;Musical Symbol Nebenstimme +\U0001D1A8;Musical Symbol End Of Stimme +\U0001D1A9;Musical Symbol Degree Slash +\U0001D1AA;Musical Symbol Combining Down Bow +\U0001D1AB;Musical Symbol Combining Up Bow +\U0001D1AC;Musical Symbol Combining Harmonic +\U0001D1AD;Musical Symbol Combining Snap Pizzicato +\U0001D1AE;Musical Symbol Pedal Mark +\U0001D1AF;Musical Symbol Pedal Up Mark +\U0001D1B0;Musical Symbol Half Pedal Mark +\U0001D1B1;Musical Symbol Glissando Up +\U0001D1B2;Musical Symbol Glissando Down +\U0001D1B3;Musical Symbol With Fingernails +\U0001D1B4;Musical Symbol Damp +\U0001D1B5;Musical Symbol Damp All +\U0001D1B6;Musical Symbol Maxima +\U0001D1B7;Musical Symbol Longa +\U0001D1B8;Musical Symbol Brevis +\U0001D1B9;Musical Symbol Semibrevis White +\U0001D1BA;Musical Symbol Semibrevis Black +\U0001D1BB;Musical Symbol Minima +\U0001D1BC;Musical Symbol Minima Black +\U0001D1BD;Musical Symbol Semiminima White +\U0001D1BE;Musical Symbol Semiminima Black +\U0001D1BF;Musical Symbol Fusa White +\U0001D1C0;Musical Symbol Fusa Black +\U0001D1C1;Musical Symbol Longa Perfecta Rest +\U0001D1C2;Musical Symbol Longa Imperfecta Rest +\U0001D1C3;Musical Symbol Brevis Rest +\U0001D1C4;Musical Symbol Semibrevis Rest +\U0001D1C5;Musical Symbol Minima Rest +\U0001D1C6;Musical Symbol Semiminima Rest +\U0001D1C7;Musical Symbol Tempus Perfectum Cum Prolatione Perfecta +\U0001D1C8;Musical Symbol Tempus Perfectum Cum Prolatione Imperfecta +\U0001D1C9;Musical Symbol Tempus Perfectum Cum Prolatione Perfecta Diminution-1 +\U0001D1CA;Musical Symbol Tempus Imperfectum Cum Prolatione Perfecta +\U0001D1CB;Musical Symbol Tempus Imperfectum Cum Prolatione Imperfecta +\U0001D1CC;Musical Symbol Tempus Imperfectum Cum Prolatione Imperfecta Diminution-1 +\U0001D1CD;Musical Symbol Tempus Imperfectum Cum Prolatione Imperfecta Diminution-2 +\U0001D1CE;Musical Symbol Tempus Imperfectum Cum Prolatione Imperfecta Diminution-3 +\U0001D1CF;Musical Symbol Croix +\U0001D1D0;Musical Symbol Gregorian C Clef +\U0001D1D1;Musical Symbol Gregorian F Clef +\U0001D1D2;Musical Symbol Square B +\U0001D1D3;Musical Symbol Virga +\U0001D1D4;Musical Symbol Podatus +\U0001D1D5;Musical Symbol Clivis +\U0001D1D6;Musical Symbol Scandicus +\U0001D1D7;Musical Symbol Climacus +\U0001D1D8;Musical Symbol Torculus +\U0001D1D9;Musical Symbol Porrectus +\U0001D1DA;Musical Symbol Porrectus Flexus +\U0001D1DB;Musical Symbol Scandicus Flexus +\U0001D1DC;Musical Symbol Torculus Resupinus +\U0001D1DD;Musical Symbol Pes Subpunctis +\U0001D1DE;Musical Symbol Kievan C Clef +\U0001D1DF;Musical Symbol Kievan End Of Piece +\U0001D1E0;Musical Symbol Kievan Final Note +\U0001D1E1;Musical Symbol Kievan Recitative Mark +\U0001D1E2;Musical Symbol Kievan Whole Note +\U0001D1E3;Musical Symbol Kievan Half Note +\U0001D1E4;Musical Symbol Kievan Quarter Note Stem Down +\U0001D1E5;Musical Symbol Kievan Quarter Note Stem Up +\U0001D1E6;Musical Symbol Kievan Eighth Note Stem Down +\U0001D1E7;Musical Symbol Kievan Eighth Note Stem Up +\U0001D1E8;Musical Symbol Kievan Flat Sign +\U0001D1E9;Musical Symbol Sori +\U0001D1EA;Musical Symbol Koron +\U0001D200;Greek Vocal Notation Symbol-1 +\U0001D201;Greek Vocal Notation Symbol-2 +\U0001D202;Greek Vocal Notation Symbol-3 +\U0001D203;Greek Vocal Notation Symbol-4 +\U0001D204;Greek Vocal Notation Symbol-5 +\U0001D205;Greek Vocal Notation Symbol-6 +\U0001D206;Greek Vocal Notation Symbol-7 +\U0001D207;Greek Vocal Notation Symbol-8 +\U0001D208;Greek Vocal Notation Symbol-9 +\U0001D209;Greek Vocal Notation Symbol-10 +\U0001D20A;Greek Vocal Notation Symbol-11 +\U0001D20B;Greek Vocal Notation Symbol-12 +\U0001D20C;Greek Vocal Notation Symbol-13 +\U0001D20D;Greek Vocal Notation Symbol-14 +\U0001D20E;Greek Vocal Notation Symbol-15 +\U0001D20F;Greek Vocal Notation Symbol-16 +\U0001D210;Greek Vocal Notation Symbol-17 +\U0001D211;Greek Vocal Notation Symbol-18 +\U0001D212;Greek Vocal Notation Symbol-19 +\U0001D213;Greek Vocal Notation Symbol-20 +\U0001D214;Greek Vocal Notation Symbol-21 +\U0001D215;Greek Vocal Notation Symbol-22 +\U0001D216;Greek Vocal Notation Symbol-23 +\U0001D217;Greek Vocal Notation Symbol-24 +\U0001D218;Greek Vocal Notation Symbol-50 +\U0001D219;Greek Vocal Notation Symbol-51 +\U0001D21A;Greek Vocal Notation Symbol-52 +\U0001D21B;Greek Vocal Notation Symbol-53 +\U0001D21C;Greek Vocal Notation Symbol-54 +\U0001D21D;Greek Instrumental Notation Symbol-1 +\U0001D21E;Greek Instrumental Notation Symbol-2 +\U0001D21F;Greek Instrumental Notation Symbol-4 +\U0001D220;Greek Instrumental Notation Symbol-5 +\U0001D221;Greek Instrumental Notation Symbol-7 +\U0001D222;Greek Instrumental Notation Symbol-8 +\U0001D223;Greek Instrumental Notation Symbol-11 +\U0001D224;Greek Instrumental Notation Symbol-12 +\U0001D225;Greek Instrumental Notation Symbol-13 +\U0001D226;Greek Instrumental Notation Symbol-14 +\U0001D227;Greek Instrumental Notation Symbol-17 +\U0001D228;Greek Instrumental Notation Symbol-18 +\U0001D229;Greek Instrumental Notation Symbol-19 +\U0001D22A;Greek Instrumental Notation Symbol-23 +\U0001D22B;Greek Instrumental Notation Symbol-24 +\U0001D22C;Greek Instrumental Notation Symbol-25 +\U0001D22D;Greek Instrumental Notation Symbol-26 +\U0001D22E;Greek Instrumental Notation Symbol-27 +\U0001D22F;Greek Instrumental Notation Symbol-29 +\U0001D230;Greek Instrumental Notation Symbol-30 +\U0001D231;Greek Instrumental Notation Symbol-32 +\U0001D232;Greek Instrumental Notation Symbol-36 +\U0001D233;Greek Instrumental Notation Symbol-37 +\U0001D234;Greek Instrumental Notation Symbol-38 +\U0001D235;Greek Instrumental Notation Symbol-39 +\U0001D236;Greek Instrumental Notation Symbol-40 +\U0001D237;Greek Instrumental Notation Symbol-42 +\U0001D238;Greek Instrumental Notation Symbol-43 +\U0001D239;Greek Instrumental Notation Symbol-45 +\U0001D23A;Greek Instrumental Notation Symbol-47 +\U0001D23B;Greek Instrumental Notation Symbol-48 +\U0001D23C;Greek Instrumental Notation Symbol-49 +\U0001D23D;Greek Instrumental Notation Symbol-50 +\U0001D23E;Greek Instrumental Notation Symbol-51 +\U0001D23F;Greek Instrumental Notation Symbol-52 +\U0001D240;Greek Instrumental Notation Symbol-53 +\U0001D241;Greek Instrumental Notation Symbol-54 +\U0001D242;Combining Greek Musical Triseme +\U0001D243;Combining Greek Musical Tetraseme +\U0001D244;Combining Greek Musical Pentaseme +\U0001D245;Greek Musical Leimma +\U0001D2C0;Kaktovik Numeral Zero +\U0001D2C1;Kaktovik Numeral One +\U0001D2C2;Kaktovik Numeral Two +\U0001D2C3;Kaktovik Numeral Three +\U0001D2C4;Kaktovik Numeral Four +\U0001D2C5;Kaktovik Numeral Five +\U0001D2C6;Kaktovik Numeral Six +\U0001D2C7;Kaktovik Numeral Seven +\U0001D2C8;Kaktovik Numeral Eight +\U0001D2C9;Kaktovik Numeral Nine +\U0001D2CA;Kaktovik Numeral Ten +\U0001D2CB;Kaktovik Numeral Eleven +\U0001D2CC;Kaktovik Numeral Twelve +\U0001D2CD;Kaktovik Numeral Thirteen +\U0001D2CE;Kaktovik Numeral Fourteen +\U0001D2CF;Kaktovik Numeral Fifteen +\U0001D2D0;Kaktovik Numeral Sixteen +\U0001D2D1;Kaktovik Numeral Seventeen +\U0001D2D2;Kaktovik Numeral Eighteen +\U0001D2D3;Kaktovik Numeral Nineteen +\U0001D2E0;Mayan Numeral Zero +\U0001D2E1;Mayan Numeral One +\U0001D2E2;Mayan Numeral Two +\U0001D2E3;Mayan Numeral Three +\U0001D2E4;Mayan Numeral Four +\U0001D2E5;Mayan Numeral Five +\U0001D2E6;Mayan Numeral Six +\U0001D2E7;Mayan Numeral Seven +\U0001D2E8;Mayan Numeral Eight +\U0001D2E9;Mayan Numeral Nine +\U0001D2EA;Mayan Numeral Ten +\U0001D2EB;Mayan Numeral Eleven +\U0001D2EC;Mayan Numeral Twelve +\U0001D2ED;Mayan Numeral Thirteen +\U0001D2EE;Mayan Numeral Fourteen +\U0001D2EF;Mayan Numeral Fifteen +\U0001D2F0;Mayan Numeral Sixteen +\U0001D2F1;Mayan Numeral Seventeen +\U0001D2F2;Mayan Numeral Eighteen +\U0001D2F3;Mayan Numeral Nineteen +\U0001D300;Monogram For Earth +\U0001D301;Digram For Heavenly Earth +\U0001D302;Digram For Human Earth +\U0001D303;Digram For Earthly Heaven +\U0001D304;Digram For Earthly Human +\U0001D305;Digram For Earth +\U0001D306;Tetragram For Centre +\U0001D307;Tetragram For Full Circle +\U0001D308;Tetragram For Mired +\U0001D309;Tetragram For Barrier +\U0001D30A;Tetragram For Keeping Small +\U0001D30B;Tetragram For Contrariety +\U0001D30C;Tetragram For Ascent +\U0001D30D;Tetragram For Opposition +\U0001D30E;Tetragram For Branching Out +\U0001D30F;Tetragram For Defectiveness Or Distortion +\U0001D310;Tetragram For Divergence +\U0001D311;Tetragram For Youthfulness +\U0001D312;Tetragram For Increase +\U0001D313;Tetragram For Penetration +\U0001D314;Tetragram For Reach +\U0001D315;Tetragram For Contact +\U0001D316;Tetragram For Holding Back +\U0001D317;Tetragram For Waiting +\U0001D318;Tetragram For Following +\U0001D319;Tetragram For Advance +\U0001D31A;Tetragram For Release +\U0001D31B;Tetragram For Resistance +\U0001D31C;Tetragram For Ease +\U0001D31D;Tetragram For Joy +\U0001D31E;Tetragram For Contention +\U0001D31F;Tetragram For Endeavour +\U0001D320;Tetragram For Duties +\U0001D321;Tetragram For Change +\U0001D322;Tetragram For Decisiveness +\U0001D323;Tetragram For Bold Resolution +\U0001D324;Tetragram For Packing +\U0001D325;Tetragram For Legion +\U0001D326;Tetragram For Closeness +\U0001D327;Tetragram For Kinship +\U0001D328;Tetragram For Gathering +\U0001D329;Tetragram For Strength +\U0001D32A;Tetragram For Purity +\U0001D32B;Tetragram For Fullness +\U0001D32C;Tetragram For Residence +\U0001D32D;Tetragram For Law Or Model +\U0001D32E;Tetragram For Response +\U0001D32F;Tetragram For Going To Meet +\U0001D330;Tetragram For Encounters +\U0001D331;Tetragram For Stove +\U0001D332;Tetragram For Greatness +\U0001D333;Tetragram For Enlargement +\U0001D334;Tetragram For Pattern +\U0001D335;Tetragram For Ritual +\U0001D336;Tetragram For Flight +\U0001D337;Tetragram For Vastness Or Wasting +\U0001D338;Tetragram For Constancy +\U0001D339;Tetragram For Measure +\U0001D33A;Tetragram For Eternity +\U0001D33B;Tetragram For Unity +\U0001D33C;Tetragram For Diminishment +\U0001D33D;Tetragram For Closed Mouth +\U0001D33E;Tetragram For Guardedness +\U0001D33F;Tetragram For Gathering In +\U0001D340;Tetragram For Massing +\U0001D341;Tetragram For Accumulation +\U0001D342;Tetragram For Embellishment +\U0001D343;Tetragram For Doubt +\U0001D344;Tetragram For Watch +\U0001D345;Tetragram For Sinking +\U0001D346;Tetragram For Inner +\U0001D347;Tetragram For Departure +\U0001D348;Tetragram For Darkening +\U0001D349;Tetragram For Dimming +\U0001D34A;Tetragram For Exhaustion +\U0001D34B;Tetragram For Severance +\U0001D34C;Tetragram For Stoppage +\U0001D34D;Tetragram For Hardness +\U0001D34E;Tetragram For Completion +\U0001D34F;Tetragram For Closure +\U0001D350;Tetragram For Failure +\U0001D351;Tetragram For Aggravation +\U0001D352;Tetragram For Compliance +\U0001D353;Tetragram For On The Verge +\U0001D354;Tetragram For Difficulties +\U0001D355;Tetragram For Labouring +\U0001D356;Tetragram For Fostering +\U0001D360;Counting Rod Unit Digit One +\U0001D361;Counting Rod Unit Digit Two +\U0001D362;Counting Rod Unit Digit Three +\U0001D363;Counting Rod Unit Digit Four +\U0001D364;Counting Rod Unit Digit Five +\U0001D365;Counting Rod Unit Digit Six +\U0001D366;Counting Rod Unit Digit Seven +\U0001D367;Counting Rod Unit Digit Eight +\U0001D368;Counting Rod Unit Digit Nine +\U0001D369;Counting Rod Tens Digit One +\U0001D36A;Counting Rod Tens Digit Two +\U0001D36B;Counting Rod Tens Digit Three +\U0001D36C;Counting Rod Tens Digit Four +\U0001D36D;Counting Rod Tens Digit Five +\U0001D36E;Counting Rod Tens Digit Six +\U0001D36F;Counting Rod Tens Digit Seven +\U0001D370;Counting Rod Tens Digit Eight +\U0001D371;Counting Rod Tens Digit Nine +\U0001D372;Ideographic Tally Mark One +\U0001D373;Ideographic Tally Mark Two +\U0001D374;Ideographic Tally Mark Three +\U0001D375;Ideographic Tally Mark Four +\U0001D376;Ideographic Tally Mark Five +\U0001D377;Tally Mark One +\U0001D378;Tally Mark Five +\U0001D400;Mathematical Bold Capital A +\U0001D401;Mathematical Bold Capital B +\U0001D402;Mathematical Bold Capital C +\U0001D403;Mathematical Bold Capital D +\U0001D404;Mathematical Bold Capital E +\U0001D405;Mathematical Bold Capital F +\U0001D406;Mathematical Bold Capital G +\U0001D407;Mathematical Bold Capital H +\U0001D408;Mathematical Bold Capital I +\U0001D409;Mathematical Bold Capital J +\U0001D40A;Mathematical Bold Capital K +\U0001D40B;Mathematical Bold Capital L +\U0001D40C;Mathematical Bold Capital M +\U0001D40D;Mathematical Bold Capital N +\U0001D40E;Mathematical Bold Capital O +\U0001D40F;Mathematical Bold Capital P +\U0001D410;Mathematical Bold Capital Q +\U0001D411;Mathematical Bold Capital R +\U0001D412;Mathematical Bold Capital S +\U0001D413;Mathematical Bold Capital T +\U0001D414;Mathematical Bold Capital U +\U0001D415;Mathematical Bold Capital V +\U0001D416;Mathematical Bold Capital W +\U0001D417;Mathematical Bold Capital X +\U0001D418;Mathematical Bold Capital Y +\U0001D419;Mathematical Bold Capital Z +\U0001D41A;Mathematical Bold Small A +\U0001D41B;Mathematical Bold Small B +\U0001D41C;Mathematical Bold Small C +\U0001D41D;Mathematical Bold Small D +\U0001D41E;Mathematical Bold Small E +\U0001D41F;Mathematical Bold Small F +\U0001D420;Mathematical Bold Small G +\U0001D421;Mathematical Bold Small H +\U0001D422;Mathematical Bold Small I +\U0001D423;Mathematical Bold Small J +\U0001D424;Mathematical Bold Small K +\U0001D425;Mathematical Bold Small L +\U0001D426;Mathematical Bold Small M +\U0001D427;Mathematical Bold Small N +\U0001D428;Mathematical Bold Small O +\U0001D429;Mathematical Bold Small P +\U0001D42A;Mathematical Bold Small Q +\U0001D42B;Mathematical Bold Small R +\U0001D42C;Mathematical Bold Small S +\U0001D42D;Mathematical Bold Small T +\U0001D42E;Mathematical Bold Small U +\U0001D42F;Mathematical Bold Small V +\U0001D430;Mathematical Bold Small W +\U0001D431;Mathematical Bold Small X +\U0001D432;Mathematical Bold Small Y +\U0001D433;Mathematical Bold Small Z +\U0001D434;Mathematical Italic Capital A +\U0001D435;Mathematical Italic Capital B +\U0001D436;Mathematical Italic Capital C +\U0001D437;Mathematical Italic Capital D +\U0001D438;Mathematical Italic Capital E +\U0001D439;Mathematical Italic Capital F +\U0001D43A;Mathematical Italic Capital G +\U0001D43B;Mathematical Italic Capital H +\U0001D43C;Mathematical Italic Capital I +\U0001D43D;Mathematical Italic Capital J +\U0001D43E;Mathematical Italic Capital K +\U0001D43F;Mathematical Italic Capital L +\U0001D440;Mathematical Italic Capital M +\U0001D441;Mathematical Italic Capital N +\U0001D442;Mathematical Italic Capital O +\U0001D443;Mathematical Italic Capital P +\U0001D444;Mathematical Italic Capital Q +\U0001D445;Mathematical Italic Capital R +\U0001D446;Mathematical Italic Capital S +\U0001D447;Mathematical Italic Capital T +\U0001D448;Mathematical Italic Capital U +\U0001D449;Mathematical Italic Capital V +\U0001D44A;Mathematical Italic Capital W +\U0001D44B;Mathematical Italic Capital X +\U0001D44C;Mathematical Italic Capital Y +\U0001D44D;Mathematical Italic Capital Z +\U0001D44E;Mathematical Italic Small A +\U0001D44F;Mathematical Italic Small B +\U0001D450;Mathematical Italic Small C +\U0001D451;Mathematical Italic Small D +\U0001D452;Mathematical Italic Small E +\U0001D453;Mathematical Italic Small F +\U0001D454;Mathematical Italic Small G +\U0001D456;Mathematical Italic Small I +\U0001D457;Mathematical Italic Small J +\U0001D458;Mathematical Italic Small K +\U0001D459;Mathematical Italic Small L +\U0001D45A;Mathematical Italic Small M +\U0001D45B;Mathematical Italic Small N +\U0001D45C;Mathematical Italic Small O +\U0001D45D;Mathematical Italic Small P +\U0001D45E;Mathematical Italic Small Q +\U0001D45F;Mathematical Italic Small R +\U0001D460;Mathematical Italic Small S +\U0001D461;Mathematical Italic Small T +\U0001D462;Mathematical Italic Small U +\U0001D463;Mathematical Italic Small V +\U0001D464;Mathematical Italic Small W +\U0001D465;Mathematical Italic Small X +\U0001D466;Mathematical Italic Small Y +\U0001D467;Mathematical Italic Small Z +\U0001D468;Mathematical Bold Italic Capital A +\U0001D469;Mathematical Bold Italic Capital B +\U0001D46A;Mathematical Bold Italic Capital C +\U0001D46B;Mathematical Bold Italic Capital D +\U0001D46C;Mathematical Bold Italic Capital E +\U0001D46D;Mathematical Bold Italic Capital F +\U0001D46E;Mathematical Bold Italic Capital G +\U0001D46F;Mathematical Bold Italic Capital H +\U0001D470;Mathematical Bold Italic Capital I +\U0001D471;Mathematical Bold Italic Capital J +\U0001D472;Mathematical Bold Italic Capital K +\U0001D473;Mathematical Bold Italic Capital L +\U0001D474;Mathematical Bold Italic Capital M +\U0001D475;Mathematical Bold Italic Capital N +\U0001D476;Mathematical Bold Italic Capital O +\U0001D477;Mathematical Bold Italic Capital P +\U0001D478;Mathematical Bold Italic Capital Q +\U0001D479;Mathematical Bold Italic Capital R +\U0001D47A;Mathematical Bold Italic Capital S +\U0001D47B;Mathematical Bold Italic Capital T +\U0001D47C;Mathematical Bold Italic Capital U +\U0001D47D;Mathematical Bold Italic Capital V +\U0001D47E;Mathematical Bold Italic Capital W +\U0001D47F;Mathematical Bold Italic Capital X +\U0001D480;Mathematical Bold Italic Capital Y +\U0001D481;Mathematical Bold Italic Capital Z +\U0001D482;Mathematical Bold Italic Small A +\U0001D483;Mathematical Bold Italic Small B +\U0001D484;Mathematical Bold Italic Small C +\U0001D485;Mathematical Bold Italic Small D +\U0001D486;Mathematical Bold Italic Small E +\U0001D487;Mathematical Bold Italic Small F +\U0001D488;Mathematical Bold Italic Small G +\U0001D489;Mathematical Bold Italic Small H +\U0001D48A;Mathematical Bold Italic Small I +\U0001D48B;Mathematical Bold Italic Small J +\U0001D48C;Mathematical Bold Italic Small K +\U0001D48D;Mathematical Bold Italic Small L +\U0001D48E;Mathematical Bold Italic Small M +\U0001D48F;Mathematical Bold Italic Small N +\U0001D490;Mathematical Bold Italic Small O +\U0001D491;Mathematical Bold Italic Small P +\U0001D492;Mathematical Bold Italic Small Q +\U0001D493;Mathematical Bold Italic Small R +\U0001D494;Mathematical Bold Italic Small S +\U0001D495;Mathematical Bold Italic Small T +\U0001D496;Mathematical Bold Italic Small U +\U0001D497;Mathematical Bold Italic Small V +\U0001D498;Mathematical Bold Italic Small W +\U0001D499;Mathematical Bold Italic Small X +\U0001D49A;Mathematical Bold Italic Small Y +\U0001D49B;Mathematical Bold Italic Small Z +\U0001D49C;Mathematical Script Capital A +\U0001D49E;Mathematical Script Capital C +\U0001D49F;Mathematical Script Capital D +\U0001D4A2;Mathematical Script Capital G +\U0001D4A5;Mathematical Script Capital J +\U0001D4A6;Mathematical Script Capital K +\U0001D4A9;Mathematical Script Capital N +\U0001D4AA;Mathematical Script Capital O +\U0001D4AB;Mathematical Script Capital P +\U0001D4AC;Mathematical Script Capital Q +\U0001D4AE;Mathematical Script Capital S +\U0001D4AF;Mathematical Script Capital T +\U0001D4B0;Mathematical Script Capital U +\U0001D4B1;Mathematical Script Capital V +\U0001D4B2;Mathematical Script Capital W +\U0001D4B3;Mathematical Script Capital X +\U0001D4B4;Mathematical Script Capital Y +\U0001D4B5;Mathematical Script Capital Z +\U0001D4B6;Mathematical Script Small A +\U0001D4B7;Mathematical Script Small B +\U0001D4B8;Mathematical Script Small C +\U0001D4B9;Mathematical Script Small D +\U0001D4BB;Mathematical Script Small F +\U0001D4BD;Mathematical Script Small H +\U0001D4BE;Mathematical Script Small I +\U0001D4BF;Mathematical Script Small J +\U0001D4C0;Mathematical Script Small K +\U0001D4C1;Mathematical Script Small L +\U0001D4C2;Mathematical Script Small M +\U0001D4C3;Mathematical Script Small N +\U0001D4C5;Mathematical Script Small P +\U0001D4C6;Mathematical Script Small Q +\U0001D4C7;Mathematical Script Small R +\U0001D4C8;Mathematical Script Small S +\U0001D4C9;Mathematical Script Small T +\U0001D4CA;Mathematical Script Small U +\U0001D4CB;Mathematical Script Small V +\U0001D4CC;Mathematical Script Small W +\U0001D4CD;Mathematical Script Small X +\U0001D4CE;Mathematical Script Small Y +\U0001D4CF;Mathematical Script Small Z +\U0001D4D0;Mathematical Bold Script Capital A +\U0001D4D1;Mathematical Bold Script Capital B +\U0001D4D2;Mathematical Bold Script Capital C +\U0001D4D3;Mathematical Bold Script Capital D +\U0001D4D4;Mathematical Bold Script Capital E +\U0001D4D5;Mathematical Bold Script Capital F +\U0001D4D6;Mathematical Bold Script Capital G +\U0001D4D7;Mathematical Bold Script Capital H +\U0001D4D8;Mathematical Bold Script Capital I +\U0001D4D9;Mathematical Bold Script Capital J +\U0001D4DA;Mathematical Bold Script Capital K +\U0001D4DB;Mathematical Bold Script Capital L +\U0001D4DC;Mathematical Bold Script Capital M +\U0001D4DD;Mathematical Bold Script Capital N +\U0001D4DE;Mathematical Bold Script Capital O +\U0001D4DF;Mathematical Bold Script Capital P +\U0001D4E0;Mathematical Bold Script Capital Q +\U0001D4E1;Mathematical Bold Script Capital R +\U0001D4E2;Mathematical Bold Script Capital S +\U0001D4E3;Mathematical Bold Script Capital T +\U0001D4E4;Mathematical Bold Script Capital U +\U0001D4E5;Mathematical Bold Script Capital V +\U0001D4E6;Mathematical Bold Script Capital W +\U0001D4E7;Mathematical Bold Script Capital X +\U0001D4E8;Mathematical Bold Script Capital Y +\U0001D4E9;Mathematical Bold Script Capital Z +\U0001D4EA;Mathematical Bold Script Small A +\U0001D4EB;Mathematical Bold Script Small B +\U0001D4EC;Mathematical Bold Script Small C +\U0001D4ED;Mathematical Bold Script Small D +\U0001D4EE;Mathematical Bold Script Small E +\U0001D4EF;Mathematical Bold Script Small F +\U0001D4F0;Mathematical Bold Script Small G +\U0001D4F1;Mathematical Bold Script Small H +\U0001D4F2;Mathematical Bold Script Small I +\U0001D4F3;Mathematical Bold Script Small J +\U0001D4F4;Mathematical Bold Script Small K +\U0001D4F5;Mathematical Bold Script Small L +\U0001D4F6;Mathematical Bold Script Small M +\U0001D4F7;Mathematical Bold Script Small N +\U0001D4F8;Mathematical Bold Script Small O +\U0001D4F9;Mathematical Bold Script Small P +\U0001D4FA;Mathematical Bold Script Small Q +\U0001D4FB;Mathematical Bold Script Small R +\U0001D4FC;Mathematical Bold Script Small S +\U0001D4FD;Mathematical Bold Script Small T +\U0001D4FE;Mathematical Bold Script Small U +\U0001D4FF;Mathematical Bold Script Small V +\U0001D500;Mathematical Bold Script Small W +\U0001D501;Mathematical Bold Script Small X +\U0001D502;Mathematical Bold Script Small Y +\U0001D503;Mathematical Bold Script Small Z +\U0001D504;Mathematical Fraktur Capital A +\U0001D505;Mathematical Fraktur Capital B +\U0001D507;Mathematical Fraktur Capital D +\U0001D508;Mathematical Fraktur Capital E +\U0001D509;Mathematical Fraktur Capital F +\U0001D50A;Mathematical Fraktur Capital G +\U0001D50D;Mathematical Fraktur Capital J +\U0001D50E;Mathematical Fraktur Capital K +\U0001D50F;Mathematical Fraktur Capital L +\U0001D510;Mathematical Fraktur Capital M +\U0001D511;Mathematical Fraktur Capital N +\U0001D512;Mathematical Fraktur Capital O +\U0001D513;Mathematical Fraktur Capital P +\U0001D514;Mathematical Fraktur Capital Q +\U0001D516;Mathematical Fraktur Capital S +\U0001D517;Mathematical Fraktur Capital T +\U0001D518;Mathematical Fraktur Capital U +\U0001D519;Mathematical Fraktur Capital V +\U0001D51A;Mathematical Fraktur Capital W +\U0001D51B;Mathematical Fraktur Capital X +\U0001D51C;Mathematical Fraktur Capital Y +\U0001D51E;Mathematical Fraktur Small A +\U0001D51F;Mathematical Fraktur Small B +\U0001D520;Mathematical Fraktur Small C +\U0001D521;Mathematical Fraktur Small D +\U0001D522;Mathematical Fraktur Small E +\U0001D523;Mathematical Fraktur Small F +\U0001D524;Mathematical Fraktur Small G +\U0001D525;Mathematical Fraktur Small H +\U0001D526;Mathematical Fraktur Small I +\U0001D527;Mathematical Fraktur Small J +\U0001D528;Mathematical Fraktur Small K +\U0001D529;Mathematical Fraktur Small L +\U0001D52A;Mathematical Fraktur Small M +\U0001D52B;Mathematical Fraktur Small N +\U0001D52C;Mathematical Fraktur Small O +\U0001D52D;Mathematical Fraktur Small P +\U0001D52E;Mathematical Fraktur Small Q +\U0001D52F;Mathematical Fraktur Small R +\U0001D530;Mathematical Fraktur Small S +\U0001D531;Mathematical Fraktur Small T +\U0001D532;Mathematical Fraktur Small U +\U0001D533;Mathematical Fraktur Small V +\U0001D534;Mathematical Fraktur Small W +\U0001D535;Mathematical Fraktur Small X +\U0001D536;Mathematical Fraktur Small Y +\U0001D537;Mathematical Fraktur Small Z +\U0001D538;Mathematical Double-Struck Capital A +\U0001D539;Mathematical Double-Struck Capital B +\U0001D53B;Mathematical Double-Struck Capital D +\U0001D53C;Mathematical Double-Struck Capital E +\U0001D53D;Mathematical Double-Struck Capital F +\U0001D53E;Mathematical Double-Struck Capital G +\U0001D540;Mathematical Double-Struck Capital I +\U0001D541;Mathematical Double-Struck Capital J +\U0001D542;Mathematical Double-Struck Capital K +\U0001D543;Mathematical Double-Struck Capital L +\U0001D544;Mathematical Double-Struck Capital M +\U0001D546;Mathematical Double-Struck Capital O +\U0001D54A;Mathematical Double-Struck Capital S +\U0001D54B;Mathematical Double-Struck Capital T +\U0001D54C;Mathematical Double-Struck Capital U +\U0001D54D;Mathematical Double-Struck Capital V +\U0001D54E;Mathematical Double-Struck Capital W +\U0001D54F;Mathematical Double-Struck Capital X +\U0001D550;Mathematical Double-Struck Capital Y +\U0001D552;Mathematical Double-Struck Small A +\U0001D553;Mathematical Double-Struck Small B +\U0001D554;Mathematical Double-Struck Small C +\U0001D555;Mathematical Double-Struck Small D +\U0001D556;Mathematical Double-Struck Small E +\U0001D557;Mathematical Double-Struck Small F +\U0001D558;Mathematical Double-Struck Small G +\U0001D559;Mathematical Double-Struck Small H +\U0001D55A;Mathematical Double-Struck Small I +\U0001D55B;Mathematical Double-Struck Small J +\U0001D55C;Mathematical Double-Struck Small K +\U0001D55D;Mathematical Double-Struck Small L +\U0001D55E;Mathematical Double-Struck Small M +\U0001D55F;Mathematical Double-Struck Small N +\U0001D560;Mathematical Double-Struck Small O +\U0001D561;Mathematical Double-Struck Small P +\U0001D562;Mathematical Double-Struck Small Q +\U0001D563;Mathematical Double-Struck Small R +\U0001D564;Mathematical Double-Struck Small S +\U0001D565;Mathematical Double-Struck Small T +\U0001D566;Mathematical Double-Struck Small U +\U0001D567;Mathematical Double-Struck Small V +\U0001D568;Mathematical Double-Struck Small W +\U0001D569;Mathematical Double-Struck Small X +\U0001D56A;Mathematical Double-Struck Small Y +\U0001D56B;Mathematical Double-Struck Small Z +\U0001D56C;Mathematical Bold Fraktur Capital A +\U0001D56D;Mathematical Bold Fraktur Capital B +\U0001D56E;Mathematical Bold Fraktur Capital C +\U0001D56F;Mathematical Bold Fraktur Capital D +\U0001D570;Mathematical Bold Fraktur Capital E +\U0001D571;Mathematical Bold Fraktur Capital F +\U0001D572;Mathematical Bold Fraktur Capital G +\U0001D573;Mathematical Bold Fraktur Capital H +\U0001D574;Mathematical Bold Fraktur Capital I +\U0001D575;Mathematical Bold Fraktur Capital J +\U0001D576;Mathematical Bold Fraktur Capital K +\U0001D577;Mathematical Bold Fraktur Capital L +\U0001D578;Mathematical Bold Fraktur Capital M +\U0001D579;Mathematical Bold Fraktur Capital N +\U0001D57A;Mathematical Bold Fraktur Capital O +\U0001D57B;Mathematical Bold Fraktur Capital P +\U0001D57C;Mathematical Bold Fraktur Capital Q +\U0001D57D;Mathematical Bold Fraktur Capital R +\U0001D57E;Mathematical Bold Fraktur Capital S +\U0001D57F;Mathematical Bold Fraktur Capital T +\U0001D580;Mathematical Bold Fraktur Capital U +\U0001D581;Mathematical Bold Fraktur Capital V +\U0001D582;Mathematical Bold Fraktur Capital W +\U0001D583;Mathematical Bold Fraktur Capital X +\U0001D584;Mathematical Bold Fraktur Capital Y +\U0001D585;Mathematical Bold Fraktur Capital Z +\U0001D586;Mathematical Bold Fraktur Small A +\U0001D587;Mathematical Bold Fraktur Small B +\U0001D588;Mathematical Bold Fraktur Small C +\U0001D589;Mathematical Bold Fraktur Small D +\U0001D58A;Mathematical Bold Fraktur Small E +\U0001D58B;Mathematical Bold Fraktur Small F +\U0001D58C;Mathematical Bold Fraktur Small G +\U0001D58D;Mathematical Bold Fraktur Small H +\U0001D58E;Mathematical Bold Fraktur Small I +\U0001D58F;Mathematical Bold Fraktur Small J +\U0001D590;Mathematical Bold Fraktur Small K +\U0001D591;Mathematical Bold Fraktur Small L +\U0001D592;Mathematical Bold Fraktur Small M +\U0001D593;Mathematical Bold Fraktur Small N +\U0001D594;Mathematical Bold Fraktur Small O +\U0001D595;Mathematical Bold Fraktur Small P +\U0001D596;Mathematical Bold Fraktur Small Q +\U0001D597;Mathematical Bold Fraktur Small R +\U0001D598;Mathematical Bold Fraktur Small S +\U0001D599;Mathematical Bold Fraktur Small T +\U0001D59A;Mathematical Bold Fraktur Small U +\U0001D59B;Mathematical Bold Fraktur Small V +\U0001D59C;Mathematical Bold Fraktur Small W +\U0001D59D;Mathematical Bold Fraktur Small X +\U0001D59E;Mathematical Bold Fraktur Small Y +\U0001D59F;Mathematical Bold Fraktur Small Z +\U0001D5A0;Mathematical Sans-Serif Capital A +\U0001D5A1;Mathematical Sans-Serif Capital B +\U0001D5A2;Mathematical Sans-Serif Capital C +\U0001D5A3;Mathematical Sans-Serif Capital D +\U0001D5A4;Mathematical Sans-Serif Capital E +\U0001D5A5;Mathematical Sans-Serif Capital F +\U0001D5A6;Mathematical Sans-Serif Capital G +\U0001D5A7;Mathematical Sans-Serif Capital H +\U0001D5A8;Mathematical Sans-Serif Capital I +\U0001D5A9;Mathematical Sans-Serif Capital J +\U0001D5AA;Mathematical Sans-Serif Capital K +\U0001D5AB;Mathematical Sans-Serif Capital L +\U0001D5AC;Mathematical Sans-Serif Capital M +\U0001D5AD;Mathematical Sans-Serif Capital N +\U0001D5AE;Mathematical Sans-Serif Capital O +\U0001D5AF;Mathematical Sans-Serif Capital P +\U0001D5B0;Mathematical Sans-Serif Capital Q +\U0001D5B1;Mathematical Sans-Serif Capital R +\U0001D5B2;Mathematical Sans-Serif Capital S +\U0001D5B3;Mathematical Sans-Serif Capital T +\U0001D5B4;Mathematical Sans-Serif Capital U +\U0001D5B5;Mathematical Sans-Serif Capital V +\U0001D5B6;Mathematical Sans-Serif Capital W +\U0001D5B7;Mathematical Sans-Serif Capital X +\U0001D5B8;Mathematical Sans-Serif Capital Y +\U0001D5B9;Mathematical Sans-Serif Capital Z +\U0001D5BA;Mathematical Sans-Serif Small A +\U0001D5BB;Mathematical Sans-Serif Small B +\U0001D5BC;Mathematical Sans-Serif Small C +\U0001D5BD;Mathematical Sans-Serif Small D +\U0001D5BE;Mathematical Sans-Serif Small E +\U0001D5BF;Mathematical Sans-Serif Small F +\U0001D5C0;Mathematical Sans-Serif Small G +\U0001D5C1;Mathematical Sans-Serif Small H +\U0001D5C2;Mathematical Sans-Serif Small I +\U0001D5C3;Mathematical Sans-Serif Small J +\U0001D5C4;Mathematical Sans-Serif Small K +\U0001D5C5;Mathematical Sans-Serif Small L +\U0001D5C6;Mathematical Sans-Serif Small M +\U0001D5C7;Mathematical Sans-Serif Small N +\U0001D5C8;Mathematical Sans-Serif Small O +\U0001D5C9;Mathematical Sans-Serif Small P +\U0001D5CA;Mathematical Sans-Serif Small Q +\U0001D5CB;Mathematical Sans-Serif Small R +\U0001D5CC;Mathematical Sans-Serif Small S +\U0001D5CD;Mathematical Sans-Serif Small T +\U0001D5CE;Mathematical Sans-Serif Small U +\U0001D5CF;Mathematical Sans-Serif Small V +\U0001D5D0;Mathematical Sans-Serif Small W +\U0001D5D1;Mathematical Sans-Serif Small X +\U0001D5D2;Mathematical Sans-Serif Small Y +\U0001D5D3;Mathematical Sans-Serif Small Z +\U0001D5D4;Mathematical Sans-Serif Bold Capital A +\U0001D5D5;Mathematical Sans-Serif Bold Capital B +\U0001D5D6;Mathematical Sans-Serif Bold Capital C +\U0001D5D7;Mathematical Sans-Serif Bold Capital D +\U0001D5D8;Mathematical Sans-Serif Bold Capital E +\U0001D5D9;Mathematical Sans-Serif Bold Capital F +\U0001D5DA;Mathematical Sans-Serif Bold Capital G +\U0001D5DB;Mathematical Sans-Serif Bold Capital H +\U0001D5DC;Mathematical Sans-Serif Bold Capital I +\U0001D5DD;Mathematical Sans-Serif Bold Capital J +\U0001D5DE;Mathematical Sans-Serif Bold Capital K +\U0001D5DF;Mathematical Sans-Serif Bold Capital L +\U0001D5E0;Mathematical Sans-Serif Bold Capital M +\U0001D5E1;Mathematical Sans-Serif Bold Capital N +\U0001D5E2;Mathematical Sans-Serif Bold Capital O +\U0001D5E3;Mathematical Sans-Serif Bold Capital P +\U0001D5E4;Mathematical Sans-Serif Bold Capital Q +\U0001D5E5;Mathematical Sans-Serif Bold Capital R +\U0001D5E6;Mathematical Sans-Serif Bold Capital S +\U0001D5E7;Mathematical Sans-Serif Bold Capital T +\U0001D5E8;Mathematical Sans-Serif Bold Capital U +\U0001D5E9;Mathematical Sans-Serif Bold Capital V +\U0001D5EA;Mathematical Sans-Serif Bold Capital W +\U0001D5EB;Mathematical Sans-Serif Bold Capital X +\U0001D5EC;Mathematical Sans-Serif Bold Capital Y +\U0001D5ED;Mathematical Sans-Serif Bold Capital Z +\U0001D5EE;Mathematical Sans-Serif Bold Small A +\U0001D5EF;Mathematical Sans-Serif Bold Small B +\U0001D5F0;Mathematical Sans-Serif Bold Small C +\U0001D5F1;Mathematical Sans-Serif Bold Small D +\U0001D5F2;Mathematical Sans-Serif Bold Small E +\U0001D5F3;Mathematical Sans-Serif Bold Small F +\U0001D5F4;Mathematical Sans-Serif Bold Small G +\U0001D5F5;Mathematical Sans-Serif Bold Small H +\U0001D5F6;Mathematical Sans-Serif Bold Small I +\U0001D5F7;Mathematical Sans-Serif Bold Small J +\U0001D5F8;Mathematical Sans-Serif Bold Small K +\U0001D5F9;Mathematical Sans-Serif Bold Small L +\U0001D5FA;Mathematical Sans-Serif Bold Small M +\U0001D5FB;Mathematical Sans-Serif Bold Small N +\U0001D5FC;Mathematical Sans-Serif Bold Small O +\U0001D5FD;Mathematical Sans-Serif Bold Small P +\U0001D5FE;Mathematical Sans-Serif Bold Small Q +\U0001D5FF;Mathematical Sans-Serif Bold Small R +\U0001D600;Mathematical Sans-Serif Bold Small S +\U0001D601;Mathematical Sans-Serif Bold Small T +\U0001D602;Mathematical Sans-Serif Bold Small U +\U0001D603;Mathematical Sans-Serif Bold Small V +\U0001D604;Mathematical Sans-Serif Bold Small W +\U0001D605;Mathematical Sans-Serif Bold Small X +\U0001D606;Mathematical Sans-Serif Bold Small Y +\U0001D607;Mathematical Sans-Serif Bold Small Z +\U0001D608;Mathematical Sans-Serif Italic Capital A +\U0001D609;Mathematical Sans-Serif Italic Capital B +\U0001D60A;Mathematical Sans-Serif Italic Capital C +\U0001D60B;Mathematical Sans-Serif Italic Capital D +\U0001D60C;Mathematical Sans-Serif Italic Capital E +\U0001D60D;Mathematical Sans-Serif Italic Capital F +\U0001D60E;Mathematical Sans-Serif Italic Capital G +\U0001D60F;Mathematical Sans-Serif Italic Capital H +\U0001D610;Mathematical Sans-Serif Italic Capital I +\U0001D611;Mathematical Sans-Serif Italic Capital J +\U0001D612;Mathematical Sans-Serif Italic Capital K +\U0001D613;Mathematical Sans-Serif Italic Capital L +\U0001D614;Mathematical Sans-Serif Italic Capital M +\U0001D615;Mathematical Sans-Serif Italic Capital N +\U0001D616;Mathematical Sans-Serif Italic Capital O +\U0001D617;Mathematical Sans-Serif Italic Capital P +\U0001D618;Mathematical Sans-Serif Italic Capital Q +\U0001D619;Mathematical Sans-Serif Italic Capital R +\U0001D61A;Mathematical Sans-Serif Italic Capital S +\U0001D61B;Mathematical Sans-Serif Italic Capital T +\U0001D61C;Mathematical Sans-Serif Italic Capital U +\U0001D61D;Mathematical Sans-Serif Italic Capital V +\U0001D61E;Mathematical Sans-Serif Italic Capital W +\U0001D61F;Mathematical Sans-Serif Italic Capital X +\U0001D620;Mathematical Sans-Serif Italic Capital Y +\U0001D621;Mathematical Sans-Serif Italic Capital Z +\U0001D622;Mathematical Sans-Serif Italic Small A +\U0001D623;Mathematical Sans-Serif Italic Small B +\U0001D624;Mathematical Sans-Serif Italic Small C +\U0001D625;Mathematical Sans-Serif Italic Small D +\U0001D626;Mathematical Sans-Serif Italic Small E +\U0001D627;Mathematical Sans-Serif Italic Small F +\U0001D628;Mathematical Sans-Serif Italic Small G +\U0001D629;Mathematical Sans-Serif Italic Small H +\U0001D62A;Mathematical Sans-Serif Italic Small I +\U0001D62B;Mathematical Sans-Serif Italic Small J +\U0001D62C;Mathematical Sans-Serif Italic Small K +\U0001D62D;Mathematical Sans-Serif Italic Small L +\U0001D62E;Mathematical Sans-Serif Italic Small M +\U0001D62F;Mathematical Sans-Serif Italic Small N +\U0001D630;Mathematical Sans-Serif Italic Small O +\U0001D631;Mathematical Sans-Serif Italic Small P +\U0001D632;Mathematical Sans-Serif Italic Small Q +\U0001D633;Mathematical Sans-Serif Italic Small R +\U0001D634;Mathematical Sans-Serif Italic Small S +\U0001D635;Mathematical Sans-Serif Italic Small T +\U0001D636;Mathematical Sans-Serif Italic Small U +\U0001D637;Mathematical Sans-Serif Italic Small V +\U0001D638;Mathematical Sans-Serif Italic Small W +\U0001D639;Mathematical Sans-Serif Italic Small X +\U0001D63A;Mathematical Sans-Serif Italic Small Y +\U0001D63B;Mathematical Sans-Serif Italic Small Z +\U0001D63C;Mathematical Sans-Serif Bold Italic Capital A +\U0001D63D;Mathematical Sans-Serif Bold Italic Capital B +\U0001D63E;Mathematical Sans-Serif Bold Italic Capital C +\U0001D63F;Mathematical Sans-Serif Bold Italic Capital D +\U0001D640;Mathematical Sans-Serif Bold Italic Capital E +\U0001D641;Mathematical Sans-Serif Bold Italic Capital F +\U0001D642;Mathematical Sans-Serif Bold Italic Capital G +\U0001D643;Mathematical Sans-Serif Bold Italic Capital H +\U0001D644;Mathematical Sans-Serif Bold Italic Capital I +\U0001D645;Mathematical Sans-Serif Bold Italic Capital J +\U0001D646;Mathematical Sans-Serif Bold Italic Capital K +\U0001D647;Mathematical Sans-Serif Bold Italic Capital L +\U0001D648;Mathematical Sans-Serif Bold Italic Capital M +\U0001D649;Mathematical Sans-Serif Bold Italic Capital N +\U0001D64A;Mathematical Sans-Serif Bold Italic Capital O +\U0001D64B;Mathematical Sans-Serif Bold Italic Capital P +\U0001D64C;Mathematical Sans-Serif Bold Italic Capital Q +\U0001D64D;Mathematical Sans-Serif Bold Italic Capital R +\U0001D64E;Mathematical Sans-Serif Bold Italic Capital S +\U0001D64F;Mathematical Sans-Serif Bold Italic Capital T +\U0001D650;Mathematical Sans-Serif Bold Italic Capital U +\U0001D651;Mathematical Sans-Serif Bold Italic Capital V +\U0001D652;Mathematical Sans-Serif Bold Italic Capital W +\U0001D653;Mathematical Sans-Serif Bold Italic Capital X +\U0001D654;Mathematical Sans-Serif Bold Italic Capital Y +\U0001D655;Mathematical Sans-Serif Bold Italic Capital Z +\U0001D656;Mathematical Sans-Serif Bold Italic Small A +\U0001D657;Mathematical Sans-Serif Bold Italic Small B +\U0001D658;Mathematical Sans-Serif Bold Italic Small C +\U0001D659;Mathematical Sans-Serif Bold Italic Small D +\U0001D65A;Mathematical Sans-Serif Bold Italic Small E +\U0001D65B;Mathematical Sans-Serif Bold Italic Small F +\U0001D65C;Mathematical Sans-Serif Bold Italic Small G +\U0001D65D;Mathematical Sans-Serif Bold Italic Small H +\U0001D65E;Mathematical Sans-Serif Bold Italic Small I +\U0001D65F;Mathematical Sans-Serif Bold Italic Small J +\U0001D660;Mathematical Sans-Serif Bold Italic Small K +\U0001D661;Mathematical Sans-Serif Bold Italic Small L +\U0001D662;Mathematical Sans-Serif Bold Italic Small M +\U0001D663;Mathematical Sans-Serif Bold Italic Small N +\U0001D664;Mathematical Sans-Serif Bold Italic Small O +\U0001D665;Mathematical Sans-Serif Bold Italic Small P +\U0001D666;Mathematical Sans-Serif Bold Italic Small Q +\U0001D667;Mathematical Sans-Serif Bold Italic Small R +\U0001D668;Mathematical Sans-Serif Bold Italic Small S +\U0001D669;Mathematical Sans-Serif Bold Italic Small T +\U0001D66A;Mathematical Sans-Serif Bold Italic Small U +\U0001D66B;Mathematical Sans-Serif Bold Italic Small V +\U0001D66C;Mathematical Sans-Serif Bold Italic Small W +\U0001D66D;Mathematical Sans-Serif Bold Italic Small X +\U0001D66E;Mathematical Sans-Serif Bold Italic Small Y +\U0001D66F;Mathematical Sans-Serif Bold Italic Small Z +\U0001D670;Mathematical Monospace Capital A +\U0001D671;Mathematical Monospace Capital B +\U0001D672;Mathematical Monospace Capital C +\U0001D673;Mathematical Monospace Capital D +\U0001D674;Mathematical Monospace Capital E +\U0001D675;Mathematical Monospace Capital F +\U0001D676;Mathematical Monospace Capital G +\U0001D677;Mathematical Monospace Capital H +\U0001D678;Mathematical Monospace Capital I +\U0001D679;Mathematical Monospace Capital J +\U0001D67A;Mathematical Monospace Capital K +\U0001D67B;Mathematical Monospace Capital L +\U0001D67C;Mathematical Monospace Capital M +\U0001D67D;Mathematical Monospace Capital N +\U0001D67E;Mathematical Monospace Capital O +\U0001D67F;Mathematical Monospace Capital P +\U0001D680;Mathematical Monospace Capital Q +\U0001D681;Mathematical Monospace Capital R +\U0001D682;Mathematical Monospace Capital S +\U0001D683;Mathematical Monospace Capital T +\U0001D684;Mathematical Monospace Capital U +\U0001D685;Mathematical Monospace Capital V +\U0001D686;Mathematical Monospace Capital W +\U0001D687;Mathematical Monospace Capital X +\U0001D688;Mathematical Monospace Capital Y +\U0001D689;Mathematical Monospace Capital Z +\U0001D68A;Mathematical Monospace Small A +\U0001D68B;Mathematical Monospace Small B +\U0001D68C;Mathematical Monospace Small C +\U0001D68D;Mathematical Monospace Small D +\U0001D68E;Mathematical Monospace Small E +\U0001D68F;Mathematical Monospace Small F +\U0001D690;Mathematical Monospace Small G +\U0001D691;Mathematical Monospace Small H +\U0001D692;Mathematical Monospace Small I +\U0001D693;Mathematical Monospace Small J +\U0001D694;Mathematical Monospace Small K +\U0001D695;Mathematical Monospace Small L +\U0001D696;Mathematical Monospace Small M +\U0001D697;Mathematical Monospace Small N +\U0001D698;Mathematical Monospace Small O +\U0001D699;Mathematical Monospace Small P +\U0001D69A;Mathematical Monospace Small Q +\U0001D69B;Mathematical Monospace Small R +\U0001D69C;Mathematical Monospace Small S +\U0001D69D;Mathematical Monospace Small T +\U0001D69E;Mathematical Monospace Small U +\U0001D69F;Mathematical Monospace Small V +\U0001D6A0;Mathematical Monospace Small W +\U0001D6A1;Mathematical Monospace Small X +\U0001D6A2;Mathematical Monospace Small Y +\U0001D6A3;Mathematical Monospace Small Z +\U0001D6A4;Mathematical Italic Small Dotless I +\U0001D6A5;Mathematical Italic Small Dotless J +\U0001D6A8;Mathematical Bold Capital Alpha +\U0001D6A9;Mathematical Bold Capital Beta +\U0001D6AA;Mathematical Bold Capital Gamma +\U0001D6AB;Mathematical Bold Capital Delta +\U0001D6AC;Mathematical Bold Capital Epsilon +\U0001D6AD;Mathematical Bold Capital Zeta +\U0001D6AE;Mathematical Bold Capital Eta +\U0001D6AF;Mathematical Bold Capital Theta +\U0001D6B0;Mathematical Bold Capital Iota +\U0001D6B1;Mathematical Bold Capital Kappa +\U0001D6B2;Mathematical Bold Capital Lamda +\U0001D6B3;Mathematical Bold Capital Mu +\U0001D6B4;Mathematical Bold Capital Nu +\U0001D6B5;Mathematical Bold Capital Xi +\U0001D6B6;Mathematical Bold Capital Omicron +\U0001D6B7;Mathematical Bold Capital Pi +\U0001D6B8;Mathematical Bold Capital Rho +\U0001D6B9;Mathematical Bold Capital Theta Symbol +\U0001D6BA;Mathematical Bold Capital Sigma +\U0001D6BB;Mathematical Bold Capital Tau +\U0001D6BC;Mathematical Bold Capital Upsilon +\U0001D6BD;Mathematical Bold Capital Phi +\U0001D6BE;Mathematical Bold Capital Chi +\U0001D6BF;Mathematical Bold Capital Psi +\U0001D6C0;Mathematical Bold Capital Omega +\U0001D6C1;Mathematical Bold Nabla +\U0001D6C2;Mathematical Bold Small Alpha +\U0001D6C3;Mathematical Bold Small Beta +\U0001D6C4;Mathematical Bold Small Gamma +\U0001D6C5;Mathematical Bold Small Delta +\U0001D6C6;Mathematical Bold Small Epsilon +\U0001D6C7;Mathematical Bold Small Zeta +\U0001D6C8;Mathematical Bold Small Eta +\U0001D6C9;Mathematical Bold Small Theta +\U0001D6CA;Mathematical Bold Small Iota +\U0001D6CB;Mathematical Bold Small Kappa +\U0001D6CC;Mathematical Bold Small Lamda +\U0001D6CD;Mathematical Bold Small Mu +\U0001D6CE;Mathematical Bold Small Nu +\U0001D6CF;Mathematical Bold Small Xi +\U0001D6D0;Mathematical Bold Small Omicron +\U0001D6D1;Mathematical Bold Small Pi +\U0001D6D2;Mathematical Bold Small Rho +\U0001D6D3;Mathematical Bold Small Final Sigma +\U0001D6D4;Mathematical Bold Small Sigma +\U0001D6D5;Mathematical Bold Small Tau +\U0001D6D6;Mathematical Bold Small Upsilon +\U0001D6D7;Mathematical Bold Small Phi +\U0001D6D8;Mathematical Bold Small Chi +\U0001D6D9;Mathematical Bold Small Psi +\U0001D6DA;Mathematical Bold Small Omega +\U0001D6DB;Mathematical Bold Partial Differential +\U0001D6DC;Mathematical Bold Epsilon Symbol +\U0001D6DD;Mathematical Bold Theta Symbol +\U0001D6DE;Mathematical Bold Kappa Symbol +\U0001D6DF;Mathematical Bold Phi Symbol +\U0001D6E0;Mathematical Bold Rho Symbol +\U0001D6E1;Mathematical Bold Pi Symbol +\U0001D6E2;Mathematical Italic Capital Alpha +\U0001D6E3;Mathematical Italic Capital Beta +\U0001D6E4;Mathematical Italic Capital Gamma +\U0001D6E5;Mathematical Italic Capital Delta +\U0001D6E6;Mathematical Italic Capital Epsilon +\U0001D6E7;Mathematical Italic Capital Zeta +\U0001D6E8;Mathematical Italic Capital Eta +\U0001D6E9;Mathematical Italic Capital Theta +\U0001D6EA;Mathematical Italic Capital Iota +\U0001D6EB;Mathematical Italic Capital Kappa +\U0001D6EC;Mathematical Italic Capital Lamda +\U0001D6ED;Mathematical Italic Capital Mu +\U0001D6EE;Mathematical Italic Capital Nu +\U0001D6EF;Mathematical Italic Capital Xi +\U0001D6F0;Mathematical Italic Capital Omicron +\U0001D6F1;Mathematical Italic Capital Pi +\U0001D6F2;Mathematical Italic Capital Rho +\U0001D6F3;Mathematical Italic Capital Theta Symbol +\U0001D6F4;Mathematical Italic Capital Sigma +\U0001D6F5;Mathematical Italic Capital Tau +\U0001D6F6;Mathematical Italic Capital Upsilon +\U0001D6F7;Mathematical Italic Capital Phi +\U0001D6F8;Mathematical Italic Capital Chi +\U0001D6F9;Mathematical Italic Capital Psi +\U0001D6FA;Mathematical Italic Capital Omega +\U0001D6FB;Mathematical Italic Nabla +\U0001D6FC;Mathematical Italic Small Alpha +\U0001D6FD;Mathematical Italic Small Beta +\U0001D6FE;Mathematical Italic Small Gamma +\U0001D6FF;Mathematical Italic Small Delta +\U0001D700;Mathematical Italic Small Epsilon +\U0001D701;Mathematical Italic Small Zeta +\U0001D702;Mathematical Italic Small Eta +\U0001D703;Mathematical Italic Small Theta +\U0001D704;Mathematical Italic Small Iota +\U0001D705;Mathematical Italic Small Kappa +\U0001D706;Mathematical Italic Small Lamda +\U0001D707;Mathematical Italic Small Mu +\U0001D708;Mathematical Italic Small Nu +\U0001D709;Mathematical Italic Small Xi +\U0001D70A;Mathematical Italic Small Omicron +\U0001D70B;Mathematical Italic Small Pi +\U0001D70C;Mathematical Italic Small Rho +\U0001D70D;Mathematical Italic Small Final Sigma +\U0001D70E;Mathematical Italic Small Sigma +\U0001D70F;Mathematical Italic Small Tau +\U0001D710;Mathematical Italic Small Upsilon +\U0001D711;Mathematical Italic Small Phi +\U0001D712;Mathematical Italic Small Chi +\U0001D713;Mathematical Italic Small Psi +\U0001D714;Mathematical Italic Small Omega +\U0001D715;Mathematical Italic Partial Differential +\U0001D716;Mathematical Italic Epsilon Symbol +\U0001D717;Mathematical Italic Theta Symbol +\U0001D718;Mathematical Italic Kappa Symbol +\U0001D719;Mathematical Italic Phi Symbol +\U0001D71A;Mathematical Italic Rho Symbol +\U0001D71B;Mathematical Italic Pi Symbol +\U0001D71C;Mathematical Bold Italic Capital Alpha +\U0001D71D;Mathematical Bold Italic Capital Beta +\U0001D71E;Mathematical Bold Italic Capital Gamma +\U0001D71F;Mathematical Bold Italic Capital Delta +\U0001D720;Mathematical Bold Italic Capital Epsilon +\U0001D721;Mathematical Bold Italic Capital Zeta +\U0001D722;Mathematical Bold Italic Capital Eta +\U0001D723;Mathematical Bold Italic Capital Theta +\U0001D724;Mathematical Bold Italic Capital Iota +\U0001D725;Mathematical Bold Italic Capital Kappa +\U0001D726;Mathematical Bold Italic Capital Lamda +\U0001D727;Mathematical Bold Italic Capital Mu +\U0001D728;Mathematical Bold Italic Capital Nu +\U0001D729;Mathematical Bold Italic Capital Xi +\U0001D72A;Mathematical Bold Italic Capital Omicron +\U0001D72B;Mathematical Bold Italic Capital Pi +\U0001D72C;Mathematical Bold Italic Capital Rho +\U0001D72D;Mathematical Bold Italic Capital Theta Symbol +\U0001D72E;Mathematical Bold Italic Capital Sigma +\U0001D72F;Mathematical Bold Italic Capital Tau +\U0001D730;Mathematical Bold Italic Capital Upsilon +\U0001D731;Mathematical Bold Italic Capital Phi +\U0001D732;Mathematical Bold Italic Capital Chi +\U0001D733;Mathematical Bold Italic Capital Psi +\U0001D734;Mathematical Bold Italic Capital Omega +\U0001D735;Mathematical Bold Italic Nabla +\U0001D736;Mathematical Bold Italic Small Alpha +\U0001D737;Mathematical Bold Italic Small Beta +\U0001D738;Mathematical Bold Italic Small Gamma +\U0001D739;Mathematical Bold Italic Small Delta +\U0001D73A;Mathematical Bold Italic Small Epsilon +\U0001D73B;Mathematical Bold Italic Small Zeta +\U0001D73C;Mathematical Bold Italic Small Eta +\U0001D73D;Mathematical Bold Italic Small Theta +\U0001D73E;Mathematical Bold Italic Small Iota +\U0001D73F;Mathematical Bold Italic Small Kappa +\U0001D740;Mathematical Bold Italic Small Lamda +\U0001D741;Mathematical Bold Italic Small Mu +\U0001D742;Mathematical Bold Italic Small Nu +\U0001D743;Mathematical Bold Italic Small Xi +\U0001D744;Mathematical Bold Italic Small Omicron +\U0001D745;Mathematical Bold Italic Small Pi +\U0001D746;Mathematical Bold Italic Small Rho +\U0001D747;Mathematical Bold Italic Small Final Sigma +\U0001D748;Mathematical Bold Italic Small Sigma +\U0001D749;Mathematical Bold Italic Small Tau +\U0001D74A;Mathematical Bold Italic Small Upsilon +\U0001D74B;Mathematical Bold Italic Small Phi +\U0001D74C;Mathematical Bold Italic Small Chi +\U0001D74D;Mathematical Bold Italic Small Psi +\U0001D74E;Mathematical Bold Italic Small Omega +\U0001D74F;Mathematical Bold Italic Partial Differential +\U0001D750;Mathematical Bold Italic Epsilon Symbol +\U0001D751;Mathematical Bold Italic Theta Symbol +\U0001D752;Mathematical Bold Italic Kappa Symbol +\U0001D753;Mathematical Bold Italic Phi Symbol +\U0001D754;Mathematical Bold Italic Rho Symbol +\U0001D755;Mathematical Bold Italic Pi Symbol +\U0001D756;Mathematical Sans-Serif Bold Capital Alpha +\U0001D757;Mathematical Sans-Serif Bold Capital Beta +\U0001D758;Mathematical Sans-Serif Bold Capital Gamma +\U0001D759;Mathematical Sans-Serif Bold Capital Delta +\U0001D75A;Mathematical Sans-Serif Bold Capital Epsilon +\U0001D75B;Mathematical Sans-Serif Bold Capital Zeta +\U0001D75C;Mathematical Sans-Serif Bold Capital Eta +\U0001D75D;Mathematical Sans-Serif Bold Capital Theta +\U0001D75E;Mathematical Sans-Serif Bold Capital Iota +\U0001D75F;Mathematical Sans-Serif Bold Capital Kappa +\U0001D760;Mathematical Sans-Serif Bold Capital Lamda +\U0001D761;Mathematical Sans-Serif Bold Capital Mu +\U0001D762;Mathematical Sans-Serif Bold Capital Nu +\U0001D763;Mathematical Sans-Serif Bold Capital Xi +\U0001D764;Mathematical Sans-Serif Bold Capital Omicron +\U0001D765;Mathematical Sans-Serif Bold Capital Pi +\U0001D766;Mathematical Sans-Serif Bold Capital Rho +\U0001D767;Mathematical Sans-Serif Bold Capital Theta Symbol +\U0001D768;Mathematical Sans-Serif Bold Capital Sigma +\U0001D769;Mathematical Sans-Serif Bold Capital Tau +\U0001D76A;Mathematical Sans-Serif Bold Capital Upsilon +\U0001D76B;Mathematical Sans-Serif Bold Capital Phi +\U0001D76C;Mathematical Sans-Serif Bold Capital Chi +\U0001D76D;Mathematical Sans-Serif Bold Capital Psi +\U0001D76E;Mathematical Sans-Serif Bold Capital Omega +\U0001D76F;Mathematical Sans-Serif Bold Nabla +\U0001D770;Mathematical Sans-Serif Bold Small Alpha +\U0001D771;Mathematical Sans-Serif Bold Small Beta +\U0001D772;Mathematical Sans-Serif Bold Small Gamma +\U0001D773;Mathematical Sans-Serif Bold Small Delta +\U0001D774;Mathematical Sans-Serif Bold Small Epsilon +\U0001D775;Mathematical Sans-Serif Bold Small Zeta +\U0001D776;Mathematical Sans-Serif Bold Small Eta +\U0001D777;Mathematical Sans-Serif Bold Small Theta +\U0001D778;Mathematical Sans-Serif Bold Small Iota +\U0001D779;Mathematical Sans-Serif Bold Small Kappa +\U0001D77A;Mathematical Sans-Serif Bold Small Lamda +\U0001D77B;Mathematical Sans-Serif Bold Small Mu +\U0001D77C;Mathematical Sans-Serif Bold Small Nu +\U0001D77D;Mathematical Sans-Serif Bold Small Xi +\U0001D77E;Mathematical Sans-Serif Bold Small Omicron +\U0001D77F;Mathematical Sans-Serif Bold Small Pi +\U0001D780;Mathematical Sans-Serif Bold Small Rho +\U0001D781;Mathematical Sans-Serif Bold Small Final Sigma +\U0001D782;Mathematical Sans-Serif Bold Small Sigma +\U0001D783;Mathematical Sans-Serif Bold Small Tau +\U0001D784;Mathematical Sans-Serif Bold Small Upsilon +\U0001D785;Mathematical Sans-Serif Bold Small Phi +\U0001D786;Mathematical Sans-Serif Bold Small Chi +\U0001D787;Mathematical Sans-Serif Bold Small Psi +\U0001D788;Mathematical Sans-Serif Bold Small Omega +\U0001D789;Mathematical Sans-Serif Bold Partial Differential +\U0001D78A;Mathematical Sans-Serif Bold Epsilon Symbol +\U0001D78B;Mathematical Sans-Serif Bold Theta Symbol +\U0001D78C;Mathematical Sans-Serif Bold Kappa Symbol +\U0001D78D;Mathematical Sans-Serif Bold Phi Symbol +\U0001D78E;Mathematical Sans-Serif Bold Rho Symbol +\U0001D78F;Mathematical Sans-Serif Bold Pi Symbol +\U0001D790;Mathematical Sans-Serif Bold Italic Capital Alpha +\U0001D791;Mathematical Sans-Serif Bold Italic Capital Beta +\U0001D792;Mathematical Sans-Serif Bold Italic Capital Gamma +\U0001D793;Mathematical Sans-Serif Bold Italic Capital Delta +\U0001D794;Mathematical Sans-Serif Bold Italic Capital Epsilon +\U0001D795;Mathematical Sans-Serif Bold Italic Capital Zeta +\U0001D796;Mathematical Sans-Serif Bold Italic Capital Eta +\U0001D797;Mathematical Sans-Serif Bold Italic Capital Theta +\U0001D798;Mathematical Sans-Serif Bold Italic Capital Iota +\U0001D799;Mathematical Sans-Serif Bold Italic Capital Kappa +\U0001D79A;Mathematical Sans-Serif Bold Italic Capital Lamda +\U0001D79B;Mathematical Sans-Serif Bold Italic Capital Mu +\U0001D79C;Mathematical Sans-Serif Bold Italic Capital Nu +\U0001D79D;Mathematical Sans-Serif Bold Italic Capital Xi +\U0001D79E;Mathematical Sans-Serif Bold Italic Capital Omicron +\U0001D79F;Mathematical Sans-Serif Bold Italic Capital Pi +\U0001D7A0;Mathematical Sans-Serif Bold Italic Capital Rho +\U0001D7A1;Mathematical Sans-Serif Bold Italic Capital Theta Symbol +\U0001D7A2;Mathematical Sans-Serif Bold Italic Capital Sigma +\U0001D7A3;Mathematical Sans-Serif Bold Italic Capital Tau +\U0001D7A4;Mathematical Sans-Serif Bold Italic Capital Upsilon +\U0001D7A5;Mathematical Sans-Serif Bold Italic Capital Phi +\U0001D7A6;Mathematical Sans-Serif Bold Italic Capital Chi +\U0001D7A7;Mathematical Sans-Serif Bold Italic Capital Psi +\U0001D7A8;Mathematical Sans-Serif Bold Italic Capital Omega +\U0001D7A9;Mathematical Sans-Serif Bold Italic Nabla +\U0001D7AA;Mathematical Sans-Serif Bold Italic Small Alpha +\U0001D7AB;Mathematical Sans-Serif Bold Italic Small Beta +\U0001D7AC;Mathematical Sans-Serif Bold Italic Small Gamma +\U0001D7AD;Mathematical Sans-Serif Bold Italic Small Delta +\U0001D7AE;Mathematical Sans-Serif Bold Italic Small Epsilon +\U0001D7AF;Mathematical Sans-Serif Bold Italic Small Zeta +\U0001D7B0;Mathematical Sans-Serif Bold Italic Small Eta +\U0001D7B1;Mathematical Sans-Serif Bold Italic Small Theta +\U0001D7B2;Mathematical Sans-Serif Bold Italic Small Iota +\U0001D7B3;Mathematical Sans-Serif Bold Italic Small Kappa +\U0001D7B4;Mathematical Sans-Serif Bold Italic Small Lamda +\U0001D7B5;Mathematical Sans-Serif Bold Italic Small Mu +\U0001D7B6;Mathematical Sans-Serif Bold Italic Small Nu +\U0001D7B7;Mathematical Sans-Serif Bold Italic Small Xi +\U0001D7B8;Mathematical Sans-Serif Bold Italic Small Omicron +\U0001D7B9;Mathematical Sans-Serif Bold Italic Small Pi +\U0001D7BA;Mathematical Sans-Serif Bold Italic Small Rho +\U0001D7BB;Mathematical Sans-Serif Bold Italic Small Final Sigma +\U0001D7BC;Mathematical Sans-Serif Bold Italic Small Sigma +\U0001D7BD;Mathematical Sans-Serif Bold Italic Small Tau +\U0001D7BE;Mathematical Sans-Serif Bold Italic Small Upsilon +\U0001D7BF;Mathematical Sans-Serif Bold Italic Small Phi +\U0001D7C0;Mathematical Sans-Serif Bold Italic Small Chi +\U0001D7C1;Mathematical Sans-Serif Bold Italic Small Psi +\U0001D7C2;Mathematical Sans-Serif Bold Italic Small Omega +\U0001D7C3;Mathematical Sans-Serif Bold Italic Partial Differential +\U0001D7C4;Mathematical Sans-Serif Bold Italic Epsilon Symbol +\U0001D7C5;Mathematical Sans-Serif Bold Italic Theta Symbol +\U0001D7C6;Mathematical Sans-Serif Bold Italic Kappa Symbol +\U0001D7C7;Mathematical Sans-Serif Bold Italic Phi Symbol +\U0001D7C8;Mathematical Sans-Serif Bold Italic Rho Symbol +\U0001D7C9;Mathematical Sans-Serif Bold Italic Pi Symbol +\U0001D7CA;Mathematical Bold Capital Digamma +\U0001D7CB;Mathematical Bold Small Digamma +\U0001D7CE;Mathematical Bold Digit Zero +\U0001D7CF;Mathematical Bold Digit One +\U0001D7D0;Mathematical Bold Digit Two +\U0001D7D1;Mathematical Bold Digit Three +\U0001D7D2;Mathematical Bold Digit Four +\U0001D7D3;Mathematical Bold Digit Five +\U0001D7D4;Mathematical Bold Digit Six +\U0001D7D5;Mathematical Bold Digit Seven +\U0001D7D6;Mathematical Bold Digit Eight +\U0001D7D7;Mathematical Bold Digit Nine +\U0001D7D8;Mathematical Double-Struck Digit Zero +\U0001D7D9;Mathematical Double-Struck Digit One +\U0001D7DA;Mathematical Double-Struck Digit Two +\U0001D7DB;Mathematical Double-Struck Digit Three +\U0001D7DC;Mathematical Double-Struck Digit Four +\U0001D7DD;Mathematical Double-Struck Digit Five +\U0001D7DE;Mathematical Double-Struck Digit Six +\U0001D7DF;Mathematical Double-Struck Digit Seven +\U0001D7E0;Mathematical Double-Struck Digit Eight +\U0001D7E1;Mathematical Double-Struck Digit Nine +\U0001D7E2;Mathematical Sans-Serif Digit Zero +\U0001D7E3;Mathematical Sans-Serif Digit One +\U0001D7E4;Mathematical Sans-Serif Digit Two +\U0001D7E5;Mathematical Sans-Serif Digit Three +\U0001D7E6;Mathematical Sans-Serif Digit Four +\U0001D7E7;Mathematical Sans-Serif Digit Five +\U0001D7E8;Mathematical Sans-Serif Digit Six +\U0001D7E9;Mathematical Sans-Serif Digit Seven +\U0001D7EA;Mathematical Sans-Serif Digit Eight +\U0001D7EB;Mathematical Sans-Serif Digit Nine +\U0001D7EC;Mathematical Sans-Serif Bold Digit Zero +\U0001D7ED;Mathematical Sans-Serif Bold Digit One +\U0001D7EE;Mathematical Sans-Serif Bold Digit Two +\U0001D7EF;Mathematical Sans-Serif Bold Digit Three +\U0001D7F0;Mathematical Sans-Serif Bold Digit Four +\U0001D7F1;Mathematical Sans-Serif Bold Digit Five +\U0001D7F2;Mathematical Sans-Serif Bold Digit Six +\U0001D7F3;Mathematical Sans-Serif Bold Digit Seven +\U0001D7F4;Mathematical Sans-Serif Bold Digit Eight +\U0001D7F5;Mathematical Sans-Serif Bold Digit Nine +\U0001D7F6;Mathematical Monospace Digit Zero +\U0001D7F7;Mathematical Monospace Digit One +\U0001D7F8;Mathematical Monospace Digit Two +\U0001D7F9;Mathematical Monospace Digit Three +\U0001D7FA;Mathematical Monospace Digit Four +\U0001D7FB;Mathematical Monospace Digit Five +\U0001D7FC;Mathematical Monospace Digit Six +\U0001D7FD;Mathematical Monospace Digit Seven +\U0001D7FE;Mathematical Monospace Digit Eight +\U0001D7FF;Mathematical Monospace Digit Nine +\U0001D800;Signwriting Hand-Fist Index +\U0001D801;Signwriting Hand-Circle Index +\U0001D802;Signwriting Hand-Cup Index +\U0001D803;Signwriting Hand-Oval Index +\U0001D804;Signwriting Hand-Hinge Index +\U0001D805;Signwriting Hand-Angle Index +\U0001D806;Signwriting Hand-Fist Index Bent +\U0001D807;Signwriting Hand-Circle Index Bent +\U0001D808;Signwriting Hand-Fist Thumb Under Index Bent +\U0001D809;Signwriting Hand-Fist Index Raised Knuckle +\U0001D80A;Signwriting Hand-Fist Index Cupped +\U0001D80B;Signwriting Hand-Fist Index Hinged +\U0001D80C;Signwriting Hand-Fist Index Hinged Low +\U0001D80D;Signwriting Hand-Circle Index Hinge +\U0001D80E;Signwriting Hand-Fist Index Middle +\U0001D80F;Signwriting Hand-Circle Index Middle +\U0001D810;Signwriting Hand-Fist Index Middle Bent +\U0001D811;Signwriting Hand-Fist Index Middle Raised Knuckles +\U0001D812;Signwriting Hand-Fist Index Middle Hinged +\U0001D813;Signwriting Hand-Fist Index Up Middle Hinged +\U0001D814;Signwriting Hand-Fist Index Hinged Middle Up +\U0001D815;Signwriting Hand-Fist Index Middle Conjoined +\U0001D816;Signwriting Hand-Fist Index Middle Conjoined Index Bent +\U0001D817;Signwriting Hand-Fist Index Middle Conjoined Middle Bent +\U0001D818;Signwriting Hand-Fist Index Middle Conjoined Cupped +\U0001D819;Signwriting Hand-Fist Index Middle Conjoined Hinged +\U0001D81A;Signwriting Hand-Fist Index Middle Crossed +\U0001D81B;Signwriting Hand-Circle Index Middle Crossed +\U0001D81C;Signwriting Hand-Fist Middle Bent Over Index +\U0001D81D;Signwriting Hand-Fist Index Bent Over Middle +\U0001D81E;Signwriting Hand-Fist Index Middle Thumb +\U0001D81F;Signwriting Hand-Circle Index Middle Thumb +\U0001D820;Signwriting Hand-Fist Index Middle Straight Thumb Bent +\U0001D821;Signwriting Hand-Fist Index Middle Bent Thumb Straight +\U0001D822;Signwriting Hand-Fist Index Middle Thumb Bent +\U0001D823;Signwriting Hand-Fist Index Middle Hinged Spread Thumb Side +\U0001D824;Signwriting Hand-Fist Index Up Middle Hinged Thumb Side +\U0001D825;Signwriting Hand-Fist Index Up Middle Hinged Thumb Conjoined +\U0001D826;Signwriting Hand-Fist Index Hinged Middle Up Thumb Side +\U0001D827;Signwriting Hand-Fist Index Middle Up Spread Thumb Forward +\U0001D828;Signwriting Hand-Fist Index Middle Thumb Cupped +\U0001D829;Signwriting Hand-Fist Index Middle Thumb Circled +\U0001D82A;Signwriting Hand-Fist Index Middle Thumb Hooked +\U0001D82B;Signwriting Hand-Fist Index Middle Thumb Hinged +\U0001D82C;Signwriting Hand-Fist Thumb Between Index Middle Straight +\U0001D82D;Signwriting Hand-Fist Index Middle Conjoined Thumb Side +\U0001D82E;Signwriting Hand-Fist Index Middle Conjoined Thumb Side Conjoined +\U0001D82F;Signwriting Hand-Fist Index Middle Conjoined Thumb Side Bent +\U0001D830;Signwriting Hand-Fist Middle Thumb Hooked Index Up +\U0001D831;Signwriting Hand-Fist Index Thumb Hooked Middle Up +\U0001D832;Signwriting Hand-Fist Index Middle Conjoined Hinged Thumb Side +\U0001D833;Signwriting Hand-Fist Index Middle Crossed Thumb Side +\U0001D834;Signwriting Hand-Fist Index Middle Conjoined Thumb Forward +\U0001D835;Signwriting Hand-Fist Index Middle Conjoined Cupped Thumb Forward +\U0001D836;Signwriting Hand-Fist Middle Thumb Cupped Index Up +\U0001D837;Signwriting Hand-Fist Index Thumb Cupped Middle Up +\U0001D838;Signwriting Hand-Fist Middle Thumb Circled Index Up +\U0001D839;Signwriting Hand-Fist Middle Thumb Circled Index Hinged +\U0001D83A;Signwriting Hand-Fist Index Thumb Angled Out Middle Up +\U0001D83B;Signwriting Hand-Fist Index Thumb Angled In Middle Up +\U0001D83C;Signwriting Hand-Fist Index Thumb Circled Middle Up +\U0001D83D;Signwriting Hand-Fist Index Middle Thumb Conjoined Hinged +\U0001D83E;Signwriting Hand-Fist Index Middle Thumb Angled Out +\U0001D83F;Signwriting Hand-Fist Index Middle Thumb Angled +\U0001D840;Signwriting Hand-Fist Middle Thumb Angled Out Index Up +\U0001D841;Signwriting Hand-Fist Middle Thumb Angled Out Index Crossed +\U0001D842;Signwriting Hand-Fist Middle Thumb Angled Index Up +\U0001D843;Signwriting Hand-Fist Index Thumb Hooked Middle Hinged +\U0001D844;Signwriting Hand-Flat Four Fingers +\U0001D845;Signwriting Hand-Flat Four Fingers Bent +\U0001D846;Signwriting Hand-Flat Four Fingers Hinged +\U0001D847;Signwriting Hand-Flat Four Fingers Conjoined +\U0001D848;Signwriting Hand-Flat Four Fingers Conjoined Split +\U0001D849;Signwriting Hand-Claw Four Fingers Conjoined +\U0001D84A;Signwriting Hand-Fist Four Fingers Conjoined Bent +\U0001D84B;Signwriting Hand-Hinge Four Fingers Conjoined +\U0001D84C;Signwriting Hand-Flat Five Fingers Spread +\U0001D84D;Signwriting Hand-Flat Heel Five Fingers Spread +\U0001D84E;Signwriting Hand-Flat Five Fingers Spread Four Bent +\U0001D84F;Signwriting Hand-Flat Heel Five Fingers Spread Four Bent +\U0001D850;Signwriting Hand-Flat Five Fingers Spread Bent +\U0001D851;Signwriting Hand-Flat Heel Five Fingers Spread Bent +\U0001D852;Signwriting Hand-Flat Five Fingers Spread Thumb Forward +\U0001D853;Signwriting Hand-Cup Five Fingers Spread +\U0001D854;Signwriting Hand-Cup Five Fingers Spread Open +\U0001D855;Signwriting Hand-Hinge Five Fingers Spread Open +\U0001D856;Signwriting Hand-Oval Five Fingers Spread +\U0001D857;Signwriting Hand-Flat Five Fingers Spread Hinged +\U0001D858;Signwriting Hand-Flat Five Fingers Spread Hinged Thumb Side +\U0001D859;Signwriting Hand-Flat Five Fingers Spread Hinged No Thumb +\U0001D85A;Signwriting Hand-Flat +\U0001D85B;Signwriting Hand-Flat Between Palm Facings +\U0001D85C;Signwriting Hand-Flat Heel +\U0001D85D;Signwriting Hand-Flat Thumb Side +\U0001D85E;Signwriting Hand-Flat Heel Thumb Side +\U0001D85F;Signwriting Hand-Flat Thumb Bent +\U0001D860;Signwriting Hand-Flat Thumb Forward +\U0001D861;Signwriting Hand-Flat Split Index Thumb Side +\U0001D862;Signwriting Hand-Flat Split Centre +\U0001D863;Signwriting Hand-Flat Split Centre Thumb Side +\U0001D864;Signwriting Hand-Flat Split Centre Thumb Side Bent +\U0001D865;Signwriting Hand-Flat Split Little +\U0001D866;Signwriting Hand-Claw +\U0001D867;Signwriting Hand-Claw Thumb Side +\U0001D868;Signwriting Hand-Claw No Thumb +\U0001D869;Signwriting Hand-Claw Thumb Forward +\U0001D86A;Signwriting Hand-Hook Curlicue +\U0001D86B;Signwriting Hand-Hook +\U0001D86C;Signwriting Hand-Cup Open +\U0001D86D;Signwriting Hand-Cup +\U0001D86E;Signwriting Hand-Cup Open Thumb Side +\U0001D86F;Signwriting Hand-Cup Thumb Side +\U0001D870;Signwriting Hand-Cup Open No Thumb +\U0001D871;Signwriting Hand-Cup No Thumb +\U0001D872;Signwriting Hand-Cup Open Thumb Forward +\U0001D873;Signwriting Hand-Cup Thumb Forward +\U0001D874;Signwriting Hand-Curlicue Open +\U0001D875;Signwriting Hand-Curlicue +\U0001D876;Signwriting Hand-Circle +\U0001D877;Signwriting Hand-Oval +\U0001D878;Signwriting Hand-Oval Thumb Side +\U0001D879;Signwriting Hand-Oval No Thumb +\U0001D87A;Signwriting Hand-Oval Thumb Forward +\U0001D87B;Signwriting Hand-Hinge Open +\U0001D87C;Signwriting Hand-Hinge Open Thumb Forward +\U0001D87D;Signwriting Hand-Hinge +\U0001D87E;Signwriting Hand-Hinge Small +\U0001D87F;Signwriting Hand-Hinge Open Thumb Side +\U0001D880;Signwriting Hand-Hinge Thumb Side +\U0001D881;Signwriting Hand-Hinge Open No Thumb +\U0001D882;Signwriting Hand-Hinge No Thumb +\U0001D883;Signwriting Hand-Hinge Thumb Side Touching Index +\U0001D884;Signwriting Hand-Hinge Thumb Between Middle Ring +\U0001D885;Signwriting Hand-Angle +\U0001D886;Signwriting Hand-Fist Index Middle Ring +\U0001D887;Signwriting Hand-Circle Index Middle Ring +\U0001D888;Signwriting Hand-Hinge Index Middle Ring +\U0001D889;Signwriting Hand-Angle Index Middle Ring +\U0001D88A;Signwriting Hand-Hinge Little +\U0001D88B;Signwriting Hand-Fist Index Middle Ring Bent +\U0001D88C;Signwriting Hand-Fist Index Middle Ring Conjoined +\U0001D88D;Signwriting Hand-Hinge Index Middle Ring Conjoined +\U0001D88E;Signwriting Hand-Fist Little Down +\U0001D88F;Signwriting Hand-Fist Little Down Ripple Straight +\U0001D890;Signwriting Hand-Fist Little Down Ripple Curved +\U0001D891;Signwriting Hand-Fist Little Down Others Circled +\U0001D892;Signwriting Hand-Fist Little Up +\U0001D893;Signwriting Hand-Fist Thumb Under Little Up +\U0001D894;Signwriting Hand-Circle Little Up +\U0001D895;Signwriting Hand-Oval Little Up +\U0001D896;Signwriting Hand-Angle Little Up +\U0001D897;Signwriting Hand-Fist Little Raised Knuckle +\U0001D898;Signwriting Hand-Fist Little Bent +\U0001D899;Signwriting Hand-Fist Little Touches Thumb +\U0001D89A;Signwriting Hand-Fist Little Thumb +\U0001D89B;Signwriting Hand-Hinge Little Thumb +\U0001D89C;Signwriting Hand-Fist Little Index Thumb +\U0001D89D;Signwriting Hand-Hinge Little Index Thumb +\U0001D89E;Signwriting Hand-Angle Little Index Thumb Index Thumb Out +\U0001D89F;Signwriting Hand-Angle Little Index Thumb Index Thumb +\U0001D8A0;Signwriting Hand-Fist Little Index +\U0001D8A1;Signwriting Hand-Circle Little Index +\U0001D8A2;Signwriting Hand-Hinge Little Index +\U0001D8A3;Signwriting Hand-Angle Little Index +\U0001D8A4;Signwriting Hand-Fist Index Middle Little +\U0001D8A5;Signwriting Hand-Circle Index Middle Little +\U0001D8A6;Signwriting Hand-Hinge Index Middle Little +\U0001D8A7;Signwriting Hand-Hinge Ring +\U0001D8A8;Signwriting Hand-Angle Index Middle Little +\U0001D8A9;Signwriting Hand-Fist Index Middle Cross Little +\U0001D8AA;Signwriting Hand-Circle Index Middle Cross Little +\U0001D8AB;Signwriting Hand-Fist Ring Down +\U0001D8AC;Signwriting Hand-Hinge Ring Down Index Thumb Hook Middle +\U0001D8AD;Signwriting Hand-Angle Ring Down Middle Thumb Index Cross +\U0001D8AE;Signwriting Hand-Fist Ring Up +\U0001D8AF;Signwriting Hand-Fist Ring Raised Knuckle +\U0001D8B0;Signwriting Hand-Fist Ring Little +\U0001D8B1;Signwriting Hand-Circle Ring Little +\U0001D8B2;Signwriting Hand-Oval Ring Little +\U0001D8B3;Signwriting Hand-Angle Ring Little +\U0001D8B4;Signwriting Hand-Fist Ring Middle +\U0001D8B5;Signwriting Hand-Fist Ring Middle Conjoined +\U0001D8B6;Signwriting Hand-Fist Ring Middle Raised Knuckles +\U0001D8B7;Signwriting Hand-Fist Ring Index +\U0001D8B8;Signwriting Hand-Fist Ring Thumb +\U0001D8B9;Signwriting Hand-Hook Ring Thumb +\U0001D8BA;Signwriting Hand-Fist Index Ring Little +\U0001D8BB;Signwriting Hand-Circle Index Ring Little +\U0001D8BC;Signwriting Hand-Curlicue Index Ring Little On +\U0001D8BD;Signwriting Hand-Hook Index Ring Little Out +\U0001D8BE;Signwriting Hand-Hook Index Ring Little In +\U0001D8BF;Signwriting Hand-Hook Index Ring Little Under +\U0001D8C0;Signwriting Hand-Cup Index Ring Little +\U0001D8C1;Signwriting Hand-Hinge Index Ring Little +\U0001D8C2;Signwriting Hand-Angle Index Ring Little Out +\U0001D8C3;Signwriting Hand-Angle Index Ring Little +\U0001D8C4;Signwriting Hand-Fist Middle Down +\U0001D8C5;Signwriting Hand-Hinge Middle +\U0001D8C6;Signwriting Hand-Fist Middle Up +\U0001D8C7;Signwriting Hand-Circle Middle Up +\U0001D8C8;Signwriting Hand-Fist Middle Raised Knuckle +\U0001D8C9;Signwriting Hand-Fist Middle Up Thumb Side +\U0001D8CA;Signwriting Hand-Hook Middle Thumb +\U0001D8CB;Signwriting Hand-Fist Middle Thumb Little +\U0001D8CC;Signwriting Hand-Fist Middle Little +\U0001D8CD;Signwriting Hand-Fist Middle Ring Little +\U0001D8CE;Signwriting Hand-Circle Middle Ring Little +\U0001D8CF;Signwriting Hand-Curlicue Middle Ring Little On +\U0001D8D0;Signwriting Hand-Cup Middle Ring Little +\U0001D8D1;Signwriting Hand-Hinge Middle Ring Little +\U0001D8D2;Signwriting Hand-Angle Middle Ring Little Out +\U0001D8D3;Signwriting Hand-Angle Middle Ring Little In +\U0001D8D4;Signwriting Hand-Angle Middle Ring Little +\U0001D8D5;Signwriting Hand-Circle Middle Ring Little Bent +\U0001D8D6;Signwriting Hand-Claw Middle Ring Little Conjoined +\U0001D8D7;Signwriting Hand-Claw Middle Ring Little Conjoined Side +\U0001D8D8;Signwriting Hand-Hook Middle Ring Little Conjoined Out +\U0001D8D9;Signwriting Hand-Hook Middle Ring Little Conjoined In +\U0001D8DA;Signwriting Hand-Hook Middle Ring Little Conjoined +\U0001D8DB;Signwriting Hand-Hinge Index Hinged +\U0001D8DC;Signwriting Hand-Fist Index Thumb Side +\U0001D8DD;Signwriting Hand-Hinge Index Thumb Side +\U0001D8DE;Signwriting Hand-Fist Index Thumb Side Thumb Diagonal +\U0001D8DF;Signwriting Hand-Fist Index Thumb Side Thumb Conjoined +\U0001D8E0;Signwriting Hand-Fist Index Thumb Side Thumb Bent +\U0001D8E1;Signwriting Hand-Fist Index Thumb Side Index Bent +\U0001D8E2;Signwriting Hand-Fist Index Thumb Side Both Bent +\U0001D8E3;Signwriting Hand-Fist Index Thumb Side Index Hinge +\U0001D8E4;Signwriting Hand-Fist Index Thumb Forward Index Straight +\U0001D8E5;Signwriting Hand-Fist Index Thumb Forward Index Bent +\U0001D8E6;Signwriting Hand-Fist Index Thumb Hook +\U0001D8E7;Signwriting Hand-Fist Index Thumb Curlicue +\U0001D8E8;Signwriting Hand-Fist Index Thumb Curve Thumb Inside +\U0001D8E9;Signwriting Hand-Claw Index Thumb Curve Thumb Inside +\U0001D8EA;Signwriting Hand-Fist Index Thumb Curve Thumb Under +\U0001D8EB;Signwriting Hand-Fist Index Thumb Circle +\U0001D8EC;Signwriting Hand-Cup Index Thumb +\U0001D8ED;Signwriting Hand-Cup Index Thumb Open +\U0001D8EE;Signwriting Hand-Hinge Index Thumb Open +\U0001D8EF;Signwriting Hand-Hinge Index Thumb Large +\U0001D8F0;Signwriting Hand-Hinge Index Thumb +\U0001D8F1;Signwriting Hand-Hinge Index Thumb Small +\U0001D8F2;Signwriting Hand-Angle Index Thumb Out +\U0001D8F3;Signwriting Hand-Angle Index Thumb In +\U0001D8F4;Signwriting Hand-Angle Index Thumb +\U0001D8F5;Signwriting Hand-Fist Thumb +\U0001D8F6;Signwriting Hand-Fist Thumb Heel +\U0001D8F7;Signwriting Hand-Fist Thumb Side Diagonal +\U0001D8F8;Signwriting Hand-Fist Thumb Side Conjoined +\U0001D8F9;Signwriting Hand-Fist Thumb Side Bent +\U0001D8FA;Signwriting Hand-Fist Thumb Forward +\U0001D8FB;Signwriting Hand-Fist Thumb Between Index Middle +\U0001D8FC;Signwriting Hand-Fist Thumb Between Middle Ring +\U0001D8FD;Signwriting Hand-Fist Thumb Between Ring Little +\U0001D8FE;Signwriting Hand-Fist Thumb Under Two Fingers +\U0001D8FF;Signwriting Hand-Fist Thumb Over Two Fingers +\U0001D900;Signwriting Hand-Fist Thumb Under Three Fingers +\U0001D901;Signwriting Hand-Fist Thumb Under Four Fingers +\U0001D902;Signwriting Hand-Fist Thumb Over Four Raised Knuckles +\U0001D903;Signwriting Hand-Fist +\U0001D904;Signwriting Hand-Fist Heel +\U0001D905;Signwriting Touch Single +\U0001D906;Signwriting Touch Multiple +\U0001D907;Signwriting Touch Between +\U0001D908;Signwriting Grasp Single +\U0001D909;Signwriting Grasp Multiple +\U0001D90A;Signwriting Grasp Between +\U0001D90B;Signwriting Strike Single +\U0001D90C;Signwriting Strike Multiple +\U0001D90D;Signwriting Strike Between +\U0001D90E;Signwriting Brush Single +\U0001D90F;Signwriting Brush Multiple +\U0001D910;Signwriting Brush Between +\U0001D911;Signwriting Rub Single +\U0001D912;Signwriting Rub Multiple +\U0001D913;Signwriting Rub Between +\U0001D914;Signwriting Surface Symbols +\U0001D915;Signwriting Surface Between +\U0001D916;Signwriting Squeeze Large Single +\U0001D917;Signwriting Squeeze Small Single +\U0001D918;Signwriting Squeeze Large Multiple +\U0001D919;Signwriting Squeeze Small Multiple +\U0001D91A;Signwriting Squeeze Sequential +\U0001D91B;Signwriting Flick Large Single +\U0001D91C;Signwriting Flick Small Single +\U0001D91D;Signwriting Flick Large Multiple +\U0001D91E;Signwriting Flick Small Multiple +\U0001D91F;Signwriting Flick Sequential +\U0001D920;Signwriting Squeeze Flick Alternating +\U0001D921;Signwriting Movement-Hinge Up Down Large +\U0001D922;Signwriting Movement-Hinge Up Down Small +\U0001D923;Signwriting Movement-Hinge Up Sequential +\U0001D924;Signwriting Movement-Hinge Down Sequential +\U0001D925;Signwriting Movement-Hinge Up Down Alternating Large +\U0001D926;Signwriting Movement-Hinge Up Down Alternating Small +\U0001D927;Signwriting Movement-Hinge Side To Side Scissors +\U0001D928;Signwriting Movement-Wallplane Finger Contact +\U0001D929;Signwriting Movement-Floorplane Finger Contact +\U0001D92A;Signwriting Movement-Wallplane Single Straight Small +\U0001D92B;Signwriting Movement-Wallplane Single Straight Medium +\U0001D92C;Signwriting Movement-Wallplane Single Straight Large +\U0001D92D;Signwriting Movement-Wallplane Single Straight Largest +\U0001D92E;Signwriting Movement-Wallplane Single Wrist Flex +\U0001D92F;Signwriting Movement-Wallplane Double Straight +\U0001D930;Signwriting Movement-Wallplane Double Wrist Flex +\U0001D931;Signwriting Movement-Wallplane Double Alternating +\U0001D932;Signwriting Movement-Wallplane Double Alternating Wrist Flex +\U0001D933;Signwriting Movement-Wallplane Cross +\U0001D934;Signwriting Movement-Wallplane Triple Straight Movement +\U0001D935;Signwriting Movement-Wallplane Triple Wrist Flex +\U0001D936;Signwriting Movement-Wallplane Triple Alternating +\U0001D937;Signwriting Movement-Wallplane Triple Alternating Wrist Flex +\U0001D938;Signwriting Movement-Wallplane Bend Small +\U0001D939;Signwriting Movement-Wallplane Bend Medium +\U0001D93A;Signwriting Movement-Wallplane Bend Large +\U0001D93B;Signwriting Movement-Wallplane Corner Small +\U0001D93C;Signwriting Movement-Wallplane Corner Medium +\U0001D93D;Signwriting Movement-Wallplane Corner Large +\U0001D93E;Signwriting Movement-Wallplane Corner Rotation +\U0001D93F;Signwriting Movement-Wallplane Check Small +\U0001D940;Signwriting Movement-Wallplane Check Medium +\U0001D941;Signwriting Movement-Wallplane Check Large +\U0001D942;Signwriting Movement-Wallplane Box Small +\U0001D943;Signwriting Movement-Wallplane Box Medium +\U0001D944;Signwriting Movement-Wallplane Box Large +\U0001D945;Signwriting Movement-Wallplane Zigzag Small +\U0001D946;Signwriting Movement-Wallplane Zigzag Medium +\U0001D947;Signwriting Movement-Wallplane Zigzag Large +\U0001D948;Signwriting Movement-Wallplane Peaks Small +\U0001D949;Signwriting Movement-Wallplane Peaks Medium +\U0001D94A;Signwriting Movement-Wallplane Peaks Large +\U0001D94B;Signwriting Travel-Wallplane Rotation-Wallplane Single +\U0001D94C;Signwriting Travel-Wallplane Rotation-Wallplane Double +\U0001D94D;Signwriting Travel-Wallplane Rotation-Wallplane Alternating +\U0001D94E;Signwriting Travel-Wallplane Rotation-Floorplane Single +\U0001D94F;Signwriting Travel-Wallplane Rotation-Floorplane Double +\U0001D950;Signwriting Travel-Wallplane Rotation-Floorplane Alternating +\U0001D951;Signwriting Travel-Wallplane Shaking +\U0001D952;Signwriting Travel-Wallplane Arm Spiral Single +\U0001D953;Signwriting Travel-Wallplane Arm Spiral Double +\U0001D954;Signwriting Travel-Wallplane Arm Spiral Triple +\U0001D955;Signwriting Movement-Diagonal Away Small +\U0001D956;Signwriting Movement-Diagonal Away Medium +\U0001D957;Signwriting Movement-Diagonal Away Large +\U0001D958;Signwriting Movement-Diagonal Away Largest +\U0001D959;Signwriting Movement-Diagonal Towards Small +\U0001D95A;Signwriting Movement-Diagonal Towards Medium +\U0001D95B;Signwriting Movement-Diagonal Towards Large +\U0001D95C;Signwriting Movement-Diagonal Towards Largest +\U0001D95D;Signwriting Movement-Diagonal Between Away Small +\U0001D95E;Signwriting Movement-Diagonal Between Away Medium +\U0001D95F;Signwriting Movement-Diagonal Between Away Large +\U0001D960;Signwriting Movement-Diagonal Between Away Largest +\U0001D961;Signwriting Movement-Diagonal Between Towards Small +\U0001D962;Signwriting Movement-Diagonal Between Towards Medium +\U0001D963;Signwriting Movement-Diagonal Between Towards Large +\U0001D964;Signwriting Movement-Diagonal Between Towards Largest +\U0001D965;Signwriting Movement-Floorplane Single Straight Small +\U0001D966;Signwriting Movement-Floorplane Single Straight Medium +\U0001D967;Signwriting Movement-Floorplane Single Straight Large +\U0001D968;Signwriting Movement-Floorplane Single Straight Largest +\U0001D969;Signwriting Movement-Floorplane Single Wrist Flex +\U0001D96A;Signwriting Movement-Floorplane Double Straight +\U0001D96B;Signwriting Movement-Floorplane Double Wrist Flex +\U0001D96C;Signwriting Movement-Floorplane Double Alternating +\U0001D96D;Signwriting Movement-Floorplane Double Alternating Wrist Flex +\U0001D96E;Signwriting Movement-Floorplane Cross +\U0001D96F;Signwriting Movement-Floorplane Triple Straight Movement +\U0001D970;Signwriting Movement-Floorplane Triple Wrist Flex +\U0001D971;Signwriting Movement-Floorplane Triple Alternating Movement +\U0001D972;Signwriting Movement-Floorplane Triple Alternating Wrist Flex +\U0001D973;Signwriting Movement-Floorplane Bend +\U0001D974;Signwriting Movement-Floorplane Corner Small +\U0001D975;Signwriting Movement-Floorplane Corner Medium +\U0001D976;Signwriting Movement-Floorplane Corner Large +\U0001D977;Signwriting Movement-Floorplane Check +\U0001D978;Signwriting Movement-Floorplane Box Small +\U0001D979;Signwriting Movement-Floorplane Box Medium +\U0001D97A;Signwriting Movement-Floorplane Box Large +\U0001D97B;Signwriting Movement-Floorplane Zigzag Small +\U0001D97C;Signwriting Movement-Floorplane Zigzag Medium +\U0001D97D;Signwriting Movement-Floorplane Zigzag Large +\U0001D97E;Signwriting Movement-Floorplane Peaks Small +\U0001D97F;Signwriting Movement-Floorplane Peaks Medium +\U0001D980;Signwriting Movement-Floorplane Peaks Large +\U0001D981;Signwriting Travel-Floorplane Rotation-Floorplane Single +\U0001D982;Signwriting Travel-Floorplane Rotation-Floorplane Double +\U0001D983;Signwriting Travel-Floorplane Rotation-Floorplane Alternating +\U0001D984;Signwriting Travel-Floorplane Rotation-Wallplane Single +\U0001D985;Signwriting Travel-Floorplane Rotation-Wallplane Double +\U0001D986;Signwriting Travel-Floorplane Rotation-Wallplane Alternating +\U0001D987;Signwriting Travel-Floorplane Shaking +\U0001D988;Signwriting Movement-Wallplane Curve Quarter Small +\U0001D989;Signwriting Movement-Wallplane Curve Quarter Medium +\U0001D98A;Signwriting Movement-Wallplane Curve Quarter Large +\U0001D98B;Signwriting Movement-Wallplane Curve Quarter Largest +\U0001D98C;Signwriting Movement-Wallplane Curve Half-Circle Small +\U0001D98D;Signwriting Movement-Wallplane Curve Half-Circle Medium +\U0001D98E;Signwriting Movement-Wallplane Curve Half-Circle Large +\U0001D98F;Signwriting Movement-Wallplane Curve Half-Circle Largest +\U0001D990;Signwriting Movement-Wallplane Curve Three-Quarter Circle Small +\U0001D991;Signwriting Movement-Wallplane Curve Three-Quarter Circle Medium +\U0001D992;Signwriting Movement-Wallplane Hump Small +\U0001D993;Signwriting Movement-Wallplane Hump Medium +\U0001D994;Signwriting Movement-Wallplane Hump Large +\U0001D995;Signwriting Movement-Wallplane Loop Small +\U0001D996;Signwriting Movement-Wallplane Loop Medium +\U0001D997;Signwriting Movement-Wallplane Loop Large +\U0001D998;Signwriting Movement-Wallplane Loop Small Double +\U0001D999;Signwriting Movement-Wallplane Wave Curve Double Small +\U0001D99A;Signwriting Movement-Wallplane Wave Curve Double Medium +\U0001D99B;Signwriting Movement-Wallplane Wave Curve Double Large +\U0001D99C;Signwriting Movement-Wallplane Wave Curve Triple Small +\U0001D99D;Signwriting Movement-Wallplane Wave Curve Triple Medium +\U0001D99E;Signwriting Movement-Wallplane Wave Curve Triple Large +\U0001D99F;Signwriting Movement-Wallplane Curve Then Straight +\U0001D9A0;Signwriting Movement-Wallplane Curved Cross Small +\U0001D9A1;Signwriting Movement-Wallplane Curved Cross Medium +\U0001D9A2;Signwriting Rotation-Wallplane Single +\U0001D9A3;Signwriting Rotation-Wallplane Double +\U0001D9A4;Signwriting Rotation-Wallplane Alternate +\U0001D9A5;Signwriting Movement-Wallplane Shaking +\U0001D9A6;Signwriting Movement-Wallplane Curve Hitting Front Wall +\U0001D9A7;Signwriting Movement-Wallplane Hump Hitting Front Wall +\U0001D9A8;Signwriting Movement-Wallplane Loop Hitting Front Wall +\U0001D9A9;Signwriting Movement-Wallplane Wave Hitting Front Wall +\U0001D9AA;Signwriting Rotation-Wallplane Single Hitting Front Wall +\U0001D9AB;Signwriting Rotation-Wallplane Double Hitting Front Wall +\U0001D9AC;Signwriting Rotation-Wallplane Alternating Hitting Front Wall +\U0001D9AD;Signwriting Movement-Wallplane Curve Hitting Chest +\U0001D9AE;Signwriting Movement-Wallplane Hump Hitting Chest +\U0001D9AF;Signwriting Movement-Wallplane Loop Hitting Chest +\U0001D9B0;Signwriting Movement-Wallplane Wave Hitting Chest +\U0001D9B1;Signwriting Rotation-Wallplane Single Hitting Chest +\U0001D9B2;Signwriting Rotation-Wallplane Double Hitting Chest +\U0001D9B3;Signwriting Rotation-Wallplane Alternating Hitting Chest +\U0001D9B4;Signwriting Movement-Wallplane Wave Diagonal Path Small +\U0001D9B5;Signwriting Movement-Wallplane Wave Diagonal Path Medium +\U0001D9B6;Signwriting Movement-Wallplane Wave Diagonal Path Large +\U0001D9B7;Signwriting Movement-Floorplane Curve Hitting Ceiling Small +\U0001D9B8;Signwriting Movement-Floorplane Curve Hitting Ceiling Large +\U0001D9B9;Signwriting Movement-Floorplane Hump Hitting Ceiling Small Double +\U0001D9BA;Signwriting Movement-Floorplane Hump Hitting Ceiling Large Double +\U0001D9BB;Signwriting Movement-Floorplane Hump Hitting Ceiling Small Triple +\U0001D9BC;Signwriting Movement-Floorplane Hump Hitting Ceiling Large Triple +\U0001D9BD;Signwriting Movement-Floorplane Loop Hitting Ceiling Small Single +\U0001D9BE;Signwriting Movement-Floorplane Loop Hitting Ceiling Large Single +\U0001D9BF;Signwriting Movement-Floorplane Loop Hitting Ceiling Small Double +\U0001D9C0;Signwriting Movement-Floorplane Loop Hitting Ceiling Large Double +\U0001D9C1;Signwriting Movement-Floorplane Wave Hitting Ceiling Small +\U0001D9C2;Signwriting Movement-Floorplane Wave Hitting Ceiling Large +\U0001D9C3;Signwriting Rotation-Floorplane Single Hitting Ceiling +\U0001D9C4;Signwriting Rotation-Floorplane Double Hitting Ceiling +\U0001D9C5;Signwriting Rotation-Floorplane Alternating Hitting Ceiling +\U0001D9C6;Signwriting Movement-Floorplane Curve Hitting Floor Small +\U0001D9C7;Signwriting Movement-Floorplane Curve Hitting Floor Large +\U0001D9C8;Signwriting Movement-Floorplane Hump Hitting Floor Small Double +\U0001D9C9;Signwriting Movement-Floorplane Hump Hitting Floor Large Double +\U0001D9CA;Signwriting Movement-Floorplane Hump Hitting Floor Triple Small Triple +\U0001D9CB;Signwriting Movement-Floorplane Hump Hitting Floor Triple Large Triple +\U0001D9CC;Signwriting Movement-Floorplane Loop Hitting Floor Small Single +\U0001D9CD;Signwriting Movement-Floorplane Loop Hitting Floor Large Single +\U0001D9CE;Signwriting Movement-Floorplane Loop Hitting Floor Small Double +\U0001D9CF;Signwriting Movement-Floorplane Loop Hitting Floor Large Double +\U0001D9D0;Signwriting Movement-Floorplane Wave Hitting Floor Small +\U0001D9D1;Signwriting Movement-Floorplane Wave Hitting Floor Large +\U0001D9D2;Signwriting Rotation-Floorplane Single Hitting Floor +\U0001D9D3;Signwriting Rotation-Floorplane Double Hitting Floor +\U0001D9D4;Signwriting Rotation-Floorplane Alternating Hitting Floor +\U0001D9D5;Signwriting Movement-Floorplane Curve Small +\U0001D9D6;Signwriting Movement-Floorplane Curve Medium +\U0001D9D7;Signwriting Movement-Floorplane Curve Large +\U0001D9D8;Signwriting Movement-Floorplane Curve Largest +\U0001D9D9;Signwriting Movement-Floorplane Curve Combined +\U0001D9DA;Signwriting Movement-Floorplane Hump Small +\U0001D9DB;Signwriting Movement-Floorplane Loop Small +\U0001D9DC;Signwriting Movement-Floorplane Wave Snake +\U0001D9DD;Signwriting Movement-Floorplane Wave Small +\U0001D9DE;Signwriting Movement-Floorplane Wave Large +\U0001D9DF;Signwriting Rotation-Floorplane Single +\U0001D9E0;Signwriting Rotation-Floorplane Double +\U0001D9E1;Signwriting Rotation-Floorplane Alternating +\U0001D9E2;Signwriting Movement-Floorplane Shaking Parallel +\U0001D9E3;Signwriting Movement-Wallplane Arm Circle Small Single +\U0001D9E4;Signwriting Movement-Wallplane Arm Circle Medium Single +\U0001D9E5;Signwriting Movement-Wallplane Arm Circle Small Double +\U0001D9E6;Signwriting Movement-Wallplane Arm Circle Medium Double +\U0001D9E7;Signwriting Movement-Floorplane Arm Circle Hitting Wall Small Single +\U0001D9E8;Signwriting Movement-Floorplane Arm Circle Hitting Wall Medium Single +\U0001D9E9;Signwriting Movement-Floorplane Arm Circle Hitting Wall Large Single +\U0001D9EA;Signwriting Movement-Floorplane Arm Circle Hitting Wall Small Double +\U0001D9EB;Signwriting Movement-Floorplane Arm Circle Hitting Wall Medium Double +\U0001D9EC;Signwriting Movement-Floorplane Arm Circle Hitting Wall Large Double +\U0001D9ED;Signwriting Movement-Wallplane Wrist Circle Front Single +\U0001D9EE;Signwriting Movement-Wallplane Wrist Circle Front Double +\U0001D9EF;Signwriting Movement-Floorplane Wrist Circle Hitting Wall Single +\U0001D9F0;Signwriting Movement-Floorplane Wrist Circle Hitting Wall Double +\U0001D9F1;Signwriting Movement-Wallplane Finger Circles Single +\U0001D9F2;Signwriting Movement-Wallplane Finger Circles Double +\U0001D9F3;Signwriting Movement-Floorplane Finger Circles Hitting Wall Single +\U0001D9F4;Signwriting Movement-Floorplane Finger Circles Hitting Wall Double +\U0001D9F5;Signwriting Dynamic Arrowhead Small +\U0001D9F6;Signwriting Dynamic Arrowhead Large +\U0001D9F7;Signwriting Dynamic Fast +\U0001D9F8;Signwriting Dynamic Slow +\U0001D9F9;Signwriting Dynamic Tense +\U0001D9FA;Signwriting Dynamic Relaxed +\U0001D9FB;Signwriting Dynamic Simultaneous +\U0001D9FC;Signwriting Dynamic Simultaneous Alternating +\U0001D9FD;Signwriting Dynamic Every Other Time +\U0001D9FE;Signwriting Dynamic Gradual +\U0001D9FF;Signwriting Head +\U0001DA00;Signwriting Head Rim +\U0001DA01;Signwriting Head Movement-Wallplane Straight +\U0001DA02;Signwriting Head Movement-Wallplane Tilt +\U0001DA03;Signwriting Head Movement-Floorplane Straight +\U0001DA04;Signwriting Head Movement-Wallplane Curve +\U0001DA05;Signwriting Head Movement-Floorplane Curve +\U0001DA06;Signwriting Head Movement Circle +\U0001DA07;Signwriting Face Direction Position Nose Forward Tilting +\U0001DA08;Signwriting Face Direction Position Nose Up Or Down +\U0001DA09;Signwriting Face Direction Position Nose Up Or Down Tilting +\U0001DA0A;Signwriting Eyebrows Straight Up +\U0001DA0B;Signwriting Eyebrows Straight Neutral +\U0001DA0C;Signwriting Eyebrows Straight Down +\U0001DA0D;Signwriting Dreamy Eyebrows Neutral Down +\U0001DA0E;Signwriting Dreamy Eyebrows Down Neutral +\U0001DA0F;Signwriting Dreamy Eyebrows Up Neutral +\U0001DA10;Signwriting Dreamy Eyebrows Neutral Up +\U0001DA11;Signwriting Forehead Neutral +\U0001DA12;Signwriting Forehead Contact +\U0001DA13;Signwriting Forehead Wrinkled +\U0001DA14;Signwriting Eyes Open +\U0001DA15;Signwriting Eyes Squeezed +\U0001DA16;Signwriting Eyes Closed +\U0001DA17;Signwriting Eye Blink Single +\U0001DA18;Signwriting Eye Blink Multiple +\U0001DA19;Signwriting Eyes Half Open +\U0001DA1A;Signwriting Eyes Wide Open +\U0001DA1B;Signwriting Eyes Half Closed +\U0001DA1C;Signwriting Eyes Widening Movement +\U0001DA1D;Signwriting Eye Wink +\U0001DA1E;Signwriting Eyelashes Up +\U0001DA1F;Signwriting Eyelashes Down +\U0001DA20;Signwriting Eyelashes Fluttering +\U0001DA21;Signwriting Eyegaze-Wallplane Straight +\U0001DA22;Signwriting Eyegaze-Wallplane Straight Double +\U0001DA23;Signwriting Eyegaze-Wallplane Straight Alternating +\U0001DA24;Signwriting Eyegaze-Floorplane Straight +\U0001DA25;Signwriting Eyegaze-Floorplane Straight Double +\U0001DA26;Signwriting Eyegaze-Floorplane Straight Alternating +\U0001DA27;Signwriting Eyegaze-Wallplane Curved +\U0001DA28;Signwriting Eyegaze-Floorplane Curved +\U0001DA29;Signwriting Eyegaze-Wallplane Circling +\U0001DA2A;Signwriting Cheeks Puffed +\U0001DA2B;Signwriting Cheeks Neutral +\U0001DA2C;Signwriting Cheeks Sucked +\U0001DA2D;Signwriting Tense Cheeks High +\U0001DA2E;Signwriting Tense Cheeks Middle +\U0001DA2F;Signwriting Tense Cheeks Low +\U0001DA30;Signwriting Ears +\U0001DA31;Signwriting Nose Neutral +\U0001DA32;Signwriting Nose Contact +\U0001DA33;Signwriting Nose Wrinkles +\U0001DA34;Signwriting Nose Wiggles +\U0001DA35;Signwriting Air Blowing Out +\U0001DA36;Signwriting Air Sucking In +\U0001DA37;Signwriting Air Blow Small Rotations +\U0001DA38;Signwriting Air Suck Small Rotations +\U0001DA39;Signwriting Breath Inhale +\U0001DA3A;Signwriting Breath Exhale +\U0001DA3B;Signwriting Mouth Closed Neutral +\U0001DA3C;Signwriting Mouth Closed Forward +\U0001DA3D;Signwriting Mouth Closed Contact +\U0001DA3E;Signwriting Mouth Smile +\U0001DA3F;Signwriting Mouth Smile Wrinkled +\U0001DA40;Signwriting Mouth Smile Open +\U0001DA41;Signwriting Mouth Frown +\U0001DA42;Signwriting Mouth Frown Wrinkled +\U0001DA43;Signwriting Mouth Frown Open +\U0001DA44;Signwriting Mouth Open Circle +\U0001DA45;Signwriting Mouth Open Forward +\U0001DA46;Signwriting Mouth Open Wrinkled +\U0001DA47;Signwriting Mouth Open Oval +\U0001DA48;Signwriting Mouth Open Oval Wrinkled +\U0001DA49;Signwriting Mouth Open Oval Yawn +\U0001DA4A;Signwriting Mouth Open Rectangle +\U0001DA4B;Signwriting Mouth Open Rectangle Wrinkled +\U0001DA4C;Signwriting Mouth Open Rectangle Yawn +\U0001DA4D;Signwriting Mouth Kiss +\U0001DA4E;Signwriting Mouth Kiss Forward +\U0001DA4F;Signwriting Mouth Kiss Wrinkled +\U0001DA50;Signwriting Mouth Tense +\U0001DA51;Signwriting Mouth Tense Forward +\U0001DA52;Signwriting Mouth Tense Sucked +\U0001DA53;Signwriting Lips Pressed Together +\U0001DA54;Signwriting Lip Lower Over Upper +\U0001DA55;Signwriting Lip Upper Over Lower +\U0001DA56;Signwriting Mouth Corners +\U0001DA57;Signwriting Mouth Wrinkles Single +\U0001DA58;Signwriting Mouth Wrinkles Double +\U0001DA59;Signwriting Tongue Sticking Out Far +\U0001DA5A;Signwriting Tongue Licking Lips +\U0001DA5B;Signwriting Tongue Tip Between Lips +\U0001DA5C;Signwriting Tongue Tip Touching Inside Mouth +\U0001DA5D;Signwriting Tongue Inside Mouth Relaxed +\U0001DA5E;Signwriting Tongue Moves Against Cheek +\U0001DA5F;Signwriting Tongue Centre Sticking Out +\U0001DA60;Signwriting Tongue Centre Inside Mouth +\U0001DA61;Signwriting Teeth +\U0001DA62;Signwriting Teeth Movement +\U0001DA63;Signwriting Teeth On Tongue +\U0001DA64;Signwriting Teeth On Tongue Movement +\U0001DA65;Signwriting Teeth On Lips +\U0001DA66;Signwriting Teeth On Lips Movement +\U0001DA67;Signwriting Teeth Bite Lips +\U0001DA68;Signwriting Movement-Wallplane Jaw +\U0001DA69;Signwriting Movement-Floorplane Jaw +\U0001DA6A;Signwriting Neck +\U0001DA6B;Signwriting Hair +\U0001DA6C;Signwriting Excitement +\U0001DA6D;Signwriting Shoulder Hip Spine +\U0001DA6E;Signwriting Shoulder Hip Positions +\U0001DA6F;Signwriting Wallplane Shoulder Hip Move +\U0001DA70;Signwriting Floorplane Shoulder Hip Move +\U0001DA71;Signwriting Shoulder Tilting From Waist +\U0001DA72;Signwriting Torso-Wallplane Straight Stretch +\U0001DA73;Signwriting Torso-Wallplane Curved Bend +\U0001DA74;Signwriting Torso-Floorplane Twisting +\U0001DA75;Signwriting Upper Body Tilting From Hip Joints +\U0001DA76;Signwriting Limb Combination +\U0001DA77;Signwriting Limb Length-1 +\U0001DA78;Signwriting Limb Length-2 +\U0001DA79;Signwriting Limb Length-3 +\U0001DA7A;Signwriting Limb Length-4 +\U0001DA7B;Signwriting Limb Length-5 +\U0001DA7C;Signwriting Limb Length-6 +\U0001DA7D;Signwriting Limb Length-7 +\U0001DA7E;Signwriting Finger +\U0001DA7F;Signwriting Location-Wallplane Space +\U0001DA80;Signwriting Location-Floorplane Space +\U0001DA81;Signwriting Location Height +\U0001DA82;Signwriting Location Width +\U0001DA83;Signwriting Location Depth +\U0001DA84;Signwriting Location Head Neck +\U0001DA85;Signwriting Location Torso +\U0001DA86;Signwriting Location Limbs Digits +\U0001DA87;Signwriting Comma +\U0001DA88;Signwriting Full Stop +\U0001DA89;Signwriting Semicolon +\U0001DA8A;Signwriting Colon +\U0001DA8B;Signwriting Parenthesis +\U0001DA9B;Signwriting Fill Modifier-2 +\U0001DA9C;Signwriting Fill Modifier-3 +\U0001DA9D;Signwriting Fill Modifier-4 +\U0001DA9E;Signwriting Fill Modifier-5 +\U0001DA9F;Signwriting Fill Modifier-6 +\U0001DAA1;Signwriting Rotation Modifier-2 +\U0001DAA2;Signwriting Rotation Modifier-3 +\U0001DAA3;Signwriting Rotation Modifier-4 +\U0001DAA4;Signwriting Rotation Modifier-5 +\U0001DAA5;Signwriting Rotation Modifier-6 +\U0001DAA6;Signwriting Rotation Modifier-7 +\U0001DAA7;Signwriting Rotation Modifier-8 +\U0001DAA8;Signwriting Rotation Modifier-9 +\U0001DAA9;Signwriting Rotation Modifier-10 +\U0001DAAA;Signwriting Rotation Modifier-11 +\U0001DAAB;Signwriting Rotation Modifier-12 +\U0001DAAC;Signwriting Rotation Modifier-13 +\U0001DAAD;Signwriting Rotation Modifier-14 +\U0001DAAE;Signwriting Rotation Modifier-15 +\U0001DAAF;Signwriting Rotation Modifier-16 +\U0001DF00;Latin Small Letter Feng Digraph With Trill +\U0001DF01;Latin Small Letter Reversed Script G +\U0001DF02;Latin Letter Small Capital Turned G +\U0001DF03;Latin Small Letter Reversed K +\U0001DF04;Latin Letter Small Capital L With Belt +\U0001DF05;Latin Small Letter Lezh With Retroflex Hook +\U0001DF06;Latin Small Letter Turned Y With Belt +\U0001DF07;Latin Small Letter Reversed Eng +\U0001DF08;Latin Small Letter Turned R With Long Leg And Retroflex Hook +\U0001DF09;Latin Small Letter T With Hook And Retroflex Hook +\U0001DF0A;Latin Letter Retroflex Click With Retroflex Hook +\U0001DF0B;Latin Small Letter Esh With Double Bar +\U0001DF0C;Latin Small Letter Esh With Double Bar And Curl +\U0001DF0D;Latin Small Letter Turned T With Curl +\U0001DF0E;Latin Letter Inverted Glottal Stop With Curl +\U0001DF0F;Latin Letter Stretched C With Curl +\U0001DF10;Latin Letter Small Capital Turned K +\U0001DF11;Latin Small Letter L With Fishhook +\U0001DF12;Latin Small Letter Dezh Digraph With Palatal Hook +\U0001DF13;Latin Small Letter L With Belt And Palatal Hook +\U0001DF14;Latin Small Letter Eng With Palatal Hook +\U0001DF15;Latin Small Letter Turned R With Palatal Hook +\U0001DF16;Latin Small Letter R With Fishhook And Palatal Hook +\U0001DF17;Latin Small Letter Tesh Digraph With Palatal Hook +\U0001DF18;Latin Small Letter Ezh With Palatal Hook +\U0001DF19;Latin Small Letter Dezh Digraph With Retroflex Hook +\U0001DF1A;Latin Small Letter I With Stroke And Retroflex Hook +\U0001DF1B;Latin Small Letter O With Retroflex Hook +\U0001DF1C;Latin Small Letter Tesh Digraph With Retroflex Hook +\U0001DF1D;Latin Small Letter C With Retroflex Hook +\U0001DF1E;Latin Small Letter S With Curl +\U0001DF25;Latin Small Letter D With Mid-Height Left Hook +\U0001DF26;Latin Small Letter L With Mid-Height Left Hook +\U0001DF27;Latin Small Letter N With Mid-Height Left Hook +\U0001DF28;Latin Small Letter R With Mid-Height Left Hook +\U0001DF29;Latin Small Letter S With Mid-Height Left Hook +\U0001DF2A;Latin Small Letter T With Mid-Height Left Hook +\U0001E000;Combining Glagolitic Letter Azu +\U0001E001;Combining Glagolitic Letter Buky +\U0001E002;Combining Glagolitic Letter Vede +\U0001E003;Combining Glagolitic Letter Glagoli +\U0001E004;Combining Glagolitic Letter Dobro +\U0001E005;Combining Glagolitic Letter Yestu +\U0001E006;Combining Glagolitic Letter Zhivete +\U0001E008;Combining Glagolitic Letter Zemlja +\U0001E009;Combining Glagolitic Letter Izhe +\U0001E00A;Combining Glagolitic Letter Initial Izhe +\U0001E00B;Combining Glagolitic Letter I +\U0001E00C;Combining Glagolitic Letter Djervi +\U0001E00D;Combining Glagolitic Letter Kako +\U0001E00E;Combining Glagolitic Letter Ljudije +\U0001E00F;Combining Glagolitic Letter Myslite +\U0001E010;Combining Glagolitic Letter Nashi +\U0001E011;Combining Glagolitic Letter Onu +\U0001E012;Combining Glagolitic Letter Pokoji +\U0001E013;Combining Glagolitic Letter Ritsi +\U0001E014;Combining Glagolitic Letter Slovo +\U0001E015;Combining Glagolitic Letter Tvrido +\U0001E016;Combining Glagolitic Letter Uku +\U0001E017;Combining Glagolitic Letter Fritu +\U0001E018;Combining Glagolitic Letter Heru +\U0001E01B;Combining Glagolitic Letter Shta +\U0001E01C;Combining Glagolitic Letter Tsi +\U0001E01D;Combining Glagolitic Letter Chrivi +\U0001E01E;Combining Glagolitic Letter Sha +\U0001E01F;Combining Glagolitic Letter Yeru +\U0001E020;Combining Glagolitic Letter Yeri +\U0001E021;Combining Glagolitic Letter Yati +\U0001E023;Combining Glagolitic Letter Yu +\U0001E024;Combining Glagolitic Letter Small Yus +\U0001E026;Combining Glagolitic Letter Yo +\U0001E027;Combining Glagolitic Letter Iotated Small Yus +\U0001E028;Combining Glagolitic Letter Big Yus +\U0001E029;Combining Glagolitic Letter Iotated Big Yus +\U0001E02A;Combining Glagolitic Letter Fita +\U0001E030;Modifier Letter Cyrillic Small A +\U0001E031;Modifier Letter Cyrillic Small Be +\U0001E032;Modifier Letter Cyrillic Small Ve +\U0001E033;Modifier Letter Cyrillic Small Ghe +\U0001E034;Modifier Letter Cyrillic Small De +\U0001E035;Modifier Letter Cyrillic Small Ie +\U0001E036;Modifier Letter Cyrillic Small Zhe +\U0001E037;Modifier Letter Cyrillic Small Ze +\U0001E038;Modifier Letter Cyrillic Small I +\U0001E039;Modifier Letter Cyrillic Small Ka +\U0001E03A;Modifier Letter Cyrillic Small El +\U0001E03B;Modifier Letter Cyrillic Small Em +\U0001E03C;Modifier Letter Cyrillic Small O +\U0001E03D;Modifier Letter Cyrillic Small Pe +\U0001E03E;Modifier Letter Cyrillic Small Er +\U0001E03F;Modifier Letter Cyrillic Small Es +\U0001E040;Modifier Letter Cyrillic Small Te +\U0001E041;Modifier Letter Cyrillic Small U +\U0001E042;Modifier Letter Cyrillic Small Ef +\U0001E043;Modifier Letter Cyrillic Small Ha +\U0001E044;Modifier Letter Cyrillic Small Tse +\U0001E045;Modifier Letter Cyrillic Small Che +\U0001E046;Modifier Letter Cyrillic Small Sha +\U0001E047;Modifier Letter Cyrillic Small Yeru +\U0001E048;Modifier Letter Cyrillic Small E +\U0001E049;Modifier Letter Cyrillic Small Yu +\U0001E04A;Modifier Letter Cyrillic Small Dzze +\U0001E04B;Modifier Letter Cyrillic Small Schwa +\U0001E04C;Modifier Letter Cyrillic Small Byelorussian-Ukrainian I +\U0001E04D;Modifier Letter Cyrillic Small Je +\U0001E04E;Modifier Letter Cyrillic Small Barred O +\U0001E04F;Modifier Letter Cyrillic Small Straight U +\U0001E050;Modifier Letter Cyrillic Small Palochka +\U0001E051;Cyrillic Subscript Small Letter A +\U0001E052;Cyrillic Subscript Small Letter Be +\U0001E053;Cyrillic Subscript Small Letter Ve +\U0001E054;Cyrillic Subscript Small Letter Ghe +\U0001E055;Cyrillic Subscript Small Letter De +\U0001E056;Cyrillic Subscript Small Letter Ie +\U0001E057;Cyrillic Subscript Small Letter Zhe +\U0001E058;Cyrillic Subscript Small Letter Ze +\U0001E059;Cyrillic Subscript Small Letter I +\U0001E05A;Cyrillic Subscript Small Letter Ka +\U0001E05B;Cyrillic Subscript Small Letter El +\U0001E05C;Cyrillic Subscript Small Letter O +\U0001E05D;Cyrillic Subscript Small Letter Pe +\U0001E05E;Cyrillic Subscript Small Letter Es +\U0001E05F;Cyrillic Subscript Small Letter U +\U0001E060;Cyrillic Subscript Small Letter Ef +\U0001E061;Cyrillic Subscript Small Letter Ha +\U0001E062;Cyrillic Subscript Small Letter Tse +\U0001E063;Cyrillic Subscript Small Letter Che +\U0001E064;Cyrillic Subscript Small Letter Sha +\U0001E065;Cyrillic Subscript Small Letter Hard Sign +\U0001E066;Cyrillic Subscript Small Letter Yeru +\U0001E067;Cyrillic Subscript Small Letter Ghe With Upturn +\U0001E068;Cyrillic Subscript Small Letter Byelorussian-Ukrainian I +\U0001E069;Cyrillic Subscript Small Letter Dze +\U0001E06A;Cyrillic Subscript Small Letter Dzhe +\U0001E06B;Modifier Letter Cyrillic Small Es With Descender +\U0001E06C;Modifier Letter Cyrillic Small Yeru With Back Yer +\U0001E06D;Modifier Letter Cyrillic Small Straight U With Stroke +\U0001E08F;Combining Cyrillic Small Letter Byelorussian-Ukrainian I +\U0001E100;Nyiakeng Puachue Hmong Letter Ma +\U0001E101;Nyiakeng Puachue Hmong Letter Tsa +\U0001E102;Nyiakeng Puachue Hmong Letter Nta +\U0001E103;Nyiakeng Puachue Hmong Letter Ta +\U0001E104;Nyiakeng Puachue Hmong Letter Ha +\U0001E105;Nyiakeng Puachue Hmong Letter Na +\U0001E106;Nyiakeng Puachue Hmong Letter Xa +\U0001E107;Nyiakeng Puachue Hmong Letter Nka +\U0001E108;Nyiakeng Puachue Hmong Letter Ca +\U0001E109;Nyiakeng Puachue Hmong Letter La +\U0001E10A;Nyiakeng Puachue Hmong Letter Sa +\U0001E10B;Nyiakeng Puachue Hmong Letter Za +\U0001E10C;Nyiakeng Puachue Hmong Letter Nca +\U0001E10D;Nyiakeng Puachue Hmong Letter Ntsa +\U0001E10E;Nyiakeng Puachue Hmong Letter Ka +\U0001E10F;Nyiakeng Puachue Hmong Letter Da +\U0001E110;Nyiakeng Puachue Hmong Letter Nya +\U0001E111;Nyiakeng Puachue Hmong Letter Nra +\U0001E112;Nyiakeng Puachue Hmong Letter Va +\U0001E113;Nyiakeng Puachue Hmong Letter Ntxa +\U0001E114;Nyiakeng Puachue Hmong Letter Txa +\U0001E115;Nyiakeng Puachue Hmong Letter Fa +\U0001E116;Nyiakeng Puachue Hmong Letter Ra +\U0001E117;Nyiakeng Puachue Hmong Letter Qa +\U0001E118;Nyiakeng Puachue Hmong Letter Ya +\U0001E119;Nyiakeng Puachue Hmong Letter Nqa +\U0001E11A;Nyiakeng Puachue Hmong Letter Pa +\U0001E11B;Nyiakeng Puachue Hmong Letter Xya +\U0001E11C;Nyiakeng Puachue Hmong Letter Npa +\U0001E11D;Nyiakeng Puachue Hmong Letter Dla +\U0001E11E;Nyiakeng Puachue Hmong Letter Npla +\U0001E11F;Nyiakeng Puachue Hmong Letter Hah +\U0001E120;Nyiakeng Puachue Hmong Letter Mla +\U0001E121;Nyiakeng Puachue Hmong Letter Pla +\U0001E122;Nyiakeng Puachue Hmong Letter Ga +\U0001E123;Nyiakeng Puachue Hmong Letter Rra +\U0001E124;Nyiakeng Puachue Hmong Letter A +\U0001E125;Nyiakeng Puachue Hmong Letter Aa +\U0001E126;Nyiakeng Puachue Hmong Letter I +\U0001E127;Nyiakeng Puachue Hmong Letter U +\U0001E128;Nyiakeng Puachue Hmong Letter O +\U0001E129;Nyiakeng Puachue Hmong Letter Oo +\U0001E12A;Nyiakeng Puachue Hmong Letter E +\U0001E12B;Nyiakeng Puachue Hmong Letter Ee +\U0001E12C;Nyiakeng Puachue Hmong Letter W +\U0001E130;Nyiakeng Puachue Hmong Tone-B +\U0001E131;Nyiakeng Puachue Hmong Tone-M +\U0001E132;Nyiakeng Puachue Hmong Tone-J +\U0001E133;Nyiakeng Puachue Hmong Tone-V +\U0001E134;Nyiakeng Puachue Hmong Tone-S +\U0001E135;Nyiakeng Puachue Hmong Tone-G +\U0001E136;Nyiakeng Puachue Hmong Tone-D +\U0001E137;Nyiakeng Puachue Hmong Sign For Person +\U0001E138;Nyiakeng Puachue Hmong Sign For Thing +\U0001E139;Nyiakeng Puachue Hmong Sign For Location +\U0001E13A;Nyiakeng Puachue Hmong Sign For Animal +\U0001E13B;Nyiakeng Puachue Hmong Sign For Invertebrate +\U0001E13C;Nyiakeng Puachue Hmong Sign Xw Xw +\U0001E13D;Nyiakeng Puachue Hmong Syllable Lengthener +\U0001E140;Nyiakeng Puachue Hmong Digit Zero +\U0001E141;Nyiakeng Puachue Hmong Digit One +\U0001E142;Nyiakeng Puachue Hmong Digit Two +\U0001E143;Nyiakeng Puachue Hmong Digit Three +\U0001E144;Nyiakeng Puachue Hmong Digit Four +\U0001E145;Nyiakeng Puachue Hmong Digit Five +\U0001E146;Nyiakeng Puachue Hmong Digit Six +\U0001E147;Nyiakeng Puachue Hmong Digit Seven +\U0001E148;Nyiakeng Puachue Hmong Digit Eight +\U0001E149;Nyiakeng Puachue Hmong Digit Nine +\U0001E14E;Nyiakeng Puachue Hmong Logogram Nyaj +\U0001E14F;Nyiakeng Puachue Hmong Circled Ca +\U0001E290;Toto Letter Pa +\U0001E291;Toto Letter Ba +\U0001E292;Toto Letter Ta +\U0001E293;Toto Letter Da +\U0001E294;Toto Letter Ka +\U0001E295;Toto Letter Ga +\U0001E296;Toto Letter Ma +\U0001E297;Toto Letter Na +\U0001E298;Toto Letter Nga +\U0001E299;Toto Letter Sa +\U0001E29A;Toto Letter Cha +\U0001E29B;Toto Letter Ya +\U0001E29C;Toto Letter Wa +\U0001E29D;Toto Letter Ja +\U0001E29E;Toto Letter Ha +\U0001E29F;Toto Letter Ra +\U0001E2A0;Toto Letter La +\U0001E2A1;Toto Letter I +\U0001E2A2;Toto Letter Breathy I +\U0001E2A3;Toto Letter Iu +\U0001E2A4;Toto Letter Breathy Iu +\U0001E2A5;Toto Letter U +\U0001E2A6;Toto Letter E +\U0001E2A7;Toto Letter Breathy E +\U0001E2A8;Toto Letter Eo +\U0001E2A9;Toto Letter Breathy Eo +\U0001E2AA;Toto Letter O +\U0001E2AB;Toto Letter Ae +\U0001E2AC;Toto Letter Breathy Ae +\U0001E2AD;Toto Letter A +\U0001E2AE;Toto Sign Rising Tone +\U0001E2C0;Wancho Letter Aa +\U0001E2C1;Wancho Letter A +\U0001E2C2;Wancho Letter Ba +\U0001E2C3;Wancho Letter Ca +\U0001E2C4;Wancho Letter Da +\U0001E2C5;Wancho Letter Ga +\U0001E2C6;Wancho Letter Ya +\U0001E2C7;Wancho Letter Pha +\U0001E2C8;Wancho Letter La +\U0001E2C9;Wancho Letter Na +\U0001E2CA;Wancho Letter Pa +\U0001E2CB;Wancho Letter Ta +\U0001E2CC;Wancho Letter Tha +\U0001E2CD;Wancho Letter Fa +\U0001E2CE;Wancho Letter Sa +\U0001E2CF;Wancho Letter Sha +\U0001E2D0;Wancho Letter Ja +\U0001E2D1;Wancho Letter Za +\U0001E2D2;Wancho Letter Wa +\U0001E2D3;Wancho Letter Va +\U0001E2D4;Wancho Letter Ka +\U0001E2D5;Wancho Letter O +\U0001E2D6;Wancho Letter Au +\U0001E2D7;Wancho Letter Ra +\U0001E2D8;Wancho Letter Ma +\U0001E2D9;Wancho Letter Kha +\U0001E2DA;Wancho Letter Ha +\U0001E2DB;Wancho Letter E +\U0001E2DC;Wancho Letter I +\U0001E2DD;Wancho Letter Nga +\U0001E2DE;Wancho Letter U +\U0001E2DF;Wancho Letter Llha +\U0001E2E0;Wancho Letter Tsa +\U0001E2E1;Wancho Letter Tra +\U0001E2E2;Wancho Letter Ong +\U0001E2E3;Wancho Letter Aang +\U0001E2E4;Wancho Letter Ang +\U0001E2E5;Wancho Letter Ing +\U0001E2E6;Wancho Letter On +\U0001E2E7;Wancho Letter En +\U0001E2E8;Wancho Letter Aan +\U0001E2E9;Wancho Letter Nya +\U0001E2EA;Wancho Letter Uen +\U0001E2EB;Wancho Letter Yih +\U0001E2EC;Wancho Tone Tup +\U0001E2ED;Wancho Tone Tupni +\U0001E2EE;Wancho Tone Koi +\U0001E2EF;Wancho Tone Koini +\U0001E2F0;Wancho Digit Zero +\U0001E2F1;Wancho Digit One +\U0001E2F2;Wancho Digit Two +\U0001E2F3;Wancho Digit Three +\U0001E2F4;Wancho Digit Four +\U0001E2F5;Wancho Digit Five +\U0001E2F6;Wancho Digit Six +\U0001E2F7;Wancho Digit Seven +\U0001E2F8;Wancho Digit Eight +\U0001E2F9;Wancho Digit Nine +\U0001E2FF;Wancho Ngun Sign +\U0001E4D0;Nag Mundari Letter O +\U0001E4D1;Nag Mundari Letter Op +\U0001E4D2;Nag Mundari Letter Ol +\U0001E4D3;Nag Mundari Letter Oy +\U0001E4D4;Nag Mundari Letter Ong +\U0001E4D5;Nag Mundari Letter A +\U0001E4D6;Nag Mundari Letter Aj +\U0001E4D7;Nag Mundari Letter Ab +\U0001E4D8;Nag Mundari Letter Any +\U0001E4D9;Nag Mundari Letter Ah +\U0001E4DA;Nag Mundari Letter I +\U0001E4DB;Nag Mundari Letter Is +\U0001E4DC;Nag Mundari Letter Idd +\U0001E4DD;Nag Mundari Letter It +\U0001E4DE;Nag Mundari Letter Ih +\U0001E4DF;Nag Mundari Letter U +\U0001E4E0;Nag Mundari Letter Uc +\U0001E4E1;Nag Mundari Letter Ud +\U0001E4E2;Nag Mundari Letter Uk +\U0001E4E3;Nag Mundari Letter Ur +\U0001E4E4;Nag Mundari Letter E +\U0001E4E5;Nag Mundari Letter Enn +\U0001E4E6;Nag Mundari Letter Eg +\U0001E4E7;Nag Mundari Letter Em +\U0001E4E8;Nag Mundari Letter En +\U0001E4E9;Nag Mundari Letter Ett +\U0001E4EA;Nag Mundari Letter Ell +\U0001E4EB;Nag Mundari Sign Ojod +\U0001E4EC;Nag Mundari Sign Muhor +\U0001E4ED;Nag Mundari Sign Toyor +\U0001E4EE;Nag Mundari Sign Ikir +\U0001E4EF;Nag Mundari Sign Sutuh +\U0001E4F0;Nag Mundari Digit Zero +\U0001E4F1;Nag Mundari Digit One +\U0001E4F2;Nag Mundari Digit Two +\U0001E4F3;Nag Mundari Digit Three +\U0001E4F4;Nag Mundari Digit Four +\U0001E4F5;Nag Mundari Digit Five +\U0001E4F6;Nag Mundari Digit Six +\U0001E4F7;Nag Mundari Digit Seven +\U0001E4F8;Nag Mundari Digit Eight +\U0001E4F9;Nag Mundari Digit Nine +\U0001E7E0;Ethiopic Syllable Hhya +\U0001E7E1;Ethiopic Syllable Hhyu +\U0001E7E2;Ethiopic Syllable Hhyi +\U0001E7E3;Ethiopic Syllable Hhyaa +\U0001E7E4;Ethiopic Syllable Hhyee +\U0001E7E5;Ethiopic Syllable Hhye +\U0001E7E6;Ethiopic Syllable Hhyo +\U0001E7E8;Ethiopic Syllable Gurage Hhwa +\U0001E7E9;Ethiopic Syllable Hhwi +\U0001E7EA;Ethiopic Syllable Hhwee +\U0001E7EB;Ethiopic Syllable Hhwe +\U0001E7ED;Ethiopic Syllable Gurage Mwi +\U0001E7EE;Ethiopic Syllable Gurage Mwee +\U0001E7F0;Ethiopic Syllable Gurage Qwi +\U0001E7F1;Ethiopic Syllable Gurage Qwee +\U0001E7F2;Ethiopic Syllable Gurage Qwe +\U0001E7F3;Ethiopic Syllable Gurage Bwi +\U0001E7F4;Ethiopic Syllable Gurage Bwee +\U0001E7F5;Ethiopic Syllable Gurage Kwi +\U0001E7F6;Ethiopic Syllable Gurage Kwee +\U0001E7F7;Ethiopic Syllable Gurage Kwe +\U0001E7F8;Ethiopic Syllable Gurage Gwi +\U0001E7F9;Ethiopic Syllable Gurage Gwee +\U0001E7FA;Ethiopic Syllable Gurage Gwe +\U0001E7FB;Ethiopic Syllable Gurage Fwi +\U0001E7FC;Ethiopic Syllable Gurage Fwee +\U0001E7FD;Ethiopic Syllable Gurage Pwi +\U0001E7FE;Ethiopic Syllable Gurage Pwee +\U0001E800;Mende Kikakui Syllable M001 Ki +\U0001E801;Mende Kikakui Syllable M002 Ka +\U0001E802;Mende Kikakui Syllable M003 Ku +\U0001E803;Mende Kikakui Syllable M065 Kee +\U0001E804;Mende Kikakui Syllable M095 Ke +\U0001E805;Mende Kikakui Syllable M076 Koo +\U0001E806;Mende Kikakui Syllable M048 Ko +\U0001E807;Mende Kikakui Syllable M179 Kua +\U0001E808;Mende Kikakui Syllable M004 Wi +\U0001E809;Mende Kikakui Syllable M005 Wa +\U0001E80A;Mende Kikakui Syllable M006 Wu +\U0001E80B;Mende Kikakui Syllable M126 Wee +\U0001E80C;Mende Kikakui Syllable M118 We +\U0001E80D;Mende Kikakui Syllable M114 Woo +\U0001E80E;Mende Kikakui Syllable M045 Wo +\U0001E80F;Mende Kikakui Syllable M194 Wui +\U0001E810;Mende Kikakui Syllable M143 Wei +\U0001E811;Mende Kikakui Syllable M061 Wvi +\U0001E812;Mende Kikakui Syllable M049 Wva +\U0001E813;Mende Kikakui Syllable M139 Wve +\U0001E814;Mende Kikakui Syllable M007 Min +\U0001E815;Mende Kikakui Syllable M008 Man +\U0001E816;Mende Kikakui Syllable M009 Mun +\U0001E817;Mende Kikakui Syllable M059 Men +\U0001E818;Mende Kikakui Syllable M094 Mon +\U0001E819;Mende Kikakui Syllable M154 Muan +\U0001E81A;Mende Kikakui Syllable M189 Muen +\U0001E81B;Mende Kikakui Syllable M010 Bi +\U0001E81C;Mende Kikakui Syllable M011 Ba +\U0001E81D;Mende Kikakui Syllable M012 Bu +\U0001E81E;Mende Kikakui Syllable M150 Bee +\U0001E81F;Mende Kikakui Syllable M097 Be +\U0001E820;Mende Kikakui Syllable M103 Boo +\U0001E821;Mende Kikakui Syllable M138 Bo +\U0001E822;Mende Kikakui Syllable M013 I +\U0001E823;Mende Kikakui Syllable M014 A +\U0001E824;Mende Kikakui Syllable M015 U +\U0001E825;Mende Kikakui Syllable M163 Ee +\U0001E826;Mende Kikakui Syllable M100 E +\U0001E827;Mende Kikakui Syllable M165 Oo +\U0001E828;Mende Kikakui Syllable M147 O +\U0001E829;Mende Kikakui Syllable M137 Ei +\U0001E82A;Mende Kikakui Syllable M131 In +\U0001E82B;Mende Kikakui Syllable M135 In +\U0001E82C;Mende Kikakui Syllable M195 An +\U0001E82D;Mende Kikakui Syllable M178 En +\U0001E82E;Mende Kikakui Syllable M019 Si +\U0001E82F;Mende Kikakui Syllable M020 Sa +\U0001E830;Mende Kikakui Syllable M021 Su +\U0001E831;Mende Kikakui Syllable M162 See +\U0001E832;Mende Kikakui Syllable M116 Se +\U0001E833;Mende Kikakui Syllable M136 Soo +\U0001E834;Mende Kikakui Syllable M079 So +\U0001E835;Mende Kikakui Syllable M196 Sia +\U0001E836;Mende Kikakui Syllable M025 Li +\U0001E837;Mende Kikakui Syllable M026 La +\U0001E838;Mende Kikakui Syllable M027 Lu +\U0001E839;Mende Kikakui Syllable M084 Lee +\U0001E83A;Mende Kikakui Syllable M073 Le +\U0001E83B;Mende Kikakui Syllable M054 Loo +\U0001E83C;Mende Kikakui Syllable M153 Lo +\U0001E83D;Mende Kikakui Syllable M110 Long Le +\U0001E83E;Mende Kikakui Syllable M016 Di +\U0001E83F;Mende Kikakui Syllable M017 Da +\U0001E840;Mende Kikakui Syllable M018 Du +\U0001E841;Mende Kikakui Syllable M089 Dee +\U0001E842;Mende Kikakui Syllable M180 Doo +\U0001E843;Mende Kikakui Syllable M181 Do +\U0001E844;Mende Kikakui Syllable M022 Ti +\U0001E845;Mende Kikakui Syllable M023 Ta +\U0001E846;Mende Kikakui Syllable M024 Tu +\U0001E847;Mende Kikakui Syllable M091 Tee +\U0001E848;Mende Kikakui Syllable M055 Te +\U0001E849;Mende Kikakui Syllable M104 Too +\U0001E84A;Mende Kikakui Syllable M069 To +\U0001E84B;Mende Kikakui Syllable M028 Ji +\U0001E84C;Mende Kikakui Syllable M029 Ja +\U0001E84D;Mende Kikakui Syllable M030 Ju +\U0001E84E;Mende Kikakui Syllable M157 Jee +\U0001E84F;Mende Kikakui Syllable M113 Je +\U0001E850;Mende Kikakui Syllable M160 Joo +\U0001E851;Mende Kikakui Syllable M063 Jo +\U0001E852;Mende Kikakui Syllable M175 Long Jo +\U0001E853;Mende Kikakui Syllable M031 Yi +\U0001E854;Mende Kikakui Syllable M032 Ya +\U0001E855;Mende Kikakui Syllable M033 Yu +\U0001E856;Mende Kikakui Syllable M109 Yee +\U0001E857;Mende Kikakui Syllable M080 Ye +\U0001E858;Mende Kikakui Syllable M141 Yoo +\U0001E859;Mende Kikakui Syllable M121 Yo +\U0001E85A;Mende Kikakui Syllable M034 Fi +\U0001E85B;Mende Kikakui Syllable M035 Fa +\U0001E85C;Mende Kikakui Syllable M036 Fu +\U0001E85D;Mende Kikakui Syllable M078 Fee +\U0001E85E;Mende Kikakui Syllable M075 Fe +\U0001E85F;Mende Kikakui Syllable M133 Foo +\U0001E860;Mende Kikakui Syllable M088 Fo +\U0001E861;Mende Kikakui Syllable M197 Fua +\U0001E862;Mende Kikakui Syllable M101 Fan +\U0001E863;Mende Kikakui Syllable M037 Nin +\U0001E864;Mende Kikakui Syllable M038 Nan +\U0001E865;Mende Kikakui Syllable M039 Nun +\U0001E866;Mende Kikakui Syllable M117 Nen +\U0001E867;Mende Kikakui Syllable M169 Non +\U0001E868;Mende Kikakui Syllable M176 Hi +\U0001E869;Mende Kikakui Syllable M041 Ha +\U0001E86A;Mende Kikakui Syllable M186 Hu +\U0001E86B;Mende Kikakui Syllable M040 Hee +\U0001E86C;Mende Kikakui Syllable M096 He +\U0001E86D;Mende Kikakui Syllable M042 Hoo +\U0001E86E;Mende Kikakui Syllable M140 Ho +\U0001E86F;Mende Kikakui Syllable M083 Heei +\U0001E870;Mende Kikakui Syllable M128 Hoou +\U0001E871;Mende Kikakui Syllable M053 Hin +\U0001E872;Mende Kikakui Syllable M130 Han +\U0001E873;Mende Kikakui Syllable M087 Hun +\U0001E874;Mende Kikakui Syllable M052 Hen +\U0001E875;Mende Kikakui Syllable M193 Hon +\U0001E876;Mende Kikakui Syllable M046 Huan +\U0001E877;Mende Kikakui Syllable M090 Nggi +\U0001E878;Mende Kikakui Syllable M043 Ngga +\U0001E879;Mende Kikakui Syllable M082 Nggu +\U0001E87A;Mende Kikakui Syllable M115 Nggee +\U0001E87B;Mende Kikakui Syllable M146 Ngge +\U0001E87C;Mende Kikakui Syllable M156 Nggoo +\U0001E87D;Mende Kikakui Syllable M120 Nggo +\U0001E87E;Mende Kikakui Syllable M159 Nggaa +\U0001E87F;Mende Kikakui Syllable M127 Nggua +\U0001E880;Mende Kikakui Syllable M086 Long Ngge +\U0001E881;Mende Kikakui Syllable M106 Long Nggoo +\U0001E882;Mende Kikakui Syllable M183 Long Nggo +\U0001E883;Mende Kikakui Syllable M155 Gi +\U0001E884;Mende Kikakui Syllable M111 Ga +\U0001E885;Mende Kikakui Syllable M168 Gu +\U0001E886;Mende Kikakui Syllable M190 Gee +\U0001E887;Mende Kikakui Syllable M166 Guei +\U0001E888;Mende Kikakui Syllable M167 Guan +\U0001E889;Mende Kikakui Syllable M184 Ngen +\U0001E88A;Mende Kikakui Syllable M057 Ngon +\U0001E88B;Mende Kikakui Syllable M177 Nguan +\U0001E88C;Mende Kikakui Syllable M068 Pi +\U0001E88D;Mende Kikakui Syllable M099 Pa +\U0001E88E;Mende Kikakui Syllable M050 Pu +\U0001E88F;Mende Kikakui Syllable M081 Pee +\U0001E890;Mende Kikakui Syllable M051 Pe +\U0001E891;Mende Kikakui Syllable M102 Poo +\U0001E892;Mende Kikakui Syllable M066 Po +\U0001E893;Mende Kikakui Syllable M145 Mbi +\U0001E894;Mende Kikakui Syllable M062 Mba +\U0001E895;Mende Kikakui Syllable M122 Mbu +\U0001E896;Mende Kikakui Syllable M047 Mbee +\U0001E897;Mende Kikakui Syllable M188 Mbee +\U0001E898;Mende Kikakui Syllable M072 Mbe +\U0001E899;Mende Kikakui Syllable M172 Mboo +\U0001E89A;Mende Kikakui Syllable M174 Mbo +\U0001E89B;Mende Kikakui Syllable M187 Mbuu +\U0001E89C;Mende Kikakui Syllable M161 Long Mbe +\U0001E89D;Mende Kikakui Syllable M105 Long Mboo +\U0001E89E;Mende Kikakui Syllable M142 Long Mbo +\U0001E89F;Mende Kikakui Syllable M132 Kpi +\U0001E8A0;Mende Kikakui Syllable M092 Kpa +\U0001E8A1;Mende Kikakui Syllable M074 Kpu +\U0001E8A2;Mende Kikakui Syllable M044 Kpee +\U0001E8A3;Mende Kikakui Syllable M108 Kpe +\U0001E8A4;Mende Kikakui Syllable M112 Kpoo +\U0001E8A5;Mende Kikakui Syllable M158 Kpo +\U0001E8A6;Mende Kikakui Syllable M124 Gbi +\U0001E8A7;Mende Kikakui Syllable M056 Gba +\U0001E8A8;Mende Kikakui Syllable M148 Gbu +\U0001E8A9;Mende Kikakui Syllable M093 Gbee +\U0001E8AA;Mende Kikakui Syllable M107 Gbe +\U0001E8AB;Mende Kikakui Syllable M071 Gboo +\U0001E8AC;Mende Kikakui Syllable M070 Gbo +\U0001E8AD;Mende Kikakui Syllable M171 Ra +\U0001E8AE;Mende Kikakui Syllable M123 Ndi +\U0001E8AF;Mende Kikakui Syllable M129 Nda +\U0001E8B0;Mende Kikakui Syllable M125 Ndu +\U0001E8B1;Mende Kikakui Syllable M191 Ndee +\U0001E8B2;Mende Kikakui Syllable M119 Nde +\U0001E8B3;Mende Kikakui Syllable M067 Ndoo +\U0001E8B4;Mende Kikakui Syllable M064 Ndo +\U0001E8B5;Mende Kikakui Syllable M152 Nja +\U0001E8B6;Mende Kikakui Syllable M192 Nju +\U0001E8B7;Mende Kikakui Syllable M149 Njee +\U0001E8B8;Mende Kikakui Syllable M134 Njoo +\U0001E8B9;Mende Kikakui Syllable M182 Vi +\U0001E8BA;Mende Kikakui Syllable M185 Va +\U0001E8BB;Mende Kikakui Syllable M151 Vu +\U0001E8BC;Mende Kikakui Syllable M173 Vee +\U0001E8BD;Mende Kikakui Syllable M085 Ve +\U0001E8BE;Mende Kikakui Syllable M144 Voo +\U0001E8BF;Mende Kikakui Syllable M077 Vo +\U0001E8C0;Mende Kikakui Syllable M164 Nyin +\U0001E8C1;Mende Kikakui Syllable M058 Nyan +\U0001E8C2;Mende Kikakui Syllable M170 Nyun +\U0001E8C3;Mende Kikakui Syllable M098 Nyen +\U0001E8C4;Mende Kikakui Syllable M060 Nyon +\U0001E8C7;Mende Kikakui Digit One +\U0001E8C8;Mende Kikakui Digit Two +\U0001E8C9;Mende Kikakui Digit Three +\U0001E8CA;Mende Kikakui Digit Four +\U0001E8CB;Mende Kikakui Digit Five +\U0001E8CC;Mende Kikakui Digit Six +\U0001E8CD;Mende Kikakui Digit Seven +\U0001E8CE;Mende Kikakui Digit Eight +\U0001E8CF;Mende Kikakui Digit Nine +\U0001E8D0;Mende Kikakui Combining Number Teens +\U0001E8D1;Mende Kikakui Combining Number Tens +\U0001E8D2;Mende Kikakui Combining Number Hundreds +\U0001E8D3;Mende Kikakui Combining Number Thousands +\U0001E8D4;Mende Kikakui Combining Number Ten Thousands +\U0001E8D5;Mende Kikakui Combining Number Hundred Thousands +\U0001E8D6;Mende Kikakui Combining Number Millions +\U0001E900;Adlam Capital Letter Alif +\U0001E901;Adlam Capital Letter Daali +\U0001E902;Adlam Capital Letter Laam +\U0001E903;Adlam Capital Letter Miim +\U0001E904;Adlam Capital Letter Ba +\U0001E905;Adlam Capital Letter Sinnyiiyhe +\U0001E906;Adlam Capital Letter Pe +\U0001E907;Adlam Capital Letter Bhe +\U0001E908;Adlam Capital Letter Ra +\U0001E909;Adlam Capital Letter E +\U0001E90A;Adlam Capital Letter Fa +\U0001E90B;Adlam Capital Letter I +\U0001E90C;Adlam Capital Letter O +\U0001E90D;Adlam Capital Letter Dha +\U0001E90E;Adlam Capital Letter Yhe +\U0001E90F;Adlam Capital Letter Waw +\U0001E910;Adlam Capital Letter Nun +\U0001E911;Adlam Capital Letter Kaf +\U0001E912;Adlam Capital Letter Ya +\U0001E913;Adlam Capital Letter U +\U0001E914;Adlam Capital Letter Jiim +\U0001E915;Adlam Capital Letter Chi +\U0001E916;Adlam Capital Letter Ha +\U0001E917;Adlam Capital Letter Qaaf +\U0001E918;Adlam Capital Letter Ga +\U0001E919;Adlam Capital Letter Nya +\U0001E91A;Adlam Capital Letter Tu +\U0001E91B;Adlam Capital Letter Nha +\U0001E91C;Adlam Capital Letter Va +\U0001E91D;Adlam Capital Letter Kha +\U0001E91E;Adlam Capital Letter Gbe +\U0001E91F;Adlam Capital Letter Zal +\U0001E920;Adlam Capital Letter Kpo +\U0001E921;Adlam Capital Letter Sha +\U0001E922;Adlam Small Letter Alif +\U0001E923;Adlam Small Letter Daali +\U0001E924;Adlam Small Letter Laam +\U0001E925;Adlam Small Letter Miim +\U0001E926;Adlam Small Letter Ba +\U0001E927;Adlam Small Letter Sinnyiiyhe +\U0001E928;Adlam Small Letter Pe +\U0001E929;Adlam Small Letter Bhe +\U0001E92A;Adlam Small Letter Ra +\U0001E92B;Adlam Small Letter E +\U0001E92C;Adlam Small Letter Fa +\U0001E92D;Adlam Small Letter I +\U0001E92E;Adlam Small Letter O +\U0001E92F;Adlam Small Letter Dha +\U0001E930;Adlam Small Letter Yhe +\U0001E931;Adlam Small Letter Waw +\U0001E932;Adlam Small Letter Nun +\U0001E933;Adlam Small Letter Kaf +\U0001E934;Adlam Small Letter Ya +\U0001E935;Adlam Small Letter U +\U0001E936;Adlam Small Letter Jiim +\U0001E937;Adlam Small Letter Chi +\U0001E938;Adlam Small Letter Ha +\U0001E939;Adlam Small Letter Qaaf +\U0001E93A;Adlam Small Letter Ga +\U0001E93B;Adlam Small Letter Nya +\U0001E93C;Adlam Small Letter Tu +\U0001E93D;Adlam Small Letter Nha +\U0001E93E;Adlam Small Letter Va +\U0001E93F;Adlam Small Letter Kha +\U0001E940;Adlam Small Letter Gbe +\U0001E941;Adlam Small Letter Zal +\U0001E942;Adlam Small Letter Kpo +\U0001E943;Adlam Small Letter Sha +\U0001E944;Adlam Alif Lengthener +\U0001E945;Adlam Vowel Lengthener +\U0001E946;Adlam Gemination Mark +\U0001E947;Adlam Hamza +\U0001E948;Adlam Consonant Modifier +\U0001E949;Adlam Geminate Consonant Modifier +\U0001E94A;Adlam Nukta +\U0001E94B;Adlam Nasalization Mark +\U0001E950;Adlam Digit Zero +\U0001E951;Adlam Digit One +\U0001E952;Adlam Digit Two +\U0001E953;Adlam Digit Three +\U0001E954;Adlam Digit Four +\U0001E955;Adlam Digit Five +\U0001E956;Adlam Digit Six +\U0001E957;Adlam Digit Seven +\U0001E958;Adlam Digit Eight +\U0001E959;Adlam Digit Nine +\U0001E95E;Adlam Initial Exclamation Mark +\U0001E95F;Adlam Initial Question Mark +\U0001EC71;Indic Siyaq Number One +\U0001EC72;Indic Siyaq Number Two +\U0001EC73;Indic Siyaq Number Three +\U0001EC74;Indic Siyaq Number Four +\U0001EC75;Indic Siyaq Number Five +\U0001EC76;Indic Siyaq Number Six +\U0001EC77;Indic Siyaq Number Seven +\U0001EC78;Indic Siyaq Number Eight +\U0001EC79;Indic Siyaq Number Nine +\U0001EC7A;Indic Siyaq Number Ten +\U0001EC7B;Indic Siyaq Number Twenty +\U0001EC7C;Indic Siyaq Number Thirty +\U0001EC7D;Indic Siyaq Number Forty +\U0001EC7E;Indic Siyaq Number Fifty +\U0001EC7F;Indic Siyaq Number Sixty +\U0001EC80;Indic Siyaq Number Seventy +\U0001EC81;Indic Siyaq Number Eighty +\U0001EC82;Indic Siyaq Number Ninety +\U0001EC83;Indic Siyaq Number One Hundred +\U0001EC84;Indic Siyaq Number Two Hundred +\U0001EC85;Indic Siyaq Number Three Hundred +\U0001EC86;Indic Siyaq Number Four Hundred +\U0001EC87;Indic Siyaq Number Five Hundred +\U0001EC88;Indic Siyaq Number Six Hundred +\U0001EC89;Indic Siyaq Number Seven Hundred +\U0001EC8A;Indic Siyaq Number Eight Hundred +\U0001EC8B;Indic Siyaq Number Nine Hundred +\U0001EC8C;Indic Siyaq Number One Thousand +\U0001EC8D;Indic Siyaq Number Two Thousand +\U0001EC8E;Indic Siyaq Number Three Thousand +\U0001EC8F;Indic Siyaq Number Four Thousand +\U0001EC90;Indic Siyaq Number Five Thousand +\U0001EC91;Indic Siyaq Number Six Thousand +\U0001EC92;Indic Siyaq Number Seven Thousand +\U0001EC93;Indic Siyaq Number Eight Thousand +\U0001EC94;Indic Siyaq Number Nine Thousand +\U0001EC95;Indic Siyaq Number Ten Thousand +\U0001EC96;Indic Siyaq Number Twenty Thousand +\U0001EC97;Indic Siyaq Number Thirty Thousand +\U0001EC98;Indic Siyaq Number Forty Thousand +\U0001EC99;Indic Siyaq Number Fifty Thousand +\U0001EC9A;Indic Siyaq Number Sixty Thousand +\U0001EC9B;Indic Siyaq Number Seventy Thousand +\U0001EC9C;Indic Siyaq Number Eighty Thousand +\U0001EC9D;Indic Siyaq Number Ninety Thousand +\U0001EC9E;Indic Siyaq Number Lakh +\U0001EC9F;Indic Siyaq Number Lakhan +\U0001ECA0;Indic Siyaq Lakh Mark +\U0001ECA1;Indic Siyaq Number Karor +\U0001ECA2;Indic Siyaq Number Karoran +\U0001ECA3;Indic Siyaq Number Prefixed One +\U0001ECA4;Indic Siyaq Number Prefixed Two +\U0001ECA5;Indic Siyaq Number Prefixed Three +\U0001ECA6;Indic Siyaq Number Prefixed Four +\U0001ECA7;Indic Siyaq Number Prefixed Five +\U0001ECA8;Indic Siyaq Number Prefixed Six +\U0001ECA9;Indic Siyaq Number Prefixed Seven +\U0001ECAA;Indic Siyaq Number Prefixed Eight +\U0001ECAB;Indic Siyaq Number Prefixed Nine +\U0001ECAC;Indic Siyaq Placeholder +\U0001ECAD;Indic Siyaq Fraction One Quarter +\U0001ECAE;Indic Siyaq Fraction One Half +\U0001ECAF;Indic Siyaq Fraction Three Quarters +\U0001ECB0;Indic Siyaq Rupee Mark +\U0001ECB1;Indic Siyaq Number Alternate One +\U0001ECB2;Indic Siyaq Number Alternate Two +\U0001ECB3;Indic Siyaq Number Alternate Ten Thousand +\U0001ECB4;Indic Siyaq Alternate Lakh Mark +\U0001ED01;Ottoman Siyaq Number One +\U0001ED02;Ottoman Siyaq Number Two +\U0001ED03;Ottoman Siyaq Number Three +\U0001ED04;Ottoman Siyaq Number Four +\U0001ED05;Ottoman Siyaq Number Five +\U0001ED06;Ottoman Siyaq Number Six +\U0001ED07;Ottoman Siyaq Number Seven +\U0001ED08;Ottoman Siyaq Number Eight +\U0001ED09;Ottoman Siyaq Number Nine +\U0001ED0A;Ottoman Siyaq Number Ten +\U0001ED0B;Ottoman Siyaq Number Twenty +\U0001ED0C;Ottoman Siyaq Number Thirty +\U0001ED0D;Ottoman Siyaq Number Forty +\U0001ED0E;Ottoman Siyaq Number Fifty +\U0001ED0F;Ottoman Siyaq Number Sixty +\U0001ED10;Ottoman Siyaq Number Seventy +\U0001ED11;Ottoman Siyaq Number Eighty +\U0001ED12;Ottoman Siyaq Number Ninety +\U0001ED13;Ottoman Siyaq Number One Hundred +\U0001ED14;Ottoman Siyaq Number Two Hundred +\U0001ED15;Ottoman Siyaq Number Three Hundred +\U0001ED16;Ottoman Siyaq Number Four Hundred +\U0001ED17;Ottoman Siyaq Number Five Hundred +\U0001ED18;Ottoman Siyaq Number Six Hundred +\U0001ED19;Ottoman Siyaq Number Seven Hundred +\U0001ED1A;Ottoman Siyaq Number Eight Hundred +\U0001ED1B;Ottoman Siyaq Number Nine Hundred +\U0001ED1C;Ottoman Siyaq Number One Thousand +\U0001ED1D;Ottoman Siyaq Number Two Thousand +\U0001ED1E;Ottoman Siyaq Number Three Thousand +\U0001ED1F;Ottoman Siyaq Number Four Thousand +\U0001ED20;Ottoman Siyaq Number Five Thousand +\U0001ED21;Ottoman Siyaq Number Six Thousand +\U0001ED22;Ottoman Siyaq Number Seven Thousand +\U0001ED23;Ottoman Siyaq Number Eight Thousand +\U0001ED24;Ottoman Siyaq Number Nine Thousand +\U0001ED25;Ottoman Siyaq Number Ten Thousand +\U0001ED26;Ottoman Siyaq Number Twenty Thousand +\U0001ED27;Ottoman Siyaq Number Thirty Thousand +\U0001ED28;Ottoman Siyaq Number Forty Thousand +\U0001ED29;Ottoman Siyaq Number Fifty Thousand +\U0001ED2A;Ottoman Siyaq Number Sixty Thousand +\U0001ED2B;Ottoman Siyaq Number Seventy Thousand +\U0001ED2C;Ottoman Siyaq Number Eighty Thousand +\U0001ED2D;Ottoman Siyaq Number Ninety Thousand +\U0001ED2E;Ottoman Siyaq Marratan +\U0001ED2F;Ottoman Siyaq Alternate Number Two +\U0001ED30;Ottoman Siyaq Alternate Number Three +\U0001ED31;Ottoman Siyaq Alternate Number Four +\U0001ED32;Ottoman Siyaq Alternate Number Five +\U0001ED33;Ottoman Siyaq Alternate Number Six +\U0001ED34;Ottoman Siyaq Alternate Number Seven +\U0001ED35;Ottoman Siyaq Alternate Number Eight +\U0001ED36;Ottoman Siyaq Alternate Number Nine +\U0001ED37;Ottoman Siyaq Alternate Number Ten +\U0001ED38;Ottoman Siyaq Alternate Number Four Hundred +\U0001ED39;Ottoman Siyaq Alternate Number Six Hundred +\U0001ED3A;Ottoman Siyaq Alternate Number Two Thousand +\U0001ED3B;Ottoman Siyaq Alternate Number Ten Thousand +\U0001ED3C;Ottoman Siyaq Fraction One Half +\U0001ED3D;Ottoman Siyaq Fraction One Sixth +\U0001EE00;Arabic Mathematical Alef +\U0001EE01;Arabic Mathematical Beh +\U0001EE02;Arabic Mathematical Jeem +\U0001EE03;Arabic Mathematical Dal +\U0001EE05;Arabic Mathematical Waw +\U0001EE06;Arabic Mathematical Zain +\U0001EE07;Arabic Mathematical Hah +\U0001EE08;Arabic Mathematical Tah +\U0001EE09;Arabic Mathematical Yeh +\U0001EE0A;Arabic Mathematical Kaf +\U0001EE0B;Arabic Mathematical Lam +\U0001EE0C;Arabic Mathematical Meem +\U0001EE0D;Arabic Mathematical Noon +\U0001EE0E;Arabic Mathematical Seen +\U0001EE0F;Arabic Mathematical Ain +\U0001EE10;Arabic Mathematical Feh +\U0001EE11;Arabic Mathematical Sad +\U0001EE12;Arabic Mathematical Qaf +\U0001EE13;Arabic Mathematical Reh +\U0001EE14;Arabic Mathematical Sheen +\U0001EE15;Arabic Mathematical Teh +\U0001EE16;Arabic Mathematical Theh +\U0001EE17;Arabic Mathematical Khah +\U0001EE18;Arabic Mathematical Thal +\U0001EE19;Arabic Mathematical Dad +\U0001EE1A;Arabic Mathematical Zah +\U0001EE1B;Arabic Mathematical Ghain +\U0001EE1C;Arabic Mathematical Dotless Beh +\U0001EE1D;Arabic Mathematical Dotless Noon +\U0001EE1E;Arabic Mathematical Dotless Feh +\U0001EE1F;Arabic Mathematical Dotless Qaf +\U0001EE21;Arabic Mathematical Initial Beh +\U0001EE22;Arabic Mathematical Initial Jeem +\U0001EE24;Arabic Mathematical Initial Heh +\U0001EE27;Arabic Mathematical Initial Hah +\U0001EE29;Arabic Mathematical Initial Yeh +\U0001EE2A;Arabic Mathematical Initial Kaf +\U0001EE2B;Arabic Mathematical Initial Lam +\U0001EE2C;Arabic Mathematical Initial Meem +\U0001EE2D;Arabic Mathematical Initial Noon +\U0001EE2E;Arabic Mathematical Initial Seen +\U0001EE2F;Arabic Mathematical Initial Ain +\U0001EE30;Arabic Mathematical Initial Feh +\U0001EE31;Arabic Mathematical Initial Sad +\U0001EE32;Arabic Mathematical Initial Qaf +\U0001EE34;Arabic Mathematical Initial Sheen +\U0001EE35;Arabic Mathematical Initial Teh +\U0001EE36;Arabic Mathematical Initial Theh +\U0001EE37;Arabic Mathematical Initial Khah +\U0001EE39;Arabic Mathematical Initial Dad +\U0001EE3B;Arabic Mathematical Initial Ghain +\U0001EE42;Arabic Mathematical Tailed Jeem +\U0001EE47;Arabic Mathematical Tailed Hah +\U0001EE49;Arabic Mathematical Tailed Yeh +\U0001EE4B;Arabic Mathematical Tailed Lam +\U0001EE4D;Arabic Mathematical Tailed Noon +\U0001EE4E;Arabic Mathematical Tailed Seen +\U0001EE4F;Arabic Mathematical Tailed Ain +\U0001EE51;Arabic Mathematical Tailed Sad +\U0001EE52;Arabic Mathematical Tailed Qaf +\U0001EE54;Arabic Mathematical Tailed Sheen +\U0001EE57;Arabic Mathematical Tailed Khah +\U0001EE59;Arabic Mathematical Tailed Dad +\U0001EE5B;Arabic Mathematical Tailed Ghain +\U0001EE5D;Arabic Mathematical Tailed Dotless Noon +\U0001EE5F;Arabic Mathematical Tailed Dotless Qaf +\U0001EE61;Arabic Mathematical Stretched Beh +\U0001EE62;Arabic Mathematical Stretched Jeem +\U0001EE64;Arabic Mathematical Stretched Heh +\U0001EE67;Arabic Mathematical Stretched Hah +\U0001EE68;Arabic Mathematical Stretched Tah +\U0001EE69;Arabic Mathematical Stretched Yeh +\U0001EE6A;Arabic Mathematical Stretched Kaf +\U0001EE6C;Arabic Mathematical Stretched Meem +\U0001EE6D;Arabic Mathematical Stretched Noon +\U0001EE6E;Arabic Mathematical Stretched Seen +\U0001EE6F;Arabic Mathematical Stretched Ain +\U0001EE70;Arabic Mathematical Stretched Feh +\U0001EE71;Arabic Mathematical Stretched Sad +\U0001EE72;Arabic Mathematical Stretched Qaf +\U0001EE74;Arabic Mathematical Stretched Sheen +\U0001EE75;Arabic Mathematical Stretched Teh +\U0001EE76;Arabic Mathematical Stretched Theh +\U0001EE77;Arabic Mathematical Stretched Khah +\U0001EE79;Arabic Mathematical Stretched Dad +\U0001EE7A;Arabic Mathematical Stretched Zah +\U0001EE7B;Arabic Mathematical Stretched Ghain +\U0001EE7C;Arabic Mathematical Stretched Dotless Beh +\U0001EE7E;Arabic Mathematical Stretched Dotless Feh +\U0001EE80;Arabic Mathematical Looped Alef +\U0001EE81;Arabic Mathematical Looped Beh +\U0001EE82;Arabic Mathematical Looped Jeem +\U0001EE83;Arabic Mathematical Looped Dal +\U0001EE84;Arabic Mathematical Looped Heh +\U0001EE85;Arabic Mathematical Looped Waw +\U0001EE86;Arabic Mathematical Looped Zain +\U0001EE87;Arabic Mathematical Looped Hah +\U0001EE88;Arabic Mathematical Looped Tah +\U0001EE89;Arabic Mathematical Looped Yeh +\U0001EE8B;Arabic Mathematical Looped Lam +\U0001EE8C;Arabic Mathematical Looped Meem +\U0001EE8D;Arabic Mathematical Looped Noon +\U0001EE8E;Arabic Mathematical Looped Seen +\U0001EE8F;Arabic Mathematical Looped Ain +\U0001EE90;Arabic Mathematical Looped Feh +\U0001EE91;Arabic Mathematical Looped Sad +\U0001EE92;Arabic Mathematical Looped Qaf +\U0001EE93;Arabic Mathematical Looped Reh +\U0001EE94;Arabic Mathematical Looped Sheen +\U0001EE95;Arabic Mathematical Looped Teh +\U0001EE96;Arabic Mathematical Looped Theh +\U0001EE97;Arabic Mathematical Looped Khah +\U0001EE98;Arabic Mathematical Looped Thal +\U0001EE99;Arabic Mathematical Looped Dad +\U0001EE9A;Arabic Mathematical Looped Zah +\U0001EE9B;Arabic Mathematical Looped Ghain +\U0001EEA1;Arabic Mathematical Double-Struck Beh +\U0001EEA2;Arabic Mathematical Double-Struck Jeem +\U0001EEA3;Arabic Mathematical Double-Struck Dal +\U0001EEA5;Arabic Mathematical Double-Struck Waw +\U0001EEA6;Arabic Mathematical Double-Struck Zain +\U0001EEA7;Arabic Mathematical Double-Struck Hah +\U0001EEA8;Arabic Mathematical Double-Struck Tah +\U0001EEA9;Arabic Mathematical Double-Struck Yeh +\U0001EEAB;Arabic Mathematical Double-Struck Lam +\U0001EEAC;Arabic Mathematical Double-Struck Meem +\U0001EEAD;Arabic Mathematical Double-Struck Noon +\U0001EEAE;Arabic Mathematical Double-Struck Seen +\U0001EEAF;Arabic Mathematical Double-Struck Ain +\U0001EEB0;Arabic Mathematical Double-Struck Feh +\U0001EEB1;Arabic Mathematical Double-Struck Sad +\U0001EEB2;Arabic Mathematical Double-Struck Qaf +\U0001EEB3;Arabic Mathematical Double-Struck Reh +\U0001EEB4;Arabic Mathematical Double-Struck Sheen +\U0001EEB5;Arabic Mathematical Double-Struck Teh +\U0001EEB6;Arabic Mathematical Double-Struck Theh +\U0001EEB7;Arabic Mathematical Double-Struck Khah +\U0001EEB8;Arabic Mathematical Double-Struck Thal +\U0001EEB9;Arabic Mathematical Double-Struck Dad +\U0001EEBA;Arabic Mathematical Double-Struck Zah +\U0001EEBB;Arabic Mathematical Double-Struck Ghain +\U0001EEF0;Arabic Mathematical Operator Meem With Hah With Tatweel +\U0001EEF1;Arabic Mathematical Operator Hah With Dal +\U0001F000;Mahjong Tile East Wind +\U0001F001;Mahjong Tile South Wind +\U0001F002;Mahjong Tile West Wind +\U0001F003;Mahjong Tile North Wind +\U0001F004;Mahjong Tile Red Dragon +\U0001F005;Mahjong Tile Green Dragon +\U0001F006;Mahjong Tile White Dragon +\U0001F007;Mahjong Tile One Of Characters +\U0001F008;Mahjong Tile Two Of Characters +\U0001F009;Mahjong Tile Three Of Characters +\U0001F00A;Mahjong Tile Four Of Characters +\U0001F00B;Mahjong Tile Five Of Characters +\U0001F00C;Mahjong Tile Six Of Characters +\U0001F00D;Mahjong Tile Seven Of Characters +\U0001F00E;Mahjong Tile Eight Of Characters +\U0001F00F;Mahjong Tile Nine Of Characters +\U0001F010;Mahjong Tile One Of Bamboos +\U0001F011;Mahjong Tile Two Of Bamboos +\U0001F012;Mahjong Tile Three Of Bamboos +\U0001F013;Mahjong Tile Four Of Bamboos +\U0001F014;Mahjong Tile Five Of Bamboos +\U0001F015;Mahjong Tile Six Of Bamboos +\U0001F016;Mahjong Tile Seven Of Bamboos +\U0001F017;Mahjong Tile Eight Of Bamboos +\U0001F018;Mahjong Tile Nine Of Bamboos +\U0001F019;Mahjong Tile One Of Circles +\U0001F01A;Mahjong Tile Two Of Circles +\U0001F01B;Mahjong Tile Three Of Circles +\U0001F01C;Mahjong Tile Four Of Circles +\U0001F01D;Mahjong Tile Five Of Circles +\U0001F01E;Mahjong Tile Six Of Circles +\U0001F01F;Mahjong Tile Seven Of Circles +\U0001F020;Mahjong Tile Eight Of Circles +\U0001F021;Mahjong Tile Nine Of Circles +\U0001F022;Mahjong Tile Plum +\U0001F023;Mahjong Tile Orchid +\U0001F024;Mahjong Tile Bamboo +\U0001F025;Mahjong Tile Chrysanthemum +\U0001F026;Mahjong Tile Spring +\U0001F027;Mahjong Tile Summer +\U0001F028;Mahjong Tile Autumn +\U0001F029;Mahjong Tile Winter +\U0001F02A;Mahjong Tile Joker +\U0001F02B;Mahjong Tile Back +\U0001F030;Domino Tile Horizontal Back +\U0001F031;Domino Tile Horizontal-00-00 +\U0001F032;Domino Tile Horizontal-00-01 +\U0001F033;Domino Tile Horizontal-00-02 +\U0001F034;Domino Tile Horizontal-00-03 +\U0001F035;Domino Tile Horizontal-00-04 +\U0001F036;Domino Tile Horizontal-00-05 +\U0001F037;Domino Tile Horizontal-00-06 +\U0001F038;Domino Tile Horizontal-01-00 +\U0001F039;Domino Tile Horizontal-01-01 +\U0001F03A;Domino Tile Horizontal-01-02 +\U0001F03B;Domino Tile Horizontal-01-03 +\U0001F03C;Domino Tile Horizontal-01-04 +\U0001F03D;Domino Tile Horizontal-01-05 +\U0001F03E;Domino Tile Horizontal-01-06 +\U0001F03F;Domino Tile Horizontal-02-00 +\U0001F040;Domino Tile Horizontal-02-01 +\U0001F041;Domino Tile Horizontal-02-02 +\U0001F042;Domino Tile Horizontal-02-03 +\U0001F043;Domino Tile Horizontal-02-04 +\U0001F044;Domino Tile Horizontal-02-05 +\U0001F045;Domino Tile Horizontal-02-06 +\U0001F046;Domino Tile Horizontal-03-00 +\U0001F047;Domino Tile Horizontal-03-01 +\U0001F048;Domino Tile Horizontal-03-02 +\U0001F049;Domino Tile Horizontal-03-03 +\U0001F04A;Domino Tile Horizontal-03-04 +\U0001F04B;Domino Tile Horizontal-03-05 +\U0001F04C;Domino Tile Horizontal-03-06 +\U0001F04D;Domino Tile Horizontal-04-00 +\U0001F04E;Domino Tile Horizontal-04-01 +\U0001F04F;Domino Tile Horizontal-04-02 +\U0001F050;Domino Tile Horizontal-04-03 +\U0001F051;Domino Tile Horizontal-04-04 +\U0001F052;Domino Tile Horizontal-04-05 +\U0001F053;Domino Tile Horizontal-04-06 +\U0001F054;Domino Tile Horizontal-05-00 +\U0001F055;Domino Tile Horizontal-05-01 +\U0001F056;Domino Tile Horizontal-05-02 +\U0001F057;Domino Tile Horizontal-05-03 +\U0001F058;Domino Tile Horizontal-05-04 +\U0001F059;Domino Tile Horizontal-05-05 +\U0001F05A;Domino Tile Horizontal-05-06 +\U0001F05B;Domino Tile Horizontal-06-00 +\U0001F05C;Domino Tile Horizontal-06-01 +\U0001F05D;Domino Tile Horizontal-06-02 +\U0001F05E;Domino Tile Horizontal-06-03 +\U0001F05F;Domino Tile Horizontal-06-04 +\U0001F060;Domino Tile Horizontal-06-05 +\U0001F061;Domino Tile Horizontal-06-06 +\U0001F062;Domino Tile Vertical Back +\U0001F063;Domino Tile Vertical-00-00 +\U0001F064;Domino Tile Vertical-00-01 +\U0001F065;Domino Tile Vertical-00-02 +\U0001F066;Domino Tile Vertical-00-03 +\U0001F067;Domino Tile Vertical-00-04 +\U0001F068;Domino Tile Vertical-00-05 +\U0001F069;Domino Tile Vertical-00-06 +\U0001F06A;Domino Tile Vertical-01-00 +\U0001F06B;Domino Tile Vertical-01-01 +\U0001F06C;Domino Tile Vertical-01-02 +\U0001F06D;Domino Tile Vertical-01-03 +\U0001F06E;Domino Tile Vertical-01-04 +\U0001F06F;Domino Tile Vertical-01-05 +\U0001F070;Domino Tile Vertical-01-06 +\U0001F071;Domino Tile Vertical-02-00 +\U0001F072;Domino Tile Vertical-02-01 +\U0001F073;Domino Tile Vertical-02-02 +\U0001F074;Domino Tile Vertical-02-03 +\U0001F075;Domino Tile Vertical-02-04 +\U0001F076;Domino Tile Vertical-02-05 +\U0001F077;Domino Tile Vertical-02-06 +\U0001F078;Domino Tile Vertical-03-00 +\U0001F079;Domino Tile Vertical-03-01 +\U0001F07A;Domino Tile Vertical-03-02 +\U0001F07B;Domino Tile Vertical-03-03 +\U0001F07C;Domino Tile Vertical-03-04 +\U0001F07D;Domino Tile Vertical-03-05 +\U0001F07E;Domino Tile Vertical-03-06 +\U0001F07F;Domino Tile Vertical-04-00 +\U0001F080;Domino Tile Vertical-04-01 +\U0001F081;Domino Tile Vertical-04-02 +\U0001F082;Domino Tile Vertical-04-03 +\U0001F083;Domino Tile Vertical-04-04 +\U0001F084;Domino Tile Vertical-04-05 +\U0001F085;Domino Tile Vertical-04-06 +\U0001F086;Domino Tile Vertical-05-00 +\U0001F087;Domino Tile Vertical-05-01 +\U0001F088;Domino Tile Vertical-05-02 +\U0001F089;Domino Tile Vertical-05-03 +\U0001F08A;Domino Tile Vertical-05-04 +\U0001F08B;Domino Tile Vertical-05-05 +\U0001F08C;Domino Tile Vertical-05-06 +\U0001F08D;Domino Tile Vertical-06-00 +\U0001F08E;Domino Tile Vertical-06-01 +\U0001F08F;Domino Tile Vertical-06-02 +\U0001F090;Domino Tile Vertical-06-03 +\U0001F091;Domino Tile Vertical-06-04 +\U0001F092;Domino Tile Vertical-06-05 +\U0001F093;Domino Tile Vertical-06-06 +\U0001F0A0;Playing Card Back +\U0001F0A1;Playing Card Ace Of Spades +\U0001F0A2;Playing Card Two Of Spades +\U0001F0A3;Playing Card Three Of Spades +\U0001F0A4;Playing Card Four Of Spades +\U0001F0A5;Playing Card Five Of Spades +\U0001F0A6;Playing Card Six Of Spades +\U0001F0A7;Playing Card Seven Of Spades +\U0001F0A8;Playing Card Eight Of Spades +\U0001F0A9;Playing Card Nine Of Spades +\U0001F0AA;Playing Card Ten Of Spades +\U0001F0AB;Playing Card Jack Of Spades +\U0001F0AC;Playing Card Knight Of Spades +\U0001F0AD;Playing Card Queen Of Spades +\U0001F0AE;Playing Card King Of Spades +\U0001F0B1;Playing Card Ace Of Hearts +\U0001F0B2;Playing Card Two Of Hearts +\U0001F0B3;Playing Card Three Of Hearts +\U0001F0B4;Playing Card Four Of Hearts +\U0001F0B5;Playing Card Five Of Hearts +\U0001F0B6;Playing Card Six Of Hearts +\U0001F0B7;Playing Card Seven Of Hearts +\U0001F0B8;Playing Card Eight Of Hearts +\U0001F0B9;Playing Card Nine Of Hearts +\U0001F0BA;Playing Card Ten Of Hearts +\U0001F0BB;Playing Card Jack Of Hearts +\U0001F0BC;Playing Card Knight Of Hearts +\U0001F0BD;Playing Card Queen Of Hearts +\U0001F0BE;Playing Card King Of Hearts +\U0001F0BF;Playing Card Red Joker +\U0001F0C1;Playing Card Ace Of Diamonds +\U0001F0C2;Playing Card Two Of Diamonds +\U0001F0C3;Playing Card Three Of Diamonds +\U0001F0C4;Playing Card Four Of Diamonds +\U0001F0C5;Playing Card Five Of Diamonds +\U0001F0C6;Playing Card Six Of Diamonds +\U0001F0C7;Playing Card Seven Of Diamonds +\U0001F0C8;Playing Card Eight Of Diamonds +\U0001F0C9;Playing Card Nine Of Diamonds +\U0001F0CA;Playing Card Ten Of Diamonds +\U0001F0CB;Playing Card Jack Of Diamonds +\U0001F0CC;Playing Card Knight Of Diamonds +\U0001F0CD;Playing Card Queen Of Diamonds +\U0001F0CE;Playing Card King Of Diamonds +\U0001F0CF;Playing Card Black Joker +\U0001F0D1;Playing Card Ace Of Clubs +\U0001F0D2;Playing Card Two Of Clubs +\U0001F0D3;Playing Card Three Of Clubs +\U0001F0D4;Playing Card Four Of Clubs +\U0001F0D5;Playing Card Five Of Clubs +\U0001F0D6;Playing Card Six Of Clubs +\U0001F0D7;Playing Card Seven Of Clubs +\U0001F0D8;Playing Card Eight Of Clubs +\U0001F0D9;Playing Card Nine Of Clubs +\U0001F0DA;Playing Card Ten Of Clubs +\U0001F0DB;Playing Card Jack Of Clubs +\U0001F0DC;Playing Card Knight Of Clubs +\U0001F0DD;Playing Card Queen Of Clubs +\U0001F0DE;Playing Card King Of Clubs +\U0001F0DF;Playing Card White Joker +\U0001F0E0;Playing Card Fool +\U0001F0E1;Playing Card Trump-1 +\U0001F0E2;Playing Card Trump-2 +\U0001F0E3;Playing Card Trump-3 +\U0001F0E4;Playing Card Trump-4 +\U0001F0E5;Playing Card Trump-5 +\U0001F0E6;Playing Card Trump-6 +\U0001F0E7;Playing Card Trump-7 +\U0001F0E8;Playing Card Trump-8 +\U0001F0E9;Playing Card Trump-9 +\U0001F0EA;Playing Card Trump-10 +\U0001F0EB;Playing Card Trump-11 +\U0001F0EC;Playing Card Trump-12 +\U0001F0ED;Playing Card Trump-13 +\U0001F0EE;Playing Card Trump-14 +\U0001F0EF;Playing Card Trump-15 +\U0001F0F0;Playing Card Trump-16 +\U0001F0F1;Playing Card Trump-17 +\U0001F0F2;Playing Card Trump-18 +\U0001F0F3;Playing Card Trump-19 +\U0001F0F4;Playing Card Trump-20 +\U0001F0F5;Playing Card Trump-21 +\U0001F100;Digit Zero Full Stop +\U0001F101;Digit Zero Comma +\U0001F102;Digit One Comma +\U0001F103;Digit Two Comma +\U0001F104;Digit Three Comma +\U0001F105;Digit Four Comma +\U0001F106;Digit Five Comma +\U0001F107;Digit Six Comma +\U0001F108;Digit Seven Comma +\U0001F109;Digit Eight Comma +\U0001F10A;Digit Nine Comma +\U0001F10B;Dingbat Circled Sans-Serif Digit Zero +\U0001F10C;Dingbat Negative Circled Sans-Serif Digit Zero +\U0001F10D;Circled Zero With Slash +\U0001F10E;Circled Anticlockwise Arrow +\U0001F10F;Circled Dollar Sign With Overlaid Backslash +\U0001F110;Parenthesized Latin Capital Letter A +\U0001F111;Parenthesized Latin Capital Letter B +\U0001F112;Parenthesized Latin Capital Letter C +\U0001F113;Parenthesized Latin Capital Letter D +\U0001F114;Parenthesized Latin Capital Letter E +\U0001F115;Parenthesized Latin Capital Letter F +\U0001F116;Parenthesized Latin Capital Letter G +\U0001F117;Parenthesized Latin Capital Letter H +\U0001F118;Parenthesized Latin Capital Letter I +\U0001F119;Parenthesized Latin Capital Letter J +\U0001F11A;Parenthesized Latin Capital Letter K +\U0001F11B;Parenthesized Latin Capital Letter L +\U0001F11C;Parenthesized Latin Capital Letter M +\U0001F11D;Parenthesized Latin Capital Letter N +\U0001F11E;Parenthesized Latin Capital Letter O +\U0001F11F;Parenthesized Latin Capital Letter P +\U0001F120;Parenthesized Latin Capital Letter Q +\U0001F121;Parenthesized Latin Capital Letter R +\U0001F122;Parenthesized Latin Capital Letter S +\U0001F123;Parenthesized Latin Capital Letter T +\U0001F124;Parenthesized Latin Capital Letter U +\U0001F125;Parenthesized Latin Capital Letter V +\U0001F126;Parenthesized Latin Capital Letter W +\U0001F127;Parenthesized Latin Capital Letter X +\U0001F128;Parenthesized Latin Capital Letter Y +\U0001F129;Parenthesized Latin Capital Letter Z +\U0001F12A;Tortoise Shell Bracketed Latin Capital Letter S +\U0001F12B;Circled Italic Latin Capital Letter C +\U0001F12C;Circled Italic Latin Capital Letter R +\U0001F12D;Circled Cd +\U0001F12E;Circled Wz +\U0001F12F;Copyleft Symbol +\U0001F130;Squared Latin Capital Letter A +\U0001F131;Squared Latin Capital Letter B +\U0001F132;Squared Latin Capital Letter C +\U0001F133;Squared Latin Capital Letter D +\U0001F134;Squared Latin Capital Letter E +\U0001F135;Squared Latin Capital Letter F +\U0001F136;Squared Latin Capital Letter G +\U0001F137;Squared Latin Capital Letter H +\U0001F138;Squared Latin Capital Letter I +\U0001F139;Squared Latin Capital Letter J +\U0001F13A;Squared Latin Capital Letter K +\U0001F13B;Squared Latin Capital Letter L +\U0001F13C;Squared Latin Capital Letter M +\U0001F13D;Squared Latin Capital Letter N +\U0001F13E;Squared Latin Capital Letter O +\U0001F13F;Squared Latin Capital Letter P +\U0001F140;Squared Latin Capital Letter Q +\U0001F141;Squared Latin Capital Letter R +\U0001F142;Squared Latin Capital Letter S +\U0001F143;Squared Latin Capital Letter T +\U0001F144;Squared Latin Capital Letter U +\U0001F145;Squared Latin Capital Letter V +\U0001F146;Squared Latin Capital Letter W +\U0001F147;Squared Latin Capital Letter X +\U0001F148;Squared Latin Capital Letter Y +\U0001F149;Squared Latin Capital Letter Z +\U0001F14A;Squared Hv +\U0001F14B;Squared Mv +\U0001F14C;Squared Sd +\U0001F14D;Squared Ss +\U0001F14E;Squared Ppv +\U0001F14F;Squared Wc +\U0001F150;Negative Circled Latin Capital Letter A +\U0001F151;Negative Circled Latin Capital Letter B +\U0001F152;Negative Circled Latin Capital Letter C +\U0001F153;Negative Circled Latin Capital Letter D +\U0001F154;Negative Circled Latin Capital Letter E +\U0001F155;Negative Circled Latin Capital Letter F +\U0001F156;Negative Circled Latin Capital Letter G +\U0001F157;Negative Circled Latin Capital Letter H +\U0001F158;Negative Circled Latin Capital Letter I +\U0001F159;Negative Circled Latin Capital Letter J +\U0001F15A;Negative Circled Latin Capital Letter K +\U0001F15B;Negative Circled Latin Capital Letter L +\U0001F15C;Negative Circled Latin Capital Letter M +\U0001F15D;Negative Circled Latin Capital Letter N +\U0001F15E;Negative Circled Latin Capital Letter O +\U0001F15F;Negative Circled Latin Capital Letter P +\U0001F160;Negative Circled Latin Capital Letter Q +\U0001F161;Negative Circled Latin Capital Letter R +\U0001F162;Negative Circled Latin Capital Letter S +\U0001F163;Negative Circled Latin Capital Letter T +\U0001F164;Negative Circled Latin Capital Letter U +\U0001F165;Negative Circled Latin Capital Letter V +\U0001F166;Negative Circled Latin Capital Letter W +\U0001F167;Negative Circled Latin Capital Letter X +\U0001F168;Negative Circled Latin Capital Letter Y +\U0001F169;Negative Circled Latin Capital Letter Z +\U0001F16A;Raised Mc Sign +\U0001F16B;Raised Md Sign +\U0001F16C;Raised Mr Sign +\U0001F16D;Circled Cc +\U0001F16E;Circled C With Overlaid Backslash +\U0001F16F;Circled Human Figure +\U0001F170;Negative Squared Latin Capital Letter A +\U0001F171;Negative Squared Latin Capital Letter B +\U0001F172;Negative Squared Latin Capital Letter C +\U0001F173;Negative Squared Latin Capital Letter D +\U0001F174;Negative Squared Latin Capital Letter E +\U0001F175;Negative Squared Latin Capital Letter F +\U0001F176;Negative Squared Latin Capital Letter G +\U0001F177;Negative Squared Latin Capital Letter H +\U0001F178;Negative Squared Latin Capital Letter I +\U0001F179;Negative Squared Latin Capital Letter J +\U0001F17A;Negative Squared Latin Capital Letter K +\U0001F17B;Negative Squared Latin Capital Letter L +\U0001F17C;Negative Squared Latin Capital Letter M +\U0001F17D;Negative Squared Latin Capital Letter N +\U0001F17E;Negative Squared Latin Capital Letter O +\U0001F17F;Negative Squared Latin Capital Letter P +\U0001F180;Negative Squared Latin Capital Letter Q +\U0001F181;Negative Squared Latin Capital Letter R +\U0001F182;Negative Squared Latin Capital Letter S +\U0001F183;Negative Squared Latin Capital Letter T +\U0001F184;Negative Squared Latin Capital Letter U +\U0001F185;Negative Squared Latin Capital Letter V +\U0001F186;Negative Squared Latin Capital Letter W +\U0001F187;Negative Squared Latin Capital Letter X +\U0001F188;Negative Squared Latin Capital Letter Y +\U0001F189;Negative Squared Latin Capital Letter Z +\U0001F18A;Crossed Negative Squared Latin Capital Letter P +\U0001F18B;Negative Squared Ic +\U0001F18C;Negative Squared Pa +\U0001F18D;Negative Squared Sa +\U0001F18E;Negative Squared Ab +\U0001F18F;Negative Squared Wc +\U0001F190;Square Dj +\U0001F191;Squared Cl +\U0001F192;Squared Cool +\U0001F193;Squared Free +\U0001F194;Squared Id +\U0001F195;Squared New +\U0001F196;Squared Ng +\U0001F197;Squared Ok +\U0001F198;Squared Sos +\U0001F199;Squared Up With Exclamation Mark +\U0001F19A;Squared Vs +\U0001F19B;Squared Three D +\U0001F19C;Squared Second Screen +\U0001F19D;Squared Two K +\U0001F19E;Squared Four K +\U0001F19F;Squared Eight K +\U0001F1A0;Squared Five Point One +\U0001F1A1;Squared Seven Point One +\U0001F1A2;Squared Twenty-Two Point Two +\U0001F1A3;Squared Sixty P +\U0001F1A4;Squared One Hundred Twenty P +\U0001F1A5;Squared Latin Small Letter D +\U0001F1A6;Squared Hc +\U0001F1A7;Squared Hdr +\U0001F1A8;Squared Hi-Res +\U0001F1A9;Squared Lossless +\U0001F1AA;Squared Shv +\U0001F1AB;Squared Uhd +\U0001F1AC;Squared Vod +\U0001F1AD;Mask Work Symbol +\U0001F1E6;Regional Indicator Symbol Letter A +\U0001F1E7;Regional Indicator Symbol Letter B +\U0001F1E8;Regional Indicator Symbol Letter C +\U0001F1E9;Regional Indicator Symbol Letter D +\U0001F1EA;Regional Indicator Symbol Letter E +\U0001F1EB;Regional Indicator Symbol Letter F +\U0001F1EC;Regional Indicator Symbol Letter G +\U0001F1ED;Regional Indicator Symbol Letter H +\U0001F1EE;Regional Indicator Symbol Letter I +\U0001F1EF;Regional Indicator Symbol Letter J +\U0001F1F0;Regional Indicator Symbol Letter K +\U0001F1F1;Regional Indicator Symbol Letter L +\U0001F1F2;Regional Indicator Symbol Letter M +\U0001F1F3;Regional Indicator Symbol Letter N +\U0001F1F4;Regional Indicator Symbol Letter O +\U0001F1F5;Regional Indicator Symbol Letter P +\U0001F1F6;Regional Indicator Symbol Letter Q +\U0001F1F7;Regional Indicator Symbol Letter R +\U0001F1F8;Regional Indicator Symbol Letter S +\U0001F1F9;Regional Indicator Symbol Letter T +\U0001F1FA;Regional Indicator Symbol Letter U +\U0001F1FB;Regional Indicator Symbol Letter V +\U0001F1FC;Regional Indicator Symbol Letter W +\U0001F1FD;Regional Indicator Symbol Letter X +\U0001F1FE;Regional Indicator Symbol Letter Y +\U0001F1FF;Regional Indicator Symbol Letter Z +\U0001F200;Square Hiragana Hoka +\U0001F201;Squared Katakana Koko +\U0001F202;Squared Katakana Sa +\U0001F210;Squared Cjk Unified Ideograph-624B +\U0001F211;Squared Cjk Unified Ideograph-5b57 +\U0001F212;Squared Cjk Unified Ideograph-53CC +\U0001F213;Squared Katakana De +\U0001F214;Squared Cjk Unified Ideograph-4e8C +\U0001F215;Squared Cjk Unified Ideograph-591A +\U0001F216;Squared Cjk Unified Ideograph-89E3 +\U0001F217;Squared Cjk Unified Ideograph-5929 +\U0001F218;Squared Cjk Unified Ideograph-4ea4 +\U0001F219;Squared Cjk Unified Ideograph-6620 +\U0001F21A;Squared Cjk Unified Ideograph-7121 +\U0001F21B;Squared Cjk Unified Ideograph-6599 +\U0001F21C;Squared Cjk Unified Ideograph-524D +\U0001F21D;Squared Cjk Unified Ideograph-5f8C +\U0001F21E;Squared Cjk Unified Ideograph-518D +\U0001F21F;Squared Cjk Unified Ideograph-65B0 +\U0001F220;Squared Cjk Unified Ideograph-521D +\U0001F221;Squared Cjk Unified Ideograph-7d42 +\U0001F222;Squared Cjk Unified Ideograph-751F +\U0001F223;Squared Cjk Unified Ideograph-8ca9 +\U0001F224;Squared Cjk Unified Ideograph-58F0 +\U0001F225;Squared Cjk Unified Ideograph-5439 +\U0001F226;Squared Cjk Unified Ideograph-6f14 +\U0001F227;Squared Cjk Unified Ideograph-6295 +\U0001F228;Squared Cjk Unified Ideograph-6355 +\U0001F229;Squared Cjk Unified Ideograph-4e00 +\U0001F22A;Squared Cjk Unified Ideograph-4e09 +\U0001F22B;Squared Cjk Unified Ideograph-904A +\U0001F22C;Squared Cjk Unified Ideograph-5de6 +\U0001F22D;Squared Cjk Unified Ideograph-4e2D +\U0001F22E;Squared Cjk Unified Ideograph-53F3 +\U0001F22F;Squared Cjk Unified Ideograph-6307 +\U0001F230;Squared Cjk Unified Ideograph-8d70 +\U0001F231;Squared Cjk Unified Ideograph-6253 +\U0001F232;Squared Cjk Unified Ideograph-7981 +\U0001F233;Squared Cjk Unified Ideograph-7a7A +\U0001F234;Squared Cjk Unified Ideograph-5408 +\U0001F235;Squared Cjk Unified Ideograph-6e80 +\U0001F236;Squared Cjk Unified Ideograph-6709 +\U0001F237;Squared Cjk Unified Ideograph-6708 +\U0001F238;Squared Cjk Unified Ideograph-7533 +\U0001F239;Squared Cjk Unified Ideograph-5272 +\U0001F23A;Squared Cjk Unified Ideograph-55B6 +\U0001F23B;Squared Cjk Unified Ideograph-914D +\U0001F240;Tortoise Shell Bracketed Cjk Unified Ideograph-672C +\U0001F241;Tortoise Shell Bracketed Cjk Unified Ideograph-4e09 +\U0001F242;Tortoise Shell Bracketed Cjk Unified Ideograph-4e8C +\U0001F243;Tortoise Shell Bracketed Cjk Unified Ideograph-5b89 +\U0001F244;Tortoise Shell Bracketed Cjk Unified Ideograph-70B9 +\U0001F245;Tortoise Shell Bracketed Cjk Unified Ideograph-6253 +\U0001F246;Tortoise Shell Bracketed Cjk Unified Ideograph-76D7 +\U0001F247;Tortoise Shell Bracketed Cjk Unified Ideograph-52DD +\U0001F248;Tortoise Shell Bracketed Cjk Unified Ideograph-6557 +\U0001F250;Circled Ideograph Advantage +\U0001F251;Circled Ideograph Accept +\U0001F260;Rounded Symbol For Fu +\U0001F261;Rounded Symbol For Lu +\U0001F262;Rounded Symbol For Shou +\U0001F263;Rounded Symbol For Xi +\U0001F264;Rounded Symbol For Shuangxi +\U0001F265;Rounded Symbol For Cai +\U0001F300;Cyclone +\U0001F301;Foggy +\U0001F302;Closed Umbrella +\U0001F303;Night With Stars +\U0001F304;Sunrise Over Mountains +\U0001F305;Sunrise +\U0001F306;Cityscape At Dusk +\U0001F307;Sunset Over Buildings +\U0001F308;Rainbow +\U0001F309;Bridge At Night +\U0001F30A;Water Wave +\U0001F30B;Volcano +\U0001F30C;Milky Way +\U0001F30D;Earth Globe Europe-Africa +\U0001F30E;Earth Globe Americas +\U0001F30F;Earth Globe Asia-Australia +\U0001F310;Globe With Meridians +\U0001F311;New Moon Symbol +\U0001F312;Waxing Crescent Moon Symbol +\U0001F313;First Quarter Moon Symbol +\U0001F314;Waxing Gibbous Moon Symbol +\U0001F315;Full Moon Symbol +\U0001F316;Waning Gibbous Moon Symbol +\U0001F317;Last Quarter Moon Symbol +\U0001F318;Waning Crescent Moon Symbol +\U0001F319;Crescent Moon +\U0001F31A;New Moon With Face +\U0001F31B;First Quarter Moon With Face +\U0001F31C;Last Quarter Moon With Face +\U0001F31D;Full Moon With Face +\U0001F31E;Sun With Face +\U0001F31F;Glowing Star +\U0001F320;Shooting Star +\U0001F321;Thermometer +\U0001F322;Black Droplet +\U0001F323;White Sun +\U0001F324;White Sun With Small Cloud +\U0001F325;White Sun Behind Cloud +\U0001F326;White Sun Behind Cloud With Rain +\U0001F327;Cloud With Rain +\U0001F328;Cloud With Snow +\U0001F329;Cloud With Lightning +\U0001F32A;Cloud With Tornado +\U0001F32B;Fog +\U0001F32C;Wind Blowing Face +\U0001F32D;Hot Dog +\U0001F32E;Taco +\U0001F32F;Burrito +\U0001F330;Chestnut +\U0001F331;Seedling +\U0001F332;Evergreen Tree +\U0001F333;Deciduous Tree +\U0001F334;Palm Tree +\U0001F335;Cactus +\U0001F336;Hot Pepper +\U0001F337;Tulip +\U0001F338;Cherry Blossom +\U0001F339;Rose +\U0001F33A;Hibiscus +\U0001F33B;Sunflower +\U0001F33C;Blossom +\U0001F33D;Ear Of Maize +\U0001F33E;Ear Of Rice +\U0001F33F;Herb +\U0001F340;Four Leaf Clover +\U0001F341;Maple Leaf +\U0001F342;Fallen Leaf +\U0001F343;Leaf Fluttering In Wind +\U0001F344;Mushroom +\U0001F345;Tomato +\U0001F346;Aubergine +\U0001F347;Grapes +\U0001F348;Melon +\U0001F349;Watermelon +\U0001F34A;Tangerine +\U0001F34B;Lemon +\U0001F34C;Banana +\U0001F34D;Pineapple +\U0001F34E;Red Apple +\U0001F34F;Green Apple +\U0001F350;Pear +\U0001F351;Peach +\U0001F352;Cherries +\U0001F353;Strawberry +\U0001F354;Hamburger +\U0001F355;Slice Of Pizza +\U0001F356;Meat On Bone +\U0001F357;Poultry Leg +\U0001F358;Rice Cracker +\U0001F359;Rice Ball +\U0001F35A;Cooked Rice +\U0001F35B;Curry And Rice +\U0001F35C;Steaming Bowl +\U0001F35D;Spaghetti +\U0001F35E;Bread +\U0001F35F;French Fries +\U0001F360;Roasted Sweet Potato +\U0001F361;Dango +\U0001F362;Oden +\U0001F363;Sushi +\U0001F364;Fried Shrimp +\U0001F365;Fish Cake With Swirl Design +\U0001F366;Soft Ice Cream +\U0001F367;Shaved Ice +\U0001F368;Ice Cream +\U0001F369;Doughnut +\U0001F36A;Cookie +\U0001F36B;Chocolate Bar +\U0001F36C;Candy +\U0001F36D;Lollipop +\U0001F36E;Custard +\U0001F36F;Honey Pot +\U0001F370;Shortcake +\U0001F371;Bento Box +\U0001F372;Pot Of Food +\U0001F373;Cooking +\U0001F374;Fork And Knife +\U0001F375;Teacup Without Handle +\U0001F376;Sake Bottle And Cup +\U0001F377;Wine Glass +\U0001F378;Cocktail Glass +\U0001F379;Tropical Drink +\U0001F37A;Beer Mug +\U0001F37B;Clinking Beer Mugs +\U0001F37C;Baby Bottle +\U0001F37D;Fork And Knife With Plate +\U0001F37E;Bottle With Popping Cork +\U0001F37F;Popcorn +\U0001F380;Ribbon +\U0001F381;Wrapped Present +\U0001F382;Birthday Cake +\U0001F383;Jack-O-Lantern +\U0001F384;Christmas Tree +\U0001F385;Father Christmas +\U0001F386;Fireworks +\U0001F387;Firework Sparkler +\U0001F388;Balloon +\U0001F389;Party Popper +\U0001F38A;Confetti Ball +\U0001F38B;Tanabata Tree +\U0001F38C;Crossed Flags +\U0001F38D;Pine Decoration +\U0001F38E;Japanese Dolls +\U0001F38F;Carp Streamer +\U0001F390;Wind Chime +\U0001F391;Moon Viewing Ceremony +\U0001F392;School Satchel +\U0001F393;Graduation Cap +\U0001F394;Heart With Tip On The Left +\U0001F395;Bouquet Of Flowers +\U0001F396;Military Medal +\U0001F397;Reminder Ribbon +\U0001F398;Musical Keyboard With Jacks +\U0001F399;Studio Microphone +\U0001F39A;Level Slider +\U0001F39B;Control Knobs +\U0001F39C;Beamed Ascending Musical Notes +\U0001F39D;Beamed Descending Musical Notes +\U0001F39E;Film Frames +\U0001F39F;Admission Tickets +\U0001F3A0;Carousel Horse +\U0001F3A1;Ferris Wheel +\U0001F3A2;Roller Coaster +\U0001F3A3;Fishing Pole And Fish +\U0001F3A4;Microphone +\U0001F3A5;Movie Camera +\U0001F3A6;Cinema +\U0001F3A7;Headphone +\U0001F3A8;Artist Palette +\U0001F3A9;Top Hat +\U0001F3AA;Circus Tent +\U0001F3AB;Ticket +\U0001F3AC;Clapper Board +\U0001F3AD;Performing Arts +\U0001F3AE;Video Game +\U0001F3AF;Direct Hit +\U0001F3B0;Slot Machine +\U0001F3B1;Billiards +\U0001F3B2;Game Die +\U0001F3B3;Bowling +\U0001F3B4;Flower Playing Cards +\U0001F3B5;Musical Note +\U0001F3B6;Multiple Musical Notes +\U0001F3B7;Saxophone +\U0001F3B8;Guitar +\U0001F3B9;Musical Keyboard +\U0001F3BA;Trumpet +\U0001F3BB;Violin +\U0001F3BC;Musical Score +\U0001F3BD;Running Shirt With Sash +\U0001F3BE;Tennis Racquet And Ball +\U0001F3BF;Ski And Ski Boot +\U0001F3C0;Basketball And Hoop +\U0001F3C1;Chequered Flag +\U0001F3C2;Snowboarder +\U0001F3C3;Runner +\U0001F3C4;Surfer +\U0001F3C5;Sports Medal +\U0001F3C6;Trophy +\U0001F3C7;Horse Racing +\U0001F3C8;American Football +\U0001F3C9;Rugby Football +\U0001F3CA;Swimmer +\U0001F3CB;Weight Lifter +\U0001F3CC;Golfer +\U0001F3CD;Racing Motorcycle +\U0001F3CE;Racing Car +\U0001F3CF;Cricket Bat And Ball +\U0001F3D0;Volleyball +\U0001F3D1;Field Hockey Stick And Ball +\U0001F3D2;Ice Hockey Stick And Puck +\U0001F3D3;Table Tennis Paddle And Ball +\U0001F3D4;Snow Capped Mountain +\U0001F3D5;Camping +\U0001F3D6;Beach With Umbrella +\U0001F3D7;Building Construction +\U0001F3D8;House Buildings +\U0001F3D9;Cityscape +\U0001F3DA;Derelict House Building +\U0001F3DB;Classical Building +\U0001F3DC;Desert +\U0001F3DD;Desert Island +\U0001F3DE;National Park +\U0001F3DF;Stadium +\U0001F3E0;House Building +\U0001F3E1;House With Garden +\U0001F3E2;Office Building +\U0001F3E3;Japanese Post Office +\U0001F3E4;European Post Office +\U0001F3E5;Hospital +\U0001F3E6;Bank +\U0001F3E7;Automated Teller Machine +\U0001F3E8;Hotel +\U0001F3E9;Love Hotel +\U0001F3EA;Convenience Store +\U0001F3EB;School +\U0001F3EC;Department Store +\U0001F3ED;Factory +\U0001F3EE;Izakaya Lantern +\U0001F3EF;Japanese Castle +\U0001F3F0;European Castle +\U0001F3F1;White Pennant +\U0001F3F2;Black Pennant +\U0001F3F3;Waving White Flag +\U0001F3F4;Waving Black Flag +\U0001F3F5;Rosette +\U0001F3F6;Black Rosette +\U0001F3F7;Label +\U0001F3F8;Badminton Racquet And Shuttlecock +\U0001F3F9;Bow And Arrow +\U0001F3FA;Amphora +\U0001F3FB;Emoji Modifier Fitzpatrick Type-1-2 +\U0001F3FC;Emoji Modifier Fitzpatrick Type-3 +\U0001F3FD;Emoji Modifier Fitzpatrick Type-4 +\U0001F3FE;Emoji Modifier Fitzpatrick Type-5 +\U0001F3FF;Emoji Modifier Fitzpatrick Type-6 +\U0001F400;Rat +\U0001F401;Mouse +\U0001F402;Ox +\U0001F403;Water Buffalo +\U0001F404;Cow +\U0001F405;Tiger +\U0001F406;Leopard +\U0001F407;Rabbit +\U0001F408;Cat +\U0001F409;Dragon +\U0001F40A;Crocodile +\U0001F40B;Whale +\U0001F40C;Snail +\U0001F40D;Snake +\U0001F40E;Horse +\U0001F40F;Ram +\U0001F410;Goat +\U0001F411;Sheep +\U0001F412;Monkey +\U0001F413;Rooster +\U0001F414;Chicken +\U0001F415;Dog +\U0001F416;Pig +\U0001F417;Boar +\U0001F418;Elephant +\U0001F419;Octopus +\U0001F41A;Spiral Shell +\U0001F41B;Bug +\U0001F41C;Ant +\U0001F41D;Honeybee +\U0001F41E;Lady Beetle +\U0001F41F;Fish +\U0001F420;Tropical Fish +\U0001F421;Blowfish +\U0001F422;Turtle +\U0001F423;Hatching Chick +\U0001F424;Baby Chick +\U0001F425;Front-Facing Baby Chick +\U0001F426;Bird +\U0001F427;Penguin +\U0001F428;Koala +\U0001F429;Poodle +\U0001F42A;Dromedary Camel +\U0001F42B;Bactrian Camel +\U0001F42C;Dolphin +\U0001F42D;Mouse Face +\U0001F42E;Cow Face +\U0001F42F;Tiger Face +\U0001F430;Rabbit Face +\U0001F431;Cat Face +\U0001F432;Dragon Face +\U0001F433;Spouting Whale +\U0001F434;Horse Face +\U0001F435;Monkey Face +\U0001F436;Dog Face +\U0001F437;Pig Face +\U0001F438;Frog Face +\U0001F439;Hamster Face +\U0001F43A;Wolf Face +\U0001F43B;Bear Face +\U0001F43C;Panda Face +\U0001F43D;Pig Nose +\U0001F43E;Paw Prints +\U0001F43F;Chipmunk +\U0001F440;Eyes +\U0001F441;Eye +\U0001F442;Ear +\U0001F443;Nose +\U0001F444;Mouth +\U0001F445;Tongue +\U0001F446;White Up Pointing Backhand Index +\U0001F447;White Down Pointing Backhand Index +\U0001F448;White Left Pointing Backhand Index +\U0001F449;White Right Pointing Backhand Index +\U0001F44A;Fisted Hand Sign +\U0001F44B;Waving Hand Sign +\U0001F44C;Ok Hand Sign +\U0001F44D;Thumbs Up Sign +\U0001F44E;Thumbs Down Sign +\U0001F44F;Clapping Hands Sign +\U0001F450;Open Hands Sign +\U0001F451;Crown +\U0001F452;Womans Hat +\U0001F453;Eyeglasses +\U0001F454;Necktie +\U0001F455;T-Shirt +\U0001F456;Jeans +\U0001F457;Dress +\U0001F458;Kimono +\U0001F459;Bikini +\U0001F45A;Womans Clothes +\U0001F45B;Purse +\U0001F45C;Handbag +\U0001F45D;Pouch +\U0001F45E;Mans Shoe +\U0001F45F;Athletic Shoe +\U0001F460;High-Heeled Shoe +\U0001F461;Womans Sandal +\U0001F462;Womans Boots +\U0001F463;Footprints +\U0001F464;Bust In Silhouette +\U0001F465;Busts In Silhouette +\U0001F466;Boy +\U0001F467;Girl +\U0001F468;Man +\U0001F469;Woman +\U0001F46A;Family +\U0001F46B;Man And Woman Holding Hands +\U0001F46C;Two Men Holding Hands +\U0001F46D;Two Women Holding Hands +\U0001F46E;Police Officer +\U0001F46F;Woman With Bunny Ears +\U0001F470;Bride With Veil +\U0001F471;Person With Blond Hair +\U0001F472;Man With Gua Pi Mao +\U0001F473;Man With Turban +\U0001F474;Older Man +\U0001F475;Older Woman +\U0001F476;Baby +\U0001F477;Construction Worker +\U0001F478;Princess +\U0001F479;Japanese Ogre +\U0001F47A;Japanese Goblin +\U0001F47B;Ghost +\U0001F47C;Baby Angel +\U0001F47D;Extraterrestrial Alien +\U0001F47E;Alien Monster +\U0001F47F;Imp +\U0001F480;Skull +\U0001F481;Information Desk Person +\U0001F482;Guardsman +\U0001F483;Dancer +\U0001F484;Lipstick +\U0001F485;Nail Polish +\U0001F486;Face Massage +\U0001F487;Haircut +\U0001F488;Barber Pole +\U0001F489;Syringe +\U0001F48A;Pill +\U0001F48B;Kiss Mark +\U0001F48C;Love Letter +\U0001F48D;Ring +\U0001F48E;Gem Stone +\U0001F48F;Kiss +\U0001F490;Bouquet +\U0001F491;Couple With Heart +\U0001F492;Wedding +\U0001F493;Beating Heart +\U0001F494;Broken Heart +\U0001F495;Two Hearts +\U0001F496;Sparkling Heart +\U0001F497;Growing Heart +\U0001F498;Heart With Arrow +\U0001F499;Blue Heart +\U0001F49A;Green Heart +\U0001F49B;Yellow Heart +\U0001F49C;Purple Heart +\U0001F49D;Heart With Ribbon +\U0001F49E;Revolving Hearts +\U0001F49F;Heart Decoration +\U0001F4A0;Diamond Shape With A Dot Inside +\U0001F4A1;Electric Light Bulb +\U0001F4A2;Anger Symbol +\U0001F4A3;Bomb +\U0001F4A4;Sleeping Symbol +\U0001F4A5;Collision Symbol +\U0001F4A6;Splashing Sweat Symbol +\U0001F4A7;Droplet +\U0001F4A8;Dash Symbol +\U0001F4A9;Pile Of Poo +\U0001F4AA;Flexed Biceps +\U0001F4AB;Dizzy Symbol +\U0001F4AC;Speech Balloon +\U0001F4AD;Thought Balloon +\U0001F4AE;White Flower +\U0001F4AF;Hundred Points Symbol +\U0001F4B0;Money Bag +\U0001F4B1;Currency Exchange +\U0001F4B2;Heavy Dollar Sign +\U0001F4B3;Credit Card +\U0001F4B4;Banknote With Yen Sign +\U0001F4B5;Banknote With Dollar Sign +\U0001F4B6;Banknote With Euro Sign +\U0001F4B7;Banknote With Pound Sign +\U0001F4B8;Money With Wings +\U0001F4B9;Chart With Upwards Trend And Yen Sign +\U0001F4BA;Seat +\U0001F4BB;Personal Computer +\U0001F4BC;Briefcase +\U0001F4BD;Minidisc +\U0001F4BE;Floppy Disk +\U0001F4BF;Optical Disc +\U0001F4C0;Dvd +\U0001F4C1;File Folder +\U0001F4C2;Open File Folder +\U0001F4C3;Page With Curl +\U0001F4C4;Page Facing Up +\U0001F4C5;Calendar +\U0001F4C6;Tear-Off Calendar +\U0001F4C7;Card Index +\U0001F4C8;Chart With Upwards Trend +\U0001F4C9;Chart With Downwards Trend +\U0001F4CA;Bar Chart +\U0001F4CB;Clipboard +\U0001F4CC;Pushpin +\U0001F4CD;Round Pushpin +\U0001F4CE;Paperclip +\U0001F4CF;Straight Ruler +\U0001F4D0;Triangular Ruler +\U0001F4D1;Bookmark Tabs +\U0001F4D2;Ledger +\U0001F4D3;Notebook +\U0001F4D4;Notebook With Decorative Cover +\U0001F4D5;Closed Book +\U0001F4D6;Open Book +\U0001F4D7;Green Book +\U0001F4D8;Blue Book +\U0001F4D9;Orange Book +\U0001F4DA;Books +\U0001F4DB;Name Badge +\U0001F4DC;Scroll +\U0001F4DD;Memo +\U0001F4DE;Telephone Receiver +\U0001F4DF;Pager +\U0001F4E0;Fax Machine +\U0001F4E1;Satellite Antenna +\U0001F4E2;Public Address Loudspeaker +\U0001F4E3;Cheering Megaphone +\U0001F4E4;Outbox Tray +\U0001F4E5;Inbox Tray +\U0001F4E6;Package +\U0001F4E7;E-Mail Symbol +\U0001F4E8;Incoming Envelope +\U0001F4E9;Envelope With Downwards Arrow Above +\U0001F4EA;Closed Mailbox With Lowered Flag +\U0001F4EB;Closed Mailbox With Raised Flag +\U0001F4EC;Open Mailbox With Raised Flag +\U0001F4ED;Open Mailbox With Lowered Flag +\U0001F4EE;Postbox +\U0001F4EF;Postal Horn +\U0001F4F0;Newspaper +\U0001F4F1;Mobile Phone +\U0001F4F2;Mobile Phone With Rightwards Arrow At Left +\U0001F4F3;Vibration Mode +\U0001F4F4;Mobile Phone Off +\U0001F4F5;No Mobile Phones +\U0001F4F6;Antenna With Bars +\U0001F4F7;Camera +\U0001F4F8;Camera With Flash +\U0001F4F9;Video Camera +\U0001F4FA;Television +\U0001F4FB;Radio +\U0001F4FC;Videocassette +\U0001F4FD;Film Projector +\U0001F4FE;Portable Stereo +\U0001F4FF;Prayer Beads +\U0001F500;Twisted Rightwards Arrows +\U0001F501;Clockwise Rightwards And Leftwards Open Circle Arrows +\U0001F502;Clockwise Rightwards And Leftwards Open Circle Arrows With Circled One Overlay +\U0001F503;Clockwise Downwards And Upwards Open Circle Arrows +\U0001F504;Anticlockwise Downwards And Upwards Open Circle Arrows +\U0001F505;Low Brightness Symbol +\U0001F506;High Brightness Symbol +\U0001F507;Speaker With Cancellation Stroke +\U0001F508;Speaker +\U0001F509;Speaker With One Sound Wave +\U0001F50A;Speaker With Three Sound Waves +\U0001F50B;Battery +\U0001F50C;Electric Plug +\U0001F50D;Left-Pointing Magnifying Glass +\U0001F50E;Right-Pointing Magnifying Glass +\U0001F50F;Lock With Ink Pen +\U0001F510;Closed Lock With Key +\U0001F511;Key +\U0001F512;Lock +\U0001F513;Open Lock +\U0001F514;Bell +\U0001F515;Bell With Cancellation Stroke +\U0001F516;Bookmark +\U0001F517;Link Symbol +\U0001F518;Radio Button +\U0001F519;Back With Leftwards Arrow Above +\U0001F51A;End With Leftwards Arrow Above +\U0001F51B;On With Exclamation Mark With Left Right Arrow Above +\U0001F51C;Soon With Rightwards Arrow Above +\U0001F51D;Top With Upwards Arrow Above +\U0001F51E;No One Under Eighteen Symbol +\U0001F51F;Keycap Ten +\U0001F520;Input Symbol For Latin Capital Letters +\U0001F521;Input Symbol For Latin Small Letters +\U0001F522;Input Symbol For Numbers +\U0001F523;Input Symbol For Symbols +\U0001F524;Input Symbol For Latin Letters +\U0001F525;Fire +\U0001F526;Electric Torch +\U0001F527;Wrench +\U0001F528;Hammer +\U0001F529;Nut And Bolt +\U0001F52A;Hocho +\U0001F52B;Pistol +\U0001F52C;Microscope +\U0001F52D;Telescope +\U0001F52E;Crystal Ball +\U0001F52F;Six Pointed Star With Middle Dot +\U0001F530;Japanese Symbol For Beginner +\U0001F531;Trident Emblem +\U0001F532;Black Square Button +\U0001F533;White Square Button +\U0001F534;Large Red Circle +\U0001F535;Large Blue Circle +\U0001F536;Large Orange Diamond +\U0001F537;Large Blue Diamond +\U0001F538;Small Orange Diamond +\U0001F539;Small Blue Diamond +\U0001F53A;Up-Pointing Red Triangle +\U0001F53B;Down-Pointing Red Triangle +\U0001F53C;Up-Pointing Small Red Triangle +\U0001F53D;Down-Pointing Small Red Triangle +\U0001F53E;Lower Right Shadowed White Circle +\U0001F53F;Upper Right Shadowed White Circle +\U0001F540;Circled Cross Pommee +\U0001F541;Cross Pommee With Half-Circle Below +\U0001F542;Cross Pommee +\U0001F543;Notched Left Semicircle With Three Dots +\U0001F544;Notched Right Semicircle With Three Dots +\U0001F545;Symbol For Marks Chapter +\U0001F546;White Latin Cross +\U0001F547;Heavy Latin Cross +\U0001F548;Celtic Cross +\U0001F549;Om Symbol +\U0001F54A;Dove Of Peace +\U0001F54B;Kaaba +\U0001F54C;Mosque +\U0001F54D;Synagogue +\U0001F54E;Menorah With Nine Branches +\U0001F54F;Bowl Of Hygieia +\U0001F550;Clock Face One Oclock +\U0001F551;Clock Face Two Oclock +\U0001F552;Clock Face Three Oclock +\U0001F553;Clock Face Four Oclock +\U0001F554;Clock Face Five Oclock +\U0001F555;Clock Face Six Oclock +\U0001F556;Clock Face Seven Oclock +\U0001F557;Clock Face Eight Oclock +\U0001F558;Clock Face Nine Oclock +\U0001F559;Clock Face Ten Oclock +\U0001F55A;Clock Face Eleven Oclock +\U0001F55B;Clock Face Twelve Oclock +\U0001F55C;Clock Face One-Thirty +\U0001F55D;Clock Face Two-Thirty +\U0001F55E;Clock Face Three-Thirty +\U0001F55F;Clock Face Four-Thirty +\U0001F560;Clock Face Five-Thirty +\U0001F561;Clock Face Six-Thirty +\U0001F562;Clock Face Seven-Thirty +\U0001F563;Clock Face Eight-Thirty +\U0001F564;Clock Face Nine-Thirty +\U0001F565;Clock Face Ten-Thirty +\U0001F566;Clock Face Eleven-Thirty +\U0001F567;Clock Face Twelve-Thirty +\U0001F568;Right Speaker +\U0001F569;Right Speaker With One Sound Wave +\U0001F56A;Right Speaker With Three Sound Waves +\U0001F56B;Bullhorn +\U0001F56C;Bullhorn With Sound Waves +\U0001F56D;Ringing Bell +\U0001F56E;Book +\U0001F56F;Candle +\U0001F570;Mantelpiece Clock +\U0001F571;Black Skull And Crossbones +\U0001F572;No Piracy +\U0001F573;Hole +\U0001F574;Man In Business Suit Levitating +\U0001F575;Sleuth Or Spy +\U0001F576;Dark Sunglasses +\U0001F577;Spider +\U0001F578;Spider Web +\U0001F579;Joystick +\U0001F57A;Man Dancing +\U0001F57B;Left Hand Telephone Receiver +\U0001F57C;Telephone Receiver With Page +\U0001F57D;Right Hand Telephone Receiver +\U0001F57E;White Touchtone Telephone +\U0001F57F;Black Touchtone Telephone +\U0001F580;Telephone On Top Of Modem +\U0001F581;Clamshell Mobile Phone +\U0001F582;Back Of Envelope +\U0001F583;Stamped Envelope +\U0001F584;Envelope With Lightning +\U0001F585;Flying Envelope +\U0001F586;Pen Over Stamped Envelope +\U0001F587;Linked Paperclips +\U0001F588;Black Pushpin +\U0001F589;Lower Left Pencil +\U0001F58A;Lower Left Ballpoint Pen +\U0001F58B;Lower Left Fountain Pen +\U0001F58C;Lower Left Paintbrush +\U0001F58D;Lower Left Crayon +\U0001F58E;Left Writing Hand +\U0001F58F;Turned Ok Hand Sign +\U0001F590;Raised Hand With Fingers Splayed +\U0001F591;Reversed Raised Hand With Fingers Splayed +\U0001F592;Reversed Thumbs Up Sign +\U0001F593;Reversed Thumbs Down Sign +\U0001F594;Reversed Victory Hand +\U0001F595;Reversed Hand With Middle Finger Extended +\U0001F596;Raised Hand With Part Between Middle And Ring Fingers +\U0001F597;White Down Pointing Left Hand Index +\U0001F598;Sideways White Left Pointing Index +\U0001F599;Sideways White Right Pointing Index +\U0001F59A;Sideways Black Left Pointing Index +\U0001F59B;Sideways Black Right Pointing Index +\U0001F59C;Black Left Pointing Backhand Index +\U0001F59D;Black Right Pointing Backhand Index +\U0001F59E;Sideways White Up Pointing Index +\U0001F59F;Sideways White Down Pointing Index +\U0001F5A0;Sideways Black Up Pointing Index +\U0001F5A1;Sideways Black Down Pointing Index +\U0001F5A2;Black Up Pointing Backhand Index +\U0001F5A3;Black Down Pointing Backhand Index +\U0001F5A4;Black Heart +\U0001F5A5;Desktop Computer +\U0001F5A6;Keyboard And Mouse +\U0001F5A7;Three Networked Computers +\U0001F5A8;Printer +\U0001F5A9;Pocket Calculator +\U0001F5AA;Black Hard Shell Floppy Disk +\U0001F5AB;White Hard Shell Floppy Disk +\U0001F5AC;Soft Shell Floppy Disk +\U0001F5AD;Tape Cartridge +\U0001F5AE;Wired Keyboard +\U0001F5AF;One Button Mouse +\U0001F5B0;Two Button Mouse +\U0001F5B1;Three Button Mouse +\U0001F5B2;Trackball +\U0001F5B3;Old Personal Computer +\U0001F5B4;Hard Disk +\U0001F5B5;Screen +\U0001F5B6;Printer Icon +\U0001F5B7;Fax Icon +\U0001F5B8;Optical Disc Icon +\U0001F5B9;Document With Text +\U0001F5BA;Document With Text And Picture +\U0001F5BB;Document With Picture +\U0001F5BC;Frame With Picture +\U0001F5BD;Frame With Tiles +\U0001F5BE;Frame With An X +\U0001F5BF;Black Folder +\U0001F5C0;Folder +\U0001F5C1;Open Folder +\U0001F5C2;Card Index Dividers +\U0001F5C3;Card File Box +\U0001F5C4;File Cabinet +\U0001F5C5;Empty Note +\U0001F5C6;Empty Note Page +\U0001F5C7;Empty Note Pad +\U0001F5C8;Note +\U0001F5C9;Note Page +\U0001F5CA;Note Pad +\U0001F5CB;Empty Document +\U0001F5CC;Empty Page +\U0001F5CD;Empty Pages +\U0001F5CE;Document +\U0001F5CF;Page +\U0001F5D0;Pages +\U0001F5D1;Wastebasket +\U0001F5D2;Spiral Note Pad +\U0001F5D3;Spiral Calendar Pad +\U0001F5D4;Desktop Window +\U0001F5D5;Minimize +\U0001F5D6;Maximize +\U0001F5D7;Overlap +\U0001F5D8;Clockwise Right And Left Semicircle Arrows +\U0001F5D9;Cancellation X +\U0001F5DA;Increase Font Size Symbol +\U0001F5DB;Decrease Font Size Symbol +\U0001F5DC;Compression +\U0001F5DD;Old Key +\U0001F5DE;Rolled-Up Newspaper +\U0001F5DF;Page With Circled Text +\U0001F5E0;Stock Chart +\U0001F5E1;Dagger Knife +\U0001F5E2;Lips +\U0001F5E3;Speaking Head In Silhouette +\U0001F5E4;Three Rays Above +\U0001F5E5;Three Rays Below +\U0001F5E6;Three Rays Left +\U0001F5E7;Three Rays Right +\U0001F5E8;Left Speech Bubble +\U0001F5E9;Right Speech Bubble +\U0001F5EA;Two Speech Bubbles +\U0001F5EB;Three Speech Bubbles +\U0001F5EC;Left Thought Bubble +\U0001F5ED;Right Thought Bubble +\U0001F5EE;Left Anger Bubble +\U0001F5EF;Right Anger Bubble +\U0001F5F0;Mood Bubble +\U0001F5F1;Lightning Mood Bubble +\U0001F5F2;Lightning Mood +\U0001F5F3;Ballot Box With Ballot +\U0001F5F4;Ballot Script X +\U0001F5F5;Ballot Box With Script X +\U0001F5F6;Ballot Bold Script X +\U0001F5F7;Ballot Box With Bold Script X +\U0001F5F8;Light Check Mark +\U0001F5F9;Ballot Box With Bold Check +\U0001F5FA;World Map +\U0001F5FB;Mount Fuji +\U0001F5FC;Tokyo Tower +\U0001F5FD;Statue Of Liberty +\U0001F5FE;Silhouette Of Japan +\U0001F5FF;Moyai +\U0001F600;Grinning Face +\U0001F601;Grinning Face With Smiling Eyes +\U0001F602;Face With Tears Of Joy +\U0001F603;Smiling Face With Open Mouth +\U0001F604;Smiling Face With Open Mouth And Smiling Eyes +\U0001F605;Smiling Face With Open Mouth And Cold Sweat +\U0001F606;Smiling Face With Open Mouth And Tightly-Closed Eyes +\U0001F607;Smiling Face With Halo +\U0001F608;Smiling Face With Horns +\U0001F609;Winking Face +\U0001F60A;Smiling Face With Smiling Eyes +\U0001F60B;Face Savouring Delicious Food +\U0001F60C;Relieved Face +\U0001F60D;Smiling Face With Heart-Shaped Eyes +\U0001F60E;Smiling Face With Sunglasses +\U0001F60F;Smirking Face +\U0001F610;Neutral Face +\U0001F611;Expressionless Face +\U0001F612;Unamused Face +\U0001F613;Face With Cold Sweat +\U0001F614;Pensive Face +\U0001F615;Confused Face +\U0001F616;Confounded Face +\U0001F617;Kissing Face +\U0001F618;Face Throwing A Kiss +\U0001F619;Kissing Face With Smiling Eyes +\U0001F61A;Kissing Face With Closed Eyes +\U0001F61B;Face With Stuck-Out Tongue +\U0001F61C;Face With Stuck-Out Tongue And Winking Eye +\U0001F61D;Face With Stuck-Out Tongue And Tightly-Closed Eyes +\U0001F61E;Disappointed Face +\U0001F61F;Worried Face +\U0001F620;Angry Face +\U0001F621;Pouting Face +\U0001F622;Crying Face +\U0001F623;Persevering Face +\U0001F624;Face With Look Of Triumph +\U0001F625;Disappointed But Relieved Face +\U0001F626;Frowning Face With Open Mouth +\U0001F627;Anguished Face +\U0001F628;Fearful Face +\U0001F629;Weary Face +\U0001F62A;Sleepy Face +\U0001F62B;Tired Face +\U0001F62C;Grimacing Face +\U0001F62D;Loudly Crying Face +\U0001F62E;Face With Open Mouth +\U0001F62F;Hushed Face +\U0001F630;Face With Open Mouth And Cold Sweat +\U0001F631;Face Screaming In Fear +\U0001F632;Astonished Face +\U0001F633;Flushed Face +\U0001F634;Sleeping Face +\U0001F635;Dizzy Face +\U0001F636;Face Without Mouth +\U0001F637;Face With Medical Mask +\U0001F638;Grinning Cat Face With Smiling Eyes +\U0001F639;Cat Face With Tears Of Joy +\U0001F63A;Smiling Cat Face With Open Mouth +\U0001F63B;Smiling Cat Face With Heart-Shaped Eyes +\U0001F63C;Cat Face With Wry Smile +\U0001F63D;Kissing Cat Face With Closed Eyes +\U0001F63E;Pouting Cat Face +\U0001F63F;Crying Cat Face +\U0001F640;Weary Cat Face +\U0001F641;Slightly Frowning Face +\U0001F642;Slightly Smiling Face +\U0001F643;Upside-Down Face +\U0001F644;Face With Rolling Eyes +\U0001F645;Face With No Good Gesture +\U0001F646;Face With Ok Gesture +\U0001F647;Person Bowing Deeply +\U0001F648;See-No-Evil Monkey +\U0001F649;Hear-No-Evil Monkey +\U0001F64A;Speak-No-Evil Monkey +\U0001F64B;Happy Person Raising One Hand +\U0001F64C;Person Raising Both Hands In Celebration +\U0001F64D;Person Frowning +\U0001F64E;Person With Pouting Face +\U0001F64F;Person With Folded Hands +\U0001F650;North West Pointing Leaf +\U0001F651;South West Pointing Leaf +\U0001F652;North East Pointing Leaf +\U0001F653;South East Pointing Leaf +\U0001F654;Turned North West Pointing Leaf +\U0001F655;Turned South West Pointing Leaf +\U0001F656;Turned North East Pointing Leaf +\U0001F657;Turned South East Pointing Leaf +\U0001F658;North West Pointing Vine Leaf +\U0001F659;South West Pointing Vine Leaf +\U0001F65A;North East Pointing Vine Leaf +\U0001F65B;South East Pointing Vine Leaf +\U0001F65C;Heavy North West Pointing Vine Leaf +\U0001F65D;Heavy South West Pointing Vine Leaf +\U0001F65E;Heavy North East Pointing Vine Leaf +\U0001F65F;Heavy South East Pointing Vine Leaf +\U0001F660;North West Pointing Bud +\U0001F661;South West Pointing Bud +\U0001F662;North East Pointing Bud +\U0001F663;South East Pointing Bud +\U0001F664;Heavy North West Pointing Bud +\U0001F665;Heavy South West Pointing Bud +\U0001F666;Heavy North East Pointing Bud +\U0001F667;Heavy South East Pointing Bud +\U0001F668;Hollow Quilt Square Ornament +\U0001F669;Hollow Quilt Square Ornament In Black Square +\U0001F66A;Solid Quilt Square Ornament +\U0001F66B;Solid Quilt Square Ornament In Black Square +\U0001F66C;Leftwards Rocket +\U0001F66D;Upwards Rocket +\U0001F66E;Rightwards Rocket +\U0001F66F;Downwards Rocket +\U0001F670;Script Ligature Et Ornament +\U0001F671;Heavy Script Ligature Et Ornament +\U0001F672;Ligature Open Et Ornament +\U0001F673;Heavy Ligature Open Et Ornament +\U0001F674;Heavy Ampersand Ornament +\U0001F675;Swash Ampersand Ornament +\U0001F676;Sans-Serif Heavy Double Turned Comma Quotation Mark Ornament +\U0001F677;Sans-Serif Heavy Double Comma Quotation Mark Ornament +\U0001F678;Sans-Serif Heavy Low Double Comma Quotation Mark Ornament +\U0001F679;Heavy Interrobang Ornament +\U0001F67A;Sans-Serif Interrobang Ornament +\U0001F67B;Heavy Sans-Serif Interrobang Ornament +\U0001F67C;Very Heavy Solidus +\U0001F67D;Very Heavy Reverse Solidus +\U0001F67E;Checker Board +\U0001F67F;Reverse Checker Board +\U0001F680;Rocket +\U0001F681;Helicopter +\U0001F682;Steam Locomotive +\U0001F683;Railway Car +\U0001F684;High-Speed Train +\U0001F685;High-Speed Train With Bullet Nose +\U0001F686;Train +\U0001F687;Metro +\U0001F688;Light Rail +\U0001F689;Station +\U0001F68A;Tram +\U0001F68B;Tram Car +\U0001F68C;Bus +\U0001F68D;Oncoming Bus +\U0001F68E;Trolleybus +\U0001F68F;Bus Stop +\U0001F690;Minibus +\U0001F691;Ambulance +\U0001F692;Fire Engine +\U0001F693;Police Car +\U0001F694;Oncoming Police Car +\U0001F695;Taxi +\U0001F696;Oncoming Taxi +\U0001F697;Automobile +\U0001F698;Oncoming Automobile +\U0001F699;Recreational Vehicle +\U0001F69A;Delivery Truck +\U0001F69B;Articulated Lorry +\U0001F69C;Tractor +\U0001F69D;Monorail +\U0001F69E;Mountain Railway +\U0001F69F;Suspension Railway +\U0001F6A0;Mountain Cableway +\U0001F6A1;Aerial Tramway +\U0001F6A2;Ship +\U0001F6A3;Rowboat +\U0001F6A4;Speedboat +\U0001F6A5;Horizontal Traffic Light +\U0001F6A6;Vertical Traffic Light +\U0001F6A7;Construction Sign +\U0001F6A8;Police Cars Revolving Light +\U0001F6A9;Triangular Flag On Post +\U0001F6AA;Door +\U0001F6AB;No Entry Sign +\U0001F6AC;Smoking Symbol +\U0001F6AD;No Smoking Symbol +\U0001F6AE;Put Litter In Its Place Symbol +\U0001F6AF;Do Not Litter Symbol +\U0001F6B0;Potable Water Symbol +\U0001F6B1;Non-Potable Water Symbol +\U0001F6B2;Bicycle +\U0001F6B3;No Bicycles +\U0001F6B4;Bicyclist +\U0001F6B5;Mountain Bicyclist +\U0001F6B6;Pedestrian +\U0001F6B7;No Pedestrians +\U0001F6B8;Children Crossing +\U0001F6B9;Mens Symbol +\U0001F6BA;Womens Symbol +\U0001F6BB;Restroom +\U0001F6BC;Baby Symbol +\U0001F6BD;Toilet +\U0001F6BE;Water Closet +\U0001F6BF;Shower +\U0001F6C0;Bath +\U0001F6C1;Bathtub +\U0001F6C2;Passport Control +\U0001F6C3;Customs +\U0001F6C4;Baggage Claim +\U0001F6C5;Left Luggage +\U0001F6C6;Triangle With Rounded Corners +\U0001F6C7;Prohibited Sign +\U0001F6C8;Circled Information Source +\U0001F6C9;Boys Symbol +\U0001F6CA;Girls Symbol +\U0001F6CB;Couch And Lamp +\U0001F6CC;Sleeping Accommodation +\U0001F6CD;Shopping Bags +\U0001F6CE;Bellhop Bell +\U0001F6CF;Bed +\U0001F6D0;Place Of Worship +\U0001F6D1;Octagonal Sign +\U0001F6D2;Shopping Trolley +\U0001F6D3;Stupa +\U0001F6D4;Pagoda +\U0001F6D5;Hindu Temple +\U0001F6D6;Hut +\U0001F6D7;Elevator +\U0001F6DC;Wireless +\U0001F6DD;Playground Slide +\U0001F6DE;Wheel +\U0001F6DF;Ring Buoy +\U0001F6E0;Hammer And Wrench +\U0001F6E1;Shield +\U0001F6E2;Oil Drum +\U0001F6E3;Motorway +\U0001F6E4;Railway Track +\U0001F6E5;Motor Boat +\U0001F6E6;Up-Pointing Military Airplane +\U0001F6E7;Up-Pointing Airplane +\U0001F6E8;Up-Pointing Small Airplane +\U0001F6E9;Small Airplane +\U0001F6EA;Northeast-Pointing Airplane +\U0001F6EB;Airplane Departure +\U0001F6EC;Airplane Arriving +\U0001F6F0;Satellite +\U0001F6F1;Oncoming Fire Engine +\U0001F6F2;Diesel Locomotive +\U0001F6F3;Passenger Ship +\U0001F6F4;Scooter +\U0001F6F5;Motor Scooter +\U0001F6F6;Canoe +\U0001F6F7;Sled +\U0001F6F8;Flying Saucer +\U0001F6F9;Skateboard +\U0001F6FA;Auto Rickshaw +\U0001F6FB;Pickup Truck +\U0001F6FC;Roller Skate +\U0001F700;Alchemical Symbol For Quintessence +\U0001F701;Alchemical Symbol For Air +\U0001F702;Alchemical Symbol For Fire +\U0001F703;Alchemical Symbol For Earth +\U0001F704;Alchemical Symbol For Water +\U0001F705;Alchemical Symbol For Aquafortis +\U0001F706;Alchemical Symbol For Aqua Regia +\U0001F707;Alchemical Symbol For Aqua Regia-2 +\U0001F708;Alchemical Symbol For Aqua Vitae +\U0001F709;Alchemical Symbol For Aqua Vitae-2 +\U0001F70A;Alchemical Symbol For Vinegar +\U0001F70B;Alchemical Symbol For Vinegar-2 +\U0001F70C;Alchemical Symbol For Vinegar-3 +\U0001F70D;Alchemical Symbol For Sulfur +\U0001F70E;Alchemical Symbol For Philosophers Sulfur +\U0001F70F;Alchemical Symbol For Black Sulfur +\U0001F710;Alchemical Symbol For Mercury Sublimate +\U0001F711;Alchemical Symbol For Mercury Sublimate-2 +\U0001F712;Alchemical Symbol For Mercury Sublimate-3 +\U0001F713;Alchemical Symbol For Cinnabar +\U0001F714;Alchemical Symbol For Salt +\U0001F715;Alchemical Symbol For Nitre +\U0001F716;Alchemical Symbol For Vitriol +\U0001F717;Alchemical Symbol For Vitriol-2 +\U0001F718;Alchemical Symbol For Rock Salt +\U0001F719;Alchemical Symbol For Rock Salt-2 +\U0001F71A;Alchemical Symbol For Gold +\U0001F71B;Alchemical Symbol For Silver +\U0001F71C;Alchemical Symbol For Iron Ore +\U0001F71D;Alchemical Symbol For Iron Ore-2 +\U0001F71E;Alchemical Symbol For Crocus Of Iron +\U0001F71F;Alchemical Symbol For Regulus Of Iron +\U0001F720;Alchemical Symbol For Copper Ore +\U0001F721;Alchemical Symbol For Iron-Copper Ore +\U0001F722;Alchemical Symbol For Sublimate Of Copper +\U0001F723;Alchemical Symbol For Crocus Of Copper +\U0001F724;Alchemical Symbol For Crocus Of Copper-2 +\U0001F725;Alchemical Symbol For Copper Antimoniate +\U0001F726;Alchemical Symbol For Salt Of Copper Antimoniate +\U0001F727;Alchemical Symbol For Sublimate Of Salt Of Copper +\U0001F728;Alchemical Symbol For Verdigris +\U0001F729;Alchemical Symbol For Tin Ore +\U0001F72A;Alchemical Symbol For Lead Ore +\U0001F72B;Alchemical Symbol For Antimony Ore +\U0001F72C;Alchemical Symbol For Sublimate Of Antimony +\U0001F72D;Alchemical Symbol For Salt Of Antimony +\U0001F72E;Alchemical Symbol For Sublimate Of Salt Of Antimony +\U0001F72F;Alchemical Symbol For Vinegar Of Antimony +\U0001F730;Alchemical Symbol For Regulus Of Antimony +\U0001F731;Alchemical Symbol For Regulus Of Antimony-2 +\U0001F732;Alchemical Symbol For Regulus +\U0001F733;Alchemical Symbol For Regulus-2 +\U0001F734;Alchemical Symbol For Regulus-3 +\U0001F735;Alchemical Symbol For Regulus-4 +\U0001F736;Alchemical Symbol For Alkali +\U0001F737;Alchemical Symbol For Alkali-2 +\U0001F738;Alchemical Symbol For Marcasite +\U0001F739;Alchemical Symbol For Sal-Ammoniac +\U0001F73A;Alchemical Symbol For Arsenic +\U0001F73B;Alchemical Symbol For Realgar +\U0001F73C;Alchemical Symbol For Realgar-2 +\U0001F73D;Alchemical Symbol For Auripigment +\U0001F73E;Alchemical Symbol For Bismuth Ore +\U0001F73F;Alchemical Symbol For Tartar +\U0001F740;Alchemical Symbol For Tartar-2 +\U0001F741;Alchemical Symbol For Quick Lime +\U0001F742;Alchemical Symbol For Borax +\U0001F743;Alchemical Symbol For Borax-2 +\U0001F744;Alchemical Symbol For Borax-3 +\U0001F745;Alchemical Symbol For Alum +\U0001F746;Alchemical Symbol For Oil +\U0001F747;Alchemical Symbol For Spirit +\U0001F748;Alchemical Symbol For Tincture +\U0001F749;Alchemical Symbol For Gum +\U0001F74A;Alchemical Symbol For Wax +\U0001F74B;Alchemical Symbol For Powder +\U0001F74C;Alchemical Symbol For Calx +\U0001F74D;Alchemical Symbol For Tutty +\U0001F74E;Alchemical Symbol For Caput Mortuum +\U0001F74F;Alchemical Symbol For Scepter Of Jove +\U0001F750;Alchemical Symbol For Caduceus +\U0001F751;Alchemical Symbol For Trident +\U0001F752;Alchemical Symbol For Starred Trident +\U0001F753;Alchemical Symbol For Lodestone +\U0001F754;Alchemical Symbol For Soap +\U0001F755;Alchemical Symbol For Urine +\U0001F756;Alchemical Symbol For Horse Dung +\U0001F757;Alchemical Symbol For Ashes +\U0001F758;Alchemical Symbol For Pot Ashes +\U0001F759;Alchemical Symbol For Brick +\U0001F75A;Alchemical Symbol For Powdered Brick +\U0001F75B;Alchemical Symbol For Amalgam +\U0001F75C;Alchemical Symbol For Stratum Super Stratum +\U0001F75D;Alchemical Symbol For Stratum Super Stratum-2 +\U0001F75E;Alchemical Symbol For Sublimation +\U0001F75F;Alchemical Symbol For Precipitate +\U0001F760;Alchemical Symbol For Distill +\U0001F761;Alchemical Symbol For Dissolve +\U0001F762;Alchemical Symbol For Dissolve-2 +\U0001F763;Alchemical Symbol For Purify +\U0001F764;Alchemical Symbol For Putrefaction +\U0001F765;Alchemical Symbol For Crucible +\U0001F766;Alchemical Symbol For Crucible-2 +\U0001F767;Alchemical Symbol For Crucible-3 +\U0001F768;Alchemical Symbol For Crucible-4 +\U0001F769;Alchemical Symbol For Crucible-5 +\U0001F76A;Alchemical Symbol For Alembic +\U0001F76B;Alchemical Symbol For Bath Of Mary +\U0001F76C;Alchemical Symbol For Bath Of Vapours +\U0001F76D;Alchemical Symbol For Retort +\U0001F76E;Alchemical Symbol For Hour +\U0001F76F;Alchemical Symbol For Night +\U0001F770;Alchemical Symbol For Day-Night +\U0001F771;Alchemical Symbol For Month +\U0001F772;Alchemical Symbol For Half Dram +\U0001F773;Alchemical Symbol For Half Ounce +\U0001F774;Lot Of Fortune +\U0001F775;Occultation +\U0001F776;Lunar Eclipse +\U0001F77B;Haumea +\U0001F77C;Makemake +\U0001F77D;Gonggong +\U0001F77E;Quaoar +\U0001F77F;Orcus +\U0001F780;Black Left-Pointing Isosceles Right Triangle +\U0001F781;Black Up-Pointing Isosceles Right Triangle +\U0001F782;Black Right-Pointing Isosceles Right Triangle +\U0001F783;Black Down-Pointing Isosceles Right Triangle +\U0001F784;Black Slightly Small Circle +\U0001F785;Medium Bold White Circle +\U0001F786;Bold White Circle +\U0001F787;Heavy White Circle +\U0001F788;Very Heavy White Circle +\U0001F789;Extremely Heavy White Circle +\U0001F78A;White Circle Containing Black Small Circle +\U0001F78B;Round Target +\U0001F78C;Black Tiny Square +\U0001F78D;Black Slightly Small Square +\U0001F78E;Light White Square +\U0001F78F;Medium White Square +\U0001F790;Bold White Square +\U0001F791;Heavy White Square +\U0001F792;Very Heavy White Square +\U0001F793;Extremely Heavy White Square +\U0001F794;White Square Containing Black Very Small Square +\U0001F795;White Square Containing Black Medium Square +\U0001F796;Square Target +\U0001F797;Black Tiny Diamond +\U0001F798;Black Very Small Diamond +\U0001F799;Black Medium Small Diamond +\U0001F79A;White Diamond Containing Black Very Small Diamond +\U0001F79B;White Diamond Containing Black Medium Diamond +\U0001F79C;Diamond Target +\U0001F79D;Black Tiny Lozenge +\U0001F79E;Black Very Small Lozenge +\U0001F79F;Black Medium Small Lozenge +\U0001F7A0;White Lozenge Containing Black Small Lozenge +\U0001F7A1;Thin Greek Cross +\U0001F7A2;Light Greek Cross +\U0001F7A3;Medium Greek Cross +\U0001F7A4;Bold Greek Cross +\U0001F7A5;Very Bold Greek Cross +\U0001F7A6;Very Heavy Greek Cross +\U0001F7A7;Extremely Heavy Greek Cross +\U0001F7A8;Thin Saltire +\U0001F7A9;Light Saltire +\U0001F7AA;Medium Saltire +\U0001F7AB;Bold Saltire +\U0001F7AC;Heavy Saltire +\U0001F7AD;Very Heavy Saltire +\U0001F7AE;Extremely Heavy Saltire +\U0001F7AF;Light Five Spoked Asterisk +\U0001F7B0;Medium Five Spoked Asterisk +\U0001F7B1;Bold Five Spoked Asterisk +\U0001F7B2;Heavy Five Spoked Asterisk +\U0001F7B3;Very Heavy Five Spoked Asterisk +\U0001F7B4;Extremely Heavy Five Spoked Asterisk +\U0001F7B5;Light Six Spoked Asterisk +\U0001F7B6;Medium Six Spoked Asterisk +\U0001F7B7;Bold Six Spoked Asterisk +\U0001F7B8;Heavy Six Spoked Asterisk +\U0001F7B9;Very Heavy Six Spoked Asterisk +\U0001F7BA;Extremely Heavy Six Spoked Asterisk +\U0001F7BB;Light Eight Spoked Asterisk +\U0001F7BC;Medium Eight Spoked Asterisk +\U0001F7BD;Bold Eight Spoked Asterisk +\U0001F7BE;Heavy Eight Spoked Asterisk +\U0001F7BF;Very Heavy Eight Spoked Asterisk +\U0001F7C0;Light Three Pointed Black Star +\U0001F7C1;Medium Three Pointed Black Star +\U0001F7C2;Three Pointed Black Star +\U0001F7C3;Medium Three Pointed Pinwheel Star +\U0001F7C4;Light Four Pointed Black Star +\U0001F7C5;Medium Four Pointed Black Star +\U0001F7C6;Four Pointed Black Star +\U0001F7C7;Medium Four Pointed Pinwheel Star +\U0001F7C8;Reverse Light Four Pointed Pinwheel Star +\U0001F7C9;Light Five Pointed Black Star +\U0001F7CA;Heavy Five Pointed Black Star +\U0001F7CB;Medium Six Pointed Black Star +\U0001F7CC;Heavy Six Pointed Black Star +\U0001F7CD;Six Pointed Pinwheel Star +\U0001F7CE;Medium Eight Pointed Black Star +\U0001F7CF;Heavy Eight Pointed Black Star +\U0001F7D0;Very Heavy Eight Pointed Black Star +\U0001F7D1;Heavy Eight Pointed Pinwheel Star +\U0001F7D2;Light Twelve Pointed Black Star +\U0001F7D3;Heavy Twelve Pointed Black Star +\U0001F7D4;Heavy Twelve Pointed Pinwheel Star +\U0001F7D5;Circled Triangle +\U0001F7D6;Negative Circled Triangle +\U0001F7D7;Circled Square +\U0001F7D8;Negative Circled Square +\U0001F7D9;Nine Pointed White Star +\U0001F7E0;Large Orange Circle +\U0001F7E1;Large Yellow Circle +\U0001F7E2;Large Green Circle +\U0001F7E3;Large Purple Circle +\U0001F7E4;Large Brown Circle +\U0001F7E5;Large Red Square +\U0001F7E6;Large Blue Square +\U0001F7E7;Large Orange Square +\U0001F7E8;Large Yellow Square +\U0001F7E9;Large Green Square +\U0001F7EA;Large Purple Square +\U0001F7EB;Large Brown Square +\U0001F7F0;Heavy Equals Sign +\U0001F800;Leftwards Arrow With Small Triangle Arrowhead +\U0001F801;Upwards Arrow With Small Triangle Arrowhead +\U0001F802;Rightwards Arrow With Small Triangle Arrowhead +\U0001F803;Downwards Arrow With Small Triangle Arrowhead +\U0001F804;Leftwards Arrow With Medium Triangle Arrowhead +\U0001F805;Upwards Arrow With Medium Triangle Arrowhead +\U0001F806;Rightwards Arrow With Medium Triangle Arrowhead +\U0001F807;Downwards Arrow With Medium Triangle Arrowhead +\U0001F808;Leftwards Arrow With Large Triangle Arrowhead +\U0001F809;Upwards Arrow With Large Triangle Arrowhead +\U0001F80A;Rightwards Arrow With Large Triangle Arrowhead +\U0001F80B;Downwards Arrow With Large Triangle Arrowhead +\U0001F810;Leftwards Arrow With Small Equilateral Arrowhead +\U0001F811;Upwards Arrow With Small Equilateral Arrowhead +\U0001F812;Rightwards Arrow With Small Equilateral Arrowhead +\U0001F813;Downwards Arrow With Small Equilateral Arrowhead +\U0001F814;Leftwards Arrow With Equilateral Arrowhead +\U0001F815;Upwards Arrow With Equilateral Arrowhead +\U0001F816;Rightwards Arrow With Equilateral Arrowhead +\U0001F817;Downwards Arrow With Equilateral Arrowhead +\U0001F818;Heavy Leftwards Arrow With Equilateral Arrowhead +\U0001F819;Heavy Upwards Arrow With Equilateral Arrowhead +\U0001F81A;Heavy Rightwards Arrow With Equilateral Arrowhead +\U0001F81B;Heavy Downwards Arrow With Equilateral Arrowhead +\U0001F81C;Heavy Leftwards Arrow With Large Equilateral Arrowhead +\U0001F81D;Heavy Upwards Arrow With Large Equilateral Arrowhead +\U0001F81E;Heavy Rightwards Arrow With Large Equilateral Arrowhead +\U0001F81F;Heavy Downwards Arrow With Large Equilateral Arrowhead +\U0001F820;Leftwards Triangle-Headed Arrow With Narrow Shaft +\U0001F821;Upwards Triangle-Headed Arrow With Narrow Shaft +\U0001F822;Rightwards Triangle-Headed Arrow With Narrow Shaft +\U0001F823;Downwards Triangle-Headed Arrow With Narrow Shaft +\U0001F824;Leftwards Triangle-Headed Arrow With Medium Shaft +\U0001F825;Upwards Triangle-Headed Arrow With Medium Shaft +\U0001F826;Rightwards Triangle-Headed Arrow With Medium Shaft +\U0001F827;Downwards Triangle-Headed Arrow With Medium Shaft +\U0001F828;Leftwards Triangle-Headed Arrow With Bold Shaft +\U0001F829;Upwards Triangle-Headed Arrow With Bold Shaft +\U0001F82A;Rightwards Triangle-Headed Arrow With Bold Shaft +\U0001F82B;Downwards Triangle-Headed Arrow With Bold Shaft +\U0001F82C;Leftwards Triangle-Headed Arrow With Heavy Shaft +\U0001F82D;Upwards Triangle-Headed Arrow With Heavy Shaft +\U0001F82E;Rightwards Triangle-Headed Arrow With Heavy Shaft +\U0001F82F;Downwards Triangle-Headed Arrow With Heavy Shaft +\U0001F830;Leftwards Triangle-Headed Arrow With Very Heavy Shaft +\U0001F831;Upwards Triangle-Headed Arrow With Very Heavy Shaft +\U0001F832;Rightwards Triangle-Headed Arrow With Very Heavy Shaft +\U0001F833;Downwards Triangle-Headed Arrow With Very Heavy Shaft +\U0001F834;Leftwards Finger-Post Arrow +\U0001F835;Upwards Finger-Post Arrow +\U0001F836;Rightwards Finger-Post Arrow +\U0001F837;Downwards Finger-Post Arrow +\U0001F838;Leftwards Squared Arrow +\U0001F839;Upwards Squared Arrow +\U0001F83A;Rightwards Squared Arrow +\U0001F83B;Downwards Squared Arrow +\U0001F83C;Leftwards Compressed Arrow +\U0001F83D;Upwards Compressed Arrow +\U0001F83E;Rightwards Compressed Arrow +\U0001F83F;Downwards Compressed Arrow +\U0001F840;Leftwards Heavy Compressed Arrow +\U0001F841;Upwards Heavy Compressed Arrow +\U0001F842;Rightwards Heavy Compressed Arrow +\U0001F843;Downwards Heavy Compressed Arrow +\U0001F844;Leftwards Heavy Arrow +\U0001F845;Upwards Heavy Arrow +\U0001F846;Rightwards Heavy Arrow +\U0001F847;Downwards Heavy Arrow +\U0001F850;Leftwards Sans-Serif Arrow +\U0001F851;Upwards Sans-Serif Arrow +\U0001F852;Rightwards Sans-Serif Arrow +\U0001F853;Downwards Sans-Serif Arrow +\U0001F854;North West Sans-Serif Arrow +\U0001F855;North East Sans-Serif Arrow +\U0001F856;South East Sans-Serif Arrow +\U0001F857;South West Sans-Serif Arrow +\U0001F858;Left Right Sans-Serif Arrow +\U0001F859;Up Down Sans-Serif Arrow +\U0001F860;Wide-Headed Leftwards Light Barb Arrow +\U0001F861;Wide-Headed Upwards Light Barb Arrow +\U0001F862;Wide-Headed Rightwards Light Barb Arrow +\U0001F863;Wide-Headed Downwards Light Barb Arrow +\U0001F864;Wide-Headed North West Light Barb Arrow +\U0001F865;Wide-Headed North East Light Barb Arrow +\U0001F866;Wide-Headed South East Light Barb Arrow +\U0001F867;Wide-Headed South West Light Barb Arrow +\U0001F868;Wide-Headed Leftwards Barb Arrow +\U0001F869;Wide-Headed Upwards Barb Arrow +\U0001F86A;Wide-Headed Rightwards Barb Arrow +\U0001F86B;Wide-Headed Downwards Barb Arrow +\U0001F86C;Wide-Headed North West Barb Arrow +\U0001F86D;Wide-Headed North East Barb Arrow +\U0001F86E;Wide-Headed South East Barb Arrow +\U0001F86F;Wide-Headed South West Barb Arrow +\U0001F870;Wide-Headed Leftwards Medium Barb Arrow +\U0001F871;Wide-Headed Upwards Medium Barb Arrow +\U0001F872;Wide-Headed Rightwards Medium Barb Arrow +\U0001F873;Wide-Headed Downwards Medium Barb Arrow +\U0001F874;Wide-Headed North West Medium Barb Arrow +\U0001F875;Wide-Headed North East Medium Barb Arrow +\U0001F876;Wide-Headed South East Medium Barb Arrow +\U0001F877;Wide-Headed South West Medium Barb Arrow +\U0001F878;Wide-Headed Leftwards Heavy Barb Arrow +\U0001F879;Wide-Headed Upwards Heavy Barb Arrow +\U0001F87A;Wide-Headed Rightwards Heavy Barb Arrow +\U0001F87B;Wide-Headed Downwards Heavy Barb Arrow +\U0001F87C;Wide-Headed North West Heavy Barb Arrow +\U0001F87D;Wide-Headed North East Heavy Barb Arrow +\U0001F87E;Wide-Headed South East Heavy Barb Arrow +\U0001F87F;Wide-Headed South West Heavy Barb Arrow +\U0001F880;Wide-Headed Leftwards Very Heavy Barb Arrow +\U0001F881;Wide-Headed Upwards Very Heavy Barb Arrow +\U0001F882;Wide-Headed Rightwards Very Heavy Barb Arrow +\U0001F883;Wide-Headed Downwards Very Heavy Barb Arrow +\U0001F884;Wide-Headed North West Very Heavy Barb Arrow +\U0001F885;Wide-Headed North East Very Heavy Barb Arrow +\U0001F886;Wide-Headed South East Very Heavy Barb Arrow +\U0001F887;Wide-Headed South West Very Heavy Barb Arrow +\U0001F890;Leftwards Triangle Arrowhead +\U0001F891;Upwards Triangle Arrowhead +\U0001F892;Rightwards Triangle Arrowhead +\U0001F893;Downwards Triangle Arrowhead +\U0001F894;Leftwards White Arrow Within Triangle Arrowhead +\U0001F895;Upwards White Arrow Within Triangle Arrowhead +\U0001F896;Rightwards White Arrow Within Triangle Arrowhead +\U0001F897;Downwards White Arrow Within Triangle Arrowhead +\U0001F898;Leftwards Arrow With Notched Tail +\U0001F899;Upwards Arrow With Notched Tail +\U0001F89A;Rightwards Arrow With Notched Tail +\U0001F89B;Downwards Arrow With Notched Tail +\U0001F89C;Heavy Arrow Shaft Width One +\U0001F89D;Heavy Arrow Shaft Width Two Thirds +\U0001F89E;Heavy Arrow Shaft Width One Half +\U0001F89F;Heavy Arrow Shaft Width One Third +\U0001F8A0;Leftwards Bottom-Shaded White Arrow +\U0001F8A1;Rightwards Bottom Shaded White Arrow +\U0001F8A2;Leftwards Top Shaded White Arrow +\U0001F8A3;Rightwards Top Shaded White Arrow +\U0001F8A4;Leftwards Left-Shaded White Arrow +\U0001F8A5;Rightwards Right-Shaded White Arrow +\U0001F8A6;Leftwards Right-Shaded White Arrow +\U0001F8A7;Rightwards Left-Shaded White Arrow +\U0001F8A8;Leftwards Back-Tilted Shadowed White Arrow +\U0001F8A9;Rightwards Back-Tilted Shadowed White Arrow +\U0001F8AA;Leftwards Front-Tilted Shadowed White Arrow +\U0001F8AB;Rightwards Front-Tilted Shadowed White Arrow +\U0001F8AC;White Arrow Shaft Width One +\U0001F8AD;White Arrow Shaft Width Two Thirds +\U0001F8B0;Arrow Pointing Upwards Then North West +\U0001F8B1;Arrow Pointing Rightwards Then Curving South West +\U0001F900;Circled Cross Formee With Four Dots +\U0001F901;Circled Cross Formee With Two Dots +\U0001F902;Circled Cross Formee +\U0001F903;Left Half Circle With Four Dots +\U0001F904;Left Half Circle With Three Dots +\U0001F905;Left Half Circle With Two Dots +\U0001F906;Left Half Circle With Dot +\U0001F907;Left Half Circle +\U0001F908;Downward Facing Hook +\U0001F909;Downward Facing Notched Hook +\U0001F90A;Downward Facing Hook With Dot +\U0001F90B;Downward Facing Notched Hook With Dot +\U0001F90C;Pinched Fingers +\U0001F90D;White Heart +\U0001F90E;Brown Heart +\U0001F90F;Pinching Hand +\U0001F910;Zipper-Mouth Face +\U0001F911;Money-Mouth Face +\U0001F912;Face With Thermometer +\U0001F913;Nerd Face +\U0001F914;Thinking Face +\U0001F915;Face With Head-Bandage +\U0001F916;Robot Face +\U0001F917;Hugging Face +\U0001F918;Sign Of The Horns +\U0001F919;Call Me Hand +\U0001F91A;Raised Back Of Hand +\U0001F91B;Left-Facing Fist +\U0001F91C;Right-Facing Fist +\U0001F91D;Handshake +\U0001F91E;Hand With Index And Middle Fingers Crossed +\U0001F91F;I Love You Hand Sign +\U0001F920;Face With Cowboy Hat +\U0001F921;Clown Face +\U0001F922;Nauseated Face +\U0001F923;Rolling On The Floor Laughing +\U0001F924;Drooling Face +\U0001F925;Lying Face +\U0001F926;Face Palm +\U0001F927;Sneezing Face +\U0001F928;Face With One Eyebrow Raised +\U0001F929;Grinning Face With Star Eyes +\U0001F92A;Grinning Face With One Large And One Small Eye +\U0001F92B;Face With Finger Covering Closed Lips +\U0001F92C;Serious Face With Symbols Covering Mouth +\U0001F92D;Smiling Face With Smiling Eyes And Hand Covering Mouth +\U0001F92E;Face With Open Mouth Vomiting +\U0001F92F;Shocked Face With Exploding Head +\U0001F930;Pregnant Woman +\U0001F931;Breast-Feeding +\U0001F932;Palms Up Together +\U0001F933;Selfie +\U0001F934;Prince +\U0001F935;Man In Tuxedo +\U0001F936;Mother Christmas +\U0001F937;Shrug +\U0001F938;Person Doing Cartwheel +\U0001F939;Juggling +\U0001F93A;Fencer +\U0001F93B;Modern Pentathlon +\U0001F93C;Wrestlers +\U0001F93D;Water Polo +\U0001F93E;Handball +\U0001F93F;Diving Mask +\U0001F940;Wilted Flower +\U0001F941;Drum With Drumsticks +\U0001F942;Clinking Glasses +\U0001F943;Tumbler Glass +\U0001F944;Spoon +\U0001F945;Goal Net +\U0001F946;Rifle +\U0001F947;First Place Medal +\U0001F948;Second Place Medal +\U0001F949;Third Place Medal +\U0001F94A;Boxing Glove +\U0001F94B;Martial Arts Uniform +\U0001F94C;Curling Stone +\U0001F94D;Lacrosse Stick And Ball +\U0001F94E;Softball +\U0001F94F;Flying Disc +\U0001F950;Croissant +\U0001F951;Avocado +\U0001F952;Cucumber +\U0001F953;Bacon +\U0001F954;Potato +\U0001F955;Carrot +\U0001F956;Baguette Bread +\U0001F957;Green Salad +\U0001F958;Shallow Pan Of Food +\U0001F959;Stuffed Flatbread +\U0001F95A;Egg +\U0001F95B;Glass Of Milk +\U0001F95C;Peanuts +\U0001F95D;Kiwifruit +\U0001F95E;Pancakes +\U0001F95F;Dumpling +\U0001F960;Fortune Cookie +\U0001F961;Takeout Box +\U0001F962;Chopsticks +\U0001F963;Bowl With Spoon +\U0001F964;Cup With Straw +\U0001F965;Coconut +\U0001F966;Broccoli +\U0001F967;Pie +\U0001F968;Pretzel +\U0001F969;Cut Of Meat +\U0001F96A;Sandwich +\U0001F96B;Canned Food +\U0001F96C;Leafy Green +\U0001F96D;Mango +\U0001F96E;Moon Cake +\U0001F96F;Bagel +\U0001F970;Smiling Face With Smiling Eyes And Three Hearts +\U0001F971;Yawning Face +\U0001F972;Smiling Face With Tear +\U0001F973;Face With Party Horn And Party Hat +\U0001F974;Face With Uneven Eyes And Wavy Mouth +\U0001F975;Overheated Face +\U0001F976;Freezing Face +\U0001F977;Ninja +\U0001F978;Disguised Face +\U0001F979;Face Holding Back Tears +\U0001F97A;Face With Pleading Eyes +\U0001F97B;Sari +\U0001F97C;Lab Coat +\U0001F97D;Goggles +\U0001F97E;Hiking Boot +\U0001F97F;Flat Shoe +\U0001F980;Crab +\U0001F981;Lion Face +\U0001F982;Scorpion +\U0001F983;Turkey +\U0001F984;Unicorn Face +\U0001F985;Eagle +\U0001F986;Duck +\U0001F987;Bat +\U0001F988;Shark +\U0001F989;Owl +\U0001F98A;Fox Face +\U0001F98B;Butterfly +\U0001F98C;Deer +\U0001F98D;Gorilla +\U0001F98E;Lizard +\U0001F98F;Rhinoceros +\U0001F990;Shrimp +\U0001F991;Squid +\U0001F992;Giraffe Face +\U0001F993;Zebra Face +\U0001F994;Hedgehog +\U0001F995;Sauropod +\U0001F996;T-Rex +\U0001F997;Cricket +\U0001F998;Kangaroo +\U0001F999;Llama +\U0001F99A;Peacock +\U0001F99B;Hippopotamus +\U0001F99C;Parrot +\U0001F99D;Raccoon +\U0001F99E;Lobster +\U0001F99F;Mosquito +\U0001F9A0;Microbe +\U0001F9A1;Badger +\U0001F9A2;Swan +\U0001F9A3;Mammoth +\U0001F9A4;Dodo +\U0001F9A5;Sloth +\U0001F9A6;Otter +\U0001F9A7;Orangutan +\U0001F9A8;Skunk +\U0001F9A9;Flamingo +\U0001F9AA;Oyster +\U0001F9AB;Beaver +\U0001F9AC;Bison +\U0001F9AD;Seal +\U0001F9AE;Guide Dog +\U0001F9AF;Probing Cane +\U0001F9B0;Emoji Component Red Hair +\U0001F9B1;Emoji Component Curly Hair +\U0001F9B2;Emoji Component Bald +\U0001F9B3;Emoji Component White Hair +\U0001F9B4;Bone +\U0001F9B5;Leg +\U0001F9B6;Foot +\U0001F9B7;Tooth +\U0001F9B8;Superhero +\U0001F9B9;Supervillain +\U0001F9BA;Safety Vest +\U0001F9BB;Ear With Hearing Aid +\U0001F9BC;Motorized Wheelchair +\U0001F9BD;Manual Wheelchair +\U0001F9BE;Mechanical Arm +\U0001F9BF;Mechanical Leg +\U0001F9C0;Cheese Wedge +\U0001F9C1;Cupcake +\U0001F9C2;Salt Shaker +\U0001F9C3;Beverage Box +\U0001F9C4;Garlic +\U0001F9C5;Onion +\U0001F9C6;Falafel +\U0001F9C7;Waffle +\U0001F9C8;Butter +\U0001F9C9;Mate Drink +\U0001F9CA;Ice Cube +\U0001F9CB;Bubble Tea +\U0001F9CC;Troll +\U0001F9CD;Standing Person +\U0001F9CE;Kneeling Person +\U0001F9CF;Deaf Person +\U0001F9D0;Face With Monocle +\U0001F9D1;Adult +\U0001F9D2;Child +\U0001F9D3;Older Adult +\U0001F9D4;Bearded Person +\U0001F9D5;Person With Headscarf +\U0001F9D6;Person In Steamy Room +\U0001F9D7;Person Climbing +\U0001F9D8;Person In Lotus Position +\U0001F9D9;Mage +\U0001F9DA;Fairy +\U0001F9DB;Vampire +\U0001F9DC;Merperson +\U0001F9DD;Elf +\U0001F9DE;Genie +\U0001F9DF;Zombie +\U0001F9E0;Brain +\U0001F9E1;Orange Heart +\U0001F9E2;Billed Cap +\U0001F9E3;Scarf +\U0001F9E4;Gloves +\U0001F9E5;Coat +\U0001F9E6;Socks +\U0001F9E7;Red Gift Envelope +\U0001F9E8;Firecracker +\U0001F9E9;Jigsaw Puzzle Piece +\U0001F9EA;Test Tube +\U0001F9EB;Petri Dish +\U0001F9EC;Dna Double Helix +\U0001F9ED;Compass +\U0001F9EE;Abacus +\U0001F9EF;Fire Extinguisher +\U0001F9F0;Toolbox +\U0001F9F1;Brick +\U0001F9F2;Magnet +\U0001F9F3;Luggage +\U0001F9F4;Lotion Bottle +\U0001F9F5;Spool Of Thread +\U0001F9F6;Ball Of Yarn +\U0001F9F7;Safety Pin +\U0001F9F8;Teddy Bear +\U0001F9F9;Broom +\U0001F9FA;Basket +\U0001F9FB;Roll Of Paper +\U0001F9FC;Bar Of Soap +\U0001F9FD;Sponge +\U0001F9FE;Receipt +\U0001F9FF;Nazar Amulet +\U0001FA00;Neutral Chess King +\U0001FA01;Neutral Chess Queen +\U0001FA02;Neutral Chess Rook +\U0001FA03;Neutral Chess Bishop +\U0001FA04;Neutral Chess Knight +\U0001FA05;Neutral Chess Pawn +\U0001FA06;White Chess Knight Rotated Forty-Five Degrees +\U0001FA07;Black Chess Knight Rotated Forty-Five Degrees +\U0001FA08;Neutral Chess Knight Rotated Forty-Five Degrees +\U0001FA09;White Chess King Rotated Ninety Degrees +\U0001FA0A;White Chess Queen Rotated Ninety Degrees +\U0001FA0B;White Chess Rook Rotated Ninety Degrees +\U0001FA0C;White Chess Bishop Rotated Ninety Degrees +\U0001FA0D;White Chess Knight Rotated Ninety Degrees +\U0001FA0E;White Chess Pawn Rotated Ninety Degrees +\U0001FA0F;Black Chess King Rotated Ninety Degrees +\U0001FA10;Black Chess Queen Rotated Ninety Degrees +\U0001FA11;Black Chess Rook Rotated Ninety Degrees +\U0001FA12;Black Chess Bishop Rotated Ninety Degrees +\U0001FA13;Black Chess Knight Rotated Ninety Degrees +\U0001FA14;Black Chess Pawn Rotated Ninety Degrees +\U0001FA15;Neutral Chess King Rotated Ninety Degrees +\U0001FA16;Neutral Chess Queen Rotated Ninety Degrees +\U0001FA17;Neutral Chess Rook Rotated Ninety Degrees +\U0001FA18;Neutral Chess Bishop Rotated Ninety Degrees +\U0001FA19;Neutral Chess Knight Rotated Ninety Degrees +\U0001FA1A;Neutral Chess Pawn Rotated Ninety Degrees +\U0001FA1B;White Chess Knight Rotated One Hundred Thirty-Five Degrees +\U0001FA1C;Black Chess Knight Rotated One Hundred Thirty-Five Degrees +\U0001FA1D;Neutral Chess Knight Rotated One Hundred Thirty-Five Degrees +\U0001FA1E;White Chess Turned King +\U0001FA1F;White Chess Turned Queen +\U0001FA20;White Chess Turned Rook +\U0001FA21;White Chess Turned Bishop +\U0001FA22;White Chess Turned Knight +\U0001FA23;White Chess Turned Pawn +\U0001FA24;Black Chess Turned King +\U0001FA25;Black Chess Turned Queen +\U0001FA26;Black Chess Turned Rook +\U0001FA27;Black Chess Turned Bishop +\U0001FA28;Black Chess Turned Knight +\U0001FA29;Black Chess Turned Pawn +\U0001FA2A;Neutral Chess Turned King +\U0001FA2B;Neutral Chess Turned Queen +\U0001FA2C;Neutral Chess Turned Rook +\U0001FA2D;Neutral Chess Turned Bishop +\U0001FA2E;Neutral Chess Turned Knight +\U0001FA2F;Neutral Chess Turned Pawn +\U0001FA30;White Chess Knight Rotated Two Hundred Twenty-Five Degrees +\U0001FA31;Black Chess Knight Rotated Two Hundred Twenty-Five Degrees +\U0001FA32;Neutral Chess Knight Rotated Two Hundred Twenty-Five Degrees +\U0001FA33;White Chess King Rotated Two Hundred Seventy Degrees +\U0001FA34;White Chess Queen Rotated Two Hundred Seventy Degrees +\U0001FA35;White Chess Rook Rotated Two Hundred Seventy Degrees +\U0001FA36;White Chess Bishop Rotated Two Hundred Seventy Degrees +\U0001FA37;White Chess Knight Rotated Two Hundred Seventy Degrees +\U0001FA38;White Chess Pawn Rotated Two Hundred Seventy Degrees +\U0001FA39;Black Chess King Rotated Two Hundred Seventy Degrees +\U0001FA3A;Black Chess Queen Rotated Two Hundred Seventy Degrees +\U0001FA3B;Black Chess Rook Rotated Two Hundred Seventy Degrees +\U0001FA3C;Black Chess Bishop Rotated Two Hundred Seventy Degrees +\U0001FA3D;Black Chess Knight Rotated Two Hundred Seventy Degrees +\U0001FA3E;Black Chess Pawn Rotated Two Hundred Seventy Degrees +\U0001FA3F;Neutral Chess King Rotated Two Hundred Seventy Degrees +\U0001FA40;Neutral Chess Queen Rotated Two Hundred Seventy Degrees +\U0001FA41;Neutral Chess Rook Rotated Two Hundred Seventy Degrees +\U0001FA42;Neutral Chess Bishop Rotated Two Hundred Seventy Degrees +\U0001FA43;Neutral Chess Knight Rotated Two Hundred Seventy Degrees +\U0001FA44;Neutral Chess Pawn Rotated Two Hundred Seventy Degrees +\U0001FA45;White Chess Knight Rotated Three Hundred Fifteen Degrees +\U0001FA46;Black Chess Knight Rotated Three Hundred Fifteen Degrees +\U0001FA47;Neutral Chess Knight Rotated Three Hundred Fifteen Degrees +\U0001FA48;White Chess Equihopper +\U0001FA49;Black Chess Equihopper +\U0001FA4A;Neutral Chess Equihopper +\U0001FA4B;White Chess Equihopper Rotated Ninety Degrees +\U0001FA4C;Black Chess Equihopper Rotated Ninety Degrees +\U0001FA4D;Neutral Chess Equihopper Rotated Ninety Degrees +\U0001FA4E;White Chess Knight-Queen +\U0001FA4F;White Chess Knight-Rook +\U0001FA50;White Chess Knight-Bishop +\U0001FA51;Black Chess Knight-Queen +\U0001FA52;Black Chess Knight-Rook +\U0001FA53;Black Chess Knight-Bishop +\U0001FA60;Xiangqi Red General +\U0001FA61;Xiangqi Red Mandarin +\U0001FA62;Xiangqi Red Elephant +\U0001FA63;Xiangqi Red Horse +\U0001FA64;Xiangqi Red Chariot +\U0001FA65;Xiangqi Red Cannon +\U0001FA66;Xiangqi Red Soldier +\U0001FA67;Xiangqi Black General +\U0001FA68;Xiangqi Black Mandarin +\U0001FA69;Xiangqi Black Elephant +\U0001FA6A;Xiangqi Black Horse +\U0001FA6B;Xiangqi Black Chariot +\U0001FA6C;Xiangqi Black Cannon +\U0001FA6D;Xiangqi Black Soldier +\U0001FA70;Ballet Shoes +\U0001FA71;One-Piece Swimsuit +\U0001FA72;Briefs +\U0001FA73;Shorts +\U0001FA74;Thong Sandal +\U0001FA75;Light Blue Heart +\U0001FA76;Grey Heart +\U0001FA77;Pink Heart +\U0001FA78;Drop Of Blood +\U0001FA79;Adhesive Bandage +\U0001FA7A;Stethoscope +\U0001FA7B;X-Ray +\U0001FA7C;Crutch +\U0001FA80;Yo-Yo +\U0001FA81;Kite +\U0001FA82;Parachute +\U0001FA83;Boomerang +\U0001FA84;Magic Wand +\U0001FA85;Pinata +\U0001FA86;Nesting Dolls +\U0001FA87;Maracas +\U0001FA88;Flute +\U0001FA90;Ringed Planet +\U0001FA91;Chair +\U0001FA92;Razor +\U0001FA93;Axe +\U0001FA94;Diya Lamp +\U0001FA95;Banjo +\U0001FA96;Military Helmet +\U0001FA97;Accordion +\U0001FA98;Long Drum +\U0001FA99;Coin +\U0001FA9A;Carpentry Saw +\U0001FA9B;Screwdriver +\U0001FA9C;Ladder +\U0001FA9D;Hook +\U0001FA9E;Mirror +\U0001FA9F;Window +\U0001FAA0;Plunger +\U0001FAA1;Sewing Needle +\U0001FAA2;Knot +\U0001FAA3;Bucket +\U0001FAA4;Mouse Trap +\U0001FAA5;Toothbrush +\U0001FAA6;Headstone +\U0001FAA7;Placard +\U0001FAA8;Rock +\U0001FAA9;Mirror Ball +\U0001FAAA;Identification Card +\U0001FAAB;Low Battery +\U0001FAAC;Hamsa +\U0001FAAD;Folding Hand Fan +\U0001FAAE;Hair Pick +\U0001FAAF;Khanda +\U0001FAB0;Fly +\U0001FAB1;Worm +\U0001FAB2;Beetle +\U0001FAB3;Cockroach +\U0001FAB4;Potted Plant +\U0001FAB5;Wood +\U0001FAB6;Feather +\U0001FAB7;Lotus +\U0001FAB8;Coral +\U0001FAB9;Empty Nest +\U0001FABA;Nest With Eggs +\U0001FABB;Hyacinth +\U0001FABC;Jellyfish +\U0001FABD;Wing +\U0001FABF;Goose +\U0001FAC0;Anatomical Heart +\U0001FAC1;Lungs +\U0001FAC2;People Hugging +\U0001FAC3;Pregnant Man +\U0001FAC4;Pregnant Person +\U0001FAC5;Person With Crown +\U0001FACE;Moose +\U0001FACF;Donkey +\U0001FAD0;Blueberries +\U0001FAD1;Bell Pepper +\U0001FAD2;Olive +\U0001FAD3;Flatbread +\U0001FAD4;Tamale +\U0001FAD5;Fondue +\U0001FAD6;Teapot +\U0001FAD7;Pouring Liquid +\U0001FAD8;Beans +\U0001FAD9;Jar +\U0001FADA;Ginger Root +\U0001FADB;Pea Pod +\U0001FAE0;Melting Face +\U0001FAE1;Saluting Face +\U0001FAE2;Face With Open Eyes And Hand Over Mouth +\U0001FAE3;Face With Peeking Eye +\U0001FAE4;Face With Diagonal Mouth +\U0001FAE5;Dotted Line Face +\U0001FAE6;Biting Lip +\U0001FAE7;Bubbles +\U0001FAE8;Shaking Face +\U0001FAF0;Hand With Index Finger And Thumb Crossed +\U0001FAF1;Rightwards Hand +\U0001FAF2;Leftwards Hand +\U0001FAF3;Palm Down Hand +\U0001FAF4;Palm Up Hand +\U0001FAF5;Index Pointing At The Viewer +\U0001FAF6;Heart Hands +\U0001FAF7;Leftwards Pushing Hand +\U0001FAF8;Rightwards Pushing Hand +\U0001FB00;Block Sextant-1 +\U0001FB01;Block Sextant-2 +\U0001FB02;Block Sextant-12 +\U0001FB03;Block Sextant-3 +\U0001FB04;Block Sextant-13 +\U0001FB05;Block Sextant-23 +\U0001FB06;Block Sextant-123 +\U0001FB07;Block Sextant-4 +\U0001FB08;Block Sextant-14 +\U0001FB09;Block Sextant-24 +\U0001FB0A;Block Sextant-124 +\U0001FB0B;Block Sextant-34 +\U0001FB0C;Block Sextant-134 +\U0001FB0D;Block Sextant-234 +\U0001FB0E;Block Sextant-1234 +\U0001FB0F;Block Sextant-5 +\U0001FB10;Block Sextant-15 +\U0001FB11;Block Sextant-25 +\U0001FB12;Block Sextant-125 +\U0001FB13;Block Sextant-35 +\U0001FB14;Block Sextant-235 +\U0001FB15;Block Sextant-1235 +\U0001FB16;Block Sextant-45 +\U0001FB17;Block Sextant-145 +\U0001FB18;Block Sextant-245 +\U0001FB19;Block Sextant-1245 +\U0001FB1A;Block Sextant-345 +\U0001FB1B;Block Sextant-1345 +\U0001FB1C;Block Sextant-2345 +\U0001FB1D;Block Sextant-12345 +\U0001FB1E;Block Sextant-6 +\U0001FB1F;Block Sextant-16 +\U0001FB20;Block Sextant-26 +\U0001FB21;Block Sextant-126 +\U0001FB22;Block Sextant-36 +\U0001FB23;Block Sextant-136 +\U0001FB24;Block Sextant-236 +\U0001FB25;Block Sextant-1236 +\U0001FB26;Block Sextant-46 +\U0001FB27;Block Sextant-146 +\U0001FB28;Block Sextant-1246 +\U0001FB29;Block Sextant-346 +\U0001FB2A;Block Sextant-1346 +\U0001FB2B;Block Sextant-2346 +\U0001FB2C;Block Sextant-12346 +\U0001FB2D;Block Sextant-56 +\U0001FB2E;Block Sextant-156 +\U0001FB2F;Block Sextant-256 +\U0001FB30;Block Sextant-1256 +\U0001FB31;Block Sextant-356 +\U0001FB32;Block Sextant-1356 +\U0001FB33;Block Sextant-2356 +\U0001FB34;Block Sextant-12356 +\U0001FB35;Block Sextant-456 +\U0001FB36;Block Sextant-1456 +\U0001FB37;Block Sextant-2456 +\U0001FB38;Block Sextant-12456 +\U0001FB39;Block Sextant-3456 +\U0001FB3A;Block Sextant-13456 +\U0001FB3B;Block Sextant-23456 +\U0001FB3C;Lower Left Block Diagonal Lower Middle Left To Lower Centre +\U0001FB3D;Lower Left Block Diagonal Lower Middle Left To Lower Right +\U0001FB3E;Lower Left Block Diagonal Upper Middle Left To Lower Centre +\U0001FB3F;Lower Left Block Diagonal Upper Middle Left To Lower Right +\U0001FB40;Lower Left Block Diagonal Upper Left To Lower Centre +\U0001FB41;Lower Right Block Diagonal Upper Middle Left To Upper Centre +\U0001FB42;Lower Right Block Diagonal Upper Middle Left To Upper Right +\U0001FB43;Lower Right Block Diagonal Lower Middle Left To Upper Centre +\U0001FB44;Lower Right Block Diagonal Lower Middle Left To Upper Right +\U0001FB45;Lower Right Block Diagonal Lower Left To Upper Centre +\U0001FB46;Lower Right Block Diagonal Lower Middle Left To Upper Middle Right +\U0001FB47;Lower Right Block Diagonal Lower Centre To Lower Middle Right +\U0001FB48;Lower Right Block Diagonal Lower Left To Lower Middle Right +\U0001FB49;Lower Right Block Diagonal Lower Centre To Upper Middle Right +\U0001FB4A;Lower Right Block Diagonal Lower Left To Upper Middle Right +\U0001FB4B;Lower Right Block Diagonal Lower Centre To Upper Right +\U0001FB4C;Lower Left Block Diagonal Upper Centre To Upper Middle Right +\U0001FB4D;Lower Left Block Diagonal Upper Left To Upper Middle Right +\U0001FB4E;Lower Left Block Diagonal Upper Centre To Lower Middle Right +\U0001FB4F;Lower Left Block Diagonal Upper Left To Lower Middle Right +\U0001FB50;Lower Left Block Diagonal Upper Centre To Lower Right +\U0001FB51;Lower Left Block Diagonal Upper Middle Left To Lower Middle Right +\U0001FB52;Upper Right Block Diagonal Lower Middle Left To Lower Centre +\U0001FB53;Upper Right Block Diagonal Lower Middle Left To Lower Right +\U0001FB54;Upper Right Block Diagonal Upper Middle Left To Lower Centre +\U0001FB55;Upper Right Block Diagonal Upper Middle Left To Lower Right +\U0001FB56;Upper Right Block Diagonal Upper Left To Lower Centre +\U0001FB57;Upper Left Block Diagonal Upper Middle Left To Upper Centre +\U0001FB58;Upper Left Block Diagonal Upper Middle Left To Upper Right +\U0001FB59;Upper Left Block Diagonal Lower Middle Left To Upper Centre +\U0001FB5A;Upper Left Block Diagonal Lower Middle Left To Upper Right +\U0001FB5B;Upper Left Block Diagonal Lower Left To Upper Centre +\U0001FB5C;Upper Left Block Diagonal Lower Middle Left To Upper Middle Right +\U0001FB5D;Upper Left Block Diagonal Lower Centre To Lower Middle Right +\U0001FB5E;Upper Left Block Diagonal Lower Left To Lower Middle Right +\U0001FB5F;Upper Left Block Diagonal Lower Centre To Upper Middle Right +\U0001FB60;Upper Left Block Diagonal Lower Left To Upper Middle Right +\U0001FB61;Upper Left Block Diagonal Lower Centre To Upper Right +\U0001FB62;Upper Right Block Diagonal Upper Centre To Upper Middle Right +\U0001FB63;Upper Right Block Diagonal Upper Left To Upper Middle Right +\U0001FB64;Upper Right Block Diagonal Upper Centre To Lower Middle Right +\U0001FB65;Upper Right Block Diagonal Upper Left To Lower Middle Right +\U0001FB66;Upper Right Block Diagonal Upper Centre To Lower Right +\U0001FB67;Upper Right Block Diagonal Upper Middle Left To Lower Middle Right +\U0001FB68;Upper And Right And Lower Triangular Three Quarters Block +\U0001FB69;Left And Lower And Right Triangular Three Quarters Block +\U0001FB6A;Upper And Left And Lower Triangular Three Quarters Block +\U0001FB6B;Left And Upper And Right Triangular Three Quarters Block +\U0001FB6C;Left Triangular One Quarter Block +\U0001FB6D;Upper Triangular One Quarter Block +\U0001FB6E;Right Triangular One Quarter Block +\U0001FB6F;Lower Triangular One Quarter Block +\U0001FB70;Vertical One Eighth Block-2 +\U0001FB71;Vertical One Eighth Block-3 +\U0001FB72;Vertical One Eighth Block-4 +\U0001FB73;Vertical One Eighth Block-5 +\U0001FB74;Vertical One Eighth Block-6 +\U0001FB75;Vertical One Eighth Block-7 +\U0001FB76;Horizontal One Eighth Block-2 +\U0001FB77;Horizontal One Eighth Block-3 +\U0001FB78;Horizontal One Eighth Block-4 +\U0001FB79;Horizontal One Eighth Block-5 +\U0001FB7A;Horizontal One Eighth Block-6 +\U0001FB7B;Horizontal One Eighth Block-7 +\U0001FB7C;Left And Lower One Eighth Block +\U0001FB7D;Left And Upper One Eighth Block +\U0001FB7E;Right And Upper One Eighth Block +\U0001FB7F;Right And Lower One Eighth Block +\U0001FB80;Upper And Lower One Eighth Block +\U0001FB81;Horizontal One Eighth Block-1358 +\U0001FB82;Upper One Quarter Block +\U0001FB83;Upper Three Eighths Block +\U0001FB84;Upper Five Eighths Block +\U0001FB85;Upper Three Quarters Block +\U0001FB86;Upper Seven Eighths Block +\U0001FB87;Right One Quarter Block +\U0001FB88;Right Three Eighths Block +\U0001FB89;Right Five Eighths Block +\U0001FB8A;Right Three Quarters Block +\U0001FB8B;Right Seven Eighths Block +\U0001FB8C;Left Half Medium Shade +\U0001FB8D;Right Half Medium Shade +\U0001FB8E;Upper Half Medium Shade +\U0001FB8F;Lower Half Medium Shade +\U0001FB90;Inverse Medium Shade +\U0001FB91;Upper Half Block And Lower Half Inverse Medium Shade +\U0001FB92;Upper Half Inverse Medium Shade And Lower Half Block +\U0001FB94;Left Half Inverse Medium Shade And Right Half Block +\U0001FB95;Checker Board Fill +\U0001FB96;Inverse Checker Board Fill +\U0001FB97;Heavy Horizontal Fill +\U0001FB98;Upper Left To Lower Right Fill +\U0001FB99;Upper Right To Lower Left Fill +\U0001FB9A;Upper And Lower Triangular Half Block +\U0001FB9B;Left And Right Triangular Half Block +\U0001FB9C;Upper Left Triangular Medium Shade +\U0001FB9D;Upper Right Triangular Medium Shade +\U0001FB9E;Lower Right Triangular Medium Shade +\U0001FB9F;Lower Left Triangular Medium Shade +\U0001FBA0;Box Drawings Light Diagonal Upper Centre To Middle Left +\U0001FBA1;Box Drawings Light Diagonal Upper Centre To Middle Right +\U0001FBA2;Box Drawings Light Diagonal Middle Left To Lower Centre +\U0001FBA3;Box Drawings Light Diagonal Middle Right To Lower Centre +\U0001FBA4;Box Drawings Light Diagonal Upper Centre To Middle Left To Lower Centre +\U0001FBA5;Box Drawings Light Diagonal Upper Centre To Middle Right To Lower Centre +\U0001FBA6;Box Drawings Light Diagonal Middle Left To Lower Centre To Middle Right +\U0001FBA7;Box Drawings Light Diagonal Middle Left To Upper Centre To Middle Right +\U0001FBA8;Box Drawings Light Diagonal Upper Centre To Middle Left And Middle Right To Lower Centre +\U0001FBA9;Box Drawings Light Diagonal Upper Centre To Middle Right And Middle Left To Lower Centre +\U0001FBAA;Box Drawings Light Diagonal Upper Centre To Middle Right To Lower Centre To Middle Left +\U0001FBAB;Box Drawings Light Diagonal Upper Centre To Middle Left To Lower Centre To Middle Right +\U0001FBAC;Box Drawings Light Diagonal Middle Left To Upper Centre To Middle Right To Lower Centre +\U0001FBAD;Box Drawings Light Diagonal Middle Right To Upper Centre To Middle Left To Lower Centre +\U0001FBAE;Box Drawings Light Diagonal Diamond +\U0001FBAF;Box Drawings Light Horizontal With Vertical Stroke +\U0001FBB0;Arrowhead-Shaped Pointer +\U0001FBB1;Inverse Check Mark +\U0001FBB2;Left Half Running Man +\U0001FBB3;Right Half Running Man +\U0001FBB4;Inverse Downwards Arrow With Tip Leftwards +\U0001FBB5;Leftwards Arrow And Upper And Lower One Eighth Block +\U0001FBB6;Rightwards Arrow And Upper And Lower One Eighth Block +\U0001FBB7;Downwards Arrow And Right One Eighth Block +\U0001FBB8;Upwards Arrow And Right One Eighth Block +\U0001FBB9;Left Half Folder +\U0001FBBA;Right Half Folder +\U0001FBBB;Voided Greek Cross +\U0001FBBC;Right Open Squared Dot +\U0001FBBD;Negative Diagonal Cross +\U0001FBBE;Negative Diagonal Middle Right To Lower Centre +\U0001FBBF;Negative Diagonal Diamond +\U0001FBC0;White Heavy Saltire With Rounded Corners +\U0001FBC1;Left Third White Right Pointing Index +\U0001FBC2;Middle Third White Right Pointing Index +\U0001FBC3;Right Third White Right Pointing Index +\U0001FBC4;Negative Squared Question Mark +\U0001FBC5;Stick Figure +\U0001FBC6;Stick Figure With Arms Raised +\U0001FBC7;Stick Figure Leaning Left +\U0001FBC8;Stick Figure Leaning Right +\U0001FBC9;Stick Figure With Dress +\U0001FBCA;White Up-Pointing Chevron +\U0001FBF0;Segmented Digit Zero +\U0001FBF1;Segmented Digit One +\U0001FBF2;Segmented Digit Two +\U0001FBF3;Segmented Digit Three +\U0001FBF4;Segmented Digit Four +\U0001FBF5;Segmented Digit Five +\U0001FBF6;Segmented Digit Six +\U0001FBF7;Segmented Digit Seven +\U0001FBF8;Segmented Digit Eight +\U0001FBF9;Segmented Digit Nine +\U000E0001;Language Tag +\U000E0020;Tag Space +\U000E0021;Tag Exclamation Mark +\U000E0022;Tag Quotation Mark +\U000E0023;Tag Number Sign +\U000E0024;Tag Dollar Sign +\U000E0025;Tag Percent Sign +\U000E0026;Tag Ampersand +\U000E0027;Tag Apostrophe +\U000E0028;Tag Left Parenthesis +\U000E0029;Tag Right Parenthesis +\U000E002A;Tag Asterisk +\U000E002B;Tag Plus Sign +\U000E002C;Tag Comma +\U000E002D;Tag Hyphen-Minus +\U000E002E;Tag Full Stop +\U000E002F;Tag Solidus +\U000E0030;Tag Digit Zero +\U000E0031;Tag Digit One +\U000E0032;Tag Digit Two +\U000E0033;Tag Digit Three +\U000E0034;Tag Digit Four +\U000E0035;Tag Digit Five +\U000E0036;Tag Digit Six +\U000E0037;Tag Digit Seven +\U000E0038;Tag Digit Eight +\U000E0039;Tag Digit Nine +\U000E003A;Tag Colon +\U000E003B;Tag Semicolon +\U000E003C;Tag Less-Than Sign +\U000E003D;Tag Equals Sign +\U000E003E;Tag Greater-Than Sign +\U000E003F;Tag Question Mark +\U000E0040;Tag Commercial At +\U000E0041;Tag Latin Capital Letter A +\U000E0042;Tag Latin Capital Letter B +\U000E0043;Tag Latin Capital Letter C +\U000E0044;Tag Latin Capital Letter D +\U000E0045;Tag Latin Capital Letter E +\U000E0046;Tag Latin Capital Letter F +\U000E0047;Tag Latin Capital Letter G +\U000E0048;Tag Latin Capital Letter H +\U000E0049;Tag Latin Capital Letter I +\U000E004A;Tag Latin Capital Letter J +\U000E004B;Tag Latin Capital Letter K +\U000E004C;Tag Latin Capital Letter L +\U000E004D;Tag Latin Capital Letter M +\U000E004E;Tag Latin Capital Letter N +\U000E004F;Tag Latin Capital Letter O +\U000E0050;Tag Latin Capital Letter P +\U000E0051;Tag Latin Capital Letter Q +\U000E0052;Tag Latin Capital Letter R +\U000E0053;Tag Latin Capital Letter S +\U000E0054;Tag Latin Capital Letter T +\U000E0055;Tag Latin Capital Letter U +\U000E0056;Tag Latin Capital Letter V +\U000E0057;Tag Latin Capital Letter W +\U000E0058;Tag Latin Capital Letter X +\U000E0059;Tag Latin Capital Letter Y +\U000E005A;Tag Latin Capital Letter Z +\U000E005B;Tag Left Square Bracket +\U000E005C;Tag Reverse Solidus +\U000E005D;Tag Right Square Bracket +\U000E005E;Tag Circumflex Accent +\U000E005F;Tag Low Line +\U000E0060;Tag Grave Accent +\U000E0061;Tag Latin Small Letter A +\U000E0062;Tag Latin Small Letter B +\U000E0063;Tag Latin Small Letter C +\U000E0064;Tag Latin Small Letter D +\U000E0065;Tag Latin Small Letter E +\U000E0066;Tag Latin Small Letter F +\U000E0067;Tag Latin Small Letter G +\U000E0068;Tag Latin Small Letter H +\U000E0069;Tag Latin Small Letter I +\U000E006A;Tag Latin Small Letter J +\U000E006B;Tag Latin Small Letter K +\U000E006C;Tag Latin Small Letter L +\U000E006D;Tag Latin Small Letter M +\U000E006E;Tag Latin Small Letter N +\U000E006F;Tag Latin Small Letter O +\U000E0070;Tag Latin Small Letter P +\U000E0071;Tag Latin Small Letter Q +\U000E0072;Tag Latin Small Letter R +\U000E0073;Tag Latin Small Letter S +\U000E0074;Tag Latin Small Letter T +\U000E0075;Tag Latin Small Letter U +\U000E0076;Tag Latin Small Letter V +\U000E0077;Tag Latin Small Letter W +\U000E0078;Tag Latin Small Letter X +\U000E0079;Tag Latin Small Letter Y +\U000E007A;Tag Latin Small Letter Z +\U000E007B;Tag Left Curly Bracket +\U000E007C;Tag Vertical Line +\U000E007D;Tag Right Curly Bracket +\U000E007E;Tag Tilde +\U000E007F;Cancel Tag -- cgit v1.2.3