Skip to content

Instantly share code, notes, and snippets.

@dougg0k
Created April 9, 2021 23:49
Show Gist options
  • Save dougg0k/3f9ca6f903291aada371628391f927b0 to your computer and use it in GitHub Desktop.
Save dougg0k/3f9ca6f903291aada371628391f927b0 to your computer and use it in GitHub Desktop.
const getCountryFlagEmoji = countryCode => String.fromCodePoint(...[...countryCode.toUpperCase()].map(x => 0x1f1a5+x.charCodeAt(0)))
getFlagEmoji('GB') // 🇬🇧
getFlagEmoji('JP') // 🇯🇵
getFlagEmoji('ZA') // 🇿🇦
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment