Re: utf8 character set error
Posted by: KimSeong Loh
Date: March 06, 2005 07:24PM

Since you are using utf8, you should find out how utf8 encoding works. The value 9d is not a valid characters in utf8.

Valid utf8 character values are
1 byte : 0xxxxxxx
2 bytes : 110xxxxx 10xxxxxx
3 bytes : 1110xxxx 10xxxxxx 10xxxxxx

9d is 10011101 in binary, this is only valid as the subsequent byte in utf8, not a valid character by itself.

Options: ReplyQuote


Subject
Views
Written By
Posted
3503
March 05, 2005 08:56PM
Re: utf8 character set error
2867
March 06, 2005 07:24PM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.