Text

Case to Capitalize

Free and instant online tool to convert normal text, strings, or variables into Capitalize.

Input Text
capitalize Result
100% Secure
Fast Conversion
High Accuracy

Free Online Capitalize Converter

Our string formatting tool instantly transforms your normal text, sentences, or code variables into Capitalize. Simply paste your content, and the tool will automatically handle spaces and capitalization.

How to convert

1. Paste Case text

Paste or type your Case content into the input area.

2. Conversion Process

Our tool automatically converts your text to Capitalize format with the best possible settings.

3. Copy Capitalize

The conversion is complete. You can now copy the result directly to your clipboard.

Frequently Asked Questions

Conversion Specs

InputCase
OutputCapitalize
SafetyHTTPS / Auto-delete
Price
Free

Using code

capitalize

Takes an input string and returns a new string where the first character is converted to upper case and all remaining characters are converted to lower case. This is useful for normalizing the casing of words regardless of their original casing.

Parameters

NameTypeDescription
textstringThe string to capitalize.

Returns

stringThe capitalized string.
npm i @razomy/string-case
import {capitalize} from '@razomy/string-case';

capitalize('razomy');
// => Razomy

capitalize('RAZOMY');
// => Razomy

capitalize('rAZOMY');
// => Razomy