Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Does the character 96 HEX have any special meaning in internet protocols/formats?

sorry for the vague subject, the issue is such:

I create an event with invitees in google calendar; on the receiving side an email arrives as multipart, which, in its text/html block, has the following text (quoted-prinatble encoded)

Wed Jun 9 1pm =96 2p=
m

I googled for the =96 and can't find anything. (the charset or this block is windows-1252, BTW)

thanks a lot!

like image 218
davka Avatar asked Jun 09 '10 11:06

davka


2 Answers

The Windows-1252 character set shows that the value 0096 is sometimes used as a representation of Unicode 2013, an "en dash". For some reason the table on that Wikipedia page doesn't show 0096 in hex, but does show 150 in decimal for that character.

like image 105
Greg Hewgill Avatar answered Nov 15 '22 23:11

Greg Hewgill


It doesn't have any special meaning, but it has to be escaped when using quoted-printable.

The quoted-printable encoding uses 7-bit characters as medium, so any character above 7F has to be escaped.

like image 1
Guffa Avatar answered Nov 15 '22 21:11

Guffa