Convert % to pc
At the browser default root font size of 16 px, 1% = 0.01pc. Change the base below if your project uses a different root size.
Formula
pc = % × 0.01
% = pc × 100
Because % is relative, this ratio holds only at a 16 px base. If your project sets html { font-size: 62.5% } — a common trick that makes 1rem equal 10 px — set the base above to 10 instead.
Percent to PC conversion table
| % | pc |
|---|---|
| 8% | 0.08pc |
| 10% | 0.1pc |
| 12% | 0.12pc |
| 14% | 0.14pc |
| 16% | 0.16pc |
| 18% | 0.18pc |
| 20% | 0.2pc |
| 24% | 0.24pc |
| 28% | 0.28pc |
| 32% | 0.32pc |
| 36% | 0.36pc |
| 40% | 0.4pc |
| 48% | 0.48pc |
| 56% | 0.56pc |
| 64% | 0.64pc |
| 72% | 0.72pc |
| 80% | 0.8pc |
| 96% | 0.96pc |
| 128% | 1.28pc |
About %
For font size, a percentage is relative to the parent element’s font size, so 100% equals 16 px at the default. Like em, percentages compound through nesting.
About pc
A pica is 12 points, or 1/6th of an inch — 16 CSS pixels. It survives mainly in print layout and legacy stylesheets.
Which unit should you use?
| Property | Recommended unit | Why |
|---|---|---|
| Font size | rem | Scales with the user's browser font-size preference, which px ignores — an accessibility requirement. |
| Padding and margin | rem or em | rem for a consistent global rhythm; em when the spacing should track the component's own text size. |
| Borders and hairlines | px | You almost always want exactly one crisp pixel, not a value that scales. |
| Media query breakpoints | em | Historically the most reliable across browsers when the user zooms. |
| Print stylesheets | pt, cm, mm | These map to real physical measurements on paper. |
Frequently asked questions
What is 16% in pc?
16% equals 0.16pc at a 16 px root font size.
How do I convert % to pc?
Multiply the % value by 0.01. Going the other way, multiply the pc value by 100.
Does the root font size change the result?
Yes. One of these units is relative to the root font size, so changing it changes the conversion. Use the base control above to match your project.
Why does CSS use 96 pixels per inch?
It is a historical convention from early desktop displays that became the fixed CSS reference. It has nothing to do with your monitor's real pixel density — the browser scales CSS pixels to physical ones for you.