Top "Hex" questions

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

Hex to ASCII in c

Here is my logic, to convert HEX to ASCII conversion in C: for (i=0;i<ArraySize;i++) { /*uses a …

c hex bit-manipulation asciiencoding
Java String and Hex character representation

I am trying to send a square bracket to a phone using logica smpp 1.3.7. I use dataCodingSetting of 3 - as …

java hex ascii smpp
How to use Excel to calculate bitwise XOR in hexadecimal format?

I have two cells with a string of bits: 1747F6001E00DB2XXXXX28FE5257645C and 1C6262C8DBF510F655…

excel hex xor bitwise-xor vba
When would you use unpack('h*' ...) or pack('h*' ...)?

In Perl, pack and unpack have two templates for converting bytes to/from hex: h    A hex string (low nybble …

perl hex pack unpack
converting hexadecimal , octal numbers into decimal form using python script

There are many inbulit functions like int(octal) which can be used to convert octal numbers into decimal numbers on …

python hex octal
How to convert 3-digit HTML hex colors to 6-digit flex hex colors

I want to convert a three-digit hex color which is coming from HTML CSS to a six-digit hex color for …

apache-flex colors hex
How to edit a binary file's hex value using C#

So here's my issue. I have a binary file that I want to edit. I can use a hex editor …

c# binary hex edit
Detect non-printable characters in JavaScript

Is it possible to detect binary data in JavaScript? I'd like to be able to detect binary data and convert …

javascript binary ascii hex non-printable
python base64 to hex

Since two weeks, I'm trying and reading to solve this problem, but everything I tried didn't worked :-( I'm using …

python base64 hex decoding
Java negative int to hex and back fails

public class Main3 { public static void main(String[] args) { Integer min = Integer.MIN_VALUE; String minHex = Integer.toHexString(Integer.MIN_…

java parsing decimal hex signed