Getting HWP text into a translator or AI tool

Language models and translation tools cannot read .hwp files. They need text — and the format you hand them decides whether a document's tables arrive as data or as scrambled words. For Korean official documents, which lean heavily on tables, this is the difference between a usable summary and a confidently wrong one.

Why you cannot just upload the file

AI assistants and translation services accept a fixed set of document formats. HWP is a Korean format with limited support outside Korea, so it is generally not on that list. Uploading one typically produces an error, or worse, a garbled read of the raw bytes.

So the file has to become text first. The interesting question is which kind of text.

Markdown preserves what plain text destroys

Korean government and corporate documents are table-heavy: budget lines, schedules, eligibility criteria, disclosure figures. That structure carries meaning, and how you extract it decides whether the meaning survives.

Plain text flattens tables into runs of words. A row of five cells becomes five values on one line with no indication of which column each belongs to. A model reading that has to guess the alignment, and it will guess — silently, and sometimes wrongly.

Markdown keeps tables as tables. Pipes and header rows preserve which value sits in which column. Language models are trained heavily on Markdown and read it fluently, so a Markdown table arrives as structured data rather than a word salad to be reconstructed.

This is why our converter offers Markdown as a first-class output rather than only PDF and Word. For this particular workflow it is the format that loses the least.

Why not just convert to PDF and upload that?

It works, and for text-heavy documents without tables it is perfectly fine. The problem is specific to tables.

A PDF stores glyphs at coordinates, not rows and columns. When a tool extracts text from a PDF it reconstructs reading order from position, and multi-column layouts are exactly where that reconstruction goes wrong — columns interleave, cells merge, numbers attach to the wrong labels. The output looks plausible, which is what makes it dangerous.

Converting from HWP to Markdown skips that reconstruction entirely, because the table structure is read from the document rather than inferred from pixel positions.

A workflow that holds up

  1. Convert the document to Markdown on this page. Copy the output or download the .md file.
  2. Check the tables in the Markdown tab before you paste. Thirty seconds here catches a bad extraction before it becomes a bad summary.
  3. Paste it into your translator or AI tool and ask your question. Requesting that figures be quoted back with their row and column labels makes errors visible instead of buried.
  4. Spot-check any number you plan to rely on against the original document. This holds for any AI summary, and doubly for one built on an automated extraction.

Before you paste: what you are sharing

This deserves stating plainly. Pasting a document into an AI service sends its contents to that service, and Korean HWP files are frequently sensitive — immigration paperwork, contracts, medical and academic records, unreleased corporate disclosures.

Our converter processes files in memory and does not store them, so the conversion step retains nothing. The AI tool you paste into is governed by its own policy, not ours. Check what your chosen service does with submitted content, particularly if the document belongs to an employer or client rather than to you.

For Korean disclosure filings specifically

Investors reading DART and KRX filings hit this constantly: the attachment is .hwp, the financial tables are the entire point, and the reader does not speak Korean.

The Markdown route is built for this case — table structure survives, so an AI summary can cite the actual figures instead of approximating them. There is more on this workflow on our Korean stock filings page.

Drop HWP/HWPX files here
up to 10 files · 15MB each · files are never stored

Files are processed in memory and deleted immediately after conversion. Nothing is stored on our servers.

Frequently asked questions

Can ChatGPT or Claude open .hwp files directly?

Generally no — HWP is not among the document formats these tools accept. Convert to Markdown or plain text first and paste the result.

Which format is best for translating a Korean document?

Markdown, when the document contains tables. Plain text is fine for continuous prose. Both preserve Korean characters correctly as Unicode.

Will converting lose the Korean characters?

No. Text is preserved as Unicode throughout, so Korean survives conversion intact regardless of which output format you choose.

Is Markdown better than PDF for AI summarization?

For documents with tables, yes. PDF text extraction infers structure from glyph positions and frequently scrambles columns; Markdown carries the table structure explicitly.