4
votes
2answers
175 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 …
0
votes
2answers
32 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 …
-1
votes
2answers
37 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 0 …
0
votes
1answer
39 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 …
0
votes
2answers
24 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 a …
0
votes
7answers
310 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 passwor …
1
vote
2answers
91 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 mistakin …
0
votes
1answer
76 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 bec …
7
votes
8answers
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 …
0
votes
5answers
653 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 …
2
votes
2answers
109 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
4k 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 datab …
0
votes
0answers
17 views
Error while fetching Data in form of XML from SQL Server Database
I have a Multi-tier ASP.NET application. In which am reading data from SQL Server 2005. Am fetching XML data directly from database using "FOR XML AUTO,ELEMENTS" suffix in my query …
1
vote
3answers
160 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
422 views
convert hex to binary
I have abc123efff, I want to have 01010101010001010101......
How? Thanks.
