* Your content are not transferred to the server. All calculations are performed directly in the browser
Case Format Reference
| Format | Example | Common Use |
|---|---|---|
| camelCase | myVariableName | JavaScript / Java variables, methods |
| PascalCase | MyVariableName | Class names, React components, TypeScript types |
| snake_case | my_variable_name | Python / Ruby variables, SQL columns |
| CONSTANT_CASE | MY_VARIABLE_NAME | Environment variables, constants |
| kebab-case | my-variable-name | URL slugs, CSS class names, HTML attributes |
| dot.case | my.variable.name | Config keys (e.g. i18n.message.error) |
| lower case | my variable name | Plain prose |
| UPPER CASE | MY VARIABLE NAME | Emphasized titles, acronyms |
| Title Case | My Variable Name | Article / book titles |
| Sentence case | My variable name | Sentence-leading capitalization |
| path/case | my/variable/name | File paths, API routes |