Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
1answer
105 views

How do browsers handle rgb(percentage); for strange numbers

This is related to CSS color codes: For hexcode we can represent 16,777,216 colors from #000000 to #FFFFFF According to W3C Specs, Valid RGB percentages fit in a range from (0.0% to 100.0%) ...
6
votes
3answers
6k views

C#, hexadecimal notation and signed integers

This is a follow up question. So, Java store's integers in two's-complements and you can do the following: int ALPHA_MASK = 0xff000000; In c# this requires the use of an unsigned integer, uint, ...
5
votes
5answers
931 views

What is the underlying type of a c++ enum?

This may have been answered elsewhere but I could not find a suitable response. I have this code: enum enumWizardPage { WP_NONE = 0x00, WP_CMDID = 0x01, WP_LEAGUES = 0x02, ...
3
votes
3answers
38 views

when is it needed to cast hex literals in java to (byte)?

For testing purposes, I tried to create an array like this: byte[] expected = new byte[]{0x2f, 0x0d4, 0xe1, 0xc6, 0x7a, 0x2d, 0x28, 0xfc} I expected, that java will complain and will ask me to cast ...
3
votes
1answer
66 views

Hexa base digit and Decimal base digit at C#

Some of my downloaded c# code include hexadecimal based calculation. eg. int length = ((((byte) hexstr[0x10]) & 0x80) > 0) ? 0x10 : 8; when i change this code to normal decimal based code ...
3
votes
1answer
420 views

Delphi: Convert a TByte into its corresponding Hex-Value in AnsiString

I'm trying to output the value of a TByte as its corresponding hexadezimal representation in an AnsiString. Example: TByte is 0x4F AnsiString: "4F" (two characters, a 4 and an F) I know of the ...
3
votes
3answers
527 views

Perl: parse hex-encoded string into array with regex

I'm quite new to Perl development, and I'd like to perform a following task: My script receives hex-encoded string as command-line param. Then I must decode this string and write it to output file ...
2
votes
3answers
73 views

Printing hexadecimal values in C++ [closed]

Possible Duplicate: Converting an uint64 into a (full)hex string, C++ I am trying to print the hexadecimal equivalent of an integer in C++, int value=2; cout<<hex<<value; I ...
2
votes
7answers
2k views

Programmatically darken a Hex colour

What's the easiest way to programmatically darken a hex colour? Without using any built-in functions. The language is irrelevant, it can just be pseudo-code if you want. Thanks.
1
vote
6answers
173 views

Not of hexadecimal value 0xffff?

I guess the output should be "0000" but it's ffff as Not of ~ffff->0000 0000 0000 0000 #include<stdio.h> int main() { unsigned int a=0xffff; ~a; printf("%x\n", a); return 0; ...
1
vote
2answers
54 views

Conversion between Base64String and Hexadecimal

I use in my C++/CLI project ToBase64String to give a string like /MnwRx7kRZEQBxLZEkXndA== I want to convert this string to Hexadecimal representation, How I can do that in C++/CLI or C#?
1
vote
4answers
381 views

Hex view of a file

I am using Delphi 2009. I want to view the contents of a file (in hexadecimal) inside a memo. I'm using this code : var Buffer:String; begin Buffer := ''; AssignFile(sF,Source); //Assign file ...
1
vote
4answers
350 views

Why are memory addresses are represented using hexadecimal numbers?

Whenever I see C programs that refer directly to a specific location on the memory (e.g. a memory barrier) it is done with hexadecimal numbers, also in windows when you get a segfualt it presents the ...
1
vote
2answers
735 views

converting string (hex) to decimal results in exception

My question seems simple, but I have googled for a couple of hours without result. I have to use a string (hex format) and convert to integer. (the string is returned from a commercial library). if I ...
1
vote
2answers
284 views

Java floating-point numbers representation as a hexadecimal numbers

Why does 0x1p3 equal to 8.0? Why does 0x1e3 equal to 483 whereas 0x1e3d to 7741? It is confusing since 1e3d equals to 1000.0.
1
vote
3answers
502 views

Words from HEX alphabet

I'm looking for words that can be created from hex alphabet [0-9a-f]+ like C0FFEE, DEFACED We also can use lisoz, where 1=l,i; 5=s; 2=z; 0=o etc. It can be used in memory addressing or IPv6 address, ...
1
vote
2answers
794 views

What is &H14& in VBScript?

I found the following article : here about installing fonts on a Windows computer via a script. The author uses VBScript to do that, but I'd like to use Ruby/Python. There is a line in the script I ...
1
vote
5answers
518 views

Suggested reading for BITS/Bytes and sample code to perform operations etc

Need a refresher on bits/bytes, hex notation and how it relates to programming (C# preferred). Looking for a good reading list (online preferably).
0
votes
2answers
33 views

Passing hexadecimal color values from Xcode to Javascript

I am trying to pass a Hexadecimal color value from objectiveC to Javascript. I am displaying a graph and I am trying to pass the color to javascript so that I dont need to hardcode it in my html page. ...
0
votes
1answer
25 views

questions about hex code shown in hex editor

I am stuck on HEX(intel hex) format which I see in Hex Editor (Hex Editor Neo). Ok,I know hex,decimal,binary,their addition,multiplication,their conversion. Ex. sample.jpg (this is a jpg file I open ...
0
votes
2answers
46 views

Rules for when to append -h/-H to hex numbers in assembly?

EDIT: I asked around a bit, and apparently my mistake was this: we usually edit our 8086 Assembly code in a special debug-environment on MS-DOS. This particular environment indeed defaults to ...
0
votes
1answer
55 views

Number of bytes in encoded hex string

This is probably a simple question, but I'm trying to review encodings and bytes (which I haven't looked at in a while) to implement a binary protocol. It looks like normal characters are 1 byte. ...
0
votes
1answer
89 views

How to program hex2bin in Javascript?

I need to communicate between Javascript and PHP (I use jquery for ajax) but the output of PHP script may contain binary data. That's why I use function bin2hex in PHP. Then json_encode is applied on ...
0
votes
2answers
223 views

Generating a random 32 bit hexadecimal value in C

What would be the best way to generate a random 32-bit hexadecimal value in C? In my current implementation I am generating each bit separately but the output is not completely random ... many values ...
0
votes
1answer
79 views

Questions about EXIF in hexadecimal form

I am trying to understand the EXIF header portion of a jpeg file (in hex) and how to understand it so I can extract data, specifically GPS information. For better or worse, I am using VB.Net 2008 ...
0
votes
4answers
117 views

Is there any Difference between Java Byte Code and .NET Byte Code?If so,shall i take HexaDecimal of that values?

I would like to know that "Is there any Difference between Java Byte Code and .NET Byte Code? If there any difference,Shall i take Hexa Decimal Values of that java byte Code and .Net Byte ...
0
votes
3answers
120 views

hexadecimal string to int conversion in C

I have a text file with hexadecimal values, after I fscanf a value I need to know how I can convert it from hexadecimal string to an int. And then convert it back to hexadecimal string for a later ...
0
votes
1answer
92 views

inverting function (from char to hex string)

I need to invert this function which it's used to covert strings representing hex values to char representation char * extochar(char * in, int inLen){ int i,k; int resInt[inLen/2]; char ...
0
votes
3answers
87 views

Android: Need help understanding &0x04 behind a variable assignment

wondering if anyone might have some insight or point me to the proper documentation explaining the following line of code: byte flag = (byte) (flagOfCardData&0x04); I don't have any clue as to ...
0
votes
1answer
109 views

Convert from hex character to Unicode character in python

The hex string '\xd3' can also be represented as: Ó. The easiest way I've found to get the character representation of the hex string to the console is: print unichr(ord('\xd3')) Or in English, ...
0
votes
2answers
105 views

Trailing Ampersand in VB.NET hexadecimal?

This should be an easy one for folks. Google's got nothing except content farms linking to one blurb, and that's written in broken English. So let's get this cleared up here where it'll be entombed ...
0
votes
3answers
1k views

Hex combination of binary flags

Which of the following give back 63 as long (in Java) and how? 0x0 0x1 0x2 0x4 0x8 0x10 0x20 I'm working with NetworkManager API flags if that helps. I'm getting 63 from one of the operations but ...
-1
votes
2answers
130 views

How to subtract or add two hexadecimal value in java

Is there a way of calculating two hexadecimal value without converting it to int? for example: String sHex = "f7c0"; String bHex = "040000000";
-1
votes
2answers
59 views

Code to generate hexadecimal values of all colors

Hi guys I need to generate a list of all possible 16 million colors in the 6 digit hexadecimal notation - how can that be done, I would appreciate a formula for that. I'm building the script in php ...