So, I have a string that looks like this:
'\xfa\x7f\xe5<\xcf\xda\xf0v\xf1\x94\xd8q7w,\x1d\x1d\x9eU\xf6O\x9fnW~\xf0\xdd\xad\xd2\xf7\x13\nA\xbb\xda\xa2rge\xb02_3\xcb\x81\x03\xcb \x1c\x86\xbb\n\x04r\xcdCKQ\x9ew\xe7\xf1{\x08'
and I want to turn it into the bytes object that is the same but as bytes:
b'\xfa\x7f\xe5<\xcf\xda\xf0v\xf1\x94\xd8q7w,\x1d\x1d\x9eU\xf6O\x9fnW~\xf0\xdd\xad\xd2\xf7\x13\nA\xbb\xda\xa2rge\xb02_3\xcb\x81\x03\xcb \x1c\x86\xbb\n\x04r\xcdCKQ\x9ew\xe7\xf1{\x08'
but if I try to print the original string I get:
úå<ÏÚðvñ”Øq7w,žUöOŸnW~ðÝÒ÷
A»Ú¢rge°2_3ËË †»
rÍCKQžwçñ{
And I can't seem to find a way to keep the original string unaltered.