Is it possible to make something that has more Unicode than the 16 bit set? #1347
snowboyz0825
started this conversation in
General
Replies: 1 comment 5 replies
-
UTF-16 can support all Unicode characters, though characters above 65k will have to be represented with multiple 16-bit "codepoints" joined together (which I assume most extensions don't account for, including mine). |
Beta Was this translation helpful? Give feedback.
5 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Whilst experimenting, I figured out that on any extension with Unicode, it starts to repeat itself after 65536 characters. Using Google, I found there are ~149000 characters. After a little more researching, I found that it was the 16 bit integer limit. I believe in the 16 bit set there are only 65536 characters, and I was wondering if there was an extension that would let me pull from a more modern version of it.
Beta Was this translation helpful? Give feedback.
All reactions