Have you tried using Word manually to create a doc file with the desired characters in it? If you do that and inspect the contents of the doc file, you'll probably learn what you need to know. I'm no expert on this, but I have had occasion to inspect hex dumps of Word doc files that contained non-ASCII character data. It's very strange.
If you are mixing "smart quotes" and "wingdings", you may actually end up with UTF-16LE encoding of unicode in the doc file. Maybe the OLE module stuff will handle the gory details for you so you don't need to worry about it too much, and all you might need to do is provide the Unicode code-points for the characters you want (that is, specify them with hex notation, e.g.: "\x{201C}...\x{201D}" for a string surrounded by single-quotes).
I'm just guessing at that, but if nothing else has worked yet, it's worth a try. In case it helps, there's a handy little tool here that I copied from a posting on the perl-unicode mail list, to search for various characters in the unicode table.
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.