# Delimiter.live > Delimiter.live is a free collection of browser-based and web-based text, data conversion, formatting, extraction, encoding, developer, and network utility tools. All tools are free, require no account, and each tool page states whether it processes data in your browser or on the server. 115 tools across 6 categories, plus guides, reference tables and topic hubs. ## Data processing - Text, data conversion, developer, extraction and encoding tools run entirely in the visitor's browser. Input is never transmitted to Delimiter.live. - Network tools (DNS lookup, IP lookup, HTTP header checker, URL redirect checker, My IP) and the QR code generator and bcrypt tool run on the server. Input is processed to produce a response and is not stored in a database. - The IP lookup tool passes the address you enter to a third-party geolocation provider. ## Key pages - [Home](https://www.delimiter.live/): Popular tools and the six categories - [All tools](https://www.delimiter.live/tools): The complete tool directory with search - [Guides](https://www.delimiter.live/guides): How-to walkthroughs and format comparisons - [Reference](https://www.delimiter.live/reference): Citable lookup tables - [About](https://www.delimiter.live/about): What the site is and who builds it - [Privacy policy](https://www.delimiter.live/privacy): Exactly which tools process data where - [Terms of use](https://www.delimiter.live/terms) - [Contact](https://www.delimiter.live/contact) - [Sitemap](https://www.delimiter.live/sitemap.xml): Every indexable URL ## Reference tables Citable lookup tables, each complete rather than a summary. - [ASCII Table](https://www.delimiter.live/reference/ascii-table): All 128 ASCII codes in decimal, hex, octal and binary. - [Social Media Character Limits](https://www.delimiter.live/reference/social-media-character-limits): Post, bio and caption limits for every major platform in one table. - [SEO Character Limits](https://www.delimiter.live/reference/seo-character-limits): Title, description, ad and Open Graph limits, and why they are really pixel widths. - [HTML Entities](https://www.delimiter.live/reference/html-entities): Named and numeric character references, grouped by what they are for. - [DNS Record Types](https://www.delimiter.live/reference/dns-record-types): What each DNS record type does and when you need it. - [HTTP Headers](https://www.delimiter.live/reference/http-headers): The request and response headers worth knowing, grouped by job. - [Regex Cheat Sheet](https://www.delimiter.live/reference/regex-cheat-sheet): Regular expression syntax, grouped by what you are trying to match. - [Hash Algorithm Comparison](https://www.delimiter.live/reference/hash-algorithms): Which hash to use for what, and which are broken. - [Cron Expression Examples](https://www.delimiter.live/reference/cron-expression-examples): The schedules people actually write, plus the five fields and the shorthand macros. - [URL Encoding Table](https://www.delimiter.live/reference/url-encoding-table): Every percent-encoded character, which ones are reserved, and which never need encoding. ## Guides How-to walkthroughs and technical comparisons. - [How to Format JSON](https://www.delimiter.live/guides/how-to-format-json): Turn minified or broken JSON into something readable, and fix it when it will not parse. - [How to Convert CSV to JSON](https://www.delimiter.live/guides/how-to-convert-csv-to-json): Turn a spreadsheet export into a clean JSON array, with the delimiter and header options that matter. - [How to Remove Duplicate Lines](https://www.delimiter.live/guides/how-to-remove-duplicate-lines): De-duplicate a list while keeping its order, with the case and whitespace options that decide what counts as a duplicate. - [How to Check DNS Records](https://www.delimiter.live/guides/how-to-check-dns-records): Look up A, MX, TXT and NS records for a domain, and read what they actually tell you. - [How to Decode a JWT](https://www.delimiter.live/guides/how-to-decode-jwt): Read the header and payload of a JSON Web Token, check its expiry, and understand why decoding is not verifying. - [How to Test a Regular Expression](https://www.delimiter.live/guides/how-to-test-regex): Build and debug a regex against real sample text, read the capture groups, and avoid the patterns that hang. - [How to Check HTTP Redirects](https://www.delimiter.live/guides/how-to-check-http-redirects): Trace a URL through every hop to its destination, and tell a permanent redirect from a temporary one. - [How to Generate a Secure Password](https://www.delimiter.live/guides/how-to-generate-a-secure-password): Produce a genuinely random password or passphrase, and understand what actually makes one strong. - [How to Convert XML to JSON](https://www.delimiter.live/guides/how-to-convert-xml-to-json): Turn an XML document or feed into JSON, and handle the attributes and repeated elements that make it lossy. - [How to Hash Text with SHA-256](https://www.delimiter.live/guides/how-to-hash-text-with-sha256): Produce a SHA-256 digest, compare it against a published checksum, and know when SHA-256 is the wrong tool. - [How to Compare Two Lists](https://www.delimiter.live/guides/how-to-compare-two-lists): Find what two lists share and what only one of them has, without a spreadsheet formula. - [How to Calculate a Subnet](https://www.delimiter.live/guides/how-to-calculate-a-subnet): Read CIDR notation and work out the network, broadcast and usable host range. - [How to Convert JSON to SQL](https://www.delimiter.live/guides/how-to-convert-json-to-sql): Turn a JSON array into INSERT statements, and the traps to avoid when you run them. - [How to Convert a Unix Timestamp](https://www.delimiter.live/guides/how-to-convert-a-unix-timestamp): Turn epoch seconds into a readable date, and avoid the milliseconds and time zone traps. - [How to URL Encode Text](https://www.delimiter.live/guides/how-to-url-encode): Percent-encode a value safely, and know when to encode the component rather than the whole URL. - [How to Fix Broken Characters in Text](https://www.delimiter.live/guides/how-to-fix-broken-characters): Diagnose mojibake, question marks and invisible characters, and repair the text. - [How to Make a Markdown Table](https://www.delimiter.live/guides/how-to-make-a-markdown-table): Build a pipe table, set alignment, and handle the content Markdown tables cannot hold. - [How to Debug an API Request](https://www.delimiter.live/guides/how-to-debug-an-api-request): Work through a failing request in order, from the status code to the payload. - [How to Verify a Webhook Signature](https://www.delimiter.live/guides/how-to-verify-a-webhook-signature): Reproduce an HMAC signature correctly, and find out why yours does not match. - [How to Write Meta Tags](https://www.delimiter.live/guides/how-to-write-meta-tags): The head tags that actually matter, what to put in them, and the ones to ignore. - [How to Write a robots.txt](https://www.delimiter.live/guides/how-to-write-a-robots-txt): Control crawling correctly, and understand what the file cannot do. - [How to Fix "Unexpected Token" JSON Errors](https://www.delimiter.live/guides/how-to-fix-unexpected-token-in-json): What each JSON.parse error message actually means, and why the problem is usually the response rather than the parser. - [How to Fix CSV Files Broken by Excel](https://www.delimiter.live/guides/how-to-fix-csv-files-broken-by-excel): Leading zeros stripped, dates reformatted, long numbers turned into scientific notation, and accents turned to mojibake. - [How to Fix Base64 Decoding Errors](https://www.delimiter.live/guides/how-to-fix-base64-decoding-errors): Padding, the URL-safe alphabet, stray whitespace and double encoding — the four reasons a decode refuses. - [How to Fix XML Parsing Errors](https://www.delimiter.live/guides/how-to-fix-xml-parsing-errors): Content is not allowed in prolog, unescaped ampersands, mismatched tags and undeclared entities. - [How to Fix JWT Signature and Expiry Errors](https://www.delimiter.live/guides/how-to-fix-jwt-signature-errors): Invalid signature, token expired, malformed token — what each rejection actually tells you. - [How to Write a Cron Expression](https://www.delimiter.live/guides/how-to-write-a-cron-expression): The five fields, what the special characters mean, and the two mistakes that cause a job to run far more often than intended. - [How to Fix a Regular Expression That Hangs](https://www.delimiter.live/guides/how-to-fix-slow-regular-expressions): Catastrophic backtracking explained: why a pattern that works on short input freezes on slightly longer input. - [How to Escape JSON Strings](https://www.delimiter.live/guides/how-to-escape-json-strings): Which characters must be escaped, how to embed JSON inside JSON, and why the backslashes multiply. - [How to Validate an Email Address](https://www.delimiter.live/guides/how-to-validate-an-email-address): Why the perfect regex is the wrong goal, and what to check instead. - [How to Generate TypeScript Types from JSON](https://www.delimiter.live/guides/how-to-generate-typescript-from-json): Turn a sample API response into interfaces, and fix what a single sample cannot tell you. - [How to Flatten Nested JSON](https://www.delimiter.live/guides/how-to-flatten-nested-json): Turn a deep document into single-level dot-notation keys, and know when flattening loses information. - [How to Convert an HTML Table to CSV](https://www.delimiter.live/guides/how-to-convert-an-html-table-to-csv): Get a table off a web page and into a spreadsheet, including the merged cells that break the alignment. - [How to Read a User Agent String](https://www.delimiter.live/guides/how-to-read-a-user-agent-string): Why every browser claims to be Mozilla, and what you can and cannot conclude from the string. - [How to Choose the Right MIME Type](https://www.delimiter.live/guides/how-to-choose-a-mime-type): What a Content-Type header actually decides, and the mismatches that make browsers download files instead of showing them. - [How to Use Data URIs](https://www.delimiter.live/guides/how-to-use-data-uris): Embed an image or font directly in your markup, and know the size at which it stops being worth it. - [JSON vs YAML](https://www.delimiter.live/guides/json-vs-yaml): Which to use for configuration and which for data interchange, and the YAML gotchas worth knowing. - [JSON vs XML](https://www.delimiter.live/guides/json-vs-xml): Why JSON replaced XML for most APIs, and the cases where XML is still the better answer. - [CSV vs TSV](https://www.delimiter.live/guides/csv-vs-tsv): Why a tab separator avoids most quoting problems, and when to use each. - [SHA-256 vs MD5](https://www.delimiter.live/guides/sha256-vs-md5): Why MD5 is broken, what that actually means, and where it is still acceptable. - [SHA-256 vs SHA-512](https://www.delimiter.live/guides/sha256-vs-sha512): Both are secure. Which to pick depends on hardware and interoperability, not strength. - [Base64 vs Encryption](https://www.delimiter.live/guides/base64-vs-encryption): Base64 is an encoding, not a cipher. What it is actually for, and why it protects nothing. - [JSON Validator vs JSON Formatter](https://www.delimiter.live/guides/json-validator-vs-json-formatter): Both parse your JSON. They differ in what they give you back and which one to reach for. - [UUID v4 vs v7](https://www.delimiter.live/guides/uuid-v4-vs-v7): Random or time-ordered — which identifier version to use, and why it affects your database. - [UTF-8 vs UTF-16](https://www.delimiter.live/guides/utf-8-vs-utf-16): Two encodings of the same character set, and why string lengths disagree between languages. - [Hashing vs Encryption](https://www.delimiter.live/guides/hashing-vs-encryption): One-way versus two-way, and why using the wrong one is a security bug. - [Bcrypt vs Argon2](https://www.delimiter.live/guides/bcrypt-vs-argon2): Which password hashing function to use now, and whether an existing bcrypt store needs replacing. - [JWT vs Session Cookies](https://www.delimiter.live/guides/jwt-vs-session-cookies): Stateless tokens or server-side sessions — and why revocation is the deciding factor. - [CSV vs JSON](https://www.delimiter.live/guides/csv-vs-json): Flat tables or nested structures — which format suits the data and the reader. - [Minification vs Compression](https://www.delimiter.live/guides/minification-vs-compression): Two different savings that stack — and why compression does most of the work. - [Character Count vs Word Count](https://www.delimiter.live/guides/character-count-vs-word-count): Which measure a platform uses, why they disagree, and when the difference bites. - [noindex vs robots.txt](https://www.delimiter.live/guides/noindex-vs-robots-txt): Blocking a page and removing it from search are different things — and using the wrong one backfires. - [URL Encoding vs HTML Encoding](https://www.delimiter.live/guides/url-encoding-vs-html-encoding): Two escaping schemes for two different destinations, and what happens when you apply the wrong one. ## Topic hubs Curated landing pages that group tools across categories by topic. - [JSON Tools](https://www.delimiter.live/json-tools): Format, validate, convert and query JSON without leaving the browser. - [CSV Tools](https://www.delimiter.live/csv-tools): Convert, reshape and inspect delimited data without a spreadsheet. - [XML Tools](https://www.delimiter.live/xml-tools): Format, check and convert XML documents safely. - [Hash Tools](https://www.delimiter.live/hash-tools): Generate and compare cryptographic digests. - [Web Development Tools](https://www.delimiter.live/web-development-tools): Format, minify and look up the details of front-end work. - [API Tools](https://www.delimiter.live/api-tools): Inspect the payloads, tokens, headers and URLs an API exchanges. - [SEO Tools](https://www.delimiter.live/seo-tools): Check the technical and on-page details that affect ranking. ## Text Tools Count, clean, reformat and analyse written text. - [Text Tools index](https://www.delimiter.live/tools/text): All 22 tools in this category - [Character Counter](https://www.delimiter.live/tools/character-counter): Count characters with and without spaces, live as you type. - [Word Counter](https://www.delimiter.live/tools/word-counter): Count words, sentences and paragraphs while you write. - [Line Counter](https://www.delimiter.live/tools/line-counter): Count total, non-empty and unique lines in any list. - [Sentence Counter](https://www.delimiter.live/tools/sentence-counter): Count sentences and see the average sentence length. - [Paragraph Counter](https://www.delimiter.live/tools/paragraph-counter): Count paragraphs and check their average length. - [Case Converter](https://www.delimiter.live/tools/case-converter): Switch text between upper, lower, title, sentence and code cases. - [Remove Duplicate Lines](https://www.delimiter.live/tools/remove-duplicate-lines): Strip repeated lines from a list and keep the order. - [Sort Lines](https://www.delimiter.live/tools/sort-lines): Sort a list alphabetically, numerically, by length or at random. - [Reverse Text](https://www.delimiter.live/tools/reverse-text): Reverse characters, words or the order of lines. - [Text Repeater](https://www.delimiter.live/tools/text-repeater): Repeat a string or block of text a set number of times. - [Text Cleaner](https://www.delimiter.live/tools/text-cleaner): Strip formatting, smart quotes and invisible characters. - [Whitespace Remover](https://www.delimiter.live/tools/whitespace-remover): Collapse spaces, replace tabs and drop blank lines. - [Find and Replace](https://www.delimiter.live/tools/find-and-replace): Replace text everywhere, with optional regex support. - [Text Difference Checker](https://www.delimiter.live/tools/text-diff): Compare two versions of a text and see what changed. - [Lorem Ipsum Generator](https://www.delimiter.live/tools/lorem-ipsum-generator): Generate placeholder paragraphs, sentences or words. - [Slug Generator](https://www.delimiter.live/tools/slug-generator): Turn any title into a clean, URL-safe slug. - [Reading Time Calculator](https://www.delimiter.live/tools/reading-time-calculator): Estimate how long an article takes to read or speak aloud. - [Keyword Density Checker](https://www.delimiter.live/tools/keyword-density-checker): See which words and phrases dominate your copy. - [Prefix and Suffix Tool](https://www.delimiter.live/tools/text-manipulation): Add text to the start or end of every line at once. - [List Comparison](https://www.delimiter.live/tools/list-comparison): Find what two lists share and what only one of them has. - [Readability Checker](https://www.delimiter.live/tools/readability-checker): Score how hard your writing is to read. - [Text Wrap](https://www.delimiter.live/tools/text-wrap): Rewrap text to a fixed line width, with an optional prefix. ## Data Conversion Tools Move data between CSV, JSON, XML, YAML and TSV. - [Data Conversion Tools index](https://www.delimiter.live/tools/data-conversion): All 19 tools in this category - [CSV to JSON Converter](https://www.delimiter.live/tools/csv-to-json): Turn CSV rows into a clean JSON array of objects. - [JSON to CSV Converter](https://www.delimiter.live/tools/json-csv-converter): Flatten a JSON array into spreadsheet-ready CSV. - [XML to CSV Converter](https://www.delimiter.live/tools/xml-csv-converter): Flatten repeating XML records into a CSV table. - [CSV to XML Converter](https://www.delimiter.live/tools/csv-xml-converter): Build well-formed XML records from CSV rows. - [XML to JSON Converter](https://www.delimiter.live/tools/xml-to-json): Convert any XML document into readable JSON. - [JSON to XML Converter](https://www.delimiter.live/tools/json-to-xml): Convert JSON objects and arrays into well-formed XML. - [YAML to JSON Converter](https://www.delimiter.live/tools/yaml-to-json): Convert YAML configuration into equivalent JSON. - [JSON to YAML Converter](https://www.delimiter.live/tools/json-to-yaml): Turn JSON into readable, correctly quoted YAML. - [TSV to CSV Converter](https://www.delimiter.live/tools/tsv-to-csv): Convert tab-separated data to comma-separated CSV. - [CSV to TSV Converter](https://www.delimiter.live/tools/csv-to-tsv): Convert comma-separated data to tab-separated values. - [Excel Column Converter](https://www.delimiter.live/tools/excel-column-converter): Convert between column letters (AB) and column numbers (28). - [Markdown to HTML Converter](https://www.delimiter.live/tools/markdown-to-html): Convert Markdown into clean, safe HTML source. - [CSV Column Extractor](https://www.delimiter.live/tools/csv-column-extractor): Keep only the columns you need from a CSV file. - [CSV Duplicate Remover](https://www.delimiter.live/tools/csv-duplicate-remover): Remove repeated rows from a CSV, by whole row or by key columns. - [CSV Sorter](https://www.delimiter.live/tools/csv-sorter): Sort CSV rows by one or more columns without a spreadsheet. - [HTML to Text Converter](https://www.delimiter.live/tools/html-to-text): Extract readable plain text from HTML, keeping the structure. - [CSV to Markdown Table](https://www.delimiter.live/tools/csv-to-markdown): Turn a spreadsheet export into a Markdown table. - [JSON to SQL Converter](https://www.delimiter.live/tools/json-to-sql): Turn a JSON array into INSERT statements. - [HTML Table to CSV](https://www.delimiter.live/tools/html-table-to-csv): Pull a table out of a web page and turn it into CSV. ## Developer Tools Format, validate, minify, hash, decode and generate. - [Developer Tools index](https://www.delimiter.live/tools/developer): All 41 tools in this category - [JSON Formatter](https://www.delimiter.live/tools/json-formatter): Beautify, validate and sort JSON with precise error messages. - [JSON Validator](https://www.delimiter.live/tools/json-validator): Check whether JSON is valid and see exactly where it breaks. - [JSON Minifier](https://www.delimiter.live/tools/json-minifier): Strip whitespace from JSON and see the size saved. - [XML Formatter](https://www.delimiter.live/tools/xml-formatter): Indent XML so nested documents become readable. - [XML Validator](https://www.delimiter.live/tools/xml-validator): Check that an XML document is well-formed. - [SQL Formatter](https://www.delimiter.live/tools/sql-formatter): Reformat dense SQL into readable, indented statements. - [HTML Formatter](https://www.delimiter.live/tools/html-beautifier): Indent HTML and make nested markup readable. - [HTML Minifier](https://www.delimiter.live/tools/html-minifier): Shrink HTML by removing whitespace and comments. - [CSS Formatter](https://www.delimiter.live/tools/css-formatter): Expand minified CSS into readable, indented rules. - [CSS Minifier](https://www.delimiter.live/tools/css-minifier): Compress CSS by removing whitespace and comments. - [JavaScript Formatter](https://www.delimiter.live/tools/js-formatter): Re-indent JavaScript so minified code becomes readable. - [JavaScript Minifier](https://www.delimiter.live/tools/js-minifier): Strip comments and whitespace from JavaScript safely. - [UUID Generator](https://www.delimiter.live/tools/uuid-generator): Generate random v4 or time-ordered v7 UUIDs in bulk. - [Regex Tester](https://www.delimiter.live/tools/regex-tester): Test a regular expression and see every match highlighted. - [Unix Timestamp Converter](https://www.delimiter.live/tools/timestamp-converter): Convert between Unix timestamps and human dates. - [Text to Binary Converter](https://www.delimiter.live/tools/binary-converter): Convert text to binary, hex, octal or decimal and back. - [JWT Decoder](https://www.delimiter.live/tools/jwt-decoder): Read a JSON Web Token header, payload and expiry. - [Color Converter](https://www.delimiter.live/tools/color-converter): Convert colours between HEX, RGB, HSL and HSV. - [HTTP Status Code Reference](https://www.delimiter.live/tools/http-status-codes): Search every HTTP status code and what it means. - [MIME Type Lookup](https://www.delimiter.live/tools/mime-type-lookup): Find the MIME type for any file extension, and back. - [QR Code Generator](https://www.delimiter.live/tools/qr-generator): Create a downloadable QR code from a link or text. - [JSON Diff](https://www.delimiter.live/tools/json-diff): Compare two JSON documents and see exactly what changed. - [JSON Flatten](https://www.delimiter.live/tools/json-flatten): Turn nested JSON into a flat map of dot-separated paths. - [JSON Unflatten](https://www.delimiter.live/tools/json-unflatten): Rebuild nested JSON from a flat map of dot-separated paths. - [JSON Merge](https://www.delimiter.live/tools/json-merge): Combine two JSON documents, with control over how arrays behave. - [JSON Escape and Unescape](https://www.delimiter.live/tools/json-escape): Escape text for use inside a JSON string, or decode it back. - [NDJSON Formatter](https://www.delimiter.live/tools/ndjson-formatter): Convert between NDJSON line-delimited records and a JSON array. - [JSON to TypeScript](https://www.delimiter.live/tools/json-to-typescript): Generate TypeScript interfaces from a sample JSON payload. - [URL Parser](https://www.delimiter.live/tools/url-parser): Split a URL into its scheme, host, path, query and fragment. - [Query String Parser](https://www.delimiter.live/tools/query-string-parser): Decode a query string into a readable table of parameters. - [HTTP Header Parser](https://www.delimiter.live/tools/http-header-parser): Turn a raw header block into a readable table. - [Cron Expression Parser](https://www.delimiter.live/tools/cron-parser): Explain a cron expression in plain English and show its next runs. - [Number Base Converter](https://www.delimiter.live/tools/number-base-converter): Convert numbers between any bases from 2 to 36. - [Email Address Validator](https://www.delimiter.live/tools/email-validator): Check a list of email addresses for syntax errors. - [Random Number Generator](https://www.delimiter.live/tools/random-number-generator): Generate random whole numbers in a range you choose. - [UUID Validator](https://www.delimiter.live/tools/uuid-validator): Check UUIDs and identify which version each one is. - [JSON Schema Validator](https://www.delimiter.live/tools/json-schema-validator): Check a JSON document against a JSON Schema and see every failure. - [JSON Tree Viewer](https://www.delimiter.live/tools/json-tree-viewer): Explore a large JSON document as a collapsible tree. - [Cron Expression Generator](https://www.delimiter.live/tools/cron-generator): Build a cron expression from a schedule, and see when it will run. - [Meta Tag Generator](https://www.delimiter.live/tools/meta-tag-generator): Generate the meta, Open Graph and Twitter tags for a page. - [robots.txt Generator](https://www.delimiter.live/tools/robots-txt-generator): Build a valid robots.txt, with or without the AI crawlers. ## Extraction Tools Pull emails, URLs, numbers and dates out of messy text. - [Extraction Tools index](https://www.delimiter.live/tools/extraction): All 10 tools in this category - [Email Extractor](https://www.delimiter.live/tools/email-extractor): Pull every email address out of a block of text. - [URL Extractor](https://www.delimiter.live/tools/url-extractor): Find every link in text or HTML. - [Phone Number Extractor](https://www.delimiter.live/tools/phone-number-extractor): Find phone numbers in international and local formats. - [Number Extractor](https://www.delimiter.live/tools/number-extractor): Pull numbers out of text, with a running total. - [Hashtag Extractor](https://www.delimiter.live/tools/hashtag-extractor): Collect hashtags and mentions from social copy. - [Domain Extractor](https://www.delimiter.live/tools/domain-extractor): Extract unique domains from URLs, emails or logs. - [IP Address Extractor](https://www.delimiter.live/tools/ip-address-extractor): Find IPv4 and IPv6 addresses in logs and text. - [Date Extractor](https://www.delimiter.live/tools/date-extractor): Find dates written in any common format. - [JSON Path Extractor](https://www.delimiter.live/tools/json-path-extractor): Pull specific values out of a JSON document by path. - [Extract Text Between](https://www.delimiter.live/tools/extract-between): Pull out every piece of text sitting between two markers. ## Network & Web Tools Inspect DNS, IP addresses, headers and redirects. - [Network & Web Tools index](https://www.delimiter.live/tools/network): All 9 tools in this category - [IP Address Lookup](https://www.delimiter.live/tools/ip-lookup): See the network, organisation and approximate location of an IP. - [DNS Lookup](https://www.delimiter.live/tools/dns-lookup): Query A, AAAA, MX, NS, TXT, CNAME, SOA and SRV records. - [HTTP Header Checker](https://www.delimiter.live/tools/http-header-checker): Inspect the response headers and status a URL returns. - [URL Redirect Checker](https://www.delimiter.live/tools/url-redirect-checker): Follow a redirect chain and see every hop. - [My IP Address](https://www.delimiter.live/tools/my-ip-address): See the public IP address and user agent you connect with. - [User-Agent Parser](https://www.delimiter.live/tools/user-agent-parser): Decode a user-agent string into browser, engine and platform. - [Browser Information](https://www.delimiter.live/tools/browser-information): See what your browser reveals about your device. - [Screen Resolution Checker](https://www.delimiter.live/tools/screen-resolution): Check your screen size, viewport and pixel ratio. - [Subnet Calculator](https://www.delimiter.live/tools/subnet-calculator): Work out the network, broadcast and usable host range for a CIDR block. ## Encoding & Security Tools Encode, hash, sign and generate strong secrets. - [Encoding & Security Tools index](https://www.delimiter.live/tools/encoding-security): All 14 tools in this category - [Base64 Encoder and Decoder](https://www.delimiter.live/tools/base64): Encode text to Base64 or decode it back, including URL-safe. - [URL Encoder and Decoder](https://www.delimiter.live/tools/url-encoder): Percent-encode text for URLs, or decode it back. - [HTML Entity Encoder and Decoder](https://www.delimiter.live/tools/html-escape): Escape HTML special characters, or decode entities back. - [Hash Generator](https://www.delimiter.live/tools/hash-generator): Generate MD5, SHA-1, SHA-256 and SHA-512 digests at once. - [MD5 Hash Generator](https://www.delimiter.live/tools/md5-generator): Generate an MD5 checksum from any text. - [SHA-1 Hash Generator](https://www.delimiter.live/tools/sha1-generator): Generate a SHA-1 digest from any text. - [SHA-256 Hash Generator](https://www.delimiter.live/tools/sha256-generator): Generate a SHA-256 digest — the modern default. - [SHA-512 Hash Generator](https://www.delimiter.live/tools/sha512-generator): Generate a 512-bit SHA-2 digest. - [HMAC Generator](https://www.delimiter.live/tools/hmac-generator): Sign a message with a secret key using HMAC. - [Password Generator](https://www.delimiter.live/tools/password-generator): Create strong random passwords or memorable passphrases. - [Password Strength Checker](https://www.delimiter.live/tools/password-strength-checker): Estimate how long a password would take to crack. - [Bcrypt Generator and Verifier](https://www.delimiter.live/tools/bcrypt-generator): Create and verify bcrypt password hashes. - [Unicode Escape and Unescape](https://www.delimiter.live/tools/unicode-escape): Convert characters to \uXXXX escapes and back. - [Data URI Encoder](https://www.delimiter.live/tools/data-uri-encoder): Turn an SVG or snippet into an embeddable data: URI. ## Contact Email: hello@delimiter.live — see the [contact page](https://www.delimiter.live/contact) for details.