Faq : Encode Ascii character to a binary value (Base 2 : code using 2 digits) or Decode a binary value to Ascii char(s)
These 2 digits of Base 2 are : 01
Binary encode (string): will encode each ascii characters like a,b,c,d....1,2,3...%*+-.... one by one to binary values. Example : Hello -> 01001000 01100101 01101100 01101100 01101111 so each characters are encoded -> H=01001000 e=01100101 l=01101100 l=01101100 o=01101111
Binary decode to (string): will decode each binary values to ascii string... For more info about ascii characters you could see the ascii table.