GZIP Text Encoder & Decoder
How it works
Encoding:
- Input text is converted to UTF-8 encoding
- The UTF-8 data is compressed using GZIP
- The compressed binary data is converted to Base64
Decoding:
- Base64 input is converted back to binary data
- The binary data is decompressed using GZIP
- The decompressed data is converted from UTF-8 to text