Char.isLowSurrogate

Determines if the given {@code char} value is a <a href="http://www.unicode.org/glossary/#low_surrogate_code_unit"> Unicode low-surrogate code unit</a> (also known as <i>trailing-surrogate code unit</i>).

<p>Such values do not represent characters by themselves, but are used in the representation of <a href="#supplementary">supplementary characters</a> in the UTF-16 encoding.

@param ch the {@code char} value to be tested. @return {@code true} if the {@code char} value is between {@link #MIN_LOW_SURROGATE} and {@link #MAX_LOW_SURROGATE} inclusive; {@code false} otherwise. @see Character#isHighSurrogate(char)

class Char
static
bool
isLowSurrogate
(
char ch
)

Meta