16
votes
7answers
12k views
How do you convert Byte Array to Hexadecimal String, and vice versa, in C#?
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.
Any takers?
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:
…
5
votes
4answers
270 views
Given a background color, black or white text?
I'm trying to find a method for determining whether to use black or white text, given a background color (as a hex value). Has anyone dealt with this before? Is there an effective way to do this?
In …
5
votes
2answers
2k views
Converting an integer to a hexadecimal string in Ruby
Is there a built in way to convert an integer in Ruby into its hexadecimal equivalent.
The opposite of
"0A".to_i(16)
=>10
or
"0A".hex
=>10
I know how to roll my own, but it's probably …
4
votes
2answers
194 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 …
4
votes
2answers
499 views
VB6: Surely this simple Hex addition is wrong?
I'm getting odd results in some VB6 code which I've narrowed to this:
Debug.Print Hex(&hEDB80000 + &h8300)
Shows EDB78300
That can't by right can it? Surely it should be EDB88300?
Am I …
4
votes
6answers
735 views
Can someone explain hex offsets to me?
I downloaded Hex Workshop, and I was told to read a .dbc file.
It should contain 28,315 if you read
offset 0x04 and 0x05
I am unsure how to do this? What does 0x04 mean?
3
votes
2answers
144 views
How do I generate character sequences like hexadecimal with a different base?
I have the following Perl script that generates a string based on a number:
my @chars;
push @chars, map(chr, 48..57), map(chr, 97..122);
my $c = $#chars+1;
for (0..50) {
my $string;
my $l = …
3
votes
7answers
3k views
How can I convert a hexadecimal number to base 10 efficiently in C?
In C what is the most efficient way to convert a hexadecimal value to its base 10 value?
For example, if I have FFFFFFFE the result would be 4294967294.
2
votes
2answers
113 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?
2
votes
4answers
303 views
(Java) Write decimal/hex to a file, and not string
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 …
2
votes
4answers
354 views
Python - How to edit hexadecimal file byte by byte
I want to be able to open up an image file and extra the hexadecimal values byte-by-byte. I have no idea how to do this and googling "python byte editing" and "python byte array" didn't come up with …
2
votes
4answers
2k views
C++ convert hex string to signed integer
I want to convert a hex string to a 32 bit signed integer in C++.
So, for example, I have the hex string "fffefffe". The binary representation of this is 11111111111111101111111111111110. The …
2
votes
3answers
461 views
Randomly generated hexadecimal number in C#
How can I generate a random hexadecimal number with a length of my choice using C#?
2
votes
5answers
281 views
Hexadecimal numpad
The project I am currently working on requires a lot of hexadecimal numbers to be entered into the code.
I once saw a pic of an old keyboard with a hexadecimal numpad (has A-F letters on it also) …
