🗜
Compression Visualizer
Watch Huffman coding, LZW, and RLE compress data step by step. See tree construction, dictionary growth, and bit-level encoding.
Step 1 / 30
Built frequency table with 8 unique characters.
Frequency Table
| Char | Freq | Probability |
|---|---|---|
| l | 3 | 27.3% |
| o | 2 | 18.2% |
| h | 1 | 9.1% |
| e | 1 | 9.1% |
| SP | 1 | 9.1% |
| w | 1 | 9.1% |
| r | 1 | 9.1% |
| d | 1 | 9.1% |
Input
hello␣world
All algorithms run entirely in your browser. No data is sent anywhere.