Skip to content
Home » Answers » Representing bytes32 as String in Solidity

Representing bytes32 as String in Solidity

Representing bytes32 as String in Solidity

In Solidity, bytes32 and string are two different data types, each serving distinct purposes. Let’s delve into what they represent and how they can be converted from one form to another.

Bytes32: A fixed-sized byte array

To start with, bytes32 is essentially a fixed-size byte array. It can hold up to 32 bytes of data. This data could be anything from a hash value to an Ethereum address. Think of it as a container that can store a specific amount of information, much like a small box that can only hold a certain number of items.

When you declare a variable of type bytes32, you’re essentially allocating space for 32 bytes of data. Here’s a simple declaration in Solidity:

bytes32 myBytes32;

This line of code sets aside memory to store 32 bytes of data in the variable myBytes32.

🔥 Check this course out: Create Your Own Ethereum Token in Just 30 Mins

String: A dynamic sequence of characters

On the other hand, a string in Solidity represents a dynamic sequence of characters. It’s akin to a flexible string of beads, where you can add or remove beads as needed. Strings in Solidity can vary in length and can hold any valid UTF-8 encoded sequence of characters.

Here’s how you declare a string variable in Solidity:

string myString;

This line allocates memory for a string in the variable myString.

Converting bytes32 to string

Now, let’s discuss how to convert a bytes32 variable into a string in Solidity. Since these are two different data types, we need to perform a conversion operation.

One common method to achieve this is by utilizing the abi.encodePacked() function followed by abi.encodeHex(). This combination allows us to convert a bytes32 variable into its hexadecimal representation, which can then be converted into a string.

Here’s how you can do it:

function bytes32ToString(bytes32 _bytes32) public pure returns (string memory) {
    return string(abi.encodePacked(_bytes32));
}

In this function, _bytes32 is the input parameter, representing the bytes32 variable we want to convert. We use abi.encodePacked() to pack the bytes32 variable into a byte array, and then abi.encodeHex() to convert this byte array into its hexadecimal representation. Finally, we cast this hexadecimal representation into a string using string().

Example

bytes32 myBytes32 = 0x68656c6c6f000000000000000000000000000000000000000000000000000000; // "hello" in bytes32
string memory myString = bytes32ToString(myBytes32);

After executing this code, myString will contain the string “hello”.

Considerations

It’s important to note that converting a bytes32 variable to a string in Solidity consumes gas, particularly if the string is lengthy. Gas consumption is a crucial consideration, especially in smart contract development, as it directly impacts transaction costs.

Additionally, remember that Solidity is primarily used for smart contract development on the Ethereum blockchain. Therefore, operations within Solidity are constrained by the limitations and capabilities of the Ethereum Virtual Machine (EVM).

Addressing a common challenge: Representing bytes32 as string in Solidity

I completely understand the frustration when transitioning concepts from other programming languages to Solidity. Solidity, being designed for smart contract development on the Ethereum blockchain, has its quirks and nuances that may not align with other languages.

Maintaining the original format

When you have a bytes32 variable like 0x05416460deb76d57af601be17e777b93592d8d4d4a4096c57876a91c84f4a712 and you simply want to represent it as a string without converting its contents, you essentially want to maintain its original hexadecimal format.

In Solidity, accomplishing this is straightforward. You can leverage the string interpolation feature to construct a string with the desired format. Here’s how you can do it:

function bytes32ToString(bytes32 _bytes32) public pure returns (string memory) {
    return string(abi.encodePacked("0x", _bytes32));
}

In this function, "0x" is prepended to the bytes32 variable _bytes32 using abi.encodePacked(). This function concatenates the two components without converting the bytes32 variable’s contents. Finally, the concatenated result is cast to a string.

bytes32 as string in Solidity example

bytes32 myBytes32 = 0x05416460deb76d57af601be17e777b93592d8d4d4a4096c57876a91c84f4a712;
string memory myString = bytes32ToString(myBytes32);

After executing this code, myString will contain the string "0x05416460deb76d57af601be17e777b93592d8d4d4a4096c57876a91c84f4a712", maintaining the original format of the bytes32 variable.

Addressing your concerns

While this might seem like a simple task in other programming languages, Solidity’s focus on security and efficiency introduces unique challenges. Solidity operates within the constraints of the Ethereum Virtual Machine (EVM) and gas costs associated with operations. Therefore, even seemingly simple tasks like representing a bytes32 variable as a string require careful consideration.

By understanding Solidity’s specific features and leveraging functionalities like abi.encodePacked(), you can effectively tackle such challenges and write efficient and secure smart contracts.

🔥 Check this course out: Build a One Piece Personality dApp With Solidity

A more efficient approach of representing bytes32 as string

While the above solution is effective, there’s an even more efficient method to achieve the same task. Let’s explore it.

