📄 Document Converter
Convert PDF files to Word DOCX or plain text, CSV to JSON, and Text / Markdown / HTML to PDF.
Conversion Failed
Document Conversion Complete!
Document Conversion Capabilities
Convert PDFs to editable Word DOCX or plain text via the conversion server, transform tabular CSV data into JSON arrays, and render text, Markdown, or HTML into paginated PDF documents directly inside your web browser.
Which of those touch a server is worth knowing. CSV to JSON and the routes that produce a PDF are handled in the browser, so that data stays on your machine. Anything starting from a PDF goes to the conversion server, because reading a PDF's internal text objects is the part a browser cannot do well. Uploaded files are deleted as soon as the conversion finishes, but if a document is confidential, that round trip is the thing to weigh before you start.
PDF to Word carries an inherent limitation that no converter escapes. A PDF records where glyphs sit on a page, not that a run of text is a heading, a table cell or a caption. Rebuilding a DOCX means inferring that structure back, and the inference is imperfect: expect text and reading order to survive well, multi-column layouts and complex tables to need tidying, and precise page design not to transfer. Use it to recover editable content, not to reproduce a layout. A PDF made from a scan holds no text objects at all, so it will yield nothing without OCR, which this tool does not perform.
The CSV to JSON route reads the first row as field names and emits one object per remaining row. Give it a clean header row and consistent column counts and it will do the right thing; quoted fields containing commas are handled, but a file with merged cells, stacked title rows above the header, or trailing summary lines should be tidied in a spreadsheet first.