Diysb Tools

转换为大写

将文本转换为大写字母。

文本工具
输入文本
大写文本
转换为大写 示例

Convert Text to Uppercase

This example transforms any text to ALL UPPERCASE format.

Input
The quick brown fox jumps over the lazy dog.
Output
THE QUICK BROWN FOX JUMPS OVER THE LAZY DOG.

Uppercase Code

Convert code to uppercase format. Note that this is for display only and would not maintain code functionality.

Input
function example() {
  return "hello";
}
Output
FUNCTION EXAMPLE() {
  RETURN "HELLO";
}

Uppercase Mixed Content

Works with any text content including numbers and special characters.

Input
hello WORLD 123!
Output
HELLO WORLD 123!