A-Z Popular Blog Computer Science Search »
Computer Science
 Advertisements
Related Guides
Computer Science Examples

Hexadecimal

Hexadecimal Numbers

Computing

Binary

Caching

Cloud Computing

Coding

Compression

Computational Mathematics

Computing Platform

Data Centers

256 Examples of Hexadecimal Numbers

 ,
Hexadecimal numbers are numbers that are based on 16 digits. This can be contrasted with regular decimal numbers that use the 10 digits -- 0, 1, 2, 3, 4, 5, 6, 7, 8, 9. The additional numbers in hexadecimal are represented with the first letters of the alphabet A,B,C,D,E,F. This is easy enough. The trick with hexadecimal numbers is that they are base 16. For example, 10 in hexadecimal is 16 because the 1 is 1x16 instead of 1x10 as in decimal. This can be difficult to get your head around. The following examples may help.
DecimalHexadecimal
00
11
22
33
44
55
66
77
88
99
10A
11B
12C
13D
14E
15F
1610
1711
1812
1913
2014
2115
2216
2317
2418
2519
261A
271B
281C
291D
301E
311F
3220
3321
3422
3523
3624
3725
3826
3927
4028
4129
422A
432B
442C
452D
462E
472F
4830
4931
5032
5133
5234
5335
5436
5537
5638
5739
583A
593B
603C
613D
623E
633F
6440
6541
6642
6743
6844
6945
7046
7147
7248
7349
744A
754B
764C
774D
784E
794F
8050
8151
8252
8353
8454
8555
8656
8757
8858
8959
905A
915B
925C
935D
945E
955F
9660
9761
9862
9963
10064
10165
10266
10367
10468
10569
1066A
1076B
1086C
1096D
1106E
1116F
11270
11371
11472
11573
11674
11775
11876
11977
12078
12179
1227A
1237B
1247C
1257D
1267E
1277F
12880
12981
13082
13183
13284
13385
13486
13587
13688
13789
1388A
1398B
1408C
1418D
1428E
1438F
14490
14591
14692
14793
14894
14995
15096
15197
15298
15399
1549A
1559B
1569C
1579D
1589E
1599F
160A0
161A1
162A2
163A3
164A4
165A5
166A6
167A7
168A8
169A9
170AA
171AB
172AC
173AD
174AE
175AF
176B0
177B1
178B2
179B3
180B4
181B5
182B6
183B7
184B8
185B9
186BA
187BB
188BC
189BD
190BE
191BF
192C0
193C1
194C2
195C3
196C4
197C5
198C6
199C7
200C8
201C9
202CA
203CB
204CC
205CD
206CE
207CF
208D0
209D1
210D2
211D3
212D4
213D5
214D6
215D7
216D8
217D9
218DA
219DB
220DC
221DD
222DE
223DF
224E0
225E1
226E2
227E3
228E4
229E5
230E6
231E7
232E8
233E9
234EA
235EB
236EC
237ED
238EE
239EF
240F0
241F1
242F2
243F3
244F4
245F5
246F6
247F7
248F8
249F9
250FA
251FB
252FC
253FD
254FE
255FF
As an example, FD is (15×16) + 13 = 253. The F is worth 15 but is multiplied by 16 because it's in the second position. The D is worth 13 but isn't multiplied because it's in the first position.
The alphabetic characters in hexadecimal are traditionally represented with uppercase letters. This feels a little loud such that it is common in some domains to use lowercase letters. For example, an html color code such as #ffffff.

Computing

This is the complete list of articles we have written about computing.
Coding
Compression
Computing Platform
Cryptography
Gamification
Hexadecimal
IT Examples
IT Infrastructure
Networking
Operating Systems
More ...
If you enjoyed this page, please consider bookmarking Simplicable.
 

Computer Science

A list of common computer science terms.

Hexadecimal

An overview of hexadecimal as it relates to computing.

Computer Science Examples

The definition of computer science with examples.

Coding

A list of coding considerations and techniques.

Runtime Error

The definition of runtime error with examples.

I/O

The definition of I/O with examples.

Coding Skills

A list of common coding skills.

Technology Culture Examples

Examples of technology cultures.

IT Artifact

The definition of IT artifact with examples.

Full Stack

An overview of full stack development.
The most popular articles on Simplicable in the past day.

New Articles

Recent posts or updates on Simplicable.
Site Map