Typography Converter

Quick answer

A typography converter changes a size between pixels, points, picas, inches and the relative CSS units em, rem and percent. Enter a value, choose its unit and the target unit, and set the base font size for the relative units. For example, at a 16 pixel base, 1em is 16 pixels.

Updated 2026-09-09By Shakeel MuzaffarReviewed by Prof. Dr. Khalil Mudassar, PhD
Try
Converters
The size value to convert.
The base font size for em, rem and percent. Default 16 pixels.
Result
--
In pixels--
In points--

Calculations run in your browser. Inputs are not sent to our servers; anything you Save stays in this browser only.

Saved results (0)

How to Use the Typography Converter

  1. Enter the value you want to convert.
  2. Choose the from unit and the to unit.
  3. Set the base font size if you use em, rem or percent (default 16px).
  4. Read the result, plus pixels and points.

Here is what each result means:

ResultWhat it means
ResultThe size converted to your chosen unit.
In pixelsThe size in pixels, the base for the maths.
In pointsThe size in points, common in print and design.

What Is a Typography or CSS Unit?

Typography and web design use several units to describe text and layout sizes. Some are absolute, with a fixed real-world size, and some are relative, scaling with a base font size. Knowing how they relate helps you move a design between print and screen, or between a mock-up in points and a stylesheet in pixels.

The absolute units are pixels, points, picas, inches, centimetres and millimetres. On the web these are tied together by a fixed reference of 96 pixels per inch, so 1 inch is 96 pixels, 1 point is one seventy-second of an inch, and 1 pica is 12 points. A point, the classic print unit, works out to about 1.333 pixels at this reference.

The relative units are em, rem and percent, and they depend on a base font size. At the common browser default of 16 pixels, 1em and 1rem are both 16 pixels, and 100 percent is also 16 pixels. Change the base and these scale with it, which is what makes them so useful for responsive, accessible designs that adapt to the reader's settings.

This converter bridges every unit through the pixel. It turns your value into pixels, using the base font size for the relative units, then into whichever unit you choose. Setting the right base font size is the key to getting em, rem and percent conversions to match your stylesheet.

How Does the Typography Converter Work?

It converts through the pixel, at 96 pixels per inch.

Idea: value in pixels = value x (pixels per from-unit); result = pixels / (pixels per to-unit). For em, rem and percent, one unit equals the base font size.
  1. Your value is turned into pixels, using 96 per inch for absolute units.
  2. For em, rem and percent, the base font size sets how many pixels each unit is worth.
  3. Dividing by the target unit's pixel value gives the result.

For the number side, see the base converter and the cm to inches converter.

Typography Conversion Example

Convert 16px to points, at a 16px base.

Result: 16 pixels is 12 points, since a point is 1.333 pixels. At the same 16px base, 1em and 1rem are both 16 pixels, and 100 percent is 16 pixels too.

Absolute Units and Their Value in Pixels

Absolute units are fixed at 96 pixels per inch.

UnitIn pixels
Pixel (px)1
Point (pt)1.3333
Pica (pc)16
Inch (in)96
Centimetre (cm)about 37.80
Millimetre (mm)about 3.780

A pica is 12 points, and a point is one seventy-second of an inch, so an inch holds 72 points or 6 picas. These print units map cleanly onto pixels through the 96-per-inch reference the web uses.

Comparing Absolute and Relative Units

The two kinds of unit behave differently when the base size changes.

KindUnitsScales with base?
Absolutepx, pt, pc, in, cm, mmNo
Relativeem, rem, percentYes

Absolute units stay the same size whatever the base, while relative units grow and shrink with it. That is why em, rem and percent are preferred for accessible design: if a reader increases their default text size, relative units scale up with it, and fixed pixel sizes do not.

What Affects the Converted Value

The Two Units

The ratio between the from-unit and to-unit sets the result; absolute units are fixed at 96 DPI.

The Base Font Size

em, rem and percent all depend on the base, so setting it correctly is essential.

The 96-DPI Reference

