UserAgent Analyzer

Paste any User-Agent string to instantly reveal its browser, OS, and device.

🛠️ Developer Reference (UAParser.js)

Analyze User-Agents in your own projects with this snippet:

const parser = new UAParser();
parser.setUA(yourUserAgentString);
const result = parser.getResult();

console.log(result.browser.name); // e.g. "Chrome"
console.log(result.os.name);      // e.g. "Windows"
Troubleshooting Checklist:
- ✅ Ensure the UA string is complete (not truncated)
- ✅ Check for extra spaces or line breaks
- ✅ Use the "Example" button to verify tool status
Copied!