Monu Tools

JSON CSV 변환기

JSON을 CSV로, CSV를 JSON으로 양방향 변환합니다. 구분자 선택, 따옴표 처리, 결과 복사 기능을 제공하며 모든 작업이 브라우저에서 실행됩니다.

JSON ⇄ CSV 사용 방법

  1. 01

    방향을 선택하세요: JSON to CSV 또는 CSV to JSON.

  2. 02

    데이터를 붙여넣고 구분자(쉼표, 세미콜론, 탭)를 선택하세요.

  3. 03

    출력 패널에서 변환된 결과를 복사하세요.

What it does

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.

The JSON shape it expects

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.

Quoting and delimiters

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.

Type inference on the way back

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.

자주 묻는 질문

어떤 JSON 형식이 필요한가요?

객체 배열 형식, 예를 들어 [{"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>

관련 도구