I am trying to process instructions from a web page, but special characters are encoded.
Here is an example:
command=setkey
page=1
key=D
value=N%6eE8qiCZ\r
this is received as
"command=setkey&page=1&key=D&value=N%256eE8qiCZ%5Cr"
"%" is converted to "%25", "\" becomes "%5C".
Is there easy way to return "N%256eE8qiCZ%5Cr" to "N%6eE8qiCZ\r" ?