Why do I get a different value after turning an integer into ASCII and then back to an integer?

ASCII is only 7-bit - code points above 127 are unsupported. Unsupported characters are converted to ? per the docs on Encoding.ASCII:

The ASCIIEncoding object that is returned by this property might not have the appropriate behavior for your app. It uses replacement fallback to replace each string that it cannot encode and each byte that it cannot decode with a question mark ("?") character.

So 2000 decimal = D0 07 00 00 hexadecimal (little endian) = [unsupported character] [BEL character] [NUL character] [NUL character] = ? [BEL character] [NUL character] [NUL character] = 3F 07 00 00 hexadecimal (little endian) = 1855 decimal.


TL;DR: Everything's fine. But you're a victim of character replacement.

We start with 2000. Let's acknowledge, first, that this number can be represented in hexadecimal as 0x000007d0.

BitConverter.GetBytes

BitConverter.GetBytes(2000) is an array of 4 bytes, Because 2000 is a 32-bit integer literal. So the 32-bit integer representation, in little endian (least significant byte first), is given by the following byte sequence { 0xd0, 0x07, 0x00, 0x00 }. In decimal, those same bytes are { 208, 7, 0, 0 }

Encoding.ASCII.GetChars

Uh oh! Problem. Here's where things likely took an unexpected turn for you.

You're asking the system to interpret those bytes as ASCII-encoded data. The problem is that ASCII uses codes from 0-127. The byte with value 208 (0xd0) doesn't correspond to any character encodable by ASCII. So what actually happens?

When decoding ASCII, if it encounters a byte that is out of the range 0-127 then it decodes that byte to a replacement character and moves to the next byte. This replacement character is a question mark ?. So the 4 chars you get back from Encoding.ASCII.GetChars are ?, BEL (bell), NUL (null) and NUL (null).

BEL is the ASCII name of the character with code 7, which traditionally elicits a beep when presented on a capable terminal. NUL (code 0) is a null character traditionally used for representing the end of a string.

new string

Now you create a string from that array of chars. In C# a string is perfectly capable of representing a NUL character within the body of a string, so your string will have two NUL chars in it. They can be represented in C# string literals with "\0", in case you want to try that yourself. A C# string literal that represents the string you have would be "?\a\0\0" Did you know that the BEL character can be represented with the escape sequence \a? Many people don't.

Encoding.ASCII.GetBytes

Now you begin the reverse journey. Your string is comprised entirely of characters in the ASCII range. The encoding of a question mark is code 63 (0x3F). And the BEL is 7, and the NUL is 0. so the bytes are { 0x3f, 0x07, 0x00, 0x00 }. Surprised? Well, you're encoding a question mark now where before you provided a 208 (0xd0) byte that was not representable with ASCII encoding.

BitConverter.ToInt32

Converting these four bytes back to a 32-bit integer gives the integer 0x0000073f, which, in decimal, is 1855.


String encoding (ASCII, UTF8, SHIFT_JIS, etc.) is designed to pigeonhole human language into a binary (byte) form. It isn't designed to store arbitrary binary data, such as the binary form of an integer.

While your binary data will be interpreted as a string, some of the information will be lost, meaning that storing binary data in this way will fail in the general case. You can see the point where this fails using the following code:

for (int i = 0; i < 255; ++i)
{
    var byteData = new byte[] { (byte)i };
    var stringData = System.Text.Encoding.ASCII.GetString(byteData);
    var encodedAsBytes = System.Text.Encoding.ASCII.GetBytes(stringData);

    Console.WriteLine("{0} vs {1}", i, (int)encodedAsBytes[0]);
}

Try it online

As you can see it starts off well because all of the character codes correspond to ASCII characters, but once we get up in the numbers (i.e. 128 and beyond), we start to require a more than 7 bits to store the binary value. At this point it ceases to be decoded correctly, and we start seeing 63 come back instead of the input value.

Ultimately you will have this problem encoding binary data using any string encoding. You need to choose an encoding method specifically meant for storing binary data as a string.

Two popular methods are:

  • Hexadecimal
  • Base64 using ToBase64String and FromBase64String

Hexadecimal example (using the hex methods here):

int initialValue = 2000;
Console.WriteLine(initialValue);

// Convert from int to bytes and then to hex
byte[] bytesValue = BitConverter.GetBytes(initialValue);
string stringValue = ByteArrayToString(bytesValue);

Console.WriteLine("As hex: {0}", stringValue); // outputs D0070000

// Convert form hex to bytes and then to int
byte[] decodedBytesValue = StringToByteArray(stringValue);
int intValue = BitConverter.ToInt32(decodedBytesValue, 0);
Console.WriteLine(intValue);

Try it online

Base64 example:

int initialValue = 2000;
Console.WriteLine(initialValue);

// Convert from int to bytes and then to base64
byte[] bytesValue = BitConverter.GetBytes(initialValue);
string stringValue = Convert.ToBase64String(bytesValue);

Console.WriteLine("As base64: {0}", stringValue); // outputs 0AcAAA==

// Convert form base64 to bytes and then to int
byte[] decodedBytesValue = Convert.FromBase64String(stringValue);
int intValue = BitConverter.ToInt32(decodedBytesValue, 0);
Console.WriteLine(intValue);

Try it online

P.S. If you simply wanted to convert your integer to a string (e.g. "2000") then you can simply use .ToString():

int initialValue = 2000;
string stringValue = initialValue.ToString();

Tags:

C#

Ascii