Quick converter
Type into any field — every unit in this category updates instantly.
Root font-size 16px
Common % → rem values
Click any row to open its dedicated page.
| % | rem |
|---|---|
| 4% | 0.04rem |
| 6% | 0.06rem |
| 8% | 0.08rem |
| 10% | 0.1rem |
| 12% | 0.12rem |
| 14% | 0.14rem |
| 16% | 0.16rem |
| 18% | 0.18rem |
| 20% | 0.2rem |
| 24% | 0.24rem |
| 28% | 0.28rem |
| 32% | 0.32rem |
| 36% | 0.36rem |
| 40% | 0.4rem |
| 44% | 0.44rem |
| 48% | 0.48rem |
| 56% | 0.56rem |
| 64% | 0.64rem |
| 72% | 0.72rem |
| 80% | 0.8rem |
| 96% | 0.96rem |
| 112% | 1.12rem |
| 128% | 1.28rem |
| 144% | 1.44rem |
| 160% | 1.6rem |
| 192% | 1.92rem |
| 224% | 2.24rem |
| 256% | 2.56rem |
Convert 192% to other units
Formula
rem = px ÷ root-font-size and px = rem × root-font-size. Browsers default the root font-size to 16px, so 1rem normally equals 16px unless the page (or the user's browser settings) changes it.
em works the same way, but relative to the parent element's font-size rather than the root — the numbers only match rem when nothing in the ancestor chain has resized the font.
pt is a print unit: 1pt = 1.333px, based on the fixed 96px-per-inch / 72pt-per-inch relationship browsers use.
Use it in code
Click to copy.