Developer Tools

DevTools Hub

Fast, client-side developer utilities. No data leaves your browser.

JSON Formatter

Pretty-print, validate and format JSON.

Base64

Encode and decode Base64 strings.

URL Encoder

URL encode/decode and parse components.

JWT Decoder

Inspect JWT header, payload and expiry.

Color Converter

Convert HEX ↔ RGB ↔ HSL instantly.

Regex Tester

Live regex testing with match highlighting.

All tools run entirely in your browser — no data sent to any server.

JSON Formatter

Pretty-print and validate JSON with syntax highlighting.

Input
Output

Base64 Encoder / Decoder

Encode or decode Base64. Supports UTF-8 and URL-safe variant.

Standard
URL-safe
RFC 4648 — uses +, /, =
Input
0 chars
Output
0 chars

URL Encoder / Decoder

Percent-encode strings for safe URL use, or parse a URL into its components.

Input
0 chars
Output

JWT Decoder

Decode and inspect JSON Web Tokens — header, payload claims, and expiry.

JWT Token

Color Converter

Convert between HEX, RGB, and HSL. Pick a color or type any value.

HEX
RGB Sliders
R124
G58
B237
Presets
RGB
rgb(124, 58, 237)
R
G
B
HSL
hsl(263, 84%, 58%)
S%
L%
CSS Snippets
--color: #7c3aed;
rgba(124, 58, 237, 1)
ShadesClick to copy

Regex Tester

Live regular expression testing with match highlighting and capture groups.

Pattern
g
i
m
s
/ / g
Quick:
Test String
No pattern
Matches
Enter a pattern to see matches.
Reference
.Any char (no newline)
\dDigit [0-9]
\wWord char [a-zA-Z0-9_]
\sWhitespace
\bWord boundary
^ $Start / end
* + ?0+, 1+, 0 or 1
{n,m}n to m times
(abc)Capture group
(?:abc)Non-capture group
[abc]Character class
[^abc]Negated class
a|bAlternation