Local input
The current tools process pasted text in the browser.
1024Base
Format JSON, decode Base64, compare URLs, convert timestamps, generate IDs, and clean text without opening a full app.
Frequent jobs
Categories
Format API responses, validate payloads, and clean config snippets.
Encoding Tools 1 toolEncode Base64, decode pasted values, and fix copied URL text.
Web Tools 2 toolsDecode query strings, compare links, and prepare callback URLs.
Text Tools 2 toolsCompare strings, convert case styles, and tidy names for code.
Conversion Tools 3 toolsRead timestamps, convert CSS units, and prepare test values.
CSS Tools 1 toolConvert units for layout checks and design handoff.
Product basics
The current tools process pasted text in the browser.
Open a tool, paste a value, copy the result.
Validation errors and converted output stay close to the editor.
The public tools here are free for routine debugging.
Saved locally
Recently opened
Common fixes
Unexpected token errors usually mean the parser found a character that is not allowed at that exact point in the JSON.
Base64 decoding usually fails because the input contains extra text, a URL-safe alphabet, missing padding, or characters that are not part of standard Base64.
The same date can be written as Unix seconds or Unix milliseconds. Mixing the two is one of the fastest ways to get a date that looks wildly wrong.
Spaces are not safe inside URLs. Percent-encoding changes each space to %20 so the link can travel cleanly through browsers, APIs, and logs.
UUID v4 is random. UUID v7 includes time information, so newly generated IDs sort more naturally by creation time.
camelCase and snake_case are both common naming styles. The right choice usually depends on the language, API, or project convention you are working inside.
Field notes
Unexpected token errors usually mean the parser found a character that is not allowed at that exact point in the JSON.
Read guideJSON does not allow a comma after the final item in an object or array, even though many JavaScript examples do.
Read guideRaw API responses are often minified. Formatting gives each object and array enough space to inspect quickly.
Read guideJSON minifying removes whitespace and line breaks after the input parses successfully.
Read guideAll tools
11 tools available
No matching tools yet. Try a shorter search term.
About 1024base
1024base is a small set of browser tools for the values developers touch all day: JSON, encoded strings, URLs, timestamps, CSS units, IDs, and text. The site is designed to be plain, fast, and easy to return to.