Start working in Oracle: Connect to Oracle system, Create a new user with password having special characters.
Commands:
sqlplus
show user
CREATE USER john IDENTIFIED BY "john@123";
SELECT USERNAME FROM DBA_USERS;
grant create session to john;
connect john