I am reading an xml file from Git and using it as as request to rest.
I am getting error Illegal character '0xa0' at offset .....
I tried to replace the characters using replaceAll("[\x00-\x09\x11\x12\x14-\x1F\x7F]", "") before sending the request. But still same error.
What exact character '0xa0' is and do i need to remove or encode it?