Unicode input is method to add a specificUnicode character to acomputer file; it is a common way to input characters not directly supported by a physicalkeyboard. Characters can be entered either by selecting them from a display, by typing a certain sequence of keys on a physical keyboard, or by drawing the symbol by hand ontouch-sensitive screen. In contrast toASCII's 96 elementcharacter set (which it contains), Unicode encodes hundreds of thousands ofgraphemes (characters) from almost all of the world's written languages and many other signs and symbols.[1][better source needed]
A Unicode input system must provide for a large repertoire of characters, ideally all valid Unicode code points. This is different from akeyboard layout which defines keys and their combinations only for a limited number of characters appropriate for a certainlocale.
Unicode characters are distinguished bycode points, which areconventionally represented by "U+" followed by four, five or sixhexadecimal digits, for example U+00AE or U+1D310. Characters in theBasic Multilingual Plane (BMP), containing modernscripts – including many Chinese and Japanese characters – and many symbols, have a 4-digit code. Historic scripts, but also many modern symbols and pictographs (such asemoticons,emojis,playing cards and manyCJK characters) have 5-digit codes.
An application can display a character only if it can access acomputer font which contains aglyph for that character.[2] Fonts usually have incomplete Unicode coverage; most only contain the glyphs needed to support a fewwriting systems. However, most modern browsers and other text-processing applications are able to display multilingual content because they performfont substitution, automatically switching to a fallback font when necessary to display characters which are not supported in the current font. Which fonts are used for fallback and the thoroughness of Unicode coverage varies by software and operating system; some software will search for a suitable glyph in all of the installed fonts, others only search within certain fonts.
If an application does not have access to a glyph for a required codepoint in the specified font,[a] the character should be shown as the font's.notdef
glyph⟨⟩.[3] This often appears as an empty box, ☐ (nicknamed "tofu" based on the shape), a box with an X in it, ☒, a diamond with a question mark, �, or a box with a question mark in it, ⍰.
Most operating systems support extendedkeyboard mapping – the facility to increase the repertoire of characters available using techniques such asAlternate graphic ("AltGr") that gives a third and fourth meaning to every key;Compose key (sometimes calledmulti key), a key on acomputer keyboard that indicates that the following (usually 2 or more) keystrokes trigger the insertion of an alternate character, typically aprecomposed character or a symbol;[4]dead keys typically used to attach a specificdiacritic to a baseletter;[5] or indeed combinations of these.
These techniques facilitate entry of character sets beyond the basic set provided as standard with the computer.
Many systems provide a way to select Unicode characters visually.ISO/IEC 14755 refers to this as ascreen-selection entry method.[6]
Microsoft Windows has provided a Unicode version of theCharacter Map program, appearing in the consumer edition since XP. This is limited to characters in theBasic Multilingual Plane (BMP). Characters are searchable by Unicode character name, and the table can be limited to a particular code block.[7] Starting with Windows 10 Microsoft Windows also contains so called "emoji keyboard". It can be started by holding down the Windows key (the one with the Windows symbol on it) and hitting the period or semicolon key. The emoji keyboard allows entering of emojis as well as symbols.[8]
More advanced third-party tools of the same type are also available (a notablefreeware example isBabelMap, which supports all Unicode characters). On mostLinux desktop environments, equivalent tools – such asgucharmap (GNOME) orkcharselect (KDE) – are available.[9]
Generally these tools let the user "copy" the selected characters into the clipboard, and then paste them into the document, rather than pretending to directly type them.
It is often practical to just find the desired character on the web or in another document, and copy and paste it from there.
This sectionneeds additional citations forverification. Please helpimprove this article byadding citations to reliable sources in this section. Unsourced material may be challenged and removed. Find sources: "Unicode input" – news ·newspapers ·books ·scholar ·JSTOR(October 2024) (Learn how and when to remove this message) |
Some programs running inMicrosoft Windows, including recent versions ofWord andNotepad, can produce characters from their Unicode code points expressed in decimal and entered on thenumeric keypad with theAlt key held down.[10] For example, theEuro sign€ has 20AC as its hexadecimal code point,[11] which is 8364 in decimal, soAlt+8364 will produce the symbol.
Decimal code points in the range 160 –255 must be entered with a leading zero (so that theWindows code page is chosen) and furthermore the Windows code pageCP1252 must be used.[b] For example,Alt+0247 yields a÷, corresponding to its code point, but the character produced byAlt+247 depends on theOEM code page, such asCode page 437, and may yield a ≈. AlsoAlt+0128 throughAlt+0159 yield the characters assigned in rows 8 and 9 in theCP1252 layout, rather than theC1 control codes that are assigned to those numbers in Unicode.
In programs which were not designed to handle Alt codes over 255, the character retrieved usually corresponds to theremainder when the number is divided by 256.
The text editorVim allows characters to be specified by two-character mnemonics referred to asdigraphs.[12] The installed set can be augmented by custom mnemonics defined for arbitrary code points, specified in decimal. For example, as decimal 9881 is equal to hexadecimal 2699,dig Gr 9881
associates "Gr" withU+2699 ⚙GEAR.
Seebelow for use of decimal code points in HTML.
Clause 5.1 ofISO/IEC 14755 describes aBasic method whereby abeginning sequence is followed by thehex number representation of thecode point and theending sequence. Most modern systems have some method to emulate this, sometimes limited to four digits (thus only theBasic Multilingual Plane).
Hexadecimal Unicode input can be enabled by adding a string type (REG_SZ) value calledEnableHexNumpad
to theregistry keyHKEY_CURRENT_USER\Control Panel\Input Method
and assigning the value data1
to it. Users will need to log off and back in after editing the registry for this input method to start working. (In versions earlier thanWindows Vista, users needed to reboot for it to start working.) Unicode characters can then be entered by holding downAlt, and typing+ on the numeric keypad, followed by the hexadecimal code, and then releasingAlt.[2] This may not work for 5-digit hexadecimal codes likeU+1F937
. Some versions of Windows may require the digits 0-9 to be typed on the numeric keypad or require NumLock to be on.[citation needed]
In some applications (Word,Notepad andLibreOffice programs)Alt+X will replace the hexadecimal number to the left of the cursor with the matching Unicode character. Unless it is six hexadecimal digits long, the code must not be preceded by any digit or letters a–f as they may be treated as part of the code to be converted. For example, enteringaf1
followed byAlt+X (orAlt+C if using a French version) will produce '૱' (U+0AF1), but enteringa0000f1
followed byAlt+X will produce 'añ' ('a' followed by character U+00F1).
This facility enables Unicode characters to be entered in other applications: one can create a desired character in Notepad, for example, and thencut and paste it wherever desired.
Hex input of Unicode must be enabled. In Mac OS 8.5 and later, one can choose theUnicode Hex Input keyboard layout; inOS X (10.10) Yosemite, this can be added in Keyboard → Input Sources.
Holding down⌥ Option, one types the four-digithexadecimal Unicode code point and the equivalent character appears; one can then release the⌥ Option key.[13] Characters outside of the BMP (the Basic Multilingual Plane) exceed the four-digit limit of the Unicode hex input mechanism but can be entered by usingsurrogate pairs: holding down the⌥ Option key while entering the first surrogate, the+, the second surrogate, then releasing the Option key.
In many applications one or both of the following methods work to directly input Unicode characters:
This is supported by GTK and Qt applications, and possibly others. In ChromeOS, this is an operating system function.[14]
insert-char
command, which accepts input either via hex code point or unicode char name.\U+2C72
or three shortcuts%%c
,%%d
,%%p
.InHTML andXML, character codes to be rendered as characters are prefixed byampersand andnumber sign (&#), and are followed by a semicolon (;). The code point can be either indecimal or inhexadecimal; in the latter case it is preceded by an "x". Leading zeros may be omitted. A number of characters may be represented by anamed entity.
Example: In HTML/XML, thecopyright sign © (U+00A9
) may be coded as:
©
(decimal code point)©
(hexadecimal code point)©
(entity name)This works in many pieces of software that accept HTML markup, such asThunderbird and Wikipedia editing.
Glyph 0 must be assigned to a .notdef glyph. The .notdef glyph is very important for providing the user feedback that a glyph is not found in the font. This glyph should not be left without an outline as the user will only see what looks like a space if a glyph is missing and not be aware of the active font's limitation.