Convert ASCII value to a Binary value
I want to convert an ASCII value to a binary value using C# , ASP.NET
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Jan MontanoPosted Aug 16, 2007, 6:16 AM
int asciiValue = 12;
string binaryValue = Convert.ToString(ascii, 2);