1
vote
2answers
65 views
Convert hex string to long
Are there any Cocoa classes that will help me convert a hex value in a NSString like 0x12FA to a long or NSNumber? It doesn't look like any of the classes like NSNumberFormatter support hex numbers.
…
0
votes
1answer
37 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 …
1
vote
4answers
125 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 …
1
vote
3answers
48 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
7answers
353 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();
…
0
votes
1answer
46 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 …
1
vote
2answers
133 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
2answers
63 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
48 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
132 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 …
4
votes
2answers
229 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
40 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 …
2
votes
2answers
136 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
187 views
Problem (bug?) loading hexadecimal data into MATLAB
I'm trying to load the following ascii file into MATLAB using load()
% some comment
1 0xc661
2 0xd661
3 0xe661
(This is actually a simplified file. The actual file I'm trying to load contains an …
1
vote
8answers
455 views
convert hex to binary
I have abc123efff, I want to have 01010101010001010101......
How? Thanks.
