Questions about the use of the hexadecimal (base 16) numeral system to represent values in computing

learn more… | top users | synonyms

0
votes
1answer
16 views

Can the HTML5 input type number be used with hexadecimal numbers?

Is there any way to make the HTML5 form input type "number" work with numbers in bases other than 10? For example, I would like to use the features of the number input type (up/down arrows, browser ...
1
vote
2answers
14 views

Why does 0x8FFFFFF equal 128MB?

I sometimes see code like this: int length = 0x8FFFFFF; //128MB byte buf = new byte[length]; It does not make much sense to me as: 0x8FFFFFF = 150,994,943 128MB = 128 * 1024 * 1024 byte = ...
4
votes
1answer
41 views

Handle command line arguments with different radices in Perl

When used as literals in a Perl program, numbers are handled in the same way as in C: "0x" prefix means hexadecimal, "0" prefix means octal, and no prefix means decimal: $ perl -E 'print 0x23 . ...
1
vote
3answers
47 views

How to convert a hexadecimal to byte array in C

Is there any library available in "C" that will convert a hexadecimal to byte array in C for e.g Input const char *ptr="ff:ff:fe:ff" There is a ":" deliminator value
1
vote
3answers
52 views

Converting a decimal to a hexadecimal number

Why we use + 55 for converting decimal to hex num . in this code we use +48 to convert integer to character . when temp < 10 . But when temp > =10 we use +55 . what does it mean by +55 ? ...
0
votes
1answer
79 views

Signed Hexadecimal to decimal in C++

By using std::hex and std::dec, it is possible to parse hexadecimal from a string and convert it to a decimal number in C++. But what if the hexadecimal number is signed? The following code for ...
0
votes
1answer
14 views

Tracker PDU Andrid Parsing

I am receiving a PDU string from tracker. And i want to parse that and get information in that string. ...
2
votes
1answer
43 views

Convert byte array to decimal

I have a byte array and I want to do some manipulation on the basis of the data I have in this array. The content of the byte array is in hexadecimal format. byte[] signal = message.getFieldValue( ...
1
vote
1answer
52 views

How to print escaped hexadecimal in a string in C++?

I have questions related to Unicode, printing escaped hexadecimal values in const char*. From what I have understood, utf-8 includes 2-, 3- or 4-byte characters, ranging from pound symbol to Kanji ...
0
votes
2answers
44 views

Hexadecimal representation of ASM command's length is weird

I've come across the following piece of code: I know the system works in Hexa and I think it's a 32-bit processor (which if I remember correctly means that the length of each memory address should ...
2
votes
1answer
44 views

Excel 2007 Duplicate Check Wrongly Converting Hex as Exponent

I have a spreadsheet used to verify a long list of 8-digit hexadecimal numbers for duplicates. It has two columns - one for the hexadecimal values and another where the following formula is used to ...
0
votes
1answer
83 views

masm assembly fastest way to write a binary file

I am trying to make a hexadecimal editor in masm assembly. I wrote some code for the writer part of the hexadecimal editor, but it is slow. I tried 2 different versions of the code. The first code ...
1
vote
4answers
101 views

How can i convert NSdata to hex string?

i tried following codes for converting a NSData to hex string values but all are wrong? here "result" is my NSdata i need a hex string as output but iam not getting that NSUInteger dataLength = ...
0
votes
3answers
81 views

Importance of Hexadecimal numbers in Computer Science

When studying programming 8085, 8086 and microporcessors in general we always have hexadecimal representation. Its ok that binary numbers are important in computers. But how these hexadecimal numbers ...
0
votes
2answers
72 views

Hexidecimal to Binary conversion

I would just like to confirm the following answer. 7037108. 8 does not form part of the number. Converting this to hexadecimal I get the answer ABCDE. Is this correct? If so what is the purpose of ...
0
votes
1answer
49 views

Can hexadecimal html be systematically converted to unicode via Javascript? [duplicate]

I have the following string for example: "Hi I am testing a weird character Ů, its a U with a circle" Now my string uses the html code &#366; to display the U-circle. I need this however to be ...
0
votes
2answers
77 views

How to print 32 bit value complete?

I want to know that how to print the complete integer value with zero also in C only. And i am in kernel space ,want to print some values in kernel module. Like if a is a 32 bit integer then int a ...
0
votes
0answers
43 views

Telerik Upload Control - filename displayed incorrectly in FF18

We have observed a bug in our app with respect to display of file names in Telerik Upload control. here is the scenario. Upload a file named - 123'123.txt. - Uploaded successfully Download the same ...
1
vote
2answers
27 views

How does the ECMA Script 5 spec allow successful parses for hex ints greater than 0xFF?

In EMCA262 version 5.1 the definition of a hexadecimal integer literal is: (document page 20, PDF page 32) HexIntegerLiteral ::     0xHexDigit ...
0
votes
1answer
95 views

Inserting string in FOR BIT DATA column in DB2

When i try inserting a string value in a column in DB2, which is defined as CHAR(15) FOR BIT DATA, i notice that it gets converted into some other format, probably hexadecimal. On retrieving the ...
0
votes
1answer
43 views

Convert little endian to big endian including 0 (zero)

Im trying to convert little endian to big endian and having trouble. I have an array that has 2 bytes of unsigned char which is hex values. and i would like to make it big endian by the zeros are gone ...
-1
votes
1answer
186 views

Decrypt javascript file

I am having an issue with a javascript file that i have never seen before. I dont know how does it even work i am posting some portion of file please help me how can i decrypt such file. This is a ...
0
votes
1answer
50 views

c++ cli hexadecimal editor works but is really slow

I was trying to build a hexadecimal editor in c++ cli and got it to read binary files to a richtext box and the write binary files from the rich text box to an empty file. it works fine but is so slow ...
1
vote
1answer
70 views

preg_match_all(): raw ASCII hex matching

I'm trying to find a pattern for raw form of hexadecimal representation of ASCII characters. An example input looks like this (with apostrophes included): '\x61\x62\x63\x87\x72\x52' or ...
1
vote
5answers
73 views

unsigned to hex digit

I got a problem that says: Form a character array based on an unsigned int. Array will represent that int in hexadecimal notation. Do this using bitwise operators. So, my ideas is the following: I ...
1
vote
1answer
71 views

How to convert integer to hex in SASS

In lieu of something like the Map data structure that Chris Eppstein mentions as a work in progress for SASS, I'm trying to achieve something similar - mapping a string to a corresponding hex value, ...
-1
votes
1answer
318 views

Converting a hex character within Assembly

I'm currently programming in Assembly for an 8086. The current task I'm doing is converting 4 hex digits into its decimal representation. I've tried following my tutors method but I'm confused at the ...
0
votes
1answer
64 views

Creating and writing a file C++

I have made a scripting language and I was writing a program which would 1: Ask for your path to read the script and 2: Compile the code into a custom Hexadecimal which would be read by another ...
-3
votes
2answers
66 views

Hex syntax symbol [closed]

When i type a byte as hex: 0x10 Is it the same with: ~0x10 What is the difference?
0
votes
0answers
36 views

Creating a unique user specific hexadecimal key

I am using mycrypt to encode data and then decode it, but the problem I am having is create the $key using pack(). How can I use the user ID for example to create a hexadecimal key that I can use ...
0
votes
2answers
114 views

Passing RGB Color to .setBackgroundColor

I have some color, coded in RGB format: 121E31 hex. How do I pass this color to Java's Color class?
1
vote
4answers
45 views

Function to turn list of ints into hexadecimal representation

I have the function hex2int as follows: import binascii def hex2int(hexdata): return [ord(c) for c in binascii.unhexlify(hexdata)] which turns a string like ...
-1
votes
2answers
101 views

The easiest way to compare string containing integer to string containing hex

I have two strings one with integer (eg string strInt = "100") and one with hex number (eg string strHex = "0x64"). Whats the quickest/nice/safe way to compare if the values of strInt and strHex are ...
0
votes
1answer
52 views

How to assign hexColor code to any datatype on java class file

I need to change a textColor on the UI scrolling. What i've done is I've declared the colors into Colors.xml files. <color name="color1">#e0195c</color> <color ...
0
votes
3answers
56 views

Convert hexadecimal number to long integer

I am trying to convert an hexadecimal number into a decimal number, but it doesn't work for very large values (over 2,147,483,647 in decimal),because int type is limited there. Here is my code which ...
1
vote
3answers
144 views

Splitting a hexadecimal string into chunks in Python

I have this part of code in Python: for line in response.body.split("\n"): if line != "": opg = int(line.split(" ")[2]) opc = int(line.split(" ")[3]) value = line.split(" ...
-1
votes
5answers
145 views

Displaying an integer to hex in C

I have this part of code in C class: int i; for (i=0;i<val;i++) mdl_print ("%u ", rec->payload[i]); mdl_print ("\n"); Variable rec->payload is uint8_t type. I would print it ...
0
votes
1answer
32 views

Hexadecimal literals in Spring XML configuration

How can I use hexadecimal literals in Spring XML configuration file? <value>#{T(java.lang.Integer).decode("0xFF")}</value> works, but I am too lazy to write such expressions for every ...
1
vote
2answers
290 views

16 bit hex string to signed int in Java

I have a string in Java representing a signed 16-bit value in HEX. This string can by anything from "0000" to "FFFF". I use Integer.parseInt("FFFF",16) to convert it to an integer. However, this ...
2
votes
3answers
132 views

Deciphering hex-codes as (probably) a timestamp [closed]

I'm parsing some logs that are very unclean and also all exist on one line per log-file. I've managed to strip them apart with Regular Expressions, leaving me with only a weird HEX-like number and ...
0
votes
2answers
198 views

Convert 8 bytes uint8_t array to 4 bytes array

I am using Arduino and I want to save the XBee MAC (upper and lower bytes) in an uint8_t array. Now I am reading bytes without problem but I am saving them in an uint8_t* array using 8 bytes. I want ...
1
vote
2answers
78 views

Having trouble reading Hexadecimal Input in C

I'm under the strong impression that I just don't understand how fscanf works. I have a text file formatted like so: 0x01 0x02 0x04 0x08 0x0F 0x1F 0x2F 0x4F And I want to read them in: inline ...
0
votes
2answers
127 views

Best way to split a hexadecimal in python?

I'm pretty new to hexadecimal in general, and I've got an application that needs me to split a hexadecimal number. For example, given the number 0x607F, I would need to return the high (0x60) or low ...
0
votes
1answer
76 views

Hexadecimal conversion error in Python

I have a problem. I have a page where I send commands to a sensor network. When I click on this part of code <a href='javascript:void(send_command_to_network("{{net.id}}", ...
-1
votes
3answers
29 views

Value to hexadecimal

I get my value like this var dataView= new DataView(imgData.array.buffer); var st = dataView.getUint8(1).toString(10); Which gives me the value 216 decimal. How can I transform varibale st to (hex ...
0
votes
2answers
306 views

Conversion binary floating point to hex floating point

For example I have 0 100 1110 sign exponent mantisa this is equal to 3.75. How to convert it to hexadecimal or octal form? I have searched really hard for few hours. Please help. Could you help me ...
1
vote
1answer
194 views

Assembly Language Addition

I am new to assembly language and I found this table of hex codes that I need http://www.keil.com/support/man/docs/is51/is51_opcodes.htm But my question is does it matter which "ADD" instruction I do ...
1
vote
3answers
255 views

printf() formatting for hex

This is more of a curious query than an important question, but why when printing hex as an 8 digit number with leading zeros, does this %#08X Not display the same result as 0x%08X? When I try to use ...
2
votes
0answers
480 views

representation of numbers in bash and printf of hexadecimal numbers in bash

I want to understand how numbers (doubles) are represented in bash and what happens when I printf numbers in hexadecimal format in bash. According to the IEEE 754 standard double should be ...
0
votes
1answer
282 views

Hexadecimal from number over serial port

Hey all i am trying to control the master volume on my Onkyo Receiver. Problem being is that it works until i get to volume 10. Volume numbers 0-9 work just fine (raises volume from 0 to 9). However, ...

1 2 3 4