What Browser Am I Using?

Reading… Reading what your browser reports about itself.

Reading what this browser reports…

Screen, CPU, graphics, refresh rate and the rest are on the full system info page, with a copy-as-text button. The raw string all of this is read from is on the user agent page.

Where this answer comes from

Two places, and which one is used matters. The old way is the user agent string, a line of text every browser sends with each request. It is thirty years of accumulated compatibility hacks — which is why Chrome, Edge, Opera, Vivaldi, Brave and Samsung Internet all describe themselves as “Mozilla/5.0” and all contain the word “Chrome”, and why every browser on a Mac or an iPhone contains the word “Safari”. Detection that reads the string in the wrong order confidently reports Edge users as Chrome users, which is the single most common fault in pages like this one. This page checks the specific browsers first and treats Chrome and Safari as the fallbacks they have to be.

The newer way is User-Agent Client Hints, a structured API that returns the browser's brand and version as data instead of prose. Chromium-based browsers support it; Safari and Firefox do not. Where it is available this page prefers it, because it is the source browsers keep accurate while they freeze and reduce the old string. It also contains a deliberate trap: the list of brands always includes one fake entry with randomised punctuation, such as “Not_A Brand” or “Not(A:Brand”, precisely so that code which naively takes the first item breaks during testing rather than in the wild.

Why the version might look odd

If you use a Chrome-based browser, the version in the user agent string now reads like 138.0.0.0 — the major number is real and everything after it has been zeroed out on purpose, to remove a chunk of fingerprinting detail. Client Hints can still supply the full version when a page asks for it, which is why the full version above may be more precise than the raw string suggests. Safari's version comes from a Version/ token that has stayed reliable, and Firefox reports its version plainly.

What this page will not claim

Brave is the clearest example. It ships Chrome's user agent verbatim and does not identify itself through Client Hints either, deliberately, because being indistinguishable from the largest possible crowd is the point of the product. If you are using Brave, this page will say Chrome — that is what your browser is telling every site you visit, which is exactly what a page answering “what does the web see me as” should report. The same goes for privacy extensions and developer tools that override the user agent: the answer above is what your browser says, and there is no client-side way to check it against what your browser is.

Operating system versions have the same problem in a different shape. Windows 11 identifies itself as “Windows NT 10.0”, exactly as Windows 10 does, so from the user agent string alone the two cannot be told apart — and this page will say “Windows 10 or 11” rather than pick one. Client Hints can resolve it, and where your browser offers them the answer above will name the version directly. macOS has reported “10.15.7” in every release since Big Sur, which is why a modern Mac can appear to be running a version from 2019.

Keeping a browser up to date

Browser updates are overwhelmingly security updates, and the version number above is worth checking against the current release if you have not restarted your browser in a while. Chrome, Edge, Firefox and Opera all update in the background and apply the update on the next restart — which means a browser left open for weeks can be several versions behind while insisting it is up to date. Safari updates with macOS and iOS. In Chrome and Edge the version is under the menu → Help → About; in Firefox, menu → Help → About Firefox; in Safari, the Apple menu → About This Mac tells you the system version that Safari comes from.

All of this is read locally in your browser and nothing is uploaded. If you are troubleshooting something specific rather than curious, the full system info page collects every field on one screen with a button that copies it as plain text for a support ticket.