TSV to JSON 변환기
「TSV to JSON 변환기」는 코드, 데이터 및 QR 작업을 위한 브라우저 도구입니다. 입력과 결과는 일반적으로 이 기기에서 처리되며 가입이 필요하지 않습니다.
Use the first row as column names. Quoted fields may contain tabs, quotes, or line breaks.
사용 방법
사용 방법
- Paste TSV with a header row, including quoted tabs, quotes, or line breaks when needed.
- Choose an array of objects or an object keyed by the first column and review parsing errors.
- Copy the JSON or download it as a .json file.
A local TSV parser
The converter reads tab-separated fields in your browser. It supports quoted fields, doubled quotes, embedded tabs, embedded line breaks, empty cells, and rows with missing trailing cells.
Two deliberate JSON shapes
Array of objects keeps every row. Object keyed by first column uses the first header as each object key, which is useful for records with stable IDs. Duplicate headers and empty keys are reported instead of silently producing ambiguous output.
Private browser processing
Parsing, formatting, copying, and downloading happen locally. Your TSV is not uploaded or sent to a server.
자주 묻는 질문
더 알아보기
Can a TSV cell contain a tab or line break?
Yes. Put the cell in double quotes. A literal double quote inside a quoted cell is written as two double quotes.
What happens to empty cells?
They become empty JSON strings, so the column remains present in every output object.
How does keyed object output work?
The first header becomes the key column. Each row is stored under its first-column value; empty keys are rejected.
Does this upload my data?
No. The converter runs entirely in your browser.