Web scrapping special symbols in csv

why am i getting the special symbols when i open in excel

filename = “android_history.csv”

with open(filename,‘w’,encoding=‘utf-8’) as f:
hdstr = “,”.join(h1)
hdstr+="\n"
print(hdstr)
f.write(hdstr)

for s in tr:
    r1 = ",".join(s)
    r1+="\n"
    f.write(r1) 

hey @Ramu-Rebal-2078248865781508 ,
did you scrapped this data on your own or you have got it like this only from somewhere ?

I hope I’ve cleared your doubt. I ask you to please rate your experience here
Your feedback is very important. It helps us improve our platform and hence provide you
the learning experience you deserve.

On the off chance, you still have some questions or not find the answers satisfactory, you may reopen
the doubt.