Monu Tools

진법 변환기

2진수, 8진수, 10진수, 16진수 간에 숫자를 변환합니다. 어느 필드든 편집하면 다른 필드가 즉시 업데이트되며 큰 값도 정확하게 처리합니다.

진법 변환기 사용 방법

  1. 01

    네 개의 필드 중 하나에 숫자를 입력하세요.

  2. 02

    입력하는 동안 다른 진법이 즉시 업데이트됩니다.

  3. 03

    16진수 대문자 전환 및 한 번 클릭으로 값 복사가 가능합니다.

What it does

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.

How number bases work

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.

Exact results with big integers

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.

Why bases matter in low-level work

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.

Input rules and limits

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>

관련 도구