---
title: uppercased()
framework: swift
role: symbol
role_heading: Instance Method
path: swift/character/uppercased()
---

# uppercased()

Returns an uppercased version of this character.

## Declaration

```swift
func uppercased() -> String
```

## Discussion

Discussion Because case conversion can result in multiple characters, the result of uppercased() is a string. let chars: [Character] = ["e", "é", "и", "π", "ß", "1"] for ch in chars {     print(ch, "-->", ch.uppercased()) } // Prints: // e --> E // é --> É // и --> И // π --> Π // ß --> SS // 1 --> 1

## See Also

### Checking a Character’s Case

- [isCased](swift/character/iscased.md)
- [isUppercase](swift/character/isuppercase.md)
- [isLowercase](swift/character/islowercase.md)
- [lowercased()](swift/character/lowercased().md)
