That's a value returned from the function(A String). It's up to you to decide what to do with that.
If you want to see the result on the console, then type:
? bin$(variable)
I saw that you want to make a encryptation algorithm. I have bad news for you: bin$() won't help you too much because it return a string.
You need to learn how use bitwise operators(>>,<<,and,or,xor) to handle them as a binary.