Function Reference


Binary

Returns the binary representation of an expression.

Binary ( expression )

Parameters

expression An expression to convert into binary/byte data.

Return Value

Returns a Binary variant.

Remarks

None.

Related

Int, Number, IsBinary, BinaryLen, BinaryMid, BinaryToString, StringToBinary

Example


Local $var = Binary("0x00204060")
;$var is the binary type
MsgBox(0, "IsBinary", IsBinary($var))