0

I am looking for the Unicode character for this image:

image High res image

Does any one have any idea? If yes, please provide the character.

This character is displayed in Mac pages when you type Alt+space.

MD XF
  • 7,860
  • 7
  • 40
  • 71
Shiva Kumar
  • 389
  • 3
  • 22
  • See [What's alt+spacebar character and how to disable it?](http://apple.stackexchange.com/questions/34672/) and [How to disable the Option-Space key combination for non-breaking spaces?](http://superuser.com/questions/78245/) – Remy Lebeau Nov 17 '16 at 22:16

1 Answers1

1

The sample picture is pretty unclear so it's hard to guess. However, it could be a kind of Zalgo text e.g. any bullet-like character modified by Combining Circumflex Accent.

For instance (using Windows Powershell; please note that my AltCodes.ps1 script is applied merely do display Unicode names ans UTF-8 values of used characters):

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

Viewport from Powershell_ISE window:

combining circumflex

Community
  • 1
  • 1
JosefZ
  • 28,460
  • 5
  • 44
  • 83