Non-latin letters which get scrambled

Continuing the discussion from Paste and highlight:
Macro: Copy from web as linked RTF.kmmacros6 (26.4 KB)

It works great!
Except for those non-latin letters which get scrambled:

Like here:
… …
Source: Signalfelet i Skåne åtgärdat - DN.SE

url was: http://www.dn.se/nyheter/sverige/signalfelet-i-skane-atgardat/
title was: Signalfelet i Skåne åtgärdat

How can one avoid this ?

/
with best regards,
Omar K N
Stockholm, Sweden

Alright, I got feedback from the man at ComplexPoint, who pointed me into the right direction:

QUOTE:
I think the trick will probably be to find the place where, in an applescript, the macro uses:

textutil -format html -convert rtf -stdin -stdout | pbcopy -Prefer rtf
and insert an extra switch to handle non Anglo-Saxon characters

-inputencoding UTF-8
so that you get:

textutil -format html -convert rtf -inputencoding UTF-8 -stdin -stdout | pbcopy -Prefer rtf

.-.