| Nom du symbole | Trust Hanzi |
| Version Unicode | 1.1 |
| Unicode | U+4FE1 |
| Bloc Unicode | |
| Catégorie générale | Other Letter (Lo) |
| Code CSS | \4FE1 |
| Code hexadécimal | 0x4FE1 |
| Code HTML | 信 |
| LaTeX | \CJKchar{4FE1} |
| Symbole | 信 |
| Encodage URL (pourcent UTF-8) | %E4%BF%A1 |
| Nom oral / lecteur d’écran | Trust Hanzi |
| UTF-8 | E4 BF A1 |
| UTF-16 | 4FE1 |
| UTF-32 | 00004FE1 |
1\documentclass{article}2\usepackage{pifont}3\CJKchar{4FE1}4\end{document}Vous pouvez saisir le symbole trust hanzi sur la plupart des appareils modernes avec les méthodes suivantes :
Alt + 20449 on Windows (numeric keypad with Num Lock), or insert via Character Map / IME.
Edit → Emoji & Symbols, search "trust hanzi", or use Unicode Hex Input with 4FE1.
Ctrl + Shift + U, type 4fe1, 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-trust::before { content: "\\4FE1"; font-family: "Hiragino Sans", "PingFang SC", "Noto Sans CJK SC", serif; }1<span>信</span>La représentation du symbole Trust Hanzi dans différents langages de programmation se trouve dans le tableau ci-dessous :
| Langage | Représentation |
|---|---|
| JavaScript / TypeScript | '\u4FE1' or String.fromCodePoint(20449) |
| Python | '\N{CJK UNIFIED IDEOGRAPH-4FE1}' or chr(20449) |
| Rust | '\u{4FE1}' |
| C / C++ | UTF-8 source or wchar_t with U+4FE1 |
| Go | string(rune(0x4FE1)) |
| Ruby | "\u{4FE1}" |