πŸ“‹ MIME Type Lookup

Ad Space - Top (728x90)

Free online MIME type lookup tool. Search by file extension or MIME type.

🔍
Alltextimageapplicationaudiovideofontmodel
Showing 68 results
MIME TypeExtensionCategoryDescription
text/htmlhtml,htmtextHyperText Markup Language
text/csscsstextCascading Style Sheets
text/javascriptjs,mjstextJavaScript source code
text/plaintxt,text,logtextPlain text
text/csvcsvtextComma-Separated Values
text/xmlxmltextXML document
text/markdownmd,markdowntextMarkdown document
text/yamlyaml,ymltextYAML document
application/jsonjsonapplicationJSON data
application/pdfpdfapplicationPDF document
application/zipzipapplicationZIP archive
application/gzipgz,gzipapplicationGZip archive
application/octet-streambin,dll,exe,datapplicationBinary data
application/xmlxml,xslapplicationXML document (app)
application/xhtml+xmlxhtmlapplicationXHTML document
application/ld+jsonjsonldapplicationJSON-LD linked data
application/graphqlgraphqlapplicationGraphQL query
application/wasmwasmapplicationWebAssembly binary
application/manifest+jsonwebmanifestapplicationWeb app manifest
application/rss+xmlrssapplicationRSS feed
application/atom+xmlatomapplicationAtom feed
application/x-tartarapplicationTape archive
application/x-bzip2bz2applicationBZip2 archive
application/x-7z-compressed7zapplication7-Zip archive
application/vnd.rarrarapplicationRAR archive
application/x-httpd-phpphpapplicationPHP script
application/x-shshapplicationShell script
application/x-python-codepyapplicationPython code
application/x-java-archivejarapplicationJava archive
application/vnd.openxmlformats-officedocument.spreadsheetml.sheetxlsxapplicationExcel spreadsheet
application/vnd.openxmlformats-officedocument.wordprocessingml.documentdocxapplicationWord document
application/vnd.openxmlformats-officedocument.presentationml.presentationpptxapplicationPowerPoint presentation
image/jpegjpg,jpeg,jfifimageJPEG image
image/pngpngimagePNG image
image/gifgifimageGIF image
image/webpwebpimageWebP image
image/svg+xmlsvgimageSVG vector graphics
image/avifavifimageAVIF image
image/bmpbmpimageBMP bitmap image
image/tifftiff,tifimageTIFF image
image/x-iconicoimageIcon file
image/heicheicimageHEIC image
image/heifheifimageHEIF image
audio/mpegmp3audioMP3 audio
audio/wavwavaudioWAV audio
audio/oggogg,ogaaudioOGG audio
audio/aacaacaudioAAC audio
audio/flacflacaudioFLAC audio
audio/webmwebmaudioWebM audio
audio/mp4m4a,mp4audioMP4 audio
audio/midimid,midiaudioMIDI sound
video/mp4mp4,m4vvideoMP4 video
video/webmwebmvideoWebM video
video/oggogvvideoOGG video
video/x-msvideoavivideoAVI video
video/x-matroskamkv,mk3dvideoMatroska video
video/quicktimemov,qtvideoQuickTime video
video/mpegmpeg,mpgvideoMPEG video
video/x-flvflvvideoFlash video
video/3gpp3gpvideo3GPP mobile video
font/ttfttffontTrueType font
font/otfotffontOpenType font
font/woffwofffontWOFF font
font/woff2woff2fontWOFF2 font
model/gltf+jsongltfmodelGLTF 3D model JSON
model/gltf-binaryglbmodelGLTF 3D model binary
model/objobjmodel3D OBJ model
model/stlstlmodelSTL 3D model

How to Use

πŸ’‘ MIME types are crucial in web development. Correct Content-Type headers ensure browsers parse files properly.

Ad Space - Middle (728x90)

FAQ

What is a MIME type?

MIME (Multipurpose Internet Mail Extensions) type is a standard for representing file formats. Servers use Content-Type headers to tell browsers how to handle resources. Format is type/subtype, e.g., text/html.

What are common MIME types?

Common MIME types include: text/html (HTML), application/json (JSON), image/png (PNG), application/pdf (PDF), text/css (CSS), application/javascript (JavaScript).

How to configure MIME types correctly?

Configure MIME types in web servers. Nginx uses the types directive, Apache uses AddType. Incorrect configuration may cause security risks.

What happens with wrong MIME types?

Wrong MIME types cause browsers to mishandle files. CSS served as text/plain won't apply, JavaScript served as text/html may enable XSS attacks.