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

  • SEARCH
  • Home
  • 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 8835915
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T09:22:17+00:00 2026-06-14T09:22:17+00:00

I want to open some data from a bin file import io data=io.open(‘bpsk_2m_b11.rd16′,’rb’).read() print

  • 0

I want to open some data from a bin file

import io
data=io.open('bpsk_2m_b11.rd16','rb').read()
print (data)

But there appear to be some ASCII symbols, e.g. (i mean ‘{‘ and ‘k’,’w’ )

b’\xde{\x1d\x86\xa0\x81kw\xbc\x8a’

I’m fine with the whole formating thing but how can I replace those ASCII symbols with hex? Or should I use some other mode to read this file?

  • 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-14T09:22:19+00:00Added an answer on June 14, 2026 at 9:22 am

    Everything is working fine, b'{' is just another way of writing b'\x7b':

    >>> b'{' == b'\x7b'
    True
    

    You can create a character string of only escapes with the following helper method:

    import binascii
    def to_byte_escapes(b):
       return ''.join('\\x' + binascii.hexlify(byte) for byte in b)
    

    Then you’ll get:

    >>> print(to_byte_escapes(b'\xde{\x1d\x86\xa0\x81kw\xbc\x8a'))
    \xde\x7b\x1d\x86\xa0\x81\x6b\x77\xbc\x8a
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Today I needed to parse some data out from an xlsx file (Office open
I want to read some data from a device connected to a COM port.
I read some data from a table and after that I want to edit
Hey guys, I have an application that I want to display some data from
I want to store some data from structures like this: class Project { ChildA
I have the next code to retrieve some data from a xml file. The
I'm trying to write some data to a CSV file from TCL script with
I want to save some data into sqlite database and the read it, there
I need to get some data from X509 certificate. If I open a certificate
A coworker left some data files I want to analyze with Numpy. Each file

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.