JSON to CSV 변환기
객체로 이루어진 JSON 배열을 CSV 형식으로 변환합니다. API 데이터를 스프레드시트로 내보내기에 완벽합니다.
이 도구 사용 방법
- 1
Paste or type a JSON array of objects into the text box. The array must be non-empty (for example: [{"name":"A","value":1}]).
- 2
Click the Convert button to generate the CSV.
- 3
Read the CSV in the output panel below the button, with the header row first followed by one row per object.
- 4
Select the output text and copy it into a spreadsheet, a .csv file, or wherever you need it.
JSON to CSV 변환기란 무엇인가요?
JSON은 API의 보편적 형식이고, CSV는 스프레드시트의 보편적 형식입니다. 둘 사이의 변환은 흔한 작업입니다: 분석 데이터를 Excel로 내보내거나, CSV 데이터를 JavaScript 애플리케이션으로 가져오는 등입니다. 이 도구는 평면 객체 배열을 잘 처리합니다. 깊이 중첩된 구조는 전처리가 필요할 수 있습니다.
일반적인 사용 사례
Turning a small JSON response from an API into a CSV you can paste straight into Excel or Google Sheets.
Quickly eyeballing tabular API data as rows and columns instead of nested braces.
Preparing a CSV for a bulk-import feature that expects flat columns, when your source data is already a uniform JSON array.
Converting a JSON fixture or seed file into CSV for a quick import into a database GUI.
Generating a CSV snippet for documentation or a bug report without installing jq or writing a script.
Sanity-checking that a JSON array has consistent keys across records by spotting blank or missing cells in the output.
자주 묻는 질문
제 JSON에 중첩된 객체가 있으면 어떻게 되나요?▼
특수 문자를 처리하나요?▼
관련 도구
CSV에서 JSON으로 변환기
CSV 데이터를 객체로 이루어진 JSON 배열로 변환합니다. 첫 번째 행은 헤더로 처리됩니다.
CSV에서 SQL INSERT로
CSV 데이터로부터 SQL INSERT 문을 생성합니다. CSV 내보내기 파일을 데이터베이스로 가져올 때 유용합니다.
2진수에서 16진수 변환기
2진수를 16진수로 변환합니다. 같은 값에 대해 16진수는 2진수보다 4배 더 간결합니다.
16진수에서 2진수로 변환기
16진수를 2진수로 변환합니다. 각 16진수 자릿수는 정확히 4자리의 2진수로 확장됩니다.
10진수에서 2진수 변환기
10진수를 2진수, 16진수, 8진수로 모든 진법을 한 번에 변환합니다.
ASCII에서 16진수 변환기
텍스트를 ASCII 16진수 코드로, 그리고 그 반대로 변환합니다. 각 문자는 2자리 16진수 값으로 변환됩니다.