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