conversion
198 tools tagged "conversion".
cURL to Code Converter
Convert a curl command into equivalent JavaScript, Python, Node.js, PHP, or Go code.
Open toolPostman to OpenAPI Converter
Convert a Postman Collection into an OpenAPI 3.0.3 document.
Open toolOpenAPI to Postman Converter
Convert an OpenAPI 3.x or Swagger 2.0 spec into a Postman Collection v2.1.
Open toolPostman JSON to cURL
Convert a single Postman request-item JSON into an equivalent curl command.
Open toolGraphQL to REST Mapping Helper
Suggest heuristic REST verb+path mappings for a GraphQL query or mutation's top-level fields.
Open toolcURL to Postman JSON Converter
Convert a curl command into a Postman request-item JSON object.
Open toolSQL to NoSQL Query Converter
Convert a simple SQL SELECT statement into an equivalent MongoDB-style find() query.
Open toolHTML to JSX Converter
Convert pasted HTML markup into equivalent JSX, with class/for renamed and attributes camelCased.
Open toolJSX to HTML Converter
Convert simple JSX markup into plain HTML, with className/htmlFor renamed and style objects inlined.
Open toolCSS to Tailwind Converter
Convert plain CSS rules into their closest Tailwind CSS utility class equivalents.
Open toolTailwind to CSS Converter
Convert a space-separated list of Tailwind utility classes into equivalent plain CSS declarations.
Open toolASCII to Hex Converter
Convert plain ASCII text to space-separated uppercase hex bytes, one pair per character.
Open toolBig Endian Hex to Little Endian Hex Converter
Convert a big-endian hex value into its little-endian byte order.
Open toolHex Digit Duplicator
Repeat every digit of a hex value a set number of times in place.
Open toolHex Digit Extractor
Pull out a single hex digit from a value by its 0-based position, counted from the left.
Open toolHex Endianness Swapper
Reverse the byte order of a hex string, swapping between little-endian and big-endian layout.
Open toolHex Nibble Reverser
Reverse the order of a hex value's individual digits, distinct from byte-level endianness swaps.
Open toolHex Nibble Rotator
Deterministically rotate the individual hex digits of a value by a chosen number of positions.
Open toolHex Nibble Shuffler
Randomly shuffle the individual hex digits of a value using cryptographically secure randomness.
Open toolHex Number Inverter
Flip every bit of a hexadecimal number, a quick way to compute its bitwise complement.
Open toolHex Number Joiner
Combine a list of hex numbers, one per line or space-separated, into a single hex string.
Open toolHex to ASCII Converter
Decode space-separated or contiguous hex bytes back into 7-bit ASCII text.
Open toolHex to IP Address Converter
Turn 8 raw hex digits into a readable dotted-quad IPv4 address like 192.168.1.1.
Open toolHex to IPv6 Converter
Turn 32 raw hex digits into a colon-separated IPv6 address, plus its RFC 5952 compressed form.
Open toolHex to UTF-8 Converter
Decode hex bytes as UTF-8 text, correctly handling multi-byte characters and invalid sequences.
Open toolIP Address to Hex Converter
Convert a dotted-quad IPv4 address like 192.168.1.1 into its raw 8-digit hex value.
Open toolIPv6 to Hex Converter
Expand a full or compressed IPv6 address into its raw 32-hex-digit representation.
Open toolLittle Endian Hex to Big Endian Hex Converter
Convert a little-endian hex value into its big-endian byte order.
Open toolUTF-8 to Hex Converter
Encode any Unicode text as its real UTF-8 byte sequence, formatted as hex.
Open toolBencode to JSON Converter
Decode Bencode text (the format BitTorrent .torrent files use) into JSON.
Open toolBSON to JSON Converter
Decode hex-encoded BSON bytes back into a readable JSON document.
Open toolCSON to JSON Converter
Parse a CSON (CoffeeScript Object Notation) document's indented blocks and inline arrays into JSON.
Open toolCSV to JSON Converter
Convert CSV rows into a JSON array of objects, using the header row as keys.
Open toolData URI to JSON Converter
Decode a data:application/json;base64,... (or percent-encoded) URI back into pretty-printed JSON.
Open toolForm Data to JSON Converter
Parse application/x-www-form-urlencoded text, including bracket-path field names, into nested JSON.
Open toolINI to JSON Converter
Parse INI text (sections, key=value lines, comments) into a JSON object.
Open toolJSON Double Quote Converter
Convert single-quoted JS-object-literal-like text back into valid double-quoted JSON.
Open toolJSON Quote Fixer
Best-effort repair of single-quoted, curly-quoted, or unquoted-key JSON-like text into valid JSON.
Open toolJSON Single Quote Converter
Replace every structural double quote in pretty-printed JSON with a single quote.
Open toolJSON Syntax Changer
Convert valid JSON into relaxed JS-object-literal syntax with unquoted identifier keys.
Open toolJSON to Bencode Converter
Encode a JSON value as Bencode, the encoding BitTorrent .torrent files use.
Open toolJSON to BSON Converter
Encode a JSON object as BSON, the binary format MongoDB uses on the wire.
Open toolJSON to CSON Converter
Render a JSON object as CSON (CoffeeScript Object Notation): indented blocks, bare keys, inline scalar arrays.
Open toolJSON to CSV Converter
Convert a JSON array of objects into CSV.
Open toolJSON to Form Data Converter
Flatten a JSON object into application/x-www-form-urlencoded text with bracket-path keys.
Open toolJSON to HTML Converter
Render JSON as semantic HTML: objects become definition lists, arrays become unordered lists.
Open toolJSON to INI Converter
Convert a JSON object into classic INI format with sections and key=value lines.
Open toolJSON to JSON Lines Converter
Convert a JSON array into JSON Lines (JSONL): one compact JSON value per line.
Open toolJSON to LaTeX Table Converter
Render a JSON array of objects as a LaTeX tabular table, ready to paste into a document.
Open toolJSON to List Converter
Convert a JSON array into a plain line-by-line list, no brackets, quotes, or commas.
Open toolJSON to Lua Table
Serialize JSON into a Lua table literal, the exact inverse of the Lua to JSON Table parser.
Open toolJSON to MessagePack Converter
Encode JSON as hex-dumped MessagePack using the smallest fixed-size encoding for every value.
Open toolJSON to PHP Array Converter
Render JSON as a PHP array literal using modern short-array syntax, ready to paste into PHP source.
Open toolJSON to Properties Converter
Flatten JSON into dot-notation key=value lines (Java .properties format).
Open toolJSON to Protobuf Converter
Encode JSON as protobuf wire-format bytes without a .proto schema, with a field-number legend.
Open toolJSON to Text Converter
Turn JSON into an indented, punctuation-free plain-text outline.
Open toolJSON to TOML Converter
Convert a JSON object into a TOML document with tables and array-of-tables.
Open toolJSON to TOON
Convert JSON to TOON, a compact format designed to use fewer LLM tokens.
Open toolJSON to TSV Converter
Flatten a JSON array into tab-separated rows.
Open toolJSON to UBJSON Converter
Encode a JSON value as UBJSON (Universal Binary JSON), shown as a hex dump.
Open toolJSON to XML Converter
Convert JSON data into well-formed XML markup.
Open toolJSON to YAML Converter
Convert JSON into clean, block-style YAML.
Open toolJSON Lines to JSON Converter
Parse JSON Lines (JSONL/NDJSON) text, one JSON value per line, into a single JSON array.
Open toolList to JSON Converter
Convert a plain newline-separated list into a pretty-printed JSON array of strings.
Open toolLua to JSON Table
Parse a Lua table literal into equivalent JSON.
Open toolMessagePack to JSON Converter
Decode hex-encoded MessagePack bytes back into readable JSON.
Open toolPHP Array to JSON Converter
Parse a PHP array literal (short [...] or array(...) syntax) into JSON.
Open toolProperties to JSON Converter
Parse a Java .properties file into nested JSON.
Open toolProtobuf to JSON Converter
Decode hex-encoded protobuf bytes into JSON with generic field1, field2 labels, no schema needed.
Open toolString to JSON Array Converter
Split raw text by a delimiter into a JSON array of trimmed, non-empty strings.
Open toolTOML to JSON Converter
Parse a TOML document (tables and array-of-tables included) into JSON.
Open toolTSV to JSON Converter
Convert tab-separated rows into a JSON array of objects, using the header row as keys.
Open toolUBJSON to JSON Converter
Decode hex-encoded UBJSON (Universal Binary JSON) bytes back into JSON.
Open toolXML to JSON Converter
Convert an XML document into equivalent JSON.
Open toolYAML to JSON Converter
Convert a YAML document into equivalent, pretty-printed JSON.
Open toolMarkdown to HTML Converter
Convert Markdown into clean, semantic HTML.
Open toolHTML to Markdown Converter
Convert HTML into clean Markdown you can edit as plain text.
Open toolMarkdown Stripper
Strip Markdown syntax down to plain, readable text.
Open toolMarkdown Table Parser
Parse a Markdown pipe table into JSON objects or CSV rows, with per-column alignment.
Open toolMarkdown to PDF Converter
Render Markdown, then save it as a PDF through your browser's print dialog.
Open toolMarkdown to YAML
Extract a Markdown document's frontmatter and heading structure into YAML.
Open toolMarkdown Live Editor & PDF Exporter
Live split-pane Markdown editor with a rendered/HTML-source toggle and one-click PDF export.
Open toolMarkdown to Word (DOCX) Converter
Convert Markdown into a real, downloadable .docx file, built entirely in your browser.
Open toolMarkdown to Slack / Teams Converter
Convert standard Markdown into the formatting Slack and Microsoft Teams messages actually support.
Open toolIP to Long Converter
Convert a dotted-quad IPv4 address into its 32-bit unsigned integer form.
Open toolLong to IP Converter
Convert a 32-bit unsigned integer back into a dotted-quad IPv4 address.
Open toolIPv4 to IPv6 Converter
Convert an IPv4 address into its IPv4-mapped IPv6 form.
Open toolIPv6 to IPv4 Converter
Extract the embedded IPv4 address from an IPv4-mapped, 6to4, or NAT64 IPv6 address.
Open toolIP Range to CIDR Converter
Convert a start/end IPv4 range into the minimal list of CIDR blocks that cover it exactly.
Open toolASCII to String Converter
Decode space-separated ASCII codes back into text.
Open toolBBCode to String Converter
Wrap BBCode markup as a quoted, escaped string literal.
Open toolBinary to String Converter
Decode space-separated binary code points back into text.
Open toolBytes to String Converter
Decode space-separated UTF-8 byte values back into text.
Open toolCSV to String Converter
Wrap CSV text as a quoted, escaped string literal.
Open toolDecimal to String Converter
Decode space-separated decimal Unicode code points back into text.
Open toolDigits to Letters Converter
Convert space-separated numbers 1-26 back to their letters.
Open toolDigits to Number Words Converter
Convert standalone digit numbers (0-999) in text to spelled-out words.
Open toolHex to String Converter
Decode space-separated hexadecimal code points back into text.
Open toolHTML to String Converter
Wrap HTML markup as a quoted, escaped string literal.
Open toolJSON String Decoder
Decode a quoted JSON string literal back to its original text.
Open toolJSON String Encoder
Validate JSON, then wrap it as a quoted, escaped string literal.
Open toolJSON to String
Validate JSON and collapse it to a single-line string.
Open toolLetters to Digits Converter
Convert each letter to its 1-based alphabet position number (a=1 ... z=26).
Open toolNumber Words to Digits Converter
Convert spelled-out English numbers (0-999) in text to digit form.
Open toolOctal to String Converter
Decode space-separated octal code points back into text.
Open toolString to ASCII Converter
Convert ASCII-only text to space-separated decimal ASCII codes.
Open toolString to Binary Converter
Convert text to space-separated 8-bit binary code points.
Open toolString to Bytes Converter
Convert text to its actual UTF-8 byte values, space-separated.
Open toolString to CSV Converter
Unwrap a quoted string literal back into raw CSV text.
Open toolString to Decimal Converter
Convert text to space-separated decimal Unicode code points.
Open toolString to Hex Converter
Convert text to space-separated 2-digit hexadecimal code points.
Open toolString to Octal Converter
Convert text to space-separated 3-digit octal code points.
Open toolXML to String Converter
Wrap XML markup as a quoted, escaped string literal.
Open toolCSV Delimiter Detector and Normalizer
Detect whether pasted CSV-like text uses commas, semicolons, tabs, or pipes, and normalize it to commas.
Open toolCSV to TOON
Convert CSV rows into TOON's compact tabular array syntax, designed to use fewer LLM tokens than JSON.
Open toolCSV Joiner & Column Splicer
Left-join two CSVs on a shared key column, or extract just the columns you need from one CSV.
Open toolXML Syntax Highlighter
Highlight XML syntax and export it as portable, self-contained HTML.
Open toolXML to Image Converter
Render syntax-highlighted XML as a downloadable PNG image.
Open toolXML to JSON Converter
Convert XML into equivalent, pretty-printed JSON.
Open toolJSON to XML Converter
Convert JSON into indented, well-formed XML with a custom root element.
Open toolXML to CSV Converter
Flatten XML records into comma-separated CSV rows.
Open toolCSV to XML Converter
Convert CSV rows into a well-formed XML document.
Open toolXML to YAML Converter
Convert XML into clean, indented YAML.
Open toolYAML to XML Converter
Convert YAML into indented, well-formed XML with a custom root element.
Open toolXML to TSV Converter
Flatten XML records into tab-separated TSV rows.
Open toolTSV to XML Converter
Convert tab-separated TSV rows into a well-formed XML document.
Open toolXML to Base64 Converter
Validate XML, then Base64-encode its raw bytes.
Open toolBase64 to XML Converter
Decode Base64 back to UTF-8 text and pretty-print it as XML.
Open toolXML URL Encoder
Validate XML, then percent-encode it for safe use in a URL.
Open toolXML URL Decoder
Percent-decode a URL-encoded value, then pretty-print it as XML.
Open toolXML to Text Converter
Extract plain text from XML, stripping all tags, attributes, and comments.
Open toolXML to Table Converter
Render XML's repeated elements as an actual HTML table, columns and rows, not just text.
Open toolXML Flattener
Collapse a nested XML document into a flat list of dot/bracket-path keys and values.
Open toolXML to Properties Converter
Convert XML into Java-style .properties key=value lines.
Open toolProperties to XML Converter
Convert Java-style .properties key=value lines into a well-formed XML document.
Open toolXML to INI Converter
Convert XML into classic INI format: [section] headers and key=value lines.
Open toolINI to XML Converter
Convert classic INI text ([section] headers, key=value lines) into a well-formed XML document.
Open toolXML to TOML Converter
Convert XML into TOML: key = value lines, [section] tables, and [[section]] array-of-tables.
Open toolTOML to XML Converter
Convert TOML (key = value, [section] tables, [[section]] array-of-tables) into a well-formed XML document.
Open toolXML to Data URI Converter
Wrap an XML document as a data: URI you can embed directly in HTML, CSS, or a config value.
Open toolData URI to XML Converter
Decode a data:application/xml;base64,... URI (or a bare Base64 string) back into readable XML.
Open toolXML to PHP Array Converter
Convert XML into a ready-to-paste PHP array literal using modern short-array syntax.
Open toolXML to SQL Converter
Turn repeated XML elements into one INSERT INTO statement per row.
Open toolSQL to XML Converter
Turn INSERT INTO ... VALUES (...) statements into XML rows.
Open toolXML to Bencode Converter
Convert XML into Bencode, the encoding BitTorrent .torrent files use.
Open toolBencode to XML Converter
Decode Bencode (the BitTorrent encoding) into readable, well-formed XML.
Open toolXML to BXML Converter
Encode XML as this site's own compact binary tree format, shown as hex.
Open toolBXML to XML Converter
Decode this site's compact binary XML (hex) format back into readable, well-formed XML.
Open toolXML to BSON Converter
Convert XML into BSON, the binary document format MongoDB uses, shown as hex.
Open toolBSON to XML Converter
Decode hex-encoded BSON (MongoDB's binary document format) into readable XML.
Open toolXML to XLS Converter
Turn repeated XML elements into an Excel-openable spreadsheet file.
Open toolXLS to XML Converter
Convert spreadsheet text (pasted cells, or CSV exported from Excel) into a well-formed XML document.
Open toolXML to PDF Converter
Render pretty-printed XML and save it as a PDF using your browser's print dialog.
Open toolXML to Compressed JSON
Convert XML into minified, single-line JSON.
Open toolPHP Array to XML Converter
Parse a PHP array literal ([...] or array(...)) and convert it into well-formed XML.
Open toolHTML to XML Converter
Convert HTML into well-formed XML: void elements self-close, attributes get quoted, text gets escaped.
Open toolJSON to YAML Converter
Turn JSON into clean, readable YAML.
Open toolCSV to YAML Converter
Convert a CSV table into a YAML list of records.
Open toolINI to YAML
Convert classic [section]-based INI files into nested YAML.
Open toolENV to YAML
Convert .env-style KEY=value lines into a flat YAML mapping.
Open toolHCL to YAML
Convert HCL blocks and attributes (a Terraform-style config subset) into nested YAML.
Open toolHOCON to YAML
Convert HOCON (Typesafe Config) key/value pairs and dot-paths into nested YAML.
Open toolSQL to YAML
Convert a CREATE TABLE statement into a YAML table/column schema description.
Open toolHTML to YAML
Convert simple, well-formed HTML into a YAML tree of tag/attributes/children/text nodes.
Open toolYAML to TOON
Convert YAML into TOON, a compact, indentation-based, LLM-token-efficient format.
Open toolNestedText to YAML Converter
Parse NestedText's key/list/multiline syntax into nested YAML.
Open toolProperties to YAML Converter
Rebuild nested YAML from flat Java-style key=value .properties lines.
Open toolTOML to YAML Converter
Convert TOML tables and arrays of tables into nested YAML.
Open toolTSV to YAML Converter
Convert tab-separated values into a YAML list of records.
Open toolXML to YAML Converter
Convert XML documents into readable YAML.
Open toolYAML Flattener
Collapse nested YAML mappings and sequences into flat dot-notation keys.
Open toolYAML to CSV Converter
Convert a YAML list of records into a CSV table.
Open toolYAML to JSON Converter
Convert YAML documents into properly formatted JSON.
Open toolYAML to NestedText Converter
Convert YAML into NestedText's minimal, everything-is-a-string format.
Open toolYAML to PDF Converter
Format and syntax-highlight YAML, then print or save it as a PDF.
Open toolYAML to PHP Array Converter
Turn YAML into a ready-to-paste PHP array literal with proper quoting and escaping.
Open toolYAML to Properties Converter
Flatten YAML into Java-style key=value .properties lines.
Open toolYAML to TOML Converter
Convert YAML into TOML's table and array-of-tables syntax.
Open toolYAML to TSV Converter
Convert a YAML list of records into tab-separated values.
Open toolYAML to XML Converter
Convert YAML documents into indented XML.
Open toolYAML Key Replacer
Rename a mapping key to a new name everywhere it appears in a YAML document.
Open toolYAML Value Replacer
Replace every leaf scalar value that exactly matches a query with a new value.
Open toolPHP Array to YAML Converter
Paste a PHP array literal and get back the equivalent YAML document.
Open toolBinary List to Text List Converter
Decode a list of space-separated binary bytes back into UTF-8 text, item by item.
Open toolList Item Joiner
Join list items into a single string using a configurable glue, like Array.prototype.join(), e.g. " | " turns a, b, c into a | b | c.
Open toolList Separator Changer
Parse a list using one separator and rejoin it using a different one, e.g. newline-separated to comma-separated.
Open toolList Separator Remover
Remove the separators entirely, concatenating every list item directly together into one unbroken blob.
Open toolList to Excel Converter
Build a real downloadable .xlsx spreadsheet with one list item per row in column A.
Open toolList to HTML List Converter
Wrap list items as an HTML <ul> or <ol> list, with each item as an escaped <li>.
Open toolList to Image Converter
Render your list as monospace text lines on a canvas and download it as a PNG.
Open toolList to LaTeX List Converter
Wrap list items as a LaTeX itemize environment, escaping LaTeX's reserved characters automatically.
Open toolList to Markdown List Converter
Prefix list items as a Markdown list, with an Unordered (- ) or Ordered (1., 2., ...) toggle.
Open toolList to PDF Converter
Build a real downloadable .pdf with one list item per line of text, using a hand-rolled minimal PDF writer.
Open toolList to XML Converter
Wrap list items as <list><item>a</item><item>b</item></list>, escaping XML's special characters.
Open toolList to YAML Converter
Convert a plain list into a YAML block sequence, quoting items that need it.
Open toolText List to Binary List Converter
Convert every item in a list to its UTF-8 binary representation, byte by byte.
Open toolXML to List Converter
Parse simple <item>...</item> elements (or any single repeated tag, auto-detected) out of pasted XML into a plain list.
Open toolYAML to List Converter
Parse a flat YAML block sequence back into a plain list with your choice of separator.
Open tool