Hexadecimal (also base 16, or hex) is the base-16 positional numeral system, using the 16 symbols 0–9 and A‒F.

learn more… | top users | synonyms (1)

-1
votes
0answers
13 views

How to write a custom assembly compiler (sort of) in VB.NET

I've been trying to write a simple script compiler for a custom language used by the Game Boy Advance's Z80 processor. All I want it to do is look at a human-readable command, take it and its ...
0
votes
1answer
22 views

How do I properly pass a hex value into a C dll in Python ctypes?

I am calling a C DLL from python using ctypes. For most of the functions all is working fine. But...now I have a function that requires a hex constant for input and I cannot seem to pass it correctly. ...
1
vote
1answer
30 views

Convert an integer to a 2 byte Hex value in Python

For a tkinter GUI, I must read in a Hex address in the form of '0x00' to set an I2C address. The way I am currently doing it is by reading the input as a string, converting the string to an integer, ...
0
votes
3answers
31 views

Convert Hex to Binary at android

I used this code for converts hex to binary but works only with 8 bits.How can i expand to 16bits?For example i want to convert FFFF to 1111111111111111 ....also i need to fill the zero 0... void ...
1
vote
1answer
20 views

PHP: Find valid hex in string

Assume that I have a string like:$str=abcef7ha43HEX_STRING7sf6gHEX_STRING //"HEX_STRING "is any valid hex string. I need to find HEX_STRING in $str and replace it by result from ...
-7
votes
2answers
42 views

How do you convert decimal in integer to hexadecimal in integer? [closed]

cout<<std::hex<<dec; I want to store it to an int in the form of 0x... How do I store that value in an integer instead of printing it out?
0
votes
0answers
20 views

Editing binary Registry key

i'm trying to programmatically configure some options in Internet Explorer like : Allowing ActiveX Filtering Allowing Scripting etc.. They are all stored in the registry so I can easily edit them ...
0
votes
0answers
9 views

How to decode data received in hex format into human readable format

My project is based on Greenhouse Monitoring using Wireless Sensor Nodes. I am receiving data packets of temperature,light and humidity through sensor nodes (using Jennic Evaluation Kit JN5148) and ...
0
votes
1answer
63 views

How do I reassemble a .hex file into C++ for Arduino?

I have a hex file that is to be flashed onto an Atmel chip running on an Arduino device. There are certain aspects of this file that I would like to modify before putting it onto my Arduino, but I ...
0
votes
1answer
24 views

How i can create Bit Reversal ( from MSB->LSB to LSB->MSB) at Android?

