GZip Compress / Decompress

Compress and decompress text with GZip in the browser using the Compression Streams API.

How it works

Compression uses the native browser CompressionStream('gzip') API. The compressed binary is Base64-encoded for text-safe transport. Decompression reverses this process using DecompressionStream('gzip').