答案 0 :(得分:1)
样本图片非常不清楚所以很难猜测。但是,它可能是一种Zalgo text,例如由组合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窗口的视口: