How To Use Emoji in Output?

Below is a simple code that shows how to use the emoji library to display emojis in the output.

Python3




import emoji
print(emoji.emojize(":grinning_face_with_big_eyes:")," ","Hi Geek!")


Output:

 


How to Install Python Emojis module on MacOS?

Today, everyone uses social media and messaging apps like Facebook, Instagram, and Whatsapp, and every app has emojis that we can use to share our moods and enhance our boring messages. Now, the same gem can also be used in our Python programs for enhancing our output. In this article, we will see an easy way to install Emoji modules on macOS. Let’s look at the installation of the Python emojis module by both pip and conda.

Pre Requisites

Below is some recommended thing that you should have for installing the Emoji module on macOS are:

  • Python
  • PIP or Conda (Depending upon user preference)

Similar Reads

Installing Emoji Module on MacOS

Method 1: Installation with the help of PIP...

How To Use Emoji in Output?

Below is a simple code that shows how to use the emoji library to display emojis in the output....