Tested tool guide
Tested browser tools
Checked August 16, 2026
What User Agent String Analyzer does, with a checked example
A user agent string is what a browser sends to identify itself with every HTTP request - and it is not always truthful. Paste one into this tool and it breaks the string into its parts: browser and version, rendering engine, operating system, device class (mobile, tablet, desktop, or bot), and whether the string carries a known crawler signature such as Googlebot or Bingbot. The surprise most people hit: Chrome, Edge, and Opera all ship the same Mozilla/ and Safari/ prefixes as compatibility boilerplate, so the real browser is found in the Chrome/, Edg/, or OPR/ token, and the Safari version shown is always the frozen value 537.36.
Worked example
A concrete input and expected output from the current implementation.
Input
Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36
->
Expected output
Browser: Chrome 120.0.0.0
Rendering engine: Blink (the string itself claims AppleWebKit/537.36)
Operating system: Windows 10 or later, 64-bit (Windows NT 10.0; Win64; x64)
Device class: Desktop, no Mobile token
Crawler: None detected
The Chrome/ token carries the real browser and version; Mozilla/5.0, AppleWebKit/537.36, and Safari/537.36 are compatibility tokens that every Chromium browser sends, so they identify nothing. Windows 11 also reports NT 10.0, which is why the OS is given as '10 or later' rather than a specific release.