TOML 변환기
TOML, JSON, YAML 형식 간 변환
사용 방법
텍스트 붙여넣기 또는 입력
입력 영역에 텍스트, 코드 또는 데이터를 입력하세요.
옵션 선택
적용할 변환이나 포맷을 선택하세요.
결과 복사
한 번의 클릭으로 출력을 클립보드에 복사하세요.
이 도구를 사용하는 이유
100% 무료
숨겨진 비용도, 프리미엄 등급도 없습니다 — 모든 기능이 무료입니다.
설치 불필요
브라우저에서 완전히 실행됩니다. 소프트웨어를 다운로드하거나 설치할 필요가 없습니다.
프라이빗 & 안전
데이터가 기기 밖으로 나가지 않습니다. 어떤 서버에도 업로드되지 않습니다.
모바일 지원
완전 반응형 — 스마트폰, 태블릿, 데스크톱에서 사용할 수 있습니다.
TOML: Tom's Obvious Minimal Language for Configuration
Key Takeaways
- TOML is designed to be unambiguous and easy to read, with explicit typing for strings, integers, floats, booleans, dates, arrays, and tables.
- TOML is the standard configuration format for Rust (Cargo.toml), Python (pyproject.toml), and many modern tools.
- All conversion between TOML and JSON happens in your browser — your configuration data stays private.
TOML (Tom's Obvious Minimal Language) was created to be a minimal, unambiguous configuration file format that maps clearly to a hash table. Unlike YAML, which has complex features and implicit type coercion pitfalls, TOML aims for simplicity and explicit semantics. It has been adopted as the standard config format by Rust's Cargo, Python's pyproject.toml, and many other modern tools.
TOML is the official configuration format for over 150,000 Rust crates on crates.io.
Ecosystem Adoption
Key Concepts
Tables and Nested Tables
TOML uses [table] headers to define sections and [table.subtable] for nesting. This maps directly to JSON objects and makes configuration hierarchy immediately visible.
Explicit Type System
Unlike YAML where 'yes' becomes a boolean, TOML has unambiguous types: strings always use quotes, integers never have quotes, and dates follow RFC 3339 format.
Array of Tables
The [[array]] syntax creates arrays of tables (equivalent to JSON arrays of objects), enabling lists of structured configuration entries like multiple server definitions.
TOML vs. YAML vs. JSON
TOML trades YAML's flexibility for unambiguity and simplicity. It lacks YAML's anchors and aliases but avoids its pitfalls. JSON lacks comments and has more verbose syntax. TOML occupies the sweet spot.
Pro Tips
Use inline tables { key = 'value' } sparingly — they are best for small, single-line groupings.
TOML supports multi-line strings with triple quotes and literal strings with single quotes (no escape processing).
When converting JSON to TOML, deeply nested objects become long dotted table names — consider restructuring for readability.
TOML native date/time types (RFC 3339) are converted to strings in JSON — ensure your application handles the conversion correctly.
All TOML/JSON conversion is performed entirely in your browser. Your configuration data is never transmitted to any external server.