Tagged Questions

0
votes
1answer
36 views

C#: Integer value being returned as hexadecimal in VS 2008

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. But if i type …
7
votes
9answers
9k views

Convert a string representation of a hex dump to a byte array using Java?

I am looking for a way to convert a long string (from a dump), that represents hex values into a byte array. I couldn't have phrased it better than the person that posted the same question here: …
1
vote
3answers
42 views

What is the HEX code for Transperent color?

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 ? What is the HEX code for Transperent color Thanks in advance...
1
vote
4answers
99 views

How can I sum large hexadecimal values in Perl?

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 $temp is loaded with some …
4
votes
2answers
195 views

Convert a string with a hex representation of an IEEE-754 double into JavaScript numeric variable

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. I can think …
0
votes
2answers
42 views

Printing out hex values of a char* array in C gives odd values for binary input.

Here's an odd problem that's been stumping me for a bit. 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 …
-1
votes
2answers
45 views

need help writing hexadecimals to an exe file

can somone tell me how to write these hexadecimals to an exe file while still having it exec 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 …
0
votes
1answer
40 views

base64 encoded data mixed in with “random” hex

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 …
0
votes
2answers
31 views

Within a windows batch file, how do I set an environment variable with the hexadecimal representation of a decimal number?

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 …
1
vote
7answers
333 views

What does 0x0A mean?

What does 0x0A mean in C++? if (version < 760 || version > 760){ disconnectClient(0x0A, STRING_CLIENT_VERSION); } uint32_t accnumber = msg.GetU32(); std::string password = msg.GetString(); …
1
vote
2answers
110 views

Hex 0x0001 vs 0x00000001

hi, 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. why use one …
0
votes
1answer
98 views

Detect Unicode characters in NSString on iPhone

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. I need to do this is because unicode …
0
votes
5answers
668 views

Convert a single hex character to its byte value in java

I have a single hexadecimal character, say char c = 'A'; What's the proper way of converting that to its integer value int value =??; assert(a == 10); Doesn't matter really for now if a is an …
2
votes
2answers
115 views

Common lisp integer to hex conversion

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?
1
vote
3answers
5k views

Converting a String to HEX in SQL

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 Here …

1 2 3 4 5 next
15 30 50 per page