| Symbol Name | Zen Kanji |
| Unicode Version | 1.1 |
| Unicode | U+7985 |
| Unicode block | |
| General category | Other Letter (Lo) |
| CSS Code | \7985 |
| Hex Code | 0x7985 |
| HTML Code | 禅 |
| LaTeX | \CJKchar{7985} |
| Symbol | 禅 |
| URL encode (UTF-8 percent) | %E7%A6%85 |
| Spoken / screen reader name | Zen Kanji |
| UTF-8 | E7 A6 85 |
| UTF-16 | 7985 |
| UTF-32 | 00007985 |
1\documentclass{article}2\usepackage{pifont}3\CJKchar{7985}4\end{document}You can type the zen kanji symbol on most modern devices with the help of following methods:
Alt + 31109 on Windows (numeric keypad with Num Lock), or insert via Character Map / IME.
Edit → Emoji & Symbols, search "zen kanji", or use Unicode Hex Input with 7985.
Ctrl + Shift + U, type 7985, 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-zen::before { content: "\\7985"; font-family: "Hiragino Sans", "PingFang SC", "Noto Sans CJK SC", serif; }1<span>禅</span>Zen Kanji symbol's representation in different programming languages can be found in the table below:
| Language | Representation |
|---|---|
| JavaScript / TypeScript | '\u7985' or String.fromCodePoint(31109) |
| Python | '\N{CJK UNIFIED IDEOGRAPH-7985}' or chr(31109) |
| Rust | '\u{7985}' |
| C / C++ | UTF-8 source or wchar_t with U+7985 |
| Go | string(rune(0x7985)) |
| Ruby | "\u{7985}" |