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 3232344
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 17, 20262026-05-17T17:09:00+00:00 2026-05-17T17:09:00+00:00

maybe this is a noob question, but I’m receiving some data over TCP and

  • 0

maybe this is a noob question, but I’m receiving some data over TCP and when I look at the string I get the following:

\x00\r\xeb\x00\x00\x00\x00\x01t\x00

What is that \r character, and what does the t in \x01t mean?

I’ve tried Googling, but I’m not sure what to Google for…

thanks.

  • 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-05-17T17:09:00+00:00Added an answer on May 17, 2026 at 5:09 pm

    Viewing binary data in strings can sometimes be confusing, especially if they’re long, but you can always convert it to some easier-to-read hex.

    >>> data = '\x00\r\xeb\x00\x00\x00\x00\x01t\x00'
    >>> ' '.join(["%02X" % ord(char) for char in data])
    '00 0D EB 00 00 00 00 01 74 00'
    

    Also, if you’re just parsing the byte string into fields, just ignore the string and just go right to unpacking it with the struct module:

    >>> import struct
    >>> length, command, eggs, spam = struct.unpack('!BBi4s',data)
    >>> #...whatever your fields really are
    >>> print "len: %i\ncmd: %i\negg qty: %i\nspam flavor: '%s'" % (
    ...     length, command, eggs, spam)
    len: 0
    cmd: 13
    egg qty: -352321536
    spam flavor: ' ☺t '
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

This maybe a noob question but please help me. I found a library called
i am new to WPF so maybe this will be noob question but i
Ok, noob question maybe but I am having trouble finding information about this stuff.
Maybe this is a poor question, but, I can't find a tutorial or even
Maybe this is a dumb question, but do event listeners use CPU cycles like
Maybe this question has been asked many times before, but I never found a
Maybe this is a silly question, but I'm working on a project that wants
Hi Sorry for this noob question but here goes...i have a working slidetoggle on
This sounds like a noob question for me but I need to ask it.
It may be a noob question but is this something to do with my

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.