Tagged Questions
2
votes
5answers
5k views
Convert text to 7-bit ASCII from command-line
I'm on OS X 10.5.5 (though it does not matter much I guess)
I have a set of text files with fancy characters like double backquotes, ellipsises ("...") in one character etc.
I need to convert these ...
0
votes
1answer
515 views
Converting special characters into 7 bit data for a PDU string in C#
I'm trying to create a PDU encoder which requires me to:
Convert each char in a string into an ASCII value
Convert the ASCII value into 7-bit binary
Using this method - Converting 7-bit into 8 bit.
...