I need list containing all the printable characters. I’ve already tried with ASCII but there aren’t any accented characters.
Do you how can I find one for Python.
Thanks
I need list containing all the printable characters. I’ve already tried with ASCII but there aren’t any accented characters.
Do you how can I find one for Python.
Thanks
Like this you can get 1,114,112 different characters. If you're looking for common accented letters you will find the in the first few hundred elements of this list.
characters = [chr(i) for i in range(1114112)]
[...,
'ϗ',
'Ϙ',
'ϙ',
'Ϛ',
'ϛ',
'Ϝ',
'ϝ',
'Ϟ',
'ϟ',
'Ϡ',
'ϡ',
'Ϣ',
'ϣ',
'Ϥ',
'ϥ',
'Ϧ',
'ϧ',
...]