BIN ($WBFN) - convert number to binary

Availability
BIN is available for use with all WBSP commands.

Syntax
$WBFN{BIN(decnumber)}
$WBFN[BIN(decnumber)]

Arguments
decnumber - any integer in range 0 to 2147483647.
 

Returns
A string representing the binary value of the number passed as an argument.

Example

<html>
<body>
Binary value of letter A is $wbfn[bin(65)]!
</body>
</html>

Result

Binary value of letter A is 1000001!