What text case conversions are supported?▼
15 conversions: UPPERCASE, lowercase, Title Case, Sentence case, camelCase, PascalCase, snake_case, kebab-case, CONSTANT_CASE, dot.case, Toggle cAsE, Reverse, Remove extra spaces, Remove line breaks, and URL slug.
What is camelCase used for?▼
camelCase is the standard naming convention for variables and functions in JavaScript, TypeScript, and many other programming languages. It starts lowercase and capitalizes each subsequent word.
What is a URL slug?▼
A URL slug is a URL-friendly version of a title. It converts text to lowercase, removes special characters, and replaces spaces with hyphens. Example: 'Hello World!' becomes 'hello-world'.
Is my text stored or sent to a server?▼
No. All conversions happen entirely in your browser. Your text never leaves your device.