Share via


Character.IsEmojiModifierBase(Int32) Method

Definition

Determines if the specified character (Unicode code point) is an Emoji Modifier Base.

[Android.Runtime.Register("isEmojiModifierBase", "(I)Z", "", ApiSince=36)]
public static bool IsEmojiModifierBase(int codePoint);
[<Android.Runtime.Register("isEmojiModifierBase", "(I)Z", "", ApiSince=36)>]
static member IsEmojiModifierBase : int -> bool

Parameters

codePoint
Int32

the character (Unicode code point) to be tested.

Returns

true if the character is an Emoji Modifier Base; false otherwise.

Attributes

Remarks

Determines if the specified character (Unicode code point) is an Emoji Modifier Base.

A character is considered to be an Emoji Modifier Base if and only if it has the Emoji_Modifier_Base property, defined in Unicode Emoji (Technical Standard #51).

Added in 21.

Java documentation for java.lang.Character.isEmojiModifierBase(int).

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to