무료 온라인 숫자 기본 변환기
실시간으로 2진수, 8진수, 10진수, 16진수 간을 전환합니다. 임의의 진수에 값을 입력하고 모든 공통 표현이 즉시 업데이트되는 것을 확인하세요. 이는 낮은 수준의 프로그래밍, 네트워킹 및 디버깅에 유용합니다.
내부적으로 BigInt를 사용하므로 큰 바이너리 및 16진수 값이 정확하게 유지됩니다. 모든 것이 브라우저에서 로컬로 실행됩니다.
Frequently Asked Questions
What number bases are supported?
Convert between binary (base 2), octal (base 8), decimal (base 10), and hexadecimal (base 16). Enter a value in any base and all representations update instantly.
Can it handle large numbers?
Yes. Dokall uses BigInt internally, so very large binary and hexadecimal values (beyond JavaScript's Number.MAX_SAFE_INTEGER) stay accurate. Useful for crypto keys, bitmask operations, and 64-bit integers.
How do I convert decimal to hex?
Enter a decimal number in the decimal field. The hexadecimal field updates automatically. For example, 255 becomes FF, 4096 becomes 1000.
What are common uses for base conversion?
Developers use base conversion for bitwise operations, color codes (hex), memory addresses, network subnet calculations, and debugging low-level data. Students use it for computer science coursework.
Does it support negative numbers?
Yes. Negative values are converted using two's complement representation in binary. Enter a negative decimal and see the corresponding binary, octal, and hex values.