Path: csiph.com!v102.xanadu-bbs.net!xanadu-bbs.net!usenet.blueworldhosting.com!feeder01.blueworldhosting.com!feeder.erje.net!eu.feeder.erje.net!newsfeed.xs4all.nl!newsfeed1a.news.xs4all.nl!xs4all!newsgate.cistron.nl!newsgate.news.xs4all.nl!post.news.xs4all.nl!not-for-mail Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.004 X-Spam-Evidence: '*H*': 0.99; '*S*': 0.00; 'output': 0.05; 'subject:How': 0.10; 'python': 0.11; 'codecs': 0.16; 'from:addr:mrabarnett.plus.com': 0.16; 'from:addr:python': 0.16; 'from:name:mrab': 0.16; 'message-id:@mrabarnett.plus.com': 0.16; 'received:192.168.1.4': 0.16; 'received:84.93': 0.16; 'received:84.93.230': 0.16; 'skip:< 20': 0.16; 'sys.stdout': 0.16; 'url:ch': 0.16; 'win7': 0.16; 'wrote:': 0.18; '>>>': 0.22; 'import': 0.22; 'header:User-Agent:1': 0.23; 'tells': 0.24; 'this:': 0.26; 'header:In-Reply-To:1': 0.27; 'character': 0.29; 'skip:g 30': 0.30; 'display': 0.35; 'received:84': 0.35; 'but': 0.35; 'subject:?': 0.36; 'operating': 0.37; 'to:addr:python-list': 0.38; 'to:addr:python.org': 0.39; 'skip:p 20': 0.39; 'how': 0.40; 'tell': 0.60; 'length': 0.61; 'chinese': 0.74; 'power': 0.76 X-CM-Score: 0.00 X-CNFS-Analysis: v=2.1 cv=AOmsRbYa c=1 sm=1 tr=0 a=0nF1XD0wxitMEM03M9B4ZQ==:117 a=0nF1XD0wxitMEM03M9B4ZQ==:17 a=0Bzu9jTXAAAA:8 a=tLkI8qN_j18A:10 a=vcDgP5y3V14A:10 a=ihvODaAuJD4A:10 a=IkcTkHD0fZMA:10 a=EBOSESyhAAAA:8 a=ZbmlBicUAAAA:8 a=PiQFv8JHVYxsAezwwDcA:9 a=QEXdDO2ut3YA:10 X-AUTH: mrabarnett:2500 Date: Thu, 10 Apr 2014 03:27:45 +0100 From: MRAB User-Agent: Mozilla/5.0 (Windows NT 6.3; WOW64; rv:24.0) Gecko/20100101 Thunderbird/24.4.0 MIME-Version: 1.0 To: python-list@python.org Subject: Re: How to display chinese character in 65001 in pytohn? References: In-Reply-To: Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Newsgroups: comp.lang.python Message-ID: Lines: 23 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1397096867 news.xs4all.nl 2841 [2001:888:2000:d::a6]:55256 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:69999 On 2014-04-10 02:54, length power wrote: > I am in win7 +python3.3. > > import os > os.system("chcp 936") > fh=open("test.ch ","w",encoding="utf-8") > fh.write("你") > fh.close() > os.system("chcp 65001") > fh=open("test.ch ","r",encoding="utf-8").read() > print(fh) > Äã > >>> print(fh.encode("utf-8")) > b'\xe4\xbd\xa0' > > How can i display the chinese character `你` in 65001? > The "chcp 65001" tells the operating system to use UTF-8, but you also have to tell Python to output UTF-8. Try this: from codecs import getwriter sys.stdout = getwriter('utf-8')(sys.stdout.detach())