Symbol 190 in docx is getting converted to 3/4

Hi,
Please find attached the docx file. I need to convert the symabol 190 to space. For that I need the unicode for this symbol.

Regards
Rajesh

Hi Rajesh,

Thanks for your inquiry. Please use following code example to convert symbol (3/4) to space. Hope this helps you.

Document doc = new Document(MyDir + "Aspose1.docx");
doc.getRange().replace("" + (char)0xBE, " ", false, false); 
doc.save(MyDir + "Out.docx");