active questions tagged hex - Stack Overflow most recent 30 from stackoverflow.com 2009-12-04T15:46:43Z http://stackoverflow.com/feeds/tag/hex http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/243712/why-use-hex 19 Why use hex? AntonioCS 2008-10-28T15:22:32Z 2009-12-04T08:35:40Z <p>Hey! I was looking at this code at <a href="http://www.gnu.org/software/m68hc11/examples/primes_8c-source.html" rel="nofollow">http://www.gnu.org/software/m68hc11/examples/primes_8c-source.html</a></p> <p>I noticed that in some situations they used hex numbers, like in line 134:</p> <pre><code>for (j = 1; val &amp;&amp; j &lt;= 0x80; j &lt;&lt;= 1, q++) </code></pre> <p>Now why would they use the 0x80? I am not that good with hex but I found an online hex to decimal and it gave me 128 for 0x80.</p> <p>Also before line 134, on line 114 they have this:</p> <pre><code>small_n = (n &amp; 0xffff0000) == 0; </code></pre> <p>The hex to decimal gave me 4294901760 for that hex number. So here in this line they are making a bit AND and comparing the result to 0??</p> <p>Why not just use the number? Can anyone please explain and please do give examples of other situations.</p> <p>Also I have seen large lines of code where it's just hex numbers and never really understood why :(</p> http://stackoverflow.com/questions/1838541/mac-address-ffffffffffff-in-c-hex 0 Mac address ff:ff:ff:ff:ff:ff in C (hex) Jasie 2009-12-03T08:42:48Z 2009-12-03T08:54:43Z <p>How do I write the MAC address ff:ff:ff:ff:ff:ff as a char[] in C?</p> <p>Do I just do <code>char macaddress[6] = "%0xFF%0xFF%0xFF%0xFF%0xFF%0xFF";</code></p> <p>I'm not sure. Thanks!</p> http://stackoverflow.com/questions/1836253/how-to-remove-characters 0 How To Remove Characters? Nathan Campos 2009-12-02T22:17:55Z 2009-12-02T23:31:09Z <p>I'm start(really starting) an Assembly tool, at the time it only converts a decimal to a hexadecimal, but I want to remove the zeros from the result. Here is the code:</p> <pre><code>// HexConvert.cpp #include &lt;iostream&gt; using namespace std; int main() { int decNumber; while (true) { cout &lt;&lt; "Enter the decimal number: "; cin &gt;&gt; decNumber; // Print hexadecimal with leading zeros cout &lt;&lt; "Hexadecimal: "; for (int i = 2*sizeof(int) - 1; i &gt;= 0; i--) { cout &lt;&lt; "0123456789ABCDEF"[((decNumber &gt;&gt; i*4) &amp; 0xF)]; } cout &lt;&lt; endl; } return 0; } </code></pre> <p><strong>How can I do this?</strong></p> http://stackoverflow.com/questions/1827064/question-on-converting-decimal-to-binary-to-hex 0 Question on converting decimal to binary to hex mrblah 2009-12-01T15:50:48Z 2009-12-01T16:26:08Z <p>I'm a little confused here:</p> <p>I'm trying to reverse engineer the ASCII value 65. In the book I am reading it says:</p> <pre><code>Decimal: 65 Hex: 41 Octal: 101 </code></pre> <p>But 65 in its binary representation is:</p> <pre><code>0010 0001 </code></pre> <p>And <code>0010</code> in hex is 2, while <code>0001</code> is 1, which indicates that the hex value "should" be: 21.</p> <p>Where did I go wrong?</p> http://stackoverflow.com/questions/321370/convert-hex-string-to-byte-array 0 Convert hex string to byte array Blankman 2008-11-26T16:45:53Z 2009-11-30T20:54:23Z <p>Hi,</p> <p>Can we converting a hex string to a byte array using a built-in function in C# or I have to make a custom method for this?</p> http://stackoverflow.com/questions/1812725/how-convert-byte-to-decimal -1 How convert byte to decimal? Mohd Rizal 2009-11-28T15:07:36Z 2009-11-30T11:25:30Z <p>Hi...</p> <p>Please guide me how make convert that input to decimal.tq.</p> <pre><code>BF C2 FF 12 65 E4 EE 17 BF C2 64 F2 41 84 11 C1 C4 38 41 14 10 C1 04 10 49 04 18 41 06 72 B5 FF 17 BF C2 64 72 41 84 11 C1 85 19 C1 07 17 7D C2 5F 3D 5E FD DE 57 FD 10 E1 94 30 B5 FF 17 BF C2 FF 12 65 CC 76 17 BF C2 FF 12 69 FC 77 </code></pre> http://stackoverflow.com/questions/1814997/convert-from-hexadecimal-to-binary-c 0 Convert from hexadecimal to binary C++ halluc1nati0n 2009-11-29T08:25:31Z 2009-11-29T10:17:22Z <p>This kind of builds up on <a href="http://stackoverflow.com/questions/483609/how-can-i-convert-hex-numbers-to-binary-in-c">Already asked question</a>... However here, say, I'm given a hexadecimal input which could be a max of '0xFFFF' I'll need it converted to binary, so that I'd end up with a max of 16 bits.</p> <p>I was wondering if using 'bitset' it'd be quite simple.. Any ideas?</p> <p><strong>EDIT :</strong> </p> <p>After getting answers, improvised piece of code here : <a href="http://pastebin.com/f7a6f0a69" rel="nofollow">http://pastebin.com/f7a6f0a69</a></p> http://stackoverflow.com/questions/1014308/what-is-the-purpose-of-hex-encoding-for-binary-data 2 What is the purpose of hex-encoding for binary data? Jason Baker 2009-06-18T18:14:19Z 2009-11-23T02:22:31Z <p>I'm a bit curious as to why one would want to use hex encoding over base64. It seems to me that base 64 is more efficient. In particular, why is it that databases seem to always use hex encoding? Is it a historical issue, or am I missing something about hex encoding?</p> http://stackoverflow.com/questions/1777639/how-to-test-a-byte-against-a-hex-value 2 How to test a byte against a hex value? derrdji 2009-11-22T02:37:02Z 2009-11-22T22:51:39Z <p>I want to test if the byte I read from a data file is 0xEE, what should I do? I tried <code>if (aChar == 0xEE)</code> but doesn't seems working. thanks for any help</p> http://stackoverflow.com/questions/1755978/how-to-separate-virus-signatures-in-a-virus-signature-file 0 How to separate virus signatures in a virus signature file Abdelrahman 2009-11-18T13:30:26Z 2009-11-18T13:42:57Z <p>I am doing an anti-virus project, I have a signature file and I want to separate the signatures in it. It is all beside each other and in hex, is there is a delimiter or something??</p> <p>Thank you for your help. Abdelrahman. </p> http://stackoverflow.com/questions/1740320/how-to-show-hex-code-char 1 how to show hex code char ? avar 2009-11-16T05:56:15Z 2009-11-16T15:46:38Z <p>hi, i have a file contains numbers like FB8E,FB8F,FB90 on each line.</p> <p>i want in my program to load this file and take each line and print the character corresponded to that number/line.</p> <p>for expamle, my firnst line is FB8E, i want something to convert it like #$FB8E (arabic Kaf), how do i do that?</p> http://stackoverflow.com/questions/1734333/what-does-0x0a-mean 1 What does 0x0A mean? Hyjker 2009-11-14T14:11:54Z 2009-11-16T14:23:47Z <p>What does 0x0A mean in C++?</p> <pre><code>if (version &lt; 760 || version &gt; 760){ disconnectClient(0x0A, STRING_CLIENT_VERSION); } uint32_t accnumber = msg.GetU32(); std::string password = msg.GetString(); if(!accnumber){ disconnectClient(0x0A, "You must enter your account number."); return false; } </code></pre> http://stackoverflow.com/questions/1736396/read-version-info-from-abr-file-photoshop-brush-set 0 Read version info from .ABR file (Photoshop brush set) jack 2009-11-15T02:45:49Z 2009-11-15T04:08:59Z <p>Is it possible to detect which Photoshop version a brush set (.abr) file is compatible with from its binary data?</p> <p>There is a open source C# programm called <a href="http://abrviewer.sourceforge.net/" rel="nofollow" >ABRViewer</a> but it doesn't read version info.</p> <p>Sample brushes:</p> <p><a href="http://mark-s.deviantart.com/art/Fractal-Brushes-Set-20484978" rel="nofollow">http://mark-s.deviantart.com/art/Fractal-Brushes-Set-20484978</a></p> <p><a href="http://redheadstock.deviantart.com/art/Arcane-Circles-Symbols-Brushes-63580135" rel="nofollow">http://redheadstock.deviantart.com/art/Arcane-Circles-Symbols-Brushes-63580135</a></p> http://stackoverflow.com/questions/1735795/hex-0x0001-vs-0x00000001 1 Hex 0x0001 vs 0x00000001 randombits 2009-11-14T22:20:32Z 2009-11-14T22:23:03Z <p>hi,</p> <p>often in code that uses permissions checking, i see some folks use hex 0x0001 and others use 0x00000001. these both look like an equivalent of a decimal 1, if i'm not mistaking. </p> <p>why use one over the other, just a matter of preference?</p> http://stackoverflow.com/questions/1728573/byte-array-to-hex-string-conversion-in-c-language -4 byte array to hex string conversion in c language [closed] need 2009-11-13T11:08:00Z 2009-11-13T13:14:01Z <p>If this is the char array has the hex values</p> <pre><code>char b[] = {0xf1, 0x0d, 0x3c, 0x44}; </code></pre> <p>we have to convert to string like below as </p> <pre><code>char *string = "F10D3C44". </code></pre> <p>please provide the example for this.</p> http://stackoverflow.com/questions/1718036/decodehexstring-obj-c-implementation-should-i-support-odd-lengthed-hexstrings-a 0 decodeHexString obj-c implementation, Should I support odd lengthed hexstrings, and if so, how? Bryan McLemore 2009-11-11T21:00:34Z 2009-11-11T21:32:09Z <p>I may be missing something in the standard libs, but I don't think so. I have this current implementation:</p> <pre><code>int char2hex(unsigned char c) { switch (c) { case '0' ... '9': return c - '0'; case 'a' ... 'f': return c - 'a' + 10; case 'A' ... 'F': return c - 'A' + 10; default: WARNING(@"passed non-hexdigit (%s) to hexDigitToInt()", c); return 0xFF; } } - (NSData *)decodeHexString { ASSERT([self length] % 2, @"Attempted to decode an odd lengthed hex string."); NSData *hexData = [self dataUsingEncoding:NSUTF8StringEncoding]; NSMutableData *resultData = [NSMutableData dataWithLength:([hexData length]) / 2]; const unsigned char *hexBytes = [hexData bytes]; unsigned char *resultBytes = [resultData mutableBytes]; for(NSUInteger i = 0; i &lt; [hexData length] / 2; i++) { resultBytes[i] = (char2hex(hexBytes[i + i]) &lt;&lt; 4) | char2hex(hexBytes[i + i + 1]); } return resultData; } </code></pre> <p>decodeHexString is a category addition on NSString. </p> <p>What I'm wondering is, if it's worth supporting odd lengthed hexstrings. And if so, how should i? </p> <p><strong>P.S.</strong> Ignore my debugging macros. And I'm aware that the syntax in use in the switch statement is a GCC extension and may not compile in all compilers. Oh and the code does work as posted.</p> http://stackoverflow.com/questions/1712934/storing-hexadecimal-values-as-binary-in-mysql 1 Storing hexadecimal values as binary in MySQL nickf 2009-11-11T04:03:49Z 2009-11-11T04:49:48Z <p>I was thinking about how I'm storing passwords in my database : appropriately salted SHA1 strings in a CHAR(40) field. However, since the character data in there is actually just a hex representation of a 160 bit number, I thought it might be better to store it as BINARY(20).</p> <pre><code>CREATE TABLE users ( password BINARY(20) /* snip */ ); INSERT INTO users (password) VALUES (UNHEX(SHA1('mypassword')); </code></pre> <p>As I see it, one benefit of this approach is that it halves the size of that field, but I can imagine there's probably some downsides too.</p> <p>What's your opinion?</p> http://stackoverflow.com/questions/1708598/convert-decimal-to-hex-python 1 convert decimal to hex python n00bie 2009-11-10T15:00:42Z 2009-11-10T15:15:57Z <p>Hi All,</p> <p>Im building a server in python, i need to convert a decimal value to hex like this :</p> <p>let's say the packet start by 4 bytes which define the packet lenght : 00 00 00 00 if the len(packet) = 255 we would send : 00 00 00 ff</p> <p>Now my problem is that sometimes the packet is bigger than 256 as for example 336, then it would be : 00 00 01 50</p> <p>i dont know how to do that in python, and i will really appreciate any help. Thanks ! </p> http://stackoverflow.com/questions/1677644/detect-non-printable-characters-in-javascript 0 Detect non-printable characters in JavaScript deepwell 2009-11-05T00:38:07Z 2009-11-06T19:24:58Z <p>Is it possible to detect binary data in JavaScript?</p> <p>I'd like to be able to detect binary data and convert it to hex for easier readability/debugging.</p> <p><hr></p> <p>After more investigation I've realized that detecting binary data is not the right question, because binary data can contain regular characters, and non-printable characters.</p> <p>Outis's question and answer (/[\x00-\x1F]/) is really the best we can do in an attempt to detect binary characters.</p> <p>Note: You must remove line feeds and possibly other characters from your ascii string sequence for the check to actually work.</p> http://stackoverflow.com/questions/1681144/what-exactly-is-the-danger-of-using-magic-debug-values-such-as-0xdeadbeef-as-li 1 What exactly is the danger of using magic debug values (such as 0xDEADBEEF) as literals? Yuval A 2009-11-05T15:08:48Z 2009-11-05T17:27:36Z <p>It goes without saying that using hard-coded, hex literal pointers is a disaster:</p> <pre><code>int *i = 0xDEADBEEF; // god knows if that location is available </code></pre> <p>However, what exactly is the danger in using hex literals as variable <em>values</em>?</p> <pre><code>int i = 0xDEADBEEF; // what can go wrong? </code></pre> <p>If these values are indeed "dangerous" due to their <a href="http://en.wikipedia.org/wiki/Magic%5Fnumber%5F%28programming%29#Magic%5Fdebug%5Fvalues" rel="nofollow">use in various debugging scenarios</a>, then this means that even if I do not use these literals, any program that during runtime happens to stumble upon one of these values might crash.</p> <p>Anyone care to explain the real dangers of using hex literals?</p> <p><hr></p> <p><strong>Edit:</strong> just to clarify, I am not referring to the general use of constants in source code. I am specifically talking about <strong>debug-scenario issues</strong> that might come up to the use of hex values, with the specific example of <code>0xDEADBEEF</code>.</p> http://stackoverflow.com/questions/688504/binary-diff-tool 4 Binary diff tool? Ian Boyd 2009-03-27T04:01:17Z 2009-10-30T05:50:33Z <p>I need a utility to diff two binary files. The files are large (6-50GB)</p> <p>Beyond Compare is my favorite diff tool, and I own it, but it cannot handle binary files over what can fit in the process's address space.</p> <p>HexDiff 3.0 seemed interesting, except the trial version doesn't do diff's <code>*</code>rolls eyes<code>*</code>.</p> <ul> <li><p>The tool should be free, since I'm not paying money to figure out that it doesn't work.</p></li> <li><p>The tool should be a Windows application.</p></li> <li><p>The tool should not be console based.</p></li> <li><p>The tool should be graphical (aka a Windows application).</p></li> </ul> http://stackoverflow.com/questions/219245/converting-a-string-to-hex-in-sql 1 Converting a String to HEX in SQL Shadow_x99 2008-10-20T17:33:53Z 2009-10-28T14:53:28Z <p>I'm looking for a way to transform a genuine string into it's hexadecimal value in SQL. I'm looking something that is Informix-friendly but I would obviously prefer something database-neutral </p> <p>Here is the select I am using now:</p> <pre><code>SELECT SomeStringColumn from SomeTable </code></pre> <p>Here is the select I would like to use: SELECT hex( SomeStringColumn ) from SomeTable</p> <p>Unfortunately nothing is that simple... Informix gives me that message: <em>Character to numeric conversion error</em></p> <p>Any idea?</p> http://stackoverflow.com/questions/1632144/why-is-this-statement-true-in-php 2 Why is this statement true in PHP? Brad 2009-10-27T16:42:59Z 2009-10-27T19:08:46Z <p>I don't understand why this statement in PHP echos 'whaaa?' -- <code>(0x0F | 0xF0)</code> should be <code>0xFF</code> no?</p> <pre><code>if((0x0FFFFFFF | 0xF0FFFFFF) != 0xFFFFFFFF) echo 'whaaa?'; </code></pre> http://stackoverflow.com/questions/1631440/creating-a-iso-8859-1-string-from-a-hex-string-in-java-shifting-bits 1 Creating a ISO-8859-1 string from a HEX-string in Java, shifting bits. ABeanSits 2009-10-27T15:05:47Z 2009-10-27T15:27:18Z <p>Hello experts!</p> <p>I am trying to convert a HEX-sequence to a String encoded in either, ISO-8859-1, UTF-8 or UTF-16BE. That is, I have a String looking like: <code>"0422043504410442"</code> this represents the characters: <code>"Test"</code> in UTF-16BE.</p> <p>The code I used to convert between the two formats was:</p> <pre><code>private static String hex2String(String hex, String encoding) throws UnsupportedEncodingException { char[] hexArray = hex.toCharArray(); int length = hex.length() / 2; byte[] rawData = new byte[length]; for(int i=0; i&lt;length; i++){ int high = Character.digit(hexArray[i*2], 16); int low = Character.digit(hexArray[i*2+1], 16); int value = (high &lt;&lt; 4) | low; if( value &gt; 127) value -= 256; rawData[i] = (byte) value; } return new String(rawData, encoding); } </code></pre> <p>This seems to work fine for me, but I still have two questions regarding this:</p> <ol> <li>Is there any simpler way (preferably without bit-handling) to do this conversion?</li> <li>How am I to interpret the line: <code>int value = (high &lt;&lt; 4) | low;</code>?</li> </ol> <p>I am familiar with the basics of bit-handling, though not at all with the Java syntax. I believe the first part shift all bits to the left by 4 steps. Though the rest I don't understand and why it would be helpful in this certain situation. </p> <p>I apologize for any confusion in my question, please let me know if I should clarify anything. Thank you. //Abeansits </p> http://stackoverflow.com/questions/1619631/c-hex-number-format 2 c++ hex number format cplusplusNewbie 2009-10-25T00:52:27Z 2009-10-25T02:26:23Z <p>Hi,I'm trying to output the hex value of a char and format it in a nice way. </p> <p>Required: <code>0x01 : value 0x1</code></p> <p>All I can get is: <code>00x1 : value 0x1</code> // or 0x1 if i don't use iomanip </p> <p>Here's the code i have, 'ch' was declared to be a unsigned char. Is there any other way to do it other than checking the value and manually add an '0'??</p> <pre><code>cout &lt;&lt; showbase; cout &lt;&lt; hex &lt;&lt; setw(2) &lt;&lt; setfill('0') &lt;&lt; (int) ch; </code></pre> <p>Edit:</p> <p>I found one solution online:</p> <pre><code>cout &lt;&lt; internal &lt;&lt; setw(4) &lt;&lt; setfill('0') &lt;&lt; hex &lt;&lt; (int) ch </code></pre> http://stackoverflow.com/questions/1459273/3-digit-hex-color-code 0 3 digit Hex color code Nimbuz 2009-09-22T10:25:07Z 2009-10-22T17:21:28Z <p>I've been using 3-digit Hex color values in CSS for a long time: #fff, #999, #069 etc., I can see how the repeating alphabets/numbers are merged to create a 3-digit hex color code, but I don't fully understand the pattern to be able to write a converter in PHP. Is there a documentation for this?</p> <p>Edit: Oh, perhaps my question wasn't clear. I need to know how some of the 6 digit hex color values are converted to 3-digits? xxxxxx (ffffff) xxyyzz (006699), these are the only two patterns, correct?</p> <p>I'd appreciate any help you can offer. Thanks!</p> http://stackoverflow.com/questions/1436336/convert-hash-to-a-hexadecimal-character-string 0 Convert hash to a hexadecimal character string oo 2009-09-17T01:38:13Z 2009-10-21T23:21:29Z <p>on this page:</p> <p><a href="http://www.shutterfly.com/documentation/OflyCallSignature.sfly" rel="nofollow">http://www.shutterfly.com/documentation/OflyCallSignature.sfly</a></p> <p>it says once you generate a hash you then:</p> <p><strong>convert the hash to a hexadecimal character string</strong></p> <p>is there code in csharp to do this?</p> http://stackoverflow.com/questions/1592158/python-convert-hex-to-float 2 Python convert hex to float jack 2009-10-20T02:32:02Z 2009-10-20T06:32:13Z <p>How to convert the following hex string to float (single precision 32-bit) in python?</p> <pre><code>"41973333" -&gt; 1.88999996185302734375E1 "41995C29" -&gt; 1.91700000762939453125E1 "470FC614" -&gt; 3.6806078125E4 </code></pre> <p>Thanks</p> http://stackoverflow.com/questions/1580592/read-in-hex-values-c 0 Read In Hex Values (C) statikfx 2009-10-16T21:42:39Z 2009-10-16T21:45:29Z <p>Hello all.</p> <p>I am currently attempting to read in Hex values from a text file.</p> <p>There can be multiple lines of Hex's and each line can be as long as needed:</p> <pre><code> f53d6d0568c7c7ce 1307a7a1c84058 b41af04b24f3eb83ce </code></pre> <p>Currently, I put together a simple loop to read in the Hex values into an <code>unsigned char line[500]</code> with fscanf as such:</p> <pre><code> for(i=0; i &lt; 500; i++) { if (fscanf(fp, "%02x", &amp;line[i]) != 1) break; } </code></pre> <p>At the current moment, this only reads in the first line. As well, it is definitely not the best approach to just throw in a random 500 there to read.</p> <p>I was assuming I could use <code>sscanf</code> with <code>fgets</code> or something of that nature. But I was unsure if this would be the best approach.</p> <p>If anyone could help point me in the right direction, I would greatly appreciate it.</p> http://stackoverflow.com/questions/57803/how-to-convert-decimal-to-hex-in-javascript 14 How to convert decimal to hex in JavaScript? Luke Smith 2008-09-11T22:26:58Z 2009-10-15T13:58:06Z <p>How do you convert decimal values to their hex equivalent in JavaScript?</p>