Illyav, thanks for the comments. But to set it straight, curly quotes are actually a completely different character code from a straight quote. I deal with data and character text data in my job, and curly single quotes (aka apostrophes) are:
' = 39
‘ = 145
’ = 146
Double quotes, aka quotation marks:
" = 34
“ = 147
” = 148.
And then there are about a dozen European characters that have diacritical marks: à, á, â, ã, ä, æ, é, etc.
They all have their own crazy code number, and depending on where they are used, they can cause problems.
I've written programs to convert those characters.
So I prefer MR for that route.
