Is there a reserved query string character that is commonly used to ignore sections of a string? Something like that:
?foo=bar&baz=quux*some character*&sky=blue
If adding a character results in this query string ignoring the end:
?foo=bar&baz=quux
I know that it is usually for programs analyzing the query string to decide how something is processed, but I wanted to know if something like this exists, just like the + symbol denotes space.
source share