Case Converter
The case converter rewrites text in UPPERCASE, lowercase, Title Case, Sentence case, camelCase, PascalCase, snake_case, kebab-case, CONSTANT_CASE or aLtErNaTiNg case. Conversion is Unicode-aware and happens instantly in your browser.
Your result will appear here.
Not sure where to start? Use Load example.
Results update automatically and are calculated on your device. Nothing you type is sent to a server.
Runs in your browser. Processing happens entirely in your browser. Nothing you enter is sent to Delimiter.live.
How to use the Case Converter
- Paste your text into the input box.
- Choose a target case from the dropdown — the result updates immediately.
- For Title Case, decide whether short joining words should stay lowercase.
- Copy the result, or download it as a .txt file.
Example
user profile image
camelCase: userProfileImage snake_case: user_profile_image kebab-case: user-profile-image Title Case: User Profile Image
Common use cases
- Fixing a headline that was typed with caps lock on.
- Converting a column of labels into camelCase or snake_case identifiers for code.
- Producing CONSTANT_CASE names for environment variables.
- Turning a product name into kebab-case for a CSS class or file name.
Limitations and things to watch for
- Title Case uses an editorial word list for short words (a, an, and, as, at, but, by, for, in, nor, of, on, or, the, to, up, via). Style guides disagree on these, so review the output for published headlines.
- Sentence case capitalises the first letter of each sentence and lowercases the rest; it cannot know that a word is a proper noun, so names need a manual pass.
- Code cases (camel, Pascal, snake, kebab, constant) strip punctuation and treat it as a word boundary, which is what identifiers require.