Daily Shaarli

All links of one day in a single page.

May 24, 2024

Country Code to Flag Emoji - DEV Community

Country flag code to unicode emoji flag

function getFlagEmoji(countryCode) {
  const codePoints = countryCode
    .toUpperCase()
    .split('')
    .map(char =>  127397 + char.charCodeAt());
  return String.fromCodePoint(...codePoints);
}