I came across the inbuilt python function chr() which number input and displays the unicode character(opposite of ord() ). I ran a loop from 0 to 300 to check the unicode characters and I for a lot of numbers the returned characters are the same ( question mark in a box ). For the 0th character it is question mark enclosed in a diamond. Can anyone explain me the reason some characters are repeating while some are missing all together. P.S. : I used google colab notebook for the coding. I am attaching a picture of my code for code: reference.
I tried this code:
#using chr()
for i in range(0,300):
print(i, ":",chr(i))