1
0
Fork 0
mirror of https://github.com/emojisum/emojisum.git synced 2025-08-02 05:10:27 +00:00

emoji: update spec for combination unicode

Signed-off-by: Vincent Batts <vbatts@hashbangbash.com>
This commit is contained in:
Vincent Batts 2018-10-16 15:27:44 -04:00
parent 4dc49af65b
commit a1c34a4637
Signed by: vbatts
GPG key ID: 10937E57733F1362
5 changed files with 16 additions and 5 deletions

View file

@ -85,7 +85,7 @@ import (
func main() {
for i := 0; i < 255; i++ {
fmt.Printf("%d :\n", i)
fmt.Printf("%d (%2.2x):\n", i, i)
for _, word := range emoji.Map(byte(i)) {
fmt.Printf(" - %s\n", emoji.CodepointToUnicode(word))
}