I have a string that represents a uri escaped string.
I want to convert it to original characters string.
For example:
6B%2FdHJaYVYZ9%2BkbVbNwB%2FmxPXwJhzmfIC8aUWOg%2F2mFCWzyrXaRHFsYLZSVedck3UW3FppuUG0jn2f4JMVUx9Q%3D%3D
is needed to be converted to: (Desired output)
6B/dHJaYVYZ9+kbVbNwB/mxPXwJhzmfIC8aUWOg/2mFCWzyrXaRHFsYLZSVedck3UW3FppuUG0jn2f4JMVUx9Q==
The convertion is written here: http://www.w3schools.com/tags/ref_urlencode.asp
%2F is need to be converted to '/'
%2B is need to be converted to '+'
%3D is need to be converted to '='
and etc.