Hi jkl, > \[u00E2]\[u0080]\[u0093] > > I'm not sure what that's supposed to be, but what I'd like to see is > > \[em]
It's UTF-8 for U+2013, EN DASH, not M for Mike.
$ printf '\xe2\x80\x93' | iconv -f utf-8 -t ucs-2be | hd
00000000 20 13 | .|
00000002
$
Cheers, Ralph.
