Difference between revisions of "Hexadecimal"

esse quam videri
Jump to: navigation, search
(Created page with " =Definition= =Relevance= =Explanation= =Resources= == See also == * Base 10 * Numeral Systems ==Notes== ==External Links== Category:Programming Languag...")
 
Line 1: Line 1:
  
 
=Definition=
 
=Definition=
 +
Hexadecimal, commonly abbreviated to Hex and also known as Base 16, is a method of counting wherein a radix, or base, of 16 is used. In Hexadecimal, [0 - 9] is represented with [0 - 9] like in Decimal but [A - F] is used to represent [10 - 15].
  
  
 
=Relevance=
 
=Relevance=
 +
*[[Base 10]]
 +
*[[Decimal]]
  
 
=Explanation=
 
=Explanation=
 
+
{| class="HexTable"
 
+
! Decimal 
 +
! Hexadecimal
 +
|-
 +
| 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
 +
|-
 +
| 16
 +
| 10
 +
|-
 +
| 32
 +
| 20
 +
|-
 +
| 165
 +
| A5
 +
|-
 +
| 256
 +
| 100
 +
|-
 +
|}
  
 
=Resources=
 
=Resources=
Line 19: Line 82:
  
 
==External Links==
 
==External Links==
 
+
https://en.wikipedia.org/wiki/Hexadecimal
  
  

Revision as of 19:53, 18 June 2019

Definition

Hexadecimal, commonly abbreviated to Hex and also known as Base 16, is a method of counting wherein a radix, or base, of 16 is used. In Hexadecimal, [0 - 9] is represented with [0 - 9] like in Decimal but [A - F] is used to represent [10 - 15].


Relevance

Explanation

Decimal Hexadecimal
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
16 10
32 20
165 A5
256 100

Resources

See also

Notes

External Links

https://en.wikipedia.org/wiki/Hexadecimal