---
title: "CFStringIsSurrogateLowCharacter(_:)"
framework: corefoundation
role: symbol
role_heading: Function
path: "corefoundation/cfstringissurrogatelowcharacter(_:)"
---

# CFStringIsSurrogateLowCharacter(_:)

Returns a Boolean value that indicates whether a given character is a low character in a surrogate pair.

## Declaration

```swift
func CFStringIsSurrogateLowCharacter(_ character: UniChar) -> Bool
```

## Parameters

- `character`: A UTF-16 character.

## Return Value

Return Value true if character is a low character in a surrogate pair, otherwise false.

## See Also

### Managing Surrogates

- [CFStringGetLongCharacterForSurrogatePair(_:_:)](corefoundation/cfstringgetlongcharacterforsurrogatepair(_:_:).md)
- [CFStringGetSurrogatePairForLongCharacter(_:_:)](corefoundation/cfstringgetsurrogatepairforlongcharacter(_:_:).md)
- [CFStringIsSurrogateHighCharacter(_:)](corefoundation/cfstringissurrogatehighcharacter(_:).md)
