Page 1 of 3 123 LastLast
Results 1 to 15 of 33

Thread: How do hexadecimal numbers or whatever work?

  1. #1
    Banned
    Join Date
    Jun 2005
    Location
    Sweden
    Posts
    2,889

    Default How do hexadecimal numbers or whatever work?

    I recently learned that 65535 equals to FFFF in hexadecimal numbers or something; could you please tell me more on the subject?
    How does it work?

  2. #2
    YOU BOYS LIKE MEXICO?! Jowy's Avatar
    Join Date
    Aug 2002
    Location
    greenwood
    Posts
    7,834

    FFXIV Character

    Sealth Greenwood (Sargatanas)

    Default

    When in doubt, ask the <a href=http://en.wikipedia.org>giant brains.</a>

  3. #3
    Banned
    Join Date
    Jun 2005
    Location
    Sweden
    Posts
    2,889

    Default

    Quote Originally Posted by Jowy View Post
    When in doubt, ask the <a href=http://en.wikipedia.org>giant brains.</a>
    Huh?
    I don't understand.

  4. #4

    Default

    When in doubt, and lost in that doubt, the giant brains will even direct the feeble minded to the appropriate node.

    A better response, quoted from wiki - In mathematics and computer science, hexadecimal, base-16, or simply hex, is a numeral system with a radix, or base, of 16, usually written using the symbols 0–9 and A–F, or a–f. For example, the decimal numeral 79, whose binary representation is 01001111, is 4F in hexadecimal (4 = 0100, F = 1111). IBM introduced the current hexadecimal system to the computing world; an earlier version, using the digits 0–9 and u–z, had been introduced in 1956, and had been used by the Bendix G-15 computer.

    Well yeah, this is the basics. There are different systems of using hex. the wiki article seems to cover enough of em. lol

  5. #5
    Banned
    Join Date
    Jun 2005
    Location
    Sweden
    Posts
    2,889

    Default

    I hope this forum isn't turning into t3h sarcasm headquarters now.

    Oh well, thanks, I guess.

  6. #6

    Default

    never.

    Hex is simple you just count liek this:
    1234567890ABCDEF
    normally you would say:
    12345678910111213141516


    65535 equals to FFFF == false

  7. #7
    Who's scruffy lookin'? Captain Maxx Power's Avatar
    Join Date
    Sep 2002
    Location
    Millennium Falcon
    Posts
    7,905

    Default

    Quote Originally Posted by bipper View Post
    Hex is simple you just count liek this:
    1234567890ABCDEF
    Actually it's 0123456789ABCDEF. Hex is present because it's an organised way of representing groups of bits, specifically groups of four bits, since all zero's = 0 and all 1's are equal to F. If you had five bits it would have to go up to and past Z to represent it, and with three bits you need only go as far as 8 (which coincidentally there is a representation for in the form of Octagonal numbers which are Base-8).
    There is no signature here. Move along.

  8. #8

    Default

    Quote Originally Posted by Captain Maxx Power View Post
    Quote Originally Posted by bipper View Post
    Hex is simple you just count liek this:
    1234567890ABCDEF
    Actually it's 0123456789ABCDEF.
    thanks, I do that all the time. Working with a BPM that counts it thusly: 1234567890abcdef; so now I am scarred for life.

    It is like those lovely VB6 engineers who think array's start with 1

    sides, it is all about the aquadrosexagesimal AKA, programmer foursomes.

  9. #9
    Your very own Pikachu! Banned Peegee's Avatar
    Join Date
    Mar 2001
    Posts
    19,488
    Blog Entries
    81

    Grin

    You know how you count in base 10 (10, 100, 1000)

    well in Hex you count in base 16 (16 , 32, 48, 64, etc)

    ok?

    Since there's no 16 since digits (0123456789) they have to add alphabets (0123456789ABCDEF)

    So that's how hex works.

  10. #10
    Lives in a zoo Recognized Member Renmiri's Avatar
    Join Date
    Nov 2005
    Location
    Wai out there
    Posts
    6,034
    Contributions
    • Former Site Staff

    Default

    position 0 + 16 x position 1 + 16x16 x position 2...

    255 will be
    = 2 x 16 x 16 + 5 x 16 + 5
    = 512 + 80 + 5
    = 597

    the same goes for numbers with more than 3 digits
    4th digit x 16 x 16 x 16
    5th digit x 16 x 16 x 16 x 16

    so on...
    Me and my kids have dragon eggs:



  11. #11
    Fortune Teller Recognized Member Roogle's Avatar
    Join Date
    Jan 2002
    Location
    Lone Tree, Colorado
    Posts
    7,496
    Articles
    80
    Blog Entries
    3

    FFXIV Character

    Roose Dorvauldar (Gilgamesh)
    Contributions
    • Former Administator
    • Former Senior Site Staff

    Default

    How do you know about the hexadecimal system, Renmiri? It doesn't sound like a motherly thing to know.
    I believe in the power of humanity.

  12. #12
    One Hundred Chimneys Recognized Member Tavrobel's Avatar
    Join Date
    Jan 2006
    Location
    Conjunction Junction
    Posts
    10,455
    Articles
    102
    Contributions
    • Former Site Staff

    Default

    Quote Originally Posted by Roogle View Post
    How do you know about the hexadecimal system, Renmiri? It doesn't sound like a motherly thing to know.
    Sound like a basic understanding, it seems.

    Also known as Base-16.

  13. #13
    Who's scruffy lookin'? Captain Maxx Power's Avatar
    Join Date
    Sep 2002
    Location
    Millennium Falcon
    Posts
    7,905

    Default

    Quote Originally Posted by bipper View Post
    It is like those lovely VB6 engineers who think array's start with 1
    Delusional little buggers that they are.
    There is no signature here. Move along.

  14. #14
    Draw the Drapes Recognized Member rubah's Avatar
    Join Date
    Dec 2004
    Location
    Now Destiny is done.
    Posts
    30,655
    Blog Entries
    21
    Contributions
    • Former Administrator
    • Former Cid's Knight

    Default

    You didn't find a certain hexadecimal number that starts with 09 and ends with F9 11 02 9D 74 E3 5B D8 41 56 C5 63 56 88 C0?

  15. #15
    Gobbledygook! Recognized Member Christmas's Avatar
    Join Date
    Apr 2005
    Location
    Pious Moose's HQ
    Posts
    13,527
    Blog Entries
    6
    Contributions
    • Hosted the Ciddies

    Default

    EoFF is turning into a school or something recently.

Posting Permissions

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