Octal <-> Hexadecimal

[Menu]   A   B   C   D   E   F   G   H

To convert between octal and hexadecimal
use binary as an intermediate stage . There's nothing new to learn.
Zeros at the extreme left may be added or removed as necessary.

Example
Convert the octal number 507368 to hexadecimal.
507368 = 101 000 111 011 1102        
  = 0101 0001 1101 11102 = 51011013101410 = 51DE16

Example
Convert the hexadecimal number 1DEA16 to octal.
1DEA16 = 110131014101010 = 0001 1101 1110 10102    
      = 001 110 111 101 0102 = 167528