I try to reverse my binary string.Any solution? private OnClickListener btnConvListener = new OnClickListener() { public void onClick(View v) { try{ String ...
0
votes
1answer
47 views

MIPS assembly - Reading from a file with hexadecimal values

here is my question. I want to read from a txt/dat file using MIPS assembly. Problem is that everyting in the file is hexadecimal such as 0x54ebcda7. When i try to read and load this into a register, ...
0
votes
0answers
22 views

Hexadecimal String to binary PDF file

I have a hexadecimal value that is a PDF that I am getting from a web service that I am trying to save locally using PHP. The below is a snippet of the value. I have tried to achieve this using pack ...
0
votes
2answers
47 views

Convert hexadecimal number to double

The string of the hexadecimal number is like: 0X1.05P+10 The real value of this hexadecimal number is:1044.0 I can convert it using C language with method strtod. But I can't find the way to ...
0
votes
1answer
32 views

Can't convert hex color to rgb because of int representation

I'm downloading hex color from web and when I try to convert it to RGB it's not working. I'm using this function: #define UIColorFromRGB(rgbValue) [UIColor colorWithRed:((float)((rgbValue & ...
0
votes
0answers
31 views

Hexadecimal to String PDF

I have a hexadecimal value that I need to convert back to a pdf and save it. I have tried to convert to string and display but browser keeps failing to load the pdf. I am retrieving the pdf from a web ...
0
votes
2answers
96 views

C++ Hex string to byte array

First off, I've Googled this question over the past few days but everything I find doesn't work. I don't receive runtime errors but when I type in the same key (in the form of a hex string) that the ...
1
vote
1answer
27 views

Using NodeJS buffer

I have following code: var packet = "\xFF\xFF\xFF\xFF"; packet += "\x6D"; packet += "127.0.0.1:" + this.port; packet += "\x00"; packet += this.name; packet += "\x00"; packet += this.map; packet += ...
-1
votes
2answers
33 views

hex value Textview input to byte []

I got some important question: I need to send a Hexadecimal value stored in a bye[] (max. 4 byte) witch i have typed in in my textview of my android phone application. ...
0
votes
1answer
10 views

Decoding a picture from a gps tracker

I'am developing a server for a GPS Tracker that can send pictures taken by a camera connected to it, inside a vehicle. The problem is that I follow every step in the manual and I can't still decode ...
0
votes
3answers
50 views

read signed int from a bin file in C gives me wrong results

I want to read data from a .bin file. Actually If I preview the data of my bin file I see something like this: 0000000 3030 3030 3030 3730 300a 3030 3030 3030 0000010 0a35 ...
1
vote
1answer
39 views

How to convert hex string 'o\xf2\x00\x00' into a int32?

all! When I read first 4 bytes with python code len = fobj.read(4) I got 'o\xf2\x00\x00'. This should be an int32, and when I read the file with other tool (matlab, for example), it gives 62063. ...
0
votes
1answer
24 views

Javacript - Convert hex to a lighter hex color

I found this code online, but it doesn't do what I want (you can see what it does here: http://devs.dream-portal.net/dp11/index.php Javascript: function ColorLuminance(hex, lum) { // validate ...
0
votes
1answer
14 views

Limit of Binary to Hex conversion in PHP

I need to convert a binary string into a hex string. This code works fine: <? $binary = "1111111111111111111111101000011111111111111111110000001000100100"; $hex = dechex(bindec($binary)); echo ...
2
votes
1answer
26 views

How do I convert among printed decimal/octal/hex/UTF-8 representations of a UTF-8 character from the command-line?

In another question someone suggested echo -e with \0<sequence> for octal, and \x<sequence> for hex. E.g.: echo -e "\\0302\\0241" --> ¡ Is there a simple way to convert in the other ...
1
vote
1answer
51 views

How do I use vim as a hex editor on OSX?

I have tried using :Hexmode and :%!xxd but to no avail. Also tried opening vim with -b flag and then using :setlocal display=uhex. The :%!xxd did nothing (claimed illegal) :Hexmode just left ...
2
votes
6answers
44 views

Bit manipulation Hexadecimal C++

I have an unsigned int and a hex value. I want to be able to check if the unsigned int contains the hex value; e.g: unsigned int reason = 0x80020002 #define MAJOR_ERROR_CODE 0x00020000 #define ...
-1
votes
0answers
27 views

Looping and showing hex string as checkboxes [closed]

I have a database table with fields such as with From and To as hex like: From To data A1234 A1239 Hello B2000 B4000 World C3000 C4000 Simple I want to traverse and show the auto ...
-1
votes
6answers
67 views

How to convert a hexadecimal value contained in a char (byte) to an integer?

I just want to know how to convert an hexadecimal value contained in a char (byte) into an integer. I want to convert the color buffer from a .bmp file which is of course in hexadecimal and convert it ...
0
votes
1answer
63 views

How to read hex byte data seperated by spaces in C++

I have hexadecimal data values in a file, and I want to store them in an byte array. I tried to use string streams, but can't manage to make it work. My data in the file are in the following format ...
0
votes
2answers
28 views

PHP Binary to Hex with leading zeros

I have the follow code: <? $binary = "110000000000"; $hex = dechex(bindec($binary)); echo $hex; ?> Which works fine, and I get a value of c00. However, when I try to convert 000000010000 I ...
-1
votes
0answers
32 views

Decimal to hexadecimal, four base 16 digits to represent answer

Im having trouble with converting 61543 to hexadecimal. And then use four base 16 digits to represent my answer. What I have done so far is turning 61543 to binary = 1111000001100111 and then just ...
1
vote
5answers
58 views

Python: print a variable in hex

I'm trying to find a way to print a string in hex. For example I have this string which I then convert to its hex value. my_string = "deadbeef" my_hex = my_string.decode('hex') How can I print ...
1
vote
2answers
52 views

How to convert this hex string into a long?

I have: "0xE94C827CEB" in hex but as a string. Which is: 1002011000043 (dd mm yyyy HH mm ss) Unfortunately I don't know how to do the conversion if I only have it in string format, and I don't have ...
0
votes
0answers
21 views

escaping sybase query with hexadecimal of single qoute

I am working with a Sybase database (not of my creating) and PHP, and I see that all single quotes in the database are stored as hexadecimal representation of single quote "\x16". I don't believe this ...
0
votes
2answers
57 views

How can I stop my integers from displaying as HEX?

I am practicing some code implementing different data structures. For this example I am trying to implement a simple stack data structure. So far it works as intended, but I keep getting Hex ...
0
votes
4answers
67 views

Convert hex char[] to int[] in C 2 chars in 1 byte

I am trying to convert a char[] in hexadecimal format to int[] in hexadecimal. Something like this: hello --> 68656C6C6F --> [68, 65, 6C, 6C, 6F] This is my code: #include <stdio.h> ...
3
votes
3answers
68 views

Convert ascii char[] to hexadecimal char[] in C

I am trying to convert a char[] in ASCII to char[] in hexadecimal. Something like this: hello --> 68656C6C6F I want to read by keyboard the string. It has to be 16 characters long. This is my code ...
-1
votes
1answer
45 views

how to decode a hex encoded android data file? [closed]

I extracted a file out of my android device which is encoded as following 789c ed3d db92 e3b6 95cf 3d5f c1ea e7d9 2e82 046f 79b3 679c 64ca d98d 13db c96e a55c 5392 4841 9a6e a9d5 2d69 9ca9 94bf 2d3f ...
0
votes
2answers
36 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 ...
-1
votes
2answers
61 views

convert RGBA values to ABGR hexadecimal [duplicate]

Some functions I've been using require me to input colors in 0xAABBGGRR format [UINT32] It would be a much more user-friendly interface if this could be accomplished with RGBA float values, ranged ...
0
votes
0answers
84 views

Retrieving all Ethernet Card id's and Respective IP Address and Hexadecimal conversion of string using a batch file

I've written a batch file. I am stuck with 2 issues: 1) To get all connected Ethernet Id's and IP Addresses associated with it. 2) Converting Hexadecimal string (volume serial number) to a decimal ...
0
votes
1answer
23 views

My checksum of 5 bytes of data does not

I'm processing 6-byte messages from a piece of serial hardware. In their manual, the manufacturer has laid out that the checksum of each message (its 6th byte) is composed of 'the low byte of the ...
0
votes
1answer
70 views

Random XML Exceptions - ' ', Hexadecimal value 0x1F, is an invalid character

I'm getting random errors when trying to load to an XDocument, complaining about invalid characters in my XML. ' ', hexadecimal value 0x1F, is an invalid character. Line 1, position 1. This happens ...
0
votes
3answers
47 views

Convert array of numbers into single Hex value in c

using 'C' program I want to convert an array of numbers into a single Hex value and then into an array as mentioned below. input: unsigned char no_a[12] = ...
1
vote
1answer
64 views

(C++) Write string of hex to a file

This is driving me insane. I'm a beginner/intermediate C++er and I need to do something that seems simple. I have a string with A LOT of hex characters in it. They were inputted from a txt file. The ...
0
votes
1answer
55 views

(C++) Trouble writing hex to .dat file

My program is pretty long and complex so I cannot explain it all, I will try to just explain my current situation, however. I have a .dat file (729 of them but only 1 for this example) and I need to ...
0
votes
1answer
22 views

Convert Hexadecimal Character from URL in php

I want to convert the hexadecimal character from URLs (e.g. %C3%A4) to the "normal" UTF8 character (e.g. ä) (like "Hexadecimal Codes to Characters" in Hexadecimal Character Codes in URL). How do this ...
0
votes
2answers
64 views

How to print hexadecimal double in C?

I have this number in hexadecimal: FFFFFFFFFFFF and I need to save it, so I used double double a=0xffffffffffff; but I need to print it and I don't know how to. Each time I use %f, %d, %x, it ...
0
votes
1answer
44 views

hex code implementation for spawning a shell

I am trying to implement the codes given in smashing the stack for fun and profit by Aleph to learn the basics of buffer overflow attacks. Machine architecture: Ubuntu 12.10 64 bit programs compiled ...
0
votes
1answer
17 views

How does the iPhone encode a float in memory (i.e. hex -> float?)

I'm trying to decode packets sent by this application : https://itunes.apple.com/ie/app/sensor-data-streamer/id608278214?mt=8 -- it sends sensor data in a udp packet. I'm using wireshark to look at ...

1 2 3 4 5 46