Quick Convert

Type once, switch case modes instantly — all in your browser.

0 Characters
0 No spaces
0 Words
0 Lines
0 Sentences

All tools

113 tools ready to use

Random Generators

Instant random values for decisions, testing, and fun.

RC

Random Choice Generator

Pick a random item from your custom list of options.

Input

Pizza Sushi Tacos Salad

Output

Sushi

RD

Random Date Generator

Generate a random calendar date within a range.

Output

2017-03-14

RI

Random IP Address Generator

Generate a random IPv4 or IPv6 address.

Output

192.168.42.17

RL

Random Letter Generator

Generate one or more random letters of the alphabet.

Output

K

RM

Random Month Generator

Generate a random month with a single click.

Output

August

RN

Random Number Generator

Generate random numbers within a specified range.

Output

42

SP

Strong Password Generator

Create a secure, random password with customizable character sets.

Output

K7#mP9$vLx2Qw!nR

UG

UUID Generator

Generate one or more Universally Unique Identifiers (v4).

Output

550e8400-e29b-41d4-a716-446655440000

RW

Random Word Generator

Generate random English words for brainstorming or placeholders.

Output

harbor nebula pebble cascade ember

RN

Random Name Generator

Generate random first and last names.

Output

Olivia Martinez

CF

Coin Flip Generator

Flip a virtual coin — Heads or Tails.

Output

Heads

DR

Dice Roller

Roll virtual dice with any number of sides.

Output

4

RC

Random Color Generator

Generate a random color in HEX, RGB, or HSL.

Output

#3b82f6

RP

Random PIN Generator

Generate a numeric PIN of a chosen length.

Output

7391

RP

Random Phone Number Generator

Generate a fake phone number for testing forms and UIs.

Output

(415) 555-0198

RU

Random Username Generator

Create fun adjective–noun usernames with a number suffix.

Output

swiftfox42

YO

Yes or No Generator

Get a quick Yes/No answer — or a maybe when extended.

Output

Yes

RQ

Random Quote Generator

Draw a random inspirational quote for inspiration or sharing.

Output

Simplicity is the ultimate sophistication. — Leonardo da Vinci

Code & Data

Encode, format, convert, and transform code and structured data.

AC

A1Z26 Cipher

Convert letters to numbers (A=1 … Z=26) and back.

Input

hello

Output

8 5 12 12 15

BE

Base64 Encode & Decode

Convert text to Base64 and decode Base64 back to text (Unicode-safe).

Input

Hello Convertly

Output

SGVsbG8gQ29udmVydGx5

BC

Binary Code Translator

Convert text to binary bits, or binary back to text.

Input

Hi

Output

01001000 01101001

CC

Caesar Cipher Tool

Shift letters by a fixed amount — a classic substitution cipher.

Input

Hello World

Output

Khoor Zruog

CC

camelCase Converter

Convert text into camelCase for variables and identifiers.

Input

hello world example

Output

helloWorldExample

CF

CSS Formatter

Beautify CSS with consistent indentation and spacing.

Input

.card{color:red;margin:0}

Output

.card { color: red; margin: 0; }

CT

CSV to JSON Converter

Turn comma-separated values into clean JSON objects.

Input

name,age Ada,36 Grace,45

Output

[ { "name": "Ada", "age": 36 }, { "name": "Grace", "age": 45 } ]

DC

dot.case Converter

Convert text into dot.case identifiers.

Input

Hello World Example

Output

hello.world.example

GF

GraphQL Formatter

Parse and pretty-print GraphQL queries and mutations.

Input

{user(id:1){name}}

Output

{ user(id: 1) { name } }

HT

Hex to Text Converter

Convert hexadecimal bytes to readable text, or text to hex.

Input

48 65 6c 6c 6f

Output

Hello

HF

HTML Formatter, Minifier & Beautifier

Beautify or minify HTML for readability or smaller payloads.

Input

<div><p>Hello</p></div>

Output

<div> <p>Hello</p> </div>

HT

HTML to Markdown Converter

