코드, 데이터 및 QR 도구

TOML to JSON 변환기

「TOML to JSON 변환기」는 코드, 데이터 및 QR 작업을 위한 브라우저 도구입니다. 입력과 결과는 일반적으로 이 기기에서 처리되며 가입이 필요하지 않습니다.

브라우저에서 로컬 처리가입 불필요개인정보 안내 ↗

Enter common TOML up to 100,000 characters. Dates, multi-line strings, arrays of tables, and mixed arrays are rejected with an explanation.

사용 방법

사용 방법

  1. Paste TOML up to 100,000 characters.
  2. Convert it and review the formatted JSON and any boundary errors.
  3. Copy the JSON or download it as a .json file.

Common TOML configuration values

The converter supports quoted strings, literal strings, booleans, integers, decimal numbers, arrays, inline tables, dotted keys, and standard table sections. Keys may be bare, quoted, or dotted.

Explicit limits and local privacy

Date and time values, multi-line strings, arrays of tables, heterogeneous arrays, and special numeric values are rejected with a clear message. Parsing, formatting, copying, and download preparation happen in your browser; your TOML is not uploaded.

자주 묻는 질문

더 알아보기

Can I convert TOML dates or times?

No. TOML date and time values are intentionally rejected because JSON has no matching native type. Quote them first if you want them as strings.

Are tables and dotted keys supported?

Yes. Standard [table] sections, quoted keys, and dotted keys create nested JSON objects.

Why are arrays of tables rejected?

[[table]] entries need ordered object merging rules. This focused converter rejects them rather than guessing at the intended JSON shape.