What it does
Zlib and deflate payloads appear in APIs, caches, logs, and encoded debugging samples. They are similar to gzip in that they compress bytes, but the wrapper format is different. A gzip decoder will often fail when the input is actually zlib data, which is why a separate focused page is useful.
When to use it
This tool accepts base64 or even-length hexadecimal input and attempts to decompress it using the browser DecompressionStream API. When the decompressed result is text, it is shown directly in the output area. The page is designed for short pasted values rather than large archives.
How it works
A common use case is debugging an encoded field from an API response or a stored diagnostic value. You can paste the compressed text, run the decompressor, and quickly see whether the payload contains JSON, plain text, HTML, or another readable format.
Practical note
If the output is unreadable, the original payload may be binary, encrypted, not actually zlib, or encoded in another wrapper. Try the gzip decompressor when you know the payload starts as gzip, and use this page for zlib or deflate-style data.