Uppercase
What It Does
Converts all characters in a text string to uppercase (capital letters). This is useful for creating consistent text formatting, headers, or emphasizing text.
Inputs
value
The text to convert to uppercase
String
Yes
Outputs
value
The converted uppercase text
String

How to Use It
Drag the Uppercase node into your graph.
Connect a text string (like
"Hello World"
) to the "value" input.Run the graph—your output will be
"HELLO WORLD"
.Special characters and numbers remain unchanged.

Tips
Uppercase is useful for creating consistent formatting regardless of input casing.
Consider accessibility implications when using all caps, as it can be harder to read.
See Also
Lowercase: For converting text to all lowercase letters.
Case Convert: For more text casing options like title case or camel case.
Use Cases
Button Labels: Convert text to uppercase for button labels in a design system.
Headings & Titles: Create standardized uppercase headings.
Acronyms: Ensure acronyms and initialisms are consistently displayed in caps.
Last updated