Frequently Asked Questions
What is a number base?
A number base (or radix) is the number of unique digits used to represent numbers. Common bases: binary (base 2), octal (base 8), decimal (base 10), hexadecimal (base 16).
How does binary work?
Binary uses only 0 and 1. Each position represents a power of 2: 1, 2, 4, 8, 16, etc. For example, binary 1010 = 8+0+2+0 = 10 in decimal.
Why is hexadecimal used in programming?
Hexadecimal is compact (one hex digit = 4 binary digits) and commonly used for memory addresses, color codes, and byte values.
Is my data safe?
Yes. All conversions happen in your browser. No data is sent to any server.