Encoded URL with square brackets. Different behaviour in Chrome/Firefox/IE
I have a link looking like this (it's a bit ugly because it is URL ) <a href="/items?fc%5B%5D=12345&fc%5B%5D=56789&utf8=%E2%9C%93">foo</a> To be a bit clear, it is URL encoded and translates to <a href="/items?fc[]=12345&fc[]=56789&utf8=✓">foo</a> When the form is submitted, the destination URL looks different in different browsers: In Firefox, it looks like desired: http://mydomain/items?fc[]=12345&fc[]=56789&utf8=✓ In Chrome, the square brackets are shown URL-encoded, (which gives very ugly and non-professional looking addresses when using many of them). http://mydomain/items?fc%5B%5D=12345