File formats / 11 formats, every pair
TSV to HTML converter
Turn TSV into HTML — a `table` element with a head and a body — in this browser tab. Paste your TSV, copy the HTML: the quoting and escaping HTML needs are applied for you.
TSV to HTML, worked out
3 rows and 4 columns: 4 lines of TSV become 30 lines of HTML.
TSV in
product region units unit price Desk lamp EU 128 24.50 Chair R&D 64 98.00 Monitor APAC 32 249.99
HTML out
<table>
<thead>
<tr>
<th style="text-align: left;">product</th>
<th style="text-align: left;">region</th>
<th style="text-align: right;">units</th>
<th style="text-align: right;">unit price</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align: left;">Desk lamp</td>
<td style="text-align: left;">EU</td>
<td style="text-align: right;">128</td>
<td style="text-align: right;">24.50</td>
</tr>
<tr>
<td style="text-align: left;">Chair</td>
<td style="text-align: left;">R&D</td>
<td style="text-align: right;">64</td>
<td style="text-align: right;">98.00</td>
</tr>
<tr>
<td style="text-align: left;">Monitor</td>
<td style="text-align: left;">APAC</td>
<td style="text-align: right;">32</td>
<td style="text-align: right;">249.99</td>
</tr>
</tbody>
</table>HTML result
<table>
<thead>
<tr>
<th style="text-align: left;">product</th>
<th style="text-align: left;">region</th>
<th style="text-align: right;">units</th>
<th style="text-align: right;">unit price</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align: left;">Desk lamp</td>
<td style="text-align: left;">EU</td>
<td style="text-align: right;">128</td>
<td style="text-align: right;">24.50</td>
</tr>
<tr>
<td style="text-align: left;">Chair</td>
<td style="text-align: left;">R&D</td>
<td style="text-align: right;">64</td>
<td style="text-align: right;">98.00</td>
</tr>
<tr>
<td style="text-align: left;">Monitor</td>
<td style="text-align: left;">APAC</td>
<td style="text-align: right;">32</td>
<td style="text-align: right;">249.99</td>
</tr>
</tbody>
</table>Conversions next to this one
Next in this job
Chosen from where these tools sit in the catalogue — the same workbench, the same category, the same words. Nothing here measures what you or anyone else opened.
- TSV to LaTeX converterConvert TSV to LaTeX in your browser.Next along in the same workbench
- TSV to Markdown converterConvert TSV to Markdown in your browser.Next along in the same workbench
- HTML to TSV converterConvert HTML to TSV in your browser.Another TSV tool
- File to HTML converterTurn images into email-ready HTML with the images packaged alongside it, or into one standalone web page.Another HTML tool