Aller au contenu
NewKitApp

Rechercher des outils

Accédez à n’importe quel outil par son nom

Case Converter

Convert text to UPPERCASE, lowercase, Title Case, camelCase, snake_case, and more — all at once.

UPPERCASE

lowercase

Title Case

Sentence case

camelCase

PascalCase

snake_case

kebab-case

Qu’est-ce que Case Converter ?

A case converter is a tool that rewrites text into a different capitalization or identifier format, such as UPPERCASE, lowercase, Title Case, Sentence case, camelCase, PascalCase, snake_case, or kebab-case. These formats are conventions used across programming languages, URLs, CSS, databases, and prose, where applying the wrong case can break code or confuse readers. The converter parses pasted input by splitting on spaces, hyphens, underscores, and the boundary between a lowercase letter and a following uppercase letter, so a string like "helloWorldExample" is recognized as three separate words. It then outputs every supported format at once, so you can compare and copy whichever one your target context requires. This makes it useful when moving text between naming conventions, such as turning a title into a Python variable name or a JavaScript class name.

Comment utiliser Case Converter

  1. Type or paste your text into the input box.
  2. Every case format updates live below — UPPERCASE, lowercase, Title Case, Sentence case, camelCase, PascalCase, snake_case, and kebab-case.
  3. Click "Copy" next to any result to copy just that format.

Exemples

Title Case

Entrée : the quick brown fox

Sortie : The Quick Brown Fox

camelCase

Entrée : hello world example

Sortie : helloWorldExample

snake_case

Entrée : Hello World Example

Sortie : hello_world_example

kebab-case

Entrée : Hello World Example

Sortie : hello-world-example

Erreurs courantes

  • Using spaces in a variable name meant for code — always convert to camelCase, snake_case, or PascalCase depending on your language's convention first.
  • Mixing kebab-case and snake_case within the same codebase or URL scheme, which makes tooling and search-and-replace unreliable.
  • Assuming Title Case and PascalCase are the same — Title Case keeps spaces between words, PascalCase removes them.

Pourquoi utiliser cet outil

  • Converts to all 8 common case formats at once — no need to reach for a different tool per format.
  • Correctly parses camelCase/PascalCase input as multiple words, not just space/hyphen/underscore-separated input.
  • Runs entirely client-side, instantly, with no character limit.
  • One-click copy per format.

Questions fréquentes