Îõ³h&׸ Safe-Inferred *1Ê×Üãëï¨base62>Base62 encode a 64-bit word. Leading zero bits are suppressed.ÆputStrLn (Bytes.toLatinString (Bytes.fromByteArray (encode64 213635)))tZjàNote that this will encode the number 0 as the character 0 rather than as the empty byte array.base62)Base62 encode a 64-bit word as a builder.base62?Base62 encode a 128-bit word. Leading zero bits are suppressed.5let octillion = 1_000_000_000_000_000_000_000_000_000ÊputStrLn (Bytes.toLatinString (Bytes.fromByteArray (encode128 octillion)))1IdHllabYuAOlNK4base62*Base62 encode a 128-bit word as a builder.base62¡Decode a base62-encoded 64-bit word. This rejects the empty string rather than decoding it as zero. This also rejects encoded numbers greater than or equal to 2^64..decode64 (Bytes.fromAsciiString "LygHa16AHYB")Just 184467440737095516113decode64 (Bytes.fromAsciiString "1IdHllabYuAOlNK4")Nothingbase62¢Decode a base62-encoded 128-bit word. This rejects the empty string rather than decoding it as zero. This also rejects encoded numbers greater than or equal to 2^128./decode128 (Bytes.fromAsciiString "LygHa16AHYB")Just 18446744073709551611:decode128 (Bytes.fromAsciiString "7n42DGM5Tflk9n8mt7Fhc6"),Just 340282366920938463463374607431768211454:decode128 (Bytes.fromAsciiString "7n42DGM5Tflk9n8mt7Fhc9")Nothing%base62-0.1.0.2-DlikLZemLxcHVwhBKsYukOData.Word.Base62encode64 builder64 encode128 builder128decode64 decode128