Aayush Insights
#7539
☀️
← All Tools
← Back to Tools
🔢
Number Base Converter
Convert numbers between Binary, Decimal, Octal and Hexadecimal instantly.
Binary (Base 2)
Copy
Decimal (Base 10)
Copy
Octal (Base 8)
Copy
Hexadecimal (Base 16)
Copy
QUICK REFERENCE
Dec
Bin
Oct
Hex
${[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15].map(n=>`
${n}
${n.toString(2)}
${n.toString(8)}
${n.toString(16).toUpperCase()}
`).join('')}