附加图像的 unicode 是什么?

What is the unicode for the attached image?

我正在寻找这张图片的 Unicode 字符:

有人知道吗?如果是,请提供字符。

当您键入 Alt+space.

时,此字符显示在 Mac 页中

示例图片很不清晰,所以很难猜。但是,它可能是一种 Zalgo text 例如Combining Circumflex Accent.

修饰的任何类似子弹的字符

例如(使用 Windows Powershell;请注意,我的 AltCodes.ps1 script 仅用于显示 Unicode 名称和所用字符的 UTF-8 值):

PS D:\PShell> $cf=[char]0x0302

PS D:\PShell> $cf+'.'+$cf+[char]0x2219+$cf+[char]0x2022+$cf+[char]0x2302
̂.̂∙̂•̂⌂

PS D:\PShell> D:\PShell\tests\AltCodes.ps1 ' ̂.̂∙̂•̂⌂'

Ch Unicode    Alt?          IME     UTF-8   ?  

    U+0020      32         …32…      0x20      Space
 ̂   U+0302     770          …2…    0xCC82  Ì�  Combining Circumflex Accent
 .  U+002E      46         …46…      0x2E   .  Full Stop
 ̂   U+0302     770          …2…    0xCC82  Ì�  Combining Circumflex Accent
 ∙  U+2219    8729         …25…  0xE28899 â��  Bullet Operator
 ̂   U+0302     770          …2…    0xCC82  Ì�  Combining Circumflex Accent
 •  U+2022    8226         …34…  0xE280A2 â�¢  Bullet
 ̂   U+0302     770          …2…    0xCC82  Ì�  Combining Circumflex Accent
 ⌂  U+2302    8962          …2…  0xE28C82 â��  House

  ̂.̂∙̂•̂⌂

PS D:\PShell> ' ̂.̂∙̂•̂⌂'
 ̂.̂∙̂•̂⌂

视口 来自 Powershell_ISE window: