Package Exports
- emoji-unicode-map
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (emoji-unicode-map) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
emoji-unicode-map

Unicode to name emoji mapping.
☁️ Installation
$ npm i --save emoji-unicode-map
📋 Example
const unicode = require("emoji-unicode-map");
console.log(unicode.get("😍"));
// heart_eyes
console.log(unicode.emoji);
// { '💯': '100',
// '🔢': '1234',
// '😀': 'grinning',
// '😬': 'grimacing',
// '😁': 'grin',
// '😂': 'joy',
// ...
// }
📝 Documentation
get(char)
Gets the emoji name, by providing the character.
Params
- String
char
: The emoji character.
Return
- String The emoji name.
😋 How to contribute
Have an idea? Found a bug? See how to contribute.
💫 Where is this library used?
If you are using this library in one of your projects, add it in this list. ✨
emoji-chars
—Get the emoji chars as array.emoji-dictionary
—Convert emoji names in unicode characters and vice versa.