# Lowercase

### What It Does

Converts all characters in a text string to lowercase (small letters). This helps create consistent text formatting or normalize user input for comparisons.

### Inputs

| Name  | Description                      | Type   | Required |
| ----- | -------------------------------- | ------ | -------- |
| value | The text to convert to lowercase | String | Yes      |

### Outputs

| Name  | Description                  | Type   |
| ----- | ---------------------------- | ------ |
| value | The converted lowercase text | String |

<figure><img src="https://3657049418-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2Fy0SFXZjN1sdgdxYM7QPE%2Fuploads%2F3HaNGaOcLas2Wr8zPNbL%2FCleanShot%202025-03-24%20at%2011.21.49%402x.png?alt=media&#x26;token=64974be5-f5a2-45ad-9820-e8f6b37ac3f1" alt=""><figcaption></figcaption></figure>

### How to Use It

1. Drag the Lowercase node into your graph.
2. Connect a text string (like `"Hello World"`) to the "value" input.
3. Run the graph—your output will be `"hello world"`.
4. Special characters and numbers remain unchanged.

<figure><img src="https://3657049418-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2Fy0SFXZjN1sdgdxYM7QPE%2Fuploads%2FLar0cJxybVTC70AUzcfS%2FCleanShot%202025-03-24%20at%2011.23.37%402x.png?alt=media&#x26;token=88c211c7-a1db-4da5-b5e7-1feffc44da07" alt=""><figcaption></figcaption></figure>

### Tips

* Lowercase is particularly useful for normalizing text for case-insensitive comparisons.
* It's often used for body text, URLs, and email addresses in design systems.

### See Also

* [**Uppercase**](https://documentation.tokens.studio/graph-engine/available-nodes/string/uppercase): For converting text to all capital letters.
* [**Case Convert**](https://documentation.tokens.studio/graph-engine/available-nodes/string/case-convert): For more text casing options like title case or camel case.

### Use Cases

* **Text Normalization**: Standardize text from different sources for consistent display.
* **Search Terms**: Process search inputs for case-insensitive matching.
* **Design System Text**: Ensure consistent casing for body copy, captions, or labels.
