Any one can teach me how to add emojis? Plz | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

Any one can teach me how to add emojis? Plz

14th Jun 2020, 6:06 AM
Natasha Sing
Natasha Sing - avatar
9 Answers
+ 4
Add emojis in what?
14th Jun 2020, 6:21 AM
Raj Chhatrala
Raj Chhatrala - avatar
+ 4
Natasha Sing u can use unicode for emojis
14th Jun 2020, 7:02 PM
A S Raghuvanshi
A S Raghuvanshi - avatar
+ 3
If you need to print it, you can either select from keyboard or use the whole Unicode table to find your preferred character, including emojis. You can either browse the table yourself, for example here: https://www.fileformat.info/info/unicode/index.htm or here: https://en.m.wikipedia.org/wiki/List_of_Unicode_characters Then use it in a print statement, by giving its number, like this: https://code.sololearn.com/c38hmKFESSf2/?ref=app https://code.sololearn.com/cT10yuI5ZQiB/?ref=app Browsing block by block can also be helpful: https://code.sololearn.com/csTae6tX7D4l/?ref=app
14th Jun 2020, 7:12 AM
Kuba Siekierzyński
Kuba Siekierzyński - avatar
+ 2
You have to type print ("\U0001F600")
14th Jun 2020, 6:37 AM
Vishnu
Vishnu - avatar
+ 2
   https://unicode.org/emoji/charts/full-emoji-list.html#1f4a9  This is the website for the values of emojis . You can use this for python . Instead of the '+' sign, replace it with 000. You can also use the emoji module in python. pip install emoji print (emoji.emojize(:+1,True))
14th Jun 2020, 6:40 AM
Vishnu
Vishnu - avatar
+ 2
# grinning face print("\N{grinning face}")    # slightly smiling face print("\N{slightly smiling face}")    # winking face print("\N{winking face}") This are the codes to show some emoji in python. Thank frnds
15th Jun 2020, 6:27 PM
SHIVAM KUMAR
SHIVAM KUMAR - avatar
+ 2
You can insert more emoji by using the codes but it is important to remember the emoji name and put there name with the codes......Some examples of codes are in my above answer
15th Jun 2020, 6:32 PM
SHIVAM KUMAR
SHIVAM KUMAR - avatar
0
14th Jun 2020, 6:26 AM
Natasha Sing
Natasha Sing - avatar
0
in what?
15th Jun 2020, 9:56 PM
Edstech dua
Edstech dua - avatar