Python character to hex

How To Convert String To Hexadecimal Number in Python

In this tutorial you will learn how to convert a string to hex in Python, and a hex to string in Python.

Table of Contents

String to Hex

There exist different methods of converting a string into a hex in python.

Hexadecimal values have a base of 16, and the prefix 0x is used to display any given string in hexadecimal format. Strings can be converted into a hexadecimal format in one of the following ways.

Using encode()

The encode() method is one of the most popular methods of converting any string into hex format. In this method, firstly string is converted into bytes using the encode() method, and then the resulting value is converted into hex format using the hex method.

# Converting a string into bytes using encode method string = "Converting string into hex format.".encode('utf-8') # Using the hex method to convert the bytes into hexadecimal format string.hex() # Printing the hexadecimal value of the given string print(string.hex()) 
436f6e76657274696e6720737472696e6720696e746f2068657820666f726d61742e

Using ast library method

In this method, the ast library is used to convert a given string into hex format. Firstly, literal_eval is imported from the ast library. Secondly, a string is created with the prefix 0x because this method only accepts the characters with 0x prefixes.

Читайте также:  Java precisely peter sestoft

After making the string, it is passed through the literal_eval method. This method gives the integer format of the given string, which can then be passed through the hex method to obtain the hex value of the given string.

# Importing literal_eval from ast library from ast import literal_eval string = "0x569" # Converting a string into an integer using literal_eval method str_into_int = literal_eval(string) # Passing integer value through hex method hex_value = hex(str_into_int) # Printing the hex value print(hex_value) 

Using the hex() method

hex() method is generally used to convert the hexadecimal integers string value to hexadecimal values. In this method, a hexadecimal integer is passed as a parameter through the hex() method, and it provides the hexadecimal value of the given string.

For this method to work, the given string should be converted into a hexadecimal integer value, and then the integer value should be passed through the hex function.

Any given string can be converted into a hexadecimal integer value by passing it through the int method along with the base 16 as a parameter.

hex_string = "0x64533490" # Passing the string through the int method with base 16 to convert it into an integer int_format = int(hex_string, 16) # Passing the integer value through the hex method hex_format = hex(int_format) # Print the hexadecimal format of the integer print(hex_format) 

Sometimes you will encounter syntax errors and typeErrors because the hex method only accepts integer values and if you pass a string through it, then it will give an error.

Another fastest way of converting a string into a hexadecimal value is using b with hex method. In this method, “b” is placed at the beginning of a string which indicates the conversion of the string into bytes.

Generally, hex values start with 0x, so the prefix “0x” can be placed with the output to get the hexadecimal value of any given string.

