I found a chart for translating ASCII into Binary and other codes at:
http://www.pcguide.com/res/tablesASCII-c.html
I know you can save text as binary, but I was wondering, is there a way to make a program that
will save text as binary but in a different binary format?
For an example,

A = 01000001
B = 01000010

But instead of that I would have it like this.

A = 00000001
B = 00000010

As you see that would make it so that you have to have a program specially designed to read it,
not just any word processor would do. So it would be a custom format. Can this be done? And if
so, how?
Thanks, August.
(P.S. I would want program only to be able to read A-Z and 0-9 only.)