Tools.GamesLoop Logo
TOOLS.GAMESLOOP160+ Free Online Tools

Free Online Developer Tools

Format, validate, convert and inspect the data formats you work with every day. Everything runs client-side, so you can paste a staging payload without it reaching anyone else’s server.

Advertisement
Ad Space (banner) — Configurable via NEXT_PUBLIC_ADSENSE_CLIENT

All Developer Tools (61 Available)

Data Storage Converter

Convert bytes, KB, MB, GB, TB and their binary equivalents.

Use Utility
POPULAR

JSON Formatter

Format, validate and explore JSON with precise error reporting.

Use Utility

JSON Validator

Check whether JSON is valid and get the exact error position.

Use Utility

JSON Minifier

Strip whitespace from JSON to make it as small as possible.

Use Utility

JSON to CSV Converter

Turn a JSON array into a spreadsheet-ready CSV.

Use Utility

CSV to JSON Converter

Convert CSV or spreadsheet data into clean JSON.

Use Utility

JSON to YAML Converter

Convert JSON into readable YAML for configuration files.

Use Utility

YAML to JSON Converter

Convert YAML configuration into JSON.

Use Utility

YAML Formatter

Tidy and validate YAML with consistent indentation.

Use Utility

XML Formatter

Pretty-print and validate XML with proper indentation.

Use Utility

XML Validator

Check XML for well-formedness and locate errors precisely.

Use Utility
POPULAR

Base64 Encoder

Encode text to Base64, with UTF-8 and URL-safe support.

Use Utility
POPULAR

Base64 Decoder

Decode Base64 back to readable text, standard or URL-safe.

Use Utility
POPULAR

URL Encoder

Percent-encode text for safe use in URLs and query strings.

Use Utility

URL Decoder

Decode percent-encoded URLs back into readable text.

Use Utility

HTML Encoder

Escape HTML special characters to display code safely.

Use Utility

HTML Decoder

Convert HTML entities back into normal characters.

Use Utility
POPULAR

JWT Decoder

Decode a JSON Web Token and inspect its header and claims.

Use Utility

UUID Validator

Check whether a UUID is valid and identify its version.

Use Utility
POPULAR

Regex Tester

Test regular expressions live with highlighted matches and groups.

Use Utility
POPULAR

Hash Generator

Generate MD5, SHA-1, SHA-256, SHA-384 and SHA-512 hashes.

Use Utility

SHA-256 Generator

Generate a SHA-256 hash from any text.

Use Utility

SHA-512 Generator

Generate a SHA-512 hash from any text.

Use Utility

MD5 Generator

Generate an MD5 checksum — for integrity, never for security.

Use Utility

HTML Formatter

Beautify or minify HTML with correct indentation.

Use Utility

HTML Minifier

Compress HTML by removing safe whitespace and comments.

Use Utility

CSS Formatter

Beautify CSS with consistent indentation and spacing.

Use Utility

CSS Minifier

Compress CSS by stripping whitespace and comments.

Use Utility

JavaScript Formatter

Beautify JavaScript, TypeScript and JSX code.

Use Utility

SQL Formatter

Format SQL queries into readable, consistently indented statements.

Use Utility

SQL Minifier

Collapse a SQL query onto a single compact line.

Use Utility

Colour Converter

Convert between HEX, RGB, HSL, HSV and CMYK.

Use Utility

HEX to RGB Converter

Convert a hex colour code to RGB values.

Use Utility

RGB to HEX Converter

Convert RGB values to a hex colour code.

Use Utility

RGB to HSL Converter

Convert RGB values to hue, saturation and lightness.

Use Utility

HSL to RGB Converter

Convert hue, saturation and lightness to RGB and hex.

Use Utility

Cron Expression Generator

Build a cron schedule visually and get the expression.

Use Utility

Cron Expression Explainer

Paste a cron expression and read what it actually does.

Use Utility

User Agent Parser

Break a user agent string into browser, OS and device.

Use Utility

What Is My IP Address

See the public IP address your connection presents.

Use Utility

HTTP Status Code Lookup

Search every HTTP status code with what it means and when to use it.

Use Utility

MIME Type Lookup

Find the MIME type for any file extension, and vice versa.

Use Utility

Number Base Converter

Convert numbers between binary, octal, decimal, hex and any base.

Use Utility

Binary to Decimal Converter

Convert binary numbers to decimal with the working shown.

Use Utility

Decimal to Binary Converter

Convert decimal numbers to binary with the division steps.

Use Utility

Hex to Decimal Converter

Convert hexadecimal numbers to decimal.

Use Utility

Decimal to Hex Converter

Convert decimal numbers to hexadecimal.

Use Utility

Image to Base64 Converter

Turn an image into a Base64 data URI for CSS, HTML or JSON.

Use Utility

Base64 to Image Converter

Decode a Base64 string back into a viewable, downloadable image.

Use Utility

Image Colour Picker

Pick any colour from an image and get HEX, RGB and HSL.

Use Utility
POPULAR

Text Case Converter

Convert text between sentence, title, upper, lower and code cases.

Use Utility

Remove Duplicate Lines

Strip repeated lines from a list, with a count of what went.

Use Utility

Sort Lines

Sort a list alphabetically, numerically, by length or randomly.

Use Utility

Find and Replace Text

Search and replace across text, with regular expression support.

Use Utility

Add Line Numbers

Number every line of text, with control over format and start.

Use Utility
POPULAR

Text Diff Checker

Compare two texts and highlight exactly what changed.

Use Utility

URL Slug Generator

Turn any title into a clean, SEO-friendly URL slug.

Use Utility

Text to Binary Converter

Convert text into its binary representation, byte by byte.

Use Utility

Binary to Text Converter

Decode binary back into readable text.

Use Utility

Text to ASCII Converter

Convert between text and character codes in any base.

Use Utility

Markdown Previewer

Write Markdown and see the rendered result side by side.

Use Utility

About Developer Tools

The JSON suite is the workhorse: a formatter with configurable indentation, a validator that reports the exact line and column of a syntax error, a minifier for shipping, and converters to and from CSV and YAML.

Encoding and hashing tools use the browser primitives directly — Web Crypto for SHA-1, SHA-256, SHA-384 and SHA-512, TextEncoder for UTF-8 safe Base64 — so results match what your backend produces.

Reference tools such as the HTTP status code lookup, MIME type lookup and cron expression explainer save you a tab and a search. They are static data, so they work instantly and never go down.

Developer Tools FAQs

Is it safe to paste production data into these tools?

These tools never transmit your input — everything is computed in your browser tab. That said, treat any web page as untrusted for live production secrets, and prefer rotating a credential you have pasted anywhere.

Does the JWT decoder verify signatures?

It decodes and displays the header, payload and claim timings, and it checks expiry. It does not verify the signature, because that requires your secret or public key. Verifying signatures should happen on your server.

Why is MD5 offered if it is insecure?

MD5 is still widely used as a non-cryptographic checksum for cache keys, file deduplication and legacy integrations. The tool clearly warns that it must not be used for passwords or signatures.

Do the formatters change my code semantics?

No. The HTML, CSS, JavaScript and SQL formatters only rewrite whitespace and layout. If a formatter cannot parse your input it reports the error instead of guessing.