Skip to content

Instantly share code, notes, and snippets.

@rjhall
Created February 3, 2014 01:15
Show Gist options
  • Save rjhall/8777578 to your computer and use it in GitHub Desktop.
Save rjhall/8777578 to your computer and use it in GitHub Desktop.
scala> val f = 1337.666f
f: Float = 1337.666
scala> java.lang.Integer.toHexString(java.lang.Float.floatToIntBits(f))
res1: java.lang.String = 44a73550
php> unpack('f', pack('i', hexdec('44a73550')));
→ array(
1 => 1337.66601562
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment