Skip to content

Desktop C#/.Net application for encoding and decoding different types of data

Notifications You must be signed in to change notification settings

mslowin/NumbersConverter

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

28 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Desktop application for encoding and decoding different types of data

Important: To distinguish between encoding and decoding it is important to have the keyboard focus on the data to be converted (for encoding focus must be in the upper text box and for decoding in the bottom one).

Encoding tutorial: choose desired output type (bottom combo box) and write input data in the upper text box (Encoding doesn't require choosing input data type). When the upper text box has keybord focus press ENTER.

Decoding tutorial: choose input data type (bottom combo box) and output data type (upper combo box). Put your input data in the bottom text box, make sure it has keyboard focus and then press ENTER.

Examples of use:

ENCODING

  1. Encoding single decimal to binary:
    Dec_to_bin

  2. Encoding ASCII string to binary:
    ASCII_to_bin

  3. Encoding single decimal to hexadecimal:
    Dec_to_hex

  4. Encoding ASCII to hexadecimal:
    ASCII_to_hex

  5. Encoding single decimal to base64:
    Dec_to_base64

  6. Encoding ASCII to base64:
    ASCII_to_base64

DECODING

  1. Decoding binary to single decimal:
    Bin_to_dec

  2. Decoding binary to ASCII:
    Bin_to_ASCII

  3. Decoding hexadecimal to single decimal:
    Hex_to_dec

  4. Decoding hexadecimal to ASCII:
    Hex_to_ASCII

  5. Decoding base64 to single decimal:
    Base64_to_dec

  6. Decoding base 64 to ASCII:
    base64_to_ASCII

About

Desktop C#/.Net application for encoding and decoding different types of data

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages