I need to convert the string to utf-8. How this can be done on linux platfom. Suppose string is "c3aa" it should be encoded to "ĂȘ". As i need it to implement it for vcard My vcard string contains :
BEGIN:VCARD^M
VERSION:2.1^M
N;CHARSET=UTF-8;ENCODING=QUOTED-PRINTABLE:;=C3=AA=74=65=64;;;^M
FN;CHARSET=UTF-8;ENCODING=QUOTED-PRINTAABLE:=C3=AA=74=65=64^M
TEL;CELL;PREF:75501945^M
END:VCARD^M
Please suggest. Thanks in advance