Barcode Scanner Simulator – Online Enter Number & Visualize
Type a UPC or EAN number and see how a laser scanner would identify it, plus check digit validation.
UD5 Toolkit
Type a UPC or EAN number and see how a laser scanner would identify it, plus check digit validation.
Paste a YAML example and generate a JSON Schema draft that matches the structure. Helps build API specs. Pure client-side inference.
Type JavaScript expressions and see output like a real browser console. Supports console.log, error, warn. Use for quick testing without DevTools.
Browse a collection of ready-to-use CSS animations (fade, slide, bounce). Click to preview, then copy @keyframes and class to your project. Local tool.
Compare two JSON objects and see added, removed, or changed keys. Visual tree view with color highlighting. Handles nested structures. Local processing.
Encode or decode data to/from Base58 (Bitcoin alphabet). Useful for cryptocurrency address generation testing. Fully local, no data sent.
Paste a Base64 encoded font string and generate the complete @font‑face CSS rule. Inline small fonts easily.
Generate a temporary webhook URL (mock) and view the JSON payloads sent to it. Great for testing integrations locally.
Display your screen's current devicePixelRatio. See how it changes when you zoom. Useful for high‑res image decisions.
Explore the size‑container and inline‑size CSS properties for container queries. Understand containment contexts. Visual guide.
Check if your site has a visible and functional skip navigation link. Key for keyboard‑only users.
Explore your website’s IndexedDB databases and object stores. Add, delete, and inspect records. Like phpMyAdmin for IndexedDB.
Press a combination of modifier keys and see which common macOS shortcuts use them. Learn by experimentation.
Compile SCSS code to CSS directly in the browser using the official Sass.js library. Supports variables, mixins, nesting. No server upload required.
Quickly test SQL JOIN syntax (INNER, LEFT, RIGHT, FULL) with a sample database schema. Check logic and see conceptual result set without a real DB. Local only.
Practice calculating network ID, broadcast address, and usable IPs from a random IP/CIDR combination. Instant feedback and score tracking. Perfect for CCNA prep.
Paste a MySQL ENUM definition and get a TypeScript union type string literal. For type‑safe database schemas.
Compose messages with bold, italic, links, and code. See the raw HTML or Markdown for your Telegram bot API calls.
Create the iPhone Dynamic Island look‑alike with a pill that expands on hover. Pure CSS. Copy the playful code.
Type two letters and see if your chosen font has a kerning pair for them. Adjust tracking and see live spacing.
Enter a decimal number and see a visual breakdown of bits, place values, and bitwise operations. Learn binary easily.
Paste an SSL certificate and private key to verify they belong together. Check if a CSR matches a private key. All local crypto.
Select emojis and arrange them into a seamless tiling background. Copy the CSS data‑URI or download as image.
Render 1000 styled elements using inline styles vs. CSS classes and compare time. Understand CSS‑in‑JS trade‑offs.
Write a Python range expression and instantly see the list of numbers it produces. Quick playground for beginners.
Paste an HTML snippet and get a report on missing, empty, or suspicious alt texts. Improve your image SEO and a11y.
Paste HTML and detect elements with aria‑hidden='true' that contain focusable children. An easy a11y win to fix.
Change the viewport meta tag and see how a page would render at different device widths. Understand responsive basics.
Paste your CSS and see a static fallback version where var() is replaced with the default value. For legacy support.
Enter two hex or decimal numbers and perform bitwise AND, OR, XOR, NOT, left/right shift. See results in binary.
Convert numbers between binary, octal, decimal, hex, and any custom base up to 36. With live preview of all bases.
Encode or decode a string for use in a URL query parameter. See the raw and encoded versions. Dev tool.
Animate text that looks like it's being decoded or scrambled before settling on the final word. Copy the JS snippet.
Test the upcoming <selectlist> element for a fully customizable, stylable select dropdown. Experimental browser feature.
Experiment with scroll‑state container queries to style elements when they are stuck, snapped, or overflowed. Experimental.
Map CSV columns with latitude/longitude to GeoJSON points. Create map‑ready data instantly. All local.
Hover over tiles to see every CSS cursor value in action. Quick visual reference for choosing the right UI feedback.
See how a PWA can extend content into the title bar area on desktop. Customize the window controls overlay.
Check if your site has a service worker registered and if it can load offline. Quick PWA readiness assessment.
Touch your screen and see the pressure and radius reported. Visualize force. Mobile developer tool.
Add multiple CSS filters (grayscale, blur, hue‑rotate) to an image. See the combined effect. Copy the CSS filter value.
Send a test CSP violation report and see the ReportingObserver in action. Understand how monitoring works.
Use the document.fonts API to check if a font is loaded. Watch the ready promise. Avoid FOUT. JavaScript demo.
Access the Paint Timing API and display First Paint, First Contentful Paint, and Largest Contentful Paint times. Quick perf check.
See your current page load broken down into DNS, TLS, request, and DOM phases. Understand where time is spent.
See outerWidth, innerWidth, outerHeight, innerHeight, screenX/Y, and availWidth/Height live. Understand the viewport.
Practice positive/negative lookahead and lookbehind. See matches highlighted live. Master advanced regex.
Test min, max, and step constraints on `<input type='number'>`. See how invalid values are handled. Undocumented behavior.
Query DNS records for any domain directly from your browser using DNS-over-HTTPS. See A, AAAA, MX, CNAME, and TXT. No logs.
Compare visibility: hidden vs display: none. See how each affects layout and event listeners. Inline code.
Set tab‑size to any number and see how tabs are displayed in a pre element. Essential for code snippets.
Browse a searchable list of standard HTTP request and response headers with explanations. Quick dev help.
See a comprehensive table of which modern web APIs your current browser supports. Includes WebGPU, AVIF, and more.
Paste an HTML table snippet and instantly get the data as CSV or JSON. Handy for scraping and data migration. Local.
Paste a URL and see the og:title, description, image, and twitter card that will be used when shared. No server needed.
Paste a JSON array and filter/transform it using a simple path expression. Extract nested values without code. Local.
Fetch a page and list all loaded assets (CSS, JS, images) with their sizes. See total page weight. Quick performance check.
Experiment with the Federated Credential Management API. Simulate a sign‑in flow without third‑party cookies. Privacy‑first.
Visual reference for CSS Grid properties. Click to see code snippets and visual demos.
Paste an SVG path d string and parse it into an array of commands and coordinates. Useful for animations.