HEX File Encoder Convert your data

Input Data File

 

 

Drop File Here or Click to Select

Output Data
        
 

 

 

Description

The hexadecimal numeral system, often shortened to "hex", is a numeral system made up of 16 symbols (base 16). The standard numeral system is called decimal (base 10) and uses ten symbols: 0,1,2,3,4,5,6,7,8,9. Hexadecimal uses the decimal numbers and six extra symbols. There are no numerical symbols that represent values greater than nine, so letters taken from the English alphabet are used, specifically A, B, C, D, E and F. Hexadecimal A = decimal 10, and hexadecimal F = decimal 15.

Decimal
(Base 10)
  HexaDecimal
(Base 16)
0   0
1   1
2   2
3   3
4   4
5   5
6   6
7   7
8   8
9   9
10   A
11   B
12   C
13   D
14   E
15   F

 

For number higher that 15 the same logic will follow as in decimal numbers.

Decimal
(Base 10)
  HexaDecimal
(Base 16)
16   10
17   11
18   12
19   13
20   14
21   15
22   16
23   17
24   18
25   19
26   1A
27   1B
28   1C
29   1D
30   1E
31   1F

 

Source