How to decode unicode string
I have this string which i want to decode:
“u00d0u00a1u00d1u0080u00d0u00b5u00d0u00b4u00d0u00bdu00d0u00b8u00d0u00b9 u00d1u0087u00d0u00b5u00d0u00ba 2000u00c2u00e2u0082u00bd”.
How can i do that in python?
Result should be following: Средний чек 2000₽.I know that if i use print it should give me the result i need, but i want to store the decoded value in another variable, so that does not work.I tried using encode and decode functions, but that did not work.