1 | # emojis-list
|
2 |
|
3 | [](https://david-dm.org/Kikobeats/emojis-list)
|
4 | [](https://david-dm.org/Kikobeats/emojis-list#info=devDependencies)
|
5 | [](https://www.npmjs.org/package/emojis-list)
|
6 | [](https://paypal.me/kikobeats)
|
7 |
|
8 | > Complete list of standard Unicode Hex Character Code that represent emojis.
|
9 |
|
10 | **NOTE**: The lists is related with the Unicode Hex Character Code. The representation of the emoji depend of the system. Will be possible that the system don't have all the representations.
|
11 |
|
12 | ## Install
|
13 |
|
14 | ```bash
|
15 | npm install emojis-list --save
|
16 | ```
|
17 |
|
18 | ## Usage
|
19 |
|
20 | ```js
|
21 | const emojis = require('emojis-list')
|
22 | console.log(emojis[0])
|
23 | // => 🀄
|
24 | ```
|
25 |
|
26 | ## Related
|
27 |
|
28 | * [emojis-unicode](https://github.com/Kikobeats/emojis-unicode) – Complete list of standard Unicode codes that represent emojis.
|
29 | * [emojis-keywords](https://github.com/Kikobeats/emojis-keywords) – Complete list of am emoji shortcuts.
|
30 | * [is-emoji-keyword](https://github.com/Kikobeats/is-emoji-keyword) – Check if a word is a emoji shortcut.
|
31 | * [is-standard-emoji](https://github.com/kikobeats/is-standard-emoji) – Simply way to check if a emoji is a standard emoji.
|
32 | * [trim-emoji](https://github.com/Kikobeats/trim-emoji) – Deletes ':' from the begin and the end of an emoji shortcut.
|
33 |
|
34 | ## License
|
35 |
|
36 | MIT © [Kiko Beats](http://www.kikobeats.com)
|