How to get ascii code for special symbols (!@#$%^&*) in blueprism.

Sachin_Kharmale

Active Member
Hi Rajesh,

If you want to get ascii code for any character in blue prism then you can get ascii value with the help of blue prism code stage.

Just take one code stage in object and put bellow c# code.

C#:
 String AsciiVal = "";
 Byte[] b = Encoding.ASCII.GetBytes(""+'@');
 AsciiVal = ""+b[0];

Note- Replace @ with character that you want to get ascii code .
I hope it will help you..!
 
Top