Skip to content

Instantly share code, notes, and snippets.

@mahadazad
Created June 8, 2015 09:40
Show Gist options
  • Save mahadazad/46ff96e4a03a306ebf38 to your computer and use it in GitHub Desktop.
Save mahadazad/46ff96e4a03a306ebf38 to your computer and use it in GitHub Desktop.
Is 32 Bit
function is32Bit(c) {
return c.codePointAt(0) > 0xFFFF;
}
console.log(is32Bit("𠮷")); // true
console.log(is32Bit("a")); // false
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment