I have a Spring Application on the server side.
When I hit the following url:
http://127.0.0.1:8080/processToken?token=Akカ
On the server side the token is interpreted as
Akã«
What type of Encoding should I follow so that is interpreted correctly and also should where exactly should the encoding be done?
I tried this in POSTMAN with the Header attribute set as the following:
Content-type: text/plain;charset=UTF-8
However, it is still producing the same result.