1
0
mirror of https://github.com/fumiama/emozi.git synced 2026-06-27 15:30:25 +08:00
This commit is contained in:
源文雨
2024-02-14 18:39:07 +09:00
parent 9463d5e7b6
commit ceb7686da6
18 changed files with 1776 additions and 0 deletions

21
README.md Normal file
View File

@@ -0,0 +1,21 @@
<div align="center">
<h1>EMOZI</h1>
参考古埃及圣书体设计的一种基于颜文字的汉字抽象转写法<br>🐑🚬🧗👤🕸️😐🧗✍️👈🌞😨🏠🌹🧦😨👥🌹🔐😨💦⬅️☀️😨🏡💦💡🍉🌱🍵💡🧗🪓🍆👔😨🐶<br><br>
<img src="https://counter.seku.su/cmoe?name=emozi&theme=r34" /><br>
</div>
W.I.P.
## 实用工具
### 拼音识别拆分
将带声调的拼音拆分为以国际音标表示的声母韵母。
```go
s, y, t, err := emozi.SplitPinyin("jiǒng")
if err != nil {
panic(err)
}
fmt.Println(s, y, tone) // tɕ i̯ʊŋ 上声
```