A family of Microsoft word processing software products for creating web, email, and print documents.
I had a similar issue trying to get the numbers for bullet points.
Comment #5 in another thread (https://www.office-forums.com/threads/finding-chrw-codes.1872731/) has a helpful block of code which, if run in a VBA Macro in Excel, will print out a list of the ChrW codes along with their respective characters.
https://www.office-forums.com/threads/finding-chrw-codes.1872731/
Code:
Sub charactercodes()
Application.ScreenUpdating = False
Range("B1") = "ChrW CODE"
Range("C1") = "OUTPUT"
Rows("1:1").ShrinkToFit = True
A = 1 'CHARACTER CODE VALUE
CROW = 2 'CURRENT ROW #
CCOL = 2 'CURRENT COLUMN NUMBER
Cells.Select
With Selection
.NumberFormat = "@"
.HorizontalAlignment = xlCenter
.VerticalAlignment = xlCenter
.Font.Name = "ARIAL"
.Font.Size = 14
.RowHeight = 20
End With
Columns(1).ColumnWidth = 1
Columns(1).Interior.ColorIndex = 14
Columns(2).ColumnWidth = 10
Columns(3).ColumnWidth = 6
Do
Cells(CROW, CCOL) = A
Cells(CROW, (CCOL + 1)) = ChrW(A)
A = A + 1
CROW = CROW + 1
If CROW = 102 Then
CROW = 2
CCOL = CCOL + 3
Columns(CCOL - 1).ColumnWidth = 1
Columns(CCOL - 1).Interior.ColorIndex = 14
Columns(CCOL).ColumnWidth = 10
Columns(CCOL + 1).ColumnWidth = 6
End If
If A = 65001 Then
Exit Do
End If
Loop
Application.ScreenUpdating = True
End Sub