Conversation

> var s = String.fromCodePoint(0x10ffff) > s.length 2 > s.codePointAt(0).toString(16) "10ffff" > s.codePointAt(1).toString(16) "dfff"
1