…
URL Query String Decoder Tool is a Free SEO Tool allows to Decode a query string parameters that has been url encoded. This is useful when you want to view and understand the special characters in a URL parameter.
This is a simple tool that will help you decode text that can be safely put into URL query string values known as GET variables into readable text. URL encoded text is most commonly used in web addresses for passing URLs in querystring variables.
Encodes or decodes a string so that it conforms to the the Uniform Resource Locators Specification - URL (RFC 1738).
Decodes any %## encoding in the given string. Plus symbols ('+') are decoded to a space character.
This is a simple tool that will help you decode a URL that can be safely used for links. URL decoding replaces characters with a "%" followed by two hexadecimal digits to the respective ASCII letter.
Decodes any %## encoding in the given string. Plus symbols ('+') are decoded to a space character.
The conversion process is the reverse of that used by the URLEncoder. It is assumed that all characters in the encoded string are one of the following: "a" through "z", "A" through "Z", "0" through "9", and "-", "_", ".", and "*". The character "%" is allowed but is interpreted as the start of a special escaped sequence.
It is easier to change the specification to fit the program than vice versa.
…