I would like to know how to convert from decimal values into Unicode and from Unicode back into decimal as I am interested in Cryptography.
Here's an example: unicode($) -> decimal(36)
Thank you
I would like to know how to convert from decimal values into Unicode and from Unicode back into decimal as I am interested in Cryptography.
Here's an example: unicode($) -> decimal(36)
Thank you
A decimal can be cast to a char and back:
decimal d = 0x2c6f;
char c = (char)d; //it is an upside down A, viz: Ɐ
char cc = '$';
decimal dd = (decimal)cc; //dd is now: 36