show/hide this revision's text 3 Clarification about code page 437.

ASCII does not define ê; the number 136 comes from the number for the circumflex in 8-bit encodings such as Windows-1252.

Can you verify that a small e with a circumflex (ê) is actually what is supposed to be stored in the Access database in this case? Perhaps U+02C6 U+0065 is the result of a conversion error, where the input is actually an e followed by a circumflex, or something else entirely. Perhaps your Access database has corrupt data in the sense that the designated encoding does not match the contents, in which case the .NET client might incorrectly parse the data (using the wrong decoder).

If this error is indeed introduced during the reading from the database, perhaps pasting some code or configuration settings might help.

In Code page 437, character number 136 is an e with a circumflex.

show/hide this revision's text 2 Clarification

What is "Extended ASCII"?

ASCII does not define ê, so this must be defined a different encoding, such as Windows-1252. And in what definition is ; the number 136 relevant? And is it decimal or hexadecimal? Determining this might help solve comes from the problemnumber for the circumflex in 8-bit encodings such as Windows-1252.

Also, can

Can you verify that a small e with a circumflex (ê) is actually what is supposed to be stored in the Access database in this case? Perhaps U+02C6 U+0065 is the result of a conversion error, where the input is actually an e followed by a circumflex, or something else entirely. Perhaps your Access database has corrupt data in the sense that the designated encoding does not match the contents, in which case the .NET client might incorrectly parse the data (using the wrong decoder).

If this error is indeed introduced during the reading from the database, perhaps pasting some code or configuration settings might help.

show/hide this revision's text 1

What is "Extended ASCII"? ASCII does not define ê, so this must be defined a different encoding, such as Windows-1252. And in what definition is the number 136 relevant? And is it decimal or hexadecimal? Determining this might help solve the problem.

Also, can you verify that a small e with a circumflex (ê) is actually what is supposed to be stored in the Access database in this case? Perhaps U+02C6 U+0065 is the result of a conversion error.