codePointsSeq
Returns a sequence of Unicode code point values from this string.
Any surrogate pairs are combined into a single code point (using the formula: ((high - 0xD800) shl 10) + (low - 0xDC00) + 0x10000). Other characters (including unpaired surrogates) are zero-extended.