Field NotesPairs of symbols separated by spaces, like 4D 4A 51 55. Each pair only ever uses the ten digits 0–9 and the six letters A–F.
Step 1 — Turn each pair into an ordinary number
Each pair has two symbols. In this system, the letters A–F aren't real letters — they're just extra digits, standing in for the numbers 10 through 15 (there aren't enough plain digits to count that high with just one symbol, so letters fill the gap):
To read a pair: take the first symbol's value and multiply it by 16, then add the second symbol's value. That gives you one plain number between 0 and 255.
Example — reading the pair "4D"
First symbol: 4 (just means 4)
Second symbol: D (from the table above: means 13)
4 × 16 = 64, then 64 + 13 = 77
So "4D" stands for the number 77.
Step 2 — Undo the shift
When this locker seals a message, it adds a chosen number (the "dial offset") to every one of these values. To undo it, do the opposite: pick a small number to try, and count backward by that amount from each value you worked out in Step 1. If counting back takes you past 0, wrap around by adding 256 back on.
Example — trying offset 5
Value from Step 1: 77
Count back 5: 77, 76, 75, 74, 73, 72
Result: 72
Step 3 — Turn the number into a letter
Every capital letter has a fixed number, starting at A=65 and counting up in order:
| A | 65 | F | 70 | K | 75 | P | 80 | U | 85 | Z | 90 |
| B | 66 | G | 71 | L | 76 | Q | 81 | V | 86 | | |
| C | 67 | H | 72 | M | 77 | R | 82 | W | 87 | | |
| D | 68 | I | 73 | N | 78 | S | 83 | X | 88 | | |
| E | 69 | J | 74 | O | 79 | T | 84 | Y | 89 | | |
Find your Step 2 result in this chart to get the letter. If none of the results land near this 65–90 range at all, the offset you guessed is probably wrong — try a different number and start over from Step 2.
Full Worked Example — offset 5
Sealed: 4D 4A 51 55
Step 1 (pair → number): 4D→77, 4A→74, 51→81, 55→85
Step 2 (count back 5): 77→72, 74→69, 81→76, 85→80
Step 3 (number → letter): 72=H, 69=E, 76=L, 80=P
Unsealed: HELP