I would need to generate all non-alphabetic characters, punctuation, spaces, weird characters etc. Are they all those that appear in the ascii code or are there others? In python I should simply do:
''.join(map(lambda i: chr(i), range(255)))
I would need to generate all non-alphabetic characters, punctuation, spaces, weird characters etc. Are they all those that appear in the ascii code or are there others? In python I should simply do:
''.join(map(lambda i: chr(i), range(255)))
For an example of a non–ASCII non–alphabetic character, here it is the Ethiopic paragraph separator: ፨ — btw, there are three other different non–ascii non–alphabetic characters in this paragraph…
So no, the ASCII character set doesn't comprise every non–alphabetic character.