Text Case Converter

Convert text to camelCase, snake_case, kebab-case, PascalCase, CONSTANT_CASE, Title Case, and 7 more. Free, instant, in-browser.

What this does

Converts your input text into 13 different case styles, all at once. Click “Copy” next to any one to grab just that variant.

The tool understands word boundaries from any input format. It splits on:

  • Whitespace
  • Underscores, hyphens, dots
  • camelCase / PascalCase boundaries (lowercase→uppercase transitions)
  • Number/letter transitions

So helloWorldFOO_bar-baz123 parses as 6 words: hello, World, FOO, bar, baz, 123. Every output style works from the same word split.

All 13 case formats

FormatExampleWhen to use
lower casehello worldPlain prose, lowercase tags
UPPER CASEHELLO WORLDEmphatic shouting, headings in old print, SQL keywords
Title CaseHello WorldArticle and book titles, headings
Sentence caseHello worldBody text, the default for English prose
camelCasehelloWorldJavaScript, Java variable names, JSON keys (sometimes)
PascalCaseHelloWorldClass names in most languages, React components
snake_casehello_worldPython variables, Ruby methods, database columns, JSON sometimes
kebab-casehello-worldURLs, CSS classes, HTML IDs, Lisp identifiers
CONSTANT_CASEHELLO_WORLDConstants, environment variables, SQL constants
dot.casehello.worldProperty paths, namespaces, log keys
path/casehello/worldURL paths, file paths
iNVERSE cASEhELLO wORLDToggling individual character case (programmer humor)
aLtErNaTiNghElLo WoRlD“Mocking spongebob” formatting

Common engineering uses

  • Renaming a variable consistently across files. You change userId to user_id in your Python backend; convert and search-replace.
  • Generating a CSS class from a component name. MyButtonmy-button. The kebab-case row.
  • Generating an env var from a config key. databaseUrlDATABASE_URL. The CONSTANT_CASE row.
  • Slugifying a title for a URL. Better handled by a dedicated slugifier for full URL-safe output, but kebab-case is usually 90% of the way.
  • Migrating a JSON API between snake_case and camelCase conventions. Paste each key, swap, re-emit.

Edge cases handled correctly

  • Acronyms in input. HTTPRequest parses as HTTP + Request, not H+TTPRequest. So HTTPRequest → snake → http_request. PascalCase output preserves clean reading.
  • Numbers between letters. version2Setupversion_2_setup (snake), version2Setup (camel preserved if you input camel).
  • Repeat punctuation. hello___world reduces to hello world before re-styling. Same for -- and multiple spaces.
  • Mixed input. Hello-WorldFOO_bar works.

What this is NOT

  • Not a Unicode normalizer. Accented characters (é, ñ) pass through unchanged. Use a proper slugifier if you need ASCII output.
  • Not a translator. Case conversion is structural, not semantic. “Hello World” in title case stays “Hello World” — it doesn’t know that small words should sometimes be lowercase (“Of”, “The”, “And”) in journalistic title case.
  • Not for HTML. The output is plain text. If you need to escape HTML entities, see HTML Entity Encoder .

Privacy

Runs entirely in your browser. Your text stays local.

Explore More Free Tools

🔧

Aspect Ratio Calculator

Calculate width, height, or ratio. Solve any one from the other two. 16:9, 4:3, 21:9, 9:16, 1:1, custom. Free, runs in your browser.

🔧

BPM to Milliseconds Calculator

Convert BPM to delay times in milliseconds. Whole, half, quarter, 1/8, 1/16, 1/32 notes plus dotted and triplet variants. Free tempo-sync calculator for producers.

🔧

Chmod Calculator

Convert chmod permissions between octal (e.g. 755) and symbolic (rwxr-xr-x) form. Toggle read/write/execute checkboxes for owner, group, and other. Free, runs in your browser.

🔧

Color Contrast Checker

Check color contrast for WCAG AA and AAA compliance. Live preview, hex and rgb support, instant pass/fail across 5 levels. Free, in-browser.

🔧

Cron Expression Explainer

Paste a cron expression, get a plain-English explanation plus the next 5 run times. Handles macros (@daily, @hourly), ranges, and steps. Free, in-browser.

🔧

CSV to Markdown Table

Paste CSV (or TSV), get a clean GitHub-flavored Markdown table. Auto column alignment, header detection, custom delimiters. Free, in-browser.

🔧

Cubic Bezier Generator

Visual editor for CSS cubic-bezier() easing curves. Drag the control handles, see the live animation, copy the CSS. Free, in-browser.

