# country-currency-emoji-flags **Repository Path**: mirrors_opencollective/country-currency-emoji-flags ## Basic Information - **Project Name**: country-currency-emoji-flags - **Description**: Returns Country Flag Emojis Given the Country or Currency Codes - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2022-03-04 - **Last Updated**: 2026-04-26 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ## country-currency-emoji-flags This small package helps to obtain emojis based on the currency code ([ISO 4217](https://en.wikipedia.org/wiki/ISO_4217)) or country code ([ISO 3166-1 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2)). ### Install > npm install --save country-currency-emoji-flags ### Usage ```js import { getEmojiByCountryCode, getEmojiByCurrencyCode, countryData, currencyData, } from "country-currency-emoji-flags"; // Currency lookup emojiFlags.getEmojiByCurrencyCode("CAD"); // => "🇨🇦" // Country lookup emojiFlags.getEmojiByCountryCode("CA"); // => "🇨🇦" // entire currency code set emojiFlags.currencyData; // entire country code set emojiFlags.countryData; ```