MIME type lookup
File extension द्वारा MIME types को देखें या content type द्वारा search करें — images, video, audio, documents, और fonts को cover करता है।
image/pngPortable Network Graphics — lossless raster, transparent.
ext.pngimage/jpegJPEG — lossy raster image, no transparency.
ext.jpg .jpegimage/webpModern web image format with both lossy and lossless modes.
ext.webpimage/avifAV1 still image — small files, wide gamut.
ext.avifimage/gifAnimated raster image, indexed palette.
ext.gifimage/svg+xmlScalable Vector Graphics — XML-based vector format.
ext.svgimage/heicApple HEIF still image, HEVC-compressed.
ext.heicimage/heifHigh Efficiency Image Format container.
ext.heifimage/bmpWindows Bitmap — uncompressed raster.
ext.bmpimage/tiffTagged Image File Format, common in print.
ext.tif .tiffimage/x-iconWindows / favicon icon container.
ext.icovideo/mp4MPEG-4 Part 14 — most common video container.
ext.mp4 .m4vvideo/webmWebM container, typically VP8/VP9/AV1 + Vorbis/Opus.
ext.webmvideo/quicktimeApple QuickTime container.
ext.mov .qtvideo/x-matroskaMatroska multimedia container.
ext.mkvvideo/x-msvideoAudio Video Interleave (legacy Microsoft container).
ext.aviaudio/mpegMPEG-1 Audio Layer III — most common lossy audio.
ext.mp3audio/wavWaveform Audio File Format — uncompressed PCM.
ext.wavaudio/oggOgg container, typically Vorbis or Opus audio.
ext.ogg .ogaaudio/mp4MPEG-4 audio container, AAC by default.
ext.m4aaudio/flacFree Lossless Audio Codec.
ext.flacaudio/webmWebM audio (Opus or Vorbis).
ext.webatext/htmlHyperText Markup Language.
ext.html .htmtext/cssCascading Style Sheets.
ext.csstext/plainPlain text, no formatting.
ext.txttext/csvComma-separated values.
ext.csvtext/markdownMarkdown plain-text formatting.
ext.md .markdowntext/xmlExtensible Markup Language (text variant).
ext.xmlapplication/jsonJavaScript Object Notation.
ext.jsonapplication/pdfPortable Document Format.
ext.pdfapplication/zipZIP archive.
ext.zipapplication/gzipGzip-compressed file.
ext.gzapplication/x-tarTape archive (uncompressed).
ext.tarapplication/x-7z-compressed7-Zip compressed archive.
ext.7zapplication/x-rar-compressedRAR compressed archive.
ext.rarapplication/javascriptJavaScript source.
ext.js .mjsapplication/wasmWebAssembly binary module.
ext.wasmapplication/xmlExtensible Markup Language (application variant).
ext.xmlapplication/yamlYAML Ain't Markup Language.
ext.yaml .ymlapplication/sqlStructured Query Language script.
ext.sqlapplication/vnd.openxmlformats-officedocument.wordprocessingml.documentMicrosoft Word (Office Open XML).
ext.docxapplication/vnd.openxmlformats-officedocument.spreadsheetml.sheetMicrosoft Excel (Office Open XML).
ext.xlsxapplication/vnd.openxmlformats-officedocument.presentationml.presentationMicrosoft PowerPoint (Office Open XML).
ext.pptxapplication/mswordLegacy Microsoft Word document.
ext.docapplication/epub+zipEPUB e-book.
ext.epubapplication/x-fictionbook+xmlFictionBook 2.x e-book.
ext.fb2application/octet-streamArbitrary binary data — no specific format.
ext.binfont/woffWeb Open Font Format 1.0.
ext.wofffont/woff2Web Open Font Format 2.0 (better compression).
ext.woff2font/ttfTrueType font.
ext.ttffont/otfOpenType font.
ext.otf
MIME type lookup के बारे में
Handytool का MIME type lookup आपको किसी भी file के लिए सही Content-Type header खोजने में मदद करता है — whether आप एक web server को configure कर रहे हों, एक API build कर रहे हों, या एक upload form को filter कर रहे हों। Extension (.png, .pdf, .epub) द्वारा या media type (image/png, application/pdf) द्वारा search करें, और group द्वारा filter करें। हर entry में canonical IANA-registered MIME type, file extensions जो commonly इसे use करते हैं, और एक one-line description है।
MIME type lookup की विशेषताएँ
- 01
Extension या MIME द्वारा search करें
.webp या webp को type करें image/webp को खोजने के लिए; pdf या application/pdf को type करें document type को खोजने के लिए; "font" को type करें सभी font media types को देखने के लिए।
- 02
Group filter
Results को image, video, audio, text, application, या font में narrow करें जब आप सिर्फ एक particular family of files की care करते हैं।
- 03
Real-world coverage
Formats को includes करता है जिन्हें developers actually deal करते हैं — Office Open XML (docx, xlsx), modern image formats (avif, heic), और lesser-known ones जैसे FB2, EPUB, और WebAssembly।
MIME type lookup अक्सर पूछे जाने वाले प्रश्न
- कुछ extensions को क्यों कई MIME types में map किया जाता है?
- एक single extension को multiple legitimate types द्वारा उपयोग किया जा सकता है — उदाहरण के लिए .xml text/xml और application/xml दोनों है। उपयोग करें whichever आपकी tooling को consume करने के लिए expect करता है।
- application/octet-stream और एक specific type के बीच क्या अंतर है?
- application/octet-stream arbitrary binary data के लिए fallback है जब कोई specific type known नहीं है। Browsers usually ऐसे responses को download करने के लिए prompt करते हैं। जब आप कर सकते हैं तब एक specific type का उपयोग करें — यह in-browser preview और correct handling को enable करता है।
- क्या heic image/heic है या image/heif?
- दोनों exist करते हैं — image/heic HEIF files को refer करता है जो HEVC codec (iPhones पर most common case) का उपयोग करती है, जबकि image/heif अधिक general container type है। अधिकांश servers .heic uploads के लिए image/heic का उपयोग करते हैं।
- क्या font/woff और application/font-woff same हैं?
- font/woff modern, IANA-registered type है। पुराना application/font-woff अभी भी legacy configs में देखा जाता है लेकिन migrate किया जाना चाहिए।
संबंधित टूल
डेवलपर →- लाइव
HTTP status code lookup
किसी भी HTTP status code को देखें — 1xx से 5xx तक — एक plain-English description के साथ।
डेवलपरमुफ़्तस्थानीय रूप से चलता हैखोलें - लाइव
Regex टेस्टर
JavaScript regular expressions को किसी भी पाठ के विरुद्ध टेस्ट करें — मैचेज़, capture groups और replacements को लाइव देखें, आपके ब्राउज़र में।
डेवलपरमुफ़्तस्थानीय रूप से चलता हैखोलें - लाइव
Diff viewer
दो पाठों को side by side compare करें — line, word, या character diff — privately आपके ब्राउज़र में।
डेवलपरमुफ़्तस्थानीय रूप से चलता हैखोलें
अन्य टूल्स देखें
सभी टूल →- लाइव
PDF से JPG
PDF के हर पृष्ठ को तेज JPG, PNG या WebP में बदलें — सीधे ब्राउज़र में, कोई अपलोड नहीं, कोई गुणवत्ता नुकसान नहीं।
PDFमुफ़्तस्थानीय रूप से चलता हैखोलें - लाइव
पृष्ठभूमि हटाएँ
ब्राउज़र में चलने वाले AI मॉडल से फ़ोटो की पृष्ठभूमि मिटाएँ — बिना अपलोड के, आपकी छवियाँ आपके डिवाइस पर रहती हैं।
छविमुफ़्तस्थानीय रूप से चलता हैखोलें - लाइव
वीडियो ट्रिम करें
फ़्रेम-स्तरीय सटीकता के साथ वीडियो की शुरुआत या अंत काटें।
वीडियोमुफ़्तखोलें - लाइव
ऑडियो ट्रिम करें
ऑडियो फ़ाइल के एक भाग को काटें।
ऑडियोमुफ़्तस्थानीय रूप से चलता हैखोलें - लाइव
Markdown से HTML
Markdown को साफ़ HTML में ब्राउज़र में ही कन्वर्ट करें।
दस्तावेज़मुफ़्तस्थानीय रूप से चलता हैखोलें