>_ PDF to Word

Extract text content from a PDF and download as a basic .doc file you can edit in Word.

Drop PDF file here or click to select

Note: This tool extracts text from the PDF pages. Complex layouts, images, and formatting may not be fully preserved. For full fidelity conversion, a server-side solution is recommended.
'; text.split('\n\n').forEach(function(p){ if(p.startsWith('---'))html+='

'+p.replace(/---/g,'').trim()+'

'; else if(p.trim())html+='

'+p.replace(//g,'>')+'

'; }); html+=''; var blob=new Blob([html],{type:'application/msword'}); var a=document.createElement('a');a.href=URL.createObjectURL(blob);a.download='converted.doc';a.click(); status.textContent='Done! Downloaded as .doc file.'; }catch(e){status.textContent='Error: '+e.message;} }); })();