https://github.com/seayxu/stringconverter
Ascii<=> Hex
https://github.com/seayxu/stringconverter
Last synced: 7 months ago
JSON representation
Ascii<=> Hex
- Host: GitHub
- URL: https://github.com/seayxu/stringconverter
- Owner: seayxu
- Created: 2018-07-23T03:30:19.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2019-07-16T09:39:23.000Z (about 6 years ago)
- Last Synced: 2025-01-20T05:17:35.729Z (9 months ago)
- Language: C#
- Size: 51.8 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# StringConverter
Ascii <=> Hex String
Download from [here](dist/StringConverter.exe?raw=true)

# Hex String => Ascii
input:
```
30 31 32 33 34 35 36 37 38 39 0D 0A 41 42 43 44 45 46 47 48 49
```output:
```
0123456789
ABCDEFGHI
```# Ascii => Hex String
input:
```
0123456789
ABCDEFGHI
```output:
```
30 31 32 33 34 35 36 37 38 39 0D 0A 41 42 43 44 45 46 47 48 49
```