Skip to content

Prints ascii decimal and hex values of input string.

Notifications You must be signed in to change notification settings

773517913/ASCII

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 

Repository files navigation

Print out decimal and hexadecimal values of input string characters.

Usage:

./ascii "Hello World!"

CHAR	DEC	HEX
'H'	72	0x48
'e'	101	0x65
'l'	108	0x6c
'l'	108	0x6c
'o'	111	0x6f
' '	32	0x20
'W'	87	0x57
'o'	111	0x6f
'r'	114	0x72
'l'	108	0x6c
'd'	100	0x64
'!'	33	0x21

About

Prints ascii decimal and hex values of input string.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages