Look up the MIME type (Multipurpose Internet Mail Extensions) for a file extension. Covers common document, code, image, audio, video, archive, and font formats, and lets you query several extensions at once
The MIME Type Lookup tool maps a file extension to its corresponding MIME type (Multipurpose Internet Mail Extensions). Enter one or more extensions such as jpg, pdf, or zip, and the tool returns the standard MIME identifier for each format. A MIME type is the standard way the internet describes the content type of a file, for example image/jpeg for images and application/pdf for PDF documents.
The tool ships with a built-in mapping table that covers common formats across development, office documents, multimedia, archives, and fonts. Developers, site operators, QA engineers, and everyday users can quickly confirm the correct MIME identifier to use in HTTP requests, API development, or file uploads, avoiding rendering or download issues caused by a wrong content type.
MIME (Multipurpose Internet Mail Extensions) was first defined in RFC 2045 to describe the media type of email attachments. The HTTP protocol later adopted it widely, making it the standard for identifying resource content types on the web. A MIME type consists of a main type and a subtype, such as text/html, where text is the main type and html is the subtype. Parameters like charset or boundary may also be attached.
At its core, this tool is a static extension-to-MIME mapping table. During a query, the input is normalized to lowercase with any leading dot removed, then looked up in the table. Extensions not present in the table return an "unknown" notice. This approach needs no network access and responds instantly, and the results align with the media types officially registered with IANA, covering most formats used in everyday development.
Look up a single extension:
Input: pdf
Output:
MIME type for .pdf: application/pdf
Look up multiple extensions:
Input: jpg, pdf, zip
Output:
MIME type for .jpg: image/jpeg
MIME type for .pdf: application/pdf
MIME type for .zip: application/zip
This tool pairs with HTTP Status Checker as a web development aid: MIME types identify resource content types, while HTTP status codes indicate the outcome of a request. When building APIs or processing resources, it is often used together with ASCII Code Lookup, Base64 Encode, and Base64 Decode.