RTF sample file
rtf_sample_file_1MB.rtf
1.0 MB
application/rtf
SHA256 verified
File details
Filename
rtf_sample_file_1MB.rtfSize1.0 MB (1048705 bytes)
MIME type
application/rtfExtension
.rtfSHA256
093cf3c52226b8541034c086bc3a8a7619a6f2cec942ea05b1f10c47f0fe3d56Download commands
Use in scripts and tests
curl -L -o rtf_sample_file_1MB.rtf \
https://samplefile.com/samples/download/document/rtf/rtf_sample_file_1MB.rtf/
wget -O rtf_sample_file_1MB.rtf \
https://samplefile.com/samples/download/document/rtf/rtf_sample_file_1MB.rtf/
import requests
url = "https://samplefile.com/samples/download/document/rtf/rtf_sample_file_1MB.rtf/"
resp = requests.get(url)
with open("rtf_sample_file_1MB.rtf", "wb") as f:
f.write(resp.content)
const resp = await fetch("https://samplefile.com/samples/download/document/rtf/rtf_sample_file_1MB.rtf/");
const buf = Buffer.from(await resp.arrayBuffer());
require("fs").writeFileSync("rtf_sample_file_1MB.rtf", buf);
# Download and verify SHA256
curl -L -o rtf_sample_file_1MB.rtf https://samplefile.com/samples/download/document/rtf/rtf_sample_file_1MB.rtf/
echo "093cf3c52226b8541034c086bc3a8a7619a6f2cec942ea05b1f10c47f0fe3d56 rtf_sample_file_1MB.rtf" | shasum -a 256 -c
# Python
import hashlib, requests
data = requests.get("https://samplefile.com/samples/download/document/rtf/rtf_sample_file_1MB.rtf/").content
assert hashlib.sha256(data).hexdigest() == "093cf3c52226b8541034c086bc3a8a7619a6f2cec942ea05b1f10c47f0fe3d56"
More RTF files
Other RTF Sample Files
| Filename | Size | SHA256 | Download |
|---|---|---|---|
rtf_sample_file_200KB.rtf |
200.1 KB | 8ce4b60cac3cc922… |
Download |
rtf_sample_file_500KB.rtf |
500.2 KB | c8ff042c2ed2760a… |
Download |
rtf_sample_file_50KB.rtf |
50.0 KB | e3f8382e5227f481… |
Download |
Learn more