I\'m currently trying to place a URL within a URL. For example:
http://example.com/url/http%3A%2F%2Fwww.url2.com
I\'m aware that I have to
Replace %2F with %252F at the client side.
%2F
%252F
This is the double-encoded form of the forward slash.
So when it reaches the server and gets prematurely decoded it will decode it to %2F which is exactly what you want.