active questions tagged hexadecimal - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T06:32:16Z http://stackoverflow.com/feeds/tag/hexadecimal http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1919148/64-bit-hexadecimal-to-base-10-conversion 0 64 bit hexadecimal to base 10 conversion [closed] Sandor Ajzenstat 2009-12-17T02:38:49Z 2009-12-17T02:50:43Z <p>The hex value is 1679EDDF2CFD1455</p> <p>I am expecting the decimal equivalent to be 1.619587084 X 10 ^ 18</p> <p>If possible, could someone please confirm this, and if possible I would love more significant digits to the decimal value.</p> <p>Thank you in advance.</p> http://stackoverflow.com/questions/1903648/find-hex-patterns-and-number-of-occurrences 2 Find HEX patterns and number of occurrences Cy 2009-12-14T21:32:01Z 2009-12-14T21:45:07Z <p>Hi,</p> <p>I'd like to find patterns and sort them by number of occurrences on an HEX file I have.</p> <p>I am not looking for some specific pattern, just to make some statistics of the occurrences happening there and sort them.</p> <pre><code>DB0DDAEEDAF7DAF5DB1FDB1DDB20DB1BDAFCDAFBDB1FDB18DB23DB06DB21DB15DB25DB1DDB2EDB36DB43DB59DB32DB28DB2ADB46DB6FDB32DB44DB40DB50DB87DBB0DBA1DBABDBA0DB9ADBA6DBACDBA0DB96DB95DBB7DBCFDBCBDBD6DB9CDBB5DB9DDB9FDBA3DB88DB89DB93DBA5DB9CDBC1DBC1DBC6DBC3DBC9DBB3DBB8DBB6DBC8DBA8DBB6DBA2DB98DBA9DBB9DBDBDBD5DBD9DBC3DB9BDBA2DB84DB83DB7DDB6BDB58DB4EDB42DB16DB0DDB01DB02DAFCDAE9DAE5DAD9DAE2DAB7DA9BDAA6DA9EDAAADAC9DACADAC4DA92DA90DA84DA89DA93DAA9DA8CDA7FDA62DA53DA6EDA </code></pre> <p>That's an excerpt of the HEX file, and as an example I'd like to get:</p> <p>XX occurrences of BDBDBD</p> <p>XX occurrences of B93D</p> <p>Is there a way to mine the file to generate that output?</p> http://stackoverflow.com/questions/1874910/convert-hex-string-to-long 2 Convert hex string to long Hua-Ying 2009-12-09T16:06:47Z 2009-12-09T21:41:17Z <p>Are there any Cocoa classes that will help me convert a hex value in a NSString like <code>0x12FA</code> to a <code>long</code> or <code>NSNumber</code>? It doesn't look like any of the classes like <code>NSNumberFormatter</code> support hex numbers.</p> <p>Thanks, Hua-Ying</p> http://stackoverflow.com/questions/1815406/c-integer-value-being-returned-as-hexadecimal-in-vs-2008 0 C#: Integer value being returned as hexadecimal in VS 2008 Shyju 2009-11-29T12:34:24Z 2009-11-29T12:37:11Z <p>I have a c# code snippets where i am creating a list of my custom class objects.When i am taking the count of that,its showing me a hexadecimal value in the quickwatch window.</p> <p><img src="http://img509.imageshack.us/img509/434/morrisissueinvs2008.jpg" alt="alt text"></p> <p>But if i type listItemCount.ToStrin(), i am getting the proper value as output (ie : 50061)</p> <p>Any idea how to correct this ?</p> http://stackoverflow.com/questions/140131/convert-a-string-representation-of-a-hex-dump-to-a-byte-array-using-java 7 Convert a string representation of a hex dump to a byte array using Java? ravigad 2008-09-26T15:12:45Z 2009-11-26T16:57:10Z <p>I am looking for a way to convert a long string (from a dump), that represents hex values into a byte array.</p> <p>I couldn't have phrased it better than the person that posted the same question here:</p> <p><a href="http://www.experts-exchange.com/Programming/Programming_Languages/Java/Q_21062554.html" rel="nofollow">http://www.experts-exchange.com/Programming/Programming_Languages/Java/Q_21062554.html</a></p> <p>But to keep it original, I'll phrase it my own way: suppose I have a string "00A0BF" that I would like interpreted as the byte[] {0x00,0xA0,0xBf} what should I do?</p> <p>I am a Java novice and ended up using BigInteger and watching out for leading hex zeros. But I think it is ugly and I am sure I am missing something simple... </p> http://stackoverflow.com/questions/1801580/what-is-the-hex-code-for-transperent-color 1 What is the HEX code for Transperent color? Nic 2009-11-26T04:47:26Z 2009-11-26T04:52:52Z <p>Hi. I want to set color as transperent. In RGB 255 0 255 with alpha 5 may work as transperent, But How to get it in HEX ?</p> <p>What is the HEX code for Transperent color Thanks in advance...</p> http://stackoverflow.com/questions/1790380/how-can-i-sum-large-hexadecimal-values-in-perl 1 How can I sum large hexadecimal values in Perl? dls 2009-11-24T14:21:54Z 2009-11-25T14:09:45Z <p>I'm iterating over a set of 32-bit hexadecimal strings ("DEADBEEF", "12345678", etc..) and I'm trying to sum them together to form a 32-bit checksum. Assume that the variable <code>$temp</code> is loaded with some hexadecimal string in the example below.</p> <pre><code>my $temp; my $checksum; for (...) { #assume $temp is loaded with a new hex string here my $tempNum = hex ($temp); $checksum += $tempNum; $checksum &amp;= 0xFFFFFFFF; print printf("checksum: %08X",$checksum); } </code></pre> <p>The first few values are "7800798C", "44444444", and "44444444". The output is:</p> <blockquote> <p>checksum: 7800798C<br> checksum: BC44BDD0<br> checksum: FFFFFFFF<br> checksum: FFFFFFFF<br></p> </blockquote> <p>etc..</p> <p>as you can see the first two summations are correct and then it seems to saturate. Am I missing something regarding the size limit of Perl variables?</p> <p><strong>EDIT</strong>: This is the actual output from the script (string is the hex string, value is the decimal conversion of that string, and checksum is the resulting output):</p> <pre> string: 7800798C, value: 2013297036, checksum 7800798C string: 44444444, value: 1145324612, checksum BC44BDD0 string: 44444444, value: 1145324612, checksum FFFFFFFF string: 44444444, value: 1145324612, checksum FFFFFFFF string: 78007980, value: 2013297024, checksum FFFFFFFF string: 44444444, value: 1145324612, checksum FFFFFFFF </pre> http://stackoverflow.com/questions/1597709/convert-a-string-with-a-hex-representation-of-an-ieee-754-double-into-javascript 4 Convert a string with a hex representation of an IEEE-754 double into JavaScript numeric variable Nosredna 2009-10-20T22:37:30Z 2009-11-22T08:29:48Z <p>Suppose I have a hex number "4072508200000000" and I want the floating point number that it represents (293.03173828125000) in IEEE-754 double format to be put into a JavaScript variable.</p> <p>I can think of a way that uses some masking and a call to pow(), but is there a simpler solution?</p> <p>A client-side solution is needed.</p> <p>This may help. It's a website that lets you enter a hex encoding of an IEEE-754 and get an analysis of mantissa and exponent.</p> <p><a href="http://babbage.cs.qc.edu/IEEE-754/64bit.html" rel="nofollow">http://babbage.cs.qc.edu/IEEE-754/64bit.html</a></p> <p>Because people always tend to ask "why?," here's why: I'm trying to fill out an existing but incomplete implementation of Google's Procol Buffers (protobuf).</p> http://stackoverflow.com/questions/1773572/printing-out-hex-values-of-a-char-array-in-c-gives-odd-values-for-binary-input 0 Printing out hex values of a char* array in C gives odd values for binary input. Kozaki 2009-11-20T22:12:08Z 2009-11-21T00:07:37Z <p>Here's an odd problem that's been stumping me for a bit.</p> <p>The program is written in C89, and it reads a file into a char* array 16 bytes at a time (using fread and a size of sizeof(char)). The file is fopen'd with the "rb" flags. The array is then passed into a function that basically takes the 16 hex values and sticks it into a string, each value seperated by a space.</p> <p>Here's where the weirdness comes in. The function produces a nice hex dump, 16 bytes at a time, for a text file input that I have. But it screws up if I try it on a small bitmap image -- I end up with output in the string like ffffff88 instead of just 88.</p> <p>The hex values are placed into the output string using sprintf("%02x ", input[i]); in a loop.</p> <p>Why would this work properly for some files but not others?</p> http://stackoverflow.com/questions/1773428/need-help-writing-hexadecimals-to-an-exe-file -1 need help writing hexadecimals to an exe file jfmherokiller 2009-11-20T21:45:12Z 2009-11-20T22:01:13Z <p>can somone tell me how to write these hexadecimals to an exe file while still having it exec</p> <p><hr></p> <pre><code>4D 5A 50 00 02 00 00 00 04 00 0F 00 FF FF 00 00 B8 00 00 00 00 00 00 00 40 00 1A 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 BA 10 00 0E 1F B4 09 CD 21 B8 01 4C CD 21 90 90 54 68 69 73 20 70 72 6F 67 72 61 6D 20 6D 75 73 74 20 62 65 20 72 75 6E 20 75 6E 64 65 72 20 57 69 6E 33 32 0D 0A 24 37 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // Removed approximately 400 similar lines from the original posting. // (no point to be so verbose...) 40 FC C3 E8 F3 FF FF FF 48 C3 90 55 8B EC FF 75 08 E8 51 FB FF FF 5D C2 04 00 90 E9 3B F9 FF FF C3 8B C0 E8 9B 01 00 00 C3 8B C0 55 8B EC 83 C4 E0 53 56 57 89 4D F8 8B F2 89 45 FC 8B 5D FC 8B 1B 8B 45 08 8B 38 85 FF 7F 1A 85 FF 7D 07 B0 04 E8 DE E0 FF FF 8B 45 FC 8B D6 E8 C4 FF FF FF E9 4A 01 00 00 33 C0 89 45 F0 85 DB 74 0B 83 EB 04 8B 03 89 45 F0 83 EB 04 33 C0 8A 46 01 01 C6 8B C6 8B 50 02 89 55 E8 8B 5 </code></pre> http://stackoverflow.com/questions/1760150/base64-encoded-data-mixed-in-with-random-hex 0 base64 encoded data mixed in with "random" hex Mala 2009-11-19T00:33:36Z 2009-11-19T00:44:02Z <p>I get an input string with some data that's base64 encoded. Unfortunately, it gets random hexadecimal data (all lowercase) mixed it. It's fairly straightforward to sort out by hand because the hexadecimal data all seems to be in segments of 32 bytes. For example, I can format an example string like this:</p> <pre> 6dd11d15c419ac219901f14bdd999f38 0ad94e978ad624d15189f5230e5435a9 2dc19fe95e583e7d593dd52ae7e68a6e 465ffa6074a371a8958dad3ad271181a 23310939b981b4e56f2ecee26f82ec60 fe04bef49be47603d1278cc80673b226 VGhpcyBpcyBzb 6dd11d15c419ac219901f14bdd999f38 0ad94e978ad624d15189f5230e5435a9 2dc19fe95e583e7d593dd52ae7e68a6e 465ffa6074a371a8958dad3ad271181a 23310939b981b4e56f2ecee26f82ec60 fe04bef49be47603d1278cc80673b226 6dd11d15c419ac219901f14bdd999f38 0ad94e978ad624d15189f5230e5435a9 2dc19fe95e583e7d593dd52ae7e68a6e 465ffa6074a371a8958dad3ad271181a 23310939b981b4e56f2ecee26f82ec60 fe04bef49be47603d1278cc80673b226 21lIGJhc2UtNjQ bb4af7e61760735ba17c29e8f542a668 75da91e90863f1ddb7e149297fc59afc f5de951fb65d06d2927aab7b9b54830e 2d935616a54c381c2f38db3731d5a378 gZW5jb2RlZCB 6dd11d15c419ac219901f14bdd999f38 0ad94e978ad624d15189f5230e5435a9 2dc19fe95e583e7d593dd52ae7e68a6e 465ffa6074a371a8958dad3ad271181a 23310939b981b4e56f2ecee26f82ec60 fe04bef49be47603d1278cc80673b226 kYXRhIGhvb3JheSE= </pre> <p>Basically, I need to get the base64 stuff out and decode it (in PHP). The catch is that I get it all as one long string and it's not always immediately obvious where to put the linebreaks. For example, the first bit of base64 stuff ends in 'b', easily mistaken for some of the hex data. I'm at something of a loss for how to do this... Any ideas?</p> <p>Thanks!<br> -mala</p> http://stackoverflow.com/questions/1751581/within-a-windows-batch-file-how-do-i-set-an-environment-variable-with-the-hexade 0 Within a windows batch file, how do I set an environment variable with the hexadecimal representation of a decimal number? Robert Gardner 2009-11-17T20:34:47Z 2009-11-17T21:41:07Z <p>When using the Windows set /p and set /a commands to accept a hexadecimal value from the command line and convert it to decimal. What I need is to be able to take a decimal value and set and environment variable with its hexadecimal equivalent.</p> <p>Current batch file coding:</p> <pre><code>@echo off set HexV1=%1 set HexV2=%2 set /A DecV1=0x%HexV1% set /A DecV2=0x%HexV2% set /A HexV3=0x%HexV1% + 0x1 set /A HexV4=0x%Hexv2% + 0x2 set Dec set Hex </code></pre> <p>Produces:</p> <pre><code>C:&gt;hexmath a f DecV1=10 DecV2=15 HexV1=a HexV2=f HexV3=11 HexV4=17 </code></pre> <p>What I need is to be able to set <code>HexV3</code> to b and <code>HexV4</code> to 11.</p> <p>Any suggestions?</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/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/1706633/detect-unicode-characters-in-nsstring-on-iphone 0 Detect Unicode characters in NSString on iPhone Fin 2009-11-10T09:27:22Z 2009-11-10T14:24:49Z <p>I am working on an SMS application for the iPhone. I need to detect if the user has entered any unicode characters inside the NSString they wish to send. </p> <p>I need to do this is because unicode characters take up more space in the message, and also because I need to convert them into their hexadecimal equivalents.</p> <p>So my question is how do I detect the presence of a unicode character in an NSString (which I read from a UITextView). Also, how do I then convert those characters into their UCS‐2 hexadecimal equivalents?</p> <p>E.g 繁 = 7E41, 体 = 4F53, 中 = 4E2D, 文 = 6587</p> http://stackoverflow.com/questions/1114381/convert-a-single-hex-character-to-its-byte-value-in-java 0 Convert a single hex character to its byte value in java nos 2009-07-11T18:42:26Z 2009-11-09T17:52:10Z <p>I have a single hexadecimal character, say</p> <pre><code>char c = 'A'; </code></pre> <p>What's the proper way of converting that to its integer value </p> <pre><code>int value =??; assert(a == 10); </code></pre> <p>Doesn't matter really for now if <strong>a</strong> is an int or a byte.</p> http://stackoverflow.com/questions/1521509/common-lisp-integer-to-hex-conversion 2 Common lisp integer to hex conversion Michael Minerva 2009-10-05T18:02:20Z 2009-11-07T14:42:13Z <p>Is there a similar function to (parse-integer "ff" :radix 16) that will take me back the other way? If I have the int 255 how do I convert it to the string ff? </p> 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/1629486/error-while-fetching-data-in-form-of-xml-from-sql-server-database 0 Error while fetching Data in form of XML from SQL Server Database Knightshade 2009-10-27T08:50:41Z 2009-10-27T12:23:47Z <p>I have a Multi-tier ASP.NET application. In which am reading data from SQL Server 2005. Am fetching XML data directly from database using "FOR XML AUTO,ELEMENTS" suffix in my query. The problem is some SQL records contain data with invalid chars (like hex values) which throws error while reading it using the <strong>XMLReader obtained by executing SQLCommand.ExecuteXMLReader() method</strong>. I read that error can be avoided by making some changes to settings property of XMLReader, Am unable to change settings for this XMLReader, .NET says it read only. I've coded a method to do this in business layer of my app. Moreover many parts of my application are already using this method. Is there any way or work around to resolve this without affecting other parts of my app.</p> <pre><code>System.Web.HttpContext zContext = HttpContext.Current; string zszRetString = ""; XmlReader zXmlReader = null; XmlTextWriter zXmlWriter = null; StreamReader zStreamReader = null; MemoryStream zMemStream = null; SqlConnection Conn; SqlCommand Cmd; Conn = new SqlConnection ( Database.m_DSN ); Cmd = new SqlCommand ( xszQueryString, Conn ); Cmd.CommandType = CommandType.Text; try { Conn.Open (); zMemStream = new MemoryStream ( 10 * 1024 ); zXmlReader = Cmd.ExecuteXmlReader (); zXmlWriter = new XmlTextWriter ( zMemStream, System.Text.Encoding.ASCII ); if ( xbNeedHeader ) zXmlWriter.WriteStartDocument ( true ); if ( xszRootNodeName != "" ) zXmlWriter.WriteStartElement ( xszRootNodeName ); while ( zXmlReader.Read () ) { switch ( zXmlReader.NodeType ) { case XmlNodeType.Element: zXmlWriter.WriteStartElement ( zXmlReader.Prefix, Utilities.EncodeForXML ( zXmlReader.LocalName ), zXmlReader.NamespaceURI ); if ( zXmlReader.HasAttributes ) { zXmlWriter.WriteAttributes ( zXmlReader, true ); zXmlReader.MoveToElement (); } if ( zXmlReader.IsEmptyElement ) zXmlWriter.WriteEndElement (); break; case XmlNodeType.EndElement: zXmlWriter.WriteEndElement (); break; case XmlNodeType.Text: zXmlWriter.WriteString ( Utilities.EncodeForXML ( zXmlReader.Value ) ); break; case XmlNodeType.CDATA: zXmlWriter.WriteCData ( zXmlReader.Value ); break; } } if ( xszRootNodeName != "" ) zXmlWriter.WriteEndElement (); if ( xbNeedHeader ) zXmlWriter.WriteEndDocument (); zXmlWriter.Flush (); zMemStream.Position = 0; zStreamReader = new StreamReader ( zMemStream ); zszRetString = zStreamReader.ReadToEnd (); } catch ( Exception e ) { //Exception handling code } finally { //Finalizer Code } return zszRetString; </code></pre> http://stackoverflow.com/questions/1539343/problem-bug-loading-hexadecimal-data-into-matlab 1 Problem (bug?) loading hexadecimal data into MATLAB Kena 2009-10-08T17:33:44Z 2009-10-08T20:30:06Z <p>I'm trying to load the following ascii file into MATLAB using load() </p> <pre><code>% some comment 1 0xc661 2 0xd661 3 0xe661 </code></pre> <p>(This is actually a simplified file. The actual file I'm trying to load contains an undefined number of columns and an undefined number of comment lines at the beginning, which is why the load function was attractive)</p> <p>For some strange reason, I obtain the following: </p> <pre><code>K&gt;&gt; data = load('testMixed.txt') data = 1 50785 2 58977 3 58977 </code></pre> <p>I've observed that the problem occurs anytime there's a "d" in the hexadecimal number.</p> <p>Direct hex2dec conversion works properly:</p> <pre><code>K&gt;&gt; hex2dec('d661') ans = 54881 </code></pre> <p>importdata seems to have the same conversion issue, and so does the ImportWizard:</p> <pre><code>K&gt;&gt; importdata('testMixed.txt') ans = 1 50785 2 58977 3 58977 </code></pre> <p>Is that a bug, am I using the load function in some prohibited way, or is there something obvious I'm overlooking? </p> <p>Are there workarounds around the problem, save from reimplementing the file parsing on my own?</p> <p>Edited my input file to better reflect my actual file format. I had a bit oversimplified in my original question.</p> http://stackoverflow.com/questions/1425493/convert-hex-to-binary 1 convert hex to binary aaaaaaaaaaaaaaaaaaa 2009-09-15T06:41:37Z 2009-10-05T11:00:55Z <p>I have abc123efff, I want to have 01010101010001010101......</p> <p>How? Thanks.</p> http://stackoverflow.com/questions/1459006/is-there-a-c-equivalent-to-pythons-unhexlify 1 Is there a C# equivalent to Python's unhexlify? [closed] RyanW 2009-09-22T09:19:13Z 2009-09-22T09:38:38Z <blockquote> <p><strong>Possible Duplicate:</strong><br /> <a href="http://stackoverflow.com/questions/854012/how-to-convert-hex-to-a-byte-array">How to convert hex to a byte array?</a> </p> </blockquote> <p>I'm searching for a python compatible method in C# to convert hex to binary. I've reversed a hash in Python by doing this:</p> <pre><code>import sha import base64 import binascii hexvalue = "5baa61e4c9b93f3f0682250b6cf8331b7ee68fd8" binaryval = binascii.unhexlify(hexvalue) print base64.standard_b64encode(binaryval) &gt;&gt; W6ph5Mm5Pz8GgiULbPgzG37mj9g= </code></pre> <p>So far all of the various Hex2Binary C# methods I've found end up throwing OverflowExceptions:</p> <pre><code>static string Hex2Binary(string hexvalue) { string binaryval = ""; long b = Convert.ToInt64(hexvalue, 16); binaryval = Convert.ToString(b); byte[] bytes = Encoding.UTF8.GetBytes(binaryval); return Convert.ToBase64String(bytes); } </code></pre> <p>Anybody got a tip on how to produce a C# method to match the python output?</p> http://stackoverflow.com/questions/311165/how-do-you-convert-byte-array-to-hexadecimal-string-and-vice-versa-in-c 17 How do you convert Byte Array to Hexadecimal String, and vice versa, in C#? alextansc 2008-11-22T10:03:13Z 2009-09-14T21:13:35Z <p>This is probably a common question over the Internet, but I couldn't find an answer that neatly explains how you can convert a byte array to a hexadecimal string, and vice versa.</p> <p>Any takers?</p> http://stackoverflow.com/questions/1416571/method-to-convert-from-hex-to-integer-in-c-cant-get-lowercase 0 Method to convert from Hex to Integer in C, can't get lowercase! SkyWookie 2009-09-13T01:00:11Z 2009-09-14T14:34:17Z <p>Hey everyone, just a quick thing, I have the hex to integer working, but I need to get the numbers lowercase. Here's what I have, any ideas to get to get the A thru F case insensitive?</p> <pre><code>int htoi(char f[]) { int z, n; n = 0; for (z = 0; f[z] &gt;= '0' &amp;&amp; f[z] &lt;= 'F'; ++z) if (f[z] &gt;= 'A' &amp;&amp; f[z] &lt;= 'F') n = 10 + 16 * n + (f[z] - 'A'); else n = 16 * n + (f[z] - '0'); } </code></pre> <p>Probably just a small thing, but I'd like to include a-f and A-F. Thanks for your help!</p> http://stackoverflow.com/questions/1407200/extratinf-rgb-components-frm-hex-digit-in-java 0 extratinf RGB components frm HEX digit in java unknown (google) 2009-09-10T19:21:31Z 2009-09-10T19:42:18Z <p>i have color= #12FFFF . that is color in this format where 12FFFF are hexadecima numbers.Now i want to get the each of indepenent R,G,B componetents in decimal. How do i do it in java?</p> http://stackoverflow.com/questions/1393238/hex-representaion-of-bytes-in-a-string 1 Hex representaion of bytes in a String Tahir Akram 2009-09-08T10:38:06Z 2009-09-09T06:36:17Z <p>I read somewhere that string 0123456789ABCDEFFEDCBA987654321089ABCDEF01234567 is 192 bit (24). Its written that it is a "hex representation of bytes"</p> <p>I need help on this concept.</p> <p>PS: This is secret key of TripleDES algorithm.</p> http://stackoverflow.com/questions/1395363/what-is-the-syntax-to-check-for-element-present-using-style-in-ie 0 What is the syntax to check for element present using Style in IE unknown (yahoo) 2009-09-08T17:54:12Z 2009-09-09T01:04:38Z <p>I have the following line that works for Firefox</p> <p>assertTrue(!selenium.isElementPresent("//input[@name=\""+chosen.getField().getName()+"\" and contains(@style, \"color: rgb(255, 0, 0);\")]")); </p> <p>But Fails in IE.</p> <p>When i inspect the field in IE, i see the color style represented in hexadecimal. How would you represent the line above to work on IE?</p> http://stackoverflow.com/questions/1389046/what-is-the-specification-of-hexadecimal-date-format-in-mssql-server 0 What is the specification of Hexadecimal Date format in MSSQL server? Kalaz 2009-09-07T11:58:52Z 2009-09-07T13:40:08Z <p>MSSQL Management studio generated value of datatype "Date" into following string: CAST(0x38320B00 AS Date).</p> <p>I need to convert it into classical .NET datetime (i have the string in c# app). I know that if it were MSSQL DateTime it would be 2 times longer Hex number and first part would specify number of days from 1.1.1900, and second part would specify number of 1/300th seconds from the noon. I thought that respectively in MSSQL Date datatype this would be just first part of DateTime (time part ommited) however it's not. When I try following snippet i get exception:</p> <pre><code>Int32 high = Int32.Parse("38320B00", NumberStyles.HexNumber); DateTime start = new DateTime(1900, 1, 1); start = start.AddDays(high); </code></pre> <p>So what this number specifies?</p> http://stackoverflow.com/questions/1388383/java-write-decimal-hex-to-a-file-and-not-string 2 (Java) Write decimal/hex to a file, and not string hatorade 2009-09-07T09:15:53Z 2009-09-07T09:32:55Z <p>If I have a file, and I want to literally write '42' to it (the value, not the string), which for example is 2a in hex, how do I do it? I want to be able to use something like outfile.write(42) or outfile.write(2a) and not write the string to the file.</p> <p>(I realize this is a simple question but I can't find the answer of google, probably because I don't know the correct search terms)</p> http://stackoverflow.com/questions/1383695/hex-offsets-can-someone-help 0 Hex offsets, can someone help? Heartrent Assassin 2009-09-05T16:15:50Z 2009-09-05T16:20:38Z <p>I'm confused about offsets. If someone tells me to edit something at the offset "0x0805F4B0", what would I type in my hex editor's "Jump To" function? </p>