So I know you can separate your parameters in a query string through a couple different characters
(eg. www.example.com?foo=1&bar=2 or www.example.com?foo1;bar=2)
Are there any characters other than ';' and '&' that can be used to separate query parameters? Is it just general coding practice to use ';' or '&' or are there some regulations that list which characters I can use? I know in RFC 3986 the reserved characters include
";" | "/" | "?" | ":" | "@" | "&" | "=" | "+" | "$" | ","
So does this mean that any of these characters can be used to separate query parameters?