| Title | Description |
|---|---|
| Base32 Encoder/Decoder | Encode text to Base32 or decode Base32 back to text. |
| Encode/Decode Base64 | Encode or decode base64. |
| BCrypt Hash | Calculate the BCrypt hash of a provided string using a randomly generated 10 character salt. |
| Binary String | Turn a string into binary and from binary into ASCII. |
| Case Converter | Convert text between different naming conventions (camelCase, snake_case, PascalCase, kebab-case, CONSTANT_CASE). |
| Colour picker | Pick a colour and get the representation for it in RGB and hexidecimal format. |
| Cron Expression Parser | Parse cron expressions and understand when they run in plain English. |
| CSV to JSON Converter | Convert CSV data to JSON format with automatic header detection. |
| Text Diff Checker | Compare two text blocks and see differences highlighted. |
| Hexidecimal String | Turn a string into hex, supports unicode items like 🤔. |
| HMAC Generator | Generate HMAC signatures using various hash algorithms. |
| HTML Entities Encode/Decode | Encode or decode HTML entities so that they are safe to put into HTML. See a list of entities that should be encoded here https://dev.w3.org/html5/html-author/charref. |
| IP Checker | Check your public IPv4 and IPv6 addresses, and verify DNS over TLS (DoT) support. |
| Prettify JSON | Make JSON easy on the eyes or worse on the eyes, it's up to you. |
| JWT Decoder | Decode and inspect JSON Web Tokens to view claims and expiration. |
| Lorem Ipsum Generator | Generate lorem ipsum placeholder text for design mockups. |
| Markdown to HTML | Convert Markdown to HTML. |
| MD5 Hash | Calculate the MD5 hash of a provided string. |
| Code Minifier | Minify CSS, JavaScript, and HTML to reduce file sizes. |
| Password Generator | Generate strong, random passwords with customizable options. |
| QR Code Generator | Generate a QR code. This can also be used to generate QR codes for various cryptocurrencies like Bitcoin. |
| Quantum BS Generator | Generate realistic sounding but completely meaningless text using quantum reality principles. |
| Regex Tester | Test and debug regular expressions with match highlighting and detailed match information. |
| Reverse String | Reverse a string. |
| SHA-1 Hash | Calculate the SHA-1 hash of a provided string. |
| SHA-256 Hash | Calculate the SHA-256 hash of a provided string. |
| SHA-512 Hash | Calculate the SHA-512 hash of a provided string. |
| SQL Formatter | Format and beautify SQL queries with proper indentation and syntax highlighting. |
| Unix Timestamp Converter | Convert between Unix timestamps and human-readable dates with timezone support. |
| Encode/Decode URL | Encode or decode URL. This is also known as "Percent-encoding". See more information on Wikipedia. |
| UTF-16 Encode/Decode | UTF-16 encode or decode a string. |
| UTF-8 Encode/Decode | UTF-8 encode or decode a string. |
| UUID Generator | Generate unique universally unique identifiers (UUIDs) using the v4 standard. |
| Word Count | Get the word count of a string, as well as the number of characters in it with and without spaces. |
| XML Formatter | Format and beautify XML with proper indentation and syntax highlighting. |
| YAML to JSON Converter | Convert YAML to JSON and back with bidirectional support. |