![]() |
#5
|
||||
|
||||
![]()
You could also use a macro to find out the ascii or asciiWide values to avoid having to use other websites to convert between hex and decimal
Code:
Sub WhatChar() Dim aChar As Range, sReport As String sReport = "Char" & vbTab & "Asc" & vbTab & "AscW" & vbCr For Each aChar In Selection.Range.Characters sReport = sReport & aChar & vbTab & Asc(aChar) & vbTab & AscW(aChar) & vbCr Next aChar MsgBox sReport, vbOKOnly, "Selected characters" End Sub Sub InsertUnicodeChar() Selection.Range.InsertAfter ChrW(8203) End Sub
__________________
Andrew Lockton Chrysalis Design, Melbourne Australia |
Thread Tools | |
Display Modes | |
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
Find-and-Replace Special Characters | davidvargas72 | Word VBA | 8 | 01-28-2023 10:03 PM |
![]() |
WJSwanepoel | Word | 2 | 06-03-2020 01:58 AM |
![]() |
kvnrao | Word VBA | 7 | 11-02-2018 06:28 PM |
![]() |
Thefirstfish` | Word VBA | 5 | 04-06-2017 07:18 PM |
Find & replace a character in a particuler position | klllmmm | Excel | 1 | 07-27-2016 11:27 PM |