The software URLEnDecode helps to encode and decode strings that are passed through URLs, replacing reserved characters with a 2 digit hex equivalent preceded by the percentage symbol. This process is called percent-encoding to ensure proper URL communication.

When passing information via a URL, only specific allowed characters can be used, and other characters should be encoded to ensure they are passed correctly. The software accomplishes this by replacing reserved (unsafe) characters with a % symbol followed by the 2 digit hex equivalent. This process is known as percent-encoding.
URLEnDecode provides two options for encoding spaces. The String Type option encodes spaces using a plus (+) symbol, while the URL Type option encodes spaces using %20. This flexibility allows users to choose the encoding method that best suits their needs.
Overall, URLEnDecode is a useful tool for encoding and decoding Strings. Its ease of use and flexibility make it an ideal choice for anyone needing to accurately pass information through URLs.
Version 1.0: Rewritten, Windows and MacOSX Version, Help File now available from Download Page.