https://github.com/eskriett/confusables
Unicode confusable detection
https://github.com/eskriett/confusables
confusable confusables homoglyphs unicode
Last synced: about 1 year ago
JSON representation
Unicode confusable detection
- Host: GitHub
- URL: https://github.com/eskriett/confusables
- Owner: eskriett
- License: mit
- Created: 2020-01-09T16:14:27.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2025-03-24T14:30:32.000Z (about 1 year ago)
- Last Synced: 2025-03-24T14:46:30.346Z (about 1 year ago)
- Topics: confusable, confusables, homoglyphs, unicode
- Language: Go
- Size: 713 KB
- Stars: 5
- Watchers: 1
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# confusables
[](https://godoc.org/github.com/eskriett/confusables)
[](https://travis-ci.org/eskriett/confusables)
[](https://goreportcard.com/report/github.com/eskriett/confusables)
Unicode confusable detection
## Overview
```go
package main
import (
"fmt"
"github.com/eskriett/confusables"
)
func main() {
fmt.Println(confusables.ToSkeleton("πΡ
βΊππ‘Πꬲ"))
// exarnple
fmt.Println(confusables.IsConfusable("example", "πΡ
βΊππ‘Πꬲ"))
// true
fmt.Println(confusables.IsConfusable("example", "πΡ
βΊππ‘Π"))
// false
}
```