I'm fetching this page with with this request library in Node.JS, and parsing the body using cheerio.
Calling $.html() on the parsed response body reveals that the title attribute for the page is:
<title>Le Relais de l'Entrec?te</title>
... when it should be:
<title>Le Relais de l'Entrecôte</title>
I've tried setting the options for the request library to include encoding: 'utf8', but that didn't seem to change anything.
How do I preserve these characters?