PHP - stop character encording auto-convertion
        Posted  
        
            by Qiao
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by Qiao
        
        
        
        Published on 2010-04-20T07:04:02Z
        Indexed on 
            2010/04/20
            7:13 UTC
        
        
        Read the original article
        Hit count: 319
        
In html source
\xE6\x82\xA0
result is "\xE6\x82\xA0"  
but in php
<?php echo "\xE6\x82\xA0"; ?>
result is "?" (character for \xE6\x82\xA0 )
what can be done to make php echo \xE6\x82\xA0?
© Stack Overflow or respective owner