The most common way to create a Symbol object is by prefixing the string identifier with a colon:
:a_symbol # => :a_symbol
:a_symbol.class # => Symbol
Here are some alternative ways to define a Symbol, in combination with a String literal:
:"a_symbol"
"a_symbol"...