JSON을 CSV로, CSV를 JSON으로 양방향 변환합니다. 구분자 선택, 따옴표 처리, 결과 복사 기능을 제공하며 모든 작업이 브라우저에서 실행됩니다.
JSON ⇄ CSV 사용 방법
방향을 선택하세요: JSON to CSV 또는 CSV to JSON.
데이터를 붙여넣고 구분자(쉼표, 세미콜론, 탭)를 선택하세요.
출력 패널에서 변환된 결과를 복사하세요.
This converter turns a JSON array of objects into CSV and parses CSV back into JSON, in both directions. Pick the direction, paste your data, choose the delimiter, and copy the result.
It is handy for moving data between spreadsheets, APIs and config files, and the whole conversion is client-side, so your data stays private.
It expects JSON as an array of objects, like [{"name":"Mo","age":3}]. The CSV columns are the union of all the keys across the objects, a single object becomes one row, and any nested value is written as JSON text inside its cell.
It follows the standard CSV quoting rules, so a value that contains the delimiter, a quote or a line break is wrapped in quotes and escaped correctly, and the CSV parser reads those values back without losing data.
You can choose comma, semicolon or tab as the delimiter. Comma is the default and most common; semicolon suits regions where the comma is the decimal separator and spreadsheets expect it; tab produces TSV.
When reading CSV back into JSON, it infers types sensibly: plain numbers and true/false become real JSON values, while a value with a leading zero such as 007 stays as text so identifiers and codes are not mangled.
자주 묻는 질문
객체 배열 형식, 예를 들어 [{"name":"Mo","age":3}] 형태입니다. 열은 모든 키의 합집합으로 구성됩니다. 단일 객체는 한 행이 되고, 중첩된 값은 셀 내에 JSON으로 기록됩니다.
네. CSV 표준에 따라 구분자, 따옴표, 줄바꿈이 포함된 필드는 따옴표로 감싸고 이스케이프 처리되며, CSV 파서가 올바르게 읽어냅니다.
CSV를 읽을 때 일반 숫자와 true/false는 실제 JSON 값으로 변환됩니다. 선행 0이 있는 값(예: 007)은 식별자가 변형되지 않도록 문자열로 유지됩니다.
아니요. 변환은 브라우저에서 전적으로 실행되며 붙여넣은 내용이 기기 밖으로 나가지 않습니다.
이 도구 임베드하기
이 도구를 직접 운영하는 웹사이트에 추가하세요. 아래 코드를 복사하면 자동으로 최신 상태로 유지됩니다.
<iframe src="https://monu.tools/embed/ko/json-csv-converter" width="100%" height="640" style="border:1px solid #e5e5e5;border-radius:12px;max-width:680px" loading="lazy" title="Monu Tools"></iframe>관련 도구
잘못된 입력에 대한 명확한 오류 메시지와 함께 온라인에서 JSON을 포맷하고 보기 좋게 정리하며 유효성을 검사합니다.
브라우저에서 JSON을 압축하고 유효성을 검사하여 절약된 바이트 수를 확인합니다.
YAML을 JSON으로, JSON을 YAML로 양방향 변환합니다. 변환 중 유효성을 검사하고 명확한 오류 메시지를 표시합니다. 모든 작업이 브라우저에서 실행됩니다.
JSON 샘플에서 중첩 타입, 배열, 선택적 필드가 포함된 TypeScript 인터페이스를 생성합니다. 브라우저에서 실행됩니다.