Skip to main content
1 of 2
Gareth
  • 5.1k
  • 1
  • 20
  • 14

By default, older versions of IE (<=8) will submit form data in Latin-1 encoding if possible. By including a character that can't be expressed in Latin-1, IE is forced to use UTF-8 encoding for its form submissions, which simplifies various backend processes, for example database persistance.

If the parameter was instead utf=true then this wouldn't trigger the UTF-8 encoding in these browsers.

Gareth
  • 5.1k
  • 1
  • 20
  • 14