pt (point) is a common font size unit in the classic typesetting context. Many document editors, presentation software, brand manuals and font specifications like to use pt to express text size. px (pixel) is more commonly used in web pages, design drafts and CSS annotations. It emphasizes the reference size in the context of screen and interface.
It is important to note that px in CSS is not always equal to a physical pixel on the device, it is closer to the "reference pixel". Therefore, the 16 px on the design drawing, the 16 px in the web page style, and the final visual size displayed on the mobile screen will still be affected by scaling, density, and platform implementation.
dp and sp are more common in the Android interface context. Generally speaking, dp is more biased towards interface layout size, while sp is more biased towards font size and will consider system font scaling. However, this page is not a runtime simulator. It will not read the density or font scaling of a certain mobile phone. It just puts these units on a unified reference ruler for static comparison.
This page currently uses a fixed reference relationship: 1 px = 0.75 pt, 1 pt ≈ 1.333 px, and maps dp and sp to the same reference datum, which facilitates rapid unification of design drafts, specification documents, and cross-end communication. It solves the problem of "how to compare and write documents", not the problem of "how large the final display size must be on the device".
If your work goal is real printing size, paper millimeter accuracy, browser rem/em system or Android real machine font scaling verification, then you should use the corresponding length tools, design software or real device testing instead. This page is better suited for specification drafting, early review, and delivery documentation.