If you're just wanting to shut the request up and aren't actually trying to display a certain favicon you can do:
<link rel=icon href=data:>
With the bonus you've probably already remembered how to reconstruct this on demand just by reading this comment. It is "invalid" data but so is your example on Safari and Firefox instead of Chromium based browsers. It doesn't matter as much because that problem is local and silent in the logs, unlike the request.
Thanks! I’m pretty sure I tried this ages ago and it didn’t work at the time, but I tried this again now and it does the job.
The key is to keep up through "data:" since any shorter (even just dropping the ":") and it gets treated a relative link instead.