Markdown Table to Excel Converter
Convert Markdown tables to Excel-compatible CSV files that open with correct encoding
Name,Department,Salary John Doe,Engineering,95000 Jane Smith,Marketing,78000 Bob Johnson,Engineering,88000
| Name | Department | Salary |
|---|---|---|
| John Doe | Engineering | 95000 |
| Jane Smith | Marketing | 78000 |
| Bob Johnson | Engineering | 88000 |
How to Use This Tool
- Paste a Markdown table into the input box
- Check the preview to confirm the table parsed the way you expect
- Click Download to save an Excel-compatible .csv file
- Double-click the file — it opens directly in Excel with correct columns and characters
- If you need a real workbook, use File → Save As in Excel and pick .xlsx
How the Excel Conversion Works
Let's be upfront about the approach: this tool produces a CSV file with a UTF-8 byte-order mark (BOM), not a binary .xlsx workbook. That detail matters more than it sounds. A plain CSV opened in Excel often mangles accented letters, em dashes, and non-Latin characters because Excel assumes a legacy encoding. The BOM is a three-byte marker at the start of the file that tells Excel "this is UTF-8", so every character displays correctly the moment the file opens.
In practice this gives you the Excel experience you want — double-click the download and your table appears in a spreadsheet with each Markdown column in its own Excel column. From there, saving as a genuine .xlsx file is a single File → Save As away. Keeping the conversion as BOM-prefixed CSV means the tool stays fast, has no server dependency, and your data never leaves the browser.
Cells containing commas, quotes, or line breaks are quoted per the CSV standard, and escaped pipes and <br> tags in the Markdown are handled correctly, so even messy real-world tables survive the round trip.
Frequently Asked Questions
Is the download a real .xlsx file?
It is a CSV with a UTF-8 byte-order mark, which Excel opens directly with correct characters and columns. From there you can save as .xlsx in one step. This keeps the tool fast and fully in-browser.
Will special characters like é, ü, or 中文 display correctly?
Yes. The UTF-8 BOM exists precisely for this reason — without it, Excel guesses the encoding and frequently guesses wrong. With it, accented characters, symbols, and CJK text all open correctly.
Does it work with Google Sheets and LibreOffice too?
Yes. Both import UTF-8 CSV files natively, with or without the BOM, so the same download works across all major spreadsheet applications.