1
vote
2answers
82 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?
4
votes
1answer
98 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 va …
1
vote
3answers
121 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 t …
0
votes
8answers
390 views
convert hex to binary
I have abc123efff, I want to have 01010101010001010101......
How? Thanks.
1
vote
2answers
105 views
Is there a C# equivalent to Python’s unhexlify? [closed]
Possible Duplicate:
How to convert hex to a byte array?
I'm searching for a python compatible method in C# to convert hex to binary. I've reversed a hash in Python by doi …
0
votes
8answers
262 views
Method to convert from Hex to Integer in C, can’t get lowercase!
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 insensi …
1
vote
7answers
270 views
Hex representaion of bytes in a String
I read somewhere that string 0123456789ABCDEFFEDCBA987654321089ABCDEF01234567 is 192 bit (24). Its written that it is a "hex representation of bytes"
I need help on this concept.
…
2
votes
4answers
248 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 outf …
5
votes
4answers
247 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 …
2
votes
4answers
300 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" d …
0
votes
1answer
80 views
What is the specification of Hexadecimal Date format in MSSQL server?
MSSQL Management studio generated value of datatype "Date" into following string:
CAST(0x38320B00 AS Date).
I need to convert it into classical .NET datetime (i have the string i …
0
votes
1answer
50 views
What is the syntax to check for element present using Style in IE
I have the following line that works for Firefox
assertTrue(!selenium.isElementPresent("//input[@name=\""+chosen.getField().getName()+"\" and contains(@style, \"color: rgb(255, 0, …
1
vote
2answers
156 views
VB.net Hexadecimal to 8-bit unsigned array
I have a hexadecimal value
07A5953EE7592CE8871EE287F9C0A5FBC2BB43695589D95E76A4A9D37019C8
which I want to convert to a byte array.
Is there a built in function in .NET 3.5 …
1
vote
8answers
215 views
How do I get the Hex Code of a color on my webpage
I have a web page which has a pic. That pic has a color.
I need the hex code of the color in that pic. How can I get it?
0
votes
3answers
65 views
extratinf RGB components frm HEX digit in java
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 …
