1

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

Dana Klein
  • 159
  • 1
  • 12

1 Answers1

0

just needed to add encoder to the header so the browser will know which encoder to use :)

response.contentType("text/javascript; charset=utf-8")

Dana Klein
  • 159
  • 1
  • 12