This online tool converts binary to octal, or octal to binary, depending on which translation box you type in.
If you've like to know how to do the translation manually, wikihow has a
great article on that.
The JavaScript code for the binary-octal conversion is very simple in case anyone is interested:
- parseInt("1010000101", 2).toString(8); // outputs "1205"
- parseInt("1205", 8).toString(2); // outputs "1010000101"
↓ Read more... ↓