Skip to main content


Python - Create Fancy Characters using Unicode

We will create Fancy Characters like

( hͪ͟eͤ͟l̍͟͟l̍͟͟oͦ͟  )


Follow the code below:-



 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
>>> x = ["\u035F","h","\u035F","\u036A",
  "e","\u0364","\u035F",
  "l","\u035F","\u030D","\u035F",
  "l","\u035F","\u030D","\u035F",
  "o","\u035F","\u0366"]
   
>>> for i in x:
   print(chr((ord(i))),end='')

   
͟hͪ͟eͤ͟l̍͟͟l̍͟͟oͦ͟

Refer:- http://www.technology.heartland.edu/courses/Computer%20Science/Programming/character_codes/unicode.html

Refer:- https://youtu.be/Iv-KRNfHG-U


🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍🐍

Popular Posts

Python underline string, Python underline text, Underline python print

Python pip - Installing modules from IDLE (Pyton GUI) for python 3.7

Top 40 Python - String Processing in Python | Working with String in Python

Top 11 Essential Python Tips and Tricks

Python Program - When was I born? / Date of Birth / MY BIRTHDAY (using Python3+)





Subscribe to our Channel


Follow us on Facebook Page

Join our python facebook groups



Join us on Telegram