# `GSGlyph setUnicodesFast:`

*Instance Method*

Assigns Unicode code points without updating related state.

## Declaration

```swift
func setUnicodesFast(_ unicodes: NSOrderedSet?)
```

```objc
- (void) setUnicodesFast:(NSOrderedSet *) unicodes;
```

```python
setUnicodesFast_(unicodes: NSOrderedSet)
```

## Parameters

- `unicodes` — The Unicode code points as hexadecimal strings.

## Discussion

This method does not register undo or update glyph lookup in the containing font. The caller is responsible for supplying valid Unicode code point strings. Use [`GSGlyph.unicodes`](/Core/GlyphsCore/GSGlyph/unicodes) for general assignment.

## See Also

### Unicode and Characters

- [`GSGlyph.unicodes`](/Core/GlyphsCore/GSGlyph/unicodes) — The Unicode code points associated with the glyph, as an ordered set of uppercase hexadecimal strings.
- [`GSGlyph countOfUnicodes`](/Core/GlyphsCore/GSGlyph/countOfUnicodes) — The number of associated Unicode code points.
- [`GSGlyph.unicode`](/Core/GlyphsCore/GSGlyph/unicode) — The first Unicode code point associated with the glyph, as an uppercase hexadecimal string.
- [`GSGlyph.unicodeChar`](/Core/GlyphsCore/GSGlyph/unicodeChar) — The numeric value of the first associated Unicode code point, or `0` when there is none.
- [`GSGlyph charString`](/Core/GlyphsCore/GSGlyph/charString) — The character for the first associated Unicode code point, or an empty string when this convenience API cannot represent it.
- [`GSGlyph addUnicode:`](/Core/GlyphsCore/GSGlyph/addUnicode:) — Adds a Unicode code point while preserving the existing code points.
- [`GSGlyph removeUnicode:`](/Core/GlyphsCore/GSGlyph/removeUnicode:) — Removes a Unicode code point while preserving the order of the remaining code points.
- [`GSGlyph isValidUnicodeString:error:`](/Core/GlyphsCore/GSGlyph/isValidUnicodeString:error:) — Checks whether a string uses the uppercase hexadecimal syntax for a Unicode code point.
- [`GSGlyph.baseString`](/Core/GlyphsCore/GSGlyph/baseString) — The Unicode string represented by the glyph’s character composition.

