Sample RTF files for testing — free, CC0, hotlinkable

Rich Text Format is the document format that survives everywhere: every word processor reads it, and it is plain text with control words, so it can be inspected in any editor. That makes it a useful control when a DOCX importer misbehaves.

rtf/simple.rtf was written by hand rather than by a library. It holds three paragraphs of Lorem Ipsum in Times New Roman, with a font table and paragraph breaks, and every byte is ASCII, so no reader has to guess an encoding.

Because it is so plain, the file isolates the basics: parsing the RTF header and font table, turning control words into paragraphs, and extracting text. If a converter handles this file and fails on a more complex document, the problem lies in the features that document adds, not in RTF itself.

Use it for text extraction, document conversion and upload forms that accept RTF. Related formats: DOCX, text files and PDF.

1 file. The same list as JSON: https://loremfile.dev/rtf/index.json

RTF files
FileSizePropertiesDescription
simple.rtf 1.7 KB utf-8, LF Three paragraphs of Lorem Ipsum in Times New Roman. Every byte is ASCII, so no reader has to guess an encoding.
Snippets
curl -O https://loremfile.dev/rtf/simple.rtf
<a href="https://loremfile.dev/rtf/simple.rtf">download</a>

File names follow the naming grammar. Verify a download against sha256sums.txt.