Last updated
Input Formats Supported
- CSV — paste comma-separated values directly
- TSV — tab-separated values from spreadsheet copy-paste
- JSON array — array of objects, each object becomes a row
- Manual entry — spreadsheet-like grid interface
Why Use the ASCII Table Generator
- Multiple styles — simple ASCII, Unicode box-drawing, Markdown, double-line
- Column alignment — left, right, or center per column
- Auto-sizing — column widths calculated from content automatically
- Multiple input formats — CSV, JSON, TSV, or manual entry
- Works everywhere — plain text tables display in any terminal or text editor
Use the ASCII Table Generator at TechConverter.me to create professional-looking tables for terminal output, documentation, and README files without manually counting spaces and dashes.
Examples
Example 1: Simple ASCII Style
Input CSV:
Name,Role,Department,Salary
Alice Johnson,Engineer,Backend,$95,000
Bob Smith,Designer,Frontend,$85,000
Carol White,Manager,Product,$110,000
Output (simple style):
+---------------+----------+------------+---------+
| Name | Role | Department | Salary |
+---------------+----------+------------+---------+
| Alice Johnson | Engineer | Backend | $95,000 |
| Bob Smith | Designer | Frontend | $85,000 |
| Carol White | Manager | Product | $110,000|
+---------------+----------+------------+---------+
Example 2: Unicode Box-Drawing Style
┌───────────────┬──────────┬────────────┬─────────┐
│ Name │ Role │ Department │ Salary │
├───────────────┼──────────┼────────────┼─────────┤
│ Alice Johnson │ Engineer │ Backend │ $95,000 │
│ Bob Smith │ Designer │ Frontend │ $85,000 │
│ Carol White │ Manager │ Product │$110,000 │
└───────────────┴──────────┴────────────┴─────────┘
Example 3: Markdown Table Style
| Name | Role | Department | Salary |
|---------------|----------|------------|----------|
| Alice Johnson | Engineer | Backend | $95,000 |
| Bob Smith | Designer | Frontend | $85,000 |
| Carol White | Manager | Product | $110,000 |
Renders as a formatted table in GitHub, GitLab,
and any Markdown-aware renderer.