1
The data is from a bank Firebird
and even opening with official tools the characters do not come in the "format" br
, for example:
ÁGUA vem µGUA
PÃO vem PÆO
Find a website that provides a special character, for example µ
it returns the value of the character in decimal, octal, etc
:
Website: http://unicodelookup.com/#µ/1
In the above example the site returns the value decimal 181
for the character µ
. If we use the shortcut ALT+181
he returns Á
which is exactly the letter this code represents in the first example above. I tried to use var characters = Encoding.ASCII.GetChars(new byte[] { 181 });
but go back ?
instead of Á
.
My question is:
Is there a function that simulates the code generated by ALT+181
to return a character?
I accept response in c# or vb6
I added the Firebird tag, because it seems to me a problem that can be solved in the bank itself or during the connection, I’m not sure yet.
– Guilherme Nascimento