Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
a9ab79a8
Commit
a9ab79a8
authored
Jun 09, 2006
by
Eli Zaretskii
Browse files
(Character Type): Describe the\uABCD and \U00ABCDEF syntax.
parent
cb480394
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
0 deletions
+13
-0
lispref/objects.texi
lispref/objects.texi
+13
-0
No files found.
lispref/objects.texi
View file @
a9ab79a8
...
...
@@ -431,6 +431,19 @@ Numerically, the
bit values are 2**22 for alt, 2**23 for super and 2**24 for hyper.
@end ifnottex
@cindex unicode character escape
Emacs provides a syntax for specifying characters by their Unicode
code points. @code{?\u@var{nnnn}} represents a character that maps to
the Unicode code point @samp{U+@var{nnnn}}. There is a slightly
different syntax for specifying characters with code points above
@code{#xFFFF}; @code{\U00@var{nnnnnn}} represents the character whose
Unicode code point is @samp{U+@var{nnnnnn}}, if such a character
is supported by Emacs.
Unlike in some other programming languages, in Emacs Lisp this
syntax is available for character literals, and (see later) in
strings, but not elsewhere.
@cindex @samp{\} in character constant
@cindex backslash in character constant
@cindex octal character code
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment