| Nombre del símbolo | Diaeresis |
| Versión Unicode | 1.1 |
| Unicode | U+00A8 |
| Bloque Unicode | |
| Categoría general | Sk (Sk) |
| Código CSS | \00A8 |
| Código hexadecimal | 0x00A8 |
| Código HTML | ¨ |
| LaTeX | \text{DIAERESIS} |
| Símbolo | ¨ |
| Codificación URL (porcentaje UTF-8) | %C2%A8 |
| Nombre oral / lector de pantalla | Diaeresis |
| UTF-8 | C2 A8 |
| UTF-16 | 00A8 |
| UTF-32 | 000000A8 |
1\documentclass{article}2\usepackage{pifont}3\text{DIAERESIS}4\end{document}Puedes escribir el símbolo diaeresis en la mayoría de dispositivos modernos con los siguientes métodos:
Alt + 168 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "diaeresis", or use Unicode Hex Input with 00A8.
Ctrl + Shift + U, type 00a8, then Enter (layout-dependent).
Paste from this page, use text replacement, or pick from the symbol keyboard.
Paste from this page or use a keyboard with punctuation support.
1span.diaeresis::before { content: "\00A8"; }1<span>¨</span>La representación del símbolo Diaeresis en diferentes lenguajes de programación se muestra en la tabla:
| Lenguaje | Representación |
|---|---|
| JavaScript / TypeScript | '\u00A8' or String.fromCodePoint(168) |
| Python | '\N{DIAERESIS}' or chr(168) |
| Rust | '\u{00A8}' |
| C / C++ | UTF-8 source or wchar_t with U+00A8 |
| Go | string(rune(0x00A8)) |
| Ruby | "\u{00A8}" |