Number & Text Encoding

Text to Octal

Convert text to octal instantly. For example, "Hi" becomes "110 151".

Rate this tool
Text
Octal

Text to Octal — quick reference

TextOctal

How to use the Text to Octal

  1. Type or paste your text on the left.
  2. Read the octal result on the right.
  3. Copy the result, or check the reference table below.

About the Text to Octal

This tool converts text into Octal codes. Every character on a computer has a numeric code point — the letter A is 65, a space is 32 — and this converter shows those codes in Octal. Type on the left and the result appears instantly.

Worked example. Each character becomes its code point in Octal. The letter H is code point 72, which is 110, and i is 105, which is 151 — so "Hi" becomes "110 151".

The codes are separated by spaces, one per character, so you can read them straight across. This is the standard way to inspect or hand-build text at the byte level — useful when debugging an encoding, reading a hex dump, or writing an escape sequence. Everything runs in your browser, so nothing you type is uploaded. For the opposite direction use the Octal to Text converter, and see also text to binary and the ASCII converter.

Frequently asked questions

How does "Hi" convert to Octal?

"Hi" becomes "110 151": H is 110 and i is 151.

Are the codes separated by spaces?

Yes. Each character produces one Octal code, separated by a single space.

Does this work with letters, digits and symbols?

Yes. Every character with a Unicode code point is supported, including letters, digits, punctuation and spaces.

Is anything uploaded?

No. The conversion happens in your browser with JavaScript and nothing you enter leaves your device.