I have found that the following thread provides an extremely useful way to create permalinks or to pass string values via a URL:
Unfortunately, if you wanted to pass the string "test string", for example, to a specific <div>
via the URL and display it as simple text, the above thread doesn't seem to decode white space if your URL looks like this:
http://www.abc123.org/subpage.html?test%20string
The code will simply take anything in the URL passed the "?" and it will appear as "simple%20text".
Is there a simple way to do something similar to the Thread's accepted answer so that all %20 can be replaced with white space? Thanks!