View Single Post
 
Old 03-10-2024, 03:29 PM
rollis13's Avatar
rollis13 rollis13 is offline Windows 11 Office 2016
Competent Performer
 
Join Date: Jan 2021
Location: Cordenons
Posts: 143
rollis13 will become famous soon enough
Default

Have a try to obtain its ascii code. If available you can then search for it in the web.
Select one of these characters then go to the Immediate window of VBE (Ctrl+G if not visible), paste this code and press Enter:

Code:
Debug.Print AscW(Selection.Text) & "  " & Selection.Text
Or you can try to detect its font name and code ... same as above but use code:

Code:
Debug.Print Selection.Font.NameAscii & " " & AscW(Selection.Text)
__________________
Difficult is not to know but to share what you know (Han Fei Tzu reworked)
Reply With Quote