브라우저에서 JSON을 TOML로, TOML을 JSON으로 양방향 변환합니다.
JSON / TOML 사용 방법
방향을 선택하세요: JSON to TOML 또는 TOML to JSON.
JSON 또는 TOML을 붙여넣으세요.
결과를 복사하거나 바꾸기로 반대로 변환하세요.
This is a two-way converter between JSON and TOML. Pick a direction, paste your data, and copy the result. It is built on a well-tested TOML parser that handles nested tables and arrays of tables correctly.
Everything runs locally in your browser, so your data, which for config files can include hostnames or tokens, never leaves your device.
TOML (Tom's Obvious, Minimal Language) is a configuration format designed to be obvious to read and to map cleanly onto a hash table. It is what Rust's Cargo uses for Cargo.toml and what Python projects use for pyproject.toml, among many others.
JSON and TOML describe similar data but suit different jobs. JSON is the lingua franca for APIs and machine exchange. TOML is built for human-written config, with sections, comments and first-class dates that make a settings file pleasant to edit.
TOML also supports native date and time values and typed numbers, so values keep their meaning rather than all becoming strings, which is part of why it is preferred for configuration.
Most data round-trips cleanly, but there is one catch. TOML has no null value. JSON nulls cannot be represented, so remove or replace them before converting to TOML, otherwise the conversion cannot express them.
자주 묻는 질문
TOML은 읽기 쉽게 설계된 최소한의 설정 형식으로, Cargo와 Python의 pyproject.toml 같은 많은 도구에서 사용됩니다.
대부분의 데이터는 가능합니다. TOML에는 null이 없으므로 JSON의 null은 표현할 수 없습니다. 변환 전에 제거하거나 교체하세요.
아니요. 변환은 브라우저에서 완전히 실행되므로 데이터가 기기 밖으로 나가지 않습니다.
이 도구 임베드하기
이 도구를 직접 운영하는 웹사이트에 추가하세요. 아래 코드를 복사하면 자동으로 최신 상태로 유지됩니다.
<iframe src="https://monu.tools/embed/ko/json-toml-converter" width="100%" height="640" style="border:1px solid #e5e5e5;border-radius:12px;max-width:680px" loading="lazy" title="Monu Tools"></iframe>관련 도구
잘못된 입력에 대한 명확한 오류 메시지와 함께 온라인에서 JSON을 포맷하고 보기 좋게 정리하며 유효성을 검사합니다.
브라우저에서 JSON을 압축하고 유효성을 검사하여 절약된 바이트 수를 확인합니다.
JSON을 CSV로, CSV를 JSON으로 양방향 변환합니다. 구분자 선택, 따옴표 처리, 결과 복사 기능을 제공하며 모든 작업이 브라우저에서 실행됩니다.
YAML을 JSON으로, JSON을 YAML로 양방향 변환합니다. 변환 중 유효성을 검사하고 명확한 오류 메시지를 표시합니다. 모든 작업이 브라우저에서 실행됩니다.