| Symbol Name | Horse Hanzi |
| Unicode Version | 1.1 |
| Unicode | U+99AC |
| Unicode block | |
| General category | Other Letter (Lo) |
| CSS Code | \99AC |
| Hex Code | 0x99AC |
| HTML Code | 馬 |
| LaTeX | \CJKchar{99AC} |
| Symbol | 馬 |
| URL encode (UTF-8 percent) | %E9%A6%AC |
| Spoken / screen reader name | Horse Hanzi |
| UTF-8 | E9 A6 AC |
| UTF-16 | 99AC |
| UTF-32 | 000099AC |
1\documentclass{article}2\usepackage{pifont}3\CJKchar{99AC}4\end{document}You can type the horse hanzi symbol on most modern devices with the help of following methods:
Alt + 39340 on Windows (numeric keypad with Num Lock), or insert via Character Map / IME.
Edit → Emoji & Symbols, search "horse hanzi", or use Unicode Hex Input with 99AC.
Ctrl + Shift + U, type 99ac, then Enter (layout-dependent), or use an IBus CJK table.
Paste from this page, use text replacement, or pick from a Japanese/Chinese keyboard.
Paste from this page or use a keyboard with CJK ideograph support.
1span.cjk-horse::before { content: "\\99AC"; font-family: "Hiragino Sans", "PingFang SC", "Noto Sans CJK SC", serif; }1<span>馬</span>Horse Hanzi symbol's representation in different programming languages can be found in the table below:
| Language | Representation |
|---|---|
| JavaScript / TypeScript | '\u99AC' or String.fromCodePoint(39340) |
| Python | '\N{CJK UNIFIED IDEOGRAPH-99AC}' or chr(39340) |
| Rust | '\u{99AC}' |
| C / C++ | UTF-8 source or wchar_t with U+99AC |
| Go | string(rune(0x99AC)) |
| Ruby | "\u{99AC}" |