DNS Lookup - Online Domain Records Checker (A, MX, CNAME)
Query DNS records for any domain directly from your browser using DNS-over-HTTPS. See A, AAAA, MX, CNAME, and TXT records. No logs.
UD5 Toolkit
Query DNS records for any domain directly from your browser using DNS-over-HTTPS. See A, AAAA, MX, CNAME, and TXT records. No logs.
Enter a full URL and get all query parameters in a clean table with decoded values. Quickly see UTM and tracking params.
Enter a package name and version range to see all satisfying versions from the registry. Understand ^ and ~.
Convert any image into a raw binary array of RGBA values. For use in embedded systems or game development. Copy as Uint8Array.
Paste your CSS and see warnings for properties that have limited browser support. Links to CanIUse. Modernize safely.
Enter an API URL and quickly check its HTTP status code and response time. See response headers and body. Browser fetch.
Pick colors for the shadcn/ui design system and generate the complete CSS variable theme file. Copy into your project.
Estimate how many MB/GB your storage can hold based on navigator.storage.estimate() and display as a pie chart.
Interactive ASCII table showing decimal, hex, octal, and binary codes for all standard and extended ASCII characters. A classic programmer reference.
Create a custom HTML/CSS progress bar with percentage, colors, and animation. Copy the code. Modern UI element.
Check if the browser has captured the beforeinstallprompt event. Understand why your PWA is (or isn't) installable.
Experiment with the Async Clipboard API: read/write text and images from the clipboard. Verify permissions and see demo code.
Type any character and see how it renders in different font stacks. Detect missing glyphs and fallback behavior.
Design a button or card that glows on hover. Adjust shadow color, spread, and transition. Copy the CSS. Rich UI.
Convert Unix timestamps to human-readable dates and vice versa. Supports seconds and milliseconds. Ideal for developers debugging time-related code.
Trigger different vibration patterns on mobile devices. Test if your phone supports haptic feedback. Simple demo.
Create a customizable checkerboard or grid background using pure CSS gradients. Adjust cell size and colors. Copy the code.
Create a realistic letterpress (debossed) text effect using CSS text‑shadow and background. Adjust depth and light direction. Copy code.
Generate random but realistic‑looking data arrays (users, products, orders) with typos and missing fields. For test robustness.
Translate between binary and Gray code (reflected binary code). See the bit changes. Useful for digital logic.
Style underlines, overlines, and strike-throughs with colors, wavy styles, and thickness. Modern CSS text‑decoration.
Connect a gamepad and see all button presses and axis movements visually. Check that every input is detected correctly.
Break down any URL into its individual components: protocol, hostname, path, query parameters. Decode query strings easily. Purely client-side.
Test how your page loads under slow, 3G, or offline conditions by intercepting fetch and applying delays. No DevTools needed.
Test the Fullscreen API: request fullscreen on a colored div, detect changes, and copy the JavaScript boilerplate.
Design a layout where nested grids share track sizes with their parent via subgrid. Copy the complete CSS.
Upload a small pixel art image and get a CSS grid layout that recreates it using divs. Novelty developer tool.
Paste a raw cookie string and see a formatted key‑value table. Debug session cookies and understand flags. Runs in browser.
Generate a subtle noise/grain texture as a CSS background pattern. Adjust opacity and size. For that film look.
Drop an image that might have wrong extension and see its real format (JPEG, PNG, WebP) based on header bytes.
Encode decimal integers into signed magnitude binary representation and decode back. Learn computer arithmetic.
Execute GraphQL queries against any endpoint with variables and headers. Explore schema via introspection. All requests made directly from your browser.
Drop a PNG file and see all its chunks (IHDR, tEXt, etc.). Extract hidden text and color profiles. Pure JavaScript reader.
Unified input demo: see pressure, tilt, and type from any pointer. Compare pointerType values. Essential for drawing apps.
Decode an image progressively using the ImageDecoder API. See partial results and metadata. Modern alternative to <img>.
Paste Lottie JSON code or upload a .json file and see the animation play. Control speed and loop. Perfect for developers.
Paste a JSON object and see a dynamic, draggable tree graph representation. Excellent for debugging nested data.
Design a realistic neon sign text with multiple layers of glow. Copy the CSS and HTML. Perfect for headers.
Fetch a website's CSS and extract :root custom properties (‑‑color) to reveal its design token palette. For learning and inspiration.
Build an iframe with different sandbox flags and see live which features are blocked. For secure embedding.
Enter a URL and see its favicon at all standard sizes. Check if it's properly defined. SEO basic check.
Drop a file to see its MIME type and the first few magic bytes (hex and ASCII). No upload, works instantly.
Browse and search all Font Awesome 6 icons with preview, class name, and unicode. Copy the HTML snippet. Perfect for web developers.
Decode individual video frames from a local file using the VideoDecoder API. Step through frames. Cutting‑edge browser feature.
Predict the file size of an image based on pixel dimensions and format (JPEG, PNG, WebP). Rough estimate. Local.
Pick an emoji and convert it into a proper favicon .ico file for your website. No design skills needed. Instant download.
An on‑screen ruler that measures in pixels, centimeters, and inches. Drag to resize. Handy for UI designers and developers.
Strip HTML tags and convert web content to plain Markdown. Preserve headings, lists, and links. Perfect for content migration. All processing in browser.
Enter a hexadecimal string and decode it as a 32‑bit or 64‑bit floating‑point number. Low‑level developer tool.
Generate random, formatted ID numbers that match pattern rules for various countries. For testing input validation. No real data.
Test your browser's built‑in speech recognition. Speak and see the transcribed text appear live. Must‑have for voice app devs.
Paste a list of numbers to visually check uniformity, mean, and simple pattern analysis. Educational tool for statistics and RNG.
Search and extract values from a large JSON object using dot/bracket notation. Quickly locate deeply nested fields. Data stays local in your browser.
Beautify and format your CSS stylesheets instantly. Organize, minify, or prettify CSS code for better readability. Processed securely on client-side.
See which fonts map to generic families (serif, sans‑serif, monospace) on different operating systems. A handy reference.
Check current screen orientation and test the lock API. Useful for mobile web apps. Demo with code.
Create complex linear gradients with any number of color stops, exact angles, and length units. Live preview and CSS code.
Simulate random mouse moves, clicks, or keystrokes to test idle‑timeout logic. Stops when you move the mouse. Dev test.
Experiment with CSS Grid properties visually. Add rows, columns, and areas. See the grid in action and copy the code.
Convert a decimal number to 32-bit single precision IEEE 754 format. See sign, exponent, mantissa bits. Developer tool.