print("0x"+ converting string into hex format".hex())
0x436f6e76657274696e6720737472696e6720696e746f2068657820666f726d6174

Using binascii

In this method, binascii library is used to convert any given string into hex format.

Firstly, we import the binascii module. Secondly, the given string is converted into a byte object using b.

Finally, the byte object is passed through the hexlify method, which gives the hex value of the given string.

# Importing library import binascii # Using b to convert the string into bytes string = b"Hello" # Using the hexlify method to convert bytes into hexadecimal format print(binascii.hexlify(string)) 

If the purpose is just to convert the strings of the alphabet into the hexadecimal format, then the ord method along with the hex method can be applied to get the hex value of any given alphabet.

print(hex(ord("a"))) print(hex(ord("T"))) 

=> Join the Waitlist for Early Access.

By subscribing, you agree to get emails from me, Tanner Abraham. I’ll respect your privacy and you can unsubscribe any time.

Hex to String

Hexadecimal string and ASCII values in python are interchangeable and different methods can be used to convert a given hex value to a string and vice versa.

Using decode() method

In this method, bytearray.decode (encoding, error) takes the byte array as an input and then decodes it using the encoding specified as an argument.

In order to decode a hex value, the first step is to convert the hex string into a byte string and then apply the bytearray.decode() method.

To convert hex string into bytes, bytearray.fromhex() method can be used.

# Converting hex value to a string string = "68656c6c6f" # Using fromhex method from bytearray to convert hex value to byte byte_array = bytearray.fromhex(string) # Using decode method to convert bytes into ASCII string byte_array.decode() # Printing the string print(byte_array.decode()) 

Using codecs.decode() method

In this method, codecs module is imported to convert the hex values into strings. This method requires a codecs library for conversion, which contains base classes for encoding and decoding data, commonly used in Unicode text-based files.

This method is similar to the decode() method. The only difference is that along with encoding and error arguments, this method also takes the objects as input arguments.

Error argument in this method is used to handle errors during the execution of the program. The codecs.decodes() method in this case returns a byte object, which is then converted into the string using the str() method.

# Importing the codecs library import codecs # The hexadecimal string string = "68656c6c6f" # Converting the hex string into bytes using the codecs.decode() method binary_str = codecs.decode(string, "hex") # Converting the resultant byte into the string str(binary_str,'utf-8') # Printing out the string print(str(binary_str,'utf-8')) 

By appending hex to a string

In this method, a hex value is converted into a string and then combined with the other string. It’s an efficient one-liner that reads in a single hex value at a time converts it to an ASCII character and appends it to the end of the variable.

This repeats until the conversion is complete.

def hex_to_str(hex): if hex[:2] == '0x': hex = hex[2:] str_value = bytes.fromhex(hex).decode('utf-8') return str_value hex_value = '0x737472696e67' print(hex_value) string = 'Converting hex to ' + hex_to_str('737472696e67') print(string) 

Using the binascii module

It is one of the simplest ways of converting a hex value to a string format. In this method, the unhexlify method of the binascii module is used for the conversion of hex value to string format.

# Importing binascii module import binascii # Using unhexlify method from binascii module binascii.unhexlify('737472696e67') # Printing the output print(binascii.unhexlify('737472696e67')) 

Hex to integer

The int constructor int() can be used for conversion between a hex string and an integer. The int constructor takes the string and the base you are converting from and will give the corresponding integer value of given hex.

hex_value = "0x64" x = int(hex_value, 0) print(x) 

Conclusion

There are many ways to convert strings to hexadecimals, and hexadecimals to strings in Python. A practical use case for these conversion methods could be obtaining character codes being read in from files.

Tanner Abraham

Data Scientist and Software Engineer with a focus on experimental projects in new budding technologies that incorporate machine learning and quantum computing into web applications.

=> Join the Waitlist for Early Access.

By subscribing, you agree to get emails from me, Tanner Abraham. I’ll respect your privacy and you can unsubscribe any time.

Источник

String to Hexadecimal in Python

Hexadecimal has a base of 16, and we can represent a string in hexadecimal format using the prefix 0x.

We can convert the string to hexadecimal using the following methods:

  1. Using the hex(n) method
  2. Using the encode () method
  3. Using the literal_eval () method

Method 1: Using the hex ()

We can convert the string to hexadecimal using the hex () method. The hex () method accepts the parameter in integer form, and for that first, we have to convert the string to an integer and then passed that value to the hex () method as shown below:

Example: string_to_hex.py

# pass the str to the int () to convert it into base16 int

# print the converted string to base16 hexadecimal int value

print ( «value» , type ( base16INT ) )

hex_value = hex ( base16INT )

# chcking the type of the value

Output:

Line 3: We created a string for the demo.

Line 6: We pass that string to the int () method with the base 16. Now, this int () method will convert the string to the hexadecimal integer value.

Line 9: We print the value which we get after converting the string to integer hexadecimal.

Line 10: We also print the value type to confirm that the string is now in the form of an integer.

Line 12: We know the in-built hex(n) method accepts the integer value, converting the integer to the hexadecimal string. That’s why we need to convert the string to an integer to pass it into the hex () method. We passed that base16INT value to the hex() method and got the hex_value, string hexadecimal.

Line 13: We print that converted hexadecimal value.

Line 16: We print the type of the converted hexadecimal value, which shows in the output it is a string type.

So, now we converted the string to a hexadecimal value.

Method 2: Convert the string to hexadecimal using the encode ()

We can also convert the normal string to a hexadecimal string that doesn’t have any hexadecimal character. For that, we have to convert the string to byte using the method encode (), and then we can convert the string to hexadecimal as shown below:

# string_to_hex_utf8.py
# convert the string to the bytes

str = ‘linuxhint’ . encode ( ‘utf-8’ )

# print the converted string to bytes

# convert the string bytes to the hexadecimal string

# print the converted hexadecimal value type

Output:

Line 4 to 7: We created a string that doesn’t have any hexadecimal character. And then convert those strings to bytes using the encode () method. And then, we print those bytes, which we can see in the output line number 1.

Line 10 to 13: We call the hex () method using the dot operator, and now the bytes are converted to the hexadecimal string value we required. To confirm the type of the result string, we just print the line number 13, and the output shows that it is in a string hexadecimal type.

Method 3. Using ast.literal_eval () method

We can also convert the string to an integer using the ast library method literal_eval. This method also converts the string to an integer to use the hex () method to convert the string to hexadecimal string. But this method only accepts 0x prefix characters.

from ast import literal_eval

# convert the string to the integer

convert_str = literal_eval ( str )

# print the value and type of the convert_str

print ( «type» , type ( convert_str ) )

# pass the convert_str to the hex () method

hex_value = hex ( convert_str )

# chcking the type of the value

Output:

Line 2 to 10: We import the method literal_eval () from the ast library. Then we create a string with the prefix 0x. Then we passed that string to the literal_eval() method and converted it to the integer. To confirm that the output is in integer form, we print it in line number 9. We also print the type of the output, which shows it is an integer.

Line 13 to 17: We know the in-built hex(n) method that accepts the integer value, converting the integer to the hexadecimal string. That’s why we need to convert the string to an integer to pass it into the hex () method. We passed that convert_str(integer) value to the hex() method and got the hex_value, string hexadecimal. We print that converted hexadecimal value. We print the type of the converted hexadecimal value also, which shows it is a string hexadecimal type.

Error Exception (TypeError):

Sometimes we will get errors while converting the string to a hexadecimal string. The reason behind that is the hex () method only accepts the integer value as a parameter.

hex_output = hex ( string_hex )

Output:

Conclusion:

So, we have seen different methods to convert the string to a hexadecimal lowercase string. The hex () method is very popular because of its easy use. But sometimes, we want to convert the string without using the prefix 0x, so in that case, we can use the bytes encode () method, as we have already seen in the article.

The code of this article is available at the below github link:

Источник

Оцените статью