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

Drop any text inside a code string without breaking it. Every language or format reserves certain characters (quotes, backslashes, <, &…); if your text contains them, you must escape them —swap them for a safe sequence— so they are treated as text, not as syntax. This tool escapes and unescapes for 7 different targets, 100% in your browser: nothing is uploaded to any server.

How to use it (step by step)

1. Pick the mode (the target format: JavaScript, JSON, SQL…).
2. Pick the direction: Escape or Unescape.
3. Paste your text into «Input text».
4. The Result shows below instantly; press the copy icon to grab it.
Changing mode or direction recomputes right away over the same text.

JavaScript mode

Prepares text for a JavaScript/TypeScript string. Escapes the backslash (\\\), the newline (→ \n), the carriage return (→ \r), the tab (→ \t), the null character (→ \0) and both quotes ("\" and '\'). That way you can paste the result between quotes without accidentally closing the string.
Example: He said "hi"He said \"hi\".

JSON mode

Builds the contents of a JSON string (without the outer quotes) via JSON.stringify. Escapes double quotes (→ \"), backslashes (→ \\) and every control character as a valid JSON sequence: newline → \n, tab → \t, return → \r, and others like \u001b. Wrap the result in double quotes and you have a valid JSON value.
Example: Ann said "yes"Ann said \"yes\".

SQL mode

Escapes strings for standard SQL by doubling the single quote ('''), which is how SQL represents a literal quote inside '...'. It stops an apostrophe from closing the string early (a classic cause of syntax errors and SQL injection). It does not escape the backslash: standard SQL does not treat it as an escape character.
Example: O'BrienO''Brien.

Regex mode

Turns your text into a pattern matched literally. It prepends a backslash to the regular-expression metacharacters —. \ + * ? [ ] ^ $ ( )

HTML mode

Escapes text so you can drop it inside HTML without the browser reading it as tags. Converts &&amp;, <&lt;, >&gt;, "&quot; and '&#39;. Prevents XSS and keeps your content from breaking the page markup.
Example: <a href="x">&lt;a href=&quot;x&quot;&gt;.

URL mode

Encodes text for a URL with encodeURIComponent: replaces unsafe characters with their %XX form. A space becomes %20, & becomes %26, = becomes %3D, and so on. Use it to put a value into a query parameter without breaking the URL. When unescaping, if the input is malformed it returns the text as-is without throwing.
Example: a b&c=da%20b%26c%3Dd.

CSS mode

Escapes text to use as a CSS identifier or value (for example inside a selector). It prepends a backslash to the CSS special characters: ! " # $ % & ' ( ) * + , . / : ; < = > ? @ [ \ ] ^ `

Escape, unescape and notes

Escape turns the original text into its escaped version; Unescape does the reverse and recovers the original.

• Use the same mode to unescape that you used to escape.
URL and JSON do not throw if the input is malformed: they return the text as-is.
• The result is computed automatically and saved; you can copy, export the text or import it from the toolbar.

String escaperJS, JSON, SQL, Regex, HTML, URL
String escaperEscape or unescape text for JS, JSON, SQL, Regex, HTML, URL, CSS