# Character

```javascript
import { Character } from 'slate'
```

A character in a [`Text`](https://thesunny.gitbook.io/slate/doc-android/slate-core/text) node.

Characters are how Slate associates [`Marks`](https://thesunny.gitbook.io/slate/doc-android/slate-core/mark) with a range of text, for formatting.

## Properties

```javascript
Character({
  marks: Immutable.Set<Mark>,
  text: String
})
```

### `object`

`String`

A string with a value of `'character'`.

### `marks`

`Immutable.Set`

A set of [`Marks`](https://thesunny.gitbook.io/slate/doc-android/slate-core/mark) attached to the character.

### `text`

`String`

The text string of the character.

## Static Methods

### `Character.create`

`Character.create(properties: Object) => Character`

Create a character from a plain Javascript object of `properties`.

### `Character.createList`

`Character.createList(array: Array) => List`

Create a list of characters from a plain Javascript `array`.

### `Character.fromJSON`

`Character.fromJSON(object: Object) => Character`

Create a character from a JSON `object`.

### `Character.isCharacter`

`Character.isCharacter(maybeCharacter: Any) => Boolean`

Returns a boolean if the passed in argument is a `Character`.

## Instance Methods

### `toJSON`

`toJSON() => Object`

Returns a JSON representation of the character.
