Skip to content

Instantly share code, notes, and snippets.

@constantine-nikolaou
Created December 6, 2011 13:31
Show Gist options
  • Save constantine-nikolaou/1438212 to your computer and use it in GitHub Desktop.
Save constantine-nikolaou/1438212 to your computer and use it in GitHub Desktop.
Convert string chars to hex values
ree-1.8.7-2011.03 :027 > array = []
=> []
ree-1.8.7-2011.03 :028 > "hello".each_byte {|x| array << x}
=> "hello"
ree-1.8.7-2011.03 :029 > array.join(",")
=> "104,101,108,108,111"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment