Fonction chr () en python
print("Unicode character of integer 65 is", chr(65))
print("Unicode character of integer 8364 is", chr(8364))
# Print Alphabets using Unicode
for i in range(65, 65+26):
print(chr(i), end = " , ")
Gorgeous Gazelle