A metric bearing number is a compact code for its type and size. This tool reads the ISO 15 designation, decodes the type and dimension series, expands the bore code into millimetres, and matches the boundary dimensions from a table of common bearings.
How it works
The number is read digit by digit. The first digit (or letter) is the bearing type. The second is the dimension series — larger series numbers mean a heavier bearing for the same bore. The final two digits are the bore code:
if code >= 04: bore = code * 5 (mm)
00 -> 10 mm 01 -> 12 mm 02 -> 15 mm 03 -> 17 mm
So 6204 decodes as: type 6 (deep-groove ball), series 2 (light), bore code 04
→ 20 mm bore. The outside diameter and width come from the standard boundary
table because they depend on both the bore and the series.
Tips and notes
- The four low bore codes (00–03) break the times-5 rule — memorise 10, 12, 15, 17 mm.
- Same last two digits, different series digit, means same bore but different OD
and load rating (
6204vs6304). - Boundary dimensions are standardised, so any-brand replacements of the same number fit; suffixes like 2RS or C3 describe seals and clearance, not size.
- This tool covers the common 6000/6200/6300 deep-groove families; other types share the same numbering logic.