Binary to Octal Converter
Convert binary (base 2) numbers to octal (base 8).
Octal
Binary to octal conversion explained
Binary (base 2) uses only the digits 0 and 1. Octal (base 8) uses digits 0–7. The easiest manual shortcut is to group binary digits into threes from the right and map each triplet to an octal digit — 111 111 becomes 77, and 001 000 000 becomes 100. This tool handles arbitrarily large integers entirely in your browser using BigInt arithmetic. To go the other way, try the Octal to Binary Converter, or use the all-in-one Base Converter for any radix from 2 to 36.
Related Converters tools
JSON to YAML
Convert JSON into clean, readable YAML instantly.
YAML to JSON
Convert YAML configuration into valid JSON.
JSON to CSV
Flatten a JSON array of objects into CSV rows.
CSV to JSON
Parse CSV with headers into a JSON array of objects.
JSON to XML
Convert JSON structures into nested XML markup.
JSON Minifier
Strip whitespace to produce compact JSON.
JSON to TypeScript
Generate TypeScript interfaces from a JSON sample.
JSON to SQL
Turn a JSON array of objects into SQL INSERT statements.