Hex$

Cxeno = Hex$ ( Nombro AS Long [ , Cifefoj AS Integer ] )
Prenas deksesuma prezento de nombro. Gets the hexadecimal representation of a number.

Se Ciferoj estas specifata, prezento estas suplementata malnecesajn nulojn, por ke Ciferoj diferoj estas redonata.

Examples

PRINT Hex$(1972)
7B4
PRINT Hex$(1972, 8)
000007B4
Signo de Short aux Integer estos plenumata, cxar Nombro estos plenumata al Long. Se deksesuma prezento devas esti limitata gxis 16 bitoj operatoreo AND devas esti uzata.

DIM bX AS Byte ' 8 bits unsigned
DIM sX AS Short ' 16 Bits signed

bX = 200
sX = -456
PRINT Hex$(bX), Hex$(sX), Hex$(CLong(sX) AND &hffff&)
C8	FFFFFFFFFFFFFE38	FE38

See also