uppercase
Converts text to UPPERCASE.HELLO WORLD
Use cases:
- Headers and titles
- Status badges
- Emphasis text
lowercase
Converts text to lowercase.hello world
Use cases:
- Email addresses
- URLs
- Normalizing user input
capitalize
Capitalizes the first letter, lowercases the rest.Hello world
Use cases:
- Sentence beginnings
- Single-word labels
titleCase
Capitalizes the first letter of each word.Hello World Example
Use cases:
- Names
- Titles
- Headings
slugify
Converts text to URL-friendly slug format.hello-world-this-is-a-test
Use cases:
- URL generation
- File names
- Identifiers
camelCase
Converts text to camelCase format.helloWorldExample
Use cases:
- Variable names
- JSON keys
- Programming identifiers
snakeCase
Converts text to snake_case format.hello_world_example
Use cases:
- Database column names
- File names
- API parameters
initials
Extracts the first letter of each word.JDS
Use cases:
- Avatars
- Abbreviations
- Monograms

