Skip to content

berkaygediz/ASCII-To-Binary

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ย 

History

8 Commits
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 

Repository files navigation

ASCII-To-Binary

A simple tool to convert ASCII characters to binary.

Example

  • ASCII to Binary:

    Enter the character: A
    Binary: 01000001
    
  • Binary to ASCII:

    Enter the binary string (8 digit): 01000001
    ASCII: 65 - Char: A
    

Compile and Run

  1. Compile with g++ or cl.exe:

    g++ -mconsole -o ascii_to_binary main.cpp ascii_to_binary.cpp
  2. Run the executable:

    ./ascii_to_binary.exe

License

This project is licensed under the Apache License 2.0 - see LICENSE for details.