The > symbol is used for output redirection, sending the standard output of a command to a file instead of the screen. For example, "DIR > listing.txt" saves the directory listing to a file. The | symbol is for piping (connecting command output to another command's input), ^ is the escape character, and --> is not a valid redirection operator.