Thread
Dezimalzahl in hex umrechnen: Wie rechnet man Dezimalzahlen in Hex um?
(2 answers)
Opened by
gORDon_vdLg
at
2006-06-29 23:51
esskar
2006-06-30 02:00
User since
2003-08-04
7321 Artikel
ModeratorIn
Code: (
dl
)
1
2
print sprintf "%08x\n", 16909060;
print sprintf "%08x\n", unpack("N*", pack("L*", 16909060));
View full thread
Dezimalzahl in hex umrechnen: Wie rechnet man Dezimalzahlen in Hex um?