SP to PX Converter
Convert Android text sizes into pixels and see how density plus accessibility font scaling changes the final rendered value.
SP to PX Converter
Convert Android scale-independent text sizes into pixels while factoring in both screen density and accessibility font scaling.
16sp x (160/160) x 1 = 16px
Pixel multiplier against the mdpi baseline.
Useful for Android device and asset density checks.
Quick reference table
Common values converted using your active DPI.
| sp | px |
|---|---|
| 4sp | 4px |
| 8sp | 8px |
| 12sp | 12px |
| 16sp | 16px |
| 20sp | 20px |
| 24sp | 24px |
| 32sp | 32px |
| 44sp | 44px |
| 48sp | 48px |
| 64sp | 64px |
More Mobile Dev Tools
DP to PX Converter
Convert Android density-independent pixels into device pixels.
PX to DP Converter
Turn raw pixel measurements back into Android dp units.
PX to SP Converter
Reverse Android text pixels into scale-independent units.
iOS Points to Pixels
Convert iOS points into @1x, @2x, and @3x asset pixels.
Why sp exists
Android uses sp for text so the UI can honor a person's font-size preference. That makes sp the better choice for labels, body copy, and headings when accessibility matters.
Great for handoff
Designers and developers can use this tool to compare typography specs across devices, validate screenshots, and discuss readable minimums before implementation.