Logo on the right is for the Pigpen Cipher
Cryptography is an overarching field over trying to have secure and private communications, even in the presence of prying eyes.
The algorithm of how we get there.
There are multiple ways to represent text.
One of the most common ways for English is with the ASCII encoding, which all of the bellow examples are in.
ASCII is just a way to store our normal English language characters into data.
However, you can represent that data itself in different ways.
Binary, Octal, Decimal, Hexadecimal, and Base64
The data is still there, just represented to us differently. So I really wouldn't consider these a cipher
a:3 b:1
# Encryption RSA AES --- # Data Manipulation Bit Shifting/Rotation XOR
--- # Cryptography Tools <!-- Modern cryptographic methods are much more math oriented and complicated.
Most of them use some sort of key or certificate, and there are tools to manager those.
.PEM, .KEY, .CER, .P12, ... - OpenSSL