Case Converter
Convert text strings between camelCase, kebab-case, snake_case, CONSTANT_CASE, PascalCase, and Title Case instantly in your browser.
Text case conversion executes 100% locally in your browser memory.
Case Converter
19 characters
camelCase
helloWorldExample
kebab-case
hello-world-example
snake_case
hello_world_example
CONSTANT_CASE
HELLO_WORLD_EXAMPLE
PascalCase
HelloWorldExample
Title Case
Hello World Example
lowercase
hello world example
UPPERCASE
HELLO WORLD EXAMPLE
Advertisement
How the Case Converter works
The Case Converter tokenizes your input string into words by analyzing spaces, hyphens, underscores, and camelCase transitions, then reassembles the words into standard software engineering naming conventions.
Supported Naming Conventions
camelCase: First word lowercase, subsequent words capitalized (userProfileData).kebab-case: Words separated by hyphens in lowercase (user-profile-data).snake_case: Words separated by underscores in lowercase (user_profile_data).CONSTANT_CASE: Words separated by underscores in uppercase (USER_PROFILE_DATA).
Frequently Asked Questions
Which naming conventions are supported? +
ShadTools supports camelCase, kebab-case, snake_case, CONSTANT_CASE, PascalCase, Title Case, lowercase, and UPPERCASE.
Is my text data uploaded to any server? +
No. All text parsing and string transformations take place 100% locally in your browser memory.
Can I copy individual case formats with one click? +
Yes. Click the Copy button next to any converted format card to copy the string directly to your clipboard.