Skip to main content
WI

What Is My Browser

Instantly see your browser details — name, version, OS, screen, language, cookies, and more.

Did you like the tool? Thanks!
Share:

Browser

Version

Operating System

Platform

Screen Resolution

Viewport Size

Colour Depth

Pixel Ratio

Language

Time Zone

Cookies Enabled

JavaScript Enabled

Yes

Online Status

Do Not Track

Browser Vendor

User Agent

How to Use What Is My Browser

This page automatically detects and displays everything your browser reveals about itself: name and version, operating system, screen resolution and colour depth, viewport size, device pixel ratio, language, time zone, cookie status, online status, Do Not Track preference, vendor, and the full user agent string. All read from browser APIs — no network requests.

About What Is My Browser

"What browser am I using?" is a question that seems simple but has a surprisingly complex answer — and it is one of the most common pieces of information requested by technical support, IT helpdesks, and web developers when troubleshooting a problem. It is not just "Chrome" or "Firefox"; it is a specific version, on a specific operating system, at a specific screen resolution, with specific settings (cookies, language, timezone, do-not-track) that can all affect how a website behaves. This tool answers every dimension of that question at once, reading all the relevant properties from the browser\u0027s own navigator, screen, and window APIs — no network request, no server, no guesses.\n\nThe information collected falls into several categories. Identity: what browser and what version does the user agent string report? (Chrome 126 on Windows 10/11, Safari 17 on macOS 14, Firefox 129 on Linux). Display: what is the screen resolution, colour depth, and pixel ratio? (1920x1080, 24-bit colour, 2x Retina). What is the actual viewport size right now? (the browser window could be smaller than the screen). Environment: what language does the browser prefer? (en-GB, de-DE). What timezone is the system set to? (Europe/London, America/New_York). Are cookies enabled? (most sites break without them). Is the browser currently online? (navigator.onLine — a live check). Privacy: has the user set Do Not Track? (mostly ignored by sites now, but still a browser setting). And finally, the raw user agent string itself — the complete text the browser sent to load this very page, which is the piece of data support teams most commonly ask for.\n\nAll of this runs locally in the browser by reading properties from navigator, screen, and window objects — the standard JavaScript APIs that every browser exposes. Nothing is transmitted to a server, inferred from an IP address, or guessed from a database. The results are as accurate as the browser\u0027s own reporting, which for all major browsers is very accurate (browsers do not lie about their screen resolution or language preference).\n\nThe tool is designed to be the quickest possible answer to "what is my browser?" — the page loads and the information is displayed without any interaction needed. There is no input field, no button to click, no output to copy (though all text is selectable for copying). It is a display page, not a configuration tool.\n\nWhy this matters in practice: a user reports that a website "looks broken". The support agent asks for the browser and OS. The user opens this page, reads "Chrome 126 on Windows 11", and the agent can immediately check whether that browser/OS combination is in the tested matrix. Or: a developer receives a bug report that the layout is "off" on a specific screen. They ask the reporter to open this page, note the screen resolution (1366x768 — a common budget laptop resolution the design was not tested for) and viewport (683px wide because the browser was snapped to half-screen), and the mystery is solved. These are real, everyday scenarios where a one-click browser identification page saves back-and-forth emails.

Details & Tips

Property descriptions: Screen Resolution = screen.width x screen.height, the full monitor dimensions in CSS pixels (not physical pixels, not device pixels). Viewport Size = window.innerWidth x window.innerHeight, the actual browser content area (excludes toolbars, scrollbars). Pixel Ratio = window.devicePixelRatio, the ratio between physical hardware pixels and CSS pixels (1.0 for standard displays, 2.0 or 3.0 for Retina/HiDPI). Color Depth = screen.colorDepth, typically 24 bits (16.7 million colours). Language = navigator.language or the first preference from navigator.languages. Time Zone = resolved from Intl.DateTimeFormat API. Cookies = navigator.cookieEnabled (true if cookies are not globally blocked; does not check third-party cookie settings). Online = navigator.onLine, a real-time indicator (false if the device is in airplane mode or Ethernet cable unplugged). Do Not Track = navigator.doNotTrack, a deprecated HTTP header most sites ignore but that some users still enable. Vendor = navigator.vendor, typically "Google Inc." for Chrome, "" for Firefox, "Apple Computer, Inc." for Safari. User Agent = navigator.userAgent, the full raw string.

