Convertful
ImagePDFVideoUtilityBlog

Image Tools

  • Compress Image
  • Resize Image
  • Remove Background
  • HEIC to JPG
  • All Image Tools →

PDF Tools

  • Compress PDF
  • Merge PDFs
  • Split PDF
  • PDF to Images
  • All PDF Tools →

Video & Audio

  • Video to GIF
  • Compress Video
  • Trim Video
  • Extract Audio
  • All Video Tools →

Utility

  • QR Code Generator
  • JSON Formatter
  • Color Converter
  • All Utility Tools →
All processing happens in your browser. Your files never leave your device.
AboutBlogTermsPrivacyContact
© 2026 Convertful. All rights reserved.
HomeUtilityMIME Types

MIME Types

Search the full MIME type registry by extension or type. Free, private, runs in your browser.

100% private — your files never leave your browser. All processing happens locally on your device.

Filter

MIME TypeExtensionsCategory
application/gzip.gzApplication
application/javascript.jsApplication
application/json.json, .mapApplication
application/ld+json.jsonldApplication
application/msword.doc, .dotApplication
application/octet-stream.bin, .dms, .lrf, .mar, .so, .dist, .distz, .pkg, .bpk, .dump, .elc, .deploy, .exe, .dll, .deb, .dmg, .iso, .img, .msi, .msp, .msm, .bufferApplication
application/pdf.pdfApplication
application/rtf.rtfApplication
application/vnd.ms-excel.xls, .xlm, .xla, .xlc, .xlt, .xlwApplication
application/vnd.ms-powerpoint.ppt, .pps, .potApplication
application/vnd.openxmlformats-officedocument.presentationml.presentation.pptxApplication
application/vnd.openxmlformats-officedocument.spreadsheetml.sheet.xlsxApplication
application/vnd.openxmlformats-officedocument.wordprocessingml.document.docxApplication
application/wasm.wasmApplication
application/x-tar.tarApplication
application/x-www-form-urlencoded—Application
application/xml.xml, .xsl, .xsd, .rngApplication
application/zip.zipApplication
audio/aac.adts, .aacAudio
audio/flac—Audio
audio/mp4.m4a, .mp4a, .m4bAudio
audio/mpeg.mpga, .mp2, .mp2a, .mp3, .m2a, .m3aAudio
audio/ogg.oga, .ogg, .spx, .opusAudio
audio/wav.wavAudio
audio/webm.webaAudio
font/otf.otfFont
font/ttf.ttfFont
font/woff.woffFont
font/woff2.woff2Font
image/avif.avifImage
image/bmp.bmp, .dibImage
image/gif.gifImage
image/heic.heicImage
image/heif.heifImage
image/jpeg.jpg, .jpeg, .jpeImage
image/png.pngImage
image/svg+xml.svg, .svgzImage
image/tiff.tif, .tiffImage
image/webp.webpImage
image/x-icon.icoImage
multipart/form-data—Multipart
text/css.cssText
text/csv.csvText
text/html.html, .htm, .shtmlText
text/markdown.md, .markdownText
text/plain.txt, .text, .conf, .def, .list, .log, .in, .iniText
text/xml.xmlText
video/mp4.mp4, .mp4v, .mpg4Video
video/ogg.ogvVideo
video/quicktime.qt, .movVideo

Showing 50 of 53 common types. Click a row to copy the MIME type.

You might also need

HTTP Status CodesSearchable reference for every HTTP response code
User Agent ParserParse User-Agent strings into browser, OS, device, engine
ASCII TableSearchable ASCII and extended Latin-1 reference
Image to Base64Encode images as Base64 strings

Why MIME Types Matter

Every file on the web has a MIME type — a label like `image/png` or `application/pdf` that tells the browser what to do with it. Correct MIME types mean images render inline, PDFs open in the reader, videos stream without download prompts, and downloads get the right filename extension. Wrong MIME types are one of the quietest common bugs in web development.

Where They Come From

MIME types are maintained by IANA (Internet Assigned Numbers Authority) in a public registry. The `mime-db` package that powers this tool mirrors that registry and is updated regularly by the open-source community. When a new file format emerges — think WebP, AVIF, WebAssembly — its MIME type gets registered with IANA and propagates out to every server and browser that uses the mime-db dataset.

Common Gotchas

Not every extension maps to one MIME type: `.m4a` can be `audio/mp4` or `audio/x-m4a`. Not every MIME type has a registered extension. Some extensions are ambiguous across platforms (`.bin` is used for everything). And custom content types are common inside organizations (e.g., `application/vnd.company.thing+json`) — IANA's registry only covers the public ones.

Use Cases for This Tool

Look up a type when configuring a `Content-Type` header. Verify an extension when building a file picker's `accept` attribute. Debug 'wrong file type' errors by checking what MIME your server is actually sending. Filter by category to browse everything in a domain (all audio, all video, all fonts). Click any row to copy the MIME string for paste.

FAQ

What's a MIME type?

A label that tells browsers and servers what kind of file they're dealing with — e.g., `image/png` or `application/pdf`. It drives whether your browser renders, downloads, or rejects a file.

Which extensions map to multiple MIME types?

Many. For example `.m4a` can be `audio/mp4` or `audio/x-m4a` depending on the system. The tool shows all registered variants from the mime-db dataset.

How current is this list?

The data comes from `mime-db`, which mirrors the IANA registry and is updated by the open-source community. We bundle the latest snapshot with each deploy.