I have below HTML form...If I put characters like ! or ^ or £ in the password text box, my server gets different characters including %...How it is possible to get "exactly" same characters for password in my server...
if I entered password as abc!£^hg^! , my server gets password as abc%21%C2%A3%5Ehg%5E%21
<form autocomplete="off" method="POST" accept-charset="utf-8">
<div>
<label>Name:</label>
<input type="text" name="name"/>
</div>
<div>
<label>Password:</label>
<input type="password" name="password"/>
</div>
<div>
<input type="submit" value="Login"/>
</div>
</form>