base36 – github.com/martinlindhe/base36 Index | Examples | Files

package base36

import "github.com/martinlindhe/base36"

Index

Examples

Functions

func Decode

func Decode(s string) uint64

Decode decodes a base36-encoded string.

Example

Code:play 

package main

import (
	"fmt"

	"github.com/martinlindhe/base36"
)

func main() {
	fmt.Println(base36.Decode("15N9Z8L3AU4EB"))
}

Output:

5481594952936519619

func DecodeToBytes

func DecodeToBytes(b string) []byte

DecodeToBytes decodes a base36 string to a byte slice, using alphabet.

Example

Code:play 

package main

import (
	"fmt"

	"github.com/martinlindhe/base36"
)

func main() {
	fmt.Println(base36.DecodeToBytes("A2F44"))
}

Output:

[1 2 3 4]

func Encode

func Encode(value uint64) string

Encode encodes a number to base36.

Example

Code:play 

package main

import (
	"fmt"

	"github.com/martinlindhe/base36"
)

func main() {
	fmt.Println(base36.Encode(5481594952936519619))
}

Output:

15N9Z8L3AU4EB

func EncodeBytes

func EncodeBytes(b []byte) string

EncodeBytes encodes a byte slice to base36 string.

Example

Code:play 

package main

import (
	"fmt"

	"github.com/martinlindhe/base36"
)

func main() {
	fmt.Println(base36.EncodeBytes([]byte{1, 2, 3, 4}))
}

Output:

A2F44

func EncodeBytesAsBytes

func EncodeBytesAsBytes(b []byte) []byte

EncodeBytesAsBytes encodes a byte slice to base36.

Source Files

base36.go

Version
v1.1.1 (latest)
Published
Jun 19, 2022
Platform
js/wasm
Imports
2 packages
Last checked
3 days ago

Tools for package owners.