What it does
Gzip is widely used for HTTP responses, logs, archives, API payloads, and compressed text samples. When a gzip value has been copied as base64 or hexadecimal, it is not easy to read without a decoder. This page gives you a focused way to decompress the payload in the browser.
When to use it
The tool accepts base64 gzip data and even-length hexadecimal gzip data. It uses the browser DecompressionStream API when available, so the work happens locally in the page. That makes it convenient for quick debugging, documentation, and inspection of small compressed payloads.
How it works
This page is not meant to replace archive software for large files. It is designed for pasted strings, short examples, encoded API fields, and small diagnostics. If the compressed bytes are valid gzip and the decompressed content is text, the output area will show the readable result.
Practical note
Be careful with unknown compressed data. Decompression can expand a small input into a much larger output. For everyday development checks, keep the input reasonably small and avoid pasting sensitive production data unless you understand your environment.