Bin()

Syntax

Result$ = Bin(Value)
Description
Convert a numeric number into a string, in binary format.

Example :
  Resul$ = Bin(32) ; Result$ will be "100000"
Note: If leading zero are needed in the output string, use the RSet() command as follows:
  a$ = RSet(Bin(32),16,"0") ; a$ will be "0000000000100000"

Supported OS

Windows, Linux, MacOS X

<- Asc() - String Index - Chr() ->