You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
See section 3.7 of Unicode 3.0 (later versions are not as clear regarding how to do the surrogate pairs calculation): https://www.unicode.org/versions/Unicode3.0.0/ch03.pdf
N = (H - D800_16) * 400_16 + (L - DC00_16) + 10000_16.
10000_16 is 2^16, not 2^20.
0 commit comments