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.

Convert decimal to hexadecimal in UNIX shell script

In a UNIX shell script, what can I use to convert decimal numbers into hexadecimal? I thought od would do …

unix shell hex
Java converting int to hex and back again

I have the following code... int Val=-32768; String Hex=Integer.toHexString(Val); This equates to ffff8000 int FirstAttempt=Integer.…

java string hex
Convert hex string to int

I am trying to convert a string that is 8 characters long of hex code into an integer so that I …

java hex
Convert A String (like testing123) To Binary In Java

I would like to be able to convert a String (with words/letters) to other forms, like binary. How would …

java binary ascii hex
In Java, how do I convert a byte array to a string of hex digits while keeping leading zeros?

I'm working with some example java code for making md5 hashes. One part converts the results from bytes to a …

java md5 hex
Conversion hex string into ascii in bash command line

I have a lot of this kind of string and I want to find a command to convert it in …

bash hex
Converting from hex to string

I need to check for a string located inside a packet that I receive as byte array. If I use …

c# string hex bitconverter
Python conversion from binary string to hexadecimal

How can I perform a conversion of a binary string to the corresponding hex value in Python? I have 0000 0100 1000 1101 and …

python binary hex
Java Convert integer to hex integer

I'm trying to convert a number from an integer into an another integer which, if printed in hex, would look …

java integer hex
Hexadecimal To Decimal in Shell Script

Can someone help me to convert a hexadecimal number to decimal number in a shell script? E.g., I want …

bash shell hex decimal