🔧

Env to JSON Converter

Convert .env files to JSON instantly. Handles quoted values, comments, escape sequences, and type coercion. Free, runs in your browser, no signup.

🔧

HTML Entity Encoder & Decoder

Encode and decode HTML entities — minimal, named, numeric, or hex. Handles &, <, >, accented characters, em dash, smart quotes. Free, browser-based.

🔧

HTTP Status Code Lookup

Searchable reference for every HTTP status code. 1xx, 2xx, 3xx, 4xx, 5xx, plus Cloudflare 5xx codes. Free, instant lookup, runs in your browser.

🔧

JSON Diff

Compare two JSON values semantically. Shows added, removed, and changed keys with the exact path. Free, runs in your browser.

🔧

JSON to Go Struct Generator

Convert JSON to idiomatic Go structs with json tags, time.Time detection, omitempty support. Free, in-browser.

🔧

JSON to TypeScript Interface Generator

Paste JSON, get TypeScript interfaces. Handles nested objects, arrays, unions, optional fields. No signup, runs in your browser.

🔧

Lorem Ipsum Generator

Generate placeholder text. Classic Lorem Ipsum, hipster, corporate, and dev variants. Words, sentences, paragraphs, lists. Free, in-browser.

🔧

Markdown to HTML Converter

Convert Markdown to HTML with live preview. Headings, lists, code blocks, links, images, blockquotes. Free, in-browser.

🔧

Number Base Converter

Convert numbers between binary, octal, decimal, hex, and any base from 2 to 36. BigInt-safe for large values. Free, in-browser.

🔧

Slugify Text

Generate URL-safe slugs from any text. Handles accents, Unicode, stop words, custom separators, length limits. Free, in-browser.

🔧

YAML Validator

Validate YAML syntax, find duplicate keys, indentation issues, tabs in indent, and trailing whitespace. JSON preview included.

🔧

Cron Expression Generator

Generate and validate cron expressions with a visual builder. See next execution times, human-readable descriptions, and common presets. Free online crontab generator for developers.

🔧

JWT Decoder

Decode and inspect JWT tokens instantly. View header, payload, and signature. Check expiration, issuer, and claims. Free online JWT decoder — no data sent to any server.

🔧

Regex Tester

Test regular expressions with real-time matching and highlighting. Supports JavaScript regex flags (g, i, m, s). See match groups, captures, and indices. Free online regex tester.

🔧

Unix Timestamp Converter

Convert Unix timestamps to human-readable dates and vice versa. Supports seconds and milliseconds. Shows current epoch time live. Free online tool for developers.

🔧

UUID Generator

Generate random UUIDs (v4), time-based UUIDs (v7), and ULIDs instantly. Bulk generate up to 100 at once. Free online UUID generator for developers — no signup required.

🔧

Base64 Encoder & Decoder

Encode text to Base64 or decode Base64 back to plain text instantly. Free online Base64 converter with file support and batch processing. No registration required.

🎨

Color Palette Generator

Generate beautiful color palettes instantly. Create complementary, analogous, triadic, and monochromatic color schemes for web design, branding, and creative projects.

📝

JSON Formatter & Validator

Format, validate, and beautify JSON data instantly with our free online JSON formatter. Supports minification, syntax highlighting, and error detection. No registration required.

🔧

JSON to YAML Converter

Convert JSON to YAML and YAML to JSON instantly with our free online converter. Supports validation, formatting, and syntax highlighting. No registration required.

🔑

Password Generator

Generate strong, secure passwords instantly with our free password generator. Customize length, character types, and complexity. No registration required, privacy-focused.

📊

Percentage Calculator

Calculate percentages, percentage increases/decreases, and compare values instantly. Free online percentage calculator with multiple calculation types and detailed results.

🔧

SEO Meta Tag Generator

Generate SEO-optimized meta tags instantly. Create title tags, meta descriptions, Open Graph tags, and Twitter Cards for better search engine visibility.

🔧

Subnet Calculator

Plan IPv4 subnets visually. Enter a CIDR block, split it, see network/broadcast/host counts. Free, runs in your browser.

🔧

Tools Sitemap

Complete list of all free developer tools available on Ataiva. Find password generators, JSON formatters, converters, and more utilities for developers.

📏

Unit Converter

Convert between various units such as length, weight, temperature, and more.

📄

Word Counter & Text Analyzer

Count words, characters, sentences, and paragraphs instantly. Analyze readability, text complexity, and writing style with our text analyzer.