This tool decompresses Deflate compressed data (also known as "inflate") back to its original form. Enter the Base64 encoded Deflate data and get the original uncompressed text instantly. Deflate decompression is commonly needed when working with ZIP files, PNG data, or HTTP compressed responses.
Deflate decompression, also known as "inflate", is the reverse process of Deflate compression. It takes compressed data and restores it to its original form using the LZ77 and Huffman decoding algorithms. This tool accepts Base64 encoded Deflate data, decodes it, and then decompresses it.
This tool accepts Base64 encoded raw Deflate data (RFC 1951). If you have GZIP or ZLIB wrapped data, use the appropriate decompressor tool instead. For raw binary Deflate data, first encode it to Base64 before using this tool.