-
-
Save siaw23-retired/f7ff81f8c7c7eba72ce3bcc72382aa3a to your computer and use it in GitHub Desktop.
Country Emoji
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
COUNTRY_LETTERS = 'A'.upto('Z').each.with_index(127462).to_h.freeze | |
def country_emoji(iso) | |
COUNTRY_LETTERS.values_at(*iso.chars).pack('U*') | |
end | |
country_emoji('GB') | |
#=> "🇬🇧" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment