How to convert a double to hex? - Stack Overflow most recent 30 from stackoverflow.com2009-11-30T03:33:08Zhttp://stackoverflow.com/feeds/question/728121http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/728121/how-to-convert-a-double-to-hex4How to convert a double to hex?Allyn2009-04-08T00:44:18Z2009-04-08T01:41:39Z
<p>Hello,
How do I convert a ruby float/double to high endian order hex with high bytes and low bytes.</p>
<p>EXAMPLE:</p>
<pre><code>start with 99.0
</code></pre>
<p>end up with</p>
<pre><code>40 58 C0 00 00 00 00 00
high bytes low bytes
</code></pre>
http://stackoverflow.com/questions/728121/how-to-convert-a-double-to-hex/728167#7281670Answer by Patrick for How to convert a double to hex?Patrick2009-04-08T01:14:15Z2009-04-08T01:14:15Z<p>The array class has a pack method:</p>
<pre><code>a = [99.0]
s = a.pack("d")
s
=> "\000\000\000\000\000\300X@"
</code></pre>
<p>This gives you a byte string, but converting from that to hex for printing should be trivial.</p>
<p>If you want to go the other way, the string class has an unpack method:</p>
<pre><code>s.unpack("d")
=>[99.0]
</code></pre>
http://stackoverflow.com/questions/728121/how-to-convert-a-double-to-hex/728202#7282024Answer by rampion for How to convert a double to hex?rampion2009-04-08T01:38:34Z2009-04-08T01:38:34Z<p>Well, <a href="http://stackoverflow.com/questions/728121/how-to-convert-a-double-to-hex/728202#728167">like Patrick said</a>, it doesn't take a lot to convert past using <code>Array\#pack</code>. </p>
<pre><code>irb> [99.0].pack('G').split('').map { |ds| ds[0] }
#=> [64, 88, 192, 0, 0, 0, 0, 0]
irb> _.map { |d| "%02x" % d }
#=> ["40", "58", "c0", "00", "00", "00", "00", "00"]
irb> [99.0].pack('E').split('').map { |ds| ds[0] }
#=> [0, 0, 0, 0, 0, 192, 88, 64]
irb> _.map { |d| "%02x" % d }
#=> ["00", "00", "00", "00", "00", "c0", "58", "40"]
</code></pre>
<p>So it depends whether you want to unpack it with the high-order byte in the zero index or the low order byte in the zero index:</p>
<pre><code> E | Double-precision float, little-endian byte order
G | Double-precision float, network (big-endian) byte order
</code></pre>