Alphaboi867 has a thread title which has one of these things in it, meant to be a possessive: “&”
And any time someone quotes Twitter I invariably get “—.
Do I need to update my character set somewhere in Firefox or Windows? [Vista]
Alphaboi867 has a thread title which has one of these things in it, meant to be a possessive: “&”
And any time someone quotes Twitter I invariably get “—.
Do I need to update my character set somewhere in Firefox or Windows? [Vista]
I don’t thinks it’s a possessive. I think it’s meant to be an ampersand “&”.
have that same substitution when I type in an ampersand on some of my apps on my iPhone.
I see this sometimes on web pages like YouTube where the video title contains an actual ampersand: &
The page with the video will display & instead of the ampersand.
Dennis
For this, you need to tell the application to use Unicode. It probably doesn’t need a new font, just a change in some menu selection. It’ll probably be under “character set” or something similar and the actual selection will be labeled UTF-8.
If it’s Firefox, the menu selection will be View>Text Encoding>Unicode. At least that’s the selection on my version.
That’s the escape for an ampersand in HTML. Somewhere along the line it got double escaped - some level of software escaped the original ampersand to display it HTML, then another escaped the leading ampersand again. Note that it’s escaped in HTML because the ampersand itself is the escape character. Difficult to prevent this sort of thing in all contexts, while assuring that things that need escaped get escaped.
I think your second example is software not knowing it’s looking at two-byte Unicode and trying to print it one byte at a time as ASCII.
And the weird quotes (or apostrophe) is a similar problem with character sets. Most often, it’s caused because someone didn’t use the standard ASCII " or ’ in their message. Usually they composed their message in some word processing program, which tries to ‘help’ them by replacing the standard ASCII quote with curly opening or closing quotes. But those are extended characters, so they aren’t in the standard ASCII character set. So the internet program has to convert the word processing message between character sets, and that is often difficult.