Skip to content

TkTech/go4mutf8

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

go4mutf8

Codec for Android or JNI MUTF-8(Modified UTF-8) by Go

Reference

Example

package main

import (
	"fmt"

	"github.com/bslizon/go4mutf8"
)

func main() {
	m, err := go4mutf8.Encode("Hello World 🐒")
	if err != nil {
		panic(err)
	}

	s, err := go4mutf8.Decode(m)
	if err != nil {
		panic(err)
	}

	fmt.Println(s)
}

About

Codec for Android or JNI MUTF-8(Modified UTF-8) by Go

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages

  • Go 100.0%