1
vote
9answers
229 views
What exactly is the danger of using magic debug values (such as 0xDEADBEEF) as literals?
It goes without saying that using hard-coded, hex literal pointers is a disaster:
int *i = 0xDEADBEEF;
// god knows if that location is available
However, what exactly is the da …
0
votes
3answers
49 views
Detect non-printable characters in JavaScript
Is it possible to detect binary data in JavaScript?
I'd like to be able to detect binary data and convert it to hex for easier readability/debugging.
After more investigation I …
2
votes
2answers
108 views
Why is this statement true in PHP?
I don't understand why this statement in PHP echos 'whaaa?' -- (0x0F | 0xF0) should be 0xFF no?
if((0x0FFFFFFF | 0xF0FFFFFF) != 0xFFFFFFFF) echo 'whaaa?';
2
votes
3answers
97 views
c++ hex number format
Hi,I'm trying to output the hex value of a char and format it in a nice way.
Required: 0x01 : value 0x1
All I can get is: 00x1 : value 0x1 // or 0x1 if i don't …
2
votes
4answers
144 views
Python convert hex to float
How to convert the following hex string to float (single precision 32-bit) in python?
"41973333" -> 1.88999996185302734375E1
"41995C29" -> 1.91700000762939453125E1
"470FC6 …
1
vote
3answers
33 views
Creating a ISO-8859-1 string from a HEX-string in Java, shifting bits.
Hello experts!
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: "0422043504410442" this r …
0
votes
1answer
78 views
Read In Hex Values (C)
Hello all.
I am currently attempting to read in Hex values from a text file.
There can be multiple lines of Hex's and each line can be as long as needed:
f53d6d0568c7c7ce
1 …
2
votes
6answers
319 views
Hex to char array in C
Given a string of hex values i.e. e.g. "0011223344" so that's 0x00, 0x11 etc.
How do I add these values to a char array?
Equivalent to say: char array[4] = { 0x00, 0x11 ... };
0
votes
4answers
261 views
3 digit Hex color code
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, …
2
votes
3answers
143 views
How can I convert hex strings into numbers in Perl?
I recently wrote a script which parsed a text representation of single binary byte month field.
(Don't ask :-{ )
After fiddling with sprintf for a while I gave up and did this; …
4
votes
4answers
232 views
c why does this print a negative number?
I was expecting this to print a very large number and that same number -1 but it just prints -1 and -2, why is this?
fprintf(stderr, "%d\n", 0xffffffff);
fprintf(stderr, "%d\n", 0 …
0
votes
1answer
88 views
iPhone: change hex color format to UIColor
hi all,
i am creating a application, in which i pick the color of label from XML file.XML file return the color in Hex format(for ex. #00FF00). so how can i change this value to UI …
0
votes
3answers
149 views
Convert hash to a hexadecimal character string
on this page:
http://www.shutterfly.com/documentation/OflyCallSignature.sfly
it says once you generate a hash you then:
convert the hash to a hexadecimal character string
is th …
1
vote
6answers
263 views
hex string to signed short int in c++
Hi,
I could find the code to convert a hexadecimal string into a signed int (using strtol), but I can't find something for short int (2 bytes). Here' my piece of code :
while (!sC …
1
vote
1answer
87 views
I don’t understand how Assembly works with ASCII?
I have a program that's supposed to take values and print them back out. But when the user enters something like 12, (C in HEX) the program prints out some weird letter, that I thi …
