1.0

It's accustomed to decode the Escaped-encoding URL.
Escaped-encoding, is the conventional of representing letters inside a URI that might require unique composition handling to become properly interpreted. It utilizes a sequence of 3 letters to encode the character to become interpreted. For instance, the US-ASCII character arranged represents a space with octet code 32, or hexadecimal 20. This triplet sequence is made of the percentage character ?%? followed through the 2 hexadecimal digits representing the octet code from the authentic character. This transformation might be credited towards the placement from the character or escape-encrypted sequence inside the URI. Therefore its URL-encrypted representation is %20.
software might instantly escape reserved and unreserved letters, if there's possible for it to become incorrectly interpreted through the remote program. The RFC for URI encoding recommends that care ought to be used not to escape or un-escape exactly the same string a lot more than as soon as, because un-escaping an currently un-escaped string may cause misinterpreting a % information character as one more escaped character, or vice versa within the situation of escaping an currently escaped string.
SPACE %20
< %3C
% %25
# %23
> %3E
%7C
} %7D
{ %7B
~ %7E
%5E
%5C
` %60
] %5D
[ %5B
,> ; %3B
@ %40
: %3A
? %3F
= %3D
& %26
helpful Character Escape Code:
$ %24. For instance, "%7e" is occasionally utilized rather than "~" in an http URL route, however the 2 are equivalent for an http URL.
simply because the % "%" character usually has the reserved objective of becoming the escape indicator, it should be escaped as "%25" so that you can be utilized as information inside a URI.