I have an input textbox and I fill with umlauted characters
ööö
When I do a
document.getElementByID("myinputtextbox").value;
to send to a webservice
those ööö comes out as %F6%F6%F6
...
what encoding is that? How can I get my umlauted letters back?
When I fill the input text box with other language characters (japanese, korean) it comes back ok
ie:
???/??? turns into %uD55C%uAD6D%uC5B4/%uC870%uC120%uB9D0
which my webservice can understand
ööö
When I do a
document.getElementByID("myinputtextbox").value;
to send to a webservice
those ööö comes out as %F6%F6%F6
...
what encoding is that? How can I get my umlauted letters back?
When I fill the input text box with other language characters (japanese, korean) it comes back ok
ie:
???/??? turns into %uD55C%uAD6D%uC5B4/%uC870%uC120%uB9D0
which my webservice can understand