Here's a UDF to remove the character
I made up this to determine the character which was copied into another cell.Function MyClean(Data) MyClean = Replace(Data, ChrW(&HE04C), "") End Function
Sub FindUnicode() For i = 1 To 128000 If InStr(1, ActiveCell, ChrW("&H" & Hex(i))) Then Exit For Next ActiveCell.Offset(, 1) = Hex(i) End Sub