Is there any built in way to do this?
rawstr = r"3 \u176? \u177? 0.2\u176? (2\u952?)"
#required str is 3 ° ± 0.2° (2θ).
something like
In [1] rawstr.unescape()?
Out[1]: '3° ± 0.2° 2θ'
The question is how to convert rawstr to 'utf-8'.
Please see my answer for more clarity.
Please answer if better option than what I am doing right now.