Skip to content

Instantly share code, notes, and snippets.

@kilinkis
Created March 15, 2022 08:47
Show Gist options
  • Save kilinkis/f8a20932edb85e4a85157c0491290f8a to your computer and use it in GitHub Desktop.
Save kilinkis/f8a20932edb85e4a85157c0491290f8a to your computer and use it in GitHub Desktop.
Country code to flag emoji
const getFlagEmoji = (countryCode) =>
String.fromCodePoint(...[...countryCode.toUpperCase()].map((x) => 0x1f1a5 + x.charCodeAt(0)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment