GZIP Text Encoder & Decoder

0 bytes
0 bytes
0 bytes
0 bytes

How it works

Encoding:

  1. Input text is converted to UTF-8 encoding
  2. The UTF-8 data is compressed using GZIP
  3. The compressed binary data is converted to Base64

Decoding:

  1. Base64 input is converted back to binary data
  2. The binary data is decompressed using GZIP
  3. The decompressed data is converted from UTF-8 to text