Tagged Questions

Hexadecimal, or hex for short, refers to numerals of base 16, represented by the digits 0 through 9 and the letters A through F.

learn more… | top users | synonyms (1)

125
votes
22answers
102k views

What is a good Windows hex editor / viewer? [closed]

I am in need of a hex editor / viewer (viewer is more important than editing, but a plus if it can edit) for Windows. See KHexedit Requirements: Free is best View data at cursor as: byte, short, ...
123
votes
9answers
58k views

How to convert decimal to hex in JavaScript?

How do you convert decimal values to their hex equivalent in JavaScript?
122
votes
19answers
112k views

How do you convert Byte Array to Hexadecimal String, and vice versa, in C#?

This is probably a common question over the Internet, but I couldn't find an answer that neatly explains how you can convert a byte array to a hexadecimal string, and vice versa. Any takers?
74
votes
5answers
55k views

Convert hex string to int in Python

How do I convert a hex string to an int in Python? I may have it as "0xffff" or just "ffff".
45
votes
9answers
29k views

Binary diff tool for very large files?

I need a utility to diff two binary files. The files are large (6-50 GB). Note: It needs to be specifically pointed out here: most diff programs work by mapping the file into their virtual address ...
37
votes
7answers
22k views

How to get Color from Hex color code using .NET?

