file in abyss
Back to formats

Document

EPUB Electronic Publication

Electronic Publication is a document format commonly identified by .epub. Use the listed signatures, MIME types, and structure notes to validate files beyond the extension.

Extensions .epub
MIME application/epub+zip

Magic numbers

Analyze your file
offset 0 Electronic Publication leading signature
50 4B 03 04
PK..

Structure

  1. ZIP container
  2. mimetype
  3. META-INF/container.xml
  4. OPF package
  5. XHTML content

Caveats

  • Do not trust the extension alone. Check the MIME type, the first bytes such as 50 4B 03 04, and format-specific structure when possible.
  • Container formats and damaged files can share the same opening bytes, so deeper validation may be required for production upload, preview, or conversion flows.

Detection example

SIGNATURE = bytes.fromhex("504b0304")
OFFSET = 0

def is_epub(path: str) -> bool:
    with open(path, "rb") as f:
        f.seek(OFFSET)
        head = f.read(len(SIGNATURE))
    return head == SIGNATURE

Practical usage

Use cases

Electronic Publication is used for data exchange, imports, exports, parser testing, and validation workflows. Encoding, delimiters, versions, and container structure often change implementation behavior.

Common detection mistakes

  • The .epub extension alone does not prove the file contents. Upload and conversion flows should combine extension, MIME type, leading bytes, and format-specific structure checks.
  • Electronic Publication can start with signatures such as 50 4B 03 04, but related containers and damaged files may require additional validation.

Security notes

Document formats may include scripts, attachments, macros, or external references. Sandbox previews and conversions, and avoid opening untrusted files directly.

Using samples

11 samples help test leading-byte detection, parser errors, upload limits, and download behavior.

Sample files

11 / 11 files
Sample Traits Size Source / license / SHA-256
Doc

Blue Sky EPUB

Blue Sky EPUB is a Electronic Publication sample based on Wikimedia Commons. It can be used to test downloads, parsers, previews, and file type detection.

01-blue-sky.epub
Type Sample
1.4 KB
SHA-256 46b713c4a852927e9b7e527624b0ab692577b4997922ec00c659d8b9bcfcd6b4
Download
Doc

Flower Garden EPUB

Flower Garden EPUB is a Electronic Publication sample based on Wikimedia Commons. It can be used to test downloads, parsers, previews, and file type detection.

02-flower-garden.epub
Type Sample
1.4 KB
SHA-256 9791254a0bfa525c943bf5010a12ef46d9d98d05eae4d796995c8b44ebcfc75e
Download
Doc

Navy Blue Sky EPUB

Navy Blue Sky EPUB is a Electronic Publication sample based on Wikimedia Commons. It can be used to test downloads, parsers, previews, and file type detection.

03-navy-blue-sky.epub
Type Sample
1.4 KB
SHA-256 61dc9c961f56a3dee8f0e07f18b02291665f89c10f43a1bcd8b041a079046397
Download
Doc

Nature of the Sky EPUB

Nature of the Sky EPUB is a Electronic Publication sample based on Wikimedia Commons. It can be used to test downloads, parsers, previews, and file type detection.

04-nature-sky.epub
Type Sample
1.4 KB
SHA-256 8a59b26f29daba3a1411930278966a8fc23e55347660feb0691cd71bfc925043
Download
Doc

Sky Landscape EPUB

Sky Landscape EPUB is a Electronic Publication sample based on Wikimedia Commons. It can be used to test downloads, parsers, previews, and file type detection.

05-sky-landscape.epub
Type Sample
1.4 KB
SHA-256 32db1dc4da5dca8a666921a1f7413fc1090cb6329e98b4bd4575642ab250ac90
Download
Doc

Starry Sky EPUB

Starry Sky EPUB is a Electronic Publication sample based on Wikimedia Commons. It can be used to test downloads, parsers, previews, and file type detection.

06-starry-sky.epub
Type Sample
1.4 KB
SHA-256 30f23026c4b6cba65b1675ebacb89ba9f823f301581684587dee1ea093a072fa
Download
Doc

Blue Night Sky EPUB

Blue Night Sky EPUB is a Electronic Publication sample based on Wikimedia Commons. It can be used to test downloads, parsers, previews, and file type detection.

07-blue-night-sky.epub
Type Sample
1.4 KB
SHA-256 6784065f85709a8f8a2a8b3d99838197c0a29427cee8322139c02c6b7828949e
Download
Doc

Hibiscus Flower EPUB

Hibiscus Flower EPUB is a Electronic Publication sample based on Wikimedia Commons. It can be used to test downloads, parsers, previews, and file type detection.

08-hibiscus-flower.epub
Type Sample
1.4 KB
SHA-256 93e32496707477839860c7552adbcf0229203644378c63bb19158a85ae02b188
Download
Doc

Arctic Sky EPUB

Arctic Sky EPUB is a Electronic Publication sample based on Wikimedia Commons. It can be used to test downloads, parsers, previews, and file type detection.

09-arctic-sky.epub
Type Sample
1.4 KB
SHA-256 43e7c963fd298b81078da605951e5ca8b4a2b0feb11118af433340ae4ba8e4c6
Download
Doc

Sunset Rays EPUB

Sunset Rays EPUB is a Electronic Publication sample based on Wikimedia Commons. It can be used to test downloads, parsers, previews, and file type detection.

10-sunset-rays.epub
Type Sample
1.4 KB
SHA-256 ccd1352fd410f4f0ee556137468c1d328ac99cb725c21ab9055d68fd176cfd04
Download
Doc

NASA Blue Marble EPUB

NASA Blue Marble EPUB is a Electronic Publication sample based on NASA Image and Video Library. It can be used to test downloads, parsers, previews, and file type detection.

nasa-blue-marble-2012-east.epub
Type Sample
1.5 KB
SHA-256 d5766b911a2b93a869d32ba1863e72403f8e0e245fcbb08b81f96914e338c511
Download

Frequently asked questions

What is the magic number (file signature) of Electronic Publication?

Electronic Publication files begin with the byte signature 50 4B 03 04 ("PK.."). Detect the format by reading these leading bytes rather than trusting the file extension alone.

What is the MIME type of Electronic Publication?

The MIME type for Electronic Publication is application/epub+zip.

What file extension does Electronic Publication use?

Electronic Publication files use the .epub extension. The extension is a convention only and does not guarantee the file contents, so combine it with signature and structure checks.

Related formats