BASE62

Constant BASE62 

Source
pub const BASE62: &str = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz";
Expand description

The Base62 character set used for encoding and decoding Timeflakes.

This set consists of:

  • Digits: 0-9
  • Uppercase letters: A-Z
  • Lowercase letters: a-z

Base62 is a URL-safe encoding commonly used for compact representations of large numbers.