A well-known problem: When copying text fro MS Word into a textarea, the text\'s characters get converted to strange characters when saving it to database.
I was wonderi
The solution:
This does normally 1 work. If it does not work, your applpication is broken or the browser is broken or the clipboard is broken or MSWord is broken.
In any case, you can not fix MSWord nor the Clipboard, nor the browser server-side.
Instead ensure that the encoding the website is using can deal with the characters from the clipboard, and honor the encoding requests into your application have when you process input data.
1 Please see Handling character encodings in HTML and CSS how it works.