2016-11-17 68 views
0

我要找的Unicode字符爲這個圖象:附加圖像的unicode是什麼?

image High res image

沒有任何一個有什麼想法?如果是,請提供角色。

當您鍵入Alt + space時,此字符顯示在Mac頁面中。

+0

請參閱[什麼是alt +空格鍵字符以及如何禁用它?](http://apple.stackexchange.com/questions/34672/)和[如何禁用Option-Space ke y組合爲非休息空間?](http://superuser.com/questions/78245/) –

回答

1

樣本圖片很不清楚,很難猜測。但是,它可能是一種Zalgo text,例如由結合Circumflex Accent修改的任何子彈樣字符。

例如(使用Windows PowerShell,請注意,我AltCodes.ps1 script僅僅是施加有顯示Unicode名稱中使用的字符ANS UTF-8值):從Powershell_ISE窗口

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> ' ̂.̂∙̂•̂⌂' 
̂.̂∙̂•̂⌂ 

視口

combining circumflex

+0

我添加了清晰圖像 –