We will create Fancy Characters like
( hͪ͟eͤ͟l̍͟͟l̍͟͟oͦ͟ )
Follow the code below:-
Refer:- http://www.technology.heartland.edu/courses/Computer%20Science/Programming/character_codes/unicode.html
Refer:- https://youtu.be/Iv-KRNfHG-U
( 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