QuickFreeTools

Online Convert Text to Octal

Encode text to octal (base-8) byte values. Each character becomes one or more space-separated octal numbers (e.g. Hello → 110 145 154 154 157). Client-side only.

Frequently Asked Questions

What is octal encoding?
Octal uses base-8 digits (0–7). Each byte of the text (UTF-8) is written as 1–3 octal digits. So ASCII 'A' (65) = 101.
Format of output?
Space-separated octal numbers. Each number represents one byte (0–255 in decimal = 0–377 in octal).
Does it support Unicode?
Yes. Text is encoded as UTF-8 first; multi-byte characters produce multiple octal numbers.

Related Text Tools