https://github.com/berkaygediz/ascii-to-binary
🔄 Converts between ASCII and Binary seamlessly.
https://github.com/berkaygediz/ascii-to-binary
ascii binary binary-to-text char-to-ascii conversion converter windows
Last synced: about 2 months ago
JSON representation
🔄 Converts between ASCII and Binary seamlessly.
- Host: GitHub
- URL: https://github.com/berkaygediz/ascii-to-binary
- Owner: berkaygediz
- License: gpl-3.0
- Created: 2023-06-25T00:36:40.000Z (almost 2 years ago)
- Default Branch: master
- Last Pushed: 2025-02-12T17:53:24.000Z (4 months ago)
- Last Synced: 2025-04-10T21:09:12.684Z (about 2 months ago)
- Topics: ascii, binary, binary-to-text, char-to-ascii, conversion, converter, windows
- Language: C++
- Homepage:
- Size: 37.1 KB
- Stars: 4
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# ASCII-To-Binary
A simple tool to convert ASCII characters to binary.
## Example
- **ASCII to Binary**:
```plaintext
Enter the character: A
Binary: 01000001
```- **Binary to ASCII**:
```plaintext
Enter the binary string (8 digit): 01000001
ASCII: 65 - Char: A
```## Compile and Run
1. Compile with `g++` or `cl.exe`:
```bash
g++ -mconsole -o ascii_to_binary main.cpp ascii_to_binary.cpp
```2. Run the executable:
```bash
./ascii_to_binary.exe
```## License
This project is licensed under the Apache License 2.0 - see [LICENSE](LICENSE) for details.