function toHex16(bytes16 data) internal pure returns (bytes32 result) {
    result = bytes32(data) & 0xFFFFFFFFFFFFFFFF000000000000000000000000000000000000000000000000 |
             (bytes32(data) & 0x0000000000000000FFFFFFFFFFFFFFFF00000000000000000000000000000000) >> 64;
    result = result & 0xFFFFFFFF000000000000000000000000FFFFFFFF000000000000000000000000 |
             (result & 0x00000000FFFFFFFF000000000000000000000000FFFFFFFF0000000000000000) >> 32;
    result = result & 0xFFFF000000000000FFFF000000000000FFFF000000000000FFFF000000000000 |
             (result & 0x0000FFFF000000000000FFFF000000000000FFFF000000000000FFFF00000000) >> 16;
    result = result & 0xFF000000FF000000FF000000FF000000FF000000FF000000FF000000FF000000 |
             (result & 0x00FF000000FF000000FF000000FF000000FF000000FF000000FF000000FF0000) >> 8;
    result = (result & 0xF000F000F000F000F000F000F000F000F000F000F000F000F000F000F000F000) >> 4 |
             (result & 0x0F000F000F000F000F000F000F000F000F000F000F000F000F000F000F000F00) >> 8;
    result = bytes32(0x3030303030303030303030303030303030303030303030303030303030303030 +
                     uint256(result) +
                     (uint256(result) + 0x0606060606060606060606060606060606060606060606060606060606060606 >> 4 &
                     0x0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F)) * 7;
}

function toHex(bytes32 data) public pure returns (string memory) {
    return string(abi.encodePacked("0x", toHex16(bytes16(data)), toHex16(bytes16(data << 128))));
}

This code produces uppercase output. For lowercase output, just change 7 to 39 in the code.

Explanation

The idea behind this approach is to process 16 bytes at once using binary operations, making it more efficient than iterating over individual bytes.

The toHex16 function converts a sequence of 16 bytes represented as a bytes16 value into a sequence of 32 hexadecimal digits represented as a bytes32 value. The toHex function splits a bytes32 value into two bytes16 chunks, converts each chunk to hexadecimal representation via the toHex16 function, and finally concatenates the “0x” prefix with the converted chunks using the abi.encodePacked function.

The most sophisticated part is how the toHex16 function works. It operates sentence by sentence, which I’ll explain next.

In the first sentence:

result = bytes32(data) & 0xFFFFFFFFFFFFFFFF000000000000000000000000000000000000000000000000 |
             (bytes32(data) & 0x0000000000000000FFFFFFFFFFFFFFFF00000000000000000000000000000000) >> 64;

Here we shift the last 64 bits of the input to the right by 64 bits, essentially dividing the 128-bit input into two 64-bit chunks.

The second sentence:

result = result & 0xFFFFFFFF000000000000000000000000FFFFFFFF000000000000000000000000 |
          (result & 0x00000000FFFFFFFF000000000000000000000000FFFFFFFF0000000000000000) >> 32;

Here we shift the last 32 bits of both 64-bit chunks to the right by 32 bits, effectively dividing each 64-bit chunk into two 32-bit chunks.

The next sentence:

result = result & 0xFFFF000000000000FFFF000000000000FFFF000000000000FFFF000000000000 |
          (result & 0x0000FFFF000000000000FFFF000000000000FFFF000000000000FFFF00000000) >> 16;

This operation further divides each 32-bit chunk into two 16-bit chunks by shifting the last 16 bits to the right by 16 bits.

The subsequent sentence:

result = result & 0xFF000000FF000000FF000000FF000000FF000000FF000000FF000000FF000000 |
          (result & 0x00FF000000FF000000FF000000FF000000FF000000FF000000FF000000FF0000) >> 8;

Performs a similar division by shifting the last 8 bits of each 16-bit chunk to the right by 8 bits.

The final sentence in this series:

result = (result & 0xF000F000F000F000F000F000F000F000F000F000F000F000F000F000F000F000) >> 4 |
          (result & 0x0F000F000F000F000F000F000F000F000F000F000F000F000F000F000F000F00) >> 8;

Shifts odd nibbles to the right by 4 bits and even nibbles by 8 bits, effectively arranging each 8-bit chunk (nibble) in its correct hexadecimal position.

Now, with every byte x, we perform the following transformation:

x' = ('0' + x) + ((x + 6) >> 4) * 7

This formula effectively converts each byte into its corresponding hexadecimal representation, while simultaneously adjusting for uppercase representation.

By comprehensively processing the bytes32 input in 16-byte chunks and then converting each byte into its hexadecimal representation efficiently, this approach minimizes gas costs and enhances performance.

Conclusion

Representing a bytes32 variable as a string while maintaining its original format in Solidity involves concatenating the “0x” prefix to the bytes32 variable using abi.encodePacked(). The first approach ensures that the bytes32 variable’s contents remain unchanged while being represented as a string. Despite the apparent simplicity of the task, it’s essential to consider Solidity’s unique characteristics and optimize for gas efficiency in smart contract development on the Ethereum blockchain.

While representing a bytes32 variable as a string in Solidity might seem challenging at first, leveraging efficient binary operations and understanding how to manipulate individual bytes can lead to elegant and optimized solutions.

Try it out, ask us questions, and let us know how it went by tagging Metaschool on Social Media.

Follow us on –

🔮Twitter – https://twitter.com/0xmetaschool

🔗LinkedIn – https://www.linkedin.com/company/0xmetaschool/