Android Utililty Methods Surrogate Check

List of utility methods to do Surrogate Check

Description

The list of methods to do Surrogate Check are organized into topic(s).

Method

booleanisHighSurrogate(char c)
is High Surrogate
return 0xd800 <= c && c <= 0xdbff;
booleanisLowSurrogate(char c)
is Low Surrogate
return 0xdc00 <= c && c <= 0xdfff;