ascii control characters

hexadecimal dump of ascii charaters

Control characters may be described as doing something when the user inputs them, such as code 3 (End-of-Text character, ETX, ^C) to interrupt the running process, or code 4 (End-of-Transmission character, EOT, ^D), used to end text input on Unix or to exit a Unix shell. These uses usually have little to do with their use when they are in text being output.

The control characters in ASCII still in common use include:

from man ascii

use od to see the hex value for characters

od -t a -t x1 -t c

e.g.

> printf '\0\a\b\n\r\t\v ' | od -t a -t x1 -t c
0000000  nul bel  bs  nl  cr  ht  vt  sp
          00  07  08  0a  0d  09  0b  20
          \0  \a  \b  \n  \r  \t  \v
0000010

A web tool to find unusual characters quickly

https://www.soscisurvey.de/tools/view-chars.php