// Ol Chiki Script
// 0x1c50 - 0x1c7f Ol Chiki
+ // Meitei Script
+ // 0xabc0 - 0xabff Meetei Mayek
+ // 0xaae0 - 0xaaff Meetei Mayek Extensions
+
// The Emoji which map to standardized Unicode characters
// 1. Emoticons ( 1F601 - 1F64F )
// 2. Dingbats ( 2702 - 27B0 )
{
return LATIN;
}
+ if( ( 0xaae0 <= character ) && ( character <= 0xaaff ) )
+ {
+ return MEITEI;
+ }
+ if( ( 0xabc0 <= character ) && ( character <= 0xabff ) )
+ {
+ return MEITEI;
+ }
if( ( 0xac00 <= character ) && ( character <= 0xd7af ) )
{
return HANGUL;
GEEZ, ///< The Ge'ez script. Used by the Amharic, Tigrinya and other languages in Ethiopia and Eritrea.
OL_CHIKI, ///< The Ol Chiki script. Used by the Santali.
BAYBAYIN, ///< The Baybayin script. Used by the Tagalog, Bikol languages, Ilocano, Pangasinan, Visayan and other languages in Philippines.
+ MEITEI, ///< The Meitei script used for the Meitei language in Manipur, India.
EMOJI, ///< The Emoji which map to standardized Unicode characters.
"GEEZ", ///< The Ge'ez script also known as Ethiopic. Used by the Amharic, Tigrinya and other languages in Ethiopia and Eritrea.
"OL_CHIKI", ///< The Ol Chiki script. Used by the Santali.
"BAYBAYIN", ///< The Baybayin script. Used by the Tagalog, Bikol languages, Ilocano, Pangasinan, Visayan and other languages in Philippines.
+ "MEITEI", ///< The Meitei script used for the Meitei language in Manipur, India.
"EMOJI", ///< The Emoji which map to standardized Unicode characters.