Atulin / Base36

Base36 decoder and encoder

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Base36

Build Test Publish

Usage

Encoding

var base36 = Base36.Encode(740_512_952);
var base36 = 4_324_234_535.ToBase36();

Decoding

var num = Base36.Decode("h2398f");
var num = "73fs34".FromBase36();

Method signatures

public static string Encode(ulong input);
public static string ToBase36(this ulong input);

public static ulong Decode(string input);
public static ulong FromBase36(this string input);

About

Base36 decoder and encoder

License:MIT License


Languages

Language:C# 100.0%