diff options
Diffstat (limited to 'docs/feature_unicode.md')
-rw-r--r-- | docs/feature_unicode.md | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/docs/feature_unicode.md b/docs/feature_unicode.md index 546af2521..697541458 100644 --- a/docs/feature_unicode.md +++ b/docs/feature_unicode.md | |||
@@ -195,7 +195,7 @@ By default, when the keyboard boots, it will initialize the input mode to the la | |||
195 | 195 | ||
196 | ## `send_unicode_string()` | 196 | ## `send_unicode_string()` |
197 | 197 | ||
198 | This function is much like `send_string()` but allows you to input UTF-8 characters directly, currently up to code point U+FFFF. Make sure your `keymap.c` is formatted in UTF-8 encoding. | 198 | This function is much like `send_string()` but allows you to input UTF-8 characters directly, and supports all code points (provided the selected input method also supports it). Make sure your `keymap.c` is formatted in UTF-8 encoding. |
199 | 199 | ||
200 | ```c | 200 | ```c |
201 | send_unicode_string("(ノಠ痊ಠ)ノ彡┻━┻"); | 201 | send_unicode_string("(ノಠ痊ಠ)ノ彡┻━┻"); |
@@ -210,7 +210,6 @@ send_unicode_hex_string("0028 30CE 0CA0 75CA 0CA0 0029 30CE 5F61 253B 2501 253B" | |||
210 | ``` | 210 | ``` |
211 | 211 | ||
212 | An easy way to convert your Unicode string to this format is by using [this site](https://r12a.github.io/app-conversion/), and taking the result in the "Hex/UTF-32" section. | 212 | An easy way to convert your Unicode string to this format is by using [this site](https://r12a.github.io/app-conversion/), and taking the result in the "Hex/UTF-32" section. |
213 | Unlike `send_unicode_string()` this function supports code points up to U+10FFFF. | ||
214 | 213 | ||
215 | ## Additional Language Support | 214 | ## Additional Language Support |
216 | 215 | ||