Convert HTML markup into clean Markdown syntax.

Input

<h1>Hello</h1><p>World</p>

Output

# Hello World

JF

JavaScript Formatter

Beautify JavaScript with Prettier-compatible formatting.

Input

const x={a:1,b:2}

Output

const x = { a: 1, b: 2 };

JF

JSON Formatter & Minifier

Pretty-print or compress JSON with validation.

Input

{"name":"Ada","active":true}

Output

{ "name": "Ada", "active": true }

JS

JSON Stringify Text

Escape a string so it can be used inside JSON.

Input

Hello "world" line 2

Output

"Hello \"world\"\nline 2"

JT

JSON to YAML Converter

Convert JSON data structures into YAML.

Input

{"name":"Ada","active":true}

Output

name: Ada active: true

JU

JSON Unstringifier

Unescape a JSON string back into plain text or structured data.

Input

"Hello\nWorld"

Output

Hello World

KC

kebab-case Converter

Convert text into kebab-case (hyphen-separated).

Input

Hello World Example

Output

hello-world-example

MF

Markdown Formatter

Normalize and beautify Markdown documents.

Input

# Hello * one * two

Output

# Hello - one - two

MT

Markdown Table Generator

Build Markdown tables from CSV-like rows.

Input

Name,Role Ada,Engineer Grace,Admiral

Output

| Name | Role | | --- | --- | | Ada | Engineer | | Grace | Admiral |

MH

MD5 Hash Generator

Generate an MD5 hash of any string — entirely in your browser.

Input

hello

Output

5d41402abc4b2a76b9719d911017c592

MC

Morse Code Translator

Convert text to Morse code and Morse code back to text.

Input

SOS

Output

... --- ...

NS

Number Sorter

Sort a list of numbers ascending or descending.

Input

42 7 100 3

Output

3 7 42 100

PC

PascalCase Converter

Convert text into PascalCase for types and class names.

Input

hello world example

Output

HelloWorldExample

PT

PDF to Markdown Converter

Extract text from a PDF and convert it to Markdown locally.

Input

Upload a file

Output

Markdown text

QC

QR Code Generator

Create a QR code image from a URL or any text.

Input

https://example.com

Output

QR code PNG

RT

Regex Tester Tool

Test regular expressions with live match highlighting.

Input

/\b\w+\b/gi

Output

Live match highlighting

RE

ROT13 Encoder/Decoder

Rotate letters by 13 places — encode and decode are the same.

Input

Hello World

Output

Uryyb Jbeyq

SF

SCSS Formatter

Beautify SCSS / Sass stylesheets.

Input

$c:#fff;.box{color:$c}

Output

$c: #fff; .box { color: $c; }

SU

Slugify URL Generator

Turn any string into a URL-friendly slug.

Input

Hello World! Café 2026

Output

hello-world-cafe-2026

SC

snake_case Converter

Convert text into snake_case (underscore-separated).

Input

Hello World Example

Output

hello_world_example

TF

TypeScript Formatter

Beautify TypeScript with Prettier-compatible formatting.

Input

type User={id:number;name:string}

Output

type User = { id: number; name: string };

UE

URL Encode and Decode

Percent-encode text for URLs, or decode percent-encoded strings.

Input

hello world?

Output

hello%20world%3F

UE

UTF-8 Encoder/Decoder

Convert text to UTF-8 hex bytes, or hex bytes back to text.

Input

Hi

Output

48 69

UG

UTM Generator

Build Google Analytics UTM tracking links from campaign parameters.

Output

https://example.com/?utm_source=newsletter&utm_medium=email&utm_campaign=spring_sale

WT

Word to Markdown Converter

Convert a .docx Word document into Markdown in your browser.

Input

Upload a file

Output

Markdown text

XF

XML Formatter

Beautify XML with consistent indentation.

Input

<root><item>Hello</item></root>

Output

Invalid XML: DOMParser is not defined

YF

YAML Formatter

Validate and pretty-print YAML documents.

Input

name: Ada active: true

Output

name: Ada active: true

Convertly — Online Text Tools