An implementation of ferno's base65536, implemented in GoLang.
This is a Go library for encoding and decoding. If you show detail for base65536, see ferno's base65536 README page
standard go get
:
go get -u github.com/usk81/base65536
encode:
s := "hello world"
result := base65536.Encode(s)
Println(result)
// 驨ꍬ啯𒁷ꍲᕤ
decode:
s := "驨ꍬ啯𒁷ꍲᕤ"
result := base65536.Decode(s)
Println(result)
// hello world
- Fork it!
- Create your feature branch: git checkout -b my-new-feature
- Commit your changes: git commit -am 'Add some feature'
- Push to the branch: git push origin my-new-feature
- Submit a pull request :D