User-Agent-Parser
User-Agent-Zeichenfolgen analysieren, um Browser, Betriebssystem, Gerät und Engine zu identifizieren
Einen User-Agent-String einfügen oder den Ihres aktuellen Browsers verwenden...
Empfohlene naechste Schritte
Verwandte Tools
IP-Subnetzrechner
Subnetze, CIDR und Netzwerkbereiche berechnen
Chmod-Rechner
Unix-Dateiberechtigungen in symbolischer und numerischer Notation berechnen
IPv4-Adresskonverter
IPv4-Adressen zwischen Dezimal-, Binär-, Hexadezimal- und Ganzzahlformaten konvertieren
WiFi-QR-Code-Generator
QR-Codes für WiFi-Netzwerkzugangsdaten generieren
MAC-Adress-Generator
Zufällige MAC-Adressen für Tests und Entwicklung generieren
HTTP-Statuscodes
Kurzreferenz für alle HTTP-Statuscodes und ihre Bedeutungen
Anleitung
Text eingeben oder einfügen
Geben Sie Ihren Text, Code oder Ihre Daten in das Eingabefeld ein.
Optionen auswählen
Wählen Sie die gewünschte Umwandlung oder das Format aus.
Ergebnis kopieren
Kopieren Sie die Ausgabe mit einem Klick in Ihre Zwischenablage.
Warum dieses Werkzeug nutzen
100 % Kostenlos
Keine versteckten Kosten, keine Premium-Stufen — jede Funktion ist kostenlos.
Keine Installation
Läuft vollständig in Ihrem Browser. Keine Software zum Herunterladen oder Installieren.
Privat & Sicher
Ihre Daten verlassen niemals Ihr Gerät. Nichts wird auf einen Server hochgeladen.
Funktioniert auf Mobilgeräten
Vollständig responsiv — nutzbar auf Smartphone, Tablet oder Desktop.
User Agent Strings: Browser and Device Identification
Key Takeaways
- User agent strings identify the browser, operating system, and device type — but their format is notoriously inconsistent and often misleading.
- User agent parsing is essential for analytics, content negotiation, and debugging browser-specific issues.
- All parsing happens in your browser — your user agent data is never sent to any external server.
Every HTTP request includes a User-Agent header that identifies the client software. What started as a simple browser identifier has evolved into a complex string carrying browser, engine, OS, and device information — with decades of legacy compatibility quirks. Parsing user agents is essential for web analytics, responsive design debugging, and understanding your audience's technology profile.
Chrome's User-Agent string contains 'Mozilla/5.0' and 'Safari' — a legacy of browser compatibility hacks dating back to the 1990s.
Historical Quirk
Key Concepts
User Agent String Components
A typical UA string contains: Mozilla compatibility token, platform/OS info (Windows NT 10.0, Macintosh, Linux), rendering engine (AppleWebKit, Gecko), and browser name/version (Chrome/120, Firefox/121).
User-Agent Client Hints
The new Client Hints API (Sec-CH-UA headers) provides structured, opt-in device information instead of the bloated UA string. It offers browser, platform, and architecture data in clean, parseable format.
Bot and Crawler Detection
Search engine crawlers (Googlebot, Bingbot) and other bots identify themselves via user agent strings. Detecting these helps serve appropriate content and manage server resources.
UA Freezing and Reduction
Chrome is gradually freezing and reducing user agent string information for privacy. Many fields now contain fixed values. Developers should migrate to Client Hints for detailed device information.
Pro Tips
Never rely on user agent strings for security decisions — they can be trivially spoofed by any client.
Use feature detection (Modernizr, CSS @supports) instead of user agent sniffing for browser capability checks.
When analyzing user agents for analytics, use a maintained parsing library rather than custom regex — the format is too inconsistent for manual parsing.
Test your site with various user agents to ensure you are not accidentally blocking legitimate traffic from non-standard clients.
All user agent parsing is performed entirely in your browser. Your user agent string and browsing information are never transmitted to any external server.