The web assumes 96 pixels per inch; print at other resolutions would differ.

When to Use a Typography Converter

Web Design

Turn a design in points or pixels into em or rem for a stylesheet.

Print to Screen

Convert print sizes in points and picas into pixels.

Accessibility

See how a fixed pixel size compares with a relative one at a given base.

Common Mistakes

1. Forgetting the Base Size

em, rem and percent are meaningless without a base font size. Set it to match your CSS.

2. Confusing Em and Rem

Here both use the base you set. In real CSS, em is relative to the parent while rem is relative to the root.

3. Assuming a Different DPI

The web uses 96 pixels per inch. Print at 72 or 300 DPI would give different pixel counts.

4. Mixing Points and Pixels

A point is 1.333 pixels, not one. Treating them as equal distorts sizes.

5. Wrong Direction

Check which unit is the from and which is the to; swapping them inverts the result.

Accuracy and Limitations

Conversions use the web standard of 96 pixels per inch and the base font size you set.

What it calculates accurately

  • Conversion between all nine units
  • Absolute units at 96 DPI
  • em, rem and percent at your base size

What it does not do

  • Model em relative to a parent, unlike real CSS
  • Use a print DPI other than 96
  • Handle viewport units like vw and vh
  • Account for line-height or letter spacing

How We Convert Typography Sizes

Method
Turn the value into pixels at 96 DPI, using the base font size for em, rem and percent, then into the target unit.
Inputs used
A value, a from-unit, a to-unit and a base font size.
Base unit
The pixel, at 96 pixels per inch.
Assumptions
96 DPI; em, rem and percent relative to the base you set; default base 16px.
Rounding
Results to seven significant figures.

Frequently Asked Questions

How many pixels is 1 point?

About 1.333 pixels, at the web standard of 96 pixels per inch. A point is one seventy-second of an inch, and an inch is 96 pixels.

How do you convert px to em?

Divide the pixel value by the base font size. At a 16 pixel base, 24 pixels is 24 divided by 16, which is 1.5em.

What is the difference between em and rem?

In CSS, em is relative to the parent element's font size, while rem is relative to the root. This converter uses the base you set for both.

What is the default base font size?

16 pixels in most browsers, which is why 1rem is usually 16 pixels. You can change the base here to match your own stylesheet.

How many points are in a pixel?

A pixel is 0.75 points, at 96 pixels per inch. Equivalently, a point is 1.333 pixels, and 16 pixels is 12 points.

Why does the web use 96 DPI?

It is a long-standing reference that ties CSS absolute units to pixels. It does not mean your screen is exactly 96 dots per inch, only that the units use that ratio.

What is a pica?

A pica is a print unit equal to 12 points, or 16 pixels at 96 DPI. Six picas make an inch. It is used in typography and layout.

Should I use px, em or rem in CSS?

Relative units like rem scale with the reader's settings, which is better for accessibility. Pixels are fixed. Many designs use rem for text and px for fine details.

Is my information saved?

No. The calculation runs in your browser and nothing you enter is stored or sent anywhere, unless you choose Save, which keeps the result only on this device.

Sources

Related Calculators

Looking for more converters?

Explore all converters

This converter changes a typography or CSS size between pixels, points, picas, inches, centimetres, millimetres and the relative units em, rem and percent. It uses the web standard of 96 pixels per inch. The relative units depend on a base font size, which you can set; the default is 16 pixels, the browser default. Spotted an error? Let us know.

Creator

shakeel-Muzaffar
Founder & Editor-in-Chief at  ~ Web ~  More Posts

Shakeel Muzaffar is the Founder and Editor-in-Chief of MultiCalculators.com, bringing over 15 years of experience in digital publishing, product strategy, and online tool development. He leads the platform's editorial vision, ensuring every calculator meets strict standards for accuracy, usability, and real-world value. Shakeel personally oversees content quality, formula verification workflows, and the platform's commitment to publishing tools that are genuinely useful for students, professionals, and everyday users worldwide.