Skip to main content
1

🔡 Case & Slugs

String
Capitalizes only the first letter of the string. Returns the string as is if empty.
String
Capitalizes the first letter of every word in the string. Ideal for titles and proper nouns.
String
Converts a snake_case string (e.g., user_data) into camelCase (e.g., userData).
String
Converts the string into a clean, URL-friendly slug format, replacing non-alphanumeric
2

🔐 Encoding

String
Encodes the string into a Base64 string representation using UTF-8 encoding.
String
Decodes a Base64 encoded string back to its original UTF-8 string format.