I have the following json:
{"Rotações": "string"}
And this python script with the corresponding result:
import json
with open('apaga.json') as jsonin:
    jsondict = json.load(jsonin)
print(jsondict)
> {'Rotações': 'string'}
So I don't know how to call this Rotações key, since it corresponds to Rotações. 
The following does not work:
print(jsondict['Rotações'.encode('latin')])
> KeyError: b'Rota\xe7\xf5es'
