Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/meyer/emoji-db
A database of Apple-supported emojis in JSON format. Used by my Alfred emoji workflow.
https://github.com/meyer/emoji-db
emoji emoji-db emojilib unicode
Last synced: 5 days ago
JSON representation
A database of Apple-supported emojis in JSON format. Used by my Alfred emoji workflow.
- Host: GitHub
- URL: https://github.com/meyer/emoji-db
- Owner: meyer
- Created: 2015-10-26T06:58:02.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2024-09-11T00:08:22.000Z (2 months ago)
- Last Synced: 2024-11-01T00:40:22.693Z (12 days ago)
- Topics: emoji, emoji-db, emojilib, unicode
- Language: TypeScript
- Homepage: https://github.com/meyer/alfred-emoji-workflow
- Size: 143 MB
- Stars: 33
- Watchers: 5
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# EMOJI DB
## Resources
- List of all emoji sans joined variants: http://unicode.org/cldr/utility/list-unicodeset.jsp?a=%5B%3Aemoji%3A%5D&g=emoji
- Mega inline image emoji page (warning: 30+ MB): http://unicode.org/emoji/charts/full-emoji-list.html
- TRAC page: http://www.unicode.org/utility/trac/browser/trunk?order=name#unicodetools/data/emoji/
- OSX build numbers: https://support.apple.com/en-us/HT201260
- latest unicode data: https://unicode.org/Public/emoji/latest/## Converting codepoints to emoji
The unicode codepoint for :sunglasses: is `1f60e`.
### Javascript
```js
String.fromCodePoint(parseInt('1f60e', 16));
```## Interesting links
- https://docs.microsoft.com/en-us/typography/opentype/spec/otff
- https://developer.apple.com/fonts/TrueType-Reference-Manual/
- https://github.com/foliojs/restructure
- https://github.com/deepakjois/luafontkit/blob/4832aa04f501ed1b7a3d2691022deaafac3c0d27/src/TrueTypeCollection.js