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 set hex color code for background

Possible Duplicate: How can I create a UIColor from a hex string? I want to programmatically set the color of …

ios hex uicolor
Check if a string is hexadecimal

I know the easiest way is using a regular expression, but I wonder if there are other ways to do …

python hex
Converting a String to HEX in SQL

I'm looking for a way to transform a genuine string into it's hexadecimal value in SQL. I'm looking something that …

sql informix hex
How to create a System.Drawing.Color from its hexadecimal RGB string?

I want to create a System.Drawing.Color from a value like #FF00FF or FF00FF without needing to …

.net colors parsing hex system.drawing.color
String.format() and hex numbers in Java

I'm trying to figure out why String.format() is behaving the way it does. Context: Systems programming class, writing an …

java string formatting hex twos-complement
Integer to two digits hex in Java

I need to change a integer value into 2-digit hex value in Java.Is there any way for this. Thanks …

java integer hex
Console.WriteLine as hexadecimal

The following code prints out 10. How can I make it print out a? int i = 10; Console.WriteLine("{0}", i);

c# hex
setBackground(new color()); in java does not understand the given RGB value

I have a program with some gui, on the JFrame I set, setBackground( new Color(107, 106, 104) ); The issue is that I …

java swing hex rgb setbackground
How to convert a hexadecimal string to long in java?

I want to convert a hex string to long in java. I have tried with general conversion. String s = "4d0…

java parsing hex long-integer
Decorating Hex function to pad zeros

I wrote this simple function: def padded_hex(i, l): given_int = i given_len = l hex_result = hex(given_…

python hex padding built-in