Decimal to Octal Converter
Convert decimal (base 10) numbers to octal (base 8).
Octal
Decimal to octal, explained
Octal is the base-8 number system, using digits 0–7. Each octal digit maps to exactly three binary bits, which is why octal shows up in Unix file permissions (e.g. chmod 755). To convert, repeatedly divide by 8 and read the remainders bottom-up — so 64 becomes 100. Conversion runs entirely in your browser.
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.