I’m creating a program to transfer text from a word document to a database. During some testing I came across some text inside a textbox after setting it’s text to a table cell range as follows:
textBox1.Text = oDoc.Tables[1].Cell(1, 3).Range.Text;
What appeared in the form was:

What wasn’t expected was the dot at the end of the text and I have no idea what it is supposed to represent. The dot can be highlighted but if you try and copy and paste it nothing appears. You can delete the dot manually. Can anyone help me identify what this is?
The identification bit shouldn’t be too hard:
That will give you the Unicode UTF-16 code unit for that character… you can then find out what it is on the Unicode web site. (I usually look at the Charts page or the directory of PDFs and guess which chart it will be in based on the numbering – it’s not ideal, and there are probably better ways, but it’s always worked well enough for me…)
Of course when you’ve identified it you’ll still need to work out what the heck it’s doing there… does the original Word document just have “HOLD”?