I have a finatra server, in the response string there are currency symbols. which looks fine in the server but in the browser I get £5.25 instead of £5.25
any advice on how to fix this issue? recommended url encoder?
thanks, Dana
I have a finatra server, in the response string there are currency symbols. which looks fine in the server but in the browser I get £5.25 instead of £5.25
any advice on how to fix this issue? recommended url encoder?
thanks, Dana
just needed to add encoder to the header so the browser will know which encoder to use :)
response.contentType("text/javascript; charset=utf-8")