Suppose we have a string that looks like this:
fake_bytes = "b'This is a check - \xe2\x9c\x94\xef\xb8\x8f'"
So this fake_bytes
string is a text that is encoded in bytes and visually converted to string (without decoding the bytes).
The question is how to convert fake_bytes
again to bytes without encoding its contents again to get something like that:
real_bytes = b'This is a check - \xe2\x9c\x94\xef\xb8\x8f'
The real_bytes
is bytes with the same contents as a string and can be decoded to the original text later:
>>> real_bytes.decode()
check ✔️