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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T10:37:03+00:00 2026-05-20T10:37:03+00:00

I have a string that represents a byte string s = \x00af; I write

  • 0

I have a string that represents a byte

string s = "\x00af";

I write this string to a file so the file contains the literal “\x00af” and not the byte it represents, later I read this string from the file, how can I now treat this string as byte again (and not the literal)?

Here is a sample code:

public static void StringAndBytes()
{
    string s = "\x00af";
    byte[] b = Encoding.ASCII.GetBytes(s);

    // Length would be 1
    Console.WriteLine(b.Length);

    // Write this to a file as literal
    StreamWriter sw = new StreamWriter("c:\\temp\\MyTry.txt");
    sw.WriteLine("\\x00af");
    sw.Close();

    // Read it from the file
    StreamReader sr = new StreamReader("c:\\temp\\MyTry.txt");
    s = sr.ReadLine();
    sr.Close();

    // Get the bytes and Length would be 6, as it treat the string as string
    // and not the byte it represents
    b = Encoding.ASCII.GetBytes(s);
    Console.WriteLine(b.Length);
}

Any idea on how I convert the string from being a text to the string representing a byte? Thx!

  • 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-20T10:37:03+00:00Added an answer on May 20, 2026 at 10:37 am

    Is it a requirement for the file content to have the string literal? If no, then you might want to write the byte[] b array directly to the file. That way when you read it, it is exactly, what you wrote.

    byte[] b = Encoding.UTF32.GetBytes(s);
    File.WriteAllBytes ("c:\\temp\\MyTry.txt", b);
    
    b = File.ReadAllBytes ("c:\\temp\\MyTry.txt");
    s = Encoding.UTF32.GetString (b);
    

    If you need the file content to have the string literal, while being able to convert it to the original text written, you will have to choose the right encoding. I believe UTF32 to be the best.

        b = new byte[4];
        b[0] = Byte.Parse(s.Substring(2), System.Globalization.NumberStyles.AllowHexSpecifier);
        string v = Encoding.UTF32.GetString(b);
        string w = "\x00af";
    
        if (v != w)
            MessageBox.Show("Diff [" + w + "] = [" + v + "] ");
        else
            MessageBox.Show("Same");
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a string that represents a list: [22, 33, 36, 41, 46, 49,
I have a string that represents an HTML block. All the unicode characters are
Say we have a struct that it's data is provided by un-managed byte array
Ok, this is what I have. I have a 1d bitmap (or bitarray, bitset,
I am trying to convert a GUID C++ structure into a string representation of
this is quite hard to explain out of context but i am going to
I have some opaque bytes which I want to use in an std::map ,
I'm trying to find a way to store my data with fast access (better
I am having my data saved in my database as Longblob and while saving

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.