How can I get Color from a Hex color code(e.g. #FFDFD991)? I am reading a file and getting Hex color code, I need to create the corresponding System.Windows.Media.Color instance for the Hex color ...
37
votes
10answers
41k views

C# byte[] to hex string

How do i convert a byte[] to a string, every time i attempt it i get System.Byte[] instead of the value. Also How do i get the value in Hex instead of a decimal?
37
votes
16answers
43k views

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 string of hex digits: byte messageDigest[] = algorithm.digest(); StringBuffer ...
33
votes
12answers
58k views

Convert a string representation of a hex dump to a byte array using Java?

I am looking for a way to convert a long string (from a dump), that represents hex values into a byte array. I couldn't have phrased it better than the person that posted the same question here: ...
30
votes
4answers
21k views

Converting an integer to a hexadecimal string in Ruby

Is there a built in way to convert an integer in Ruby into its hexadecimal equivalent. The opposite of "0A".to_i(16) =>10 or "0A".hex =>10 I know how to roll my own, but it's probably ...
29
votes
14answers
7k views

Why use hex?

Hey! I was looking at this code at http://www.gnu.org/software/m68hc11/examples/primes_8c-source.html I noticed that in some situations they used hex numbers, like in line 134: for (j = 1; val ...
28
votes
6answers
25k views

C# convert integer to hex and back again

How can I convert the following? 2934 (integer) to B76 (hex) Let me explain what I am trying to do. I have User IDs in my database that are stored as integers. Rather than having users reference ...
21
votes
4answers
6k views

Why are Hexadecimal Prefixed as 0x?

Why are Hexadecimal Prefixed as 0x and not anything else? I understand the usage of prefix but I dont understand the significance of 0x.
20
votes
2answers
525 views

Deconstructing Pokémon glitches?

(I apologize if this is the wrong place to ask this. I think it's definitely programming related, though if this belongs on some other site please let me know) I grew up playing Pokémon Red and ...
20
votes
6answers
41k views

C++ convert hex string to signed integer

I want to convert a hex string to a 32 bit signed integer in C++. So, for example, I have the hex string "fffefffe". The binary representation of this is 11111111111111101111111111111110. The ...
19
votes
10answers
18k views

Background-color hex to JavaScript variable (jQuery)

I'm kind of new to JavaScript and jQuery and now I'm facing a problem: I need to post some data to PHP and one bit of the data needs to be the background color hex of div X. jQuery has the ...
18
votes
4answers
5k views

Does style=“color: #FFF;” render as #F0F0F0 or #FFFFFF?

When defining colors using "shorthand hexidecimal" (style="color: #FFF;"), is there a defined method for expanding the shorthand? (style="color: #F0F0F0;" or style="color: #FFFFFF;") Do all browsers ...
16
votes
1answer
161 views

Why is 0 (zero) printed without leading “0x” with C printf format “%#x”?

Background: I have a number of scripts that parse log files looking for hex numbers by finding the leading "0x". Our embedded C library changed to a new printf. The new printf is more standards ...
16
votes
2answers
49k views

Convert hex string to byte array

As indicated in the answers, this is a duplicate of "How do you convert Byte Array to Hexadecimal String, and vice versa, in C#?" Hi, Can we converting a hex string to a byte array using a ...
15
votes
5answers
8k views

Get hex value rather than RGB value using jQuery

Using the following jQuery will get the RGB value of an element's background color: $('#selector').css('backgroundColor'); Is there a way to get the hex value rather than the RGB?
13
votes
3answers
718 views

How to convert a gi-normous integer (in string format) to hex format? (C#)

Given a potentially huge integer value (in c# string format), I want to be able to generate it's hex equivalent. Normal methods don't apply here as we are talking arbitrarily large numbers, 50 digits ...
13
votes
10answers
899 views

Are there any good reasons for using hex over decimal for RGB colour values in CSS?

rgb(255,255,255) notation has been available since CSS1. But #fffff seems to be vastly more popular. Obviously it's slightly more compact. I know that hex is more closely related to the underlying ...
13
votes
3answers
8k views

How to create python bytes object from long hex string?

I have a long sequence of hex digits in a string, such as 000000000000484240FA063DE5D0B744ADBED63A81FAEA390000C8428640A43D5005BD44 only much longer, several kilobytes. Is there a builtin way ...
12
votes
3answers
4k views

Objective C parse hex string to integer

I would like to know how to parse a hex string, representing a number, in objective c. I am willing to use both an objective, or a C based method, either is fine. example: #01FFFFAB should parse ...
12
votes
3answers
13k views

How can I create a UIColor from a hex string?

How can I create a UIColor from a hexadecimal string format, such as #00FF00?
12
votes
16answers
2k views

Code golf - hex to (raw) binary conversion

In response to this question asking about hex to (raw) binary conversion, a comment suggested that it could be solved in "5-10 lines of C, or any other language." I'm sure that for (some) scripting ...
11
votes
10answers
349 views

A question for you who work with hexadecimal frequently

Whenever I work with hexadecimal values, I do the conversion (if needed) into decimal in my head or with the help of a converter. Well I was thinking, if you work long enough and get used to ...
11
votes
4answers
4k views

How to print integer literals in binary or hex in haskell?

How to print integer literals in binary or hex in haskell? printBinary 5 => "0101" printHex 5 => "05" Which libraries/functions allow this? I came across the Numeric module and its ...
10
votes
6answers
742 views

Aesthetic Web Colors

What's a good resource for choosing aesthetically pleasing color combinations and themes? At the moment I'm using a color picker and stealing from various places. It's a hack.
9
votes
3answers
115 views

Why do PHP and JavaScript have problems dealing with octal and hexadecimal numbers?

I have noticed that PHP and JavaScript treat octal and hexadecimal numbers with some difficulty while type juggling and casting: PHP: echo 16 == '0x10' ? 'true' : 'false'; //true, as expected echo 8 ...
9
votes
1answer
153 views

streaming hexadecimal numbers with A-F (not a-f)

This is my second question during the last 10 minutes, sorry for that. Is it possible to make ostream output hexadecimal numbers with A-F and not a-f? int x = 0xABC; std::cout << std::hex ...
9
votes
4answers
2k views

C++ Hex Parsing

I'm wondering how to convert a hex string to a human readable string (if that makes any sense) this would be my first real encounter with hex values so I'm still learning about them and how to manage ...
9
votes
4answers
10k views

c++ cout hex values?

I want to do: int a = 255; cout << a; and have it show FF in the output, how would i do this?
8
votes
2answers
1k views

Programmatically Lighten or Darken a hex color

Here is a function I was working on to programmatically lighten or darken a hex color by a specific amount. Just pass in a string like "3F6D2A" for the color (col) and an base10 integer (amt) for the ...
8
votes
3answers
588 views

How to convert hex 'YMD' date to a readable date?

I've been given a file with a bunch of dates inside. They're in Hex format and I'm told it's YMD. Example is: 4A273F ..any idea how I'd go about converting it? Idealling using SQL/PLSQL but I'm ...
8
votes
3answers
550 views

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 first). H    A hex string (high nybble first). This is ...
8
votes
6answers
8k views

Converting hex color to RGB and vice-versa

What is the most efficient way to do this?
8
votes
2answers
3k views

Decoding T-SQL CAST in C#/VB.net

Recently our site has been deluged with the resurgence of the ASPRox bot SQL Injection attack. Without going into details, the attack attempts to execute SQL code by encoding the T-SQL commands in an ...
7
votes
2answers
74 views

Converting from a C double transferred in two hex strings

my very first day with Python. I like to filter on a trace file generated by C. Each double from C is formatted in the file by two hex strings representing 32 bit of the 64 double. e.g. 1234567890.3 ...
7
votes
1answer
189 views

How can I use std::hex for my custom uint128 type?

What is the correct syntax to overload (or whatever is actually is) std::hex, so that its functionality can be extended to non standard integers? i wrote this version of uint128_t
7
votes
2answers
3k views

jquery css color value returns RGB?

In my CSS file: a, a:link, a:visited { color:#4188FB; } a:active, a:focus, a:hover { color:#FFCC00; } I tried with: var link_col = $("a:link").css("color"); alert(link_col); // returns rgb(65, ...
7
votes
5answers
338 views

Setting ints to negative values using hexadecimal literals in C#

Is there any way to set an int to a negative value using a hexadecimal literal in C#? I checked the specification on Integer literals but it didn't mention anything. For example: int a = -1; ...
7
votes
4answers
1k views

Show Hexadecimal Numbers Of a File

I want to build a bash program that can read a file, like a *.bin and print all its hexadecimal numbers, as 'hex' editors do. Where I can start?
7
votes
7answers
44k views

Converting A String To Hexadecimal In Java

I am trying to convert a string like "testing123" into hexadecimal form in java. I am currently using BlueJ. And to convert it back, is it the same thing except backward?
7
votes
3answers
1k views

What exactly is this batch file supposed to do?

What does this do in a .bat file? Is it some sort of assembly language or what? @debug <%0 >nul e100 48 e6 61 be 3f 01 31 db 8a 1c 80 fb ff 74 f4 81 e110 c3 d0 00 b0 b6 e6 43 31 ...
7
votes
4answers
22k views

Hex To String C#

I need to check for a string located inside a packet that I receive as byte array.If I use BitConverter.ToString() ,I get the bytes as String with dashes(example 00-50-25-40-A5-FF). I tried most ...
7
votes
6answers
14k views

How can i convert hex numbers to binary in c++?

I am taking a beginning c++ class, and would like to convert letters between hex representations and binary. I can manage to print out the hex numbers using: for(char c = 'a'; c <= 'z'; c++){ ...
6
votes
3answers
606 views

How to manually convert decimal value to hexadecimal string in C?

n.b. I know that this question has been asked on StackOverflow before in a variety of different ways and circumstances, but the search for the answer I seek doesn't quite help my specific case. So ...
6
votes
1answer
283 views

hexadecimal floating constant in C

0x0.3p10 represents what value? And what's the meaning of the p in the statement above?
6
votes
5answers
508 views

Calculating the average color between two colors in PHP, using an index number as reference value

In PHP, I am trying to calculate the average color (in hex) between to different hex colors.. However, I also need to be able to supply an index number between 0.0 and 1.0. So for example: I have ...

1 2 3 4 5 23