Json to CSV special unit symbol conversion issue

I am executing a script which is converting table to json script and then further into csv. During this process the Json contains degree Celsius in \xb0c format and upon csv download it comes as ° C.

You’re going to have to give us more information, eg your code, in order for us to know what you're doing to be able to help

2 Likes

Without code I'm going to call my shot and say that you need to use the u prefix to designate your string literals as unicode text rather than ASCII, because Python 2.

But yeah, share your code.

1 Like