What is "=C2=A0" in MIME encoded, quoted-printable text?

Posted by TheSoftwareJedi on Stack Overflow See other posts from Stack Overflow or by TheSoftwareJedi
Published on 2010-05-05T15:15:37Z Indexed on 2010/05/05 15:18 UTC
Read the original article Hit count: 264

Filed under:
|
|

This is an example raw email I am trying to parse:

MIME-version: 1.0
Content-type: text/html; charset=UTF-8
Content-transfer-encoding: quoted-printable
X-Mailer: Verizon Webmail
X-Originating-IP: [x.x.x.x]

=C2=A0test testing testing 123

What is =C2=A0? I have tried a half dozen quoted-printable parsers, but none handle this correctly. Honestly, for now, I'm coding:

//TODO WTF
encoded = encoded.Replace("=C2=A0", "");

Because I can't figure out why that text is there randomly within the MIME content, and isn't supposed to be rendered into anything. By just removing it, I'm getting the desired effect - but WHY?!

© Stack Overflow or respective owner

Related posts about mime

Related posts about quoted-printable