Normal
Nur nochmal ein kleines Beispiel:Hex zu binär:[code=Java]0x45//aufteilen in nibbles ( jede zahl steht für 4 Bit = 1 nibble )4 = 01005 = 010101000101 = 1 Byte = 8 BitErgibt im Dezimalsystem ( anhand der Wertigkeit ) :64 + 4 + 1 = 69[/code]
Nur nochmal ein kleines Beispiel:
Hex zu binär:
[code=Java]
0x45
//aufteilen in nibbles ( jede zahl steht für 4 Bit = 1 nibble )
4 = 0100
5 = 0101
01000101 = 1 Byte = 8 Bit
Ergibt im Dezimalsystem ( anhand der Wertigkeit ) :
64 + 4 + 1 = 69
[/code]