From: Rahul Thathoo Date: 2010-10-01T07:35:10+09:00 Subject: Convert ellipsis to utf-8 Hi, I have a string consisting of 3 periods: "...". I want to convert it into a single utf-8 character http://www.fileformat.info/info/unicode/char/2026/index.htm I tried Iconv.iconv('utf-8', 'iso-8859-1', '...') but that didnt work... any clues?