gpt4 book ai didi

utf-8 - 用于 ASCII 的类似 UTF8 字符

转载 作者:行者123 更新时间:2023-12-01 09:28:24 27 4
gpt4 key购买 nike

我正在寻找一个包含 ASCII 字符和相同外观的 UTF8 字符的表。我知道这也取决于字体是否看起来相同,但从通用开始就足够了。

>>> # PY3 code:
>>> a='H' # ascii
>>> b='Н' # utf8
>>> a==b
False
>>> ' '.join(format(ord(x), 'b') for x in a)
'1001000'
>>> ' '.join(format(ord(x), 'b') for x in b)
'10000011101'
>>> a='P' # ascii
>>> b='Ρ' # utf8
>>> a==b
False
>>> ' '.join(format(ord(x), 'b') for x in a)
'1010000'
>>> ' '.join(format(ord(x), 'b') for x in b)
'1110100001'

最佳答案

这是非常有用的工具,因为它会向您显示所有看起来相似的字符,您可以选择是否真的足够相似:)
https://unicode.org/cldr/utility/confusables.jsp?a=test&r=None
其他一些资源:

  • 这叫做Visual Spoofing
  • Python Package to detect confusables
  • 关于utf-8 - 用于 ASCII 的类似 UTF8 字符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46871728/

    27 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com