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.

How to get the background color code of an element in hex?

How do I get the background color code of an element? What I want #f5b405

javascript jquery css hex background-color
Decimal to Hexadecimal Converter in Java

I have a homework assignment where I need to do three-way conversion between decimal, binary and hexadecimal. The function I …

java hex decimal converter
What do numbers using 0x notation mean?

What does a 0x prefix on a number mean? const int shared_segment_size = 0x6400; It's from a C program. …

c integer hex notation
Generating a random hex color code with PHP

I'm working on a project where I need to generate an undefined number of random, hexadecimal color codes…how would …

php hex
Char array to hex string C++

I searched char* to hex string before but implementation I found adds some non-existent garbage at the end of hex …

c++ hex buffer byte
bitwise XOR of hex numbers in python

how can we XOR hex numbers in python eg. I want to xor 'ABCD' to '12EF'. answer should be …

python hex bit-manipulation xor
How to convert a color integer to a hex String in Android?

I have an integer that was generated from an android.graphics.Color The Integer has a value of -16776961 How …

java android string colors hex
Convert a String of Hex into ASCII in Java

I hope this isn't too much of a stupid question, I have looked on 5 different pages of Google results but …

java string ascii hex
Create a hexadecimal colour based on a string with JavaScript

I want to create a function that will accept any old string (will usually be a single word) and from …

javascript string colors hex
Convert bytes to bits in python

I am working with Python3.2. I need to take a hex stream as an input and parse it at bit-level. …

python hex byte bits