diff --git a/README.md b/README.md index 270a891..c9582e0 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ ## Introduction -Streamline Unicode characters (code points) manipulations. +Streamline Unicode characters (code points) and composite characters manipulations. ## Installation @@ -52,6 +52,12 @@ echo $codePoint->toXmlEntity(); // (string) "ÿ" ### Instantiate CompositeCharacter object +```php +$compositeCharacter = \Cog\Unicode\CompositeCharacter::ofCharacters('๐Ÿ‘จโ€๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ฆ'); +``` + +### Represent composite character in any format + ```php $compositeCharacter = \Cog\Unicode\CompositeCharacter::ofCharacters('๐Ÿ‘จโ€๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ฆ');