![]() |
|
#1
|
||||
|
||||
![]()
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 |
#2
|
|||
|
|||
![]()
The Calculator App in Windows 10 can also do conversions between Hex & Decimal, as well as Octal & Binary.
Just open the Calculator App & select the PROGRAMMER option. Just click on the Hex line then use keypad & it will automatically show the result in the other number systems. I find a ready to use App easier than a macro - but I haven't really played with macros yet. |
![]() |
|
![]() |
||||
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 |