The upper string is typed by me while the bottom string is pulled from a database.
bytes('TOYOTA', 'utf-8')
>> b'TOYOTA'
bytes('ΤΟΥΟΤΑ', 'utf-8')
>> b'\xce\xa4\xce\x9f\xce\xa5\xce\x9f\xce\xa4\xce\x91'
This causes undesirable results when I want to check for its existence
'TOYOTA' == 'ΤΟΥΟΤΑ'
>> False
Any idea how to "fix" the incorrect string?