Hi Jason,
I am able to get the underlying code and symbol font of the inserted symbol from INSERT SYMBOL in docx.
Is there any way to get the exact symbol in the given font..
I have this piece of code to get the symbol code and its font.
R.Sym sym = ((R.Sym) ((JAXBElement) symbolObject).getValue());
String symbol = sym.getChar();
String font = sym.getFont();
If i insert "-->" (arrow) from Wingdings in docx, from the code ...