N‑Triples to JSON‑LD Converter - Online RDF Translation
Paste N‑Triples data and convert it to a compact JSON‑LD representation. Work with linked open data. Local.
UD5 Toolkit
Convert JSON objects to URL-encoded form data strings for POST requests
{"name":"John","age":30} becomes name=John&age=30. This encoding is essential for traditional server-side form processing, API calls using Content-Type: application/x-www-form-urlencoded, and URL query string construction. Nested objects use bracket notation like user[name]=John, while arrays can use tags[]=dev or indexed tags[0]=dev notation.
{"user":{"name":"John","address":{"city":"NYC"}}} becomes user[name]=John&user[address][city]=NYC. Arrays can be formatted in three ways: brackets (tags[]=a&tags[]=b, PHP-style), indexed (tags[0]=a&tags[1]=b), or repeated keys (tags=a&tags=b). Choose the format that matches your backend framework's expectations — PHP natively supports bracket notation, while some frameworks prefer indexed arrays.
$_POST (PHP), request.form (Flask), or similar form parsers. Use JSON (application/json) for modern REST APIs, complex nested data structures, or when working with JavaScript frontends. Form data is simpler but less expressive; JSON handles deep nesting and typed data more naturally. This converter bridges the gap when you need to send JSON-structured data to a form-encoded endpoint.
%20 or +, ampersands become %26, and equals signs become %3D. Without proper encoding, values containing & or = would corrupt the form data structure. This tool uses encodeURIComponent() for values by default, ensuring all special characters are safely encoded. You can toggle encoding off to see the raw structure, but always encode when sending actual requests.
user[name] automatically becomes $_POST['user']['name']. Express.js with express.urlencoded({extended: true}) uses the qs library for rich nested parsing. Flask (Python) requires manual parsing or the werkzeug multidict. Spring Boot (Java) can bind indexed arrays but may need @ModelAttribute configuration. Ruby on Rails uses Rack's nested param parsing with bracket notation. Always check your framework's documentation for the expected array and nesting format — this tool's array format selector helps you match your backend's requirements.
multipart/form-data. Multipart encoding is required for file uploads and uses a completely different format with boundary separators. If you need to include files in a request, use FormData objects in JavaScript or proper multipart encoding libraries. This tool is designed for text-only key-value pairs typically sent in standard form submissions, API authentication flows, and URL query strings.
fetch(url, {method:'POST', headers:{'Content-Type':'application/x-www-form-urlencoded'}, body: formDataString}). cURL: curl -X POST -d "key=value&key2=value2" https://api.example.com. PHP: Use the string directly with file_get_contents('php://input') or let the server parse it automatically into $_POST. Python requests: requests.post(url, data=formDataString, headers={'Content-Type':'application/x-www-form-urlencoded'}). The output from this tool is ready to use as the request body.
Paste N‑Triples data and convert it to a compact JSON‑LD representation. Work with linked open data. Local.
Encode text or numbers into base62 (0‑9a‑zA‑Z) and decode back. Ideal for shortening integer IDs and URLs. Local.
Build a yoga flow by dragging pose cards into a sequence. Pose reference images included. Print or share your flow.
Enter your birth year and instantly see your Chinese zodiac animal and element. Fun cultural reference.
Convert dates between Hijri and Gregorian using the Umm al‑Qura algorithm. Approximate local moon sighting may vary.
Convert any PNG image into a proper .ico favicon file with multiple sizes embedded. For website icons. Local.
Convert hex or RGB to CIELAB L*a*b* values. Understand perceptual lightness and color opponents. Local math.
Paste a JSON object and see a dynamic, draggable tree graph representation. Excellent for debugging nested data.
Paste a human‑readable date (like 'next Friday' or 'March 5, 2023') and convert it to ISO 8601 format. Quick and tolerant.
Convert between Gregorian and Hijri (Islamic) dates. Approximate visual reference. Local algorithm.
Translate between binary and Gray code (reflected binary code). See the bit changes. Useful for digital logic.
Encode decimal integers into signed magnitude binary representation and decode back. Learn computer arithmetic.
Convert a decimal number to 32-bit single precision IEEE 754 format. See sign, exponent, mantissa bits. Developer tool.
Convert any date into Roman numerals (day‑month‑year) for tattoos or special occasions. Clean and local.
Convert minutes to decimal hours and vice versa. Essential for billing and payroll. Instant conversion with a handy chart.
Upload a logo and generate a pack of favicon sizes plus a .ico file. All conversion in your browser.
Convert between units of absorbed dose and equivalent dose (Gray, Rad, Rem, Sievert). Educational and reference. Local calculation.
Convert power units: watt, kilowatt, horsepower, BTU/h. Quick reference for electrical and mechanical engineering. Browser-based.
Convert units of force: Newton, kilonewton, pound-force, dyne. Handy for physics homework and engineering. Private, no upload.
Convert torque units between Newton-meter, foot-pound, inch-pound, and more. Essential for mechanics and engineers. Instant local conversion.
Trim a video clip and convert it into an animated GIF. Adjust frame rate and size. Processing stays on your computer for privacy.
Convert audio files between popular formats like WAV, MP3, and OGG directly in the browser. No upload, fast encoding using WebAudio and ffmpeg wasm.
Strip HTML tags and convert web content to plain Markdown. Preserve headings, lists, and links. Perfect for content migration. All processing in browser.
Easily convert JSON data arrays into CSV format for Excel or database import. Handles nested structures with flattening options. All conversions happen locally, no data uploaded.
Convert numbers between binary, octal, decimal, and hexadecimal bases. See real-time conversion as you type. Clean and simple programmer utility.
Convert angles between degrees, radians, and grads. Quick reference for mathematics and engineering. Simple and ad-free.
Convert between common pressure units: Pascal, Bar, PSI, atmosphere, and Torr. Useful for engineering and weather enthusiasts. Local calculation.
Convert volume and capacity units: gallon (US/UK), liter, milliliter, cup, and fluid ounce. Handy for cooking and science. Works entirely offline.
Convert speed units such as miles per hour, kilometers per hour, knots, and meters per second. Accurate and quick, works offline in your browser.
Convert temperature between Celsius, Fahrenheit, and Kelvin instantly. Simple slider and input fields. Useful for travel and science homework.