Skip to content

Instantly share code, notes, and snippets.

@nummi
Created January 7, 2022 18:42
Show Gist options
  • Save nummi/7897a904c70ad888133ce840cefd672f to your computer and use it in GitHub Desktop.
Save nummi/7897a904c70ad888133ce840cefd672f to your computer and use it in GitHub Desktop.
function getFlagEmoji(countryCode) {
const codePoints = countryCode
.toUpperCase()
.split('')
.map(char => 127397 + char.charCodeAt());
return String.fromCodePoint(...codePoints);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment