Text

Case to LowerCase

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

Input Text
lower-case Result
100% Secure
Fast Conversion
High Accuracy

Free Online LowerCase Converter

Our string formatting tool instantly transforms your normal text, sentences, or code variables into LowerCase. 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 LowerCase format with the best possible settings.

3. Copy LowerCase

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

Frequently Asked Questions

Conversion Specs

InputCase
OutputLowerCase
SafetyHTTPS / Auto-delete
Price
Free

Using code

lowerCase

Converts all characters in the given string to their lower case equivalents using the built-in `toLowerCase` method. The original string is not modified; a new lower cased string is returned.

Parameters

NameTypeDescription
textstringThe string to convert.

Returns

stringThe lower cased string.
npm i @razomy/string-case
import {lowerCase} from '@razomy/string-case';

lowerCase('RAZOMY');
// => razomy

lowerCase('Test');
// => test

lowerCase('FOO Bar');
// => foo bar