appuyez sur ⌘K pour changer d’outil
VALIDATE & INSPECT

Vérificateur de Types MIME

Recherche les types MIME et extensions de fichiers.

local
mime-checker
ExtensionMIME type
.htmltext/html
.htmtext/html
.csstext/css
.jstext/javascript
.mjstext/javascript
.jsonapplication/json
.xmlapplication/xml
.txttext/plain
.csvtext/csv
.mdtext/markdown
.pdfapplication/pdf
.zipapplication/zip
.gzapplication/gzip
.tarapplication/x-tar
.pngimage/png
.jpgimage/jpeg
.jpegimage/jpeg
.gifimage/gif
.webpimage/webp
.svgimage/svg+xml
.icoimage/x-icon
.avifimage/avif
.bmpimage/bmp
.mp3audio/mpeg
.wavaudio/wav
.oggaudio/ogg
.mp4video/mp4
.webmvideo/webm
.movvideo/quicktime
.wofffont/woff
.woff2font/woff2
.ttffont/ttf
.otffont/otf
.eotapplication/vnd.ms-fontobject
.docapplication/msword
.docxapplication/vnd.openxmlformats-officedocument.wordprocessingml.document
.xlsapplication/vnd.ms-excel
.xlsxapplication/vnd.openxmlformats-officedocument.spreadsheetml.sheet
.pptapplication/vnd.ms-powerpoint
.wasmapplication/wasm
.icstext/calendar
.emlmessage/rfc822
.yamlapplication/yaml
.ymlapplication/yaml
.tomlapplication/toml
.binapplication/octet-stream
§01 À PROPOS DE CET OUTIL

Overview

MIME types (media types) tell browsers, mail clients, and HTTP servers how to interpret a payload — text/html renders as a page, application/octet-stream downloads. This tool is a fast, filterable reference covering common web, image, audio/video, font, archive, and Office formats, including newer entries like image/avif, application/wasm, and font/woff2.

How to use

  1. Type an extension or a MIME type fragment into the Extension or MIME type field (e.g. webp, image/, json). Leading dots are ignored, so .png works too.
  2. The table filters instantly, matching against both the Extension and MIME type columns.
  3. Clear the field to see the full table again.

Examples

  • webp.webp / image/webp
  • image/ → all image formats: png, jpg, gif, webp, svg, ico, avif, bmp
  • yaml.yaml and .yml, both application/yaml

Notes

The table is a curated subset of common types, not the full IANA registry. Matching is substring-based and case-insensitive, so xml also matches image/svg+xml. For serving files correctly, remember that the extension is only a hint — the Content-Type header your server sends is what browsers actually obey.

FAQ
Is my search query sent to a server?
No. The tool filters a static table that ships with the page, so every lookup happens entirely in your browser and nothing is transmitted.
Why does the same MIME type appear for multiple extensions?
Several extensions map to one media type by convention: .jpg and .jpeg are both image/jpeg, and .yaml and .yml are both application/yaml. Servers key the Content-Type on the extension, so the duplicates are intentional.
What should I serve for an unknown binary file?
Use application/octet-stream (the .bin entry in the table). It tells browsers to treat the response as opaque binary data and typically triggers a download instead of inline rendering.