This problem is caused by the way Oracle (mis)handles character conversions between different character sets based on the original column length definition. When you define the size of a character type column in bytes, Oracle does not know how to do a conversion and bodges it. The solution is to always define the length of a character type in characters.
For a more in-depth explanation of the problem and how I figured this out have a look at http://www.rolfje..com/2008/11/04/transporting-oracle-chars-over-a-dblinkhttp://www.rolfje.com/2008/11/04/transporting-oracle-chars-over-a-dblink/
