Python 2.7 build on Sublime Text 3 doesn't print the '\\uFFFD' character
The problem. I'm using Python 2.7 build on Sublime Text 3 and have an issue with printing out. In some cases I get a pretty confusing output for '\uFFFD' - the 'REPLACEMENT CHARACTER' . For example: print u'\ufffd' # should be '�' - the 'REPLACEMENT CHARACTER' print u'\u0061' # should be 'a' ----------------------------------------------------- [Finished in 0.1s] After inversion of the order: print u'\u0061' print u'\ufffd' ----------------------------------------------------- a � [Finished in 0.1s] So, Sublime can printout the '�' character, but for some reason doesn't do it in the 1st case.