Farsi Characters in Python | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 6

Farsi Characters in Python

how to use farsi characters in python console?

19th Oct 2019, 6:54 PM
Deleted
3 Answers
+ 6
Each character has a unicode, you can find Farsi Characters unicode online, for example: print(u"\u06CC") This will output a Farsi Character, for other characters, you just have to replace the number with the desired one.
19th Oct 2019, 6:59 PM
Aymane Boukrouh
Aymane Boukrouh - avatar
+ 6
if you want to use playground to print for you, do not forget to add the following code on top of the file: import sys import codecs sys.stdout = codecs.getwriter('utf_16')(sys.stdout.buffer, 'strict')
19th Oct 2019, 7:08 PM
Lothar
Lothar - avatar
21st Oct 2019, 1:22 PM
Shiyas Shajahan