Typography spans print and screen units that all mean slightly different things. This converter turns any font size into points, pixels, em, rem, and percentage at once, so you can move between a design tool, a stylesheet, and a print spec without guessing.
How it works
The two absolute units are linked by the CSS reference resolution. CSS defines 1px as 1/96 inch and 1pt as 1/72 inch, which gives the fixed relationship:
1pt = 96 / 72 px = 1.3333… px
1px = 72 / 96 pt = 0.75 pt
The three relative units depend on a base. rem is relative to the root font
size (the <html> element), em is relative to the current element’s font
size, and percent is just em expressed out of 100. With the common 16px base:
1rem = 1em = 100% = base px
px = rem × base
rem = px / base
The tool first converts your input to absolute pixels, then derives every other unit from there using the base you set.
Example and notes
With a 16px base, a 24px heading is 18pt, 1.5rem, 1.5em, and 150% — all
the same rendered size. Change the base to 20px and that same 24px becomes 1.2rem
instead, which is why rem-based layouts scale cleanly when you adjust the root.
Prefer rem for page-level sizing so a single root change rescales everything, and reserve em for sizes that should track their local context, like padding that grows with its element’s text. Avoid mixing many nested em values, since they multiply and quickly drift from what you intended.