I have a string "aklU@^" as a password retrieved from database. The string is showing a different value as "aklU@^" on the web page.
It is basically because "U" is the HTML ASCII code of the upper case letter "U".
Is there anyway I can skip the convertion, and display the string as "aklU@^"? Thanks.
Not sure if it matters, I'm coding in C#.