| Nombre del símbolo | Snake Hanzi |
| Versión Unicode | 1.1 |
| Unicode | U+86C7 |
| Bloque Unicode | |
| Categoría general | Other Letter (Lo) |
| Código CSS | \86C7 |
| Código hexadecimal | 0x86C7 |
| Código HTML | 蛇 |
| LaTeX | \CJKchar{86C7} |
| Símbolo | 蛇 |
| Codificación URL (porcentaje UTF-8) | %E8%9B%87 |
| Nombre oral / lector de pantalla | Snake Hanzi |
| UTF-8 | E8 9B 87 |
| UTF-16 | 86C7 |
| UTF-32 | 000086C7 |
1\documentclass{article}2\usepackage{pifont}3\CJKchar{86C7}4\end{document}Puedes escribir el símbolo snake hanzi en la mayoría de dispositivos modernos con los siguientes métodos:
Alt + 34503 on Windows (numeric keypad with Num Lock), or insert via Character Map / IME.
Edit → Emoji & Symbols, search "snake hanzi", or use Unicode Hex Input with 86C7.
Ctrl + Shift + U, type 86c7, 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-snake::before { content: "\\86C7"; font-family: "Hiragino Sans", "PingFang SC", "Noto Sans CJK SC", serif; }1<span>蛇</span>La representación del símbolo Snake Hanzi en diferentes lenguajes de programación se muestra en la tabla:
| Lenguaje | Representación |
|---|---|
| JavaScript / TypeScript | '\u86C7' or String.fromCodePoint(34503) |
| Python | '\N{CJK UNIFIED IDEOGRAPH-86C7}' or chr(34503) |
| Rust | '\u{86C7}' |
| C / C++ | UTF-8 source or wchar_t with U+86C7 |
| Go | string(rune(0x86C7)) |
| Ruby | "\u{86C7}" |