Browser | Engine | System | Platform | Architecture | Device |
---|---|---|---|---|---|
Not result |
Browser | UserAgent |
---|---|
Chrome | Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36 |
Edge | Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36 Edg/129.0.0.0 |
Firefox | Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:131.0) Gecko/20100101 Firefox/131.0 |
Opera | Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/127.0.0.0 Safari/537.36 OPR/113.0.0.0 |
Safari | Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0.3 Safari/605.1.15 |
Mozilla/5.0 (Linux; Android 12; FOA-AL00 Build/HUAWEIFOA-AL00; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/126.0.6478.188 Mobile Safari/537.36 XWEB/1260117 MMWEBSDK/20240801 MMWEBID/4272 MicroMessenger/8.0.51.2720(0x28003339) WeChat/arm64 Weixin NetType/4G Language/zh_CN ABI/arm64 |
A browser's user agent string (UA) helps identify which browser is being used, what version, and on which operating system. When feature detection APIs are not available, use the UA to customize behavior or content to specific browser versions.
Useragent is a small piece of data that is sent by your web browser when accessing a website or application. It is used to identify the type of browser you are using, what device and operating system you are using, and the version of the browser you are using. This information is important for websites and applications to ensure optimal performance and compatibility. It also allows developers to customize their websites and applications based on user agent data.
This table describes the tokens in a user-agent string shown in the example.
Token | Description |
---|---|
Mozilla/5.0 | Application name and version. For historical reasons, Internet Explorer identifies itself as a Mozilla browser. |
Windows NT 6.3 | The Platform token identifies the operating system and version. The example token indicates Windows 8.1. |
Trident/7.0 | The Trident token identifies the version of MSHTML (Trident). |
rv:11.0 | The revision token indicates the version of IE11 |
like Gecko | The Gecko token has been added to highlight improved consistency with other browsers. |