WebToolsPlanet
Converter Tools

EM to Point Converter

Convert EM values to CSS point (pt) units. Set the parent font size (default 16px) — the formula is: pt = em × base × 0.75.

Last updated: May 21, 2026

Client-Side Processing
Input Data Stays on Device
Instant Local Execution

Find this tool useful? Support the project to keep it free!

Buy me a coffee

What is EM to Point Converter?

EM units are relative to the parent element's font size in pixels. Points (pt) are an absolute CSS unit where 1pt = 96/72 px ≈ 1.333px. Converting EM to pt requires knowing the base px size that 1em resolves to.

The formula is: **pt = em × base × 0.75** (since 1px = 0.75pt). At the 16px default, 1em = 12pt — the classic body text size in print.

How to Use EM to Point Converter

1

Set the parent font size (default 16px)

2

Enter EM values, comma or newline separated

3

Copy the pt output or use the reference table

Common Use Cases

  • Developers writing @media print stylesheets who need to express em-based sizes as pt.
  • Designers translating screen EM sizes to typographic points for print production.
  • Front-end engineers auditing print CSS that mixes em and pt values.

Example Input and Output

Convert common EM values to pt at the default 16px base.

EM values
0.75
1
1.25
1.5
PT output
0.75em → 9pt
1em → 12pt
1.25em → 15pt
1.5em → 18pt

Privacy

All conversions run in your browser. No data is sent to any server.

Frequently Asked Questions

Why is 1em = 12pt at the default base?
1em at 16px base = 16px. 16px × 0.75 = 12pt. This is why 12pt is the universal default body text size — it matches 1em at the browser default font size.