Apprendre
Les lettres sont remplacées par des symboles selon une clé donnée.
Symbol substitution codes replace letters with symbols (@, #, $, %, etc.) according to a provided key. Unlike alphabetic shifts, there's no predictable pattern—you must use the key exactly as given. The key may only cover some letters, with others following a different rule.
A=@, B=#, C=$, etc. (as specified in key)
- If A=@, B=#, C=$ then ABC = @#$
- If X=!, Y=?, Z=* then XYZ = !?*
- Decode #@$ using A=@, B=#, C=$ → BAC
Comment le reconnaître
- Message contains symbols not normally in words
- A key is provided mapping letters to symbols
- No predictable pattern—must use the key
Erreurs fréquentes
- Trying to find a pattern instead of using the key
- Confusing similar-looking symbols
- Misreading which symbol maps to which letter
Résolution étape par étape
Décodez '#@$' avec la clé : A=@, B=#, C=$
- Cherchez # dans la clé : B=#, donc # = B
- Cherchez @ dans la clé : A=@, donc @ = A
- Cherchez $ dans la clé : C=$, donc $ = C
Réponse: BAC