Text Case Converter

Convert any text to UPPERCASE, lowercase, Title Case, camelCase, snake_case, or kebab-case. Perfect for naming variables, files, and constants consistently.

All computations run locally in your browser, no data uploaded to server.
  

How To Use

  1. Paste or type the text you want to convert.
  2. Click the target case: UPPERCASE, lowercase, Title, camel, snake, or kebab.
  3. Copy the result with Copy output.

Usage Example

Input:

Toolkit free tools

Outputs:

UPPERCASE:  TOOLKIT FREE TOOLS
lowercase:  toolkit free tools
Title Case: Toolkit Free Tools
camelCase:  toolkitFreeTools
snake_case: toolkit_free_tools
kebab-case: toolkit-free-tools

Frequently Asked Questions

Are numbers preserved?

Yes. Words are split on non-alphanumeric characters, and numbers remain part of each word.

Is my text uploaded?

No. All conversions run locally in your browser. Nothing is sent to a server.

How are words split?

The tool splits on spaces, dots, underscores, hyphens, and other separators. Each resulting word is then re-joined in the chosen case.