| Title | Description |
|---|---|
| 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. |
| Colour picker | Pick a colour and get the representation for it in RGB and hexidecimal format. |
| Hexidecimal String | Turn a string into hex, supports unicode items like 🤔. |
| 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. |
| Prettify JSON | Make JSON easy on the eyes or worse on the eyes, it's up to you. |
| 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. |
| QR Code Generator | Generate a QR code. This can also be used to generate QR codes for various cryptocurrencies like Bitcoin. |
| 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. |
| Encode/Decode URL | Encode or decode URL. This is also known as "Percent-encoding". See more information on Wikipedia. |
| Word Count | Get the word count of a string, as well as the number of characters in it with and without spaces. |