JSON to TSV

JSON array of objects to TSV: header row, tab-separated columns.

{{ jsonToTsv.message }}

Overview

Same idea as JSON to CSV, but tabs as separators. Useful for spreadsheets and TSV-aware tools.

Tool guide

  • O que é JSON Mesmo caso do JSON para CSV (array de objetos).
  • O que é TSV Igual ao CSV, mas o separador de coluna é o caractere de tabulação (tab). Muitas ferramentas de bioinformática, logs e colagem em terminal preferem TSV.
  • O que o conversor faz Gera linhas com colunas separadas por tab a partir do array de objetos.
  • Por que usar Colar em planilhas sem conflito com vírgulas dentro das células, ou alimentar pipelines que esperam TSV.

Input

[{"id":1,"nome":"Ana"},{"id":2,"nome":"Bob"}]

FAQ

What is this tool for?

It runs fully in your browser: useful to validate, format, or convert data in everyday development.

Are my inputs sent to a server?

Processing happens locally with JavaScript. We do not store what you paste into the text areas.

Can I use this for real production data?

Use at your own risk. For secrets (passwords, tokens), prefer controlled environments and your company policies. And always review the generated contents. Never trust blindly things you see on the internet.