code

Converting a string to all lower case characters.

Go

strings.ToLower("Text")

JavaScript

"Text".toLowerCase()

Perl

lc('Text')

PHP

strtolower('Text')