Yeah, I know that’s a multi-byte quote character. The bug is with multi-byte characters at the start of a line. Try:
$ echo ø | LANG=en_US.UTF-8 sed -e 's/^/o/g'
sed: RE error: illegal byte sequence
Sed processes the same character correctly in other very similar regexes:
$ echo ø | LANG=en_US.UTF-8 sed -e 's/ø/o/g'
o
Topic:
App & System Services
SubTopic:
Core OS
Tags: