macOS Serial Number Decoder
Decode Apple device serial numbers to extract manufacturing information, dates, and model details.
Quick Start
When given a serial number, follow this process:
- Validate the serial number format (12 alphanumeric characters for post-2010 devices)
- Parse each segment according to the structure below
- Decode the manufacturing location, date, and model
- Report findings in a clear summary
Serial Number Structure
Apple devices post-2010 use 12-character serial numbers:
[1-3] [4-5] [6-8] [9-12]
│ │ │ │
│ │ │ └─ Model number
│ │ └─ Unique identifier
│ └─ Year & week of manufacture
└─ Manufacturing location
Example: C02L13ECF8J2
| Segment |
Characters |
Value |
Meaning |
| Location |
1-3 |
C02 |
China (specific city) |
| Year/Week |
4-5 |
L1 |
2014, Week 1 |
| Unique ID |
6-8 |
3EC |
Device identifier |
| Model |
9-12 |
F8J2 |
Model number |
Manufacturing Location Codes
Decode the first 3 characters to identify the factory:
United States
International Locations
RN - Mexico
CK - Cork, Ireland
VM - Foxconn, Czech Republic
SG, E - Singapore
MB - Malaysia
PT, CY - Korea
EE, QT, UV - Taiwan
China (Multiple Locations)
FK, F1, F2, W8, DL, DM, DN, YM, 7J, 1C, 4H, WQ, F7
C0, C3, C7 - Specific cities
Special
Manufacturing Date Decoding
Year (4th Character)
| Character |
Period |
C |
First half 2010 |
D |
Second half 2010 |
E |
First half 2011 |
F |
Second half 2011 |
G |
First half 2012 |
H |
Second half 2012 |
J |
First half 2013 |
K |
Second half 2013 |
L |
First half 2014 |
M |
Second half 2014 |
N |
First half 2015 |
P |
Second half 2015 |
Q |
First half 2016 |
R |
Second half 2016 |
S |
First half 2017 |
T |
Second half 2017 |
V |
First half 2018 |
W |
Second half 2018 |
X |
First half 2019 |
Y |
Second half 2019 |
Z |
2020+ |
Week (5th Character)
| Character |
Week Number |
1-9 |
Weeks 1-9 |
C |
Week 10 |
D |
Week 11 |
F |
Week 12 |
G |
Week 13 |
H |
Week 14 |
J |
Week 15 |
K |
Week 16 |
L |
Week 17 |
M |
Week 18 |
N |
Week 19 |
P |
Week 20 |
Q |
Week 21 |
R |
Week 22 |
T |
Week 23 |
U |
Week 24 |
V |
Week 25 |
W |
Week 26 |
X |
Week 27 |
Y |
Week 28 |
Important: For second half of the year (characters D, F, H, K, M, P, R, T, V, X, Z), add 26 to the week number.
Output Format
Always present decoded information in this structure:
## Serial Number Analysis
**Serial Number**: [FULL SERIAL]
### Manufacturing Details
- **Location**: [CODE] - [COUNTRY/FACTORY]
- **Year**: [YEAR]
- **Week**: [WEEK NUMBER]
- **Estimated Date**: [APPROXIMATE DATE]
### Device Information
- **Unique ID**: [ID]
- **Model Code**: [MODEL]
- **Refurbished**: [YES/NO]
### Notes
[Any relevant observations about the device origin or age]
Examples
Example 1: Standard Decode
Input: C02L13ECF8J2
Output:
## Serial Number Analysis
**Serial Number**: C02L13ECF8J2
### Manufacturing Details
- **Location**: C02 - China (specific city)
- **Year**: 2014 (First half)
- **Week**: 1
- **Estimated Date**: January 2014
### Device Information
- **Unique ID**: 3EC
- **Model Code**: F8J2
- **Refurbished**: No
### Notes
Device manufactured in China during early 2014.
Example 2: Refurbished Device
Input: RM1K25ABC123
Output:
## Serial Number Analysis
**Serial Number**: RM1K25ABC123
### Manufacturing Details
- **Location**: RM - Refurbished device
- **Year**: 2013 (Second half)
- **Week**: 27 (25 + 26 = 51, adjusted to week 27 of second half)
- **Estimated Date**: December 2013
### Device Information
- **Unique ID**: ABC
- **Model Code**: 123
- **Refurbished**: Yes
### Notes
This is a refurbished device. Original manufacturing date may differ from refurbishment date.
Common Use Cases
- Security Assessments: Determine device age and origin for penetration testing
- Forensics: Establish device timeline and manufacturing provenance
- Asset Management: Track device lifecycle and warranty periods
- Red Teaming: Understand target hardware for macOS exploitation planning
Validation Checklist
Before reporting results, verify:
1---2name: macos-serial-number-decoder3description: Decode and analyze Apple device serial numbers to extract manufacturing location, date, and model information. Use this skill whenever you need to parse Apple serial numbers, investigate device origins, analyze hardware for security assessments, or understand when/where a Mac was manufactured. Trigger this for any 12-character alphanumeric Apple serial number analysis, device forensics, or hardware investigation tasks.4---56# macOS Serial Number Decoder78Decode Apple device serial numbers to extract manufacturing information, dates, and model details.910## Quick Start1112When given a serial number, follow this process:13141. **Validate** the serial number format (12 alphanumeric characters for post-2010 devices)152. **Parse** each segment according to the structure below163. **Decode** the manufacturing location, date, and model174. **Report** findings in a clear summary1819## Serial Number Structure2021Apple devices post-2010 use 12-character serial numbers:2223```24[1-3] [4-5] [6-8] [9-12]25 │ │ │ │26 │ │ │ └─ Model number27 │ │ └─ Unique identifier28 │ └─ Year & week of manufacture29 └─ Manufacturing location30```3132### Example: `C02L13ECF8J2`3334| Segment | Characters | Value | Meaning |35|---------|------------|-------|----------|36| Location | 1-3 | `C02` | China (specific city) |37| Year/Week | 4-5 | `L1` | 2014, Week 1 |38| Unique ID | 6-8 | `3EC` | Device identifier |39| Model | 9-12 | `F8J2` | Model number |4041## Manufacturing Location Codes4243Decode the first 3 characters to identify the factory:4445### United States46- `FC`, `F`, `XA`, `XB`, `QP`, `G8`4748### International Locations49- `RN` - Mexico50- `CK` - Cork, Ireland51- `VM` - Foxconn, Czech Republic52- `SG`, `E` - Singapore53- `MB` - Malaysia54- `PT`, `CY` - Korea55- `EE`, `QT`, `UV` - Taiwan5657### China (Multiple Locations)58- `FK`, `F1`, `F2`, `W8`, `DL`, `DM`, `DN`, `YM`, `7J`, `1C`, `4H`, `WQ`, `F7`59- `C0`, `C3`, `C7` - Specific cities6061### Special62- `RM` - Refurbished device6364## Manufacturing Date Decoding6566### Year (4th Character)6768| Character | Period |69|-----------|--------|70| `C` | First half 2010 |71| `D` | Second half 2010 |72| `E` | First half 2011 |73| `F` | Second half 2011 |74| `G` | First half 2012 |75| `H` | Second half 2012 |76| `J` | First half 2013 |77| `K` | Second half 2013 |78| `L` | First half 2014 |79| `M` | Second half 2014 |80| `N` | First half 2015 |81| `P` | Second half 2015 |82| `Q` | First half 2016 |83| `R` | Second half 2016 |84| `S` | First half 2017 |85| `T` | Second half 2017 |86| `V` | First half 2018 |87| `W` | Second half 2018 |88| `X` | First half 2019 |89| `Y` | Second half 2019 |90| `Z` | 2020+ |9192### Week (5th Character)9394| Character | Week Number |95|-----------|-------------|96| `1-9` | Weeks 1-9 |97| `C` | Week 10 |98| `D` | Week 11 |99| `F` | Week 12 |100| `G` | Week 13 |101| `H` | Week 14 |102| `J` | Week 15 |103| `K` | Week 16 |104| `L` | Week 17 |105| `M` | Week 18 |106| `N` | Week 19 |107| `P` | Week 20 |108| `Q` | Week 21 |109| `R` | Week 22 |110| `T` | Week 23 |111| `U` | Week 24 |112| `V` | Week 25 |113| `W` | Week 26 |114| `X` | Week 27 |115| `Y` | Week 28 |116117**Important**: For second half of the year (characters D, F, H, K, M, P, R, T, V, X, Z), add 26 to the week number.118119## Output Format120121Always present decoded information in this structure:122123```124## Serial Number Analysis125126**Serial Number**: [FULL SERIAL]127128### Manufacturing Details129- **Location**: [CODE] - [COUNTRY/FACTORY]130- **Year**: [YEAR]131- **Week**: [WEEK NUMBER]132- **Estimated Date**: [APPROXIMATE DATE]133134### Device Information135- **Unique ID**: [ID]136- **Model Code**: [MODEL]137- **Refurbished**: [YES/NO]138139### Notes140[Any relevant observations about the device origin or age]141```142143## Examples144145### Example 1: Standard Decode146147**Input**: `C02L13ECF8J2`148149**Output**:150```151## Serial Number Analysis152153**Serial Number**: C02L13ECF8J2154155### Manufacturing Details156- **Location**: C02 - China (specific city)157- **Year**: 2014 (First half)158- **Week**: 1159- **Estimated Date**: January 2014160161### Device Information162- **Unique ID**: 3EC163- **Model Code**: F8J2164- **Refurbished**: No165166### Notes167Device manufactured in China during early 2014.168```169170### Example 2: Refurbished Device171172**Input**: `RM1K25ABC123`173174**Output**:175```176## Serial Number Analysis177178**Serial Number**: RM1K25ABC123179180### Manufacturing Details181- **Location**: RM - Refurbished device182- **Year**: 2013 (Second half)183- **Week**: 27 (25 + 26 = 51, adjusted to week 27 of second half)184- **Estimated Date**: December 2013185186### Device Information187- **Unique ID**: ABC188- **Model Code**: 123189- **Refurbished**: Yes190191### Notes192This is a refurbished device. Original manufacturing date may differ from refurbishment date.193```194195## Common Use Cases196197- **Security Assessments**: Determine device age and origin for penetration testing198- **Forensics**: Establish device timeline and manufacturing provenance199- **Asset Management**: Track device lifecycle and warranty periods200- **Red Teaming**: Understand target hardware for macOS exploitation planning201202## Validation Checklist203204Before reporting results, verify:205- [ ] Serial number is exactly 12 characters206- [ ] All characters are alphanumeric207- [ ] Year character is valid (C-Z range)208- [ ] Week character is valid (1-9 or C-Y excluding vowels and S)209- [ ] Location code matches known patterns