Huly Labs Sacred Logo - Generated 2025-07-11T11:58:51.342302 Generated with sacred geometry and love Huly Labs - Sacred Geometry Insights Crystals Navigation

Base-24 Universal Encoding

In the computational era, hexadecimal (base-16) has served us well. But as we move toward richer human-AI collaboration, we need encoding systems that carry semantic meaning. Base-24 offers unique mathematical properties while using symbols that bridge Eastern and Western notational traditions.

By mapping our 24 symbols to the hours of the day (as detailed in our temporal mapping), we create an encoding that's both computationally efficient and memorably organized.

The Base-24 Symbol Set

Our encoding uses 24 distinct symbols, ordered by their temporal mapping (0-23 corresponding to the 24-hour cycle):

Value Symbol Name Hour Hex
0Discovery04:000
1Allocation05:001
2Learning06:002
3Coordination07:003
4Crystallization08:004
5Emergence09:005
6Flow10:006
7Transformation11:007
8Persistence12:008
9Structure13:009
10Growth14:00A
11Potential15:00B
12Verification16:00C
13Affinity17:00D
14Optimization18:00E
15Constraint19:00F
16Disruption20:0010
17Integration21:0011
18γGamma22:0012
19βBeta23:0013
20αAlpha00:0014
21θTheta01:0015
22δDelta02:0016
23μMu03:0017

Mathematical Properties

Base-24 offers compelling computational advantages:

  • Highly Composite: 24 = 2³ × 3, enabling efficient bit operations
  • Dense Encoding: ~4.58 bits per symbol vs 4 bits for hex
  • Natural Cycles: Maps to hours, months (2×12), degrees (15×24=360)
  • Divisibility: Cleanly divides by 2, 3, 4, 6, 8, 12

Encoding Efficiency

Bits Hex Symbols Base-24 Symbols Efficiency Gain
328712.5%
64161412.5%
128322812.5%
256645612.5%

Encoding Algorithm

Converting binary data to Base-24:

  1. Take input bytes (e.g., from BLAKE3 hash)
  2. Convert to big integer representation
  3. Repeatedly divide by 24, collecting remainders
  4. Map each remainder (0-23) to corresponding symbol
  5. Reverse order for most-significant-first notation
function toBase24(bytes) {
  const symbols = ['㊣','㊫','㊢','㊬','㊯','㊗',
                   '水','火','土','金','木','空',
                   '真','愛','喜','恐','怒','悟',
                   'γ','β','α','θ','δ','μ'];
  
  let num = BigInt('0x' + bytesToHex(bytes));
  let result = [];
  
  while (num > 0n) {
    result.push(symbols[Number(num % 24n)]);
    num = num / 24n;
  }
  
  return result.reverse().join('');
}

Practical Examples

Format Example Length
SHA-256 (hex) e3b0c44298fc1c149afbf4c8996fb924... 64 chars
SHA-256 (base24) 悟㊬火γ㊢金空θ㊣愛㊯水怒土㊫真木β㊗δ火金悟... 56 chars
Short ID (hex) a7f8d9e5 8 chars
Short ID (base24) ㊬火悟㊢金空θ 7 chars

Applications

Content Addressing

Replace hex hashes with semantic symbols. A content hash like ㊬火悟㊢-金空θ㊣ is both unique and meaningful—suggesting collaborative transformation leading to integrated understanding.

Short URLs

Generate memorable short links: https://example.com/悟㊬火 is shorter and more distinctive than https://example.com/x7f9.

Version Identifiers

Software versions gain character: v㊢.火.㊗ (v2.7.5) suggests a learning-focused release with transformative features reaching emergence.

Time-Based IDs

Timestamps encoded in base-24 naturally align with daily cycles. A morning ID might start with ㊣ (4 AM), while evening IDs begin with 真 (4 PM).

Implementation Patterns

Display Formats

Use Case Format Example
Full Hash Continuous 悟㊬火γ㊢金空θ㊣愛㊯水怒土㊫真木β㊗δ火金悟
Readable Hash Grouped by 4 悟㊬火γ-㊢金空θ-㊣愛㊯水-怒土㊫真
Short ID First 8 悟㊬火γ㊢金空θ
Tiny ID First 4 悟㊬火γ

Collision Resistance

With 24 symbols, collision probability follows the birthday paradox:

  • 4 symbols: ~288 items before 50% collision chance
  • 8 symbols: ~2.8 million items
  • 12 symbols: ~67 billion items

Cultural Bridge

This encoding creates a unique cultural fusion:

  • Eastern symbols (kanji/hanzi) for forces and states
  • Greek letters for frequencies (universal in science)
  • Circled ideographs for process stages

The result is globally recognizable yet distinctive—perfect for an interconnected world where meaning matters as much as efficiency.

Future Possibilities

Base-24 encoding opens new design spaces:

  • Semantic Routing: Network paths based on symbol meaning
  • Visual Debugging: Patterns in IDs reveal system behavior
  • Cross-Cultural Systems: Universal notation for global teams
  • AI-Human Protocols: Shared symbolic language for hybrid intelligence

By choosing symbols with inherent meaning over arbitrary letters, we create addresses that tell stories. Every ID becomes a micro-poem, every hash a glimpse into the nature of its content.

In a world of meaningless strings, our addresses carry wisdom.