Hi!<br><br>say I wanna use "—" as new infix operator: it's the big dash used a bit like parenthesis, especially at the end of sentences —like this.<br><br>in ghci directly:<br>Prelude> let (—) a b = a + b<br><br>No problem, is accepted and usable. Same in files.<br><br>Now I try using (»), a French (amongst others) punctuation sign, typically replaces the quote-ends, « like this ».<br>Doesn't work:<br><interactive>:2:6: lexical error at character '\187'<br><br>I thought Haskell was Unicode-friendly? Why some symbols but not others? :'(