Convert Inpage To Unicode !!install!!

# Look up the byte in our mapping if byte in self.mapping: unicode_output.append(self.mapping[byte]) else: # If character is not in map, keep it as is (or substitute) try: unicode_output.append(chr(byte)) except ValueError: unicode_output.append('?') i += 1

Zurück
Oben