Re: FW: Invalid unicode character, not found

From: Lars Marius Garshol (larsga@garshol.priv.no)
Date: Mon Aug 27 2001 - 03:54:07 EDT


* Benjamin Israel
|
| I would like to know the character equivalent of 0x1acbbc, since I
| could not find it on the URL
| http://www.unicode.org/charts/charindex.html since I have an exception
| in my code as :
|
| org.xml.sax.SAXParseException: An invalid XML character (Unicode:
| 0x1acbbc) was found in the element content of the document.
| at
| org.apache.xerces.framework.XMLParser.reportError(XMLParser.java:1196)

The error is most likely that you are trying to parse an XML document
that uses some legacy 8-bit encoding (ISO 8859-x, ...), but have
failed to declare the encoding you use.

The parser will then assume that the document is written in UTF-8 and
attempt to decode it accordingly. Probably the first non-ASCII
characters of your document happen to decode as 0x1acbbc when
interpreted as UTF-8.

Try inserting

<?xml version="1.0" encoding="your-encoding-here"?>

at the very beginning of your document.

--Lars M.



This archive was generated by hypermail 2.1.2 : Mon Aug 27 2001 - 05:26:26 EDT