String Case Converter
Convert string case and perform text transformations.
Overview
String Case Converter transforms text between the naming conventions you
juggle daily as a developer: constants (UPPERCASE), identifiers
(camelCase, snake_case), URLs and CSS classes (kebab-case), and
headings (Title Case). Two utilities round it out: Reverse flips the
character order, and Trim lines strips leading/trailing whitespace from
every line — handy for cleaning up pasted code or CSV fragments.
How to use
- Pick an operation button: UPPERCASE, lowercase, Title Case, camelCase, snake_case, kebab-case, Reverse, or Trim lines.
- Type or paste text into Input. The Output box updates as you type.
- Switch buttons at any time — the current input is re-transformed instantly.
Examples
user profile page+ camelCase →userProfilePageuser-profile-page+ snake_case →user_profile_pagehello world+ Title Case →Hello World
Multi-line input works too: Trim lines turns indented line into indented line on every row.
Notes
Transformations are one-way with no undo history — keep your original text if you may need it. Title Case capitalizes every word, including articles like “the” and “of”, so it follows a simple rule rather than editorial style guides such as AP or Chicago.