Frequently Asked Questions

How do I check what browser I am using?
This page auto-detects and displays your browser name, version, and operating system on load — no action needed. For more detail, scroll to see your screen resolution, language, cookies status, time zone, and the full user agent string.
Why do I need to know my browser name and version?
Technical support and developers often need this information to reproduce a bug. A website may work perfectly in Chrome 126 but break in Safari 17, or in Firefox 129 but not in an older version. Knowing the exact browser and version is the first step in troubleshooting. Also, some applications or corporate systems require minimum browser versions.
Is my browser information sent to a server?
No. Everything on this page is read from JavaScript browser APIs (navigator, screen, window) running locally on your device. No information about your browser is transmitted, logged, or stored — all detection happens in your browser, for your browser, without any network request.
Why does my browser say it is Chrome when I am using Brave/Vivaldi/Samsung Internet?
Browser detection reads the user agent string, which is set by the browser itself. Many Chromium-based browsers (Brave, Vivaldi, Samsung Internet) use Chrome\u0027s user agent signature for compatibility with websites and do not always include their own distinct identifying token. The tool reports what the user agent claims to be — for these browsers, that will read as Chrome.
What does "Cookies Enabled: Yes" actually mean?
It means navigator.cookieEnabled returned true — the browser is not globally blocking cookies. It does NOT mean third-party cookies are accepted, that the user has not deleted cookies, or that a specific website\u0027s cookies will work. It only tests the global cookie setting.
What is the difference between Screen Resolution and Viewport Size?
Screen Resolution is your monitor\u0027s full size (e.g., 1920x1080). Viewport Size is the actual browser window content area, which is smaller — it excludes the browser toolbar, tabs, bookmarks bar, and taskbar. If you snap the browser to half-screen, the viewport might be 960x1050 while the screen is still 1920x1080. Developers care about viewport size for responsive design.
What does Pixel Ratio mean?
Device Pixel Ratio (DPR) is the ratio between physical hardware pixels and CSS pixels. Standard displays have 1.0 (one CSS pixel = one hardware pixel). Retina/HiDPI displays (MacBook Pro, iPhone, high-end Windows laptops) typically have 2.0 or 3.0, meaning each CSS pixel is rendered with 4 or 9 hardware pixels for sharper text and images. Web developers use DPR to serve appropriately-sized images.
Why does my browser show as "Online" when I am clearly not connected?
navigator.onLine is not always reliable. It detects whether the device has a network connection (Wi-Fi connected, Ethernet cable plugged in), but it cannot detect whether that connection actually reaches the internet (captive portal behind a login page, DNS failure, ISP outage). False positives are possible.
What is Do Not Track and should I enable it?
Do Not Track (DNT) is a deprecated HTTP header that tells websites you prefer not to be tracked. It was proposed as a privacy standard but never gained legal force, and most websites and advertising networks ignore it. Major browsers have largely moved away from DNT in favour of built-in tracking prevention (Firefox Enhanced Tracking Protection, Safari Intelligent Tracking Prevention). The setting no longer has practical effect.
Can I copy the output to share with tech support?
All text on the page is selectable — highlight the fields you need and copy. Alternatively, take a screenshot of the page and share it. The most commonly needed fields for tech support are: Browser + Version, Operating System, and the User Agent string (at the bottom, which contains everything in one line).

Part of These Collections

Also Available As

what is my browser, my browser details, browser information, check my browser, browser detector, my browser version, what browser am i using

Found a Problem?

Let us know if something with What Is My Browser isn't working as expected.

Thanks — we'll take a look.