How to remove Ascii code from the JTextArea?

My java program gets some weather information from an API. But it has weird letters in the text. Looks like Ascii code.Here is an example: Min temp: 0°C (32°F) which should be: Min temp: 0C (32F) (i think).How can I change it?
 
Back
Top