Skip to content

Compression Mode 01 — Two-Digit CharCode Concatenation since v1.0.0

This compression mode operates on the decimal representation of character codes.

It concatenates pairs of two-digit codes into a four-digit decimal number.

How It Works

Step-by-Step Walkthrough

Input: HELLO!

000720006900076000760007900033

  1. Chunkify: HE, LL, O!
  2. Convert to character codes: 72 and 69, 76 and 76, 79 and 33
  3. Concatenate character code pairs as strings: 7269, 7676, 7933
  4. Convert to UTF-16 characters: , ,

Output: ᱥ᷼ỽ

072690767607933