Microsoft Office Forums

Go Back   Microsoft Office Forums > >

 
 
Thread Tools Display Modes
Prev Previous Post   Next Post Next
  #5  
Old 07-08-2024, 03:43 PM
Guessed's Avatar
Guessed Guessed is offline Identifying Concentric Square Loops Special Character for Find & Replace Windows 10 Identifying Concentric Square Loops Special Character for Find & Replace Office 2016
Expert
 
Join Date: Mar 2010
Location: Canberra/Melbourne Australia
Posts: 4,176
Guessed has a brilliant futureGuessed has a brilliant futureGuessed has a brilliant futureGuessed has a brilliant futureGuessed has a brilliant futureGuessed has a brilliant futureGuessed has a brilliant futureGuessed has a brilliant futureGuessed has a brilliant futureGuessed has a brilliant futureGuessed has a brilliant future
Default

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
Reply With Quote
 

Thread Tools
Display Modes


Similar Threads
Thread Thread Starter Forum Replies Last Post
Find-and-Replace Special Characters davidvargas72 Word VBA 8 01-28-2023 10:03 PM
Identifying Concentric Square Loops Special Character for Find & Replace Find/Replace of funny character WJSwanepoel Word 2 06-03-2020 01:58 AM
Identifying Concentric Square Loops Special Character for Find & Replace multiple find and replace in vba for special words kvnrao Word VBA 7 11-02-2018 06:28 PM
Identifying Concentric Square Loops Special Character for Find & Replace Infinite loops occurring in find and replace functions in word macro 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

Other Forums: Access Forums

All times are GMT -7. The time now is 05:56 AM.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2025, vBulletin Solutions Inc.
Search Engine Optimisation provided by DragonByte SEO (Lite) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
MSOfficeForums.com is not affiliated with Microsoft