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.

Tool guide

  • O que é GZIP Formato de compressão muito usado em HTTP, logs e arquivos .gz em servidores Unix.
  • O que a ferramenta faz Espera o conteúdo binário comprimido codificado em Base64, descompacta com a API do navegador e tenta exibir como texto UTF-8.
  • Por que usar Inspecionar rapidamente um .gz sem linha de comando, desde que o resultado seja essencialmente 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.