LogoToolkit

    Decimal to Binary/Hexadecimal

    Number Base Systems

    Base 2
    Binary

    Used in computer systems. Each digit can be 0 or 1.

    Example: 1010 = 10

    Base 8
    Octal

    Uses digits 0-7. Common in Unix file permissions.

    Example: 755 = 493

    Base 10
    Decimal

    Standard number system using digits 0-9.

    Example: 255 = 255

    Base 16
    Hexadecimal

    Uses 0-9 and A-F. Common in programming and color codes.

    Example: FF = 255