Popular recipes tagged "hexadecimal" but not "binary"http://code.activestate.com/recipes/tags/hexadecimal-binary/2015-11-01T12:43:38-08:00ActiveState Code Recipesdata_dump.py, like the Unix od (octal dump) command (Python)
2015-11-01T12:43:38-08:00Vasudev Ramhttp://code.activestate.com/recipes/users/4173351/http://code.activestate.com/recipes/579120-data_dumppy-like-the-unix-od-octal-dump-command/
<p style="color: grey">
Python
recipe 579120
by <a href="/recipes/users/4173351/">Vasudev Ram</a>
(<a href="/recipes/tags/data/">data</a>, <a href="/recipes/tags/dump/">dump</a>, <a href="/recipes/tags/hexadecimal/">hexadecimal</a>, <a href="/recipes/tags/linux/">linux</a>, <a href="/recipes/tags/octal/">octal</a>, <a href="/recipes/tags/od/">od</a>, <a href="/recipes/tags/representation/">representation</a>, <a href="/recipes/tags/unix/">unix</a>, <a href="/recipes/tags/utility/">utility</a>, <a href="/recipes/tags/windows/">windows</a>).
</p>
<p>This recipe implements a simple data dump tool, roughly like the od command of Unix, which stands for octal dump (though od can also dump data in hex and other formats). This tool dumps data in character and hex formats, in this version. This is data_dump.py version 1.</p>
Hex Dump (Python)
2010-05-24T14:16:45-07:00Bill Picketthttp://code.activestate.com/recipes/users/4174028/http://code.activestate.com/recipes/577243-hex-dump/
<p style="color: grey">
Python
recipe 577243
by <a href="/recipes/users/4174028/">Bill Pickett</a>
(<a href="/recipes/tags/hexadecimal/">hexadecimal</a>).
</p>
<p>Load a file and print formatted hexadecimal and ascii characters to the console.</p>
Hexadecimal Conversion Tool (Python)
2009-05-28T13:58:41-07:00joedaviscpahttp://code.activestate.com/recipes/users/4170361/http://code.activestate.com/recipes/576766-hexadecimal-conversion-tool/
<p style="color: grey">
Python
recipe 576766
by <a href="/recipes/users/4170361/">joedaviscpa</a>
(<a href="/recipes/tags/hexadecimal/">hexadecimal</a>).
Revision 5.
</p>
<p>Converts a decimal to it's hexadecimal equivalent</p>