README.md in unicode-name-1.13.1 vs README.md in unicode-name-1.13.2
- old
+ new
@@ -40,10 +40,14 @@
Unicode::Name.readable("A") # => "LATIN CAPITAL LETTER A"
Unicode::Name.readable("\0") # => "NULL"
Unicode::Name.readable("\u{FFFFD}") # => "<private-use-FFFFD>"
```
-See [unicode-sequence_names](https://github.com/janlelis/unicode-sequence_name) for character names of more complex codepoint sequences.
+See [unicode-sequence_names](https://github.com/janlelis/unicode-sequence_name) for character names of more complex codepoint sequences. This is how you could use both libraries together to get the most relevant name of a character:
+
+```ruby
+name = Unicode::SequenceName.of(char) || Unicode::Name.readable(char)
+```
See [unicode-x](https://github.com/janlelis/unicode-x) for more Unicode related micro libraries.
See [unicode-name.js](https://github.com/janlelis/unicode-name.js) for a JavaScript implementation of this gem.