How to convert a double to hex? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T03:33:08Z http://stackoverflow.com/feeds/question/728121 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/728121/how-to-convert-a-double-to-hex 4 How to convert a double to hex? Allyn 2009-04-08T00:44:18Z 2009-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#728167 0 Answer by Patrick for How to convert a double to hex? Patrick 2009-04-08T01:14:15Z 2009-04-08T01:14:15Z <p>The array class has a pack method:</p> <pre><code>a = [99.0] s = a.pack("d") s =&gt; "\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") =&gt;[99.0] </code></pre> http://stackoverflow.com/questions/728121/how-to-convert-a-double-to-hex/728202#728202 4 Answer by rampion for How to convert a double to hex? rampion 2009-04-08T01:38:34Z 2009-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&gt; [99.0].pack('G').split('').map { |ds| ds[0] } #=&gt; [64, 88, 192, 0, 0, 0, 0, 0] irb&gt; _.map { |d| "%02x" % d } #=&gt; ["40", "58", "c0", "00", "00", "00", "00", "00"] irb&gt; [99.0].pack('E').split('').map { |ds| ds[0] } #=&gt; [0, 0, 0, 0, 0, 192, 88, 64] irb&gt; _.map { |d| "%02x" % d } #=&gt; ["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>