This happens mostly when you are copying a text from some text editor, like Word. In the transformation which is used to display the product details, the default setting for the description field is set to be HTML enconded:
<td><%# Eval("SKUDescription", true) %></td>
Please change it to:
<td><%# Eval("SKUDescription") %></td>