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