Skip to content
Convertitive

Octal to Hexadecimal Converter

755 (oct) = 1ED (hex)

Convert octal numbers to hexadecimal numbers exactly, for any size. Convertitive parses your input as a BigInt — so 64-bit values, 256-bit hex strings, and even larger numbers round-trip without rounding. For quick reference: 755 oct = 1ED hex, and 100 oct = 40 hex.

1ED
Quick

How to convert octal numbers to hexadecimal numbers

  1. Enter a value

    Type a octal integer in the From field. Allowed characters: 0 through 7.

  2. Read the hexadecimal result

    The To field updates as you type. For example, the octal value 755 equals 1ED in hexadecimal.

  3. Copy or share

    Use the copy button to grab the result. You can change either base from its dropdown without leaving the page.

Reference table

Fifty representative values. Every row is computed exactly by the same BigInt-based converter that powers the widget above.

Octal (oct)Hexadecimal (hex)
00
11
22
33
44
55
66
77
108
119
12A
13B
14C
15D
16E
17F
2010
2111
2212
2313
2414
3018
371F
4020
4424
522A
6030
6232
773F
10040
14464
1777F
20080
310C8
377FF
400100
7641F4
7771FF
1000200
17503E8
17773FF
2000400
4000800
100001000
200002000
400004000
1000008000
177777FFFF
20000010000
4000000100000

Frequently asked questions

How do I convert octal numbers to hexadecimal numbers?
Enter your octal value above. Convertitive parses it as an arbitrary-precision integer and reformats it in hexadecimal. The conversion is exact for any size — there's no float rounding.
What is 755 in hexadecimal?
755 (octal) equals 1ED in hexadecimal.
Are negative numbers supported?
No, only non-negative integers are supported for octal ↔ hexadecimal. Two's-complement encodings depend on a chosen bit-width, which this tool does not assume.
What's the largest number I can convert?
Any size. Convertitive uses JavaScript BigInt, which has no fixed upper bound — 256-bit hex strings, 512-bit and bigger all round-trip exactly.
How many bits does the result take?
An n-digit number in base 8 needs roughly 3.00 × n bits to store. The exact bit length equals ⌈log₂(value + 1)⌉.
Is hex case-sensitive?
No. You can type hex with letters in either case. Output is always uppercase (A–F).
Are conversion factors exact?
Yes. Base conversion is integer-to-integer; there are no factors, no rounding, no precision loss.
Why would I convert octal numbers to hexadecimal numbers?
Hex is the standard compact notation for binary data — memory addresses, color codes, hashes. Converting from octal to hex packs the same value into a more readable form.

About octal and hexadecimal

Octal (base 8)

Octal (base 8) uses the digits 0 through 7. Each octal digit represents exactly three bits, which is why octal was widely used on early minicomputers and is still the conventional notation for Unix file-permission masks (e.g. 755).

Hexadecimal (base 16)

Hexadecimal (base 16) uses digits 0–9 plus the letters A–F to encode the values 10–15. It is the dominant compact notation for binary data: every two hex digits represent exactly one byte. Used universally for memory addresses, color codes (#RRGGBB), and cryptographic hashes.

Other base converters