2진수, 8진수, 10진수, 16진수 간에 숫자를 변환합니다. 어느 필드든 편집하면 다른 필드가 즉시 업데이트되며 큰 값도 정확하게 처리합니다.
진법 변환기 사용 방법
네 개의 필드 중 하나에 숫자를 입력하세요.
입력하는 동안 다른 진법이 즉시 업데이트됩니다.
16진수 대문자 전환 및 한 번 클릭으로 값 복사가 가능합니다.
This number base converter switches whole numbers between binary (base 2), octal (base 8), decimal (base 10) and hexadecimal (base 16). Every field is editable, so you can type into any base and read the equivalent in the others instantly.
A number base is just how many distinct digits a system uses before it rolls over to the next position. Decimal uses ten (0 to 9), binary uses two (0 and 1), and hexadecimal uses sixteen, adding a to f for the values ten to fifteen, which is why a single hex digit neatly represents four binary bits.
Conversions use arbitrary-precision integers (BigInt), so even very long values stay exact, without the rounding errors that affect ordinary floating-point numbers once they get large.
Bases come up all over low-level work: hexadecimal for colors, bytes and memory addresses, binary for flags and network masks, and octal for Unix file permissions. Reading the same value across bases makes debugging and bit-twiddling much easier.
A leading minus sign is supported for negatives, spaces are ignored so you can group digits for readability, and an option shows hexadecimal in upper or lower case.
It converts integers only; fractional base conversion is a separate problem and is intentionally left out so the results stay exact. Everything runs in your browser.
자주 묻는 질문
2진수(기수 2), 8진수(기수 8), 10진수(기수 10), 16진수(기수 16)를 지원합니다. 어느 진법이든 편집하면 나머지가 따라 업데이트됩니다.
네. BigInt 임의 정밀도 정수를 사용하므로 아주 큰 값도 일반 부동소수점의 반올림 오류 없이 정확하게 변환됩니다.
네. 앞에 마이너스 기호를 붙이면 됩니다. 공백은 무시되므로 가독성을 위해 자릿수를 그룹으로 묶을 수 있습니다.
아니요. 정수(양의 정수)만 변환합니다. 소수 진법 변환은 별도의 문제이며 결과를 정확하게 유지하기 위해 의도적으로 제외했습니다.
이 도구 임베드하기
이 도구를 직접 운영하는 웹사이트에 추가하세요. 아래 코드를 복사하면 자동으로 최신 상태로 유지됩니다.
<iframe src="https://monu.tools/embed/ko/number-base-converter" width="100%" height="640" style="border:1px solid #e5e5e5;border-radius:12px;max-width:680px" loading="lazy" title="Monu Tools"></iframe>관련 도구
CSV를 Markdown 표로, Markdown 표를 CSV로 양방향 변환합니다.
JSON Web Token을 디코딩하여 헤더와 페이로드를 검사하고 만료 및 발급 시간을 사람이 읽기 쉬운 형식으로 확인합니다. 브라우저에서 실행되며 토큰이 업로드되지 않습니다.
정규식을 텍스트에 실시간으로 테스트합니다. 모든 일치 항목, 캡처 그룹, 플래그를 강조 표시합니다. 브라우저에서 실행됩니다.
Cron 표현식을 작성하고 확인합니다. 프리셋을 선택하거나 다섯 개의 필드를 편집하고, 내 시간대에서 다음 실행 시간을 확인하세요. 브라우저에서 실행됩니다.