replace endofline

Hi All,
I have text strings from a database the have been copied from a pdf file.
They contain E2 80 A8 characters at the end of the line ( I think they are utf8 End of Line)
How can I replace these with say a
so I can display correctly in an html page.

I have tried this but having a look at the hex of this it did not work.

t = ReplaceLineEndings(t, EndOfLine.Windows)

Tom

That is indeed the unicode LS (Line Separator) character, but ReplaceLineEndings doesn’t recognize it. This does work, however

t = ReplaceAll(t, &u2028, EndOfLine.Windows)

Thanks Tim,
works like a charm.

Tom