Too much ©

In Internet Explorer 11 the code open("?a=b&copy=c") opens the url ?a=b©=c instead. Unfortunately, at the time of me writing this, IE11 is still supported by Microsoft.

Easiest workaround is to URL encode the c or something: open("?a=b&%63opy=c")

Related discussion