I'm having little hard time to figure out how to replace URL encoded characters to original characters. For example I have this cookie from Coldfusion and it displays:
SESSION_INFO=12345%7C%7C1%7C%7C123%7C%7C10%2E6;
which is 12345||1||123||10.6
Can anyone show me how to convert SESSION_INFO to 12345||1||123||10.6?
SESSION_INFO=12345%7C%7C1%7C%7C123%7C%7C10%2E6;
which is 12345||1||123||10.6
Can anyone show me how to convert SESSION_INFO to 12345||1||123||10.6?