I've got a string which looks like this, made up of normal characters and one single escaped Unicode character in the middle:
reb\u016bke
I want to have Python convert the whole string to the normal Unicode version, which should be rebūke. I've tried using str.encode(), but it doesn't seem to do very much, and apparently decode doesn't exist anymore? I'm really stuck!
EDIT: Output from repr is reb\\\u016bke
0ork? Possibly it is just the console that show you the\unotation (so check how to have UTF-8 console, there are many questions here). Else the question is legit (unescaping a string)print(repr(your_variable_here))