how to remove 'FFFD' character

2009-01-09 Thread webcomm
Does anyone know a way to remove the 'FFFD' character with python? You can see the browser output I'm dealing with here: http://webcomm.webfactional.com/htdocs/fffd.JPG I deleted a big chunk out of the middle of that JPG to protect sensitive data. I don't know what the character encoding of this

Re: how to remove 'FFFD' character

2009-01-09 Thread Carsten Haese
webcomm wrote: > I don't know what the character encoding of this data is and don't > know what the 'FFFD' represents. The codepoint 0xFFFD is the so-called 'REPLACEMENT CHARACTER'. It is used replace an incoming character whose value is unknown or unrepresentable in Unicode. The browser might dis