File extension lookup
A file extension is the short suffix after the last dot in a filename, like .png or .docx. It hints at the file’s format and which application should open it, and it usually maps to a standard MIME content-type used on the web. This tool lets you search a curated database of common extensions and instantly see the format name, MIME type, category, and the programs that typically handle the file.
How it works
The lookup normalizes your input — stripping a leading dot and lowercasing — then matches it against the extension database. Each record carries a human-readable format name, a canonical MIME type (for example application/pdf), a category (image, document, archive, audio, code, and so on), and a list of common applications. You can also filter the whole list by category to browse families of formats. All matching happens locally.
Tips and notes
- Extensions are hints, not guarantees — a file can be renamed. For trustworthy detection, check the file’s binary signature (magic numbers) or its server-reported Content-Type.
- Generic extensions like
.dator.binhave no single format; the entry flags these as ambiguous. - Web servers should send the listed MIME type so browsers render or download the file correctly — see the related Content-Type lookup for the reverse mapping.