Secret Sinisterly emojis 08-19-2017, 12:15 AM
#1
Not exactly a secret, but it's still neat.
I saw a post by @"marvin" with a thinking emoji in it ([emoji848])
But we don't have a thinking emoji... Wait...
Apparently we have all the emojis, from emoji1 to emoji1621! (that's a lot)
Here's the first 23: (Emojis are counted as images, and you are only allowed to have 25 of them per post)
If you want a python script that barely works to print them all: (your terminal needs UTF-8 support)
Have fun with the emojis! [emoji1]
Thanks @"marvin"!
I saw a post by @"marvin" with a thinking emoji in it ([emoji848])
But we don't have a thinking emoji... Wait...
Apparently we have all the emojis, from emoji1 to emoji1621! (that's a lot)
Here's the first 23: (Emojis are counted as images, and you are only allowed to have 25 of them per post)
Spoiler: Emojis
If you want a python script that barely works to print them all: (your terminal needs UTF-8 support)
Code:
for i in range(1, 1622): #change 1622 to the number of emojis to print + 1
print("emoji" + str(i) + " - [emoji" + str(i) + ']' + " - " + (chr(0x0001F600 + i)))
#this is what happens when you are too lazy to use format()
Have fun with the emojis! [emoji1]
Thanks @"marvin"!
(This post was last modified: 08-19-2017, 12:25 AM by Blink.)