Learn
Letters shift along their QWERTY keyboard row.
The keyboard cipher shifts letters within their QWERTY keyboard row. Q-W-E-R-T-Y-U-I-O-P form the top row, A-S-D-F-G-H-J-K-L the middle row, and Z-X-C-V-B-N-M the bottom row. Each letter shifts to an adjacent letter in its row, wrapping around at the end.
Top row: QWERTYUIOP, Middle row: ASDFGHJKL, Bottom row: ZXCVBNM. Shift right within each row.
- Shift 1: CAT -> V(C->V) S(A->S) Y(T->Y)
- Shift 1: DOG -> F(D->F) P(O->P) H(G->H)
How to recognize it
- Letters stay in their keyboard row
- Adjacent letters on keyboard
- Q->W, A->S, Z->X pattern
Common mistakes
- Not visualizing the keyboard layout
- Confusing which row a letter belongs to
- Forgetting row wrap-around (P->Q, L->A, M->Z)
Step-by-step walkthrough
Encode 'DOG' with keyboard shift +1 (shift right within each row)
- Keyboard rows: Top = QWERTYUIOP, Middle = ASDFGHJKL, Bottom = ZXCVBNM
- D is in middle row (ASDFGHJKL). Shift right by 1 → F
- O is in top row (QWERTYUIOP). Shift right by 1 → P
- G is in middle row (ASDFGHJKL). Shift right by 1 → H
Answer: FPH