How to replace "®" "™" "with Spaces in UNIX

do U know how to replace the registered trademark "�" symbol or
trade Mark "�" "with Spaces in UNIX

sed -e 's/\"�\"/ /g' -e 's/\"�\"/ /g' < file

This is actually will not work because the data when using vi in UNIX it shows up as
"View\342\204\242 Accessory" for "View� Accessory" in Windows.

# less trade
    �
   <99>
# sed 's/[ ]/THIS IS TRADEMARK/;s/�/THIS IS REGISTRED TM/' trade
 THIS IS REGISTRED TM
THIS IS TRADEMARK
 
 
  • -->
    in this example for TM symbol equal to [ ] symbol and for this use to ALt+153 so this actually [Alt+153]

regards
ygemici

Actually for /�/ REGISTRED TM

this will work

sed 's/\256/ /' < REGISTRED.1