HTTP Status Code Lookup
Look up any HTTP status code and what it actually means.
Find the MIME type for any file extension, or the reverse.
Some browsers sniff content when the declared type looks wrong, which can turn an uploaded file into executable HTML. Send X-Content-Type-Options: nosniff to disable that, and always set a correct, explicit Content-Type.
Yes, always. text/html without a charset leaves the browser guessing, and a wrong guess produces mojibake or, historically, a UTF-7 based XSS vector. Send text/html; charset=utf-8 explicitly.
Look up any HTTP status code and what it actually means.
Convert an image to a Base64 data URI for inline embedding.
Break a User-Agent string into browser, engine, OS and device.
Your input is saved in this browser so a refresh does not lose it. Tools handling credentials are never saved.