Skip to content

Instantly share code, notes, and snippets.

@jonschlinkert
Created May 21, 2024 02:00
Show Gist options
  • Save jonschlinkert/72b103bf45c35027f55463156ce79180 to your computer and use it in GitHub Desktop.
Save jonschlinkert/72b103bf45c35027f55463156ce79180 to your computer and use it in GitHub Desktop.
const getAllCharacters = () => {
let chars = '';
for (let i = 0; i <= 0x10ffff; i++) {
try {
chars += String.fromCodePoint(i);
} catch (e) {
// ignore invalid utf-16 chars
continue;
}
}
return chars;
}
console.log(getAllCharacters().length)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment