You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The result is:
b'Wikipedia ist ein Projekt zum Aufbau einer Enzyklop\xef\xbe\x83\xef\xbd\xa4die aus freien Inhalten in \xef\xbe\x83\xef\xbd\xbcber 270 Sprachen, zu dem du mit deinem Wissen beitragen kannst.'
This should be "Enzyklopädie" and "in über 270 Sprache".
Trying to decode with utf-8, this gives:
'Wikipedia ist ein Projekt zum Aufbau einer Enzyklopテ、die aus freien Inhalten in テシber 270 Sprachen, zu dem du mit deinem Wissen beitragen kannst.'
This does the trick: decode with utf-8, encode with shift-jis, and then decode with utf-8 again:
data.decode("utf-8").encode("shift-jis").decode("utf-8")
'Wikipedia ist ein Projekt zum Aufbau einer Enzyklopädie aus freien Inhalten in über 270 Sprachen, zu dem du mit deinem Wissen beitragen kannst.'
I thought I'll add this as an issue to help others.
The text was updated successfully, but these errors were encountered:
The zbar library obviously has problems with data containing non-ascii symbols, eg. german umlauts (ä ö ü).
I tried to decode the longer text from the QR-Code at https://de.wikipedia.org/wiki/QR-Code.
The result is:
b'Wikipedia ist ein Projekt zum Aufbau einer Enzyklop\xef\xbe\x83\xef\xbd\xa4die aus freien Inhalten in \xef\xbe\x83\xef\xbd\xbcber 270 Sprachen, zu dem du mit deinem Wissen beitragen kannst.'
This should be "Enzyklopädie" and "in über 270 Sprache".
Trying to decode with utf-8, this gives:
'Wikipedia ist ein Projekt zum Aufbau einer Enzyklopテ、die aus freien Inhalten in テシber 270 Sprachen, zu dem du mit deinem Wissen beitragen kannst.'
This does the trick: decode with utf-8, encode with shift-jis, and then decode with utf-8 again:
I thought I'll add this as an issue to help others.
The text was updated successfully, but these errors were encountered: