This is my code in word vba macro
Public sub as2uni() Dim rdcm As Range Set rdcm = ActiveDocument.Range With rdcm.Find .MatchCase = True rdcm.Select .Text = "0079" .Replacement.Text = "\U0BB2" .Execute , , , , , , , , , , wdRepl End with End sub I just want to replace the ASC to Unicode in ALL my document, how can I do that?