Skip to content

Instantly share code, notes, and snippets.

@sunpietro
Created March 29, 2022 09:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sunpietro/22b10927e427c22f97b8db24f444a753 to your computer and use it in GitHub Desktop.
Save sunpietro/22b10927e427c22f97b8db24f444a753 to your computer and use it in GitHub Desktop.
Get country flag as emoji
const getEmojiFlag = (code) => {
const codePoints = code
.toUpperCase()
.split('')
.map(char => 127397 + char.charCodeAt());
return String.fromCodePoint(...codePoints);
}
getEmojiFlag('pl'); // 🇵🇱
getEmojiFlag('us'); // 🇺🇸
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment