views:

163

answers:

1

How to design an algorithm to convert a UTF-8 string to a unicode string?

+1  A: 

The commenters are right. Read http://en.wikipedia.org/wiki/Unicode and rephrase question.

UTF-8 is a ''represenation'' of unicode. You probably want to recode to some other interpretation, maybe Java Strings or Microsoft Visual C++ multibyte chracter strings...

towi