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