More people need to know about the "tabular numbers" feature that modern fonts have

Use it to make numbers to line up with a UI font (or anything not monospace)

CSS: font-feature-settings: tnum
SwiftUI: .font(.body.monospacedDigit())

@kdrag0n
Does Android have that?
Monospace tabular numbers in Android TextViews

I have a custom font which has variable-width numeric glyphs by default, and I would like to use the font's monospace tabular numbers feature in an Android TextView so that numbers align vertically.

Stack Overflow