> hier die Rückübersetzung des Teststrings:  "ABCäöü߀𝄞”:

>  ABCäöü߀턞
> 
>  sequence of <index>data:
>  Ã Ä Å ŧ Ź ſ Ţ 2į dơ 

Das letzte Zeichen (𝄞, Violinschlüssel) ist eindeutig falsch rückübersetzt (턞):

import unicodedata as ucd
s = "𝄞턞"
for z in s:
    z, ord(z), ucd.name(z)

('𝄞', 119070, 'MUSICAL SYMBOL G CLEF')
('턞', 53534, 'HANGUL SYLLABLE TYAELM')


WB
_______________________________________________
python-de Mailingliste -- python-de@python.org
Zur Abmeldung von dieser Mailingliste senden Sie eine Nachricht an 
python-de-le...@python.org
https://mail.python.org/mailman3/lists/python-de.python.org/
Mitgliedsadresse: arch...@mail-archive.com

Reply via email to