Results 1 to 2 of 2

Thread: Hexadecimal to Octal

  1. #1

    Thread Starter
    Addicted Member thamizhinpan's Avatar
    Join Date
    Dec 2005
    Location
    TE
    Posts
    243

    Exclamation Hexadecimal to Octal

    What is the shortcut methord to convert hexadecimal numbers to octal numbers
    If above question or answer will help to you
    Don't forget to rate me
    தமிழ்இன்பன்

  2. #2
    Conquistador
    Join Date
    Dec 1999
    Location
    Australia
    Posts
    4,527

    Re: Hexadecimal to Octal

    You convert each of the hex digits to binary, four binary digits to a hex digit

    e.g. 4F (79) 4 = 0100, F = 1111
    so 4F in binary is 01001111

    To convert to octal, you group the binary digits in groups of 3, e.g.
    001|001|111
    Then you convert this binary pieces back to decimal:
    1|1|7

    So 79 in hex is 4F in octal is 117

    Hope that helps

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width