Python Forum
how to convert a string to hex
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
how to convert a string to hex
#2
str.encode gives you the bytes representation of the string. From that you can use the hex method to get the hex values:

>>> s = 'The quick brown fox jumps over the lazy dog.'.encode('utf-8')
>>> s
b'The quick brown fox jumps over the lazy dog.'
>>> s.hex()
'54686520717569636b2062726f776e20666f78206a756d7073206f76657220746865206c617a7920646f672e'
That's Python 3.x of course. Sting handling was one of the big changes between 2.x and 3.x.
Craig "Ichabod" O'Brien - xenomind.com
I wish you happiness.
Recommended Tutorials: BBCode, functions, classes, text adventures
Reply


Messages In This Thread
how to convert a string to hex - by Skaperen - Jan-22-2017, 11:03 AM
RE: how to convert a string to hex - by ichabod801 - Jan-22-2017, 11:34 AM
RE: how to convert a string to hex - by snippsat - Jan-22-2017, 11:52 AM
RE: how to convert a string to hex - by Skaperen - Jan-23-2017, 01:43 AM
RE: how to convert a string to hex - by snippsat - Jan-23-2017, 02:44 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  convert string to float in list jacklee26 6 1,960 Feb-13-2023, 01:14 AM
Last Post: jacklee26
  how to convert tuple value into string mg24 2 2,393 Oct-06-2022, 08:13 AM
Last Post: DeaD_EyE
  Convert string to float problem vasik006 8 3,449 Jun-03-2022, 06:41 PM
Last Post: deanhystad
  Convert a string to a function mikepy 8 2,584 May-13-2022, 07:28 PM
Last Post: mikepy
Question How to convert string to variable? chatguy 5 2,495 Apr-12-2022, 08:31 PM
Last Post: buran
  Convert string to int Frankduc 8 2,527 Feb-13-2022, 04:50 PM
Last Post: menator01
  Convert string to path using Python 2.7 tester_V 10 6,537 Nov-20-2021, 02:20 PM
Last Post: snippsat
  Convert each element of a list to a string for processing tester_V 6 5,390 Jun-16-2021, 02:11 AM
Last Post: tester_V
Question convert unlabeled list of tuples to json (string) masterAndreas 4 7,511 Apr-27-2021, 10:35 AM
Last Post: masterAndreas
  Convert String of an int array to a Numpy array of ints mdsousa 5 5,731 Apr-08-2021, 08:00 PM
Last Post: mdsousa

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020