User Agent Parser
Parse any user agent string into browser, operating system, device type and engine details. Shows your current UA automatically. Free, browser-based.
💻 Developer Tools
Free
Browser-based
What is a User Agent String?
Every browser sends a User-Agent HTTP header with each request, identifying the browser name and version, rendering engine, operating system and device type. Web servers and analytics tools use this string to tailor responses, track browser usage and diagnose compatibility issues.
Common User Agent Examples
| Browser | UA Prefix |
|---|---|
| Chrome (Windows) | Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36… |
| Safari (macOS) | Mozilla/5.0 (Macintosh; Intel Mac OS X…) AppleWebKit/605… |
| Firefox | Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:…) Gecko/… |
| Chrome (Android) | Mozilla/5.0 (Linux; Android 14; Pixel 8) AppleWebKit… |
| Googlebot | Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) |
Tips
User agent strings are not tamper-proof — any user or bot can send an arbitrary UA. Do not rely on UA detection for security decisions. Use it for progressive enhancement, analytics and debugging only.