I have an oracle database which is encoded to US-ASCII because when I run the command print db.encoding, US-ASCII is the response.
My problem is that I have some special characters in the database like "ç" and "ã" and when I make some queries, these special characters are returned as question marks (?).
I need to encode the data as UTF-8 but I don't know how. I've already used methods like encode() and unicode() but nothing works.
Can anyone help me please?
Thanks.