A string contains one character outside the Basic Multilingual Plane, represented by a surrogate pair. What does length count for that character?
Explanation
The length property counts UTF-16 code units, so this surrogate-pair character contributes two. Counting it as one would measure a Unicode code point or perceived character rather than the string's specified length unit.