Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8754907
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T13:44:08+00:00 2026-06-13T13:44:08+00:00

So basically I am still pretty new to Python and I have a problem

  • 0

So basically I am still pretty new to Python and I have a problem where I have a document in Japanese that I am trying to convert to a utf-8 encoded document. I don’t really know what I should be getting in return when I do this. When i run the program I currently have, it just deletes everything and leaves me with a blank utf-8 encoded document. Here is what I have, any help is greatly appreciated.

EDIT: I’m sorry it was a typo, I fixed the original encoding. It is Shift-jis.

import codecs

codecs.open("rshmn10j.txt", 'r', encoding='shift-jis')

newfile = codecs.open("rshmn10j.txt", 'w', encoding='utf-8')
newfile.write(u'\ufeff')
newfile.close()
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-13T13:44:09+00:00Added an answer on June 13, 2026 at 1:44 pm

    if you’re trying to convert a document from encoding “x” to encoding “utf8”, you first have to read the document using the encoding it is encoded in.

    import codecs
    
    original_document_encoding = "shift-jis" # common japanese encoding.
    with codecs.open("rshmn10j.txt", 'r', encoding=original_document_encoding) as in_f:
        unicode_content = in_f.read()
    
    with codecs.open("rshmn10j.out.txt", 'w', encoding='utf-8') as out_f:
        out_f.write(unicode_content)
    

    with is used here to auto-close the file when the block is exited.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm stuck on this and have been all day.. I'm still pretty new to
I have been programming C for a while (but still pretty new to C)
I'm pretty new to arrays still. I need some help - I have some
I'm still yet to find a decent solution to my scenario. Basically I have
Basically, I have a UIImageView that will loop through 8 PNGs over 0.5 seconds.
Alright I'm pretty new to programming and stuff and I'm now trying to code
this is pretty frustrating... basically i'm creating a menubar on a site, and have
I'm still pretty new to Objective-C coding (as evidenced by this question) and I
I have a minor problem where my (new) computer tends to completely freeze up.
I'm still pretty new to java and I'm VERY new to exporting .jar files.

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.