The data is from a Firebird
database and even opening with official tools the characters do not come in br
format, for example:
ÁGUA vem µGUA
PÃO vem PÆO
Find a site that, when entering a special character, for example µ
, returns me the value of the character in decimal, octal, etc
:
Website: link
In the example above, the site returns the value decimal 181
to the character µ
. If we use the ALT+181
shortcut it returns Á
which is exactly the letter that this code represents in the first example above. I tried to use var characters = Encoding.ASCII.GetChars(new byte[] { 181 });
but retonra ?
instead of Á
.
My question is:
Is there any function that simulates the code generated by ALT+181
to return a character?
I accept answer in c # or vb6