Text & documents
Encoder/DecoderURL, Base64, HTML
Text convertercamelCase, snake_case...
Text DiffCompare two texts
LaTeXPreview mathematical formulas
MarkdownReal-time preview
MermaidDiagrams as code
DiagramsVisio-style visual editor, Mermaid import
String escaperJS, JSON, SQL, Regex, HTML, URL
Unicode / ASCIICharacter information
Numbers & maths
CalculatorMath expressions + LaTeX
Base converterBase 2 to 64
Unit systembits, bytes, SI, IEC
Subnet / CIDRNetwork calculator
Timestamp and datesUnix, time zones, formats
Date calculatorDays between dates, exact age, day of the week
Data & formats
Format converterJSON, YAML, Properties, ENV, CSV
JSON FormatterFormat and validate JSON
Regex TesterRegular expressions
JSON DiffStructurally compare two JSONs
Code formatterSQL, CSS, HTML, JavaScript
DB StudioVisual Postgres database in the browser
SQL LabValidate, run and optimize SQL with real Postgres
Giant file viewerOpen huge CSV/logs without loading them
Visual ETL flowTransform data by chaining nodes
Security
Text anonymizerRedact PII and secrets (reversible)
JWT InspectorDecode JWT tokens
Auth flowsBasic, JWT and OAuth2 step by step
Hash generatorSHA-256, SHA-384, SHA-512
Password & UUID generatorPasswords and UUIDs
Development & DevOps
CronGenerator and validator
Docker → ComposeConvert docker run to Compose
Skaffold multi-configDependency graph and requires validation
Linux: permissions and userschmod, chown, useradd and groups
URLParse and build URLs
Random dataNames, emails, IPs, UUIDs...
ElectronicsOhm's law, series/parallel resistors
Logic GatesAND, OR, NOT and more gate simulator
Quantum simulatorQubits, gates, superposition and entanglement
HammingError detection
Nginx/Apache SPA configGenerate config to serve a SPA
SemverSemantic version ranges
CORS ExplainerAnalyse your server's CORS headers
Cert inspectorAnalyse X.509 certificates in PEM format
Rate LimiterSimulate Token Bucket and Fixed Window
Assembly simulatorSimplified MIPS ISA · step-by-step · registers & memory
Context ForgePack and shield your project for AI
Artificial Intelligence
LLM costsSimulate monthly spend
Prompt builderSystem prompt for AI agents
EmbeddingsSimilarity, 2D map and RAG
Local AIChat, summarization, translation & sentiment in-browser
TokenizerVisualize tokens, compare models, estimate costs
Probability for AIDistributions, softmax, Bayes and entropy
Gradient descentSGD, Momentum, RMSProp, Adam
Neural networkTrain an MLP and watch the boundary form
Mini-LLMTrain a language model with your text
Dimensionality reducerPCA, t-SNE and UMAP, live
Confusion matrix & ROCThreshold, precision/recall, ROC/AUC, PR
Clustering (k-means, DBSCAN)Discover groups without labels
Attention visualizerWhat each word looks at in a transformer
Convolution & CNN filtersImage filters and feature maps
Decision treeDecision regions + the tree
Fourier & convolutionFFT spectrum and signal filters
DiffusionThe noise behind Stable Diffusion
Regression & MLELeast squares, overfitting, ridge
Markov chainsStates, stationary distribution and text
Hypothesis testingp-values, t-test, χ², ANOVA and power
OCR — Image to textExtract text from images, 100% local
Finance
InflationYear-by-year purchasing power erosion
Compound interestCapital + contributions + compound interest
Mortgage / loanMonthly payment and French amortization schedule
Split expensesWho owes whom and how much
Health & Wellness
BMI & healthBMI, ideal weight, BMR and sleep cycles
Productivity
PomodoroTime-block work technique
StopwatchWith laps, stages and history
Games & Entertainment
DiceTables with numeric and symbolic dice
ScorekeeperPoints per player with game timer
Random pickerPick a random item from a list
Name generatorReal, fantasy, sci-fi, Norse names
Multimedia & design
Color HEX/RGB/HSLColor converter
QR CodeGenerate QR codes
ImagesResize, convert, Base64
PDF ToolsMerge, extract, watermark
ChartsVisualize data with charts
WCAG ContrastWCAG AA/AAA contrast ratio
Business
Meeting costHow much does each meeting really cost?
SLA / UptimeAvailability percentage ↔ downtime
Break-evenCost and revenue break-even point
Burn rate / RunwayHow long does your cash last?
A/B TestStatistical significance of experiments
DORA MetricsClassify your team by DevOps metrics
UTM BuilderBuild and decode URLs with UTM parameters
How to use
What it is and what it's for

Test regular expressions (regex) in real time, 100% in your browser. Type a pattern above and the text to analyze below: matches are highlighted instantly inside the editor and listed one by one with their position. Ideal for validating a pattern (dates, emails, IDs…), extracting data, or tuning the regex before taking it to your code. The tool locates and highlights; it does not modify your text.

How to use it (step by step)

1. Type the regex in "Regular expression" — just the pattern, without the slashes /…/.
2. In "Flags" put the letters you want (default gi).
3. Paste the text into "Test text".
4. After a short pause the match count, the highlight in the editor and the list below appear.
5. If the pattern is invalid you'll see "Invalid regular expression" in red.
6. The toolbar has Reset, Export and Import (saves pattern + flags + text).

Flags: one by one

Flags change how the pattern is applied. Type the letters together (e.g. gim); only g i m s u y are accepted and the rest is ignored. Note: g is always on even if you don't type it.

g (global) — finds all matches, not just the first. It's always on here.
i (case-insensitive)cafe finds Cafe and CAFE.
m (multiline)^ and $ match the start/end of each line, not just the whole text.
s (dotAll) — the dot . also matches the newline. Without s, . doesn't cross lines.
u (unicode) — reads the pattern as Unicode: enables \u

Capture groups (numbered and named)

A group (...) groups part of the pattern and captures what matches inside. Three forms:

Numbered(\d

Matches, position and highlighting

When the pattern is valid you'll see:

• The total number of matches at the top.
• A live highlight of each match inside the text editor.
• A list with, for each match: its index (#1, #2…), the full matched text, the position (index of the character where it starts, 0-based) and the named groups.

If there is no match, the counter stays at 0 and nothing is highlighted. Since g is always on, all matches in the text are shown.

Syntax cheat sheet

The most common pieces:

Classes\d digit, \w letter/number/_, \s whitespace; uppercase, the opposite (\D, \W, \S). . any character (except the newline; see flag s).
Sets[aeiou] one of those; [a-z] range; [^0-9] negated.
Quantifiers* 0 or more, + 1 or more, ? 0 or 1,

Using the regex to replace

This tool locates and highlights, it doesn't replace. But once your pattern works, you can use it to replace in your editor or in code (String.replace). In the replacement string, groups are referenced:

$1, $2 — the content of the numbered group. E.g.: pattern (\d

Common errors and tips

Invalid expression — unclosed parentheses or brackets, a stray quantifier (*abc) or an incomplete escape. The red warning appears and nothing is computed.
Don't add the slashes /…/ — type just the pattern; flags go in their own field.
The dot doesn't cross lines. doesn't match the newline; enable flag s if you need it.
^ and $ across lines — without m they match the start/end of the whole text, not each line.
Too greedy<.*> eats too much; use the lazy <.*?>.
Forgetting to escape., +, (, $… are special; escape them with \ to match them literally.

Regex TesterRegular expressions
Regular Expression TesterTest regex in real time
g i m s u y