-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBitMath_TestStand_20181118_134455.LOG
More file actions
1751 lines (1564 loc) · 160 KB
/
BitMath_TestStand_20181118_134455.LOG
File metadata and controls
1751 lines (1564 loc) · 160 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Microsoft Windows [Version 10.0.17134.407]
(c) 2018 Microsoft Corporation. All rights reserved.
C:\Users\DAG 2018/11/18 13:38:14.96>"F:\Source_Code\Visual_Studio\Projects\WizardWrx_Libs\BitMath\TestStand\bin\Release\BithMathTestStand.exe"
BOJ BithMathTestStand, Version=4.0.205.29250, Culture=neutral, PublicKeyToken=null
2018/11/18 19:38:20
Working Directory = C:\Users\DAG
Selected properties of the library under test:
AssemblyFileBaseName = WizardWrx.BitMath
VersionString = 4.3.125.29248
Culture = Invariant Language (Invariant Country)
PublicKeyToken =
Runtime Version = v2.0.50727
AssemblyGuidString = 87ba732d-e539-4c84-910c-38799fd2c742
ProductName = BitMath for .NET 2.0 and Above
LegalCopyright = Copyright c 2014-2016, David A. Gray
LegalTrademarks = This product is covered by a 3-clause BSD license.
CompanyName = David A. Gray
Description = BitMath
Comments = Library of routines for manipulating arrays of bits
AssembyDirName = F:\Source_Code\Visual_Studio\Projects\WizardWrx_Libs\BitMath\TestStand\bin\Release
AssemblyFileName = WizardWrx.BitMath.dll
File Creation Date = 2018/01/01 21:10:49 (2018/01/02 03:10:49 UTC)
File Modified Date = 2016/05/04 17:14:57 (2016/05/04 22:14:57 UTC)
End of selected properties
Enumerating GUIDs for all Integer types known to C# and the BCL:
1: Type SByte GUID = b4cd2bca7e3ae83380edd32475adef33
2: Type Byte GUID = 4073959bbaad343291ea46a5c9bff530
3: Type Int16 GUID = 34af6d20a55b04358a19d57699561886
4: Type UInt16 GUID = b728090fdd11dd31a0d5bb008ae887bf
5: Type Int16 GUID = 34af6d20a55b04358a19d57699561886
6: Type UInt16 GUID = b728090fdd11dd31a0d5bb008ae887bf
7: Type Int32 GUID = ddfa10a3337c7c379d6b599b0317d7f2
8: Type UInt32 GUID = 404e854f6daf303d860ae9722c85e9a3
9: Type Int32 GUID = ddfa10a3337c7c379d6b599b0317d7f2
10: Type UInt32 GUID = 404e854f6daf303d860ae9722c85e9a3
11: Type Int64 GUID = f5ec1cadad5fcf3ead892febd6521fa9
12: Type UInt64 GUID = 6b7dad62cc52d43ea20d1a32ef6bf1da
13: Type Int64 GUID = f5ec1cadad5fcf3ead892febd6521fa9
14: Type UInt64 GUID = 6b7dad62cc52d43ea20d1a32ef6bf1da
15: Type Byte GUID = 4073959bbaad343291ea46a5c9bff530
16: Type Int16 GUID = 34af6d20a55b04358a19d57699561886
17: Type UInt16 GUID = b728090fdd11dd31a0d5bb008ae887bf
18: Type Int32 GUID = ddfa10a3337c7c379d6b599b0317d7f2
19: Type UInt32 GUID = 404e854f6daf303d860ae9722c85e9a3
20: Type Int64 GUID = f5ec1cadad5fcf3ead892febd6521fa9
21: Type UInt64 GUID = 6b7dad62cc52d43ea20d1a32ef6bf1da
Enumerating maximum legal values for integral types known to the BCL:
1: Type System.Byte GUID = 4073959bbaad343291ea46a5c9bff530, Maximum value = 255, digit count = 3
2: Type System.Int16 GUID = 34af6d20a55b04358a19d57699561886, Maximum value = 32767, digit count = 5
3: Type System.UInt16 GUID = b728090fdd11dd31a0d5bb008ae887bf, Maximum value = 65535, digit count = 5
4: Type System.Int32 GUID = ddfa10a3337c7c379d6b599b0317d7f2, Maximum value = 2147483647, digit count = 10
5: Type System.UInt32 GUID = 404e854f6daf303d860ae9722c85e9a3, Maximum value = 4294967295, digit count = 10
6: Type System.Int64 GUID = f5ec1cadad5fcf3ead892febd6521fa9, Maximum value = 9223372036854775807, digit count = 19
7: Type System.UInt64 GUID = 6b7dad62cc52d43ea20d1a32ef6bf1da, Maximum value = 18446744073709551615, digit count = 20
That's it for the integers.
Unsorted GUIDs:
1 = 4073959bbaad343291ea46a5c9bff530
2 = 34af6d20a55b04358a19d57699561886
3 = b728090fdd11dd31a0d5bb008ae887bf
4 = ddfa10a3337c7c379d6b599b0317d7f2
5 = 404e854f6daf303d860ae9722c85e9a3
6 = f5ec1cadad5fcf3ead892febd6521fa9
7 = 6b7dad62cc52d43ea20d1a32ef6bf1da
End of Unsorted GUIDs
Sorted GUIDs:
1 = 34af6d20a55b04358a19d57699561886
2 = 404e854f6daf303d860ae9722c85e9a3
3 = 4073959bbaad343291ea46a5c9bff530
4 = 6b7dad62cc52d43ea20d1a32ef6bf1da
5 = b728090fdd11dd31a0d5bb008ae887bf
6 = ddfa10a3337c7c379d6b599b0317d7f2
7 = f5ec1cadad5fcf3ead892febd6521fa9
End of Sorted GUIDs
Enumerating character values of hexadecimal digits:
Decimal value 1 = 0 (numeric value = 48, hex = 0x30)
Decimal value 2 = 1 (numeric value = 49, hex = 0x31)
Decimal value 3 = 2 (numeric value = 50, hex = 0x32)
Decimal value 4 = 3 (numeric value = 51, hex = 0x33)
Decimal value 5 = 4 (numeric value = 52, hex = 0x34)
Decimal value 6 = 5 (numeric value = 53, hex = 0x35)
Decimal value 7 = 6 (numeric value = 54, hex = 0x36)
Decimal value 8 = 7 (numeric value = 55, hex = 0x37)
Decimal value 9 = 8 (numeric value = 56, hex = 0x38)
Decimal value 10 = 9 (numeric value = 57, hex = 0x39)
Decimal value 11 = a (numeric value = 97, hex = 0x61)
Decimal value 12 = b (numeric value = 98, hex = 0x62)
Decimal value 13 = c (numeric value = 99, hex = 0x63)
Decimal value 14 = d (numeric value = 100, hex = 0x64)
Decimal value 15 = e (numeric value = 101, hex = 0x65)
Decimal value 16 = f (numeric value = 102, hex = 0x66)
That's it for the hexadecimal digits.
Test 1TestBit32ArrayToStringOverload Begin:
Exercising the formatter with 8 bit integers:
Value: Decimal = 0, Hexadecimal = 00, Individual Bits = 00000000
Value: Decimal = 1, Hexadecimal = 01, Individual Bits = 00000001
Value: Decimal = 2, Hexadecimal = 02, Individual Bits = 00000010
Value: Decimal = 3, Hexadecimal = 03, Individual Bits = 00000011
Value: Decimal = 4, Hexadecimal = 04, Individual Bits = 00000100
Value: Decimal = 5, Hexadecimal = 05, Individual Bits = 00000101
Value: Decimal = 6, Hexadecimal = 06, Individual Bits = 00000110
Value: Decimal = 7, Hexadecimal = 07, Individual Bits = 00000111
Value: Decimal = 8, Hexadecimal = 08, Individual Bits = 00001000
Value: Decimal = 9, Hexadecimal = 09, Individual Bits = 00001001
Value: Decimal = 10, Hexadecimal = 0a, Individual Bits = 00001010
Value: Decimal = 11, Hexadecimal = 0b, Individual Bits = 00001011
Value: Decimal = 12, Hexadecimal = 0c, Individual Bits = 00001100
Value: Decimal = 13, Hexadecimal = 0d, Individual Bits = 00001101
Value: Decimal = 14, Hexadecimal = 0e, Individual Bits = 00001110
Value: Decimal = 15, Hexadecimal = 0f, Individual Bits = 00001111
Value: Decimal = 16, Hexadecimal = 10, Individual Bits = 00010000
Value: Decimal = 17, Hexadecimal = 11, Individual Bits = 00010001
Value: Decimal = 18, Hexadecimal = 12, Individual Bits = 00010010
Value: Decimal = 19, Hexadecimal = 13, Individual Bits = 00010011
Value: Decimal = 20, Hexadecimal = 14, Individual Bits = 00010100
Value: Decimal = 21, Hexadecimal = 15, Individual Bits = 00010101
Value: Decimal = 22, Hexadecimal = 16, Individual Bits = 00010110
Value: Decimal = 23, Hexadecimal = 17, Individual Bits = 00010111
Value: Decimal = 24, Hexadecimal = 18, Individual Bits = 00011000
Value: Decimal = 25, Hexadecimal = 19, Individual Bits = 00011001
Value: Decimal = 26, Hexadecimal = 1a, Individual Bits = 00011010
Value: Decimal = 27, Hexadecimal = 1b, Individual Bits = 00011011
Value: Decimal = 28, Hexadecimal = 1c, Individual Bits = 00011100
Value: Decimal = 29, Hexadecimal = 1d, Individual Bits = 00011101
Value: Decimal = 30, Hexadecimal = 1e, Individual Bits = 00011110
Value: Decimal = 31, Hexadecimal = 1f, Individual Bits = 00011111
Value: Decimal = 32, Hexadecimal = 20, Individual Bits = 00100000
Value: Decimal = 33, Hexadecimal = 21, Individual Bits = 00100001
Value: Decimal = 34, Hexadecimal = 22, Individual Bits = 00100010
Value: Decimal = 35, Hexadecimal = 23, Individual Bits = 00100011
Value: Decimal = 36, Hexadecimal = 24, Individual Bits = 00100100
Value: Decimal = 37, Hexadecimal = 25, Individual Bits = 00100101
Value: Decimal = 38, Hexadecimal = 26, Individual Bits = 00100110
Value: Decimal = 39, Hexadecimal = 27, Individual Bits = 00100111
Value: Decimal = 40, Hexadecimal = 28, Individual Bits = 00101000
Value: Decimal = 41, Hexadecimal = 29, Individual Bits = 00101001
Value: Decimal = 42, Hexadecimal = 2a, Individual Bits = 00101010
Value: Decimal = 88, Hexadecimal = 58, Individual Bits = 01011000
Value: Decimal = 89, Hexadecimal = 59, Individual Bits = 01011001
Value: Decimal = 90, Hexadecimal = 5a, Individual Bits = 01011010
Value: Decimal = 91, Hexadecimal = 5b, Individual Bits = 01011011
Value: Decimal = 92, Hexadecimal = 5c, Individual Bits = 01011100
Value: Decimal = 93, Hexadecimal = 5d, Individual Bits = 01011101
Value: Decimal = 94, Hexadecimal = 5e, Individual Bits = 01011110
Value: Decimal = 95, Hexadecimal = 5f, Individual Bits = 01011111
Value: Decimal = 96, Hexadecimal = 60, Individual Bits = 01100000
Value: Decimal = 97, Hexadecimal = 61, Individual Bits = 01100001
Value: Decimal = 98, Hexadecimal = 62, Individual Bits = 01100010
Value: Decimal = 99, Hexadecimal = 63, Individual Bits = 01100011
Value: Decimal = 100, Hexadecimal = 64, Individual Bits = 01100100
Value: Decimal = 101, Hexadecimal = 65, Individual Bits = 01100101
Value: Decimal = 102, Hexadecimal = 66, Individual Bits = 01100110
Value: Decimal = 103, Hexadecimal = 67, Individual Bits = 01100111
Value: Decimal = 120, Hexadecimal = 78, Individual Bits = 01111000
Value: Decimal = 121, Hexadecimal = 79, Individual Bits = 01111001
Value: Decimal = 122, Hexadecimal = 7a, Individual Bits = 01111010
Value: Decimal = 123, Hexadecimal = 7b, Individual Bits = 01111011
Value: Decimal = 124, Hexadecimal = 7c, Individual Bits = 01111100
Value: Decimal = 125, Hexadecimal = 7d, Individual Bits = 01111101
Value: Decimal = 126, Hexadecimal = 7e, Individual Bits = 01111110
Value: Decimal = 127, Hexadecimal = 7f, Individual Bits = 01111111
Value: Decimal = 128, Hexadecimal = 80, Individual Bits = 10000000
Value: Decimal = 129, Hexadecimal = 81, Individual Bits = 10000001
Value: Decimal = 130, Hexadecimal = 82, Individual Bits = 10000010
Value: Decimal = 131, Hexadecimal = 83, Individual Bits = 10000011
Value: Decimal = 132, Hexadecimal = 84, Individual Bits = 10000100
Value: Decimal = 133, Hexadecimal = 85, Individual Bits = 10000101
Value: Decimal = 134, Hexadecimal = 86, Individual Bits = 10000110
Value: Decimal = 135, Hexadecimal = 87, Individual Bits = 10000111
Value: Decimal = 136, Hexadecimal = 88, Individual Bits = 10001000
Value: Decimal = 137, Hexadecimal = 89, Individual Bits = 10001001
Value: Decimal = 138, Hexadecimal = 8a, Individual Bits = 10001010
Value: Decimal = 139, Hexadecimal = 8b, Individual Bits = 10001011
Value: Decimal = 140, Hexadecimal = 8c, Individual Bits = 10001100
Value: Decimal = 141, Hexadecimal = 8d, Individual Bits = 10001101
Value: Decimal = 142, Hexadecimal = 8e, Individual Bits = 10001110
Value: Decimal = 143, Hexadecimal = 8f, Individual Bits = 10001111
Value: Decimal = 144, Hexadecimal = 90, Individual Bits = 10010000
Value: Decimal = 145, Hexadecimal = 91, Individual Bits = 10010001
Value: Decimal = 150, Hexadecimal = 96, Individual Bits = 10010110
Value: Decimal = 151, Hexadecimal = 97, Individual Bits = 10010111
Value: Decimal = 199, Hexadecimal = c7, Individual Bits = 11000111
Value: Decimal = 200, Hexadecimal = c8, Individual Bits = 11001000
Value: Decimal = 201, Hexadecimal = c9, Individual Bits = 11001001
Value: Decimal = 222, Hexadecimal = de, Individual Bits = 11011110
Value: Decimal = 224, Hexadecimal = e0, Individual Bits = 11100000
Value: Decimal = 225, Hexadecimal = e1, Individual Bits = 11100001
Value: Decimal = 248, Hexadecimal = f8, Individual Bits = 11111000
Value: Decimal = 249, Hexadecimal = f9, Individual Bits = 11111001
Value: Decimal = 250, Hexadecimal = fa, Individual Bits = 11111010
Value: Decimal = 251, Hexadecimal = fb, Individual Bits = 11111011
Value: Decimal = 252, Hexadecimal = fc, Individual Bits = 11111100
Value: Decimal = 253, Hexadecimal = fd, Individual Bits = 11111101
Value: Decimal = 254, Hexadecimal = fe, Individual Bits = 11111110
Value: Decimal = 255, Hexadecimal = ff, Individual Bits = 11111111
Repeat with formatted array:
Value: Decimal = 0, Hexadecimal = 00, Individual Bits = 0000 0000
Value: Decimal = 1, Hexadecimal = 01, Individual Bits = 0000 0001
Value: Decimal = 2, Hexadecimal = 02, Individual Bits = 0000 0010
Value: Decimal = 3, Hexadecimal = 03, Individual Bits = 0000 0011
Value: Decimal = 4, Hexadecimal = 04, Individual Bits = 0000 0100
Value: Decimal = 5, Hexadecimal = 05, Individual Bits = 0000 0101
Value: Decimal = 6, Hexadecimal = 06, Individual Bits = 0000 0110
Value: Decimal = 7, Hexadecimal = 07, Individual Bits = 0000 0111
Value: Decimal = 8, Hexadecimal = 08, Individual Bits = 0000 1000
Value: Decimal = 9, Hexadecimal = 09, Individual Bits = 0000 1001
Value: Decimal = 10, Hexadecimal = 0a, Individual Bits = 0000 1010
Value: Decimal = 11, Hexadecimal = 0b, Individual Bits = 0000 1011
Value: Decimal = 12, Hexadecimal = 0c, Individual Bits = 0000 1100
Value: Decimal = 13, Hexadecimal = 0d, Individual Bits = 0000 1101
Value: Decimal = 14, Hexadecimal = 0e, Individual Bits = 0000 1110
Value: Decimal = 15, Hexadecimal = 0f, Individual Bits = 0000 1111
Value: Decimal = 16, Hexadecimal = 10, Individual Bits = 0001 0000
Value: Decimal = 17, Hexadecimal = 11, Individual Bits = 0001 0001
Value: Decimal = 18, Hexadecimal = 12, Individual Bits = 0001 0010
Value: Decimal = 19, Hexadecimal = 13, Individual Bits = 0001 0011
Value: Decimal = 20, Hexadecimal = 14, Individual Bits = 0001 0100
Value: Decimal = 21, Hexadecimal = 15, Individual Bits = 0001 0101
Value: Decimal = 22, Hexadecimal = 16, Individual Bits = 0001 0110
Value: Decimal = 23, Hexadecimal = 17, Individual Bits = 0001 0111
Value: Decimal = 24, Hexadecimal = 18, Individual Bits = 0001 1000
Value: Decimal = 25, Hexadecimal = 19, Individual Bits = 0001 1001
Value: Decimal = 26, Hexadecimal = 1a, Individual Bits = 0001 1010
Value: Decimal = 27, Hexadecimal = 1b, Individual Bits = 0001 1011
Value: Decimal = 28, Hexadecimal = 1c, Individual Bits = 0001 1100
Value: Decimal = 29, Hexadecimal = 1d, Individual Bits = 0001 1101
Value: Decimal = 30, Hexadecimal = 1e, Individual Bits = 0001 1110
Value: Decimal = 31, Hexadecimal = 1f, Individual Bits = 0001 1111
Value: Decimal = 32, Hexadecimal = 20, Individual Bits = 0010 0000
Value: Decimal = 33, Hexadecimal = 21, Individual Bits = 0010 0001
Value: Decimal = 34, Hexadecimal = 22, Individual Bits = 0010 0010
Value: Decimal = 35, Hexadecimal = 23, Individual Bits = 0010 0011
Value: Decimal = 36, Hexadecimal = 24, Individual Bits = 0010 0100
Value: Decimal = 37, Hexadecimal = 25, Individual Bits = 0010 0101
Value: Decimal = 38, Hexadecimal = 26, Individual Bits = 0010 0110
Value: Decimal = 39, Hexadecimal = 27, Individual Bits = 0010 0111
Value: Decimal = 40, Hexadecimal = 28, Individual Bits = 0010 1000
Value: Decimal = 41, Hexadecimal = 29, Individual Bits = 0010 1001
Value: Decimal = 42, Hexadecimal = 2a, Individual Bits = 0010 1010
Value: Decimal = 88, Hexadecimal = 58, Individual Bits = 0101 1000
Value: Decimal = 89, Hexadecimal = 59, Individual Bits = 0101 1001
Value: Decimal = 90, Hexadecimal = 5a, Individual Bits = 0101 1010
Value: Decimal = 91, Hexadecimal = 5b, Individual Bits = 0101 1011
Value: Decimal = 92, Hexadecimal = 5c, Individual Bits = 0101 1100
Value: Decimal = 93, Hexadecimal = 5d, Individual Bits = 0101 1101
Value: Decimal = 94, Hexadecimal = 5e, Individual Bits = 0101 1110
Value: Decimal = 95, Hexadecimal = 5f, Individual Bits = 0101 1111
Value: Decimal = 96, Hexadecimal = 60, Individual Bits = 0110 0000
Value: Decimal = 97, Hexadecimal = 61, Individual Bits = 0110 0001
Value: Decimal = 98, Hexadecimal = 62, Individual Bits = 0110 0010
Value: Decimal = 99, Hexadecimal = 63, Individual Bits = 0110 0011
Value: Decimal = 100, Hexadecimal = 64, Individual Bits = 0110 0100
Value: Decimal = 101, Hexadecimal = 65, Individual Bits = 0110 0101
Value: Decimal = 102, Hexadecimal = 66, Individual Bits = 0110 0110
Value: Decimal = 103, Hexadecimal = 67, Individual Bits = 0110 0111
Value: Decimal = 120, Hexadecimal = 78, Individual Bits = 0111 1000
Value: Decimal = 121, Hexadecimal = 79, Individual Bits = 0111 1001
Value: Decimal = 122, Hexadecimal = 7a, Individual Bits = 0111 1010
Value: Decimal = 123, Hexadecimal = 7b, Individual Bits = 0111 1011
Value: Decimal = 124, Hexadecimal = 7c, Individual Bits = 0111 1100
Value: Decimal = 125, Hexadecimal = 7d, Individual Bits = 0111 1101
Value: Decimal = 126, Hexadecimal = 7e, Individual Bits = 0111 1110
Value: Decimal = 127, Hexadecimal = 7f, Individual Bits = 0111 1111
Value: Decimal = 128, Hexadecimal = 80, Individual Bits = 1000 0000
Value: Decimal = 129, Hexadecimal = 81, Individual Bits = 1000 0001
Value: Decimal = 130, Hexadecimal = 82, Individual Bits = 1000 0010
Value: Decimal = 131, Hexadecimal = 83, Individual Bits = 1000 0011
Value: Decimal = 132, Hexadecimal = 84, Individual Bits = 1000 0100
Value: Decimal = 133, Hexadecimal = 85, Individual Bits = 1000 0101
Value: Decimal = 134, Hexadecimal = 86, Individual Bits = 1000 0110
Value: Decimal = 135, Hexadecimal = 87, Individual Bits = 1000 0111
Value: Decimal = 136, Hexadecimal = 88, Individual Bits = 1000 1000
Value: Decimal = 137, Hexadecimal = 89, Individual Bits = 1000 1001
Value: Decimal = 138, Hexadecimal = 8a, Individual Bits = 1000 1010
Value: Decimal = 139, Hexadecimal = 8b, Individual Bits = 1000 1011
Value: Decimal = 140, Hexadecimal = 8c, Individual Bits = 1000 1100
Value: Decimal = 141, Hexadecimal = 8d, Individual Bits = 1000 1101
Value: Decimal = 142, Hexadecimal = 8e, Individual Bits = 1000 1110
Value: Decimal = 143, Hexadecimal = 8f, Individual Bits = 1000 1111
Value: Decimal = 144, Hexadecimal = 90, Individual Bits = 1001 0000
Value: Decimal = 145, Hexadecimal = 91, Individual Bits = 1001 0001
Value: Decimal = 150, Hexadecimal = 96, Individual Bits = 1001 0110
Value: Decimal = 151, Hexadecimal = 97, Individual Bits = 1001 0111
Value: Decimal = 199, Hexadecimal = c7, Individual Bits = 1100 0111
Value: Decimal = 200, Hexadecimal = c8, Individual Bits = 1100 1000
Value: Decimal = 201, Hexadecimal = c9, Individual Bits = 1100 1001
Value: Decimal = 222, Hexadecimal = de, Individual Bits = 1101 1110
Value: Decimal = 224, Hexadecimal = e0, Individual Bits = 1110 0000
Value: Decimal = 225, Hexadecimal = e1, Individual Bits = 1110 0001
Value: Decimal = 248, Hexadecimal = f8, Individual Bits = 1111 1000
Value: Decimal = 249, Hexadecimal = f9, Individual Bits = 1111 1001
Value: Decimal = 250, Hexadecimal = fa, Individual Bits = 1111 1010
Value: Decimal = 251, Hexadecimal = fb, Individual Bits = 1111 1011
Value: Decimal = 252, Hexadecimal = fc, Individual Bits = 1111 1100
Value: Decimal = 253, Hexadecimal = fd, Individual Bits = 1111 1101
Value: Decimal = 254, Hexadecimal = fe, Individual Bits = 1111 1110
Value: Decimal = 255, Hexadecimal = ff, Individual Bits = 1111 1111
Done with 8 bit integers
Exercising the formatter with 16 bit integers:
Value: Decimal = 0, Hexadecimal = 0000, Individual Bits = 0000000000000000
Value: Decimal = 1, Hexadecimal = 0001, Individual Bits = 0000000000000001
Value: Decimal = 2, Hexadecimal = 0002, Individual Bits = 0000000000000010
Value: Decimal = 3, Hexadecimal = 0003, Individual Bits = 0000000000000011
Value: Decimal = 4, Hexadecimal = 0004, Individual Bits = 0000000000000100
Value: Decimal = 5, Hexadecimal = 0005, Individual Bits = 0000000000000101
Value: Decimal = 6, Hexadecimal = 0006, Individual Bits = 0000000000000110
Value: Decimal = 7, Hexadecimal = 0007, Individual Bits = 0000000000000111
Value: Decimal = 8, Hexadecimal = 0008, Individual Bits = 0000000000001000
Value: Decimal = 9, Hexadecimal = 0009, Individual Bits = 0000000000001001
Value: Decimal = 10, Hexadecimal = 000a, Individual Bits = 0000000000001010
Value: Decimal = 11, Hexadecimal = 000b, Individual Bits = 0000000000001011
Value: Decimal = 12, Hexadecimal = 000c, Individual Bits = 0000000000001100
Value: Decimal = 13, Hexadecimal = 000d, Individual Bits = 0000000000001101
Value: Decimal = 14, Hexadecimal = 000e, Individual Bits = 0000000000001110
Value: Decimal = 15, Hexadecimal = 000f, Individual Bits = 0000000000001111
Value: Decimal = 16, Hexadecimal = 0010, Individual Bits = 0000000000010000
Value: Decimal = 17, Hexadecimal = 0011, Individual Bits = 0000000000010001
Value: Decimal = 18, Hexadecimal = 0012, Individual Bits = 0000000000010010
Value: Decimal = 19, Hexadecimal = 0013, Individual Bits = 0000000000010011
Value: Decimal = 20, Hexadecimal = 0014, Individual Bits = 0000000000010100
Value: Decimal = 21, Hexadecimal = 0015, Individual Bits = 0000000000010101
Value: Decimal = 22, Hexadecimal = 0016, Individual Bits = 0000000000010110
Value: Decimal = 23, Hexadecimal = 0017, Individual Bits = 0000000000010111
Value: Decimal = 24, Hexadecimal = 0018, Individual Bits = 0000000000011000
Value: Decimal = 25, Hexadecimal = 0019, Individual Bits = 0000000000011001
Value: Decimal = 26, Hexadecimal = 001a, Individual Bits = 0000000000011010
Value: Decimal = 27, Hexadecimal = 001b, Individual Bits = 0000000000011011
Value: Decimal = 28, Hexadecimal = 001c, Individual Bits = 0000000000011100
Value: Decimal = 29, Hexadecimal = 001d, Individual Bits = 0000000000011101
Value: Decimal = 30, Hexadecimal = 001e, Individual Bits = 0000000000011110
Value: Decimal = 31, Hexadecimal = 001f, Individual Bits = 0000000000011111
Value: Decimal = 32, Hexadecimal = 0020, Individual Bits = 0000000000100000
Value: Decimal = 33, Hexadecimal = 0021, Individual Bits = 0000000000100001
Value: Decimal = 34, Hexadecimal = 0022, Individual Bits = 0000000000100010
Value: Decimal = 35, Hexadecimal = 0023, Individual Bits = 0000000000100011
Value: Decimal = 36, Hexadecimal = 0024, Individual Bits = 0000000000100100
Value: Decimal = 37, Hexadecimal = 0025, Individual Bits = 0000000000100101
Value: Decimal = 38, Hexadecimal = 0026, Individual Bits = 0000000000100110
Value: Decimal = 39, Hexadecimal = 0027, Individual Bits = 0000000000100111
Value: Decimal = 40, Hexadecimal = 0028, Individual Bits = 0000000000101000
Value: Decimal = 41, Hexadecimal = 0029, Individual Bits = 0000000000101001
Value: Decimal = 42, Hexadecimal = 002a, Individual Bits = 0000000000101010
Value: Decimal = 88, Hexadecimal = 0058, Individual Bits = 0000000001011000
Value: Decimal = 89, Hexadecimal = 0059, Individual Bits = 0000000001011001
Value: Decimal = 90, Hexadecimal = 005a, Individual Bits = 0000000001011010
Value: Decimal = 91, Hexadecimal = 005b, Individual Bits = 0000000001011011
Value: Decimal = 92, Hexadecimal = 005c, Individual Bits = 0000000001011100
Value: Decimal = 93, Hexadecimal = 005d, Individual Bits = 0000000001011101
Value: Decimal = 94, Hexadecimal = 005e, Individual Bits = 0000000001011110
Value: Decimal = 95, Hexadecimal = 005f, Individual Bits = 0000000001011111
Value: Decimal = 96, Hexadecimal = 0060, Individual Bits = 0000000001100000
Value: Decimal = 97, Hexadecimal = 0061, Individual Bits = 0000000001100001
Value: Decimal = 98, Hexadecimal = 0062, Individual Bits = 0000000001100010
Value: Decimal = 99, Hexadecimal = 0063, Individual Bits = 0000000001100011
Value: Decimal = 100, Hexadecimal = 0064, Individual Bits = 0000000001100100
Value: Decimal = 101, Hexadecimal = 0065, Individual Bits = 0000000001100101
Value: Decimal = 102, Hexadecimal = 0066, Individual Bits = 0000000001100110
Value: Decimal = 103, Hexadecimal = 0067, Individual Bits = 0000000001100111
Value: Decimal = 120, Hexadecimal = 0078, Individual Bits = 0000000001111000
Value: Decimal = 121, Hexadecimal = 0079, Individual Bits = 0000000001111001
Value: Decimal = 122, Hexadecimal = 007a, Individual Bits = 0000000001111010
Value: Decimal = 123, Hexadecimal = 007b, Individual Bits = 0000000001111011
Value: Decimal = 124, Hexadecimal = 007c, Individual Bits = 0000000001111100
Value: Decimal = 125, Hexadecimal = 007d, Individual Bits = 0000000001111101
Value: Decimal = 126, Hexadecimal = 007e, Individual Bits = 0000000001111110
Value: Decimal = 127, Hexadecimal = 007f, Individual Bits = 0000000001111111
Value: Decimal = 128, Hexadecimal = 0080, Individual Bits = 0000000010000000
Value: Decimal = 129, Hexadecimal = 0081, Individual Bits = 0000000010000001
Value: Decimal = 130, Hexadecimal = 0082, Individual Bits = 0000000010000010
Value: Decimal = 131, Hexadecimal = 0083, Individual Bits = 0000000010000011
Value: Decimal = 132, Hexadecimal = 0084, Individual Bits = 0000000010000100
Value: Decimal = 133, Hexadecimal = 0085, Individual Bits = 0000000010000101
Value: Decimal = 134, Hexadecimal = 0086, Individual Bits = 0000000010000110
Value: Decimal = 135, Hexadecimal = 0087, Individual Bits = 0000000010000111
Value: Decimal = 136, Hexadecimal = 0088, Individual Bits = 0000000010001000
Value: Decimal = 137, Hexadecimal = 0089, Individual Bits = 0000000010001001
Value: Decimal = 138, Hexadecimal = 008a, Individual Bits = 0000000010001010
Value: Decimal = 139, Hexadecimal = 008b, Individual Bits = 0000000010001011
Value: Decimal = 140, Hexadecimal = 008c, Individual Bits = 0000000010001100
Value: Decimal = 141, Hexadecimal = 008d, Individual Bits = 0000000010001101
Value: Decimal = 142, Hexadecimal = 008e, Individual Bits = 0000000010001110
Value: Decimal = 143, Hexadecimal = 008f, Individual Bits = 0000000010001111
Value: Decimal = 144, Hexadecimal = 0090, Individual Bits = 0000000010010000
Value: Decimal = 145, Hexadecimal = 0091, Individual Bits = 0000000010010001
Value: Decimal = 150, Hexadecimal = 0096, Individual Bits = 0000000010010110
Value: Decimal = 151, Hexadecimal = 0097, Individual Bits = 0000000010010111
Value: Decimal = 199, Hexadecimal = 00c7, Individual Bits = 0000000011000111
Value: Decimal = 200, Hexadecimal = 00c8, Individual Bits = 0000000011001000
Value: Decimal = 201, Hexadecimal = 00c9, Individual Bits = 0000000011001001
Value: Decimal = 222, Hexadecimal = 00de, Individual Bits = 0000000011011110
Value: Decimal = 224, Hexadecimal = 00e0, Individual Bits = 0000000011100000
Value: Decimal = 225, Hexadecimal = 00e1, Individual Bits = 0000000011100001
Value: Decimal = 248, Hexadecimal = 00f8, Individual Bits = 0000000011111000
Value: Decimal = 249, Hexadecimal = 00f9, Individual Bits = 0000000011111001
Value: Decimal = 250, Hexadecimal = 00fa, Individual Bits = 0000000011111010
Value: Decimal = 251, Hexadecimal = 00fb, Individual Bits = 0000000011111011
Value: Decimal = 252, Hexadecimal = 00fc, Individual Bits = 0000000011111100
Value: Decimal = 253, Hexadecimal = 00fd, Individual Bits = 0000000011111101
Value: Decimal = 254, Hexadecimal = 00fe, Individual Bits = 0000000011111110
Value: Decimal = 255, Hexadecimal = 00ff, Individual Bits = 0000000011111111
Value: Decimal = 256, Hexadecimal = 0100, Individual Bits = 0000000100000000
Value: Decimal = 257, Hexadecimal = 0101, Individual Bits = 0000000100000001
Value: Decimal = 258, Hexadecimal = 0102, Individual Bits = 0000000100000010
Value: Decimal = 259, Hexadecimal = 0103, Individual Bits = 0000000100000011
Value: Decimal = 260, Hexadecimal = 0104, Individual Bits = 0000000100000100
Value: Decimal = 261, Hexadecimal = 0105, Individual Bits = 0000000100000101
Value: Decimal = 262, Hexadecimal = 0106, Individual Bits = 0000000100000110
Value: Decimal = 263, Hexadecimal = 0107, Individual Bits = 0000000100000111
Value: Decimal = 264, Hexadecimal = 0108, Individual Bits = 0000000100001000
Value: Decimal = 265, Hexadecimal = 0109, Individual Bits = 0000000100001001
Value: Decimal = 32,763, Hexadecimal = 7ffb, Individual Bits = 0111111111111011
Value: Decimal = 32,764, Hexadecimal = 7ffc, Individual Bits = 0111111111111100
Value: Decimal = 32,765, Hexadecimal = 7ffd, Individual Bits = 0111111111111101
Value: Decimal = 32,766, Hexadecimal = 7ffe, Individual Bits = 0111111111111110
Value: Decimal = 32,767, Hexadecimal = 7fff, Individual Bits = 0111111111111111
Value: Decimal = 65,524, Hexadecimal = fff4, Individual Bits = 1111111111110100
Value: Decimal = 65,525, Hexadecimal = fff5, Individual Bits = 1111111111110101
Value: Decimal = 65,526, Hexadecimal = fff6, Individual Bits = 1111111111110110
Value: Decimal = 65,527, Hexadecimal = fff7, Individual Bits = 1111111111110111
Value: Decimal = 65,528, Hexadecimal = fff8, Individual Bits = 1111111111111000
Value: Decimal = 65,529, Hexadecimal = fff9, Individual Bits = 1111111111111001
Value: Decimal = 65,530, Hexadecimal = fffa, Individual Bits = 1111111111111010
Value: Decimal = 65,531, Hexadecimal = fffb, Individual Bits = 1111111111111011
Value: Decimal = 65,532, Hexadecimal = fffc, Individual Bits = 1111111111111100
Value: Decimal = 65,533, Hexadecimal = fffd, Individual Bits = 1111111111111101
Value: Decimal = 65,534, Hexadecimal = fffe, Individual Bits = 1111111111111110
Value: Decimal = 65,535, Hexadecimal = ffff, Individual Bits = 1111111111111111
Repeat with formatted array:
Value: Decimal = 0, Hexadecimal = 0000, Individual Bits = 0000 0000 0000 0000
Value: Decimal = 1, Hexadecimal = 0001, Individual Bits = 0000 0000 0000 0001
Value: Decimal = 2, Hexadecimal = 0002, Individual Bits = 0000 0000 0000 0010
Value: Decimal = 3, Hexadecimal = 0003, Individual Bits = 0000 0000 0000 0011
Value: Decimal = 4, Hexadecimal = 0004, Individual Bits = 0000 0000 0000 0100
Value: Decimal = 5, Hexadecimal = 0005, Individual Bits = 0000 0000 0000 0101
Value: Decimal = 6, Hexadecimal = 0006, Individual Bits = 0000 0000 0000 0110
Value: Decimal = 7, Hexadecimal = 0007, Individual Bits = 0000 0000 0000 0111
Value: Decimal = 8, Hexadecimal = 0008, Individual Bits = 0000 0000 0000 1000
Value: Decimal = 9, Hexadecimal = 0009, Individual Bits = 0000 0000 0000 1001
Value: Decimal = 10, Hexadecimal = 000a, Individual Bits = 0000 0000 0000 1010
Value: Decimal = 11, Hexadecimal = 000b, Individual Bits = 0000 0000 0000 1011
Value: Decimal = 12, Hexadecimal = 000c, Individual Bits = 0000 0000 0000 1100
Value: Decimal = 13, Hexadecimal = 000d, Individual Bits = 0000 0000 0000 1101
Value: Decimal = 14, Hexadecimal = 000e, Individual Bits = 0000 0000 0000 1110
Value: Decimal = 15, Hexadecimal = 000f, Individual Bits = 0000 0000 0000 1111
Value: Decimal = 16, Hexadecimal = 0010, Individual Bits = 0000 0000 0001 0000
Value: Decimal = 17, Hexadecimal = 0011, Individual Bits = 0000 0000 0001 0001
Value: Decimal = 18, Hexadecimal = 0012, Individual Bits = 0000 0000 0001 0010
Value: Decimal = 19, Hexadecimal = 0013, Individual Bits = 0000 0000 0001 0011
Value: Decimal = 20, Hexadecimal = 0014, Individual Bits = 0000 0000 0001 0100
Value: Decimal = 21, Hexadecimal = 0015, Individual Bits = 0000 0000 0001 0101
Value: Decimal = 22, Hexadecimal = 0016, Individual Bits = 0000 0000 0001 0110
Value: Decimal = 23, Hexadecimal = 0017, Individual Bits = 0000 0000 0001 0111
Value: Decimal = 24, Hexadecimal = 0018, Individual Bits = 0000 0000 0001 1000
Value: Decimal = 25, Hexadecimal = 0019, Individual Bits = 0000 0000 0001 1001
Value: Decimal = 26, Hexadecimal = 001a, Individual Bits = 0000 0000 0001 1010
Value: Decimal = 27, Hexadecimal = 001b, Individual Bits = 0000 0000 0001 1011
Value: Decimal = 28, Hexadecimal = 001c, Individual Bits = 0000 0000 0001 1100
Value: Decimal = 29, Hexadecimal = 001d, Individual Bits = 0000 0000 0001 1101
Value: Decimal = 30, Hexadecimal = 001e, Individual Bits = 0000 0000 0001 1110
Value: Decimal = 31, Hexadecimal = 001f, Individual Bits = 0000 0000 0001 1111
Value: Decimal = 32, Hexadecimal = 0020, Individual Bits = 0000 0000 0010 0000
Value: Decimal = 33, Hexadecimal = 0021, Individual Bits = 0000 0000 0010 0001
Value: Decimal = 34, Hexadecimal = 0022, Individual Bits = 0000 0000 0010 0010
Value: Decimal = 35, Hexadecimal = 0023, Individual Bits = 0000 0000 0010 0011
Value: Decimal = 36, Hexadecimal = 0024, Individual Bits = 0000 0000 0010 0100
Value: Decimal = 37, Hexadecimal = 0025, Individual Bits = 0000 0000 0010 0101
Value: Decimal = 38, Hexadecimal = 0026, Individual Bits = 0000 0000 0010 0110
Value: Decimal = 39, Hexadecimal = 0027, Individual Bits = 0000 0000 0010 0111
Value: Decimal = 40, Hexadecimal = 0028, Individual Bits = 0000 0000 0010 1000
Value: Decimal = 41, Hexadecimal = 0029, Individual Bits = 0000 0000 0010 1001
Value: Decimal = 42, Hexadecimal = 002a, Individual Bits = 0000 0000 0010 1010
Value: Decimal = 88, Hexadecimal = 0058, Individual Bits = 0000 0000 0101 1000
Value: Decimal = 89, Hexadecimal = 0059, Individual Bits = 0000 0000 0101 1001
Value: Decimal = 90, Hexadecimal = 005a, Individual Bits = 0000 0000 0101 1010
Value: Decimal = 91, Hexadecimal = 005b, Individual Bits = 0000 0000 0101 1011
Value: Decimal = 92, Hexadecimal = 005c, Individual Bits = 0000 0000 0101 1100
Value: Decimal = 93, Hexadecimal = 005d, Individual Bits = 0000 0000 0101 1101
Value: Decimal = 94, Hexadecimal = 005e, Individual Bits = 0000 0000 0101 1110
Value: Decimal = 95, Hexadecimal = 005f, Individual Bits = 0000 0000 0101 1111
Value: Decimal = 96, Hexadecimal = 0060, Individual Bits = 0000 0000 0110 0000
Value: Decimal = 97, Hexadecimal = 0061, Individual Bits = 0000 0000 0110 0001
Value: Decimal = 98, Hexadecimal = 0062, Individual Bits = 0000 0000 0110 0010
Value: Decimal = 99, Hexadecimal = 0063, Individual Bits = 0000 0000 0110 0011
Value: Decimal = 100, Hexadecimal = 0064, Individual Bits = 0000 0000 0110 0100
Value: Decimal = 101, Hexadecimal = 0065, Individual Bits = 0000 0000 0110 0101
Value: Decimal = 102, Hexadecimal = 0066, Individual Bits = 0000 0000 0110 0110
Value: Decimal = 103, Hexadecimal = 0067, Individual Bits = 0000 0000 0110 0111
Value: Decimal = 120, Hexadecimal = 0078, Individual Bits = 0000 0000 0111 1000
Value: Decimal = 121, Hexadecimal = 0079, Individual Bits = 0000 0000 0111 1001
Value: Decimal = 122, Hexadecimal = 007a, Individual Bits = 0000 0000 0111 1010
Value: Decimal = 123, Hexadecimal = 007b, Individual Bits = 0000 0000 0111 1011
Value: Decimal = 124, Hexadecimal = 007c, Individual Bits = 0000 0000 0111 1100
Value: Decimal = 125, Hexadecimal = 007d, Individual Bits = 0000 0000 0111 1101
Value: Decimal = 126, Hexadecimal = 007e, Individual Bits = 0000 0000 0111 1110
Value: Decimal = 127, Hexadecimal = 007f, Individual Bits = 0000 0000 0111 1111
Value: Decimal = 128, Hexadecimal = 0080, Individual Bits = 0000 0000 1000 0000
Value: Decimal = 129, Hexadecimal = 0081, Individual Bits = 0000 0000 1000 0001
Value: Decimal = 130, Hexadecimal = 0082, Individual Bits = 0000 0000 1000 0010
Value: Decimal = 131, Hexadecimal = 0083, Individual Bits = 0000 0000 1000 0011
Value: Decimal = 132, Hexadecimal = 0084, Individual Bits = 0000 0000 1000 0100
Value: Decimal = 133, Hexadecimal = 0085, Individual Bits = 0000 0000 1000 0101
Value: Decimal = 134, Hexadecimal = 0086, Individual Bits = 0000 0000 1000 0110
Value: Decimal = 135, Hexadecimal = 0087, Individual Bits = 0000 0000 1000 0111
Value: Decimal = 136, Hexadecimal = 0088, Individual Bits = 0000 0000 1000 1000
Value: Decimal = 137, Hexadecimal = 0089, Individual Bits = 0000 0000 1000 1001
Value: Decimal = 138, Hexadecimal = 008a, Individual Bits = 0000 0000 1000 1010
Value: Decimal = 139, Hexadecimal = 008b, Individual Bits = 0000 0000 1000 1011
Value: Decimal = 140, Hexadecimal = 008c, Individual Bits = 0000 0000 1000 1100
Value: Decimal = 141, Hexadecimal = 008d, Individual Bits = 0000 0000 1000 1101
Value: Decimal = 142, Hexadecimal = 008e, Individual Bits = 0000 0000 1000 1110
Value: Decimal = 143, Hexadecimal = 008f, Individual Bits = 0000 0000 1000 1111
Value: Decimal = 144, Hexadecimal = 0090, Individual Bits = 0000 0000 1001 0000
Value: Decimal = 145, Hexadecimal = 0091, Individual Bits = 0000 0000 1001 0001
Value: Decimal = 150, Hexadecimal = 0096, Individual Bits = 0000 0000 1001 0110
Value: Decimal = 151, Hexadecimal = 0097, Individual Bits = 0000 0000 1001 0111
Value: Decimal = 199, Hexadecimal = 00c7, Individual Bits = 0000 0000 1100 0111
Value: Decimal = 200, Hexadecimal = 00c8, Individual Bits = 0000 0000 1100 1000
Value: Decimal = 201, Hexadecimal = 00c9, Individual Bits = 0000 0000 1100 1001
Value: Decimal = 222, Hexadecimal = 00de, Individual Bits = 0000 0000 1101 1110
Value: Decimal = 224, Hexadecimal = 00e0, Individual Bits = 0000 0000 1110 0000
Value: Decimal = 225, Hexadecimal = 00e1, Individual Bits = 0000 0000 1110 0001
Value: Decimal = 248, Hexadecimal = 00f8, Individual Bits = 0000 0000 1111 1000
Value: Decimal = 249, Hexadecimal = 00f9, Individual Bits = 0000 0000 1111 1001
Value: Decimal = 250, Hexadecimal = 00fa, Individual Bits = 0000 0000 1111 1010
Value: Decimal = 251, Hexadecimal = 00fb, Individual Bits = 0000 0000 1111 1011
Value: Decimal = 252, Hexadecimal = 00fc, Individual Bits = 0000 0000 1111 1100
Value: Decimal = 253, Hexadecimal = 00fd, Individual Bits = 0000 0000 1111 1101
Value: Decimal = 254, Hexadecimal = 00fe, Individual Bits = 0000 0000 1111 1110
Value: Decimal = 255, Hexadecimal = 00ff, Individual Bits = 0000 0000 1111 1111
Value: Decimal = 256, Hexadecimal = 0100, Individual Bits = 0000 0001 0000 0000
Value: Decimal = 257, Hexadecimal = 0101, Individual Bits = 0000 0001 0000 0001
Value: Decimal = 258, Hexadecimal = 0102, Individual Bits = 0000 0001 0000 0010
Value: Decimal = 259, Hexadecimal = 0103, Individual Bits = 0000 0001 0000 0011
Value: Decimal = 260, Hexadecimal = 0104, Individual Bits = 0000 0001 0000 0100
Value: Decimal = 261, Hexadecimal = 0105, Individual Bits = 0000 0001 0000 0101
Value: Decimal = 262, Hexadecimal = 0106, Individual Bits = 0000 0001 0000 0110
Value: Decimal = 263, Hexadecimal = 0107, Individual Bits = 0000 0001 0000 0111
Value: Decimal = 264, Hexadecimal = 0108, Individual Bits = 0000 0001 0000 1000
Value: Decimal = 265, Hexadecimal = 0109, Individual Bits = 0000 0001 0000 1001
Value: Decimal = 32,763, Hexadecimal = 7ffb, Individual Bits = 0111 1111 1111 1011
Value: Decimal = 32,764, Hexadecimal = 7ffc, Individual Bits = 0111 1111 1111 1100
Value: Decimal = 32,765, Hexadecimal = 7ffd, Individual Bits = 0111 1111 1111 1101
Value: Decimal = 32,766, Hexadecimal = 7ffe, Individual Bits = 0111 1111 1111 1110
Value: Decimal = 32,767, Hexadecimal = 7fff, Individual Bits = 0111 1111 1111 1111
Value: Decimal = 65,524, Hexadecimal = fff4, Individual Bits = 1111 1111 1111 0100
Value: Decimal = 65,525, Hexadecimal = fff5, Individual Bits = 1111 1111 1111 0101
Value: Decimal = 65,526, Hexadecimal = fff6, Individual Bits = 1111 1111 1111 0110
Value: Decimal = 65,527, Hexadecimal = fff7, Individual Bits = 1111 1111 1111 0111
Value: Decimal = 65,528, Hexadecimal = fff8, Individual Bits = 1111 1111 1111 1000
Value: Decimal = 65,529, Hexadecimal = fff9, Individual Bits = 1111 1111 1111 1001
Value: Decimal = 65,530, Hexadecimal = fffa, Individual Bits = 1111 1111 1111 1010
Value: Decimal = 65,531, Hexadecimal = fffb, Individual Bits = 1111 1111 1111 1011
Value: Decimal = 65,532, Hexadecimal = fffc, Individual Bits = 1111 1111 1111 1100
Value: Decimal = 65,533, Hexadecimal = fffd, Individual Bits = 1111 1111 1111 1101
Value: Decimal = 65,534, Hexadecimal = fffe, Individual Bits = 1111 1111 1111 1110
Value: Decimal = 65,535, Hexadecimal = ffff, Individual Bits = 1111 1111 1111 1111
Done with 16 bit integers
Exercising the formatter with 32 bit integers:
Value: Decimal = 0, Hexadecimal = 00000000, Individual Bits = 00000000000000000000000000000000
Value: Decimal = 1, Hexadecimal = 00000001, Individual Bits = 00000000000000000000000000000001
Value: Decimal = 2, Hexadecimal = 00000002, Individual Bits = 00000000000000000000000000000010
Value: Decimal = 3, Hexadecimal = 00000003, Individual Bits = 00000000000000000000000000000011
Value: Decimal = 4, Hexadecimal = 00000004, Individual Bits = 00000000000000000000000000000100
Value: Decimal = 5, Hexadecimal = 00000005, Individual Bits = 00000000000000000000000000000101
Value: Decimal = 6, Hexadecimal = 00000006, Individual Bits = 00000000000000000000000000000110
Value: Decimal = 7, Hexadecimal = 00000007, Individual Bits = 00000000000000000000000000000111
Value: Decimal = 8, Hexadecimal = 00000008, Individual Bits = 00000000000000000000000000001000
Value: Decimal = 9, Hexadecimal = 00000009, Individual Bits = 00000000000000000000000000001001
Value: Decimal = 10, Hexadecimal = 0000000a, Individual Bits = 00000000000000000000000000001010
Value: Decimal = 11, Hexadecimal = 0000000b, Individual Bits = 00000000000000000000000000001011
Value: Decimal = 12, Hexadecimal = 0000000c, Individual Bits = 00000000000000000000000000001100
Value: Decimal = 13, Hexadecimal = 0000000d, Individual Bits = 00000000000000000000000000001101
Value: Decimal = 14, Hexadecimal = 0000000e, Individual Bits = 00000000000000000000000000001110
Value: Decimal = 15, Hexadecimal = 0000000f, Individual Bits = 00000000000000000000000000001111
Value: Decimal = 16, Hexadecimal = 00000010, Individual Bits = 00000000000000000000000000010000
Value: Decimal = 17, Hexadecimal = 00000011, Individual Bits = 00000000000000000000000000010001
Value: Decimal = 18, Hexadecimal = 00000012, Individual Bits = 00000000000000000000000000010010
Value: Decimal = 19, Hexadecimal = 00000013, Individual Bits = 00000000000000000000000000010011
Value: Decimal = 20, Hexadecimal = 00000014, Individual Bits = 00000000000000000000000000010100
Value: Decimal = 21, Hexadecimal = 00000015, Individual Bits = 00000000000000000000000000010101
Value: Decimal = 22, Hexadecimal = 00000016, Individual Bits = 00000000000000000000000000010110
Value: Decimal = 23, Hexadecimal = 00000017, Individual Bits = 00000000000000000000000000010111
Value: Decimal = 24, Hexadecimal = 00000018, Individual Bits = 00000000000000000000000000011000
Value: Decimal = 25, Hexadecimal = 00000019, Individual Bits = 00000000000000000000000000011001
Value: Decimal = 26, Hexadecimal = 0000001a, Individual Bits = 00000000000000000000000000011010
Value: Decimal = 27, Hexadecimal = 0000001b, Individual Bits = 00000000000000000000000000011011
Value: Decimal = 28, Hexadecimal = 0000001c, Individual Bits = 00000000000000000000000000011100
Value: Decimal = 29, Hexadecimal = 0000001d, Individual Bits = 00000000000000000000000000011101
Value: Decimal = 30, Hexadecimal = 0000001e, Individual Bits = 00000000000000000000000000011110
Value: Decimal = 31, Hexadecimal = 0000001f, Individual Bits = 00000000000000000000000000011111
Value: Decimal = 32, Hexadecimal = 00000020, Individual Bits = 00000000000000000000000000100000
Value: Decimal = 33, Hexadecimal = 00000021, Individual Bits = 00000000000000000000000000100001
Value: Decimal = 34, Hexadecimal = 00000022, Individual Bits = 00000000000000000000000000100010
Value: Decimal = 35, Hexadecimal = 00000023, Individual Bits = 00000000000000000000000000100011
Value: Decimal = 36, Hexadecimal = 00000024, Individual Bits = 00000000000000000000000000100100
Value: Decimal = 37, Hexadecimal = 00000025, Individual Bits = 00000000000000000000000000100101
Value: Decimal = 38, Hexadecimal = 00000026, Individual Bits = 00000000000000000000000000100110
Value: Decimal = 39, Hexadecimal = 00000027, Individual Bits = 00000000000000000000000000100111
Value: Decimal = 40, Hexadecimal = 00000028, Individual Bits = 00000000000000000000000000101000
Value: Decimal = 41, Hexadecimal = 00000029, Individual Bits = 00000000000000000000000000101001
Value: Decimal = 42, Hexadecimal = 0000002a, Individual Bits = 00000000000000000000000000101010
Value: Decimal = 88, Hexadecimal = 00000058, Individual Bits = 00000000000000000000000001011000
Value: Decimal = 89, Hexadecimal = 00000059, Individual Bits = 00000000000000000000000001011001
Value: Decimal = 90, Hexadecimal = 0000005a, Individual Bits = 00000000000000000000000001011010
Value: Decimal = 91, Hexadecimal = 0000005b, Individual Bits = 00000000000000000000000001011011
Value: Decimal = 92, Hexadecimal = 0000005c, Individual Bits = 00000000000000000000000001011100
Value: Decimal = 93, Hexadecimal = 0000005d, Individual Bits = 00000000000000000000000001011101
Value: Decimal = 94, Hexadecimal = 0000005e, Individual Bits = 00000000000000000000000001011110
Value: Decimal = 95, Hexadecimal = 0000005f, Individual Bits = 00000000000000000000000001011111
Value: Decimal = 96, Hexadecimal = 00000060, Individual Bits = 00000000000000000000000001100000
Value: Decimal = 97, Hexadecimal = 00000061, Individual Bits = 00000000000000000000000001100001
Value: Decimal = 98, Hexadecimal = 00000062, Individual Bits = 00000000000000000000000001100010
Value: Decimal = 99, Hexadecimal = 00000063, Individual Bits = 00000000000000000000000001100011
Value: Decimal = 100, Hexadecimal = 00000064, Individual Bits = 00000000000000000000000001100100
Value: Decimal = 101, Hexadecimal = 00000065, Individual Bits = 00000000000000000000000001100101
Value: Decimal = 102, Hexadecimal = 00000066, Individual Bits = 00000000000000000000000001100110
Value: Decimal = 103, Hexadecimal = 00000067, Individual Bits = 00000000000000000000000001100111
Value: Decimal = 120, Hexadecimal = 00000078, Individual Bits = 00000000000000000000000001111000
Value: Decimal = 121, Hexadecimal = 00000079, Individual Bits = 00000000000000000000000001111001
Value: Decimal = 122, Hexadecimal = 0000007a, Individual Bits = 00000000000000000000000001111010
Value: Decimal = 123, Hexadecimal = 0000007b, Individual Bits = 00000000000000000000000001111011
Value: Decimal = 124, Hexadecimal = 0000007c, Individual Bits = 00000000000000000000000001111100
Value: Decimal = 125, Hexadecimal = 0000007d, Individual Bits = 00000000000000000000000001111101
Value: Decimal = 126, Hexadecimal = 0000007e, Individual Bits = 00000000000000000000000001111110
Value: Decimal = 127, Hexadecimal = 0000007f, Individual Bits = 00000000000000000000000001111111
Value: Decimal = 128, Hexadecimal = 00000080, Individual Bits = 00000000000000000000000010000000
Value: Decimal = 129, Hexadecimal = 00000081, Individual Bits = 00000000000000000000000010000001
Value: Decimal = 130, Hexadecimal = 00000082, Individual Bits = 00000000000000000000000010000010
Value: Decimal = 131, Hexadecimal = 00000083, Individual Bits = 00000000000000000000000010000011
Value: Decimal = 132, Hexadecimal = 00000084, Individual Bits = 00000000000000000000000010000100
Value: Decimal = 133, Hexadecimal = 00000085, Individual Bits = 00000000000000000000000010000101
Value: Decimal = 134, Hexadecimal = 00000086, Individual Bits = 00000000000000000000000010000110
Value: Decimal = 135, Hexadecimal = 00000087, Individual Bits = 00000000000000000000000010000111
Value: Decimal = 136, Hexadecimal = 00000088, Individual Bits = 00000000000000000000000010001000
Value: Decimal = 137, Hexadecimal = 00000089, Individual Bits = 00000000000000000000000010001001
Value: Decimal = 138, Hexadecimal = 0000008a, Individual Bits = 00000000000000000000000010001010
Value: Decimal = 139, Hexadecimal = 0000008b, Individual Bits = 00000000000000000000000010001011
Value: Decimal = 140, Hexadecimal = 0000008c, Individual Bits = 00000000000000000000000010001100
Value: Decimal = 141, Hexadecimal = 0000008d, Individual Bits = 00000000000000000000000010001101
Value: Decimal = 142, Hexadecimal = 0000008e, Individual Bits = 00000000000000000000000010001110
Value: Decimal = 143, Hexadecimal = 0000008f, Individual Bits = 00000000000000000000000010001111
Value: Decimal = 144, Hexadecimal = 00000090, Individual Bits = 00000000000000000000000010010000
Value: Decimal = 145, Hexadecimal = 00000091, Individual Bits = 00000000000000000000000010010001
Value: Decimal = 150, Hexadecimal = 00000096, Individual Bits = 00000000000000000000000010010110
Value: Decimal = 151, Hexadecimal = 00000097, Individual Bits = 00000000000000000000000010010111
Value: Decimal = 199, Hexadecimal = 000000c7, Individual Bits = 00000000000000000000000011000111
Value: Decimal = 200, Hexadecimal = 000000c8, Individual Bits = 00000000000000000000000011001000
Value: Decimal = 201, Hexadecimal = 000000c9, Individual Bits = 00000000000000000000000011001001
Value: Decimal = 222, Hexadecimal = 000000de, Individual Bits = 00000000000000000000000011011110
Value: Decimal = 224, Hexadecimal = 000000e0, Individual Bits = 00000000000000000000000011100000
Value: Decimal = 225, Hexadecimal = 000000e1, Individual Bits = 00000000000000000000000011100001
Value: Decimal = 248, Hexadecimal = 000000f8, Individual Bits = 00000000000000000000000011111000
Value: Decimal = 249, Hexadecimal = 000000f9, Individual Bits = 00000000000000000000000011111001
Value: Decimal = 250, Hexadecimal = 000000fa, Individual Bits = 00000000000000000000000011111010
Value: Decimal = 251, Hexadecimal = 000000fb, Individual Bits = 00000000000000000000000011111011
Value: Decimal = 252, Hexadecimal = 000000fc, Individual Bits = 00000000000000000000000011111100
Value: Decimal = 253, Hexadecimal = 000000fd, Individual Bits = 00000000000000000000000011111101
Value: Decimal = 254, Hexadecimal = 000000fe, Individual Bits = 00000000000000000000000011111110
Value: Decimal = 255, Hexadecimal = 000000ff, Individual Bits = 00000000000000000000000011111111
Value: Decimal = 256, Hexadecimal = 00000100, Individual Bits = 00000000000000000000000100000000
Value: Decimal = 257, Hexadecimal = 00000101, Individual Bits = 00000000000000000000000100000001
Value: Decimal = 258, Hexadecimal = 00000102, Individual Bits = 00000000000000000000000100000010
Value: Decimal = 259, Hexadecimal = 00000103, Individual Bits = 00000000000000000000000100000011
Value: Decimal = 260, Hexadecimal = 00000104, Individual Bits = 00000000000000000000000100000100
Value: Decimal = 261, Hexadecimal = 00000105, Individual Bits = 00000000000000000000000100000101
Value: Decimal = 262, Hexadecimal = 00000106, Individual Bits = 00000000000000000000000100000110
Value: Decimal = 263, Hexadecimal = 00000107, Individual Bits = 00000000000000000000000100000111
Value: Decimal = 264, Hexadecimal = 00000108, Individual Bits = 00000000000000000000000100001000
Value: Decimal = 265, Hexadecimal = 00000109, Individual Bits = 00000000000000000000000100001001
Value: Decimal = 32,763, Hexadecimal = 00007ffb, Individual Bits = 00000000000000000111111111111011
Value: Decimal = 32,764, Hexadecimal = 00007ffc, Individual Bits = 00000000000000000111111111111100
Value: Decimal = 32,765, Hexadecimal = 00007ffd, Individual Bits = 00000000000000000111111111111101
Value: Decimal = 32,766, Hexadecimal = 00007ffe, Individual Bits = 00000000000000000111111111111110
Value: Decimal = 32,767, Hexadecimal = 00007fff, Individual Bits = 00000000000000000111111111111111
Value: Decimal = 65,524, Hexadecimal = 0000fff4, Individual Bits = 00000000000000001111111111110100
Value: Decimal = 65,525, Hexadecimal = 0000fff5, Individual Bits = 00000000000000001111111111110101
Value: Decimal = 65,526, Hexadecimal = 0000fff6, Individual Bits = 00000000000000001111111111110110
Value: Decimal = 65,527, Hexadecimal = 0000fff7, Individual Bits = 00000000000000001111111111110111
Value: Decimal = 65,528, Hexadecimal = 0000fff8, Individual Bits = 00000000000000001111111111111000
Value: Decimal = 65,529, Hexadecimal = 0000fff9, Individual Bits = 00000000000000001111111111111001
Value: Decimal = 65,530, Hexadecimal = 0000fffa, Individual Bits = 00000000000000001111111111111010
Value: Decimal = 65,531, Hexadecimal = 0000fffb, Individual Bits = 00000000000000001111111111111011
Value: Decimal = 65,532, Hexadecimal = 0000fffc, Individual Bits = 00000000000000001111111111111100
Value: Decimal = 65,533, Hexadecimal = 0000fffd, Individual Bits = 00000000000000001111111111111101
Value: Decimal = 65,534, Hexadecimal = 0000fffe, Individual Bits = 00000000000000001111111111111110
Value: Decimal = 65,535, Hexadecimal = 0000ffff, Individual Bits = 00000000000000001111111111111111
Value: Decimal = 65,536, Hexadecimal = 00010000, Individual Bits = 00000000000000010000000000000000
Value: Decimal = 2,147,483,639, Hexadecimal = 7ffffff7, Individual Bits = 01111111111111111111111111110111
Value: Decimal = 2,147,483,640, Hexadecimal = 7ffffff8, Individual Bits = 01111111111111111111111111111000
Value: Decimal = 2,147,483,641, Hexadecimal = 7ffffff9, Individual Bits = 01111111111111111111111111111001
Value: Decimal = 2,147,483,642, Hexadecimal = 7ffffffa, Individual Bits = 01111111111111111111111111111010
Value: Decimal = 2,147,483,643, Hexadecimal = 7ffffffb, Individual Bits = 01111111111111111111111111111011
Value: Decimal = 2,147,483,644, Hexadecimal = 7ffffffc, Individual Bits = 01111111111111111111111111111100
Value: Decimal = 2,147,483,645, Hexadecimal = 7ffffffd, Individual Bits = 01111111111111111111111111111101
Value: Decimal = 2,147,483,646, Hexadecimal = 7ffffffe, Individual Bits = 01111111111111111111111111111110
Value: Decimal = 2,147,483,647, Hexadecimal = 7fffffff, Individual Bits = 01111111111111111111111111111111
Value: Decimal = 2,147,483,648, Hexadecimal = 80000000, Individual Bits = 10000000000000000000000000000000
Value: Decimal = 2,147,483,649, Hexadecimal = 80000001, Individual Bits = 10000000000000000000000000000001
Value: Decimal = 2,147,483,650, Hexadecimal = 80000002, Individual Bits = 10000000000000000000000000000010
Value: Decimal = 2,147,483,651, Hexadecimal = 80000003, Individual Bits = 10000000000000000000000000000011
Value: Decimal = 2,147,483,652, Hexadecimal = 80000004, Individual Bits = 10000000000000000000000000000100
Value: Decimal = 4,294,967,290, Hexadecimal = fffffffa, Individual Bits = 11111111111111111111111111111010
Value: Decimal = 4,294,967,291, Hexadecimal = fffffffb, Individual Bits = 11111111111111111111111111111011
Value: Decimal = 4,294,967,292, Hexadecimal = fffffffc, Individual Bits = 11111111111111111111111111111100
Value: Decimal = 4,294,967,293, Hexadecimal = fffffffd, Individual Bits = 11111111111111111111111111111101
Value: Decimal = 4,294,967,294, Hexadecimal = fffffffe, Individual Bits = 11111111111111111111111111111110
Value: Decimal = 4,294,967,295, Hexadecimal = ffffffff, Individual Bits = 11111111111111111111111111111111
Repeat with formatted array:
Value: Decimal = 0, Hexadecimal = 00000000, Individual Bits = 0000 0000 0000 0000 0000 0000 0000 0000
Value: Decimal = 1, Hexadecimal = 00000001, Individual Bits = 0000 0000 0000 0000 0000 0000 0000 0001
Value: Decimal = 2, Hexadecimal = 00000002, Individual Bits = 0000 0000 0000 0000 0000 0000 0000 0010
Value: Decimal = 3, Hexadecimal = 00000003, Individual Bits = 0000 0000 0000 0000 0000 0000 0000 0011
Value: Decimal = 4, Hexadecimal = 00000004, Individual Bits = 0000 0000 0000 0000 0000 0000 0000 0100
Value: Decimal = 5, Hexadecimal = 00000005, Individual Bits = 0000 0000 0000 0000 0000 0000 0000 0101
Value: Decimal = 6, Hexadecimal = 00000006, Individual Bits = 0000 0000 0000 0000 0000 0000 0000 0110
Value: Decimal = 7, Hexadecimal = 00000007, Individual Bits = 0000 0000 0000 0000 0000 0000 0000 0111
Value: Decimal = 8, Hexadecimal = 00000008, Individual Bits = 0000 0000 0000 0000 0000 0000 0000 1000
Value: Decimal = 9, Hexadecimal = 00000009, Individual Bits = 0000 0000 0000 0000 0000 0000 0000 1001
Value: Decimal = 10, Hexadecimal = 0000000a, Individual Bits = 0000 0000 0000 0000 0000 0000 0000 1010
Value: Decimal = 11, Hexadecimal = 0000000b, Individual Bits = 0000 0000 0000 0000 0000 0000 0000 1011
Value: Decimal = 12, Hexadecimal = 0000000c, Individual Bits = 0000 0000 0000 0000 0000 0000 0000 1100
Value: Decimal = 13, Hexadecimal = 0000000d, Individual Bits = 0000 0000 0000 0000 0000 0000 0000 1101
Value: Decimal = 14, Hexadecimal = 0000000e, Individual Bits = 0000 0000 0000 0000 0000 0000 0000 1110
Value: Decimal = 15, Hexadecimal = 0000000f, Individual Bits = 0000 0000 0000 0000 0000 0000 0000 1111
Value: Decimal = 16, Hexadecimal = 00000010, Individual Bits = 0000 0000 0000 0000 0000 0000 0001 0000
Value: Decimal = 17, Hexadecimal = 00000011, Individual Bits = 0000 0000 0000 0000 0000 0000 0001 0001
Value: Decimal = 18, Hexadecimal = 00000012, Individual Bits = 0000 0000 0000 0000 0000 0000 0001 0010
Value: Decimal = 19, Hexadecimal = 00000013, Individual Bits = 0000 0000 0000 0000 0000 0000 0001 0011
Value: Decimal = 20, Hexadecimal = 00000014, Individual Bits = 0000 0000 0000 0000 0000 0000 0001 0100
Value: Decimal = 21, Hexadecimal = 00000015, Individual Bits = 0000 0000 0000 0000 0000 0000 0001 0101
Value: Decimal = 22, Hexadecimal = 00000016, Individual Bits = 0000 0000 0000 0000 0000 0000 0001 0110
Value: Decimal = 23, Hexadecimal = 00000017, Individual Bits = 0000 0000 0000 0000 0000 0000 0001 0111
Value: Decimal = 24, Hexadecimal = 00000018, Individual Bits = 0000 0000 0000 0000 0000 0000 0001 1000
Value: Decimal = 25, Hexadecimal = 00000019, Individual Bits = 0000 0000 0000 0000 0000 0000 0001 1001
Value: Decimal = 26, Hexadecimal = 0000001a, Individual Bits = 0000 0000 0000 0000 0000 0000 0001 1010
Value: Decimal = 27, Hexadecimal = 0000001b, Individual Bits = 0000 0000 0000 0000 0000 0000 0001 1011
Value: Decimal = 28, Hexadecimal = 0000001c, Individual Bits = 0000 0000 0000 0000 0000 0000 0001 1100
Value: Decimal = 29, Hexadecimal = 0000001d, Individual Bits = 0000 0000 0000 0000 0000 0000 0001 1101
Value: Decimal = 30, Hexadecimal = 0000001e, Individual Bits = 0000 0000 0000 0000 0000 0000 0001 1110
Value: Decimal = 31, Hexadecimal = 0000001f, Individual Bits = 0000 0000 0000 0000 0000 0000 0001 1111
Value: Decimal = 32, Hexadecimal = 00000020, Individual Bits = 0000 0000 0000 0000 0000 0000 0010 0000
Value: Decimal = 33, Hexadecimal = 00000021, Individual Bits = 0000 0000 0000 0000 0000 0000 0010 0001
Value: Decimal = 34, Hexadecimal = 00000022, Individual Bits = 0000 0000 0000 0000 0000 0000 0010 0010
Value: Decimal = 35, Hexadecimal = 00000023, Individual Bits = 0000 0000 0000 0000 0000 0000 0010 0011
Value: Decimal = 36, Hexadecimal = 00000024, Individual Bits = 0000 0000 0000 0000 0000 0000 0010 0100
Value: Decimal = 37, Hexadecimal = 00000025, Individual Bits = 0000 0000 0000 0000 0000 0000 0010 0101
Value: Decimal = 38, Hexadecimal = 00000026, Individual Bits = 0000 0000 0000 0000 0000 0000 0010 0110
Value: Decimal = 39, Hexadecimal = 00000027, Individual Bits = 0000 0000 0000 0000 0000 0000 0010 0111
Value: Decimal = 40, Hexadecimal = 00000028, Individual Bits = 0000 0000 0000 0000 0000 0000 0010 1000
Value: Decimal = 41, Hexadecimal = 00000029, Individual Bits = 0000 0000 0000 0000 0000 0000 0010 1001
Value: Decimal = 42, Hexadecimal = 0000002a, Individual Bits = 0000 0000 0000 0000 0000 0000 0010 1010
Value: Decimal = 88, Hexadecimal = 00000058, Individual Bits = 0000 0000 0000 0000 0000 0000 0101 1000
Value: Decimal = 89, Hexadecimal = 00000059, Individual Bits = 0000 0000 0000 0000 0000 0000 0101 1001
Value: Decimal = 90, Hexadecimal = 0000005a, Individual Bits = 0000 0000 0000 0000 0000 0000 0101 1010
Value: Decimal = 91, Hexadecimal = 0000005b, Individual Bits = 0000 0000 0000 0000 0000 0000 0101 1011
Value: Decimal = 92, Hexadecimal = 0000005c, Individual Bits = 0000 0000 0000 0000 0000 0000 0101 1100
Value: Decimal = 93, Hexadecimal = 0000005d, Individual Bits = 0000 0000 0000 0000 0000 0000 0101 1101
Value: Decimal = 94, Hexadecimal = 0000005e, Individual Bits = 0000 0000 0000 0000 0000 0000 0101 1110
Value: Decimal = 95, Hexadecimal = 0000005f, Individual Bits = 0000 0000 0000 0000 0000 0000 0101 1111
Value: Decimal = 96, Hexadecimal = 00000060, Individual Bits = 0000 0000 0000 0000 0000 0000 0110 0000
Value: Decimal = 97, Hexadecimal = 00000061, Individual Bits = 0000 0000 0000 0000 0000 0000 0110 0001
Value: Decimal = 98, Hexadecimal = 00000062, Individual Bits = 0000 0000 0000 0000 0000 0000 0110 0010
Value: Decimal = 99, Hexadecimal = 00000063, Individual Bits = 0000 0000 0000 0000 0000 0000 0110 0011
Value: Decimal = 100, Hexadecimal = 00000064, Individual Bits = 0000 0000 0000 0000 0000 0000 0110 0100
Value: Decimal = 101, Hexadecimal = 00000065, Individual Bits = 0000 0000 0000 0000 0000 0000 0110 0101
Value: Decimal = 102, Hexadecimal = 00000066, Individual Bits = 0000 0000 0000 0000 0000 0000 0110 0110
Value: Decimal = 103, Hexadecimal = 00000067, Individual Bits = 0000 0000 0000 0000 0000 0000 0110 0111
Value: Decimal = 120, Hexadecimal = 00000078, Individual Bits = 0000 0000 0000 0000 0000 0000 0111 1000
Value: Decimal = 121, Hexadecimal = 00000079, Individual Bits = 0000 0000 0000 0000 0000 0000 0111 1001
Value: Decimal = 122, Hexadecimal = 0000007a, Individual Bits = 0000 0000 0000 0000 0000 0000 0111 1010
Value: Decimal = 123, Hexadecimal = 0000007b, Individual Bits = 0000 0000 0000 0000 0000 0000 0111 1011
Value: Decimal = 124, Hexadecimal = 0000007c, Individual Bits = 0000 0000 0000 0000 0000 0000 0111 1100
Value: Decimal = 125, Hexadecimal = 0000007d, Individual Bits = 0000 0000 0000 0000 0000 0000 0111 1101
Value: Decimal = 126, Hexadecimal = 0000007e, Individual Bits = 0000 0000 0000 0000 0000 0000 0111 1110
Value: Decimal = 127, Hexadecimal = 0000007f, Individual Bits = 0000 0000 0000 0000 0000 0000 0111 1111
Value: Decimal = 128, Hexadecimal = 00000080, Individual Bits = 0000 0000 0000 0000 0000 0000 1000 0000
Value: Decimal = 129, Hexadecimal = 00000081, Individual Bits = 0000 0000 0000 0000 0000 0000 1000 0001
Value: Decimal = 130, Hexadecimal = 00000082, Individual Bits = 0000 0000 0000 0000 0000 0000 1000 0010
Value: Decimal = 131, Hexadecimal = 00000083, Individual Bits = 0000 0000 0000 0000 0000 0000 1000 0011
Value: Decimal = 132, Hexadecimal = 00000084, Individual Bits = 0000 0000 0000 0000 0000 0000 1000 0100
Value: Decimal = 133, Hexadecimal = 00000085, Individual Bits = 0000 0000 0000 0000 0000 0000 1000 0101
Value: Decimal = 134, Hexadecimal = 00000086, Individual Bits = 0000 0000 0000 0000 0000 0000 1000 0110
Value: Decimal = 135, Hexadecimal = 00000087, Individual Bits = 0000 0000 0000 0000 0000 0000 1000 0111
Value: Decimal = 136, Hexadecimal = 00000088, Individual Bits = 0000 0000 0000 0000 0000 0000 1000 1000
Value: Decimal = 137, Hexadecimal = 00000089, Individual Bits = 0000 0000 0000 0000 0000 0000 1000 1001
Value: Decimal = 138, Hexadecimal = 0000008a, Individual Bits = 0000 0000 0000 0000 0000 0000 1000 1010
Value: Decimal = 139, Hexadecimal = 0000008b, Individual Bits = 0000 0000 0000 0000 0000 0000 1000 1011
Value: Decimal = 140, Hexadecimal = 0000008c, Individual Bits = 0000 0000 0000 0000 0000 0000 1000 1100
Value: Decimal = 141, Hexadecimal = 0000008d, Individual Bits = 0000 0000 0000 0000 0000 0000 1000 1101
Value: Decimal = 142, Hexadecimal = 0000008e, Individual Bits = 0000 0000 0000 0000 0000 0000 1000 1110
Value: Decimal = 143, Hexadecimal = 0000008f, Individual Bits = 0000 0000 0000 0000 0000 0000 1000 1111
Value: Decimal = 144, Hexadecimal = 00000090, Individual Bits = 0000 0000 0000 0000 0000 0000 1001 0000
Value: Decimal = 145, Hexadecimal = 00000091, Individual Bits = 0000 0000 0000 0000 0000 0000 1001 0001
Value: Decimal = 150, Hexadecimal = 00000096, Individual Bits = 0000 0000 0000 0000 0000 0000 1001 0110
Value: Decimal = 151, Hexadecimal = 00000097, Individual Bits = 0000 0000 0000 0000 0000 0000 1001 0111
Value: Decimal = 199, Hexadecimal = 000000c7, Individual Bits = 0000 0000 0000 0000 0000 0000 1100 0111
Value: Decimal = 200, Hexadecimal = 000000c8, Individual Bits = 0000 0000 0000 0000 0000 0000 1100 1000
Value: Decimal = 201, Hexadecimal = 000000c9, Individual Bits = 0000 0000 0000 0000 0000 0000 1100 1001
Value: Decimal = 222, Hexadecimal = 000000de, Individual Bits = 0000 0000 0000 0000 0000 0000 1101 1110
Value: Decimal = 224, Hexadecimal = 000000e0, Individual Bits = 0000 0000 0000 0000 0000 0000 1110 0000
Value: Decimal = 225, Hexadecimal = 000000e1, Individual Bits = 0000 0000 0000 0000 0000 0000 1110 0001
Value: Decimal = 248, Hexadecimal = 000000f8, Individual Bits = 0000 0000 0000 0000 0000 0000 1111 1000
Value: Decimal = 249, Hexadecimal = 000000f9, Individual Bits = 0000 0000 0000 0000 0000 0000 1111 1001
Value: Decimal = 250, Hexadecimal = 000000fa, Individual Bits = 0000 0000 0000 0000 0000 0000 1111 1010
Value: Decimal = 251, Hexadecimal = 000000fb, Individual Bits = 0000 0000 0000 0000 0000 0000 1111 1011
Value: Decimal = 252, Hexadecimal = 000000fc, Individual Bits = 0000 0000 0000 0000 0000 0000 1111 1100
Value: Decimal = 253, Hexadecimal = 000000fd, Individual Bits = 0000 0000 0000 0000 0000 0000 1111 1101
Value: Decimal = 254, Hexadecimal = 000000fe, Individual Bits = 0000 0000 0000 0000 0000 0000 1111 1110
Value: Decimal = 255, Hexadecimal = 000000ff, Individual Bits = 0000 0000 0000 0000 0000 0000 1111 1111
Value: Decimal = 256, Hexadecimal = 00000100, Individual Bits = 0000 0000 0000 0000 0000 0001 0000 0000
Value: Decimal = 257, Hexadecimal = 00000101, Individual Bits = 0000 0000 0000 0000 0000 0001 0000 0001
Value: Decimal = 258, Hexadecimal = 00000102, Individual Bits = 0000 0000 0000 0000 0000 0001 0000 0010
Value: Decimal = 259, Hexadecimal = 00000103, Individual Bits = 0000 0000 0000 0000 0000 0001 0000 0011
Value: Decimal = 260, Hexadecimal = 00000104, Individual Bits = 0000 0000 0000 0000 0000 0001 0000 0100
Value: Decimal = 261, Hexadecimal = 00000105, Individual Bits = 0000 0000 0000 0000 0000 0001 0000 0101
Value: Decimal = 262, Hexadecimal = 00000106, Individual Bits = 0000 0000 0000 0000 0000 0001 0000 0110
Value: Decimal = 263, Hexadecimal = 00000107, Individual Bits = 0000 0000 0000 0000 0000 0001 0000 0111
Value: Decimal = 264, Hexadecimal = 00000108, Individual Bits = 0000 0000 0000 0000 0000 0001 0000 1000
Value: Decimal = 265, Hexadecimal = 00000109, Individual Bits = 0000 0000 0000 0000 0000 0001 0000 1001
Value: Decimal = 32,763, Hexadecimal = 00007ffb, Individual Bits = 0000 0000 0000 0000 0111 1111 1111 1011
Value: Decimal = 32,764, Hexadecimal = 00007ffc, Individual Bits = 0000 0000 0000 0000 0111 1111 1111 1100
Value: Decimal = 32,765, Hexadecimal = 00007ffd, Individual Bits = 0000 0000 0000 0000 0111 1111 1111 1101
Value: Decimal = 32,766, Hexadecimal = 00007ffe, Individual Bits = 0000 0000 0000 0000 0111 1111 1111 1110
Value: Decimal = 32,767, Hexadecimal = 00007fff, Individual Bits = 0000 0000 0000 0000 0111 1111 1111 1111
Value: Decimal = 65,524, Hexadecimal = 0000fff4, Individual Bits = 0000 0000 0000 0000 1111 1111 1111 0100
Value: Decimal = 65,525, Hexadecimal = 0000fff5, Individual Bits = 0000 0000 0000 0000 1111 1111 1111 0101
Value: Decimal = 65,526, Hexadecimal = 0000fff6, Individual Bits = 0000 0000 0000 0000 1111 1111 1111 0110
Value: Decimal = 65,527, Hexadecimal = 0000fff7, Individual Bits = 0000 0000 0000 0000 1111 1111 1111 0111
Value: Decimal = 65,528, Hexadecimal = 0000fff8, Individual Bits = 0000 0000 0000 0000 1111 1111 1111 1000
Value: Decimal = 65,529, Hexadecimal = 0000fff9, Individual Bits = 0000 0000 0000 0000 1111 1111 1111 1001
Value: Decimal = 65,530, Hexadecimal = 0000fffa, Individual Bits = 0000 0000 0000 0000 1111 1111 1111 1010
Value: Decimal = 65,531, Hexadecimal = 0000fffb, Individual Bits = 0000 0000 0000 0000 1111 1111 1111 1011
Value: Decimal = 65,532, Hexadecimal = 0000fffc, Individual Bits = 0000 0000 0000 0000 1111 1111 1111 1100
Value: Decimal = 65,533, Hexadecimal = 0000fffd, Individual Bits = 0000 0000 0000 0000 1111 1111 1111 1101
Value: Decimal = 65,534, Hexadecimal = 0000fffe, Individual Bits = 0000 0000 0000 0000 1111 1111 1111 1110
Value: Decimal = 65,535, Hexadecimal = 0000ffff, Individual Bits = 0000 0000 0000 0000 1111 1111 1111 1111
Value: Decimal = 65,536, Hexadecimal = 00010000, Individual Bits = 0000 0000 0000 0001 0000 0000 0000 0000
Value: Decimal = 2,147,483,639, Hexadecimal = 7ffffff7, Individual Bits = 0111 1111 1111 1111 1111 1111 1111 0111
Value: Decimal = 2,147,483,640, Hexadecimal = 7ffffff8, Individual Bits = 0111 1111 1111 1111 1111 1111 1111 1000
Value: Decimal = 2,147,483,641, Hexadecimal = 7ffffff9, Individual Bits = 0111 1111 1111 1111 1111 1111 1111 1001
Value: Decimal = 2,147,483,642, Hexadecimal = 7ffffffa, Individual Bits = 0111 1111 1111 1111 1111 1111 1111 1010
Value: Decimal = 2,147,483,643, Hexadecimal = 7ffffffb, Individual Bits = 0111 1111 1111 1111 1111 1111 1111 1011
Value: Decimal = 2,147,483,644, Hexadecimal = 7ffffffc, Individual Bits = 0111 1111 1111 1111 1111 1111 1111 1100
Value: Decimal = 2,147,483,645, Hexadecimal = 7ffffffd, Individual Bits = 0111 1111 1111 1111 1111 1111 1111 1101
Value: Decimal = 2,147,483,646, Hexadecimal = 7ffffffe, Individual Bits = 0111 1111 1111 1111 1111 1111 1111 1110
Value: Decimal = 2,147,483,647, Hexadecimal = 7fffffff, Individual Bits = 0111 1111 1111 1111 1111 1111 1111 1111
Value: Decimal = 2,147,483,648, Hexadecimal = 80000000, Individual Bits = 1000 0000 0000 0000 0000 0000 0000 0000
Value: Decimal = 2,147,483,649, Hexadecimal = 80000001, Individual Bits = 1000 0000 0000 0000 0000 0000 0000 0001
Value: Decimal = 2,147,483,650, Hexadecimal = 80000002, Individual Bits = 1000 0000 0000 0000 0000 0000 0000 0010
Value: Decimal = 2,147,483,651, Hexadecimal = 80000003, Individual Bits = 1000 0000 0000 0000 0000 0000 0000 0011
Value: Decimal = 2,147,483,652, Hexadecimal = 80000004, Individual Bits = 1000 0000 0000 0000 0000 0000 0000 0100
Value: Decimal = 4,294,967,290, Hexadecimal = fffffffa, Individual Bits = 1111 1111 1111 1111 1111 1111 1111 1010
Value: Decimal = 4,294,967,291, Hexadecimal = fffffffb, Individual Bits = 1111 1111 1111 1111 1111 1111 1111 1011
Value: Decimal = 4,294,967,292, Hexadecimal = fffffffc, Individual Bits = 1111 1111 1111 1111 1111 1111 1111 1100
Value: Decimal = 4,294,967,293, Hexadecimal = fffffffd, Individual Bits = 1111 1111 1111 1111 1111 1111 1111 1101
Value: Decimal = 4,294,967,294, Hexadecimal = fffffffe, Individual Bits = 1111 1111 1111 1111 1111 1111 1111 1110
Value: Decimal = 4,294,967,295, Hexadecimal = ffffffff, Individual Bits = 1111 1111 1111 1111 1111 1111 1111 1111
Done with 32 bit integers
Exercising the formatter with 64 bit integers:
Value: Decimal = 0, Hexadecimal = 0000000000000000, Individual Bits = 0000000000000000000000000000000000000000000000000000000000000000
Value: Decimal = 1, Hexadecimal = 0000000000000001, Individual Bits = 0000000000000000000000000000000000000000000000000000000000000001
Value: Decimal = 2, Hexadecimal = 0000000000000002, Individual Bits = 0000000000000000000000000000000000000000000000000000000000000010
Value: Decimal = 3, Hexadecimal = 0000000000000003, Individual Bits = 0000000000000000000000000000000000000000000000000000000000000011
Value: Decimal = 4, Hexadecimal = 0000000000000004, Individual Bits = 0000000000000000000000000000000000000000000000000000000000000100
Value: Decimal = 5, Hexadecimal = 0000000000000005, Individual Bits = 0000000000000000000000000000000000000000000000000000000000000101
Value: Decimal = 6, Hexadecimal = 0000000000000006, Individual Bits = 0000000000000000000000000000000000000000000000000000000000000110
Value: Decimal = 7, Hexadecimal = 0000000000000007, Individual Bits = 0000000000000000000000000000000000000000000000000000000000000111
Value: Decimal = 8, Hexadecimal = 0000000000000008, Individual Bits = 0000000000000000000000000000000000000000000000000000000000001000
Value: Decimal = 9, Hexadecimal = 0000000000000009, Individual Bits = 0000000000000000000000000000000000000000000000000000000000001001
Value: Decimal = 10, Hexadecimal = 000000000000000a, Individual Bits = 0000000000000000000000000000000000000000000000000000000000001010
Value: Decimal = 11, Hexadecimal = 000000000000000b, Individual Bits = 0000000000000000000000000000000000000000000000000000000000001011
Value: Decimal = 12, Hexadecimal = 000000000000000c, Individual Bits = 0000000000000000000000000000000000000000000000000000000000001100
Value: Decimal = 13, Hexadecimal = 000000000000000d, Individual Bits = 0000000000000000000000000000000000000000000000000000000000001101
Value: Decimal = 14, Hexadecimal = 000000000000000e, Individual Bits = 0000000000000000000000000000000000000000000000000000000000001110
Value: Decimal = 15, Hexadecimal = 000000000000000f, Individual Bits = 0000000000000000000000000000000000000000000000000000000000001111
Value: Decimal = 16, Hexadecimal = 0000000000000010, Individual Bits = 0000000000000000000000000000000000000000000000000000000000010000
Value: Decimal = 17, Hexadecimal = 0000000000000011, Individual Bits = 0000000000000000000000000000000000000000000000000000000000010001
Value: Decimal = 18, Hexadecimal = 0000000000000012, Individual Bits = 0000000000000000000000000000000000000000000000000000000000010010
Value: Decimal = 19, Hexadecimal = 0000000000000013, Individual Bits = 0000000000000000000000000000000000000000000000000000000000010011
Value: Decimal = 20, Hexadecimal = 0000000000000014, Individual Bits = 0000000000000000000000000000000000000000000000000000000000010100
Value: Decimal = 21, Hexadecimal = 0000000000000015, Individual Bits = 0000000000000000000000000000000000000000000000000000000000010101
Value: Decimal = 22, Hexadecimal = 0000000000000016, Individual Bits = 0000000000000000000000000000000000000000000000000000000000010110
Value: Decimal = 23, Hexadecimal = 0000000000000017, Individual Bits = 0000000000000000000000000000000000000000000000000000000000010111
Value: Decimal = 24, Hexadecimal = 0000000000000018, Individual Bits = 0000000000000000000000000000000000000000000000000000000000011000
Value: Decimal = 25, Hexadecimal = 0000000000000019, Individual Bits = 0000000000000000000000000000000000000000000000000000000000011001
Value: Decimal = 26, Hexadecimal = 000000000000001a, Individual Bits = 0000000000000000000000000000000000000000000000000000000000011010
Value: Decimal = 27, Hexadecimal = 000000000000001b, Individual Bits = 0000000000000000000000000000000000000000000000000000000000011011
Value: Decimal = 28, Hexadecimal = 000000000000001c, Individual Bits = 0000000000000000000000000000000000000000000000000000000000011100
Value: Decimal = 29, Hexadecimal = 000000000000001d, Individual Bits = 0000000000000000000000000000000000000000000000000000000000011101
Value: Decimal = 30, Hexadecimal = 000000000000001e, Individual Bits = 0000000000000000000000000000000000000000000000000000000000011110
Value: Decimal = 31, Hexadecimal = 000000000000001f, Individual Bits = 0000000000000000000000000000000000000000000000000000000000011111
Value: Decimal = 32, Hexadecimal = 0000000000000020, Individual Bits = 0000000000000000000000000000000000000000000000000000000000100000
Value: Decimal = 33, Hexadecimal = 0000000000000021, Individual Bits = 0000000000000000000000000000000000000000000000000000000000100001
Value: Decimal = 34, Hexadecimal = 0000000000000022, Individual Bits = 0000000000000000000000000000000000000000000000000000000000100010
Value: Decimal = 35, Hexadecimal = 0000000000000023, Individual Bits = 0000000000000000000000000000000000000000000000000000000000100011
Value: Decimal = 36, Hexadecimal = 0000000000000024, Individual Bits = 0000000000000000000000000000000000000000000000000000000000100100
Value: Decimal = 37, Hexadecimal = 0000000000000025, Individual Bits = 0000000000000000000000000000000000000000000000000000000000100101
Value: Decimal = 38, Hexadecimal = 0000000000000026, Individual Bits = 0000000000000000000000000000000000000000000000000000000000100110
Value: Decimal = 39, Hexadecimal = 0000000000000027, Individual Bits = 0000000000000000000000000000000000000000000000000000000000100111
Value: Decimal = 40, Hexadecimal = 0000000000000028, Individual Bits = 0000000000000000000000000000000000000000000000000000000000101000
Value: Decimal = 41, Hexadecimal = 0000000000000029, Individual Bits = 0000000000000000000000000000000000000000000000000000000000101001
Value: Decimal = 42, Hexadecimal = 000000000000002a, Individual Bits = 0000000000000000000000000000000000000000000000000000000000101010
Value: Decimal = 88, Hexadecimal = 0000000000000058, Individual Bits = 0000000000000000000000000000000000000000000000000000000001011000
Value: Decimal = 89, Hexadecimal = 0000000000000059, Individual Bits = 0000000000000000000000000000000000000000000000000000000001011001
Value: Decimal = 90, Hexadecimal = 000000000000005a, Individual Bits = 0000000000000000000000000000000000000000000000000000000001011010
Value: Decimal = 91, Hexadecimal = 000000000000005b, Individual Bits = 0000000000000000000000000000000000000000000000000000000001011011
Value: Decimal = 92, Hexadecimal = 000000000000005c, Individual Bits = 0000000000000000000000000000000000000000000000000000000001011100
Value: Decimal = 93, Hexadecimal = 000000000000005d, Individual Bits = 0000000000000000000000000000000000000000000000000000000001011101
Value: Decimal = 94, Hexadecimal = 000000000000005e, Individual Bits = 0000000000000000000000000000000000000000000000000000000001011110
Value: Decimal = 95, Hexadecimal = 000000000000005f, Individual Bits = 0000000000000000000000000000000000000000000000000000000001011111
Value: Decimal = 96, Hexadecimal = 0000000000000060, Individual Bits = 0000000000000000000000000000000000000000000000000000000001100000
Value: Decimal = 97, Hexadecimal = 0000000000000061, Individual Bits = 0000000000000000000000000000000000000000000000000000000001100001
Value: Decimal = 98, Hexadecimal = 0000000000000062, Individual Bits = 0000000000000000000000000000000000000000000000000000000001100010
Value: Decimal = 99, Hexadecimal = 0000000000000063, Individual Bits = 0000000000000000000000000000000000000000000000000000000001100011
Value: Decimal = 100, Hexadecimal = 0000000000000064, Individual Bits = 0000000000000000000000000000000000000000000000000000000001100100
Value: Decimal = 101, Hexadecimal = 0000000000000065, Individual Bits = 0000000000000000000000000000000000000000000000000000000001100101
Value: Decimal = 102, Hexadecimal = 0000000000000066, Individual Bits = 0000000000000000000000000000000000000000000000000000000001100110
Value: Decimal = 103, Hexadecimal = 0000000000000067, Individual Bits = 0000000000000000000000000000000000000000000000000000000001100111
Value: Decimal = 120, Hexadecimal = 0000000000000078, Individual Bits = 0000000000000000000000000000000000000000000000000000000001111000
Value: Decimal = 121, Hexadecimal = 0000000000000079, Individual Bits = 0000000000000000000000000000000000000000000000000000000001111001
Value: Decimal = 122, Hexadecimal = 000000000000007a, Individual Bits = 0000000000000000000000000000000000000000000000000000000001111010
Value: Decimal = 123, Hexadecimal = 000000000000007b, Individual Bits = 0000000000000000000000000000000000000000000000000000000001111011
Value: Decimal = 124, Hexadecimal = 000000000000007c, Individual Bits = 0000000000000000000000000000000000000000000000000000000001111100
Value: Decimal = 125, Hexadecimal = 000000000000007d, Individual Bits = 0000000000000000000000000000000000000000000000000000000001111101
Value: Decimal = 126, Hexadecimal = 000000000000007e, Individual Bits = 0000000000000000000000000000000000000000000000000000000001111110
Value: Decimal = 127, Hexadecimal = 000000000000007f, Individual Bits = 0000000000000000000000000000000000000000000000000000000001111111
Value: Decimal = 128, Hexadecimal = 0000000000000080, Individual Bits = 0000000000000000000000000000000000000000000000000000000010000000
Value: Decimal = 129, Hexadecimal = 0000000000000081, Individual Bits = 0000000000000000000000000000000000000000000000000000000010000001
Value: Decimal = 130, Hexadecimal = 0000000000000082, Individual Bits = 0000000000000000000000000000000000000000000000000000000010000010
Value: Decimal = 131, Hexadecimal = 0000000000000083, Individual Bits = 0000000000000000000000000000000000000000000000000000000010000011
Value: Decimal = 132, Hexadecimal = 0000000000000084, Individual Bits = 0000000000000000000000000000000000000000000000000000000010000100
Value: Decimal = 133, Hexadecimal = 0000000000000085, Individual Bits = 0000000000000000000000000000000000000000000000000000000010000101
Value: Decimal = 134, Hexadecimal = 0000000000000086, Individual Bits = 0000000000000000000000000000000000000000000000000000000010000110
Value: Decimal = 135, Hexadecimal = 0000000000000087, Individual Bits = 0000000000000000000000000000000000000000000000000000000010000111
Value: Decimal = 136, Hexadecimal = 0000000000000088, Individual Bits = 0000000000000000000000000000000000000000000000000000000010001000
Value: Decimal = 137, Hexadecimal = 0000000000000089, Individual Bits = 0000000000000000000000000000000000000000000000000000000010001001
Value: Decimal = 138, Hexadecimal = 000000000000008a, Individual Bits = 0000000000000000000000000000000000000000000000000000000010001010
Value: Decimal = 139, Hexadecimal = 000000000000008b, Individual Bits = 0000000000000000000000000000000000000000000000000000000010001011
Value: Decimal = 140, Hexadecimal = 000000000000008c, Individual Bits = 0000000000000000000000000000000000000000000000000000000010001100
Value: Decimal = 141, Hexadecimal = 000000000000008d, Individual Bits = 0000000000000000000000000000000000000000000000000000000010001101
Value: Decimal = 142, Hexadecimal = 000000000000008e, Individual Bits = 0000000000000000000000000000000000000000000000000000000010001110
Value: Decimal = 143, Hexadecimal = 000000000000008f, Individual Bits = 0000000000000000000000000000000000000000000000000000000010001111
Value: Decimal = 144, Hexadecimal = 0000000000000090, Individual Bits = 0000000000000000000000000000000000000000000000000000000010010000
Value: Decimal = 145, Hexadecimal = 0000000000000091, Individual Bits = 0000000000000000000000000000000000000000000000000000000010010001
Value: Decimal = 150, Hexadecimal = 0000000000000096, Individual Bits = 0000000000000000000000000000000000000000000000000000000010010110
Value: Decimal = 151, Hexadecimal = 0000000000000097, Individual Bits = 0000000000000000000000000000000000000000000000000000000010010111
Value: Decimal = 199, Hexadecimal = 00000000000000c7, Individual Bits = 0000000000000000000000000000000000000000000000000000000011000111
Value: Decimal = 200, Hexadecimal = 00000000000000c8, Individual Bits = 0000000000000000000000000000000000000000000000000000000011001000
Value: Decimal = 201, Hexadecimal = 00000000000000c9, Individual Bits = 0000000000000000000000000000000000000000000000000000000011001001
Value: Decimal = 222, Hexadecimal = 00000000000000de, Individual Bits = 0000000000000000000000000000000000000000000000000000000011011110
Value: Decimal = 224, Hexadecimal = 00000000000000e0, Individual Bits = 0000000000000000000000000000000000000000000000000000000011100000
Value: Decimal = 225, Hexadecimal = 00000000000000e1, Individual Bits = 0000000000000000000000000000000000000000000000000000000011100001
Value: Decimal = 248, Hexadecimal = 00000000000000f8, Individual Bits = 0000000000000000000000000000000000000000000000000000000011111000
Value: Decimal = 249, Hexadecimal = 00000000000000f9, Individual Bits = 0000000000000000000000000000000000000000000000000000000011111001
Value: Decimal = 250, Hexadecimal = 00000000000000fa, Individual Bits = 0000000000000000000000000000000000000000000000000000000011111010
Value: Decimal = 251, Hexadecimal = 00000000000000fb, Individual Bits = 0000000000000000000000000000000000000000000000000000000011111011
Value: Decimal = 252, Hexadecimal = 00000000000000fc, Individual Bits = 0000000000000000000000000000000000000000000000000000000011111100
Value: Decimal = 253, Hexadecimal = 00000000000000fd, Individual Bits = 0000000000000000000000000000000000000000000000000000000011111101
Value: Decimal = 254, Hexadecimal = 00000000000000fe, Individual Bits = 0000000000000000000000000000000000000000000000000000000011111110
Value: Decimal = 255, Hexadecimal = 00000000000000ff, Individual Bits = 0000000000000000000000000000000000000000000000000000000011111111