confusable_homoglyphs
confusable_homoglyphs copied to clipboard
ϲοnfuѕаblе_һοmоɡlyphs
## Case 1 I (`I` capital "eye") vs. l (`l` lowercase "ell") with just `LATIN` Code: ```py from confusable_homoglyphs import confusables confusables.is_confusable('I', preferred_aliases=['LATIN'], greedy=True) ``` Expected: at least `l` Actual:...
I'm confused as to why I'm getting different results for `ㅋ` vs. `ᄏ`. The Unicode site gives the original plus [2 additional homoglyphs](https://unicode.org/cldr/utility/confusables.jsp?a=%E3%85%8B&r=None) for `ㅋ`: > ㅋ ᄏ ᆿ But...
It would be useful to be able to check files for confusable homoglyphs on the command-line. While it is possible to write a `python3 -c` command, it would be much...