Context: I'm trying to convert characters like these:
To normal python strings (speedy, building, tuesday, etc) and save them into a new dataframe to be exported into a new excel file. For example, the charcter (U+1D552) should be converted to a (U+00AA). I'm reading each string from an excel file using read_excel
. Should I do some type of encoding = "utf-8"? on the read_excel function? Or is there a way using re
to replace those characters? Or even encode("ascii").decode(utf-8)?
Thank you in advance