GZIP decompress

Paste gzip-compressed bytes as Base64 and read UTF-8 output locally.

{{ gzipUnpack.message }}

Overview

Requires DecompressionStream support. Non‑UTF8 binary may show replacement characters.

Technical deep dive

Common questions summarized

  • What is this tool for?: It runs fully in your browser: useful to validate, format, or convert data in everyday development.
  • Are my inputs sent to a server?: Processing happens locally with JavaScript. We do not store what you paste into the text areas.
  • Can I use this for real production data?: Use at your own risk. For secrets (passwords, tokens), prefer controlled environments and your company policies. And always review the generated contents. Never trust blindly things you see on the internet.

Sample payload to try

  • See also the larger "Code Snippets" sample; paste this excerpt to try locally: Flow — gzip -c arquivo.txt | base64 → cole aqui → texto

Tool guide

  • What GZIP is A common compression format for HTTP, logs, and .gz files.

  • What the tool does Takes gzip-compressed bytes as Base64, decompresses with the browser API, and displays UTF‑8 text when possible.

  • Why use it Peek inside a .gz payload without the CLI when the payload is mostly text.

Code Snippets

Code example
gzip -c arquivo.txt | base64 → cole aqui → texto

Flow

gzip -c arquivo.txt | base64 → cole aqui → texto

FAQ

What is this tool for?

It runs fully in your browser: useful to validate, format, or convert data in everyday development.

Are my inputs sent to a server?

Processing happens locally with JavaScript. We do not store what you paste into the text areas.

Can I use this for real production data?

Use at your own risk. For secrets (passwords, tokens), prefer controlled environments and your company policies. And always review the generated contents. Never trust blindly things you see on the internet.