</> CODE TOOLS
Code Tools / Developer Workspace
Code Tools · Developer Workspace

Build faster.
Format. Convert. Generate.

A focused collection of practical developer utilities for text, data, identifiers, encoding, debugging and everyday development workflows.

Quick Start

Most used tools

Everything runs locally in your browser.

01 / Text & Data

Case
Converter.

Convert text instantly into common programming naming conventions.

⌘ ⇧ U
Input Text
02 / Data

JSON
Formatter.

Beautify, minify, validate and escape JSON without leaving the workspace.

⌘ ⇧ J
Input
Output
Ready.
03 / Debug

Regex
Tester.

Test and inspect regular expressions with real-time match information.

⌘ ⇧ R
Regular Expression
Flags
Test Text
Matches will appear here.
04 / Time

Unix
Timestamp.

Convert timestamps to local, UTC and ISO dates, and back again.

⌘ ⇧ T
Unix Timestamp
Date & Time
05 / CSS

Color
Picker.

Inspect HEX, RGB, HSL and readable foreground contrast.

⌘ ⇧ C
Choose Color
HEX
RGB
HSL
CSS
Contrast
06 / Security

Hash
Generator.

Generate common hashes directly in the browser with optional salt.

⌘ ⇧ H
Text
Salt (Optional)
07 / Generate

QR &
Barcode.

Generate QR codes and CODE128 barcodes from text or links.

⌘ ⇧ Q
Text or URL
08 / Generate

UUID /
ID.

Create UUIDs, sortable v7-style IDs, slugs and secure random strings.

⌘ ⇧ U
09 / Encoding

Base64
Encode.

Encode and decode Unicode text, files and image Data URLs.

⌘ ⇧ B
Input
Output
Encode File / Image
10 / Data

CSV / TSV
Viewer.

Preview pasted CSV or TSV data as a clean table.

⌘ ⇧ V
Paste Data
11 / Content

Lorem
Ipsum.

Generate clean placeholder paragraphs for designs and development.

⌘ ⇧ L
Paragraph Count
12 / Reference

Git
Cheat.

Useful everyday Git commands for setup, branches and recovery.

⌘ ⇧ G

Getting Started

git initgit clone URLgit statusgit log --oneline

Commit Changes

git add .git commit -m "message"git push origin maingit pull

Branches

git branchgit switch -c featuregit switch maingit merge feature

Undo / Reset

git restore filegit reset --soft HEAD~1git revert COMMITgit stash